-
Notifications
You must be signed in to change notification settings - Fork 38
/
NewsPaper-Blogger-Template.xml
3317 lines (3116 loc) · 611 KB
/
NewsPaper-Blogger-Template.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:version='2' class='v2' 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 Tag SEO ] -->
<include expiration='7d' path='*.css'/>
<include expiration='7d' path='*.js'/>
<include expiration='3d' path='*.gif'/>
<include expiration='3d' path='*.jpeg'/>
<include expiration='3d' path='*.jpg'/>
<include expiration='3d' path='*.png'/>
<meta content='sat, 02 jun 2020 00:00:00 GMT' http-equiv='expires'/>
<b:if cond='data:blog.pageType != "error_page"'>
<script type='application/ld+json'>{ "@context": "http://schema.org", "@type": "WebSite", "url": "<data:blog.homepageUrl/>", "potentialAction": { "@type": "SearchAction", "target": "<data:blog.homepageUrl/>?q={search_term}", "query-input": "required name=search_term" } }</script>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<meta expr:content='data:blog.pageName + ", " + data:blog.pageTitle + ", " + data:blog.title' name='keywords'/>
</b:if></b:if>
<meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'/>
<b:include data='blog' name='all-head-content'/>
<title>
<b:if cond='data:blog.pageType == "index"'>
<data:blog.pageTitle/>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<data:blog.pageName/> - <data:blog.title/>
<b:else/>
ERROR 404 - <data:blog.title/>
</b:if>
</b:if>
</title>
<!-- Description and Keywords (start) -->
<b:if cond='data:blog.pageType == "index"'>
<meta content='YOUR DESCRIPTION HERE' name='description'/>
</b:if>
<meta content='YOUR KEYWORDS HERE' name='keywords'/>
<!-- Description and Keywords (end) -->
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta content='article' property='og:type'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' property='og:image'/>
</b:if></b:if>
<b:if cond='data:blog.metaDescription != ""'>
<meta expr:content='data:blog.metaDescription' name='og:description'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.homepageUrl' name='twitter:domain'/>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<b:if cond='data:blog.postImageUrl'>
<meta content='summary_large_image' name='twitter:card'/>
<meta expr:content='data:blog.postImageUrl' name='twitter:image'/>
<b:else/>
<meta content='summary' name='twitter:card'/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' name='twitter:image'/>
</b:if>
</b:if>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
</b:if>
<!-- Social Media meta tag need customer customization -->
<meta content='Facebook App ID here' property='fb:app_id'/>
<meta content='Facebook Admin ID here' property='fb:admins'/>
<meta content='@username' name='twitter:site'/>
<meta content='@username' name='twitter:creator'/>
<b:skin><![CDATA[/*
-----------------------------------------------
Blogger Template Style
Name: NewsPaper
Author : http://www.Templatesyard.com
License: Free Version
----------------------------------------------- */
/* Variable definitions
-----------------------
<Variable name="body.background" description="Background" type="background" color="#eee" default="$(color) url() repeat fixed top left" value="$(color) url() repeat fixed top left"/>
<Group description="Main Settings" selector="body">
<Variable name="headerbgcolor" description="Header Background Color" type="color" default="#00a7fe" value="#00a7fe"/>
<Variable name="maincolor" description="Primary Color" type="color" default="#00a7fe" value="#00a7fe"/>
<Variable name="darkcolor" description="Primary Text Color" type="color" default="#000" value="#000000"/>
<Variable name="seconddarkcolor" description="Primary Dark Color" type="color" default="#373e59" value="#373e59"/>
<Variable name="menucolor" description="menu Background Color" type="color" default="#333333" value="#333333"/>
</Group>
-----------------------
*/
html, body, .section, .widget, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {margin: 0;padding: 0;}html {overflow-x: hidden;}a {text-decoration:none;color:#000;}article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section {display:block;}table {border-collapse: separate;border-spacing: 0;}caption, th, td {text-align: left;font-weight: normal;}blockquote:before, blockquote:after, q:before, q:after {content: "";}.quickedit, .home-link{display:none;}blockquote, q {quotes: "" "";}sup{vertical-align: super;font-size:smaller;}code{font-family: 'Courier New', Courier, monospace;font-size:12px;color:#272727;}::-moz-selection{background-color:$maincolor;color:#fff}::selection{background-color:$maincolor;color:#fff}a img{border: none;}ol, ul {padding:0;margin:0;text-align: left;}ol li {list-style-type: decimal;padding:0 0 5px;}ul li {list-style-type: disc;padding: 0 0 5px;}ul ul, ol ol {padding: 0;}.section, .widget, .widget ul {margin: 0;padding: 0;}a:hover {color:$maincolor;}.post-body a, .post-body a:visited, .post-body a:link {font-weight:bold;color:$maincolor;}abbr.published.timeago {text-decoration: none;}.sidebar #ContactForm1, .lowerbar #ContactForm1 {display: none;visibility: hidden;opacity: 0;}#navbar-iframe, .navbar, .Attribution, .post-author-widget, .post-author-social {height:0px;visibility:hidden;display:none }.feed-links, .post-footer-line.post-footer-line-1, .post-footer-line.post-footer-line-2 , .post-footer-line.post-footer-line-3 {display: none;}.item-control {display: none !important;}h2.date-header, h4.date-header {display:none;margin:1.5em 0 .5em}h1, h2, h3, h4, h5, h6 {font-weight: 400;color: #2e2e2e;}img {max-width: 100%;vertical-align: middle;border: 0;}.widget iframe, .widget img {max-width: 100%;}.status-msg-border {border: 1px solid #ff545a;background:$maincolor;}.status-msg-body {color: $darkcolor;letter-spacing: 0px;font-weight: 400;}:after, :before, * {outline: 0;transition: all .0s ease;-webkit-transition: all .0s ease;-moz-transition: all .0s ease;-o-transition: all .0s ease;}body {color: #2e2e2e;font-family:'Montserrat', sans-serif;font-size: 14px;font-weight: normal;line-height: 21px;background:$(body.background);}#body-wrapper{max-width:1200px;margin:0 auto;background-color:#FFF;-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);box-shadow: 0 0 3px rgba(0, 0, 0, 0.2)}.body-row{width:1170px}#content-wrapper {margin: 0 auto;padding: 20px 0 40px;overflow: hidden;}#main-wrapper {float: left;width:68%;max-width: 800px;}#sidebar-wrapper {float: right;width:30%;max-width: 340px;}.menu-right {float:right;}#search-bar {z-index:99;float: right;margin: 0 0 0 8px;}.header-search {color: #fff;cursor: pointer;display: block;height: 50px;text-align: center;position: relative;right: 0;top: 0;width: 45px;border-radius: 0;box-sizing: border-box;background: $darkcolor;line-height: 50px;}.header-search:hover {background:$seconddarkcolor;}.header-search i {font-style: normal;font-size: 13px;cursor: pointer;}.header-search .fa-times.active, .fa-search {display: inline-block;}.header-search .fa-times,.fa-search.active {display: none;}.search-form {display: none;position: absolute;top: 50px;right: 0;padding: 15px;background: $darkcolor;z-index: 9999;transition: none;}.search-form input {border: 1px solid rgba(208, 208, 208, 0.45);height: 36px;text-indent: 5px;background: $darkcolor;color: #fff;}.search-form button {border: none;border-radius: 3px;color: #ffffff;cursor: pointer;font-size: 14px;height: 36px;width: 36px;position: relative;background: #ff6644;}.iconheader {position: relative;float: right;}.iconheader a i {font-size: 18px;line-height: 80px;margin-left: 10px;color: #999;}.iconheader a i:hover {color:#E80007;}.header-wrap {background:$headerbgcolor;padding-bottom: 15px;}#header-wrappers {color: #fff;padding: 32px 0;margin:0 auto;}#header-inner {background-position: left;background-repeat: no;}.headerleft img {height: auto;max-height: 100%;margin:0 }.headerleft h1, .headerleft h1 a, .headerleft h1 a:hover, .headerleft h1 a:visited {font-family: 'Black Ops One', cursive;color: #fff;font-size: 52px;font-weight:normal;line-height: 1.2em;margin: 0;padding: 0 0 5px;text-decoration: none;text-transform: uppercase;letter-spacing: 1px;}.headerleft h3 {font-weight: 400;margin: 0;padding: 0;}.headerleft .description {color: #fefefe;margin: 0;padding: 0;text-transform: capitalize;text-align: right;text-indent: 0;letter-spacing: 1px;font-size: 13px;}.headerleft {text-align:center;margin: 0;padding: 0;width: auto;}#header-inner {display: inline-block;}.headerleft .description span {padding: 0;}.selectnav {display:none;}.tm-menu {font-weight: 400;margin: 0 auto;height:50px;}ul#nav1 {list-style: none;margin: 0;padding: 0;}#menu .widget {display: none;}#menu {height: 50px;position: relative;text-align: center;z-index: 15;margin:0 auto;padding-right:50px;float:left;}.menu-wrap {margin:0 auto;position: relative;background:#fff;height: 50px;}#menu ul > li {position: relative;vertical-align: middle;display: inline-block;padding: 0;margin: 0;}.tm-menu .hub-home {float: left;display: inline-block;padding: 0!important;height: 50px;width: 50px;text-align: center;}.tm-menu .hub-home a {color: $menucolor;font-size: 20px;line-height: 50px;max-height: 50px;padding: 0!important;}#menu ul > li:hover > a {}#menu ul > li > a {color: $menucolor;font-size: 14px;font-weight: 700;line-height: 50px;display: inline-block;text-transform: uppercase;text-decoration: none;letter-spacing: 1px;margin: 0;padding: 0 12px;}#menu ul > li > ul > li:first-child > a {padding-left: 12px }#menu ul > li > ul {position: absolute;background: #222;top: 100%;left: 0;min-width: 180px;padding: 0;z-index: 99;margin-top: 0;visibility: hidden;opacity: 0;-webkit-transform: translateY(10px);-moz-transform: translateY(10px);transform: translateY(10px);transition: all 0.3s ease;}#menu ul > li > ul > li > ul {position: absolute;top: 0;left: 180px;width: 180px;background: #222;z-index: 99;margin-top: 0;margin-left: 0;padding: 0;border-left: 1px solid #555D7D;visibility: hidden;opacity: 0;-webkit-transform: translateX(-10px);-moz-transform: translateX(-10px);transform: translateX(-10px);transition: all 0.3s ease;}#menu ul > li > ul > li {display: block;float: none;text-align: left;position: relative;border-bottom: 1px solid;border-top: none;border-color: #555D7D;}#menu ul > li > ul > li:last-child {border: 0;}#menu ul > li:hover {background-color: $maincolor }#menu ul > li > ul > li a {font-size: 11px;display: block;color: #fff;line-height: 35px;text-transform: uppercase;text-decoration: none;margin: 0;padding: 0 12px;border-right: 0;border: 0 }#menu ul > li.parent > a:after {content: '\f107';font-family: FontAwesome;float: right;margin-left: 5px }#menu ul > li:hover > ul {opacity: 1;visibility: visible;-webkit-transform: translateY(0);-moz-transform: translateY(0);transform: translateY(0) }#menu ul > li > ul > li:hover > ul {opacity: 1;visibility: visible;-webkit-transform: translateX(0);-moz-transform: translateX(0);transform: translateX(0) }#menu ul > li > ul > li.parent > a:after {content: '\f105';float: right }#menu ul ul {}.ty-ran-yard {float:right;z-index: 99;}.ty-ran-yard span {list-style: none;}.ty-ran-yard a.ran-sym {cursor: pointer;display: block;height: 50px;text-align: center;position: relative;right: 0;top: 0;width: 45px;border-radius: 0;box-sizing: border-box;background: $darkcolor;}.ty-ran-yard a.ran-sym:hover {background:$seconddarkcolor;}.ty-ran-yard a.ran-sym:before {color: #fff;content: '\f074';font-family: FontAwesome;font-size: 16px;text-rendering: auto;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;line-height: 50px;}.news-tick-wrap {margin:15px 0 0;}.news-tick-bar {margin:0 auto;position:relative;background-color: #f7f7f7;}.ticker .title {float: left;height: 40px;font-size: 15px;line-height: 40px;font-weight: 400;overflow: hidden;padding: 0 10px;color:#fff;text-transform:uppercase;background:$maincolor;}.ticker .title .fa {margin-right: 10px;background: #fff;padding: 5px 6px;border-radius: 100%;color: $maincolor;}.ticker .widget-content {height: 40px;box-sizing: border-box;overflow: hidden;padding: 0 4px;}.ticker .widget-content li {float: left;margin-left: 30px;display: inline-block;height: 38px;line-height: 38px;padding: 0 }.ticker .widget {height: 40px;overflow: hidden;}.tk-thumb {float: left;margin: 4px 10px 0 0 }.tk-img {position: relative;display: block;width: 35px;height: 30px;overflow: hidden }.ticker .post-tag {display: inline-block;background-color: $maincolor;color: #fff;margin-right: 10px;font-weight: 400;border-radius: 2px;height: 18px;line-height: 18px;padding: 0 6px;font-size: 10px;text-transform: uppercase;position: relative;margin-top: 10px;float: left }.ticker .tyard-title {font-size: 14px;font-weight: 400;display: inline-block }.ticker .tyard-title a {color: $darkcolor;}.ticker .tyard-title a:hover {color: $maincolor;}.tickercontainer, .tickercontainer .mask, ul.newsticker {-webkit-transition: all 0 linear;-moz-transition: all 0 linear;-o-transition: all 0 linear;transition: all 0 linear;list-style: none;margin: 0 }.tickercontainer {margin: 0;padding: 0;overflow: hidden }.tickercontainer .mask {position: relative;overflow: hidden }.newsticker {position: relative;list-style-type: none;margin: 0;padding: 0 }ul.newsticker {-webkit-transition: all 0s linear;-moz-transition: all 0s linear;-o-transition: all 0s linear;transition: all 0s linear;position: relative;list-style-type: none;margin: 0;padding: 0 }.tickeroverlay-left {display: none }.tickeroverlay-right {display: none }.feat-slider-wrap {position: relative;padding: 15px 0;background:$darkcolor;}.ty-slide-show {margin: 0 auto;overflow: hidden;}.ty-slide-show h2 {display:none;}.ty-slide-show.slide-block {opacity: 1;}.ty-slide-show ul {padding:0;list-style:none;}.ty-slide-show li {list-style:none;padding:0;}.ty-slide .ty-wow {overflow: hidden;padding: 0;position:relative;}.ty-slide .ty-wow:hover .ty-thumb-bonos img {transform: scale(1.1) rotate(-1deg);transition: all .3s ease-in-out;}.ty-slide .ty-thumb-bonos img {position: relative;float: left;margin: 0!important;width: 100%;height: 400px;overflow: hidden;display: block;vertical-align: middle;object-fit:cover;transition: all .3s ease-in-out;}.top-widget .ty-slide .ty-thumb-bonos img, .top-widget .ty-slide .ty-slide-con {height:350px;}.ty-slide .ty-slide-con {position: absolute;bottom: 0;text-align: left;width: 100%;z-index: 2;box-sizing: border-box;-webkit-transition: all 0.2s ease-in-out;-moz-transition: all 0.2s ease-in-out;-ms-transition: all 0.2s ease-in-out;-o-transition: all 0.2s ease-in-out;transition: all 0.2s ease-in-out;}.ty-slide .ty-slide-con-tab {vertical-align: middle;padding: 10px 20px 20px;box-sizing: border-box;}.ty-slide-meta-tab {display: block;clear: both;background: rgba(44, 44, 44, 0.62);padding: 10px;box-sizing: border-box;}.ty-slide .ty-slide-con-cell {position: relative;width: 80%;margin: 0 auto;padding: 20px 10px;}.ty-slide .ty-slide-con-tab .recent-summary {display: block;color: #dfdfdf;padding:5px 0 0;line-height: 20px;font-size: 13px;}.post-slider .ty-slide .ty-slide-con-tab .recent-summary {}.post-slider .ty-slide-con-tab .recent-auth, .post-slider .ty-slide-con-tab .recent-date {color: #bdbdbd;font-size: 12px;font-weight: 400;}.post-slider .ty-slide-con-tab .recent-auth {margin-right: 10px;}.post-slider .ty-slide-con-tab .recent-auth:before {content: '\f007';font-family: fontawesome;color: #bbb;margin-right: 5px;}.post-slider .ty-slide-con-tab .recent-date:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.tyslide-more {background: $maincolor;padding: 5px 12px !important;display: inline-block;vertical-align: middle;margin: 0;font-size: 12px;text-transform: capitalize;border-radius: 2px;color: #f7f7f7;font-weight: 400;white-space: nowrap;}.ty-slide .ty-bonos-entry {overflow: hidden;line-height: 0;margin: 0;padding: 5px 10px;float: left;background: rgba(0, 153, 229, 0.38);box-sizing: border-box;}.ty-slide .ty-bonos-entry a {color: #fff;font-weight: 400;letter-spacing:1px;text-transform:capitalize;font-size: 24px;line-height: 1.5em;-webkit-transition: all 0.2s ease-in-out;-moz-transition: all 0.2s ease-in-out;-ms-transition: all 0.2s ease-in-out;-o-transition: all 0.2s ease-in-out;transition: all 0.2s ease-in-out;}.ty-slide .ty-bonos-entry a:hover {}.yard-auth-ty {}.yard-auth-ty, .ty-time {color: #bdbdbd;font-size: 12px;font-weight: 400;'Merriweather', serif }.ty-wow .tyimg-lay {position: absolute;left: 0;right: 0;top: 0;bottom: 0;opacity: 15;content: '';transition: all .2s ease;background-image: linear-gradient(to bottom,transparent,rgba(0, 0, 0, 0.90));}.ty-slide-con-tab .recent-date {color: #fff;}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}.owl-prev, .owl-next {top: 0;color: $maincolor;font-family: FontAwesome;position: absolute;background:#F5f5f5;z-index: 1;display: block;cursor: pointer;padding: 10px;text-align: center;overflow: hidden;transition: all .2s linear;-moz-transition: all .2s linear;-webkit-transition: all .2s linear;-o-transition: all .2s linear;}.owl-prev:before {content: '\f0a5';font-family: fontawesome;}.owl-next:before {content: '\f0a4';font-family: fontawesome;}.owl-next {right: 0;}.owl-prev {left: 0;}.ty-slide:hover .owl-prev, .ty-slide:hover .owl-next {background:$maincolor;color:#fff;}.sidebar .widget {margin-bottom: 20px;position: relative;background: #f5f5f5;padding: 15px;box-sizing:border-box;}.sidebar .widget .widget-title {margin:0 0 10px 0;padding: 0;position: relative;border-bottom: 2px solid $maincolor;transition: all .5s ease-out;}.sidebar h2 {padding: 12px 0;margin-bottom: -2px;display: inline-block;color: $darkcolor;font-size: 16px;font-weight: 700;text-transform: uppercase;}.sidebar ul,.sidebar li{list-style-type:none;margin:0;padding:0;}.sidebar .widget-content {padding: 0;}.menu-tab li a, .sidetabs .section {transition: all 0s ease;-webkit-transition: all 0s ease;-moz-transition: all 0s ease;-o-transition: all 0s ease;-ms-transition: all 0s ease }.menu-tab {display: flex;clear: both;padding: 0;margin: 0;border-bottom: 3px solid $maincolor;}.sidetabs .widget h2 {display: none }.menu-tab li {width: 33.3%;float: left;display: inline-block;padding: 0;position:relative;}.menu-tab li a {height: 32px;text-align: center;padding: 0;font-weight: 700;display: block;color: #fff;background-color:$seconddarkcolor;font-size: 14px;line-height: 32px;letter-spacing: 1.5px;text-transform: uppercase }.menu-tab li.active a {color: #fff;background-color:$maincolor;}.menu-tab li {display: none }.hide-tab {display: inline-block!important }#tabside3 {margin-bottom: 15px;}.sidetabs .widget-content {padding: 15px 0 0;}.tyard-wrapper {margin:10px auto;overflow:hidden;}.tyard h2 {display: none;visibility: hidden;}.preload {opacity:0;transition: all .3s ease;-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;}.comload {opacity:1;transition: all .3s ease;-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;}.tyard .ty-first {width: 60%;position: relative;float: left;box-sizing: border-box;overflow: hidden;}.tyard .ty-feat-image {width: 100%;position: relative;overflow: hidden;}.templatesyard .ty-first .tyard-thumb {position: relative;width: 100%;height: 200px;}.tyard-thumb {overflow: hidden;}.templatesyard .ty-img {width: 100%;height: 200px;position: relative;display: block;transition: all .3s ease-in-out;}.tyard .ty-first .tyard-thumb, .tyard .ty-img {height: 520px;}.ty-first .ty-img:after {content: no-close-quote;position: absolute;left: 0;bottom: 0;width: 100%;height: 230px;background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MjMyZCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxOTIzMmQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) repeat-x;opacity: .8;}.templatesyard .ty-feat .ty-rest .yard-img:after {content: no-close-quote;position: absolute;left: 0;bottom: 0;width: 100%;height: 110px;background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzE5MjMyZCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxOTIzMmQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) repeat-x;opacity: .8;}.templatesyard .ty-feat .ty-last .yard-img:after {height:230px;}.tyard .yard-label {z-index: 2;}.tyard .yard-label {background: #FA29AF;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;margin-bottom: 8px;}.tyard .yard-label a {color:#fff;}.tyard .yard-label a:before {content: "\f03e";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tyard .ty-feat .ty-rest-wrap:nth-child(2) .yard-label a:before {content: "\f03d";}.tyard .ty-feat .ty-rest-wrap:nth-child(3) .yard-label a:before {content: "\f001";}.tyard .ty-feat .ty-rest-wrap:nth-child(4) .yard-label a:before {content: "\f143";}.tyard .ty-feat .ty-rest-wrap:nth-child(5) .yard-label a:before {content: "\f143";}.tyard .ty-feat .ty-rest-wrap:nth-child(2) .yard-label {background: #08f;}.tyard .ty-feat .ty-rest-wrap:nth-child(3) .yard-label {background: #4ca80b;}.tyard .ty-feat .ty-rest-wrap:nth-child(4) .yard-label {background: #37cae8;}.tyard .ty-feat .ty-rest-wrap:nth-child(5) .yard-label {background:rgb(235, 26, 33);}.tyard .tyard-thumb .item-cmm {position: absolute;top: 0;right: 0;z-index: 2;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;background: $maincolor;}.tyard .tyard-thumb .item-cmm:before {content: "\f086";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tyard .ty-first .ty-con-yard, .column .ty-first .ty-con-yard {position: absolute;bottom: 0;width: 100%;z-index: 2;padding: 15px;box-sizing: border-box;}.tyard .ty-first .ty-con-yard .tyard-title a, .column .ty-first .ty-con-yard .tyard-title a, .tyard .ty-last .yard-tent-ty .tyard-title a {display: block;font-size: 30px;color: #fff;font-weight: 700;line-height: 1.4em;margin-bottom: 5px;}.ty-con-yard .yard-auth-ty, .ty-con-yard .ty-time {color: #ccc;}.recent-summary {display: block;color: #ccc;padding: 10px 0;}.tyard .ty-feat .ty-rest-wrap {width: 40%;position: relative;float: left;box-sizing: border-box;overflow: hidden;}.tyard .ty-feat .ty-last {width: 25%;position: relative;float: left;padding: 0;box-sizing: border-box;overflow: hidden;}.tyard .ty-feat .ty-rest {overflow: hidden;display: block;padding: 0;position: relative;}.tyard .ty-feat .ty-rest-wrap:nth-child(4) .ty-rest,.tyard .ty-feat .ty-rest-wrap:nth-child(5) .ty-rest {margin-top: 10px;}.tyard .ty-feat .ty-rest-wrap:nth-child(3),.tyard .ty-feat .ty-rest-wrap:nth-child(5) {padding-right:0;}.templatesyard .ty-feat .ty-rest .tyard-thumb {width: 100%;height: 260px;vertical-align: middle;}.templatesyard .ty-feat .ty-rest .yard-img {width: 100%;height: 260px;position: relative;display: block;transition: all .3s ease-in-out;}.templatesyard .ty-feat .ty-last .yard-img, .templatesyard .ty-feat .ty-last .tyard-thumb {height:520px;}.tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity: .5;background: #F3904F;background: -webkit-linear-gradient(to left, #F3904F , #3B4371);background: linear-gradient(to left, #F3904F , #3B4371);}.tyard .ty-feat .ty-rest-wrap:nth-child(2) .tyimg-lay {opacity: .5;background: #cb2d3e;background: -webkit-linear-gradient(to left, #cb2d3e , #ef473a);background: linear-gradient(to left, #cb2d3e , #ef473a);}.tyard .ty-feat .ty-rest-wrap:nth-child(3) .tyimg-lay {opacity: .5;background: #000428;background: -webkit-linear-gradient(to left, #000428 , #004e92);background: linear-gradient(to left, #000428 , #004e92);}.templatesyard .ty-feat .ty-rest .yard-tent-ty {position: absolute;bottom: 0;width: 100%;z-index: 2;padding: 15px;box-sizing: border-box;transition: all .4s ease-in-out;}.templatesyard .ty-feat .ty-rest-wrap .ty-rest .yard-tent-ty {bottom: 0;}.tyard .ty-rest .yard-tent-ty .tyard-title {overflow: hidden;line-height: 0;margin: 0 0 2px;padding: 0;}.tyard .ty-rest-wrap .ty-rest .yard-tent-ty .tyard-title a {color: #fff;font-weight: 700;font-size: 18px;line-height: 1.5em;}.tyard .ty-first:hover .ty-img, .tyard .ty-rest:hover .yard-img {transform: scale(1.1) rotate(-1deg);transition: all .3s ease-in-out;}.tyard .ty-first:hover .tyimg-lay, .tyard .ty-rest:hover .tyimg-lay {background-color: rgba(0,0,0,.2);transition: all .3s ease-in-out;}.templatesyard .ty-first .tyard-thumb:before, .templatesyard .ty-feat .ty-rest .tyard-thumb:before {content: "\f03e";font-family: FontAwesome;line-height: 25px;width: 25px;height: 25px;font-size: 12px;color: #fff;text-align: center;background-color: RGBA(0,0,0,0.4);font-weight: 400;position: absolute;top: 8px;opacity: 0.5;z-index: 2;padding: 0;border: 2px solid #fff;border-radius: 50%;-webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.templatesyard .ty-first .tyard-thumb:before {left: 7px;}.templatesyard .ty-feat .ty-rest .tyard-thumb:before {right: 7px;}.tyard .ty-feat .ty-rest-wrap:nth-child(2) .ty-rest .tyard-thumb:before {content: "\f03d";}.tyard .ty-feat .ty-rest-wrap:nth-child(3) .ty-rest .tyard-thumb:before {content: "\f001";}.tyard .ty-feat .ty-rest-wrap:nth-child(4) .ty-rest .tyard-thumb:before {content: "\f143";}.tyard .ty-feat .ty-rest-wrap:nth-child(5) .ty-rest .tyard-thumb:before {content: "\f143";}.templatesyard .ty-first .tyard-thumb:hover:before, .templatesyard .ty-feat .ty-rest .tyard-thumb:hover:before {background-color: $maincolor;border-color: $maincolor;-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);opacity: 1;}.tybox-wrapper {margin: 0 0 10px;overflow:hidden;}.tybox .tybox-first {width: 50%;position: relative;float: left;padding-right: 1.4%;box-sizing: border-box;overflow: hidden;}.tybox .tybox-feat-image {width: 100%;position: relative;overflow: hidden;padding:10px;box-sizing:border-box;background:$maincolor;}.tybox .tybox-first .tyard-thumb, .tybox .tybox-img {height: 250px !important;transition: all .3s ease-in-out;}.templatesyard .tyard-thumb:hover .tybox-img, .templatesyard .tyard-thumb:hover .yard-img, .templatesyard .tylist-first .tyard-thumb:hover .tylist-img, .templatesyard .col-left-first .tyard-thumb:hover .col-left-img, .templatesyard .col-right-first .tyard-thumb:hover .col-right-img, .templatesyard .ty-feat .tygrid-rest .tygrid-thumb:hover .yard-img, .post-home-image .post-thumb:hover a {transform: scale(1.1) rotate(-1deg);transition: all .3s ease-in-out;}.templatesyard .tyard-thumb .tybox-img, .templatesyard .tyard-thumb .yard-img, .templatesyard .tylist-first .tyard-thumb .tylist-img, .templatesyard .col-left-first .tyard-thumb .col-left-img, .templatesyard .col-right-first .tyard-thumb .col-right-img, .templatesyard .ty-feat .tygrid-rest .tygrid-thumb .yard-img, .post-home-image .post-thumb a {transition: all .3s ease-in-out;}.templatesyard .tybox-first .tyard-thumb {position: relative;width: 100%;height: 250px;}.templatesyard .tybox-img {width: 100%;height: 200px;position: relative;display: block;}.tybox-first .tyard-thumb .yard-label {}.tybox-first .tyard-thumb .yard-label a {background: $maincolor;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;border-radius: 2px;}.tybox .tybox-con-yard {position: absolute;bottom: 0;width: 100%;z-index: 2;padding: 15px;box-sizing: border-box;}.tybox .tybox-first .tybox-con-yard .tyard-title a {display: block;font-size: 19px;color: #fff;font-weight: 400;line-height: 1.4em;margin-bottom: 5px;margin-top: 5px;}.tybox .tybox-first .recent-summary {color: #fff;font-size: 14px;font-weight: normal;}.tybox-more {background: #3d3d3d;padding: 5px 12px !important;display: inline-block;vertical-align: middle;margin: 0;font-size: 12px;text-transform: capitalize;border-radius: 2px;color: #f7f7f7;font-weight: 700;white-space: nowrap;}.tybox .ty-feat .tybox-rest {float: left;width: 50%;padding-right: 10px;box-sizing: border-box;margin-bottom:10px;position:relative;}.templatesyard .ty-feat .tybox-rest .tyard-thumb {position: relative;float: left;width: 100%;height: auto;overflow: hidden;display: block;vertical-align: middle;margin: 0 !important;}.templatesyard .ty-feat .tybox-rest .yard-img {width: 100%;height: 250px;position: relative;display: block;transition: all .3s ease-in-out;}.templatesyard .ty-feat .tybox-rest .tyard-thumb:before {content: "\f0f6";font-family: FontAwesome;line-height: 25px;width: 25px;height: 25px;font-size: 12px;color: #fff;text-align: center;background-color: RGBA(0,0,0,0.4);font-weight: 400;position: absolute;top: 8px;opacity: 0.5;right: 7px;z-index: 2;padding: 0;border: 2px solid #fff;border-radius: 50%;-webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.templatesyard .ty-feat .tybox-rest .tyard-thumb:hover:before {background-color: $maincolor;border-color:$maincolor;-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);opacity:1;top: 40%;right: 40%;width: 50px;height: 50px;line-height: 50px;font-size: 24px;}.tybox .tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity:1;background-image: linear-gradient(to bottom,transparent,rgba(0, 0, 0, 0.90));}.tybox .yard-tent-ty {position: absolute;bottom: 0;width: 100%;z-index: 2;padding: 15px;box-sizing: border-box;}.tybox .yard-tent-ty .tyard-title {overflow: hidden;line-height: 0;margin: 0 0 2px;padding: 0;}.tybox .yard-tent-ty .tyard-title a {color: #fff;font-weight: 700;font-size: 16px;line-height: 1.5em;letter-spacing: 1px;}.tybox-time {color: #bdbdbd;font-size: 12px;font-weight: 400;}.tybox-time:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.tybox .ty-feat .tybox-rest:nth-child(2n) {padding-right: 0;}.tybox .tyard-thumb .item-cmm {position: absolute;top: 0;left: 10px;z-index: 2;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 5px 6px 0;font-size: 12px;font-weight: bold;background: $maincolor;border-radius: 0 0 2px 2px;}.tybox .tyard-thumb .item-cmm:before {content: "\f086";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tybox .category-gallery {position: absolute;top: 10px;right: 10px;z-index: 3;overflow: hidden;}.tybox .category-gallery a:before {display: block;background-color: #e74c3c;opacity: .5;color: #fff;height: 18px;line-height: 18px;padding: 0 5px;font-size: 10px;font-weight: 400;text-transform: uppercase;border-radius: 2px;transition: all .3s ease;}.icon:before {font-family: FontAwesome;font-weight: 400;font-style: normal;line-height: 1;padding-right: 4px;}.tylist-wrapper {margin: 0 0 10px;}.tyheading-head {margin-bottom: 15px;position:relative;}.tyheading-head:before {position: absolute;content: '';z-index: 0;width: 100%;height: 3px;background-color: #eee;top: 11px;left: 0;}.tyheading-head h2 {position: relative;display: inline-block;color: #111;font-size: 14px;font-weight: 700;text-transform: uppercase;background: #FFF;padding: 5px 20px 5px 0px;line-height: 1;}.tyheading-head h2 a {color: #111;text-transform: uppercase;font-weight: 700;}.tyheading-head .tymore{float: right;margin-top: 10px;height: 25px;line-height: 25px;padding: 0 10px;background-color: $darkcolor;font-size: 13px;color: #fff!important;transition: background-color .3s ease-out;}.tyheading-head .tymore:before {content: "\f0c1";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tylist .tylist-first {width: 50%;position: relative;float: left;padding-right: 1.4%;box-sizing: border-box;overflow: hidden;}.tylist .tylist-feat-image {width: 100%;position: relative;overflow: hidden;box-sizing:border-box;}.tylist .tylist-img {transition: all .3s ease-in-out;}.templatesyard .tylist-first .tyard-thumb {position: relative;width: 100%;}.templatesyard .tylist-img {width: 100%;height: 200px;position: relative;display: block;}.tylist-first .yard-label {position: absolute;top: 10px;left: 10px;z-index: 2;}.tylist-first .yard-label a {background: $maincolor;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;border-radius: 2px;}.tylist .tylist-con-yard {width: 100%;z-index: 2;padding: 10px 0 0;box-sizing: border-box;}.tylist .tylist-first .tylist-con-yard .tyard-title a {display: block;font-size: 19px;color: #2e2e2e;font-weight: 700;line-height: 1.4em;margin-bottom: 5px;margin-top: 5px;}.tylist .tylist-first .recent-summary {color: #6a6a6a;line-height: 20px;font-size: 13px;font-weight: normal;}.tylist-more {background: #3d3d3d;padding: 5px 12px !important;display: inline-block;vertical-align: middle;margin: 0;font-size: 12px;text-transform: capitalize;border-radius: 2px;color: #f7f7f7;font-weight: 700;white-space: nowrap;}.tylist .ty-feat .tylist-rest {overflow: hidden;padding: 10px 0;border-bottom: 1px solid #f2f2f2;}.templatesyard .ty-feat .tylist-rest .tyard-thumb {position: relative;float: left;width: 100px;height: 75px;overflow: hidden;display: block;vertical-align: middle;margin: 0 !important;}.tylist .ty-feat .tylist-rest:last-child {border: 0;padding: 10px 0 0;}.templatesyard .ty-feat .tylist-rest .yard-img {position: relative;width: 100px;height: 75px;display: block;transition: all .3s ease-in-out;}.templatesyard .tylist-first .tyard-thumb:before {content: "\f1e6";font-family: FontAwesome;line-height: 25px;width: 25px;height: 25px;font-size: 12px;color: #fff;text-align: center;background-color: RGBA(0,0,0,0.4);font-weight: 400;position: absolute;top: 8px;opacity: 0.5;right: 7px;z-index: 2;padding: 0;border: 2px solid #fff;border-radius: 50%;-webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.templatesyard .tylist-first .tyard-thumb:hover:before {background-color: $maincolor;border-color: $maincolor;-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);opacity: 1;top: 40%;right: 40%;width: 50px;height: 50px;line-height: 50px;font-size: 24px;}.tylist .tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity:0.5;background-color: #2c2f30;}.tylist .yard-tent-ty {padding-left: 15px;display: table-cell;}.tylist .ty-feat .tylist-rest:nth-child(2) {padding:0 0 10px;}.tylist .yard-tent-ty .tyard-title {overflow: hidden;font-weight: 700;font-size: 14px;line-height: 1.4em;margin: 0 0 4px;padding: 0;}.tylist .yard-tent-ty .tyard-title a {color: #333333;transition: color .3s;}.tylist-time {color: #bdbdbd;font-size: 12px;font-weight: 400;}.tylist-time:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.tylist .tyard-thumb .item-cmm {position: absolute;top: 0;left: 10px;z-index: 2;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 5px 6px 0;font-size: 12px;font-weight: bold;background: $maincolor;border-radius: 0 0 2px 2px;}.tylist .tyard-thumb .item-cmm:before {content: "\f086";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tylist .category-gallery {position: absolute;top: 10px;right: 10px;z-index: 3;overflow: hidden;}.tylist .ty-rest .category-gallery {top:0;right:0;}.tylist .category-gallery a:before {display: block;background-color: #e74c3c;opacity: .5;color: #fff;height: 18px;line-height: 18px;padding: 0 5px;font-size: 10px;font-weight: 400;text-transform: uppercase;border-radius: 2px;transition: all .3s ease;}.icon:before {font-family: FontAwesome;font-weight: 400;font-style: normal;line-height: 1;padding-right: 4px;}.ty-column-wrap {overflow: hidden;margin: 10px 0;}.tyleft-wrapper {float: left;width: 50%;padding-right: 5px;box-sizing: border-box;}.tyleft .col-left-first {width: 100%;position: relative;clear: both;margin-bottom: 1.4%;box-sizing: border-box;overflow: hidden;}.tyleft .col-left-feat-image {width: 100%;position: relative;overflow: hidden;box-sizing:border-box;}.templatesyard .col-left-first .tyard-thumb {position: relative;width: 100%;}.templatesyard .col-left-img {width: 100%;height: 225px;position: relative;display: block;}.col-left-first .tyard-thumb .yard-label {position: absolute;top: 10px;left: 10px;z-index: 2;}.col-left-first .tyard-thumb .yard-label a {background: $maincolor;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;border-radius: 2px;}.tyleft .col-left-con-yard {width: 100%;z-index: 2;padding: 10px 0;box-sizing: border-box;}.tyleft .col-left-first .col-left-con-yard .tyard-title a {display: block;font-size: 19px;color: #2e2e2e;font-weight: 700;line-height: 1.4em;margin-bottom: 5px;margin-top: 5px;}.tyleft .col-left-first .recent-summary {color: #6a6a6a;line-height: 20px;font-size: 13px;font-weight: normal;}.tyleft .ty-feat .col-left-rest {overflow: hidden;padding: 10px 0;border-bottom: 1px solid #f2f2f2;}.tyleft .ty-feat .col-left-rest:nth-child(2) {padding: 0 0 10px;}.templatesyard .ty-feat .col-left-rest .tyard-thumb {position: relative;float: left;width: 90px;height: 65px;overflow: hidden;display: block;vertical-align: middle;margin: 0 !important;}.tyleft .ty-feat .col-left-rest:last-child {border: 0;padding: 10px 0 0;}.templatesyard .ty-feat .col-left-rest .yard-img {position: relative;width: 90px;height: 65px;display: block;}.tyleft .tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity:0.5;background-color: #2c2f30;}.tyleft .yard-tent-ty {padding-left: 15px;display: table-cell;}.tyleft .yard-tent-ty .tyard-title {overflow: hidden;font-weight: 700;font-size: 14px;line-height: 1.4em;margin: 0 0 4px;padding: 0;}.tyleft .yard-tent-ty .tyard-title a {color: #2e2e2e;transition: color .3s;}.col-left-time {color: #bdbdbd;font-size: 12px;font-weight: 400;}.col-left-time:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.tyleft .tyard-thumb .item-cmm {position: absolute;top: 0;left: 10px;z-index: 2;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 5px 6px 0;font-size: 12px;font-weight: bold;background: $maincolor;border-radius: 0 0 2px 2px;}.tyleft .tyard-thumb .item-cmm:before {content: "\f086";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tyleft .category-gallery {position: absolute;top: 10px;right: 10px;z-index: 3;overflow: hidden;}.tyleft .col-left-rest .category-gallery {top:0;right:0;}.tyleft .category-gallery a:before {display: block;background-color: #e74c3c;opacity: .5;color: #fff;height: 18px;line-height: 18px;padding: 0 5px;font-size: 10px;font-weight: 400;text-transform: uppercase;border-radius: 2px;transition: all .3s ease;}.icon:before {font-family: FontAwesome;font-weight: 400;font-style: normal;line-height: 1;padding-right: 4px;}.tyright-wrapper {float: right;width: 50%;padding-left: 5px;box-sizing: border-box;}.tyright .col-right-first {width: 100%;position: relative;clear: both;margin-bottom: 1.4%;box-sizing: border-box;overflow: hidden;}.tyright .col-right-feat-image {width: 100%;position: relative;overflow: hidden;box-sizing:border-box;}.templatesyard .col-right-first .tyard-thumb {position: relative;width: 100%;}.templatesyard .col-right-img {width: 100%;height: 225px;position: relative;display: block;}.col-right-first .tyard-thumb .yard-label {position: absolute;top: 10px;left: 10px;z-index: 2;}.col-right-first .tyard-thumb .yard-label a {background: $maincolor;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;border-radius: 2px;}.tyright .col-right-con-yard {width: 100%;z-index: 2;padding: 10px 0;box-sizing: border-box;}.tyright .col-right-first .col-right-con-yard .tyard-title a {display: block;font-size: 19px;color: #2e2e2e;font-weight: 700;line-height: 1.4em;margin-bottom: 5px;margin-top: 5px;}.tyright .col-right-first .recent-summary {color: #6a6a6a;line-height: 20px;font-size: 13px;font-weight: normal;}.tyright .ty-feat .col-right-rest {overflow: hidden;padding: 10px 0;border-bottom: 1px solid #f2f2f2;}.tyright .ty-feat .col-right-rest:nth-child(2) {padding: 0 0 10px;}.templatesyard .ty-feat .col-right-rest .tyard-thumb {position: relative;float: left;width: 90px;height: 65px;overflow: hidden;display: block;vertical-align: middle;margin: 0 !important;}.tyright .ty-feat .col-right-rest:last-child {border: 0;padding: 10px 0 0;}.templatesyard .ty-feat .col-right-rest .yard-img {position: relative;width: 90px;height: 65px;display: block;}.tyright .tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity:0.5;background-color: #2c2f30;}.tyright .yard-tent-ty {padding-left: 15px;display: table-cell;}.tyright .yard-tent-ty .tyard-title {overflow: hidden;font-weight: 700;font-size: 14px;line-height: 1.4em;margin: 0 0 4px;padding: 0;}.tyright .yard-tent-ty .tyard-title a {color: #2e2e2e;transition: color .3s;}.col-right-time {color: #bdbdbd;font-size: 12px;font-weight: 400;}.col-right-time:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.tyright .tyard-thumb .item-cmm {position: absolute;top: 0;left: 10px;z-index: 2;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 5px 6px 0;font-size: 12px;font-weight: bold;background: $maincolor;border-radius: 0 0 2px 2px;}.tyright .tyard-thumb .item-cmm:before {content: "\f086";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tyright .category-gallery {position: absolute;top: 10px;right: 10px;z-index: 3;overflow: hidden;}.tyright .col-right-rest .category-gallery {top:0;right:0;}.tyright .category-gallery a:before {display: block;background-color: #e74c3c;opacity: .5;color: #fff;height: 18px;line-height: 18px;padding: 0 5px;font-size: 10px;font-weight: 400;text-transform: uppercase;border-radius: 2px;transition: all .3s ease;}.icon:before {font-family: FontAwesome;font-weight: 400;font-style: normal;line-height: 1;padding-right: 4px;}.templatesyard .col-left-first .tyard-thumb:before, .templatesyard .col-right-first .tyard-thumb:before {content: "\f1ea";font-family: FontAwesome;line-height: 25px;width: 25px;height: 25px;font-size: 12px;color: #fff;text-align: center;background-color: RGBA(0,0,0,0.4);font-weight: 400;position: absolute;top: 8px;opacity: 0.5;right: 7px;z-index: 2;padding: 0;border: 2px solid #fff;border-radius: 50%;-webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.templatesyard .col-right-first .tyard-thumb:before {content: "\f091";}.templatesyard .col-left-first .tyard-thumb:hover:before, .templatesyard .col-right-first .tyard-thumb:hover:before {background-color: $maincolor;border-color: $maincolor;-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);opacity: 1;top: 40%;right: 40%;width: 50px;height: 50px;line-height: 50px;font-size: 24px;}.tysum .ty-feat .tybox-rest {float: left;width: 33.33%;padding-right: 10px;box-sizing: border-box;margin-bottom:10px;position:relative;}.tysum .ty-feat .tybox-rest:nth-child(3n) {padding-right: 0;}.tysum .tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity:0.5;background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 1) 100%);background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 1) 100%);background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 1) 100%);background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 1) 100%);background: linear-gradient(top, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 1) 100%);}.tysum .yard-tent-ty {clear: both;z-index: 2;padding: 10px 0 0;box-sizing: border-box;}.tysum .yard-tent-ty .tyard-title {overflow: hidden;line-height: 0;margin: 0 0 2px;padding: 0;}.tysum .yard-tent-ty .tyard-title a {color: #2e2e2e;font-weight: 700;font-size: 16px;line-height: 1.5em;letter-spacing: 1px;}.tysum .yard-tent-ty .recent-summary {color: #6a6a6a;line-height: 20px;font-size: 13px;font-weight: normal;}.tysum.templatesyard .ty-feat .tybox-rest .yard-img {height: 185px;}.tysum-wrapper {overflow: hidden;}.tygrid-wrapper {margin: 0 0 10px;overflow:hidden;}.tygrid .ty-feat .tygrid-rest {overflow: hidden;float: left;width: 33.33%;padding-right: 1.4%;box-sizing: border-box;position: relative;margin-bottom: 1.4%;}.templatesyard .ty-feat .tygrid-rest .tygrid-thumb {position: relative;float: left;width: 100%;height: auto;overflow: hidden;display: block;vertical-align: middle;margin: 0 !important;}.templatesyard .ty-feat .tygrid-rest .tygrid-thumb:before {content: "\f144";font-family: FontAwesome;line-height: 25px;width: 25px;height: 25px;font-size: 12px;color: #fff;text-align: center;background-color: RGBA(0,0,0,0.4);font-weight: 400;position: absolute;top: 8px;opacity: 0.5;right: 7px;z-index: 2;padding: 0;border: 2px solid #fff;border-radius: 50%;-webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.templatesyard .ty-feat .tygrid-rest .tygrid-thumb:hover:before {background-color: $maincolor;border-color: $maincolor;-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);opacity: 1;top: 40%;right: 40%;width: 50px;height: 50px;line-height: 50px;font-size: 24px;}.templatesyard .ty-feat .tygrid-rest .yard-img {width: 100%;height: 150px;position: relative;display: block;}.tygrid .tyimg-lay {position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;opacity:0.5;background-color: #2c2f30;}.tygrid .yard-tent-ty {clear: both;z-index: 2;padding: 10px 0;box-sizing: border-box;}.tygrid .yard-tent-ty .tyard-title {overflow: hidden;line-height: 0;margin: 0 0 2px;padding: 0;}.tygrid .yard-tent-ty .tyard-title a {color: #2e2e2e;font-weight: 700;font-size: 14px;line-height: 1.5em;letter-spacing: 1px;}.tygrid-time {color: #bdbdbd;font-size: 12px;font-weight: 400;}.tygrid-time:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.tygrid .ty-feat .tygrid-rest:nth-child(3n) {padding-right: 0;}.tygrid .tygrid-thumb .item-cmm {position: absolute;top: 0;left: 10px;z-index: 2;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 5px 6px 0;font-size: 12px;font-weight: bold;background: #ff0036;border-radius: 0 0 2px 2px;}.tygrid .tygrid-thumb .item-cmm:before {content: "\f086";margin-right: 5px;font-family: FontAwesome;font-style: normal;font-weight: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.tygrid .category-gallery {position: absolute;top: 10px;right: 10px;z-index: 3;overflow: hidden;}.tygrid .category-gallery a:before {display: block;background-color: #e74c3c;opacity: .5;color: #fff;height: 18px;line-height: 18px;padding: 0 5px;font-size: 10px;font-weight: 400;text-transform: uppercase;border-radius: 2px;transition: all .3s ease;}.icon:before {font-family: FontAwesome;font-weight: 400;font-style: normal;line-height: 1;padding-right: 4px;}.breadcrumbs .fa-times:before {margin: 0 5px;}.breadcrumbs {margin: 0;font-size: 13px;padding: 0;}.breadcrumbs i {color: $maincolor;font-size: 8px !important;}.breadcrumbs span a.bhome {color: $maincolor;}.breadcrumbs span, .breadcrumbs span a {color: #000;}.breadcrumbs span a:hover {color: $maincolor;}article {padding: 0;overflow:hidden;}.post-outer {padding: 0 0 20px 0;}.post {display: block;overflow: hidden;word-wrap: break-word;background: #ffffff;}.item .post-head {position: relative;margin: 10px 0;border-bottom: 2px solid #eee;}.post-head h1 {color: #000;font-size: 32px;font-weight: 700;line-height: 44px;border-bottom: 2px solid #555;display: inline-block;position: relative;top: 2px;}.index .post h2, .archive .post h2 {margin-bottom: 12px;line-height: 37px;font-size: 22px;font-weight:700;}.index .post h2 a, .archive .post h2 a {color: #000;letter-spacing: 1px;}.index .post h2, .archive .post h2 {margin: 0 0 10px;padding: 0;}.index .post h2:hover a, .archive .post h2:hover a {color:$maincolor;}.retitle h2 {margin: 8px 0;display: block;}.post-body {margin: 0px;padding:10px;font-size: 14px;line-height: 26px;box-sizing:border-box;}.post-home-image {float: left;width: 270px;height: 182px;margin-right: 20px;position: relative;}.post-home-image .post-thumb {width: 100%;height: 182px;position: relative;display: block;overflow: hidden;}.post-home-image .post-thumb a {width: 100%;height: 182px;display: block;transition: all .3s ease-out!important;-webkit-transition: all .3s ease-out!important;-moz-transition: all .3s ease-out!important;-o-transition: all .3s ease-out!important;}.index .post-labels, .archive .post-labels {position: absolute;top: 0;left: 0;padding: 8px 12px 6px;background: $maincolor;color: #fff;font-size: 12px;text-transform: uppercase;display: inline-block;z-index: 9;}.index .post-labels a, .archive .post-labels a {color: #fff;}.index .post-labels i, .archive .post-labels i {display:none;}.date-header {color: #bdbdbd;display: block;font-size: 12px;font-weight: 400;line-height: 1.3em;margin: 0!important;padding: 0;}.date-header a {color: #bdbdbd;}.date-header .read-more {background: $darkcolor;padding: 5px 12px !important;display: inline-block;vertical-align: middle;margin: 10px 0 0;font-size: 12px;text-transform: capitalize;border-radius: 2px;color: #f7f7f7;font-weight: bold;white-space: nowrap;}.read-more:hover {background: $maincolor;color:#fff;}.post-header {padding: 10px;margin-bottom: 10px;}#meta-post {border-top: 1px solid #f5f5f5;border-bottom: 1px solid #f5f5f5;padding: 5px 0;}.post-meta {color: #bdbdbd;display: block;font-size: 13px;font-weight: 400;line-height: 21px;margin: 0;padding: 0;}.post-meta a, .post-meta i {color: #CBCBCB;}.post-timestamp {margin-left: 5px;}.resumo {margin-top: 10px;color: #919191;}.resumo span {display: block;font-size: 13px;line-height: 20px;text-align:justify;}.post-summary {padding:0;}.post-body img {max-width: 100%;padding: 10px 0;position: relative;margin:0 auto;}.post-body h3 {font-size: 18px;margin-top: 20px;margin-bottom: 10px;line-height: 1.1;}.second-meta {display: none;}.comment-link {white-space: normal;}#blog-pager {clear: both;text-align: center;padding: 15px 0;background: #ffffff;color: #4d4d4d;}.item #blog-pager {display: none;height: 0;opacity: 0;visibility: hidden;}.displaypageNum a, .showpage a, .pagecurrent, .blog-pager-older-link, .blog-pager-newer-link {padding: 5px 13px;margin-right: 8px;color: #fff;background-color: $darkcolor;display: inline-block;line-height: 20px;-moz-border-radius: 2px;-webkit-border-radius: 2px;border-radius: 2px;margin-top: 10px;}.displaypageNum a:hover, .showpage a:hover, .pagecurrent, .blog-pager-older-link:hover, .blog-pager-newer-link:hover {background: $maincolor;text-decoration: none;color: #fff;}.showpageOf {display: none!important;overflow: hidden;}#blog-pager .pages {margin: 10px 0;border: none;}#post-pager .blog-pager-older-link:hover, #post-pager .blog-pager-newer-link:hover {color:$maincolor;background:inherit;}#post-pager {clear:both;float: left;display: block;width: 100%;box-sizing: border-box;margin: 15px 0;}#post-pager .blog-pager-older-link, #post-pager .blog-pager-newer-link {border:0;text-align:right;background:none;color:#1a1b1c;}#post-pager .blog-pager-newer-link {border: 0;text-align:left;}#post-pager #blog-pager-newer-link, #post-pager #blog-pager-older-link {width: 50%;}#post-pager a b {display: block;padding: 0 0 5px;font-weight: 700;letter-spacing: 1px;font-size: 15px;color:$maincolor;}#post-pager a span {text-transform:capitalize;letter-spacing: 1px;}#post-pager .blog-pager-older-link, #post-pager .blog-pager-newer-link {padding:0;display: block;}.item .post-footer .label-head .label-title {color: #fff;padding: 3px 8px;font-size: 13px;background-color: $maincolor;}.item .post-footer .label-head a {color: #fff;padding: 3px 8px;font-size: 13px;background-color: $darkcolor;}.share2 {font-size: 13px;color:$(maincolor);border: 1px solid;padding:4px;float: left;margin-right: 5px;padding-right: 7px;padding-left: 7px;font-weight: 800;letter-spacing: 0.6px;margin-top: 10px;}.addthis_sharing_toolbox {clear:initial!important;margin-top: 10px;}.post-share-link{border:1px solid #eee;border-radius:2px;display:block;box-sizing:border-box;font-size:16px;margin-top:10px;ms-border-radius:2px;o-border-radius:2px;outline:0;padding:10px;webkit-border-radius:2px;width:100%}.ty-author-box {border: 1px solid #f2f2f2;background: #f8f8f8;overflow: hidden;padding: 10px;margin: 10px 0;}.ty-author-box img {float: left;margin-right: 10px;object-fit: cover;}.ty-author-box p {padding: 0;-webkit-margin-before: 0;-webkit-margin-after: 0;}.ty-author-box b {font-weight: 700;font-style: normal;letter-spacing: 1px;font-size: 20px;}.ty-author-box ul {overflow: hidden;padding: 0;margin: 6px;}.ty-author-box ul li:first-child {margin-left: 0;}.ty-author-box ul li {float: left;margin-left: 7px;text-align: center;font-size: .875rem;border-radius: 3px;list-style-type: none;padding: 0;}.ty-author-box ul li a {display: block;padding: 8px 10px;background: #eee;}.ty-author-box ul li a:hover {background:$maincolor;color:#fff;}#related-posts {margin-bottom: 10px;}#related-posts .related-text {display: none;}.related li{width:32%;position:relative;overflow:hidden;float:left;display:block;box-sizing:border-box;margin:0 0 0 2%;padding:0}.related li:first-child,.related li:nth-child(4){margin-left:0}.related li h3 {margin-top:0;}.related li .yard-label {position: absolute;top: 10px;left: 10px;z-index: 2;}.related li .yard-label a {background: $maincolor;color: #fff;text-transform: uppercase;height: 20px;line-height: 20px;display: inline-block;padding: 0 6px;font-size: 11px;font-weight: 400;border-radius: 2px;}.related-thumb {width: 100%;height: 150px;overflow: hidden;position:relative;}.related li .related-img {width: 100%;height: 150px;display: block;transition: all .3s ease-out!important;-webkit-transition: all .3s ease-out!important;-moz-transition: all .3s ease-out!important;-o-transition: all .3s ease-out!important;}.related li .related-img:hover {-webkit-transform: scale(1.1) rotate(-1.5deg)!important;-moz-transform: scale(1.1) rotate(-1.5deg)!important;transform: scale(1.1) rotate(-1.5deg)!important;transition: all .3s ease-out!important;-webkit-transition: all .3s ease-out!important;-moz-transition: all .3s ease-out!important;-o-transition: all .3s ease-out!important;}.related-title a {font-size: 15px;line-height: 1.35em;padding: 10px 5px 10px 0;font-weight: 700;color: #2e2e2e;display: block;}.related-title a:hover {color: $maincolor;text-decoration: underline;}.related li .related-thumb:before {content: "\f0c5";font-family: FontAwesome;line-height: 25px;width: 25px;height: 25px;font-size: 12px;color: #fff;text-align: center;background-color: RGBA(0,0,0,0.4);font-weight: 400;position: absolute;top: 8px;opacity: 0.5;right: 7px;z-index: 2;padding: 0;border: 2px solid #fff;border-radius: 50%;-webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);}.related li .related-thumb:hover:before {background-color: $maincolor;border-color: $maincolor;-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);opacity: 1;top: 40%;right: 40%;width: 50px;height: 50px;line-height: 50px;font-size: 24px;}.comment-form {overflow:hidden;}iframe.blogger-iframe-colorize, iframe.blogger-comment-from-post {height: 283px!important }.comments-title {position: relative;clear: both;z-index: 1;margin: 0;line-height: 33px }.comments-title h2 {display: inline-block;position: relative;background-color: #fff;color: #1c1c1c;font-size: 18px;letter-spacing: -.4px;text-transform: uppercase;font-weight: 700;z-index: 1;margin: 0;padding-right: 15px }.comments-title:after {content: "";position: absolute;z-index: 0;top: 14px;left: 0;width: 100%;height: 5px;background-color: #F5F5F5 }.comments {clear: both;margin: 0;color: #1c1c1c;background: #ffffff;padding: 10px 0;}.comments h4 {color: #000;font-size: 14px;padding: 5px 20px;font-weight: 700;letter-spacing: 1.5px;text-transform: Uppercase;position: relative;text-align: center;background: #ffffff;z-index: 1;margin-bottom: 15px;}.comments h4:after {content: '';position: absolute;bottom: 0;left: 50%;width: 40px;height: 2px;background: #000;margin-left: -20px;}.comments .comments-content {margin: 0;padding: 0 }.comments .comments-content .comment {margin-bottom: 0;padding-bottom: 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: 45px;max-height: 45px;width: 45px;max-width: 45px;border-radius: 0 }.comments .comment-block {overflow: hidden;padding: 0 0 10px }.comments .comment-block, .comments .comments-content .comment-replies {margin-left: 60px;margin-top: 0 }.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: 14px;display: block;overflow: hidden;clear: both;margin: 0 0 3px;padding: 0 0 5px;border-bottom: 1px dotted #f5f5f5 }.comments .comments-content .user {font-style: normal;font-weight: 700;display: block;font-size: 16px }.comments .comments-content .icon.blog-author {display: none }.comments .comments-content .comment-content {float: left;text-align: left;font-size: 13px;line-height: 1.4em;color: #656565 }.comments .comment .comment-actions a {margin-right: 5px;padding: 2px 5px;color: #fff;font-weight: 400;background-color: #000;font-size: 10px }.comments .comment .comment-actions a:hover {color: #fff;background-color: $maincolor;text-decoration: none }.comments .comments-content .datetime {color: #999;float: left;font-size: 11px;position: relative;font-style: italic;margin: 2px 0 0;display: block }.comments .comments-content .datetime:before {content: '\f017';font-family: fontawesome;font-style: normal;margin-right: 3px }.comments .comments-content .comment-header a {color: inherit }.comments .comments-content .comment-header a:hover {color:$maincolor }.comments .thread-toggle {margin-bottom: 4px }.comments .thread-toggle .thread-arrow {height: 7px;margin: 0 3px 2px 0 }.comments .thread-expanded {padding: 8px 0 0 }.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 }.blogger-tab{display:block;}.cmm-tabs .content-tab {background-color: transparent;padding: 0;}.cmm-tabs-header {margin-bottom: 10px;border-bottom: 2px solid #eee;position: relative;}.cmm-tabs-header h3 {display: inline-block;font-size: 18px;margin: 0;border-bottom: 2px solid #777;color: #010101;top: 2px;font-weight: 700;padding-bottom: 2px;}.cmm-tabs-header h3 h9 {display: none;}.simplyTab .cmm-tabs-header .wrap-tab {}.cmm-tabs-header .wrap-tab a {height: auto;line-height: 1.2em;padding: 8px 5px;display: block;text-align: center;}.cmm-tabs-header .wrap-tab li {float: left;width: 33%;padding: 0;}.facebook-tab, .fb_iframe_widget_fluid span, .fb_iframe_widget iframe {width: 100%!important;}.cmm-tabs.simplyTab .content-tab {background-color: transparent;padding: 0;margin-top: 20px;}.cmm-tabs.simplyTab .wrap-tab li a {text-transform: uppercase;color: #FFF;font-weight: 700;background-color: $darkcolor;font-size: 12px;}.cmm-tabs.simplyTab .wrap-tab li a.activeTab {background-color: $maincolor;color:#fff;}.cmm-tabs.simplyTab .wrap-tab {}.cmm-tabs.simplyTab .wrap-tab li {margin:0;list-style: none;}.wrap-tab {list-style: none;}.content-tab {transition: all .0s ease;-webkit-transition: all .0s ease;-moz-transition: all .0s ease;-o-transition: all .0s ease;}.bot-bar-menu {background-color: $maincolor;padding: 5px 0;overflow: hidden;}.bot-menu-wrap {margin: 0 auto;}.bot-menu {float: left;}.bot-menu h2 {display:none;}.bot-menu ul {overflow: hidden;list-style: none;padding: 0;margin: 0;}.bot-menu ul li {float: left;display: inline-block;list-style: none;padding: 0;}.bot-menu ul li a {padding: 10px 16px;display: block;border: none !important;text-decoration: none;line-height: inherit;font-size: 14px;font-weight: normal;color: #eeeeee;text-transform: uppercase;}.bot-menu ul li a:hover {color:$darkcolor;}#lower {margin:auto;padding: 0px 0px 10px 0px;width: 100%;background:$darkcolor;}#lower-wrapper {margin:auto;padding: 20px 0px 20px 0px;}#lowerbar-wrapper {float: left;margin: 0px 5px auto;padding-bottom: 20px;width: 32%;text-align: justify;color:#ddd;line-height: 1.6em;word-wrap: break-word;overflow: hidden;max-width: 375px;}.lowerbar {margin: 0;padding: 0;}.lowerbar .widget {margin: 0;padding: 10px 20px 0px 20px;box-sizing:border-box;clear:both;}.lowerbar .widget .widget-title {margin:0 0 10px 0;padding: 0;position: relative;border-bottom: 2px solid $maincolor;transition: all .5s ease-out;}.lowerbar h2 {padding: 12px 0;margin-bottom: -2px;display: inline-block;color: #fff;font-size: 16px;font-weight: 700;text-transform: uppercase;}.lowerbar ul {margin: 0 auto;padding: 0;list-style-type: none;}.lowerbar li {display:block;line-height: 1.6em;margin-left: 0 !important;list-style-type: none;}.lowerbar li a {text-decoration:none;color: #DBDBDB;}.lowerbar li a:hover {}.lowerbar li:hover {}.lowerbar .PopularPosts ul li a, .lowerbar, .lowerbar .ty-bonus .ty-bonos-entry a, .lowerbar .tyard-komet a {color:#fff;}.lowerbar .PopularPosts .widget-content ul li {border-bottom: 1px solid rgb(51, 51, 51);border-top: 0;}.lowerbar .ty-bonus .ty-wow {border-bottom: 1px solid rgb(51, 51, 51);border-top: 0;}.lowerbar .PopularPosts .widget-content ul li:last-child {border: 0;}.lowerbar .widget-content {padding: 10px 0;}#ty_footer {background: #3a3a3a;color: #fff;font-weight: 400;padding: 8px 0px;text-transform: uppercase;letter-spacing: 0.8px;font-size: 12px;}.ty-copy-container {margin: 0 auto;overflow: hidden;}.ty_footer_copyright a {color:$maincolor;}.ty_footer_copyright {text-align: center;display: block;line-height: 30px;}.bottom-bar-social {float: right;padding: 0 0;}.bottom-bar-social li {display: inline;padding: 0;float: left;margin-right: 5px;;}.bottom-bar-social .widget ul {padding: 0;}.bottom-bar-social .LinkList ul {text-align: center;}.bottom-bar-social #social a {display: block;font-size: 14px;color: #fff;padding: 10px 5px;}.bottom-bar-social #social a:before {display: inline-block;font: normal normal normal 22px/1 FontAwesome;font-size: inherit;font-style: normal;font-weight: 400;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.bottom-bar-social .bloglovin:before{content:"\f004"}.bottom-bar-social .facebook:before{content:"\f09a"}.bottom-bar-social .twitter:before{content:"\f099"}.bottom-bar-social .gplus:before{content:"\f0d5"}.bottom-bar-social .rss:before{content:"\f09e"}.bottom-bar-social .youtube:before{content:"\f167"}.bottom-bar-social .skype:before{content:"\f17e"}.bottom-bar-social .stumbleupon:before{content:"\f1a4"}.bottom-bar-social .tumblr:before{content:"\f173"}.bottom-bar-social .vine:before{content:"\f1ca"}.bottom-bar-social .stack-overflow:before{content:"\f16c"}.bottom-bar-social .linkedin:before{content:"\f0e1"}.bottom-bar-social .dribbble:before{content:"\f17d"}.bottom-bar-social .soundcloud:before{content:"\f1be"}.bottom-bar-social .behance:before{content:"\f1b4"}.bottom-bar-social .digg:before{content:"\f1a6"}.bottom-bar-social .instagram:before{content:"\f16d"}.bottom-bar-social .pinterest:before{content:"\f0d2"}.bottom-bar-social .delicious:before{content:"\f1a5"}.bottom-bar-social .codepen:before{content:"\f1cb"}.bottom-bar-social ul#social a:hover {color: $darkcolor;opacity: 1;}.back-to-top {display:none;position: fixed;right: 10px;bottom: 0;text-decoration: none;color: #fff;background:$maincolor;font-size: 14px;padding: 10px;-webkit-border-radius:2px 2px 0 0;-moz-border-radius: 2px 2px 0 0;border-radius:2px 2px 0 0;}.back-to-top:hover {background-color:$darkcolor;text-decoration:none;color:#ffffff;}.social-counter {margin: 0;padding: 0;overflow: hidden;}.social-counter .widget {margin-bottom: 20px;overflow: hidden;}.social-counter .widget-content {padding: 10px 0;overflow: hidden;}.social-counter ul {margin: 0;padding: 0 }.social-counter ul li {width: 100%;float: left;text-align: center;margin: 0;padding: 0 0 8px 0;position: relative;box-sizing: border-box;}.social-counter ul li:nth-child(6) {padding: 0;}.social-counter ul li a {margin: 0;padding: 0 10px 0 0;border: 1px solid #f2f2f2;overflow: hidden;display: block;}.item-icon {position: relative;text-align: center;vertical-align: middle;color: #fff;margin: 0;display: inline-block;float: left;width: 50px;height: 50px;line-height: 50px;font-size: 20px;}.hide-count {display: none }.item-count {display: block;color: #fff;font-weight: 700;font-size: 14px;line-height: 50px;float: right;margin-left: 10px;}.item-text {float: right;display: inline-block;color: #fff;font-size: 12px;font-weight: 400;line-height: 50px;}.item-social.facebook a {background-color: #5271b3 }.item-social.twitter a {background-color: #49aff8 }.item-social.gplus a {background-color: #cb2027 }.item-social.rss a {background-color: #FFC200 }.item-social.youtube a {background-color: #eb1a21 }.item-social.dribbble a {background-color: #ea4c89 }.item-social.instagram a {background-color: #4E729A }.item-social.pinterest a {background-color: #cb2027 }.item-social.facebook .item-icon:before {content: "\f09a" }.item-social.twitter .item-icon:before {content: "\f099" }.item-social.gplus .item-icon:before {content: "\f0d5" }.item-social.rss .item-icon:before {content: "\f09e" }.item-social.youtube .item-icon:before {content: "\f16a" }.item-social.instagram .item-icon:before {content: "\f16d" }.item-social.dribbble .item-icon:before {content: "\f17d" }.item-social.pinterest .item-icon:before {content: "\f0d2" }.social-counter ul li:hover .item-icon {background:$darkcolor;}.social-counter ul li:hover .item-text {color: #FFD439;}select#BlogArchive1_ArchiveMenu {width: 100%;padding: 10px;border-color: #777;}#ads-blog {margin: 0 auto;}#adwidegt1 .widget, #adwidegt2 .widget, #adwidegt3 .widget {width: 728px;max-height: 90px;padding: 0;max-width: 100%;box-sizing: border-box;display:none;width: 100%;}#adwidegt1 .widget {margin: 15px auto 0 !important;display:block !important;width: 100%;max-height: 100%;}#adwidegt2 .widget {margin: 15px auto 0 !important;}#adwidegt1 .widget h2, #adwidegt2 .widget h2, #adwidegt3 .widget h2 {display:none;visibility:hidden;}.ads-posting {margin: 10px 0 0;}.post-footer .ads-posting {margin: 15px 0 0;}.sidebar .FollowByEmail > h3.title, .sidebar .FollowByEmail .title-wrap {margin-bottom: 0 }.FollowByEmail {padding: 4px;background-image: repeating-linear-gradient(135deg, #ff6969, #ff6969 10px, #FFF 0px, #FFF 20px, #85adff 0px, #85adff 30px, #FFF 0px, #FFF 40px);background-image: repeating-linear-gradient(135deg, #ff6969, #ff6969 10px, #FFF 0px, #FFF 20px, #85adff 0px, #85adff 30px, #FFF 0px, #FFF 40px);background-image: repeating-linear-gradient(135deg, #ff6969, #ff6969 10px, #FFF 0px, #FFF 20px, #85adff 0px, #85adff 30px, #FFF 0px, #FFF 40px);clear: both;}.FollowByEmail td {width: 100%;float: left;box-sizing: border-box }.FollowByEmail .follow-by-email-inner .follow-by-email-submit {margin-left: 0;width: 100%;border-radius: 0;height: 30px;font-size: 11px;color: #fff;background-color: $seconddarkcolor;text-transform: uppercase;font-weight: 700;letter-spacing: 1px }.FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover {background-color: $maincolor }.FollowByEmail .email-letter-text {padding: 10px;text-align: center;box-sizing:border-box;}.FollowByEmail .email-letter-text .subhead {color: $maincolor;display: inline-block;font-size: 25px;font-weight: 700;letter-spacing: 1px;text-transform: uppercase;word-spacing: 2px;margin-bottom: 10px;}.FollowByEmail .email-letter-text .subtext {color: #000113;font-size: 17px;line-height: 25px;}.FollowByEmail .follow-by-email-inner .follow-by-email-address {height: 30px;border: 0px solid white;padding: 13px 15px;background: #f5f5f5;margin-bottom: 5px;box-sizing: border-box;font-size: 11px;font-family: inherit }.FollowByEmail .follow-by-email-inner .follow-by-email-address:focus {border: 0px solid #FFF }.FollowByEmail .widget-content {background-color: #fff;box-sizing: border-box;padding: 10px }.lowerbar .FollowByEmail .widget-content {margin-top: 10px;}.ty-bonus .ty-wow {overflow: hidden;border-bottom: 1px solid #F5F5F5;padding: 10px 0;}.ty-bonus .ty-wow:first-child {padding-top: 0;}.ty-bonus .ty-wow:last-child {border-bottom: none;}.ty-bonus .ty-thumb-bonos {position: relative;float: left;margin: 0!important;width: 80px;height: 60px;overflow: hidden;display: block;vertical-align: middle;}.ty-bonus .ty-bonus-con {padding-left: 10px;display: table-cell;}.ty-bonus .ty-bonos-entry {overflow: hidden;line-height: 0;margin: 0 0 2px;padding: 0;}.ty-bonus .ty-bonos-entry a {color: $darkcolor;font-weight: 700;font-size: 13px;line-height: 1.5em;}.ty-bonus .ty-bonos-entry a:hover {color: $maincolor;}.ty-bonus .ty-thumb-bonos:hover .tyimg-lay {background-color: rgba(40, 35, 40, 0.3);}.yard-auth-ty {margin-right: 10px;}.yard-auth-ty::before {content: '\f007';font-family: fontawesome;color: #bbb;margin-right: 5px;}.yard-auth-ty, .ty-time {color: #bdbdbd;font-size: 12px;font-weight: 400;}.ty-time:before {content: '\f133';font-family: fontawesome;color: #bbb;margin-right: 5px;}.sidebar .PopularPosts .widget-content ul li:first-child, .sidebar .ty-bonus .ty-wow:first-child {padding-top: 0;border-top: 0;}.sidebar .PopularPosts .widget-content ul li:last-child, .sidebar .ty-bonus .ty-wow:last-child {padding-bottom: 0;}.tyard-komet .ty-komet .ty-komet-tar {position: relative;overflow: hidden;padding: 0;width: 55px;height: 55px;float: left;margin: 0 10px 0 0;}.tyard-komet .ty-komet {background: none!important;clear: both;list-style: none;word-break: break-all;display: block;border-top: 1px solid #F5F5F5;border-bottom: 0 !important;overflow: hidden;margin: 0;padding: 10px 0;}.tyard-komet .ty-komet:first-child {padding-top: 0;border-top: 0;}.tyard-komet .ty-komet:last-child {padding-bottom: 0;}.tyard-komet .ty-komet span {color: #bdbdbd;display: block;line-height: 1.2em;text-transform: lowercase;font-size: 12px;font-style: italic;font-weight: 400;overflow: hidden;background: #f9f9f9;height: 38px;margin-top: 5px;box-sizing: border-box;padding: 5px 8px;}.yardimg-komet {width: 55px;height: 55px;float: left;margin: 0 10px 0 0;}.tyard-komet a {color: #2e2e2e;position: relative;font-size: 13px;text-transform: capitalize;display: block;overflow: hidden;font-weight: 700;}.tyard-komet a:hover {color:$maincolor;}.tyard-komet {list-style: none;padding: 0;}.cloud-label-widget-content {display: inline-block;text-align: left;}.cloud-label-widget-content .label-size {display: inline-block;float: left;font-size: 12px;line-height: normal;margin: 0 5px 5px 0;opacity: 1 }.cloud-label-widget-content .label-size a {background: #efefef;color: #000;float: left;font-weight: 400;line-height: 100%;margin: 0;padding: 8px 10px;text-transform: uppercase;transition: all .6s;letter-spacing: 1.5px;}.cloud-label-widget-content .label-size a:hover, .cloud-label-widget-content .label-size a:active {background:$maincolor;color: #fff;}.cloud-label-widget-content .label-size .label-count {display:none;}.list-label-widget-content li {display: block;padding: 8px 0;border-bottom: 1px solid #ececec;position: relative }.list-label-widget-content li a:before {content: '\203a';position: absolute;left: 0px;top:5px;font-size: 22px;color: $maincolor;}.lowerbar .list-label-widget-content li a {color:#fff;}.lowerbar .list-label-widget-content li {border-bottom: 1px solid rgb(51, 51, 51);border-top: 0;}.lowerbar .list-label-widget-content li:last-child {border: 0;}.list-label-widget-content li a {color: #282828;font-size: 14px;padding-left: 20px;font-weight: 400;text-transform: capitalize;letter-spacing: 1.5px;}.list-label-widget-content li span:last-child {color: $maincolor;font-size: 12px;font-weight: 700;position: absolute;top: 9px;right: 0 }.PopularPosts .item-thumbnail {margin: 0 15px 0 0 !important;width: 80px;height: 60px;float: left;overflow: hidden;position: relative }.PopularPosts .item-thumbnail a {position: relative;display: block;overflow: hidden;line-height: 0 }.PopularPosts ul li img {width: 90px;height: 65px;object-fit: cover;padding: 0;transition: all .3s ease }.PopularPosts .widget-content ul li {overflow: hidden;padding: 10px 0;border-top: 1px solid #f2f2f2 }.sidebar .PopularPosts .widget-content ul li:first-child, #sidetabs .PopularPosts .widget-content ul li:first-child {padding-top: 0;border-top: 0 }.sidebar .PopularPosts .widget-content ul li:last-child, .sidebar .ty-bonus .ty-wow:last-child, .tab-widget .PopularPosts .widget-content ul li:last-child, .tab-widget .ty-bonus .ty-wow:last-child {padding-bottom: 0 }.PopularPosts ul li a {color: #2e2e2e;font-weight: 700;font-size: 13px;line-height: 1.4em;transition: color .3s;letter-spacing:1.5px;}.PopularPosts ul li a:hover {color: $maincolor;}.PopularPosts .item-title {margin: 0 0 4px;padding: 0;line-height: 0 }.item-snippet {display: none;font-size: 0;padding-top: 0 }.PopularPosts ul {counter-reset: popularcount;margin: 0;padding: 0;}.PopularPosts .item-thumbnail::before {background: rgba(0, 0, 0, 0.3);bottom: 0px;content: "";height: 100px;width: 100px;left: 0px;right: 0px;margin: 0px auto;position: absolute;z-index: 3;}@media only screen and (max-width: 1200px) {.body-row {width: 96% !important;margin: 0 auto;float: none;}.tyard-wrapper {margin: 10px auto;}.headerright, .headerleft {float: none;width: 100%;text-align: center;height: auto;margin: 0 auto;clear: both;}.headerleft img {margin: auto;padding-bottom: 15px;}.headerright {margin: 10px auto 0;}.tybox-more {display: none;}.headerleft .description {text-align: center;}}@media only screen and (max-width: 980px) {#featured ul li {width: 100%;float: none;margin: 0 auto 20px;clear: both;}#main-wrapper, #sidebar-wrapper, #lowerbar-wrapper {float: none;clear: both;width: 100%;margin: 0 auto;}#main-wrapper {max-width: 100%;}#sidebar-wrapper {padding-top: 20px;}#nav1, #nav, #nav2 {display: none;}.selectnav {width: auto;color: #222;background: #f4f4f4;border: 1px solid rgba(255,255,255,0.1);position: relative;border: 0;padding: 6px 10px!important;margin: 5px 0;}.selectnav {display: block;width: 100%;max-width:200px;}.tm-menu .selectnav {display:inline-block;margin: 10px 0 0 10px;}#menu {text-align:left;padding-right: 0;}}@media screen and (max-width: 880px) {.item #content-wrapper {padding: 0 0 30px;}.tyard .ty-feat .ty-rest .recent-summary {display: none;}.templatesyard .ty-feat .ty-rest-wrap .ty-rest .yard-tent-ty {bottom: 0;}}@media only screen and (max-width: 768px) {.top-bar-social, .bottom-bar-social {float: none;width: 100%;clear: both;overflow: hidden;}.top-bar-menu, .bot-menu {float: none;width: 100%;clear: both;margin-top: 0;text-align: center;}.top-bar-social li, .bottom-bar-social li {display: inline-block;float: none;}.selectnav {display: inline-block;}.ops-404 {width: 80%!important;}.title-404 {font-size: 160px!important;}.tyard .ty-first {width: 100%;float: none;padding-right: 0;margin-bottom: 10px;}.tyard .ty-first .tyard-thumb, .tyard .ty-img, .templatesyard .ty-feat .ty-rest .tyard-thumb, .templatesyard .ty-feat .ty-rest .yard-img {height: 300px;}.tyard .ty-feat .ty-rest-wrap {width:50% }.post-home-image {float: none;width: 100%;margin-bottom: 20px;position: relative;}.tyard .ty-feat .ty-last {margin-top: 10px;}.post-home-image .post-thumb a, .post-home-image .post-thumb, .post-home-image {height:250px;}#meta-post {text-align: center;}.index .post, .archive .post {text-align:center;}.ty_footer_copyright {text-align: center;display: block;clear: both;}}@media only screen and (max-width: 767px) {.floating-ai, .top-header-date {display:none !important;}.tysum .ty-feat .tybox-rest {float: none;width: 100%;padding: 0;}.tybox .ty-feat .tybox-rest {float: none;width: 100%;padding: 0;clear: both;overflow:hidden;}}@media only screen and (max-width: 620px) {#header-wrappers {padding: 10px 0;}.tyard .ty-first .ty-con-yard .recent-summary {display:none;}.tybox .tybox-first, .tylist .tylist-first, .tyleft-wrapper, .tyright-wrapper {width: 100%;padding-right: 0;float: none;margin-bottom: 10px;clear: both;}.tyright-wrapper {padding-left: 0;}.tygrid .ty-feat .tygrid-rest {width: 50%;}.tygrid .ty-feat .tygrid-rest:nth-child(2n) {padding-right: 0;}.tygrid .ty-feat .tygrid-rest:nth-child(3n) {padding-right: 1.4%;}.ty-post-share li {width: 50%;}.related li {width: 100%;margin-left: 0;}}@media only screen and (max-width: 480px) {.top-bar-social #social a {display: block;width: 20px;height: 20px;line-height: 20px;font-size: 12px;}.tm-menu .hub-home, .ticker .title, .ticker .tk-thumb {display: none;}.ty-slide .ty-slide-con-tab .recent-summary {display: none;}.tyard .ty-feat .ty-rest-wrap {width:100%;padding: 0;margin-bottom: 10px;}.tyard .ty-feat .ty-rest-wrap:nth-child(4) .ty-rest, .tyard .ty-feat .ty-rest-wrap:nth-child(5) .ty-rest {margin-top: 0;}.tybox .ty-feat .tybox-rest:nth-child(4), .tybox .ty-feat .tybox-rest:nth-child(5) {width: 100%;float: none;padding: 0;margin-bottom: 10px;}.tygrid .ty-feat .tygrid-rest, .tygrid .ty-feat .tygrid-rest:nth-child(3n) {width: 100%;padding-right: 0;}.index .post h2,.archive .post h2 {line-height: 34px;font-size: 23px;}h1.post-title {font-size: 22px;margin-bottom: 10px;}#meta-post {display: inline-block;}#meta-post .post-labels {display: block;margin: 0 0 10px;clear: both;}.other-meta .other-meta-desc, .other-meta .other-meta-read {float: none;display: block;text-align: center;}.share-title {display: none;}.social-btns {float: none;text-align: center;}#post-pager #blog-pager-newer-link, #post-pager #blog-pager-older-link {width: 100%;float: none;clear: both;}#sidebar-wrapper {max-width: 100%;}.index .post-outer {padding: 0 0 10px 0;}.ty-copy-container {text-align: center;}.temp-cred {float: none;display: block;clear: both;margin: 5px 0 0;}.ty_footer_copyright {float: none;display: block;clear: both;}}@media only screen and (max-width: 360px) {.title-404 {font-size: 150px!important;}.Header .description p, .showpageOf{display:none}}@media only screen and (max-width: 300px) {#sidebar-wrapper {display:none}.tyheading-head .tymore {display: none;}.related-thumb {width: 100%;float: none;}.archive .post h2,.index .post h2 {line-height: 29px!important;font-size: 15px!important;}article {overflow: hidden;}#blog-pager {padding: 0;margin: 0 0 5px;}.item #blog-pager {margin: 0 0 15px;}.index .resumo span,.archive .resumo span,.ty-author-box img, .breadcrumbs {display: none;}.ty-author-box ul li a {padding: 0;background: none;}.ops-404 {font-size: 20px!important;}.title-404 {font-size: 120px!important;}h1.post-title {font-size: 17px;}.top-bar-social #social a {width: 24px;height: 24px;line-height: 24px;}.top-bar-menu, .ty-ran-yard {display:none;}.ty-post-share li {width: 100%;}.comments .comments-content .comment-header {width: 100%;float: none;clear: both;margin: 0;padding: 0;}.comments .comments-content .comment-header {width: 100%;float: none;clear: both;margin: 0px 0 0px -35px;padding: 0;}}
]]></b:skin>
<b:template-skin>
<![CDATA[
/*------Layout (No Edit)----------*/
body#layout #body-wrapper {padding: 0;width: 800px }body#layout #loader {display: none;}body#layout .ty-slide-show {opacity:1;}body#layout .theme-opt {display: block !important;}body#layout .theme-opt .option {background: #333;border-color: #222;}body#layout .theme-opt .option.section h4 {color:#fff!important;}body#layout .section h4 {color: #333!important;text-align:center;text-transform:uppercase;letter-spacing:1.5px;}body#layout .top-bar-social, body#layout .top-bar-menu {width: 47.3%;}body#layout .headerleft {width: auto;}body#layout .headerright {width: 460px;}body#layout .ticker .widget {height: auto;overflow: visible;}body#layout .ticker .widget-content {height: auto;}body#layout .post-author-widget, body#layout .post-author-social {display: block;visibility:visible;height: auto;width: 42.43%;float:left;}body#layout .post-author-social {float:right;}body#layout .tm-menu, body#layout .menu-wrap {height: auto;}body#layout #menu {display: block;visibility:visible;height: auto;float:none;}body#layout .hub-home, body#layout .menu-right {display: none;}body#layout #menu .widget {display: block;visibility:visible;}body#layout .preload {opacity:1;}body#layout #content-wrapper {margin: 0 auto;padding:0;}body#layout #adwidegt1 .widget, body#layout #adwidegt2 .widget, body#layout #adwidegt3 .widget {display:block;}body#layout .tyright-wrapper {width: 50%;float: right;}body#layout .tyleft-wrapper {width: 50%;float: left;}body#layout #lowerbar-wrapper {width: 33.33%;float: left;}body#layout #main-wrapper {float: left;width: 70%;margin: 0;padding: 0 }body#layout #sidebar-wrapper {float: right;width: 30%;margin: 0;padding: 0;}body#layout .sidebar.section {background-color: #ff7f00!important;border: 1px solid #ca7900;}body#layout .sidetabs .section {background-color: #ffd400 !important;border: 1px solid #dcbc20;}body#layout #sidebar-wrapper .section .widget-content {border-color: #5a7ea2!important }body#layout .section .draggable-widget .widget-wrap2 {background-color: #0099e5!important }body#layout #main-wrapper #main {margin-right: 4px;background-color: #5a7ea2;border-color: #34495e }body#layout #main-wrapper #main h4 {color: #fff!important }body#layout .layout-widget-description {display: none!important }body#layout #Blog1 .widget-content {border-color: #34495e }body#layout .add_widget {background: #ebebeb;border: 1px solid #dddddd;}body#layout .FollowByEmail .widget-content:before {display: none;}body#layout .bottom-bar-social {display: block;float: none;}body#layout #lower, body#layout #lower-wrapper, body#layout #lowerbar-wrapper, body#layout #ty_footer, body#layout #header-wrappers {padding: 0;}body#layout .bot-menu, body#layout .bottom-bar-social {float: left;width: 44.735%;}body#layout .editlink {background: #0099e5;color: #fff !important;padding: 0 3px;line-height: 18px;border: 1px solid #08f;border-radius: 3px;text-transform: uppercase;letter-spacing: 1px;text-decoration: none !important;}body#layout .menu-tab {display: none;}
/*------Layout (end)----------*/
]]></b:template-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:#ff0036;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;
}
.sidebar #contact, .lowerbar #contact {
margin:0!important;
background-color:transparent;
}
</style>
<b:include data='blog' name='google-analytics'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
//CSS Ready
//CSS Ready
function loadCSS(e, t, n) {
"use strict";
var i = window.document.createElement("link");
var o = t || window.document.getElementsByTagName("script")[0];
i.rel = "stylesheet";
i.href = e;
i.media = "only x";
o.parentNode.insertBefore(i, o);
setTimeout(function() {
i.media = n || "all"
})
}
loadCSS("//fonts.googleapis.com/css?family=Montserrat:400,400i,500,600,700|Black+Ops+One");
loadCSS("//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
//]]>
</script>
<b:if cond='data:blog.pageType == "static_page"'>
<script type='text/javascript'>
/*<![CDATA[*/
$(document).ready(function(){var static_page_text=$.trim($(".post-body").text());var text_month=[,"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"];if(static_page_text==="[sitemap]"){var postbody=$(".post-body");$.ajax({url:"/feeds/posts/default?alt=json-in-script",type:"get",dataType:"jsonp",success:function(e){var t=[];for(var n=0;n<e.feed.category.length;n++){t.push(e.feed.category[n].term)}var t=t.join("/");postbody.html('<div class="btnt-sitemap"></div>');$(".post-body .btnt-sitemap").text(t);var r=$(".btnt-sitemap").text().split("/");var i="";for(get=0;get<r.length;++get){i+="<span>"+r[get]+"</span>"}$(".btnt-sitemap").html(i);$(".btnt-sitemap span").each(function(){var e=$(this);var t=$(this).text();$.ajax({url:"/feeds/posts/default/-/"+t+"?alt=json-in-script",type:"get",dataType:"jsonp",success:function(n){var r="";var i='<ul class="btnt-toc">';for(var s=0;s<n.feed.entry.length;s++){for(var o=0;o<n.feed.entry[s].link.length;o++){if(n.feed.entry[s].link[o].rel=="alternate"){r=n.feed.entry[s].link[o].href;break}}var u=n.feed.entry[s].title.$t;var a=n.feed.entry[s].published.$t,f=a.substring(0,4),l=a.substring(5,7),c=a.substring(8,10),h='<span class="day">'+c.replace(/^0+/,"")+'</span><span class="month">'+text_month[parseInt(l,10)]+' </span><span class="year">'+f+"</span>";i+='<li><div class="toc-date">'+h+'</div><div class="btnt-icon"></div><span class="btnt-post"><a href="'+r+'">'+u+"</a></span></li>"}i+="</ul>";e.replaceWith('<div class="btnt-toc-wrap"><div class="btnt-cat">'+t+'</div>'+i+"</div>")}})})}})}});
/*]]>*/
</script>
<style type='text/css'>
.btnt-sitemap { border-bottom: 4px solid #444; }
.btnt-toc-wrap { display: inline-block; width: 100%; }
.btnt-toc-wrap .btnt-cat { background: #333; border-radius: 2px; color: #fff; font-size: 15px; font-weight: bold; padding: 10px 20px; text-transform: capitalize; }
.btnt-toc::before { background: #333; bottom: 0; content: ""; left: 20%; margin-left: -10px; position: absolute; top: 0; width: 4px; }
.btnt-toc { margin: 0; padding: 30px 20px; position: relative; }
.btnt-toc li { list-style: none; margin: 0; padding: 0; position: relative; }
.btnt-toc > li .toc-date { color: #999; display: block; font-size: 14px; font-weight: bold; position: absolute; text-transform: uppercase; top: 25px; width: 15%; }
.btnt-toc > li .btnt-icon { background: #fff; border-radius: 50%; box-shadow: 0 0 0 4px #333; color: #fff; font-size: 1.4em; font-style: normal; font-variant: normal; font-weight: normal; height: 10px; left: 18.6%; line-height: 10px; margin: 0 0 0 -25px; position: absolute; text-align: center; text-transform: none; top: 30px; width: 10px; }
.btnt-toc > li .btnt-post::after { border-color: transparent #f5f5f5 transparent transparent; border-style: solid; border-width: 10px; content: " "; height: 0; pointer-events: none; position: absolute; right: 100%; top: auto; width: 0; }
.btnt-toc > li .btnt-post { background: #f5f5f5; border-radius: 5px; display: block; font-size: 15px; line-height: 15px; margin: 0 0 15px 23%; padding: 25px 30px; position: relative; }
.btnt-toc > li .btnt-post a { color: #333; font-weight: bold;}
.btnt-toc > li .btnt-post a:hover { color: #999; }
</style>
</b:if>
</head>
<body expr:class='data:blog.pageType'>
<div class='theme-opt' style='display:none'>
<b:section class='option' id='option' maxwidgets='1' name='Theme Options' showaddelement='yes'>
<b:widget id='HTML900' locked='true' title='Boxed(True/False)' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == "true"'>
<style>@media only screen and (min-width:1143px){#body-wrapper{max-width:100%;}}</style>
</b:if>
</b:includable>
</b:widget>
<b:widget id='HTML911' locked='true' title='Label Icons CSS' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[a.Video:before {content:"\f144"}
a.Car:before {content:"\f1b9"}
a.Business:before {content:"\f0b1"}
a.People:before {content:"\f183"}
a.Nature:before {content:"\f06c"}
a.Fashion:before {content:"\f0c4"}
a.Gallery:before {content:"\f03e"}
a.Technology:before {content:"\f1e6"}
a.Learn:before, a.Culture:before {content:"\f02d"}
a.Music:before {content:"\f001"}
a.Sports:before {content:"\f091"}
a.Children:before {content:"\f1ae"}
a.Photography:before {content:"\f030"}
a.Beauty:before {content:"\f004"}
a.Food:before {content:"\f015"}
a.News:before {content:"\f1ea"}]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<style><data:content/></style>
</b:includable>
</b:widget>
<b:widget id='HTML910' locked='true' title='PageNavi Results No.' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == ""'>
<script type='text/javascript'>
//<![CDATA[
var perPage = 7;
//]]>
</script>
<b:else/>
<script type='text/javascript'>
//<![CDATA[
var perPage = <data:content/>;
//]]>
</script>
</b:if>
</b:includable>
</b:widget>
<b:widget id='HTML207' locked='true' title='Fixed Sidebar (true/false)' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == ""'>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
if ($(window).width() > 1100) {
$("#main-wrapper, #sidebar-wrapper").theiaStickySidebar({
additionalMarginTop: 25,
additionalMarginBottom: 25
});
}
});
//]]>
</script>
<b:else/>
<b:if cond='data:content == "true"'>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
if ($(window).width() > 1100) {
$("#main-wrapper, #sidebar-wrapper").theiaStickySidebar({
additionalMarginTop: 25,
additionalMarginBottom: 25
});
}
});
//]]>
</script>
</b:if>
</b:if>
</b:includable>
</b:widget>
</b:section>
</div>
<div id="body-wrapper" class="<data:blog.pageType/><b:if cond='data:blog.url == data:blog.homepageUrl'> home</b:if><b:if cond='data:blog.pageType == "static_page"'> item</b:if><b:if cond='data:blog.pageType == "archive"'> index</b:if>">
<div class='header-wrap'>
<div class='body-row' id='header-wrappers'>
<div class='headerleft'>
<b:section class='headerleft' id='headerleft' maxwidgets='1' name='Blog Logo' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Digital Marketing Nomad (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-P9y02u1Ot34/WogSVY3TUII/AAAAAAAAEr8/9oGtDJ6URnIW22HtgxwfPmTnLXYGlRB-QCK4BGAYYCw/s1600/Papermag-smooth.png</b:widget-setting>
<b:widget-setting name='displayHeight'>51</b:widget-setting>
<b:widget-setting name='sectionWidth'>284</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'>BEFORE_DESCRIPTION</b:widget-setting>
<b:widget-setting name='displayWidth'>290</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<!--
Show image as background to text. You can't really calculate the width
reliably in JS because margins are not taken into account by any of
clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
width if the user is using shrink to fit.
This results in a margin-width's worth of pixels being cropped. If the
user is not using shrink to fit then we expand the header.
-->
<b:if cond='data:mobile'>
<div id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
<b:else/>
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'><h1 style='display:none'/>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='title'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<data:title/>
<b:else/>
<a expr:href='data:blog.homepageUrl'><data:title/></a>
</b:if>
</b:includable>
</b:widget>
</b:section>
</div>
<div style='clear: both;'/>
</div>
<div style='clear: both;'/>
<div class='tm-menu'>
<div class='body-row menu-wrap'>
<li class='hub-home'><a expr:href='data:blog.homepageUrl'><i class='fa fa-home'/></a></li>
<b:section class='menu' id='menu' maxwidgets='1' name='Main Menu' showaddelement='yes'>
<b:widget id='LinkList210' locked='true' title='Menu' type='LinkList' version='1'>
<b:widget-settings>
<b:widget-setting name='text-10'>_Right Sidebar</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-13'>https://www.imamuddinwp.com/</b:widget-setting>
<b:widget-setting name='link-2'>#</b:widget-setting>
<b:widget-setting name='link-12'>https://www.imamuddinwp.com/</b:widget-setting>
<b:widget-setting name='link-0'>#</b:widget-setting>
<b:widget-setting name='link-14'>https://www.imamuddinwp.com/</b:widget-setting>
<b:widget-setting name='link-11'>https://www.imamuddinwp.com/2023/10/download-blogger-template-free.html</b:widget-setting>
<b:widget-setting name='link-10'>https://www.imamuddinwp.com/2021/10/how-to-add-table-of-contents-in-blogger.html</b:widget-setting>
<b:widget-setting name='text-9'>_Left Sidebar</b:widget-setting>
<b:widget-setting name='link-9'>https://www.imamuddinwp.com/2024/05/download-from-terabox-without-app-without-account.html</b:widget-setting>
<b:widget-setting name='text-8'>Post Formats</b:widget-setting>
<b:widget-setting name='link-7'>https://www.imamuddinwp.com/2024/05/pinktong-blogger-template-free-download-latest-version.html</b:widget-setting>
<b:widget-setting name='link-8'>#</b:widget-setting>
<b:widget-setting name='link-5'>https://www.imamuddinwp.com/2024/03/plus-ui-blogger-template-free-download.html</b:widget-setting>
<b:widget-setting name='link-6'>https://www.imamuddinwp.com/2024/03/xml-sitemap-generator-for-blogger-free.html</b:widget-setting>
<b:widget-setting name='link-3'>#</b:widget-setting>
<b:widget-setting name='link-4'>#</b:widget-setting>
<b:widget-setting name='text-1'>_Multi DropDown</b:widget-setting>
<b:widget-setting name='text-0'>Features</b:widget-setting>
<b:widget-setting name='text-3'>__DropDown 2</b:widget-setting>
<b:widget-setting name='text-2'>__DropDown 1</b:widget-setting>
<b:widget-setting name='text-5'>_ShortCodes</b:widget-setting>
<b:widget-setting name='text-4'>__DropDown 3</b:widget-setting>
<b:widget-setting name='text-7'>_Error Page</b:widget-setting>
<b:widget-setting name='text-6'>_SiteMap</b:widget-setting>
<b:widget-setting name='text-11'>_Full Post</b:widget-setting>
<b:widget-setting name='text-12'>Seo Service</b:widget-setting>
<b:widget-setting name='text-13'>Documentation</b:widget-setting>
<b:widget-setting name='text-14'>Download</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='widget-content'>
<ul itemscope='' itemtype='http://schema.org/SiteNavigationElement'>
<b:loop values='data:links' var='link'>
<li itemprop='name'><a expr:href='data:link.target' itemprop='url'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
<div class='menu-right'>
<div id='search-bar'>
<span class='header-search'>
<i class='fa fa-search'/>
<i class='fa fa-times'/>
</span>
<div class='search-form' style='display: none;'>
<form action='/search' id='searchform' method='get'>
<input name='q' placeholder='Search' type='text' vk_18d09='subscribed' vk_1ad21='subscribed' vk_1b6ba='subscribed'/>
</form>
</div></div>
<div class='ty-ran-yard'><span><a class='ran-sym'/></span></div>
</div>
</div>
</div>
</div>
<div style='clear: both;'/>
<div class='news-tick-wrap'>
<div class='news-tick-bar body-row'>
<b:section class='ticker' id='ticker' maxwidgets='1' name='Ticker News' showaddelement='yes'>
<b:widget id='HTML13' locked='false' title='Breaking' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span data-type="recent" data-no="5"></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<!--<b:include name='quickedit'/>-->
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div style='clear: both;'/>
<div class='body-row' id='ads-blog'>
<b:section class='ad-home-widget' id='adwidegt1' maxwidgets='1' name='Home Ad Widget' showaddelement='yes'>
<b:widget id='HTML90' locked='false' title='Home Top Ad' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span>
<div class="lalulintas"><span class="rambuhijau">Responsive Ads Here</span>
</div>
<style type="text/css">
.lalulintas{width:100%;height:100px;background:#f11809;margin:0 auto;position:relative;}
.rambuhijau{background:#f8695f;position:absolute;display:block;color:rgba(0,0,0,0.2);text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:180%;padding:10px;margin:5px;left:0;right:0;top:0;bottom:0;font-weight:700;line-height:4.4rem}
@media only screen and (max-width: 768px) {
.rambuhijau {font-size:100%;}
}
</style></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<span> <data:content/></span>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
<div style='clear: both;'/>
</div>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<div class='tyard-wrapper body-row'>
<b:section class='featured preload' id='featured' maxwidget='1' showaddelement='yes'>
<b:widget id='HTML299' locked='true' title='Featured' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span data-type="tyard-recent"></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
</div>
<div style='clear: both;'/>
</b:if>
<div class='body-row' id='content-wrapper'>
<div id='main-wrapper'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<div class='tylist-wrapper'>
<b:section class='featured-list preload' id='featuredlist' maxwidget='1' showaddelement='yes'>
<b:widget id='HTML297' locked='true' title='Technology' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span data-type="tylist" data-label="Technology"></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
</div>
<div style='clear: both;'/>
<div class='tysum-wrapper'>
<b:section class='featured-box preload' id='Featured Summary' maxwidget='1' showaddelement='yes'>
<b:widget id='HTML293' locked='true' title='Food' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span data-type="tysum" data-label="Food" data-no="3"></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
</div>
<div style='clear: both;'/>
<div class='ty-column-wrap'>
<div class='tyleft-wrapper'>
<b:section class='column-left preload' id='leftcolumn' maxwidget='1' showaddelement='yes'>
<b:widget id='HTML292' locked='true' title='News' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span data-type="tyleft" data-label="News"></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
</div>
<div class='tyright-wrapper'>
<b:section class='column-right preload' id='rightcolumn' maxwidget='1' showaddelement='yes'>
<b:widget id='HTML294' locked='true' title='Sports' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span data-type="tyright" data-label="Sports"></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
</div>
</div>
<div style='clear: both;'/>
</b:if>
<div id='ads-blog'>
<b:section class='ad-top-widget' id='adwidegt2' maxwidgets='1' name='Post Top Ad Widget' showaddelement='yes'>
<b:widget id='HTML95' locked='false' title='Post Top Ad' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><![CDATA[<span>
<div class="lalulintas"><span class="rambuhijau">Responsive Ads Here</span>
</div>
<style type="text/css">
.lalulintas{width:100%;height:100px;background:#f11809;margin:0 auto;position:relative;}
.rambuhijau{background:#f8695f;position:absolute;display:block;color:rgba(0,0,0,0.2);text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:180%;padding:10px;margin:5px;left:0;right:0;top:0;bottom:0;font-weight:700;line-height:4.4rem}
@media only screen and (max-width: 768px) {
.rambuhijau {font-size:100%;}
}
</style></span>]]></b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<span> <data:content/></span>
</div>
<!--b:include name='quickedit'/-->
</b:includable>
</b:widget>
</b:section>
<div style='clear: both;'/>
</div>
<b:if cond='data:blog.canonicalUrl == data:blog.canonicalHomepageUrl'>
<div class='tyheading-head post-ty-heading'>
<h2>
<a href='/search'>Recent Posts</a>
</h2>
</div>
</b:if>
<b:section class='main' id='main' showaddelement='yes'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='1'>
<b:widget-settings>
<b:widget-setting name='showDateHeader'>true</b:widget-setting>
<b:widget-setting name='commentLabel'>Comment</b:widget-setting>
<b:widget-setting name='style.textcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='authorLabel'>Oleh</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='timestampLabel'>On</b:widget-setting>
<b:widget-setting name='reactionsLabel'/>
<b:widget-setting name='showAuthorProfile'>false</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>in</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='showBacklinks'>false</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</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='top'>
<b:if cond='!data:mobile'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isDateStart and not data:post.isFirstPost'>
</div></div>
</b:if>
<b:if cond='data:post.isDateStart'>
<div class="date-outer">
</b:if>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><span><data:post.dateHeader/></span></h2>
</b:if>
<b:if cond='data:post.isDateStart'>
<div class="date-posts">
</b:if>
<div class='post-outer'>
<b:include data='post' name='post'/>
<b:include cond='data:blog.pageType in {"static_page","item"}' data='post' name='comment_picker'/>
</div>
<!-- Ad -->
<b:if cond='data:post.includeAd'>
<div class='inline-ad'>
<data:adCode/>
</div>
</b:if>
</b:loop>
<b:if cond='data:numPosts != 0'>
</div></div>
</b:if>
</div>
<!-- navigation -->
<b:include name='nextprev'/>
<!-- feed links -->
<b:include name='feedLinks'/>
<b:else/>
<b:include name='mobile-main'/>
</b:if>
<b:if cond='data:top.showPlusOne'>
<data:top.googlePlusBootstrap/>
</b:if>
</b:includable>
<b:includable id='backlinkDeleteIcon' var='backlink'>
<span expr:class='"item-control " + data:backlink.adminClass'>
<a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
<img src='https://resources.blogblog.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
<b:includable id='backlinks' var='post'>
<a name='links'/><h4><data:post.backlinksLabel/></h4>
<b:if cond='data:post.numBacklinks != 0'>
<dl class='comments-block' id='comments-block'>
<b:loop values='data:post.backlinks' var='backlink'>
<div class='collapsed-backlink backlink-control'>
<dt class='comment-title'>
<span class='backlink-toggle-zippy'> </span>
<a expr:href='data:backlink.url' rel='nofollow'><data:backlink.title/></a>
<b:include data='backlink' name='backlinkDeleteIcon'/>
</dt>
<dd class='comment-body collapseable'>
<data:backlink.snippet/>
</dd>
<dd class='comment-footer collapseable'>
<span class='comment-author'><data:post.authorLabel/> <data:backlink.author/></span>
<span class='comment-timestamp'><data:post.timestampLabel/> <data:backlink.timestamp/></span>
</dd>
</div>
</b:loop>
</dl>
</b:if>
<p class='comment-footer'>
<a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + "_backlinks-create-link"' target='_blank'><data:post.createLinkLabel/></a>
</p>
</b:includable>
<b:includable id='comment-form' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<b:if cond='data:mobile'>
<h4 id='comment-post-message'>
<a expr:id='data:widget.instanceId + "_comment-editor-toggle-link"' href='javascript:void(0)'><data:postCommentMsg/></a></h4>
<p><data:blogCommentMessage/></p>
<data:blogTeamBlogMessage/>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight' frameborder='0' id='comment-editor' name='comment-editor' src='' style='display: none' width='100%'/>
<b:else/>
<h4 id='comment-post-message'><data:postCommentMsg/></h4>
<p><data:blogCommentMessage/></p>
<data:blogTeamBlogMessage/>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
</b:if>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</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:top.deleteCommentMsg'>
<img src='https://resources.blogblog.com/img/icon_delete13.gif'/>
</a>
</b:if>
</span>
</b:includable>
<b:includable id='comment_count_picker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<span class='cmt_count_iframe_holder' expr:data-count='data:post.numComments' expr:data-onclick='data:post.addCommentOnclick' expr:data-post-url='data:post.url' expr:data-url='data:post.url.canonical.http'>
</span>
<b:else/>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:post.commentLabelFull/>:
</a>
</b:if>
</b:includable>
<b:includable id='comment_picker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<b:include data='post' name='iframe_comments'/>
<b:elseif cond='data:post.showThreadedComments'/>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:includable>
<b:includable id='comments' var='post'>
<div class='comments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<h4><data:post.commentLabelFull/>:</h4>
<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<b:if cond='data:post.hasOlderLinks'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'><data:post.oldestLinkText/></a>
 
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'><data:post.olderLinkText/></a>
 
</b:if>
<data:post.commentRangeText/>
<b:if cond='data:post.hasNewerLinks'>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'><data:post.newerLinkText/></a>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'><data:post.newestLinkText/></a>
</b:if>
</span>
</b:if>
<div expr:id='data:widget.instanceId + "_comments-block-wrapper"'>
<dl expr:class='data:post.avatarIndentClass' id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt expr:class='"comment-author " + data:comment.authorClass' expr:id='data:comment.anchorName'>
<b:if cond='data:comment.favicon'>
<img expr:src='data:comment.favicon' height='16px' style='margin-bottom:-2px;' width='16px'/>
</b:if>
<a expr:name='data:comment.anchorName'/>
<b:if cond='data:blog.enabledCommentProfileImages'>
<data:comment.authorAvatarImage/>
</b:if>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'><data:comment.author/></a>
<b:else/>
<data:comment.author/>
</b:if>
<data:commentPostedByMsg/>
</dt>
<dd class='comment-body' expr:id='data:widget.instanceId + data:comment.cmtBodyIdPostfix'>
<b:if cond='data:comment.isDeleted'>
<span class='deleted-comment'><data:comment.body/></span>
<b:else/>
<p>
<data:comment.body/>
</p>
</b:if>
</dd>
<dd 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>
</dd>
</b:loop>
</dl>
</div>
<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:post.oldestLinkText/>
</a>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:post.olderLinkText/>
</a>
 
<data:post.commentRangeText/>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:post.newerLinkText/>
</a>
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:post.newestLinkText/>
</a>
</span>
</b:if>
<p class='comment-footer'>
<b:if cond='data:post.embedCommentForm'>
<b:if cond='data:post.allowNewComments'>
<b:include data='post' name='comment-form'/>
<b:else/>
<data:post.noNewCommentsText/>
</b:if>
<b:elseif cond='data:post.allowComments'/>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</p>
</b:if>
<b:if cond='data:showCmtPopup'>
<div id='comment-popup'>
<iframe allowtransparency='true' frameborder='0' id='comment-actions' name='comment-actions' scrolling='no'>
</iframe>
</div>
</b:if>
<div id='backlinks-container'>
<div expr:id='data:widget.instanceId + "_backlinks-container"'>
<b:include cond='data:post.showBacklinks' data='post' name='backlinks'/>
</div>
</div>
</div>
</b:includable>
<b:includable id='feedLinks'>
<b:if cond='data:blog.pageType != "item"'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
</div>
</b:if>
<b:else/> <!--Post feed links -->
<div class='post-feeds'>
<b:loop values='data:posts' var='post'>
<b:include cond='data:post.allowComments and data:post.feedLinks' data='post.feedLinks' name='feedLinksBody'/>
</b:loop>
</div>
</b:if>
</b:includable>
<b:includable id='feedLinksBody' var='links'>
<div class='feed-links'>
<data:feedLinksMsg/>
<b:loop values='data:links' var='f'>
<a class='feed-link' expr:href='data:f.url' expr:type='data:f.mimeType' target='_blank'><data:f.name/> (<data:f.feedType/>)</a>
</b:loop>
</div>
</b:includable>
<b:includable id='iframe_comments' 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 == "false"'>
<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a>
</b:if>
</b:if>
</b:includable>
<b:includable id='mobile-index-post' var='post'>
<div class='mobile-date-outer date-outer'>
<b:if cond='data:post.dateHeader'>
<div class='date-header'>
<span><data:post.dateHeader/></span>
</div>
</b:if>
<div class='mobile-post-outer'>
<a expr:href='data:post.url'>
<h3 class='mobile-index-title entry-title' itemprop='name'>
<data:post.title/>
</h3>
<div class='mobile-index-arrow'>&rsaquo;</div>
<div class='mobile-index-contents'>
<b:if cond='data:post.thumbnailUrl'>
<div class='mobile-index-thumbnail'>
<div class='Image'>
<img expr:src='data:post.thumbnailUrl'/>
</div>
</div>
</b:if>
<div class='post-body'>
<b:if cond='data:post.snippet'><data:post.snippet/></b:if>
</div>
</div>
<div style='clear: both;'/>
</a>
<div class='mobile-index-comment'>
<b:include cond='data:blog.pageType != "static_page" and data:post.allowComments and data:post.numComments != 0' data='post' name='comment_count_picker'/>
</div>
</div>
</div>
</b:includable>
<b:includable id='mobile-main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<b:if cond='data:blog.pageType == "index"'>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-index-post'/>
</b:loop>
<b:else/>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='mobile-post'/>
</b:loop>
</b:if>
</div>
<b:include name='mobile-nextprev'/>
</b:includable>
<b:includable id='mobile-nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<div class='mobile-link-button' id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'>&lsaquo;</a>