-
Notifications
You must be signed in to change notification settings - Fork 8
/
Infinite_3_Responsive_Disqus_Comment.xml
2046 lines (2044 loc) · 139 KB
/
Infinite_3_Responsive_Disqus_Comment.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 expr:dir='data:blog.languageDirection'>
<head>
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='blogger' name='generator'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<link href='http://www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.homepageUrl' rel='openid.delegate'/>
<link expr:href='data:blog.url' rel='canonical'/>
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found - <data:blog.title/></title>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<meta content='noindex' name='robots'/>
</b:if>
<b:if cond='data:blog.searchLabel'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.isMobile'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.pageType != "error_page"'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<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>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='DESKRIPSI-BLOG' name='keywords'/></b:if>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " - RSS"' rel='alternate' type='application/rss+xml'/>
<link expr:href='"http://www.blogger.com/feeds/" + data:blog.blogId + "/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:blog.postImageThumbnailUrl'>
<link expr:href='data:blog.postImageThumbnailUrl' rel='image_src'/>
</b:if></b:if>
<link expr:href='data:blog.url' hreflang='x-default' rel='alternate'/>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://plus.google.com/USER-GOOGLE-PLUS/posts' rel='publisher'/>
<link href='https://plus.google.com/USER-GOOGLE-PLUS/about' rel='author'/>
<link href='https://plus.google.com/USER-GOOGLE-PLUS' rel='me'/>
<meta content='KODE-VALIDASI-GOOGLE-WEBMASTER' name='google-site-verification'/>
<meta content='KODE-VALIDASI-BING-WEBMASTER' name='msvalidate.01'/>
<meta content='Indonesia' name='geo.placename'/>
<meta content='NAMA-ADMIN' name='Author'/>
<meta content='general' name='rating'/>
<meta content='id' name='geo.country'/>
<!-- [ Social Media Meta Tag ] -->
<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>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.title' property='og:title'/>
<meta content='website' property='og:type'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
</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.postThumbnailUrl' property='og:image'/>
<b:else/>
<meta expr:content='data:blog.postThumbnailUrl' property='og:image'/>
</b:if>
</b:if>
<meta content='https://www.facebook.com/PROFIL-FACEBOOK' property='article:author'/>
<meta content='https://www.facebook.com/FAN-PAGE-FACEBOOK' property='article:publisher'/>
<meta content='KODE-APLIKASI-FACEBOOK' property='fb:app_id'/>
<meta content='KODE-ADMIN-FACEBOOK' property='fb:admins'/>
<meta content='en_US' property='og:locale'/>
<meta content='en_GB' property='og:locale:alternate'/>
<meta content='id_ID' property='og:locale:alternate'/>
<meta content='summary' name='twitter:card'/>
<meta expr:content='data:blog.pageTitle' name='twitter:title'/>
<meta content='USER-TWITTER' name='twitter:site'/>
<meta content='USER-TWITTER' name='twitter:creator'/>
<meta content='summary_large_image' name='twitter:card'/>
<b:skin><![CDATA[/*
Theme Name : Infinite 3 Responsive Blogger Template
Theme Published : September 2017
Theme Base Color : Light
Theme Style : Disqus Comment
Theme Designer : Arlina Design
Designer : www.arlinadzgn.com
Published : www.idntheme.com
Thanks to : All supported
Theme License : Premium
*/
/* CSS Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
/* HTML5 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;display:block;}*{margin:0;padding:0;}html{display:block;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{background:transparent;}table{border-collapse:collapse;border-spacing:0;}
/* Body Layout */
body#layout ul,#layout ul {display:none;}
body#layout #outer-wrapper, body#layout .post-inner, body#layout .sidebar, body#layout .sidebar-two {padding:0;}
body#layout #wrapper, body#layout .post-inner, body#layout .sidebar-inner {padding:0;}
body#layout .header-wrapper {margin-top:0;}
body#layout #header {min-height:0px;width:100%;}
body#layout #header2 {width:30%;float:left;}
body#layout #header-right {width:60%;float:right;}
#layout,#layout .widget-content,#layout .add_widget {border:none;}
body#layout .add_widget {border:1px solid #ddd;}
#layout .add_widget a {color:#333;}
#layout #header{min-height:0px;width:100%;margin:10px 0 0 0;}
#layout #footer-wrapper .footer-column{width:33.33%;float:left}
#layout #footer-wrapper #column1,#layout #footer-wrapper #column2{margin:0}
#layout #main-wrapper{width:70%;float:left}
#layout #sidebar-wrapper{width:30%;left:0;padding:0;float:right}
#layout .draggable-widget .widget-wrap2 {background:#c1cfd9;}
#layout #banner,#layout #banner2 {background-color:#444;padding:20px 0!important;margin-bottom:20px;}
#layout #banner .widget,#layout #banner2 .widget{width:80%;margin:5px auto!important;overflow:hidden;float:none}
#layout #banner .add_widget,#layout #banner2 .add_widget{width:80%;margin:5px auto!important;overflow:hidden;float:none}
#footer-adwidget .footer-widget {width:31.7%;float:left;margin-left:10px;}
#footer-wrapper {overflow:hidden;margin:0 auto;max-width:970px;padding:0;}
/* Layout */
body{background:#e9ebee;font-family:'Roboto',sans-serif;font-size:16px;font-weight:400;text-align:left;color:#000;margin:0;padding:0}
.post-feeds,.feed-links{display:none;}
.section,.widget{margin:0;padding:0;}
strong,b{font-weight:bold;padding:0;}
cite,em,i{font-style:italic;}
a,a:link,a:visited {color:#e74c3c;text-decoration:none;transition:all .3s}
a:hover,a:hover:visited {color:#c0392b}
a img{border:none;border-width:0;outline:none;}
img{max-width:100%;vertical-align:middle;border:0;}
abbr,acronym{border-bottom:1px dotted;cursor:help;}
sup,sub{vertical-align:baseline;position:relative;top:-.4em;font-size:86%;}
sub{top:.4em;}small{font-size:86%;}
kbd{position:relative;color:#28a1f0;}
kbd:before{position:absolute;content:'Double click to select';display:table;bottom:23px;left:0;background:#1abc9c;color:#fff;padding:6px;border-radius:2px;font-size:75%;line-height:1;opacity:0;visibility:hidden;transform:scale(0.8);z-index:2;transition:all .3s;}
kbd:hover:before{transform:scale(1.0);opacity:1;visibility:visible;transition:all .3s}
mark{background-color:#ffce00;color:#182025;}
p,blockquote,pre,table,figure,hr,form,ol,ul,dl{margin:1.5em 0;}
hr{height:1px;border:none;background-color:#999;}
code,kbd,pre,samp{font-family:monospace,monospace;}
pre{white-space:pre;word-wrap:normal;overflow:auto;font-size:14px;margin:0}
.post-body blockquote{background:#f3dfba;color:#3a3429;font-size:15px;position:relative;padding:1.2em 1.5em;margin:1em auto;overflow:hidden}
.post-body blockquote:before{content:"";position:absolute;top:0;right:0;border-width:0 16px 16px 0;border-style:solid;border-color:#fff #fff #cdba95 #cdba95;background:#cdba95;display:block;width:0}
*:focus {outline:0!important;}
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:normal;}
h1{font-size:200%}h2{font-size:180%}h3{font-size:160%}h4{font-size:140%}h5{font-size:120%}h6{font-size:100%}
.post-body h1{font-size:200%}.post-body h2{font-size:180%}.post-body h3{font-size:160%}.post-body h4{font-size:140%}.post-body h5{font-size:120%}.post-body h6{font-size:100%}
input,button,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline;}
textarea{display:block;box-sizing:border-box;}
*,*:before, *:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
input,button,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline;}
textarea{display:block;box-sizing:border-box;}
input.placeholder_text,textarea.placeholder_text{color:#888}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder,input:-moz-placeholder,textarea:-moz-placeholder,input.placeholder_text,textarea.placeholder_text{color:#444}[placeholder]:focus::-webkit-input-placeholder{transition:opacity .5s .5s ease;opacity:0}
.post ul li span{position:relative;padding:0;ext-decoration:none;}
ol {counter-reset:li;list-style:none;padding:0;margin:0;}
ol ol {margin: 0 0 0 2em;}
.post ol li{position:relative;display:block;padding:0;margin:.5em 0 .5em 2em;background:#fff;text-decoration:none;}
.post ol li:before {content:counter(li);counter-increment:li;position:absolute;left:-2.5em;height:2em;width:2em;text-align:center;}
.post-body ul {position:relative;display:block;padding:0;margin:.5em 0 .5em 1.5em;text-decoration:none;}
/* Post Table */
.post-body table {width:100%;}
.post-body table td,.post-body table caption{background:#fff;border:1px solid rgba(0,0,0,0.05);padding:10px;text-align:left;vertical-align:top}
.post-body table th{border:1px solid rgba(0,0,0,0.05);border-bottom:0;padding:10px;text-align:left;vertical-align:top;font-size:18px}
.post-body table.tr-caption-container {border:1px solid rgba(0,0,0,0.14);margin:0 0 20px 0;}
.post-body th{font-weight:700;}
.post-body table caption{border:none;font-style:italic;}
.post-body td, .post-body th{vertical-align:top;text-align:left;font-size:14px;padding:3px 5px;border:1px solid #97b28e;}
.post-body th{}
.post-body td a{color:#444;}
.post-body td a:hover{color:#cf4d35;}
.post-body table.tr-caption-container td{border:0;padding:8px;background:#fff;line-height:17px;overflow:hidden;text-align:center;text-overflow:ellipsis;font-weight:700;color:#000;}
.post-body table.tr-caption-container, .post-body table.tr-caption-container img, .post-body img {max-width:100%;height:auto;}
.post-body li {list-style-type:square;}
.post-body td.tr-caption {color:#666;font-size:80%;padding:0px 8px 8px!important;}
.sr {visibility:hidden;width:0;height:0;}
.clear{clear:both}
html {-webkit-font-smoothing:antialiased;}
]]></b:skin>
<style type='text/css'>
/* Custom Cookies Info Dark */
.cookie-choices-info{background-color:rgba(56,66,75,.97)!important;line-height:normal!important;top:initial!important;bottom:0!important;font-family:inherit!important;-webkit-transform:translateZ(0);}
.cookie-choices-info .cookie-choices-text{font-size:14px!important;color:#cee6ea!important}
.cookie-choices-info .cookie-choices-button{font-weight:normal!important;color:#fff!important;margin-left:5px!important;padding:3px 6px!important;background:#f64c3b!important;letter-spacing:.8px;transition:all .4s linear}
.cookie-choices-info .cookie-choices-button:nth-child(2){background:#f68c2e!important;transition:all .4s linear}
.cookie-choices-info .cookie-choices-button:hover,.cookie-choices-info .cookie-choices-button:nth-child(2):hover{background:#282f36!important;transition:all .1s linear}
/* Fixed Layout */
.CSS_LIGHTBOX {z-index:999999!important;}
.CSS_LIGHTBOX_BG_MASK_TRANSPARENT {opacity:.95!important;}
.CSS_LIGHTBOX_SCALED_IMAGE_IMG {width:auto!important;max-width:100%;box-shadow:0 0 10px rgba(0,0,0,0.1);}
.CSS_LIGHTBOX_BTN_CLOSE {background: url('https://4.bp.blogspot.com/-cmZSAe4hgWI/V0K-3C5xiHI/AAAAAAAAG90/2btatUgRsM4qf8HIc7QweuToTkRqRNeuACLcB/s1600/delete.png') no-repeat!important;width:32px!important;height:32px!important;top:30px!important;opacity:0.7;transition:all .3s;}
.CSS_LIGHTBOX_BTN_CLOSE:hover{opacity:1;}
.CSS_LIGHTBOX_BTN_CLOSE_POS {right:10px!important;}
.CSS_LIGHTBOX_BG_MASK{background-color:rgba(0,0,0,0.8)!important}
.CSS_LIGHTBOX_FILMSTRIP{background-color:rgba(0,0,0,0.5)!important}
.quickedit,#ContactForm1,#ContactForm1 br {display:none}
#BlogArchive1 li.archivedate {padding:0;}
#BlogArchive1 #ArchiveList ul.posts li {padding:0 0 0 22px;line-height:normal;}
#ArchiveList{padding:10px 0}
#ArchiveList select{width:100%;padding:10px;margin-bottom:5px;border:1px solid rgba(201,201,201,0.52);font-size:13px;font-family:'Roboto',sans-serif}
/* Template Wrapper */
#wrapper{position:relative;background:#fff;max-width:970px;margin:auto;padding:20px;overflow:hidden;box-shadow:0 0 10px rgba(0,0,0,0.09);}
#floatside{width:100%;max-width:315px;overflow:hidden;padding:0;will-change:position,scroll-position,top,bottom;z-index:2}
/* Header Wrapper */
#header{position:relative;display:block;padding:0 0 20px 0;overflow:hidden;}
#header2{float:left;max-width:200px}
#header .title{color:#222;font-size:260%;letter-spacing:1px;line-height:normal;margin:0;}
#header .title a {color:#222;}
#header .title a:hover {color:#dd5252;}
#header p.description {margin:5px auto 0 auto;color:#444;}
.header img,.header-right img {display:block;}
.header-right img {max-height:90px;}
.header-right{float:right;padding:0;overflow:hidden;margin:0;width:100%;max-width:728px}
/* Nav Wrapper */
.infinite-nav{background:#fff;position:relative;bottom:0;left:0;right:0;margin:0 auto;padding:0 20px;max-width:970px;z-index:99;height:55px;line-height:55px;border-bottom:1px solid rgba(0,0,0,0.05);border-top:1px solid rgba(0,0,0,0.05);transform:translateZ(0)}
.infinite-nav.nav-fixed{position:fixed;top:0;bottom:auto}
.infinite-nav .container{height:100%}
.infinite-nav .search-box{position:absolute;top:50%;right:-12px;transform:translateY(-50%)}
.infinite-nav .search-box form{margin:0}
.infinite-nav .search-box input[type="search"]{position:absolute;background:#fff;border:0;font-size:13px;top:27px;right:25px;padding:12px;width:220px;opacity:0;box-shadow:0 0 10px 1px rgba(0,0,0,0.15);visibility:hidden;transition:all .4s;transform:scale(1.03)}
.infinite-nav .search-box input[type="search"].fadein{opacity:1;visibility:visible;transform:scale(1.0)}
.infinite-nav .search-box .icon-search{display:block;position:absolute;width:45px;text-align:center;cursor:pointer;color:#383838;right:15px;top:50%;transform:translateY(-50%);transition:all 0.3s ease;}
.infinite-nav .search-box .icon-search .fa{line-height:18px}
.infinite-nav .search-box .icon-search.active,.infinite-nav .search-box .icon-search:hover{color:#e74c3c}
.infinite-nav .search-box .icon-search:before{content:'';display:block;position:absolute;border-left:1px solid #999;height:16px;width:0;margin:auto;top:0;bottom:0;left:0}
.infinite-nav .share-box{position:absolute;top:50%;right:60px;transform:translateY(-50%)}
.infinite-nav .share-box a{display:inline-block;margin:0 5px;color:#383838}
.infinite-nav .share-box a:hover{color:#e74c3c}
.navlist{position:relative;font-size:0;list-style:none;padding:0;margin-bottom:0}
.navlist >li.menu-item-has-children.item-plus >a{position:relative}
.navlist >li.menu-item-has-children.item-plus >a:after,.navlist >li >ul >li.menu-item-has-children.item-plus >a:after{content:'\f107';font-family:fontawesome;display:inline-block;margin-left:8px}
.navlist >li >ul >li.menu-item-has-children.item-plus >a:after{content:'\f105';font-family:fontawesome;float:right}
.navlist >li >.sub-menu{transform:translateY(0)}
.navlist li{position:relative;display:inline-block;margin:0 10px;}
.navlist li a{display:inline-block;font-size:14px;color:#000;line-height:52px;font-weight:700}
.navlist li:first-child{margin-left:0}
.navlist li .sub-menu{position:absolute;background-color:#fefefe;width:190px;padding:0;list-style:none;left:-15px;top:91%;border:1px solid #f3f3f3;opacity:0;visibility:hidden;transform:scale(1.03);transition:all .4s}
.navlist li .sub-menu li{display:block;margin:0}
.navlist li .sub-menu li a{display:block;padding:0 15px;border-bottom:1px solid #f3f3f3;line-height:55px;font-weight:400}
.navlist >li >.sub-menu >li:last-child >a,.navlist >li >.sub-menu >li >.sub-menu >li:last-child >a{border:0}
.navlist li .sub-menu .sub-menu{left:100%;top:-1px}
.navlist li.current-menu-parent >a,.navlist li.current-menu-item >a,.navlist li:hover >a{color:#e74c3c}
.navlist li:hover >.sub-menu{opacity:1;visibility:visible;transform:scale(1.0)}
.navlist li.megamenu{position:static}
.navlist li.megamenu:after{content:'';display:block;clear:both}
.navlist li.megamenu .sub-menu{width:100%;padding:10px;left:auto;right:0;background-color:#fff;border:0;box-shadow:0 2px 2px rgba(0,0,0,0.08)}
.navlist li.megamenu .sub-menu li{float:left;padding:10px;background:none}
.navlist li.megamenu .sub-menu li a{border:0;line-height:2em;font-size:12px}
.navlist li.megamenu .post{text-align:center;background:#fff;padding:0}
.navlist li.megamenu .post .post-media img{width:100%}
.post-media{overflow:hidden;max-height:120px}
.navlist li.megamenu .post h2{font-size:14px;color:#222;margin:8px auto;text-align:center}
.navlist li.megamenu .post h2 a{color:inherit;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
.navlist li.megamenu .post h2 a:hover{color:#e74c3c}
.navlist li.megamenu .post .post-date{display:block;margin:auto;font-size:12px;text-align:center;color:#999}
.navlist li.megamenu.col-5 .sub-menu li{width:20%}
.navlist li.megamenu.col-4 .sub-menu li{width:25%}
.navlist li.megamenu.col-3 .sub-menu li{width:33.3333333333%}
.navlist li.megamenu.col-2 .sub-menu li{width:50%}
.navlist li.megamenu.col-1 .sub-menu li{width:100%}
.navlist.off-canvas{position:fixed;width:100%;max-width:320px;top:52px;left:0;padding:0;overflow-x:hidden;overflow-y:auto;background-color:#f7f9f9;box-shadow:0 100px 0 0 #f7f9f9;z-index:99;transform:translateX(-100%);transition:all 0.3s ease}
.navlist.off-canvas li{position:static;display:block;margin:0}
.navlist.off-canvas li a{display:block;border-bottom:1px solid #eee;line-height:42px;padding:0 15px}
.navlist.off-canvas li .sub-menu{opacity:1;visibility:visible;position:absolute;border:0;width:100%;min-height:100%;top:0;left:0;background-color:#f7f9f9;transform:translateX(-100%)}
.navlist.off-canvas li .sub-menu li a{border-bottom:1px solid #eee}
.navlist.off-canvas li .sub-menu.sub-menu-active{transform:translateX(0);z-index:98}
.navlist.off-canvas li.megamenu .sub-menu{padding:0 15px;-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0}
.navlist.off-canvas li.megamenu .sub-menu li{width:100%!important;float:none;padding:10px 0}
.navlist.off-canvas li.megamenu .sub-menu li a{border:0}
.navlist.off-canvas li.megamenu .sub-menu li.back-mb{width:auto!important;background-color:#f3f3f3;margin-left:-15px;margin-right:-15px;margin-bottom:10px}
.navlist.off-canvas li.megamenu .sub-menu li.back-mb a{font-size:11px}
.navlist.off-canvas li.megamenu .sub-menu li:last-child{padding-bottom:30px}
.navlist.off-canvas li.back-mb{background-color:rgba(0,0,0,0.02)}
.navlist.off-canvas.off-canvas-active{transform:translateX(0)}
.navlist.off-canvas .submenu-toggle{position:absolute;right:0;width:42px;height:42px;text-align:center;cursor:pointer;background-color:#eff1f1;background-color:rgba(0,0,0,0.02);border-left:1px solid #f2f2f2;color:#383838;transform:translateY(-43px)}
.navlist.off-canvas .submenu-toggle .fa{font-size:14px;line-height:42px}
.open-menu{display:none;position:absolute;width:50px;height:14px;cursor:pointer;margin:auto;top:0;left:0;bottom:0;z-index:98}
.open-menu .item{position:absolute;display:block;font-size:0;width:20px;height:2px;background-color:#383838;margin:auto;left:0;right:0;overflow:hidden;z-index:1;transition:all 0.3s ease}
.open-menu .item-1{top:0}
.open-menu .item-2{top:0;bottom:0}
.open-menu .item-3{bottom:0}
.open-menu.toggle-active .item{background-color:#2ecc71}
.close-menu{position:absolute;width:50px;height:14px;cursor:pointer;margin:auto;top:0;left:0;bottom:0;z-index:99;display:none}
/* Post Wrapper */
#main-wrapper{width:65.5%;float:left;padding:0;word-wrap:break-word;overflow:hidden;border-right:1px solid rgba(0,0,0,0.05);}
.main .Blog{border-bottom-width:0}
.main .widget{margin:0 0 .2em;padding:0 0 .2em}
.date-header{display:none}
h1.post-title.entry-title a,h2.post-title.entry-title a{color:#3b5998;}
h1.post-title.entry-title {color:#5e81b1;}
h1.post-title.entry-title a:hover,h2.post-title.entry-title a:hover{color:#e74c3c;}
.post-body {margin:0;line-height:1.7em;text-align:left;}
.post-timestamp,.author-info,.comment-info,.label-info{padding:0 5px 0 0}
.post-info{color:#999;padding:0;overflow:hidden;border:0;margin:15px auto;font-size:14px;}
.post-info a{color:#999;margin:0 5px 0 0}
.post-info a:hover{color:#222;}
.post-info abbr {border:0;text-decoration:none}
.post-body img,.post-body video,.post-body object {max-width:100%}
.breadcrumbs{color:#aaa;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px;padding:15px 0;margin:0 0 20px 0;border-bottom:1px solid rgba(0,0,0,0.05);border-top:1px solid rgba(0,0,0,0.05)}
.breadcrumbs a{color:#aaa;margin:0 2px;line-height:normal;}
.breadcrumbs .breadhome a{margin:0 5px 0 0}
.breadcrumbs .breadlabel:last-child{margin:0 0 0 4px}
.breadcrumbs a:hover{color:#222}
.post-footer{line-height:1.6em}
.post-footer a{color:#dd5252;font-weight:700}
.feed-links{clear:both;line-height:2.5em;}
/* Post Navigation */
#blog-pager{position:relative;display:block;width:100%;margin:15px 10px 15px 0;text-align:center}
#blog-pager-newer-link{float:left}
#blog-pager-older-link{float:right}
/* Arlina Sidebar Wrapper */
#sidebar-wrapper{padding:0;width:34.5%;float:left;word-wrap:break-word;overflow:hidden}
#sidebar-wrapper h2,#sidebar-wrapper h3,#sidebar-wrapper h4{overflow:hidden;position:relative;color:#222;padding:10px 0;margin:0 0 10px 0;text-transform:uppercase;display:block;border-bottom:3px solid rgba(0,0,0,0.05);letter-spacing:.5px;font-size:17px}
#sidebar-wrapper h2:before,#sidebar-wrapper h3:before,#sidebar-wrapper h4:before{content:'';display:inline-block;height:14px;top:0;left:0;margin:0 10px 0 0;width:15px;background:#f39c12}
#sidebar-wrapper .widget ul{margin:5px 0;padding:5px 0}
.widget-content {margin:0;overflow:hidden}
.sidebar {line-height:1.5em;padding:0 0 0 20px}
.sidebar ul {padding:0;margin:0}
.BlogArchive #ArchiveList ul li {text-indent:0!important}
.sidebar ul li{margin:0;padding:5px 0;border-bottom:1px solid #f1f1f1}
.sidebar .widget {margin:0 0 10px 0}
/* Footer Wrapper */
#footer-wrapper{background:#3e4e6b;position:relative;text-align:left;overflow:hidden;color:#fff;box-shadow:0 0 10px rgba(0,0,0,0.09)}
#footer-adwidget .footer-widget{width:31.5%;float:left;margin-left:12px;background:rgba(0,0,0,0.1);padding:15px;border-radius:5px}
#footer-adwidget{max-width:970px;overflow:hidden;margin:20px auto;}
#footer-wrapper h2,#footer-wrapper h3{overflow:hidden;position:relative;color:#fff;padding:0 0 20px 0;margin:0 0 10px 0;text-transform:uppercase;display:block;border-bottom:3px solid rgba(255,255,255,0.05);letter-spacing:.5px;font-size:17px}
#footer-wrapper h2:before,#footer-wrapper h3:before{content:'';display:inline-block;height:14px;top:0;left:0;margin:0 10px 0 0;width:15px;background:#f39c12}
#footx1,#footx2,#footx3 {margin:0 .2%}
#footer-wrapper .widget-content {text-align:left;margin:0;color:#fff;}
#footer-wrapper .widget-content li {margin-left:-14px;color:#fff}
#footer-wrapper .widget-content ul {margin:0;}
#footer-wrapper .widget li {margin:5px 0 0 0;padding:5px 0 0 0;display:block;}
.footer li a{padding-top:0;padding-right:0;line-height:2em;font-size:14px;margin:0}
.footer li a:hover {color:#fff;}
#footer-last{background:rgba(0,0,0,0.1);overflow:hidden;text-align:center;padding:20px;margin:auto;}
.cpleft,#ftright{display:inline-block;color:#fff;font-size:13px}
.cpleft a,#ftright a {color:#fff;text-decoration:none;}
.cpleft a:hover,#ftright a:hover {color:#fff}
/* Popular Post */
#PopularPosts1 ul,.PopularPosts li,.PopularPosts li img,.PopularPosts li a,.PopularPosts li a img{color:#202020;margin:0;padding:0;list-style:none;border:none}
#PopularPosts1 ul{margin:0;list-style:none;}
#PopularPosts1 ul li{margin:0;padding:10px 0;position:relative;}
#PopularPosts1 ul li:last-child{border:0}
#PopularPosts1 ul li img{display:block;width:100%;height:auto}
#PopularPosts1 ul li .item-title a,.PopularPosts ul li a{color:#202020;font-size:14px;line-height:1.6;}
#PopularPosts1 ul li .item-title a:hover,.PopularPosts ul li a:hover{color:#ec2028;}
#PopularPosts1 .item-thumbnail{margin:0 10px 0 0;overflow:hidden;z-index:2;display:block;position:relative;border-radius:0;width:100px;height:auto;float:left}
#PopularPosts1 .item-title{padding:0 5px}
#PopularPosts1 ul li:nth-child(1){border-top:none}
#PopularPosts1 ul li .item-snippet{color:#999;font-size:13px}
/* Label */
.label-size-1,.label-size-2,.label-size-3,.label-size-4,.label-size-5 {font-size:100%;opacity:1}
.cloud-label-widget-content{text-align:left;padding:0;}
.label-count {white-space:nowrap;display:inline-block;}
#sidebar-wrapper .Label li{position:relative;background:#fff;color:#444;padding:0;margin:0;text-align:left;width:100%;transition:all .3s}
#sidebar-wrapper .Label li:hover {background:#fff;color:#cf4d35;}
#sidebar-wrapper .Label li:before {content:"";position:absolute;width:2px;height:100%;background:#4fafe9;transition:all .2s ease-in-out;}
#sidebar-wrapper .Label li:hover:before {width:100%;}
#sidebar-wrapper .Label li a{padding:0 0 0 20px;display:block;position:relative;line-height:42px;color:#787878;text-decoration:none;transition:all .3s}
#sidebar-wrapper .Label li a:hover {color:#fff;}
#sidebar-wrapper .Label li span{float:right;height:42px;line-height:42px;width:42px;text-align:center;display:inline-block;background:#4fafe9;color:#FFF;position:absolute;top:0;right:0;z-index:2}
#sidebar-wrapper .Label li:nth-child(1) span,#sidebar-wrapper .Label li:nth-child(1):before,#sidebar-wrapper .Label li:nth-child(7) span,#sidebar-wrapper .Label li:nth-child(7):before {background:#ca85ca;}
#sidebar-wrapper .Label li:nth-child(2) span,#sidebar-wrapper .Label li:nth-child(2):before,#sidebar-wrapper .Label li:nth-child(8) span,#sidebar-wrapper .Label li:nth-child(8):before {background:#e54e7e;}
#sidebar-wrapper .Label li:nth-child(3) span,#sidebar-wrapper .Label li:nth-child(3):before,#sidebar-wrapper .Label li:nth-child(9) span,#sidebar-wrapper .Label li:nth-child(9):before {background:#61c436;}
#sidebar-wrapper .Label li:nth-child(4) span,#sidebar-wrapper .Label li:nth-child(4):before,#sidebar-wrapper .Label li:nth-child(10) span,#sidebar-wrapper .Label li:nth-child(10):before {background:#f4b23f;}
#sidebar-wrapper .Label li:nth-child(5) span,#sidebar-wrapper .Label li:nth-child(5):before,#sidebar-wrapper .Label li:nth-child(11) span,#sidebar-wrapper .Label li:nth-child(11):before {background:#46c49c;}
#sidebar-wrapper .Label li:nth-child(6) span,#sidebar-wrapper .Label li:nth-child(6):before,#sidebar-wrapper .Label li:nth-child(12) span,#sidebar-wrapper .Label li:nth-child(12):before {background:#607ec7;}
#sidebar-wrapper .label-size{background:#2ecc71;color:#fff;display:block;float:left;margin:0 4px 4px 0;font-size:14px;border-radius:3px;transition:all .3s}
#sidebar-wrapper .label-size a{display:inline-block;color:#fff;padding:8px;transition:all .3s}
#sidebar-wrapper .label-count{display:inline-block;background:#3a91c7;color:#fff;padding:5px 8px;text-align:center;transition:all .3s}
#sidebar-wrapper .label-size a:hover{color:#fff;text-decoration:underline}
#footer-wrapper .label-size{background:#2ecc71;color:#fff;display:block;float:left;margin:0 4px 4px 0;font-size:14px;border-radius:3px;transition:all .3s}
#footer-wrapper .label-size:hover{background:#c5342e;}
#footer-wrapper .label-size a{display:inline-block;color:#fff;padding:8px;transition:all .3s}
#footer-wrapper .label-size a:hover {color:#fff}
#footer-wrapper .label-count{white-space:nowrap;display:inline-block;color:#eee;padding:5px 8px;text-align:center}
#footer-wrapper .Label li{z-index:2;padding:5px 0;margin:0;text-align:left;color:#fff;font-size:13px;border-bottom:1px solid rgba(0,0,0,0.05);transition:all .3s}
#footer-wrapper .Label li:before{content:'\f10c';font-family:fontawesome;color:#ecf0f1;margin:0 10px 0 0;}
#footer-wrapper .Label li:hover:before{content:'\f111';color:#2ecc71}
#footer-wrapper .Label li a{color:#fff;}
#footer-wrapper .Label li a:hover,#footer-wrapper .Label li:hover,#footer-wrapper .Label li span:hover {color:#fff}
#footer-wrapper .Label li .nexlab{position:relative;float:right;background:rgba(255,255,255,.12);color:#fff;padding:5px 7px;border-radius:0}
.arlina-border{display:table;width:100%;table-layout:fixed}
.arlina-border span{float:left;width:14.28%;height:5px;background:#CC0000}
.arlina-border span:nth-child(2){background:#FF7E00}
.arlina-border span:nth-child(3){background:#F7C602}
.arlina-border span:nth-child(4){background:#4D9902}
.arlina-border span:nth-child(5){background:#3B94D9}
.arlina-border span:nth-child(6){background:#B60783}
.arlina-border span:nth-child(7){background:#550175}
/* Ad Slot */
.banner,.banner2 {margin:0 auto;text-align:center;overflow:hidden;}
.banner {margin:0 auto 20px auto}
.banner .widget,.banner2 .widget {width:100%;max-width:100%;margin:0 auto;background:transparent;text-align:center;overflow:hidden;}
.banner img, .banner iframe,.banner2 img, .banner2 iframe{display:block;margin:0 auto;text-align:center;}
.kotak_iklan {margin:auto;text-align:center;}
.kotak_iklan .sidebar .widget-content,.kotak_iklan .sidebar-two .widget-content{padding:0;border:0;}
.kotak_iklan .sidebar .widget {margin-bottom:0;padding:0;}
.kotak_iklan img{background:#fff;text-align:center;margin:10px 5px;transition:all .6s}
.kotak_iklan img:hover{box-shadow:0 8px 20px rgba(0,0,0,0.15),0 5px 5px rgba(0,0,0,0.12)}
.kotak_iklan2 {text-align:center;margin:0 auto;transition:all 1s ease-out}
.kotak_iklan2 .sidebar .widget-content,.kotak_iklan2 .sidebar-two .widget-content{padding:0;background:#f2f6f7;box-shadow:0 1px 2px 0 rgba(0,0,0,0.1);border:0;}
.kotak_iklan2 .sidebar .widget,.kotak_iklan2 .sidebar-two .widget {margin-bottom:0;padding:0;}
.kotak_iklan2 img {text-align:center;transition:all 1s ease-out;}
.kotak_iklan2 img:hover {transition:all .5s ease-out;}
.kotak_iklan3 {position:relative;margin:0 auto;}
#HTML6 .widget-content{background:#ecf0f1;padding:5px 0}
/* To top */
.vikkatotop{visibility:hidden;z-index:2;background:#fff;color:rgba(0,0,0,0.35);font-size:1.6rem;width:47px;height:47px;line-height:44px;text-align:center;position:fixed;bottom:30px;right:30px;border-radius:3px;cursor:pointer;-webkit-transform:translateZ(0) scale(0.0);transform:translateZ(0) scale(0.0);opacity:.9;transition:all .4s}
.vikkatotop:hover{background:#fff;color:rgba(0,0,0,0.55);opacity:1;box-shadow:0 14px 28px rgba(0,0,0,0.15),0 10px 10px rgba(0,0,0,0.12);}
.vikkatotop.arlniainf{visibility:visible;cursor:pointer;opacity:1;-webkit-transform:translateZ(0) scale(1.0);transform:translateZ(0) scale(1.0);transition:all .4s;}
.vikkatotop::before{content:'';display:inline-block;position:absolute;width:100%;height:100%;border-radius:100%;top:0;left:0}
.vikkatotop:hover::before{-webkit-animation:sonar-effect 1s ease-in-out .1s infinite;animation:sonar-effect 1s ease-in-out .1s infinite}
/* Global Responsive */
@media screen and (max-width:800px) {
#wrapper{padding:0}
.post-media{max-height:175px;overflow:hidden}
.navlist >li.menu-item-has-children.item-plus >a:after,.navlist >li >ul >li.menu-item-has-children.item-plus >a:after{display:none}
#floatside{max-width:100%;position:relative!important;top:initial!important}
#header{text-align:center}}
@media only screen and (max-width:768px) {
body{background:#fff}
#content-wrapper{padding:10px}
#header{padding:20px 10px;}
#header2 {float:none;max-width:100%;}
.header-right {float:none;max-width:100%;margin-top:20px;}
#sidebar-wrapper,#main-wrapper {width:100%;padding:0;border:0}
.sidebar {padding:0;}
#footer-wrapper{margin:20px auto 0 auto;padding:0 10px 20px 10px}
#footer-adwidget .footer-widget{width:31%}
.vikkatotop{bottom:20px;right:20px;}
.banner{margin:20px auto}
.banner2{padding:0 10px}}
@media only screen and (max-width:667px) {
#footer-adwidget .footer-widget {width:47.4%;}
.vikkatotop{display:none}}
@media screen and (max-width:640px) {
.comment-info{display:none}
.navlist li.megamenu .post{background:transparent}
.navlist li.megamenu .sub-menu li a{font-size:15px}
#footer-adwidget {width:100%;overflow:hidden;}
#footer-adwidget .footer-widget {width:100%;float:left;margin:0 auto 10px auto;}
.cpleft, #ftright {line-height:normal;}}
@media screen and (max-width:480px) {
.infinite-nav .share-box,.infinite-nav .search-box .icon-search:before{display:none}
#footer-last{padding:10px 0}
.comments .comments-content .user{line-height:2.8em}}
.status-msg-body {padding:10px 0;display:none}
.status-msg-wrap{display:none;font-size:14px;margin-left:1px;width:100%;color:#666}
.status-msg-wrap a{color:orange!important}
.status-msg-bg{display:none;background:#ccc;position:relative;width:99%;padding:6px;z-index:1;border-radius:3px;border:2px #999 solid}
.status-msg-border{display:none;border:0;position:relative;width:99%}
</style>
<b:if cond='data:blog.pageType == "index"'>
<style type='text/css'>
/* Featured Post */
#feature-posts-section{max-height:350px;overflow:hidden;margin:0 auto 20px auto}
.feature-post a{font-size:1em;color:#fff;}
.feature-post a:hover{color:#fff;}
.main-post.feature-post a{margin:0;font-size:17px}
.feature-post .col-post{float:left;position:relative;overflow:hidden;margin:0 20px 0 0}
.feature-post .secondary-post{background:#dadada;width:32%;margin:0 0 20px 0;transition:all .4s}
.feature-post .main-post{background:#dadada;width:65.8%;padding:0;transition:all .4s}
.feature-post span{background:#95a5a6;color:#fff;font-style:normal;position:absolute;font-size:11px;font-weight:700;text-transform:uppercase;line-height:1.4;padding:6px 8px;top:0;left:0;z-index:2}
.feature-post img{height:100%;transition:all .5s}
.feature-post .main-post img{height:350px;width:100%;object-fit:cover;}
.feature-post .secondary-post img{height:165px;object-fit:cover;width:100%;}
.feature-post .main-post:hover img,.feature-post .secondary-post:hover img{backface-visibility:hidden;transform-style:preserve-3d;}
.feature-post header{position:absolute;background:rgba(0,0,0,0.3);bottom:-40px;left:0;right:0;padding:20px;opacity:0;visibility:hidden;transition:all .4s}
.feature-post .main-post:hover header,.feature-post .secondary-post:hover header{opacity:1;visibility:visible;bottom:0;z-index:2;}
.feature-post header:hover{background:rgba(0,0,0,0.6)}
.feature-post .secondary-post header{padding:15px}
.feature-post header h3{font-size:18px;}
.feature-post h4{font-size:14px;}
@media screen and (max-width:768px) {
#feature-posts-section{display:none}}
</style>
</b:if>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<style type='text/css'>
/* Post Wrapper */
.thumb-wrapper{display:inline-block;position:relative;float:left;margin:0 20px 0 0;width:240px;height:160px;padding:0;z-index:2;overflow:hidden}
.first-thumb{margin:0;width:100%;height:auto;min-height:160px;overflow:hidden;position:relative;transition:all 0.5s ease-out}
.post{margin:0;padding:10px 20px 0 0}
.post h1,.post h2{margin:0;font-size:20px;font-weight:400}
.post-snippet{font-size:14px;line-height:1.6;color:#aaa}
.label-info{position:absolute;left:0;top:0;z-index:3;padding:0;font-size:0}
.label-info a{display:inline-block;background:#95a5a6;color:#fff;font-size:12px;padding:6px 8px}
/* Page Navigation */
#blog-pager{background:#fff;clear:both;width:auto;padding:20px 0 0 0;line-height:normal;position:relative;display:block;text-align:left;overflow:visible;margin:0;}
.showpage a,.showpageNum a,.showpagePoint{background:#e74c3c;position:relative;display:inline-block;color:#fff;margin:0 5px 0 0;padding:10px 14px;text-decoration:none;font-size:14px;font-weight:700;border-radius:4px;opacity:.7;transition:all .1s}
.showpageOf{float:right;color:#95a5a6;display:inline-block;font-size:13px;margin:0;padding:6px 0;line-height:1.42857143}
.showpage a:hover,.showpageNum a:hover{background:#e74c3c;color:#fff;position:relative;opacity:1}
.showpagePoint,.showpagePoint:hover{background:#e74c3c;color:#fff;opacity:1}
.jump-link,.label-info a.label-block:nth-child(n+2),.showpageOf{display:none;}
@media screen and (max-width:640px) {
.blog-pager a.js-load,.blog-pager .js-loaded{max-width:60%}}
@media screen and (max-width:480px) {
.post{padding:0}
.thumb-wrapper{float:none;margin:0 auto 10px auto;width:100%;height:auto;}}
</style>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "static_page"'>
<style type='text/css'>
/* Post Wrapper */
#floatside{max-width:100%;position:relative!important;top:initial!important}
</style>
</b:if>
<b:if cond='data:blog.url != data:blog.homepageUrl'>
<style type='text/css'>
#blog-pager,.blog-pager{margin:0 auto;padding:10px 20px;font-size:14px;font-weight:700;color:#212121;line-height:normal}
#blog-pager a.blog-pager-newer-link,#blog-pager a.blog-pager-older-link,#blog-pager .blog-pager-newer-link,#blog-pager .blog-pager-older-link{background:#e74c3c;margin:7px 0;padding:8px 12px;line-height:normal;color:#fff;font-weight:400;font-size:13px;text-transform:uppercase;display:inline-block;overflow:hidden;text-align:center;list-style:none;border-radius:4px;opacity:.7}
#blog-pager a.blog-pager-newer-link:hover,#blog-pager a.blog-pager-older-link:hover{background:#e74c3c;color:#fff;opacity:1}
#blog-pager a.home-link{background:#e74c3c;margin:7px 0;padding:8px 12px;line-height:normal;color:#fff;font-weight:400;font-size:13px;text-transform:uppercase;display:inline-block;overflow:hidden;text-align:center;list-style:none;border-radius:4px;opacity:.7}
#blog-pager a.home-link:hover{background:#e74c3c;color:#fff;opacity:1}
#blog-pager .blog-pager-older-link{float:right}
#blog-pager .blog-pager-newer-link{float:left}
#blog-pager .blog-pager-older-link span{margin-right:10px}
#blog-pager .blog-pager-newer-link span{margin-left:10px}
.banner{margin:20px auto}
</style>
</b:if>
<b:if cond='data:blog.pageType != "index"'>
<style type='text/css'>
/* Post Section */
#main-wrapper{padding:0 20px 0 0}
.post-body img{background:#fdfdfd;height:auto;max-width:100%;margin-bottom:2px;padding:0;transition:all .3s}
.post-body img:hover {opacity:0.95;}
/* Comments */
#comments{display:block;position:relative}
/* Shortcodes */
.button{list-style:none;text-align:center;width:95%;margin:10px;padding:2px;font-size:14px;clear:both;}
.button ul {margin:0;padding:0}
.post-body ul.button{list-style:none;text-align:center;margin:0 auto;padding:10px;font-size:14px;clear:both;z-index:2;width:100%;border-radius:5px;border:1px solid rgba(0,0,0,0.05)}
.button li{display:inline-block;margin:10px 5px;padding:0;list-style:none;width:47.8%}
.post-body ul.button a.demo,.post-body ul.button a.download{position:relative;display:block;background:#ec2028;max-width:100%;padding:14px;color:#fff;font-weight:700;font-size:1.1rem;text-align:center;text-transform:uppercase;letter-spacing:0.5px;margin:auto;border-radius:5px;overflow:hidden;transition:all .1s}
.post-body ul.button a.demo{background:#1abc9c}
.post-body ul.button a.demo:hover{background:#16a085;color:#fff}
.post-body ul.button a.download{background:#ef4d47;}
.post-body ul.button a.download:hover{background:#d7403a;color:#fff}
.first-letter{float:left;font-size:60px;line-height:60px;padding-top:4px;padding-right:8px;padding-left:3px;font-family:Georgia}
.bagidua {-webkit-column-count:2;-moz-column-count:2;column-count:2;}
.bagitiga {-webkit-column-count:3;-moz-column-count:3;column-count:3;}
.bagiempat {-webkit-column-count:4;-moz-column-count:3;column-count:4;}
.bagidua img,.bagitiga img,.bagiempat img{-webkit-backface-visibility:hidden;margin-bottom:20px;max-width:100%;}
#wrap{margin:20px auto;text-align:center}
.btn{display:block;background:#3498db;width:100%;padding:14px;color:#fff;font-size:1.1rem;text-align:center;text-transform:uppercase;letter-spacing:0.5px;border-radius:4px;transition:all .3s}
.btn:hover,.btn:active,.btn.down:hover,.btn.down:active{background:#45aef5}
.post-body a:visited.btn,.post-body a:visited.btn.down,.post-body a:link.btn,.post-body a.btn.down,.post-body a.btn:hover,.post-body a.btn:active,.post-body a.btn.down:hover,.post-body a.btn.down:active{color:#fff}
.btn i{margin:0}
.btn.down.anima{-webkit-animation:anim 2s ease-in infinite;animation:anim 2s ease-in infinite}
.videoyoutube{text-align:center;margin:auto;width:100%;}.video-responsive{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;}.video-responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}
/* CSS Highlighter */
.hljs{display:block;overflow-x:auto;padding:0.5em;background:#2c3641;color:#fff}
.hljs-name,.hljs-strong{font-weight:bold}
.hljs-code,.hljs-emphasis{font-style:italic}
.hljs-tag{color:#62c8f3}
.hljs-variable,.hljs-template-variable,.hljs-selector-id,.hljs-selector-class{color:#ade5fc}
.hljs-string,.hljs-bullet{color:#a2fca2}
.hljs-type,.hljs-title,.hljs-section,.hljs-attribute,.hljs-quote,.hljs-built_in,.hljs-builtin-name{color:#ffa}
.hljs-number,.hljs-symbol,.hljs-bullet{color:#d36363}
.hljs-keyword,.hljs-selector-tag,.hljs-literal{color:#fcc28c}
.hljs-comment,.hljs-deletion,.hljs-code{color:#888}
.hljs-regexp,.hljs-link{color:#c6b4f0}
.hljs-meta{color:#fc9b9b}
.hljs-deletion{background-color:#fc9b9b;color:#333}
.hljs-addition{background-color:#a2fca2;color:#333}
.hljs a{color:inherit}
.hljs a:focus,.hljs a:hover{color:inherit;text-decoration:underline}
mark .hljs-attr,mark .hljs-string,mark .hljs-bullet{background-color:#e67e22;color:#fff;}
.BLOG_mobile_video_class{display:none!important;}
.post-body a.img,.post-body .separator a {margin-left:0!important;margin-right:0!important;}
/* Subscribe Box */
#subscribe-box{background:#f4f5f6;display:block;overflow:hidden;margin:20px auto;padding:30px 20px;border-radius:3px}
#subscribe-box p{font-size:15px;margin:0 auto 20px auto;color:rgba(255,255,255,.7);padding:0;text-align:center}
#subscribe-box .emailfield{margin:auto}
#subscribe-box .emailfield form{margin:0}
#subscribe-box .emailfield input{background:rgba(0,0,0,0.05);padding:12px;color:#7f8c8d;font-size:14px;width:70%;float:left;text-indent:10px;border:0;border-radius:3px}
#subscribe-box .emailfield input:focus{color:#222;outline:none;}
#subscribe-box .emailfield .submitbutton{background:#e74c3c;color:#fff;width:28.1%;margin:0 0 0 10px;font-size:14px;letter-spacing:.5px;cursor:pointer;border:0;text-indent:initial;text-transform:uppercase;border-radius:3px;transition:all .3s}
#subscribe-box .emailfield .submitbutton:focus,#subscribe-box .emailfield .submitbutton:hover{background:#c0392b;color:#fff;}
@media screen and (max-width:640px){
#subscribe-box .emailfield input{width:100%;float:none;text-indent:10px;}
#subscribe-box .emailfield .submitbutton{width:100%;margin:15px auto 0 auto;}}
</style>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<style type='text/css'>
/* Post Section */
#blog-pager{text-align:center;padding:10px 0;overflow:hidden;border-bottom:1px solid rgba(0,0,0,0.05);border-top:1px solid rgba(0,0,0,0.05)}
.comments-content {display:block;position:relative;margin-top:15px;}
/* Related Post */
#related-post {margin:0;padding:0;}
#related-post h4{overflow:hidden;position:relative;color:#222;padding:10px 0;margin:15px 0;text-transform:uppercase;display:block;border-bottom:3px solid rgba(0,0,0,0.05);letter-spacing:.5px;font-size:17px}
#related-post h4:before{content:'';display:inline-block;height:14px;top:0;left:0;margin:0 10px 0 0;width:15px;background:#dd5252}
.relhead {background:#fff;font-size:100%;font-weight:normal;line-height:150%;overflow:hidden;padding:0;}
ul#related-summary {margin:0;padding:0;}
ul#related-summary li{position:relative;float:left;list-style:none outside none;margin:0 5px 15px 5px;padding:0;overflow:hidden;height:175px;width:31.6%}
ul#related-summary li img{background-color:#f4f5f6;width:100%;height:auto;max-width:100%;margin:0 auto;vertical-align:middle;}
ul#related-summary li a.relinkjdulx{color:#000;display:block;font-size:14px;font-weight:400;line-height:normal;overflow:hidden;text-align:left;padding:10px 10px 10px 0}
ul#related-summary li a.relinkjdulx:hover{color:#dd5252;}
.overlayb {position:relative;max-height:140px;overflow:hidden;}
.overlayb:before{content:'';background-color:rgba(0,0,0,0.2);position:absolute;text-align:center;top:0;left:0;right:0;bottom:0;z-index:2;opacity:0;visibility:hidden;transition:all .6s}
.overlayb:after{content:'\f002';font-family:fontawesome;font-size:1.3rem;color:rgba(255,255,255,.6);position:absolute;top:42%;left:45%;text-align:center;z-index:2;opacity:0;visibility:hidden;transition:all .6s}
.overlayb:hover:before,.overlayb:hover:after{opacity:1;visibility:visible;}
.post ul li span.news-text{display:none}
/* CSS Share Button */
#share_btnper{margin:20px auto;padding:0}
.showother{display:none}
.share_btn{position:relative;margin:0;padding:0;display:block;overflow:hidden}
.share_btn ul,ul .showother{position:relative;margin:0;padding:0;font-size:12px}
.share_btn ul li{float:left;display:inline-block;overflow:hidden}
.share_btn li a,.shareplus{color:#fff;padding:0;width:40px;display:block;text-align:center;height:35px;line-height:35px;transition:all 0.25s;margin:0 5px 5px 0;text-transform:uppercase;letter-spacing:1px;border-radius:4px;overflow:hidden}
.share_btn ul li span{padding:0;margin:0}
.share_btn i{font-size:16px;padding:0;margin:0;line-height:35px;text-align:center}
.shareplus{padding:0;background:#bdc3c7;cursor:pointer}
.share_btn li a.fb i,.share_btn li a.tw i{width:20px;text-align:left}
.share_btn a:hover{background:#333;color:#fff}
.share_btn li a.fb{background:#4867aa;padding:0 35px;width:auto}
.share_btn li a.tw{background:#1da1f2;padding:0 35px;width:auto}
.share_btn li a.gp{background:#dc4a38}
.share_btn li a.pt{background:#ca2128}
.share_btn li a.le{background:#0673ab}
.share_btn li a.tr{background:#43556e}
.share_btn li a.em{background:#141b23}
.share_btn li a.ln{background:#00c300}
.share_btn li a.bm{background:#000}
.share_btn li a.wa{background:#4dc247}
.share_btn li a:hover,.shareplus:hover{-webkit-filter:grayscale(100%)}
/* Item Responsive */
@media screen and (max-width:768px){
#main-wrapper{padding:0}
.share_btn li a.fb,.share_btn li a.tw{padding:0 37px}
ul#relpost_img_sum li{width:47.7%}}
@media screen and (max-width:640px){
.share_btn li a.fb,.share_btn li a.tw{padding:0 25px}}
@media screen and (max-width:320px){
.share_btn ul li a.fb,.share_btn ul li a.tw{padding:0 14px}}
@media only screen and (max-width:960px){
.bagitiga{-webkit-column-count:2;-moz-column-count:2;column-count:2;}}
@media only screen and (max-width:640px){
.bagitiga{-webkit-column-count:1;-moz-column-count:1;column-count:1;}
ul#related-summary li{width:47%;height:170px}}
@media only screen and (max-width:320px){
ul#related-summary li{width:100%;float:none;margin:0 0 15px 0;height:200px}}
</style>
</b:if>
<b:if cond='data:blog.searchLabel'>
<style type='text/css'>
#floatside{max-width:100%;position:relative!important;top:initial!important}
</style>
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<style type='text/css'>
#header,#outer-wrapper,#post-wrapper,#sidebar-wrapper,#footer-wrapper,#content-wrapper,#wrapper,.vikkatotop.arlniainf,.vikkatotop{display:none;}
body,html{overflow:hidden;margin:0;padding:0;width:100%;min-height:100vh;}body{background:#fafafa}
.page_menu_wrapper{border-bottom:1px solid rgba(0,0,0,0.05)}
.container404{margin:8% auto 0 auto;max-width:640px;min-width:200px;line-height:normal;backface-visibility:hidden;transition:all .3s;}
.box404{background:#fff;padding:20px;font-size:100%;color:#222;box-shadow:0 19px 38px rgba(0,0,0,0.10),0 15px 12px rgba(0,0,0,0.05);transition:all .3s}
.box404:hover{box-shadow:0 3px 6px rgba(0,0,0,0.08),0 3px 6px rgba(0,0,0,0.13);}
.box404 h2,.box404 h3{color:#222;display:block;text-align:center;font-size:1.5rem;margin:10px auto;font-weight:400}
.box404 h2{font-size:7rem;color:#e74c3c}
.box404 h3{margin:10px auto 20px auto;}
.box404 p{display:block;margin:10px 0}
.box404 ul li{margin:0 0 8px 20px;list-style:initial;list-style-type:square}
.box404 ul li a{color:#e74c3c;}.box404 ul li a:hover{color:#000;}
.copyright404{display:block;text-align:center;margin:auto;font-weight:normal;max-width:640px;min-width:200px;padding:20px;border-radius:0 0 5px 5px}
.copyright404 a,.copyright404 a:hover{color:#000}
@media screen and (max-width:1024px) {
.box404 h2{font-size:4rem;}
.container404{margin:4% auto 0 auto;}}
</style>
</b:if>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js'/>
<script type='text/javascript'>
//<![CDATA[
//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("https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i");loadCSS("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
//]]>
</script>
<script class='java' type='text/javascript'>
//<![CDATA[
function labelthumbs(t){document.write('<ul class="'+outerclass+'">');for(var e=0;e<numposts;e++){var r,i=t.feed.entry[e],n=i.title.$t,l=i.category[0].term;if(e==t.feed.entry.length)break;for(var o=0;o<i.link.length;o++)if("alternate"==i.link[o].rel){r=i.link[o].href;break}var u;try{u=i.media$thumbnail.url}catch(m){s=i.content.$t,a=s.indexOf("<img"),b=s.indexOf('src="',a),c=s.indexOf('"',b+5),d=s.substr(b+5,c-b-5),u=-1!=a&&-1!=b&&-1!=c&&""!=d?d:"http://2.bp.blogspot.com/-mmjt8mh87bQ/VQ6ltMr8GxI/AAAAAAAAEfo/93SmjxkwmO0/s500-c/no-image-found.jpg"}var p=i.published.$t,v=p.substring(0,4),h=p.substring(5,7),f=p.substring(8,10),g=new Array;g[1]="January",g[2]="February",g[3]="March",g[4]="April",g[5]="May",g[6]="June",g[7]="July",g[8]="August",g[9]="September",g[10]="October",g[11]="November",g[12]="December";var A=g[parseInt(h,10)]+" "+f+", "+v;document.write(starttag+"<"+intag+' class="post">'),document.write('<div class="post-media"><div class="image-wrap"><img src="'+u.replace("/s72-c/","/s400-p/")+'" alt="'+n+'"/></div></div><div class="post-body">'),"featured-slider"==outerclass&&document.write('<span class="cat"><a href="/search/label/'+l+'">'+l+'</a></span><div class="post-title"><h4><a href="'+r+'">'+n+'</a></h4></div><div class="post-meta"><span class="post-date">'+A+"</span></div></div>"),"sub-menu"==outerclass&&document.write('<div class="post-title"><h2><a href="'+r+'">'+n+'</a></h2></div><span class="post-date">'+A+"</span></div>"),document.write("</"+intag+">"+endtag)}document.write("</ul>")};
// Featured
function removeHtmlTag(e,t){for(var s=e.split("<"),r=0;r<s.length;r++)-1!=s[r].indexOf(">")&&(s[r]=s[r].substring(s[r].indexOf(">")+1,s[r].length));return s=s.join(""),s=s.substring(0,t-1)}function sliderposts(e){j=showRandomImg?Math.floor((imgr.length+1)*Math.random()):0,img=new Array,numposts1<=e.feed.entry.length?maxpost=numposts1:maxpost=e.feed.entry.length;for(var t=0;t<maxpost;t++){var r,i,n=e.feed.entry[t],l=n.category[0].term,o=n.title.$t;if(t==e.feed.entry.length)break;for(var m=0;m<n.link.length;m++)if("alternate"==n.link[m].rel){i=n.link[m].href;break}for(var m=0;m<n.link.length;m++)if("replies"==n.link[m].rel&&"text/html"==n.link[m].type){r=n.link[m].title.split(" ")[0];break}if("content"in n)var g=n.content.$t;else if("summary"in n)var g=n.summary.$t;else var g="";postdate=n.published.$t,j>imgr.length-1&&(j=0),img[t]=imgr[j],s=g,a=s.indexOf("<img"),b=s.indexOf('src="',a),c=s.indexOf('"',b+5),d=s.substr(b+5,c-b-5),-1!=a&&-1!=b&&-1!=c&&""!=d&&(img[t]=d);for(var h=[1,2,3,4,5,6,7,8,9,10,11,12],p=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],f=(postdate.split("-")[2].substring(0,2),postdate.split("-")[1]),u=(postdate.split("-")[0],0);u<h.length;u++)if(parseInt(f)==h[u]){f=p[u];break}if(0==t){var v='<div class="main-post col-post"><a href="'+i+'"><span class="blue">'+l+'</span><img src="'+img[t]+'" height="350" width="640" alt=""></img></a><header><h3 class="entry-title"><a href="'+i+'" title="">'+o+"</a></h3></header></div>";document.write(v)}else{var v='<div class="secondary-post col-post" style="margin-right:0"><span class="blue">'+l+'</span><a class="hover_play_small" href="'+i+'"><img src="'+img[t]+'" height="200" width="320"></img></a><header><h4><a href="'+i+'">'+o+"</a></h4></header></div>";document.write(v)}j++}}imgr=new Array,imgr[0]="http://sites.google.com/site/fdblogsite/Home/nothumbnail.gif",showRandomImg=!0,aBold=!0,summaryPost=150,summaryTitle=50,numposts1=10,featured_numposts="3";
//]]>
</script>
</head>
<!-- <body><div></div> -->
<body expr:class='"loading" + data:blog.mobileClass'>
<b:if cond='data:blog.pageType == "error_page"'>
<div class='container404'>
<div class='box404'>
<h2>404</h2>
<h3>The page could not be found</h3>
<p>The page you are looking for might have been removed had its name changed or is temporarily unavailable</p>
<p>Please try the following :</p>
<ul>
<li>If you type the page address in the <strong>Address bar</strong>, make sure that it is spelled correctly.</li>
<li>Click <strong><a expr:href='data:blog.homepageUrl'>here</a></strong> to return to our main page.</li>
<li>If you were linked to this page, contact the administrator and make them aware of this issue.</li>
</ul>
</div>
<div class='copyright404'>
© <span id='current-year'/> <a expr:href='data:blog.homepageUrl'><data:blog.title/></a>. All Rights Reserved.
</div>
</div>
</b:if>
<div id='wrapper'>
<div id='header' itemscope='itemscope' itemtype='http://schema.org/WPHeader'>
<b:section id='header2' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Infinite (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'/>
<b:widget-setting name='displayHeight'>0</b:widget-setting>
<b:widget-setting name='sectionWidth'>-1</b:widget-setting>
<b:widget-setting name='useImage'>false</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>BEHIND</b:widget-setting>
<b:widget-setting name='displayWidth'>0</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'>
<b:include name='title'/>
</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'>
<b:include name='title'/>
</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'>
<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'>
<b:include name='title'/>
</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.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<h1 class='title'>
<a expr:href='data:blog.homepageUrl' expr:title='data:blog.title' itemprop='url'>
<span itemprop='name'><data:title/></span>
</a>
</h1>
<b:else/>
<h2 class='title'>
<a expr:href='data:blog.homepageUrl' expr:title='data:blog.title' itemprop='url'>
<span itemprop='name'><data:title/></span>
</a>
</h2>
</b:if>
<b:else/>
<h2 class='title'>
<a expr:href='data:blog.homepageUrl' expr:title='data:blog.title' itemprop='url'>
<span itemprop='name'><data:title/></span>
</a>
</h2>
</b:if>
</b:includable>
</b:widget>
</b:section>
<b:section class='header-right section' id='header-right' maxwidgets='1' showaddelement='yes'>
<b:widget id='HTML97' locked='false' title='' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><div class="lalulintas"><span class="rambuhijau">Your Ads Here</span>
</div>
<style scoped='' type='text/css'>
.lalulintas{width:100%;height:100px;background:#f4f5f6;margin:0 auto;position:relative;}
.rambuhijau{position:absolute;display:block;color:#95a5a6;text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:1.6rem;padding:10px;margin:5px;left:0;right:0;top:0;bottom:0;font-weight:700;line-height:4.4rem}
</style></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:includable>
</b:widget>
</b:section>
</div>
<div class='clear'/>
<nav class='infinite-nav' data-menu-responsive='992' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement' role='navigation'>
<div class='container'>
<div class='open-menu'>
<span class='item item-1'/>
<span class='item item-2'/>
<span class='item item-3'/>
</div>
<div class='close-menu'/>
<ul class='navlist'>
<li><a href='/' itemprop='url'><span itemprop='name'>Home</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Photography</span></a></li>
<li><a href='/error404' itemprop='url'><span itemprop='name'>404</span></a></li>
<li>
<a href='#'><span itemprop='name'>Action</span></a>
<ul class='sub-menu'>
<li><a href='#' itemprop='url'><span itemprop='name'>Tags</span></a></li>
<li>
<a href='#'><span itemprop='name'>Sub Menu</span></a>
<ul class='sub-menu'>
<li><a href='#' itemprop='url'><span itemprop='name'>Menu 1</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Menu 2</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Menu 3</span></a></li>
</ul>
</li>
<li><a href='#'><span itemprop='name'>Live</span></a></li>
<li><a href='#'><span itemprop='name'>Fashion</span></a></li>
</ul>
</li>
<li><a href='#' itemprop='url'><span itemprop='name'>Adventures</span></a></li>
<li class='megamenu col-5'>
<a href='#'><span itemprop='name'>Travel</span></a>
<script class='java' type='text/javascript'>//<![CDATA[
var numposts = 5;
var outerclass = "sub-menu";
var starttag = "<li>";
var endtag = "</li>";
var intag = "div";
//]]>
</script>
<script class='java' src='/feeds/posts/default/-/Travel?alt=json-in-script&callback=labelthumbs' type='text/javascript'/>
</li>
<li class='megamenu col-5'><a href='#' itemprop='url'><span itemprop='name'>Blogger</span></a>
<script class='java' type='text/javascript'>//<![CDATA[
var numposts = 5;
var outerclass = "sub-menu";
var starttag = "<li>";
var endtag = "</li>";
var intag = "div";
//]]>
</script>
<script class='java' src='/feeds/posts/default/-/Blogger?alt=json-in-script&callback=labelthumbs' type='text/javascript'/>
</li>
</ul>
<div class='search-box'>
<span class='icon-search'>
<i class='fa fa-search'/>
</span>
<form action='/search' method='get'>
<input name='q' onblur='if(this.value=='')this.value=this.defaultValue;' onfocus='if(this.value==this.defaultValue)this.value='';' type='search' value='Search and hit enter'/>
</form>
</div>
<div class='share-box'>
<a class='social-facebook' href='#' rel='nofollow' target='_blank'><i class='fa fa-facebook'/></a>
<a class='social-twitter' href='#' rel='nofollow' target='_blank'><i class='fa fa-twitter'/></a>
<a class='social-gplus' href='#' rel='nofollow' target='_blank'><i class='fa fa-google-plus'/></a>
<a class='social-linkedin' href='#' rel='nofollow' target='_blank'><i class='fa fa-linkedin'/></a>
<a class='social-pinterest' href='#' rel='nofollow' target='_blank'><i class='fa fa-pinterest'/></a>
<a class='social-youtube' href='#' rel='nofollow' target='_blank'><i class='fa fa-youtube'/></a>
<a class='social-instagram' href='#' rel='nofollow' target='_blank'><i class='fa fa-instagram'/></a>
</div>
</div>
</nav>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<div class='ct-wrapper' id='feature-posts-section'>
<div class='feature-post padding clearfix'>
<script type='text/javaScript'>
document.write("<script src=\"/feeds/posts/default/?max-results="+featured_numposts+"&orderby=published&alt=json-in-script&callback=sliderposts\"><\/script>");
</script>
</div>
</div>
</b:if>
<div id='content-wrapper' itemscope='itemscope' itemtype='http://schema.org/Blog' role='main'>
<b:section class='banner section' id='banner' maxwidgets='1' showaddelement='yes'>
<b:widget id='HTML96' locked='false' title='' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><div class="lalulintas"><span class="rambuhijau">Your Ads Here</span>
</div>
<style scoped='' type='text/css'>
.lalulintas{width:100%;height:100px;background:#f4f5f6;margin:0 auto;position:relative;}
.rambuhijau{position:absolute;display:block;color:#95a5a6;text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:1.6rem;padding:10px;margin:5px;left:0;right:0;top:0;bottom:0;font-weight:700;line-height:4.4rem}
</style></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:includable>
</b:widget>
</b:section>
<div id='main-wrapper'>
<b:section class='main' id='main' showaddelement='no'>
<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='style.textcolor'>#000000</b:widget-setting>
<b:widget-setting name='showShareButtons'>false</b:widget-setting>
<b:widget-setting name='authorLabel'>By</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#008000</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#0000ff</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'>a la/s</b:widget-setting>
<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='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:include data='posts' name='breadcrumb'/>
<b:if cond='data:mobile == "false"'>
<!-- posts -->
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isDateStart'>
<b:if cond='data:post.isFirstPost == "false"'>
</div></div>
</b:if>
</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:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>