-
Notifications
You must be signed in to change notification settings - Fork 8
/
Juragan_Responsive_Blogger.xml
2665 lines (2664 loc) · 166 KB
/
Juragan_Responsive_Blogger.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:class='data:blog.languageDirection + " no-js rwd " + data:blog.pageType' expr:dir='data:blog.languageDirection'>
<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 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='https://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": "https://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='"https://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='"Silakan kunjungi " + data:blog.pageTitle + " Untuk membaca postingan menarik."' property='og:description'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</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: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'/>
<link href='//ajax.googleapis.com' rel='dns-prefetch'/>
<link href='//www.google-analytics.com' rel='dns-prefetch'/>
<link href='//googleads.g.doubleclick.net' rel='dns-prefetch'/>
<link href='//www.googletagservices.com' rel='dns-prefetch'/>
<link href='//pagead2.googlesyndication.com' rel='dns-prefetch'/>
<link href='//maxcdn.bootstrapcdn.com' rel='dns-prefetch'/>
<link href='//adservice.google.ca' rel='dns-prefetch'/>
<link href='//adservice.google.com' rel='dns-prefetch'/>
<link href='//resources.blogblog.com' rel='dns-prefetch'/>
<link href='//fonts.googleapis.com' rel='dns-prefetch'/>
<link href='//1.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//2.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//3.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//4.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//disqus.com' rel='dns-prefetch'/>
<link href='//github.com' rel='dns-prefetch'/>
<link href='//cdn.rawgit.com' rel='dns-prefetch'/>
<link href='//fontawesome.com' rel='dns-prefetch'/>
<link href='//www.sharethis.com' rel='dns-prefetch'/>
<link href='//cdn.jsdelivr.net' rel='dns-prefetch'/>
<b:skin><![CDATA[/*
Template Info
Name : Juragan Responsive Blogger Template
Theme Published : Agustus 2018
Type : Personal Blog
Style : Blogger Comments
Designer : Namina
Designer url : www.naminakiky.com
Thanks to : All supported
License : Pro Version
*/
body#layout ul{list-style-type:none;list-style:none}
body#layout ul li{list-style-type:none;list-style:none}
body#layout #headerbwrap {height:auto;}
body#layout #site-navigationpix {display:none;}
body#layout #footer-navbarpix {display:none;}
body#layout #pagepix{overflow:hidden}
body#layout #primarypix{display:block;position:relative;float:left;width:69%}
body#layout #secondarypix{display:block;position:relative;float:right;width:30%}
.section,.widget{margin:0;padding:0}
/* 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,font,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{border:0;word-wrap:break-word;font-size:100%;font-style:inherit;font-weight:inherit;margin:0;outline:0;padding:0;vertical-align:baseline}
html{overflow-y:scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
body{background:#fff;color:#000;font-family:'Poppins',sans-serif;font-size:16px;line-height:normal;font-weight:400;text-align:left;color:#000;margin:0;padding:0}
article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block}
ol,ul{list-style:none}
table{border-collapse:separate;border-spacing:0}
caption,th,td{font-weight:normal;text-align:left}
blockquote:before,blockquote:after,q:before,q:after{content:""}
blockquote,q{quotes:"" ""}
a:focus,a:hover,a:active{outline:0}
a img{border:0}
/* Global */
button,input,select,textarea{color:#fff;word-wrap:break-word;line-height:1.6}
/* Headings */
h1,h2,h3,h4,h5,h6{clear:both;word-wrap:break-word;font-weight:bold;line-height:1.4;font-weight:700}
h1{font-size:21px;font-size:1.6153rem;margin-bottom:0.75em}
h2{font-size:18px;font-size:1.3846rem;margin-bottom:0.85715em}
h3{font-size:16px;font-size:1.2307rem;margin-bottom:1.125em}
h4{font-size:15px;font-size:1.1538rem;margin-bottom:1em}
h5{word-wrap:break-word;font-size:15px;font-size:1.1538rem;margin-bottom:1em}
h6{word-wrap:break-word;font-size:13px;font-size:1rem;margin-bottom:1.1538em;text-transform:uppercase}
hr{background-color:#e6e6e6;border:0;height:1px;margin:1.1538461538em 0}
/* Text elements */
p,blockquote p:last-child{margin-bottom:1.5em}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 1.5em 1.1538461538em}
ul{list-style:square}
ol{list-style:decimal}
li > ul,li > ol{margin-bottom:0;margin-left:1.1538461538em}
dt{font-weight:bold}
dd{margin:0 1.1538461538em 1.5em 1.1538461538em}
b,strong{font-weight:bold}
dfn,cite,em,i{font-style:italic}
blockquote{border-left:4px solid rgba(0,0,0,0.05);margin:0 1.1538461538em;padding-left:1.1538461538em}
address{margin:0 0 1.5em 0}
pre{font-size:13px;max-width:100%}
kbd,tt,var{font-family:Consolas,'Courier New',monospace;font-size:88.3%}
code,kbd,tt,var{font-family:"Courier 10 Pitch",Courier,monospace;word-wrap:break-word}
abbr,acronym{border-bottom:1px dotted #e6e6e6;cursor:help}
mark,ins{background:#ecf0f1;text-decoration:none}
sup,sub{font-size:75%;height:0;line-height:0;position:relative;vertical-align:baseline}
sup{bottom:1ex}
sub{top:.5ex}
small{font-size:75%}
big{font-size:125%}
figure{margin:0}
table{margin:0 0 1.5em 0;width:100%}
th{font-weight:bold;padding:0.6em;text-transform:uppercase}
td{padding:0.6em}
img{height:auto;max-width:100%;}
button,input,select,textarea{color:#888;font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;}
button,input{line-height:normal;}
button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;font-size:13px;outline:0;font-size:1rem;line-height:1;padding:0.962em 1.847em;-webkit-appearance:button;/* Corrects inability to style clickable 'input' types in iOS */}
button:hover,html input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:hover{background-color:#ea2e25;color:#fff}
button:focus,html input[type="button"]:focus,input[type="reset"]:focus,input[type="submit"]:focus,button:active,html input[type="button"]:active,input[type="reset"]:active,input[type="submit"]:active{background-color:#e6e6e6;color:#666}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}
input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
input[type="text"],input[type="email"],input[type="password"],input[type="search"],input[type="url"]{background-color:#f9f9f9;border:0;font-size:13px;font-size:1rem;padding:0.6em;-webkit-transition:0.2s ease-in;transition:0.2s ease-in}
.widget input[type="text"],.widget input[type="email"],.widget input[type="password"],.widget input[type="search"],.widget input[type="url"]{background-color:#efefef}
input[type="text"]:focus,input[type="email"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type="url"]:focus,textarea:focus{background-color:#e9e9e9;outline:none;-webkit-transition:0.2s ease-in;transition:0.2s ease-in}
textarea{background-color:#f9f9f9;border:0;font-size:13px;font-size:1rem;overflow:auto;padding:1.5625%;-webkit-transition:0.2s ease-in;transition:0.2s ease-in;vertical-align:top;width:96.875%}
/* Links */
a{color:#1277cb;text-decoration:none;transition:all .3s}
a:hover,a:focus,a:active{color:#125e9d}
/* Text screen readers */
.screen-reader-textpix{clip:rect(1px,1px,1px,1px);position:absolute!important}
.screen-reader-textpix:hover,.screen-reader-textpix:active,.screen-reader-textpix:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-size:1.0769rem;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;}
*,*:before, *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.widget-content {margin:0;padding:0;overflow:hidden;}
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}
/* Table */
.post-body table{width:100%;max-width:100%;border-radius:3px;overflow:hidden}
.post-body table td,.post-body table caption{border:0;padding:10px 15px;text-align:left;vertical-align:top;color:#57606f;font-size:.9rem}
.post-body table td:first-child{border-right:0}
.post-body table th{background:#747d8c;color:#fff;border:0;padding:10px 15px;text-align:left;vertical-align:top;font-size:15px}
.post-body table tr th:hover{background:#57606f}
.post-body table.tr-caption-container{border:0;margin:0}
.post-body table caption{border:none;font-style:italic}
.post-body td,.post-body th{vertical-align:top;text-align:left;font-size:13px;padding:3px 5px;border:0}
.post-body table.tr-caption-container td{border:0;padding:0;background:#fff;line-height:17px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;font-weight:700;color:#57606f}
.post-body table.tr-caption-container,.post-body table.tr-caption-container img,.post-body img{max-width:100%;height:auto}
.post-body table tr:nth-of-type(even) td{background-color:#f6f8f9}
.post-body table tr:nth-of-type(odd) td{background-color:#ecf0f1}
.post-body table tr td:nth-of-type(even){border-left:1px solid rgba(0,0,0,0.03)}
.post-body table tr th:nth-of-type(even){border-left:1px solid rgba(255,255,255,0.03)}
]]></b:skin>
<style type='text/css'>
/* Default */
h2.date-header{margin:10px 0;display:none}
.main .widget{margin:0 0 5px;padding:0 0 2px}
.main .Blog{border-bottom-width:0}
.deleted-comment{font-style:italic;color:#aaa}
#navbar-iframe,.status-msg-wrap{height:0;visibility:hidden;display:none}
.author-profile{background:#f5f5f5;position:relative;padding:20px;margin:0;overflow:hidden}
.author-profile img{border:0;float:left;margin-right:20px;width:100px}
.post-iconspix,.post-locationpix{margin:0;padding:0}
.separator a[style="margin-left:1em;margin-right:1em;"]{margin-left:auto!important;margin-right:auto!important}
.separator a[style="clear:left;float:left;margin-bottom:1em;margin-right:1em;"]{clear:none!important;float:none!important;margin-bottom:0!important;margin-right:0!important}
.separator a[style="clear:left;float:left;margin-bottom:1em;margin-right:1em;"] img{float:left!important;margin:0 10px 10px 0}
.separator a[style="clear:right;float:right;margin-bottom:1em;margin-left:1em;"]{clear:none!important;float:none!important;margin-bottom:0!important;margin-left:0!important}
.separator a[style="clear:right;float:right;margin-bottom:1em;margin-left:1em;"] img{float:right!important;margin:0 0 10px 10px}
img,object,embed{border:none;vertical-align:middle;max-width:100%;width:auto;height:auto}
.separator a{margin-left:0!important;margin-right:0!important}
.post img{max-width:100%;height:auto}
/* 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}
/* icons */
.edit-linkpix a:before,.entry-metapix .authorpix a:before,.entry-metapix .datepix a:before,.entry-metapix .comments-linkpix a:before,.menu-togglepix:before,.tags-linkspix:before{display:inline-block;font-family:FontAwesome;word-wrap:break-word;font-size:14px;font-size:1.0769rem;font-weight:normal;line-height:1;vertical-align:text-bottom;-webkit-font-smoothing:antialiased}
/* Clear */
.clear{clear:both}.entry-metapix:before,.entry-metapix:after,.footer-widget-areapix:before,.footer-widget-areapix:after,.grid-rowpix:before,.grid-rowpix:after,.main-navpixie ul:before,.main-navpixie ul:after,.site-mainpix:before,.site-mainpix:after,.clear:before,.clear:after,[class*="area"]:before,[class*="area"]:after,[class*="content"]:before,[class*="content"]:after,[class*="navigation"]:before,[class*="navigation"]:after,[class*="site"]:before,[class*="site"]:after{content:'';display:table}
.entry-metapix:after,.footer-widget-areapix:after,.grid-rowpix:after,.main-navpixie ul:after,.site-mainpix:after,.clear:after,[class*="area"]:after,[class*="content"]:after,[class*="navigation"]:after,[class*="site"]:after{clear:both}
.status-msg-body{position:relative;margin:0 auto 20px auto}
.status-msg-wrap{font-size:100%;width:100%;color:#7f8c8d;margin:0}
.status-msg-wrap a{background:#fff;color:#999;text-decoration:none;padding:5px 10px;font-size:90%;margin:10px 4px 8px 4px;border:1px solid rgba(0,0,0,0.08);border-radius:5px;display:inline-block}
.status-msg-wrap a:hover{box-shadow:0 10px 20px rgba(0,0,0,0.03), 0 6px 6px rgba(0,0,0,0.1)}
.status-msg-bg{display:none;background:#1abc9c;position:relative;width:99%;padding:6px;z-index:1;}
.status-msg-border{display:none;border:0;position:relative;width:99%}
.quickedit,#ContactForm1,#ContactForm1 br {display:none}
.inline-ad{position:relative;background:rgba(0,0,0,0.1);padding:45px 20px 10px 20px;}
.inline-ad:before{content:'Advertisement';position:absolute;left:0;right:0;top:0;background:#fff;padding:10px;display:block;font-size:13px;color:#888;text-align:center;border-bottom:1px solid rgba(0,0,0,0.08)}
.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}
#HTML98 {padding:0;}
/* Banner */
.kotak_iklan1 {position:relative;}
.kotak_iklan1:before{content:'300x250 Ad';position:absolute;background:rgba(25,25,25,.9);color:#fff;top:0;right:0;padding:2px 8px;font-size:80%}
.kotak_iklan1:hover:before{content:'Pasang iklan';}
.banner,.banner2{margin:20px auto 0 auto;text-align:center;overflow:hidden}
.banner .widget,.banner2 .widget{width:100%;max-width:100%;margin:0 auto;background:rgba(0,0,0,0.1);text-align:center;overflow:hidden;padding:0}
.banner img,.banner iframe,.banner2 img,.banner2 iframe{display:block;margin:0 auto;text-align:center;}
.kotak_iklan{text-align:center;margin:0 auto;transition:all 1s ease-out}
.kotak_iklan .sidebar .widget-content,.kotak_iklan .sidebar-atas .widget-content{padding:0;border:0}
.kotak_iklan .sidebar .widget{margin-bottom:0;padding:0}
.kotak_iklan img{background:rgba(0,0,0,0.1);text-align:center;margin:0 auto;padding:4px;border:1px solid transparent!important;transition:all .6s ease-out}
.kotak_iklan img:hover{background:rgba(0,0,0,0.2);}
.kotak_iklan2,.kotak_iklan3{text-align:center;margin:0 auto;transition:all 1s ease-out}
.kotak_iklan2 .sidebar .widget-content,.kotak_iklan2 .sidebar-atas .widget-content{padding:0;background:#f2f6f7;box-shadow:0 1px 2px 0 rgba(0,0,0,.1);border:0}
.kotak_iklan2 .sidebar .widget,.kotak_iklan2 .sidebar-atas .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}
/* Header */
#header{padding:0;margin:0}
#header-inner{text-align:center;display:inline-block}
#header h1,#header h2{color:#fff;margin:0;font-size:1.5rem;font-weight:700;line-height:normal;text-align:center}
#header h1 a,#header h2 a{color:#fff}
#header h1 a:hover,#header h2 a:hover{color:#fff}
.descriptionwrapper{display:none}
.header-logo{float:left;padding:11px 16px}
.mudah-head{display:table;width:100%;height:100%}
.mudah-sub-head{margin:auto;padding:0 10px;max-width:970px}
/* Menu Wrapper */
#top-container{display:inline-block;width:100%;background:#1277cb;color:#fff}
#topfix-container{max-width:970px;margin:0 auto;padding:0;position:relative}
#mudahmenu,#mudahmenu ul,#mudahmenu ul li,#mudahmenu ul li a,#mudahmenu #head-mobile{border:0;list-style:none;line-height:1;display:block;position:relative}
#mudahmenu{float:left}
#mudahmenu ul{margin:0;display:block}
#mudahmenu:after,#mudahmenu > ul:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
#mudahmenu #head-mobile{display:none}
#mudahmenu > ul > li{float:left;margin:0}
#mudahmenu > ul > li > a{padding:22px 16px;letter-spacing:0.4px;text-decoration:none;font-size:14px;color:#fff;font-weight:700;transition:initial}
#mudahmenu > ul > li:hover > a,#mudahmenu ul li.active a{background:#fff;color:#000}
#mudahmenu ul > li.homemenu > a{background:#fff;color:#000}
#mudahmenu > ul > li:hover,#mudahmenu ul li.active:hover,#mudahmenu ul li.active,#mudahmenu ul li.has-sub.active:hover{transition:initial}
#mudahmenu > ul > li.has-sub > a{padding-right:25px}
#mudahmenu > ul > li.has-sub > a:before{position:absolute;top:22px;right:17px;display:block;width:2px;height:8px;content:'\f107';font-family:fontawesome}
#mudahmenu ul ul{position:absolute;left:-9999px;z-index:1;box-shadow:0 10px 15px rgba(0,0,0,.15);min-width:170px}
#mudahmenu ul ul li{height:0;background:#fff;margin:0}
#mudahmenu ul ul li:hover{background:#fafafa}
#mudahmenu li:hover > ul{left:auto}
#mudahmenu li:hover > ul > li{height:33px}
#mudahmenu ul ul ul{margin-left:100%;top:0}
#mudahmenu ul ul li a{padding:10px 25px 10px 15px;max-width:100%;min-width:150px;font-size:12px;text-decoration:none;color:#222;font-weight:400;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
#mudahmenu ul ul li:last-child > a,#mudahmenu ul ul li.last-item > a{border-bottom:0}
#mudahmenu ul ul li.has-sub:hover,#mudahmenu ul li.has-sub ul li.has-sub ul li:hover{background:#fafafa}
#mudahmenu ul ul ul li.active a{border-left:1px solid #333}
#mudahmenu > ul > li.has-sub > ul > li.active > a,#mudahmenu > ul ul > li.has-sub > ul > li.active> a{border-top:1px solid #333}
#mudahmenu ul > li{opacity:1;z-index:100;-webkit-backface-visibility:hidden;transition:all .3s}
#mudahmenu ul > li:hover{opacity:1}
@media screen and (min-width:800px){#mudahmenu ul{display:block!important}}
@media screen and (max-width:800px){
#mudahmenu > ul > li:hover > a,#mudahmenu ul li.active a{color:#fff}
#mudahmenu ul ul li,#mudahmenu ul ul li:hover,#mudahmenu ul ul li.has-sub:hover,#mudahmenu ul li.has-sub ul li.has-sub ul li:hover,#mudahmenu > ul > li:hover,#mudahmenu ul li.active:hover,#mudahmenu ul li.active,#mudahmenu ul li.has-sub.active:hover{background:transparent}
#mudahmenu{float:none}#mudahmenu ul{width:100%;display:none}#mudahmenu ul ul{-webkit-box-shadow:none;box-shadow:none;display:none}#mudahmenu ul li{width:100%}#mudahmenu ul ul li,#mudahmenu li:hover > ul > li{height:auto;box-shadow:none}#mudahmenu ul li a,#mudahmenu ul ul li a{width:100%;border-bottom:0;color:#fff;font-weight:400}#mudahmenu > ul > li{float:none}#mudahmenu ul ul li a{padding-left:25px}#mudahmenu ul ul ul li a{padding-left:35px}#mudahmenu ul ul,#mudahmenu ul ul ul{position:relative;left:0;width:100%;margin:0;text-align:left}#mudahmenu > ul > li.has-sub > a:after,#mudahmenu > ul > li.has-sub > a:before,#mudahmenu ul ul > li.has-sub > a:after,#mudahmenu ul ul > li.has-sub > a:before{display:none}#mudahmenu #head-mobile{display:block;padding:28px;color:#fff;font-size:12px;font-weight:500}#mudahmenu .button{width:20px;height:46px;position:absolute;right:55px;top:5px;cursor:pointer;z-index:2;transition:all .1s}
#mudahmenu .button:after{position:absolute;top:21px;right:0;display:block;height:4px;width:20px;border-top:3px solid #fff;border-bottom:3px solid #fff;content:'';-webkit-box-sizing:initial;-moz-box-sizing:initial;box-sizing:initial;transition:all .3s}
#mudahmenu .button:before{position:absolute;top:14px;right:0;display:block;height:3px;width:20px;background:#fff;content:'';transition:all .3s}
#mudahmenu .button.menu-opened:after{top:21px;border:0;height:3px;width:20px;background:#fff;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}
#mudahmenu .button.menu-opened:before{top:21px;background:#fff;width:20px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}#mudahmenu .submenu-button{background:rgba(255,255,255,.2);position:absolute;z-index:99;right:10px;top:10px;display:block;height:32px;width:32px;line-height:32px;cursor:pointer;border-radius:3px}#mudahmenu .submenu-button.submenu-opened{background:rgba(0,0,0,.2)}#mudahmenu ul ul .submenu-button{height:32px;width:32px}#mudahmenu .submenu-button:after{content:'';position:absolute;top:16px;right:9px;width:15px;height:1px;display:block;background:#fff}#mudahmenu ul ul .submenu-button:after{top:15px;right:13px}#mudahmenu .submenu-button.submenu-opened:after{background:#fff}#mudahmenu .submenu-button:before{content:'';position:absolute;top:9px;right:16px;display:block;width:1px;height:15px;background:#fff}#mudahmenu ul ul .submenu-button:before{top:12px;right:16px}#mudahmenu .submenu-button.submenu-opened:before{display:none}#mudahmenu ul ul ul li.active a{border-left:none}#mudahmenu > ul > li.has-sub > ul > li.active > a,#mudahmenu > ul ul > li.has-sub > ul > li.active > a{border-top:none}
#mudahmenu ul > li.homemenu > a{background:#1277cb;color:#fff}#mudahmenu > ul > li:hover > a,#mudahmenu ul li.active a{background:#126eba;color:#fff}}
/* Search Form */
.search-icon{font-size:20px;padding:13px 14px;position:absolute;right:0;top:0}
.search-icon a{color:#fff}
#searchfs{position:fixed;z-index:9999;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.9);transition:all 0.1s ease-in-out;transform:translate(0px,-100%) scale(0,0);opacity:0}
#searchfs.open{transform:translate(0px,0px) scale(1,1);opacity:1;z-index:9999}
#searchfs input[type="search"]{position:absolute;top:40%;left:0;right:0;width:49%;background:rgba(0,0,0,.2);color:rgb(255,255,255);border:3px solid rgba(255,255,255,.1);font-size:28px;text-align:center;outline:none;padding:15px;margin:auto;border-radius:5px}
#searchfs .close{position:fixed;top:20px;right:30px;color:#fff;background-color:transparent;opacity:0.6;font-size:40px;border:none;outline:none;padding:0}
#searchfs .close:hover{cursor:pointer;opacity:0.9}
/* Layout */
.sitepix{margin:auto;max-width:970px;padding:0}
#primarypix{float:left;margin:20px 0;padding:0;width:67%}
#secondarypix{float:right;margin:20px 0;padding:0;width:31.2%}
/* Breadcrumbs */
.breadcrumbs{position:relative;margin:0 auto 20px auto;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;padding:0 20px 0 0}
.breadcrumbs a,.breadcrumbs .spanner{z-index:2;position:relative;margin-bottom:20px;color:#888;background:#fff;display:inline-block;padding:6px 12px;margin:1px 0;font-size:10px;font-weight:400;text-transform:uppercase;border:1px solid rgba(0,0,0,0.08)}
.breadcrumbs:before{z-index:1;content:"";width:100%;height:1px;background:rgba(0,0,0,0.08);position:absolute;top:50%;left:0;margin-top:-1px}
.breadcrumbs a:hover{color:#000}
/* Content */
.hentry{position:relative;color:#000;margin:0 0 20px 0;word-wrap:break-word;overflow:hidden}
.entry-header{background-color:#fff;padding:1.3334em 1.3334em 0 1.3334em}
.entry-title{color:#404040;font-weight:700;font-size:150%;line-height:1.2em;}
.entry-title a{color:#000}.headertitle{color:#1277cb}
.entry-title a:hover{color:#1277cb;}
.entry-metapix{color:#7f8c8d;font-size:11px;font-size:0.8461rem}
footer.entry-metapix{padding:1.3334em 1.3334em 1em 1.3334em}
.entry-metapix span{display:inline-block}
.entry-metapix a{color:#7f8c8d;text-transform:uppercase}
.entry-metapix a:hover{color:#000}
.entry-metapix .datepix{margin-right:1em}
.postmeta-primarypix i{margin:0 3px 0 0}
.postmeta-primarypix{color:#7f8c8d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:14px}
.postmeta-primarypix a{color:#7f8c8d}
.postmeta-primarypix a:hover{color:#000}
.entry-metapix .datepix a:before{content:"\f303";margin-right:3px;position:relative;top:1px}
.entry-metapix .authorpix{margin-right:1em}
.entry-metapix .authorpix a:before{content:"\f304";position:relative}
.not-multi-authorpix .entry-metapix .authorpix{display:none}
.entry-metapix .comments-linkpix{float:right;margin-left:1em}
.entry-metapix .comments-linkpix a:before{content:"\f300";margin-right:2px;position:relative;top:-1px}
.edit-linkpix{float:right;margin-left:1em}
.edit-linkpix a:before{content:"\f411";margin-right:2px;position:relative}
.tags-linkspix{margin-right:1em}
.tags-linkspix:before{content:"\f302";margin-right:2px;position:relative;top:-1px}
.entry-content{padding:0;font-size:16px;color:#000;line-height:1.6}
.entry-content-botpix{padding:0}
embed,iframe,object{max-width:100%}
/* Widgets */
.widget-areapix .widget{margin:0 0 25px 0;overflow:hidden}
.widget-areapix .widget h2,.widget-areapix .widget h3{word-wrap:break-word;margin-bottom:1rem}
.widget-areapix .widget ul,.widget-areapix .widget ol{list-style:none;margin:0}
.widget-areapix .widget ul > li,.widget-areapix .widget ol > li{padding:0 0 10px 0}
.widget-areapix .widget li > ul,.widget-areapix .widget li > ol{margin-left:24px}
.widget-areapix .widget ul ul{margin-top:12px}
.widget-areapix .widget ul ul > li:last-child{padding-bottom:0}
.widget-areapix .widget a{text-decoration:none}
.widget-areapix .widget a:hover{color:#1277cb}
.widget select{max-width:100%}
.widget_searchpix .search-submitpix{display:none}
.widget_searchpix .search-fieldpix{-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;width:100%}
.BlogArchive #ArchiveList ul.posts li{margin:0;font-size:90%}
/* Sidebar */
#secondarypix .widget{background:#fff;padding:0}
#secondarypix h2,#secondarypix h3{font-size:17px;line-height:1.2em;display:inline-block;font-weight:700;padding:0;margin:0 0 15px;padding:0 0 15px;position:relative;color:#111;text-transform:uppercase}
#secondarypix h2:before,#secondarypix h3:before{content:"";display:block;width:800px;height:1px;position:absolute;background:#eee;left:0;right:0;bottom:0;z-index:0}
#secondarypix h2:after,#secondarypix h3:after{content:"";display:inline-block;width:100%;height:3px;position:absolute;background:#1277cb;left:0;bottom:-1px;z-index:1}
#secondarypix .widget-content{padding:0}
#search-form{padding:0;margin:0 auto 20px auto}
#search-wrapper{margin:0;padding:0;overflow:hidden;width:100%}
#search-wrapper table{width:100%;margin:0;position:relative;height:40px}
#search-wrapper td.search-boxs1{color:#cbd1e1;padding:0}
#search-wrapper input#search-boxs1[type="text"]{background:transparent;height:40px;line-height:40px;margin:0;padding:0 10px;width:100%;border:1px solid rgba(0,0,0,0.08);color:#aaa}
#search-wrapper input#search-button1[type="submit"]{font-size:15px;background:#1277cb;color:#fff;height:42px;line-height:42px;margin:0;padding:0 20px;border:none;outline:none;font-weight:normal;transition:all 0.25s;position:absolute;right:0;top:0;z-index:2;border:none;cursor:pointer}
#search-wrapper input#search-button1[type="submit"]:hover{background:#222}
#search-wrapper input#search-boxs1[type="text"]:focus{outline:none;color:#222}
/* Social Wrapper */
#social-counts > li{display:block;margin-bottom:5px;padding:0}
#social-counts > li > a{display:block;font-size:13px;font-weight:700;height:40px;line-height:40px;padding:0 10px;opacity:.95}
#social-counts > li:last-child > a{margin-bottom:0}
#social-counts > li > a:hover,#social-counts > li > a:focus{opacity:.8;color:#fff}
#social-counts > li > a > .fa{background:rgba(0,0,0,0.1);display:inline-block;height:25px;width:25px;line-height:25px;margin-right:10px;text-align:center;vertical-align:middle}
#social-counts.modal-1 > li > a,#social-counts.modal-3 > li > a,#social-counts.modal-1 > li > a > .fa,#social-counts.modal-3 > li > a > .fa{color:#fff}
.social-facebook{background:#3C599F}
.social-twitter{background:#32CCFE}
.social-pinterest{background:#cb2027}
.social-google-plus{background:#dd4b39}
.social-rss{background:#f26522}
.social-youtube{background:#bb0000}
.social-blogger{background:#f39c12}
.social-vimeo{background:#229ACC}
.social-linkedin{background:#0085AE}
.social-whatsapp{background:#128c7e}
.social-instagram{background:#517fa6;background:linear-gradient(15deg,#ffb13d,#dd277b,#4d5ed4)}
/* Subscribe wrapper */
#subscribe-wrapper{color:#aaa;font-size:14px;position:relative;text-align:center;text-transform:none;font-weight:400;border:1px solid rgba(0,0,0,0.08);margin:0 auto}
#subscribe-limit{background:#f5f5f5;position:relative;width:100%;max-width:970px;padding:15px 15px 20px;margin:0 auto;display:block;overflow:hidden}
#subscribe-limit .fa-envelope-open-o{font-size:4em;padding:0 0 20px}
#subscribe-limit,.subs-field,.subs-form{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
#subscribe-wrapper .subs-form{clear:both;display:block;margin:0 auto;width:100%;padding:0;overflow:hidden;position:relative}
#subscribe-wrapper input.subs-field[type="text"]{background:#fff;color:#777;border:1px solid rgba(0,0,0,0.08);outline:none}
#subscribe-wrapper .subs-field{background:#fff;margin:0 auto;padding:0 46px 0 15px;height:46px;line-height:46px;width:100%;outline:none;text-align:left}
#subscribe-wrapper .subs-field[type="text"]:focus{border-color:#08AADB;color:#010101}
#subscribe-wrapper .subs-button{cursor:pointer;font-weight:400;padding:0;width:46px;width:46px;line-height:46px;text-align:center;font-size:15px;border:1px solid #de6013;transition:all .3s;margin:0 auto;text-align:center;display:block;background:#f07328;color:#fff;position:absolute;right:0;top:0}
#subscribe-wrapper .subscribe-text{margin:0 auto;padding:0;position:relative}
#subscribe-wrapper .subscribe-text:before{content:'Enter your email address to subscribe this blog and receive notifications of new posts by email.';color:#8a8a8a;margin:0;padding:15px;display:block;font-size:14.6px;font-weight:400;line-height:1.4em;text-align:left;border-top:1px solid rgba(0,0,0,0.08)}
/* Popular Post */
.PopularPosts ul{list-style:none;margin:0;padding:0;overflow:hidden;text-align:left!important}
.PopularPosts li,.PopularPosts li img,.PopularPosts li a,.PopularPosts li a img{margin:0;padding:0;list-style:none;border:none;background:none;outline:none}
.PopularPosts ul{margin:0;list-style:none;font-size:14px}
.PopularPosts ul li img{display:flex;align-items:center;display:block;width:auto;height:auto}
.PopularPosts ul li .item-thumbnail{position:relative;display:block;margin:0 15px 0 0;width:120px;height:72px;overflow:hidden;float:left;background-position:center;transition:all .3s}
.PopularPosts ul li .item-thumbnail img{clear:both;width:100%;display:block}
.PopularPosts ul li{margin:0 0 10px;padding:0 0 10px;position:relative;transition:all .3s;border-bottom:1px solid #eee;line-height:1.3em}
.PopularPosts ul li:last-child{border:none;padding-bottom:0;margin-bottom:0}
.PopularPosts ul li .item-title a,.PopularPosts ul li a{color:#111;transition:all .3s;font-weight:400}
.PopularPosts .widget-content ul li:hover a,.PopularPosts .widget-content ul li a:hover{color:#1277cb}
.PopularPosts .item-snippet{display:none}
.PopularPosts .item-title{padding-bottom:.2em;padding:0 5px}
/* Label */
.label-size-1,.label-size-2,.label-size-3,.label-size-4,.label-size-5 {font-size:100%;opacity:1}
.label-size {background:#fff;display:block;float:left;margin:0 3px 3px 0;color:#999;font-size:11px;line-height:1.2;}
.label-size a,.label-size span{display:inline-block;color:#666;padding:6px 10px}
.label-count {white-space:nowrap;padding-right:3px;margin-left:-3px;color:#999;}
.label-count:hover {color:#1277cb}
#secondarypix .Label li{color:#000;float:left;padding:5px 0;text-align:left;width:100%;border-bottom:1px dotted rgba(0,0,0,0.08)}
#secondarypix .Label li:hover {background:#fff;color:#1277cb;}
#secondarypix .Label li a {color:#000;font-size:14px}
#secondarypix .Label li a:hover {color:#1277cb}
#secondarypix .Label li span{background:#f4f4f4;color:#555;float:right;padding:4px 10px;border-radius:3px;font-size:11px}
#secondarypix .Label li span:nth-child(1){background:transparent;color:#1277cb;font-size:14px;float:none;padding:0}
#secondarypix .Label li:hover span:nth-child(2){background:#1277cb;color:#fff}
.cloud-label-widget-content{text-align:left;overflow:hidden}
.cloud-label-widget-content .label-count{background:#68ae96;color:#fff;margin-left:-3px;white-space:nowrap;border-radius:0;padding:1px 4px;font-size:12px;margin-right:5px}
.cloud-label-widget-content .label-size{display:inline-block;float:left;font-size:12px;margin:0 4px 4px 0;border-radius:3px;transition:all .6s}
.cloud-label-widget-content .label-size a,.cloud-label-widget-content .label-size span{background:#f4f4f4;color:#555;display:inline-block;font-size:13px;letter-spacing:.5px;border-radius:3px;padding:8px 10px}
.cloud-label-widget-content .label-size a:hover{background:#1277cb;color:#fff;}
.cloud-label-widget-content .label-size:hover{background:#1277cb;color:#fff}
.cloud-label-widget-content .label-size:hover a{color:#fff}
.cloud-label-widget-content .label-size:hover span{background:#1277cb;color:#fff;cursor:pointer}
.cloud-label-widget-content .label-size-1,.label-size-2,.label-size-3,.label-size-4,.label-size-5{font-size:100%}
.label-size-1,.label-size-2{opacity:1}
/* Footer Widget */
.footer-widget-areapix{background-color:#2e2e2e;color:#979797;padding:24px}
.footer-widgetspix{float:left;width:290px}
.firstpix.footer-widgetspix,.secondpix.footer-widgetspix{margin-right:34px}
.footer-widget-areapix .widget-title{color:#fff}
.footer-widget-areapix .widget a{color:#fff}
.footer-widget-areapix .search-fieldpix{background-color:#444}
.footer-widget-areapix .search-fieldpix:focus{background-color:#373737}
#downpix{background:#f5f5f5;font-size:14px}
.maxwrap.bawahcr{margin:0 auto;overflow:hidden;padding:60px 20px 20px 20px}
.footer-menu{margin:auto;padding:0}
ul.menufoot{margin:auto;padding:0;width:auto;overflow:hidden;list-style:none;line-height:24px;text-align:center;}
ul.menufoot li{display:inline-block;margin:18px 0}
ul.menufoot li a{color:#7f8c8d;overflow:hidden;margin-right:5px;padding:6px 12px;line-height:25px;transition:all .1s}
ul.menufoot li a:hover{color:#000}
ul.menufoot li a i {margin:0 5px 0 0;color:#7f8c8d}
ul.menufoot li a:hover i {margin:0 5px 0 0;color:#000}
/* Footer Wrapper */
.footer-navbarpix{padding:24px 34px 0 34px}
.site-infopix{color:#7f8c8d;font-weight:normal;padding:20px 20px 60px 20px;text-align:center}
.site-infopix a{color:#7f8c8d}
.site-infopix a:hover{color:#1277cb}
/* Back To Top */
.pixtotop{visibility:hidden;z-index:2;background:#222;color:#fff;font-size:1.5rem;width:42px;height:42px;line-height:42px;text-align:center;position:fixed;bottom:20px;right:20px;cursor:pointer;-webkit-transform:translateZ(0) scale(0.0);transform:translateZ(0) scale(0.0);border-radius:2px;transition:all .3s}
.pixtotop:hover{background:#1277cb;color:#fff;box-shadow:0 6px 20px rgba(0,0,0,0.1);}
.pixtotop.arlniainf{visibility:visible;cursor:pointer;opacity:1;-webkit-transform:translateZ(0) scale(1.0);transform:translateZ(0) scale(1.0);transition:all .6s cubic-bezier(.25,.8,.25,1);}
/* Blog Pager */
#blog-pager-newer-link{float:left}#blog-pager-older-link{float:right}
#blog-pager{text-align:center;padding:0;margin:auto;}
/* Responsive */
@media screen and (min-width:1200px){
html{font-size:96.75%}.display-header-textpix .site-imagepix{margin-bottom:17px}.site-descriptionpix{margin-top:14px}.footer-widget-areapix{padding:34px}.footer-widgetspix{width:320px}.firstpix.footer-widgetspix,.secondpix.footer-widgetspix{margin-right:55px}.site-brandingpix a + .site-titlepix{margin-top:17px}}
@media screen and (max-width:970px){
.sitepix{background:transparent;max-width:94.03508772%;margin:10px auto;padding:0}.site-brandingpix,.site-navigationpix{padding-left:2.98245614%;padding-right:2.98245614%}#primarypix{width:67%}.footer-widget-areapix{padding:2.982456140350877%}.footer-widgetspix{width:29.850746268656714%%}.firstpix.footer-widgetspix,.secondpix.footer-widgetspix{margin-right:5.1305970149253734%}}
@media screen and (max-width:920px){
#primarypix,#secondarypix{width:100%}.pixtotop{display:none}}
@media screen and (max-width:800px){
#top-container{position:fixed;z-index:99;-webkit-transform:translateZ(0);transform:translateZ(0)}
.sitepix{margin:70px auto 10px auto}
#searchfs input[type="search"]{width:80%;font-size:24px}
.item #content-wrapper{padding:0 0 30px}
.header-logo{background:transparent;margin:0;position:absolute;z-index:100}
.social-head{float:none;margin:5px auto 20px auto}
#header h1 a,#header h1 a:hover{color:#fff}.topup-social{float:none;width:100%;clear:both;overflow:hidden}.topup-social li{display:inline-block;float:none}.related li{width:31%}.share-me span{display:none}.ops-404{width:80%!important}.title-404{font-size:160px!important}}
@media screen and (max-width:767px){
.banner,.banner2{margin:0 auto}
.titlewrapper h1 a,.titlewrapper h2 a,.titlewrapper h1 a:hover,.titlewrapper h2 a:hover{color:#fff}
#social-wrapper{margin-left:10px;margin-right:10px;padding:0}.hentry{margin-bottom:24px}.footer-widgetspix{width:100%}.firstpix.footer-widgetspix,.secondpix.footer-widgetspix{margin-right:0}ul.menufoot{text-align:center;width:100%}.site-brandingpix{float:none;text-align:center;max-width:100%;margin:auto}}
@media screen and (max-width:600px){
.site-brandingpix{text-align:center}.menu-togglepix{border:1px solid #ecf0f1;color:#000;display:block;word-wrap:break-word;font-size:16px;font-size:1.2307rem;margin-bottom:0;text-align:center;text-transform:uppercase}.menu-togglepix:before{content:"\f0c9";margin-right:12px;position:relative;top:-3px}.menu-togglepix,.main-navpixie.toggled ul{display:block;margin:0 auto;padding:10px 20px;text-align:left;border-radius:0;box-shadow:none;}.main-navpixie.toggled ul{border:1px solid #ecf0f1;border-top:0}.main-navpixie.toggled ul ul{border:0;padding:10px 0}.main-navpixie{color:#000;}.site-logopix{margin:0 auto 12px}.maxwrap.bawahcr{padding:20px 20px 0 20px}ul.menufoot li{display:inline-block;margin:0 auto;overflow:hidden}ul.menufoot li a{border:0}}
@media screen and (max-width:362px){
.site-logopix{max-width:100%}}
</style>
<b:if cond='data:blog.pageType == "item"'>
<style type='text/css'>
.post-body img{max-width:100%;width:100%;height:auto}
.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{margin:0;}
.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%}
.entry-title{font-size:180%;padding:0 0 15px 0;margin:0;color:#000}
.postmeta-primarypix{margin:20px auto;padding:0}
.postmeta-primarypix a{color:#7f8c8d}.postmeta-primarypix i{color:#7f8c8d}
.postmeta-primarypix a:hover{color:#1277cb}
/* Related Post */
#related-posts{overflow:hidden;margin:0 0 20px 0;padding:10px 0 0}
.related li{width:32.276%;display:inline-block;height:auto;float:left;margin-right:10px;overflow:hidden;position:relative}
.related li h3{margin-top:0}
.related-thumb{width:100%;height:180px;overflow:hidden;border-radius:2px}
.related li .related-img{width:100%;height:180px;display:block;position:relative;transition:all .3s ease-out}
.related-title{position:absolute;bottom:10px;left:10px;right:10px;padding:0;margin:0;line-height:1.2em;z-index:2}
.related-title a{font-size:14px;line-height:1.4em;padding:0;font-weight:400;color:#fff;display:block;text-shadow:0 .5px .5px rgba(34,34,34,0.3)}
.related li:nth-of-type(3),.related li:nth-of-type(6),.related li:nth-of-type(9){margin-right:0}
.related .related-thumb .related-img:after{background:rgba(0,0,0,0.12);content:"";bottom:0;left:0;top:0;right:0;margin:auto;position:absolute;transition:all .5s}
.related .related-thumb:hover .related-img:after{background:rgba(0,0,0,0.38)}
.related-overlay{position:absolute;left:0;top:0;z-index:1;width:100%;height:100%;background-color:rgba(40,35,40,0.05)}
.related-line,.related-line-c{position:relative;margin:10px auto 0 auto}
.related-info-th{z-index:2;position:relative;margin-bottom:20px;color:#888;background:#fff;display:inline-block;padding:6px 12px;margin:1px 0;font-size:10px;font-weight:400;text-transform:uppercase;border:1px solid rgba(0,0,0,0.08)}
.related-line-c{text-align:center;margin-bottom:6px}
.related-line:before,.related-line-c:before{z-index:1;content:"";width:100%;height:1px;background:rgba(0,0,0,0.08);position:absolute;top:50%;left:0;margin-top:-1px}
#blog-pager{background:transparent;text-align:center;padding:0;margin:0 0 10px 0}
#blog-pager a{background:rgba(255,255,255,.15);border:0;color:rgba(255,255,255,.6)}
#blog-pager a:hover{background:rgba(255,255,255,.25);color:#fff;}
/* Responsive */
@media screen and (max-width:768px){
.related li{width:100%;margin:0 0 10px 0}}
@media screen and (max-width:640px){
#sidebarbottom{width:100%;max-width:100%;}.authorbox{background:#e2e8eb}.authorbox img{margin:0 auto;border-radius:10%}.authorbox a.authorname{background:#fff;margin:20px auto;border:0;box-shadow:0 5px 5px rgba(0,0,0,0.1)}.addthis_inline_share_toolbox table,.addthis_inline_share_toolbox td{border:0}}
@media screen and (max-width:769px) {
.bagidua,.bagitiga,.bagiempat{-webkit-column-count:1;-moz-column-count:1;column-count:1;}}
</style></b:if>
<b:if cond='data:blog.pageType != "index"'>
<style type='text/css'>
.hentry{line-height:1.7}
#blog-pager a.blog-pager-newer-link{padding:0 22px 0 0;}
#blog-pager a:hover{text-decoration:none}
#blog-pager .home-link {display:none;}
.comments-line,.comments-line-c{position:relative;margin:10px auto 0 auto}
.comments-info-th{z-index:2;position:relative;margin-bottom:20px;color:#888;background:#fff;display:inline-block;padding:6px 12px;margin:1px 0;font-size:10px;font-weight:400;text-transform:uppercase;border:1px solid rgba(0,0,0,0.08)}
.comments-line-c{text-align:center;margin-bottom:6px}
.comments-line:before,.comments-line-c:before{z-index:1;content:"";width:100%;height:1px;background:rgba(0,0,0,0.08);position:absolute;top:50%;left:0;margin-top:-1px}
/* Komentar */
#comments{position:relative;margin:10px auto 20px auto;padding:20px;border:1px solid rgba(0,0,0,0.08)}
#comment_block{position:relative}
.comment_avatar_wrap{width:42px;height:42px;background:rgba(0,0,0,0.01);text-align:center;margin-bottom:20px;border-radius:100%}
#comments .avatar-image-container{float:left;margin:0 10px 0 0;width:42px;height:42px;max-width:42px;max-height:42px;padding:0;margin-bottom:10px}
#comments .avatar-image-container img{width:42px;height:42px;max-width:42px;max-height:42px;background:url(https://2.bp.blogspot.com/-fjaZBtfvzac/UN1mw2tUamI/AAAAAAAADkc/XdKqt8hWZ6w/s1600/anon.jpg) no-repeat}
.comment_name a{padding:5px 0 0 0;font-size:1.1rem;color:#1277cb}
.comment_admin .comment_name{font-weight:700;font-size:1.1rem}
.comment_admin .comment_date{font-weight:normal;font-size:11px}
.comment_name{font-weight:700;position:relative}
.comment_service{margin-top:5px}
.comment_date{color:#98a5d5;float:right;font-size:11px;font-weight:normal;margin-top:-3px}
.comment_date a{color:#98a5d5;float:right;font-size:11px;font-weight:normal}
.comment_date a:hover{color:#98a5d5;text-decoration:none}
.comment_body{margin-left:56px;margin-top:-72px;padding:20px;border-radius:10px;border:1px solid #ecf0f1;}
.comment_body p{line-height:1.5em;margin:5px 0 0 0;color:#7f8c8d;word-wrap:break-word;padding:10px 0}
.comment_inner{margin:12px 0}
.comment_child .comment_wrap{padding-left:7%}
.comment_reply{overflow:hidden;display:inline-block;margin-top:10px;color:#999;text-align:center;text-decoration:none;font-size:12px}
.comment_reply:hover{color:#1277cb}
.unneeded-paging-control{display:none}
.comment-form{max-width:100%;!important}
#comment-editor{width:100%!important;background:transparent}
.comment_form a{text-decoration:none;text-transform:uppercase;font-size:15px}
.comment-form p{padding:15px 15px 11px;margin:5px 0 15px;color:#7f8c8d;line-height:1.3em;border-radius:3px;border:1px solid rgba(0,0,0,0.05);position:relative;max-width:100%;border:1px solid rgba(0,0,0,0.05)}
.comment_reply_form{padding:0 0 0 70px}
.comment_reply_form .comment-form{width:99%}
.comment_emo_list{padding:0 15px 15px 15px;overflow:hidden;display:inline-block;border-radius:5px;color:#7f8c8d;margin:0 0 5px 0}
.comment_emo_list .item{float:left;display:inline-block;text-align:center;overflow:hidden;margin:15px 15px 0 0}
.comment_emo_list span{display:block;font-weight:bold;font-size:11px;letter-spacing:1px}
.comment_youtube{max-width:100%!important;width:400px;height:225px;display:block;margin:auto}
.comment_img{max-width:100%!important}
.deleted-comment{padding:10px 10px 10px 10px;display:block;color:rgba(255,255,255,.8)}
.comment_header{width:50px}
#respond{overflow:hidden;padding-left:10px;clear:both}
.comment_avatar img{width:42px;height:auto;background:url(https://3.bp.blogspot.com/-fr42e67HG4I/Vky8HLexiEI/AAAAAAAAM0I/MLMd2qwIH1E/s1600/avatar.png) no-repeat;border-radius:100%}
.comment-delete img{float:right;margin-left:15px;margin-top:3px;margin-right:10px}
iframe{border:none;overflow:hidden}
.small-button1 a{margin:10px 0 0 0;text-decoration:none;text-transform:none;font-size:13px;display:inline-block;color:#fff;padding:4px 10px;cursor:pointer;background:#f39c12;border-radius:3px;transition:all .3s}
.small-button1:hover a{background:#222;color:#fff;}
span.small-button1{text-align:left;display:inline-block}
.comments .comments-content .comment-thread ol{margin:0}
.comment_body img.comment_emo{width:18px;height:18px;margin:0 3px}
.comment_emo_list img.comment_emo{width:18px;height:18px;margin:0 0 5px 0}
#emo-box,#hide-emo,.comment_author_flag{display:none}
/* Highlighter */
pre{white-space:pre;word-wrap:normal;overflow:auto;font-size:14px;margin:0;padding:0}hr{margin-top:2rem;background:#ccc;height:1px;border:0;margin-bottom:2rem}
.post-body code{padding:1.2em}.post-body pre{padding:0;border-radius:3px;background-color:#292e34;word-spacing:normal;word-break:normal;line-height:1.4em}.post-body .hljs{display:block;overflow-x:auto;padding:1.2em;background:#2b2b2c;color:#fff;line-height:1.5;text-align:left;word-spacing:0;font-family:monospace;border-radius:3px}.post-body .hljs-name,.post-body .hljs-strong{font-weight:bold}.post-body .hljs-code,.post-body .hljs-emphasis{font-style:italic}.post-body .hljs-tag{color:#62c8f3}.post-body .hljs-variable,.post-body .hljs-template-variable,.post-body .hljs-selector-id,.post-body .hljs-selector-class{color:#ade5fc}.post-body .hljs-string,.post-body .hljs-bullet{color:#a2fca2}.post-body .hljs-type,.post-body .hljs-title,.post-body .hljs-section,.post-body .hljs-attribute,.post-body .hljs-quote,.post-body .hljs-built_in,.post-body .hljs-builtin-name{color:#ffa}.post-body .hljs-number,.post-body .hljs-symbol,.post-body .hljs-bullet{color:#d36363}.post-body .hljs-keyword,.post-body .hljs-selector-tag,.post-body .hljs-literal{color:#fcc28c}.post-body .hljs-comment,.post-body .hljs-deletion,.post-body .hljs-code{color:#888}.post-body .hljs-regexp,.post-body .hljs-link{color:#c6b4f0}.post-body .hljs-meta{color:#fc9b9b}.post-body .hljs-deletion{background-color:#fc9b9b;color:#333}.post-body .hljs-addition{background-color:#a2fca2;color:#333}.post-body .hljs a{color:inherit}.post-body .hljs a:focus,.post-body .hljs a:hover{color:inherit;text-decoration:underline}mark .post-body .hljs-attr,mark .post-body .hljs-string,mark .post-body .hljs-bullet{background-color:#e67e22;color:#fff}.post-body .hljs mark{background-color:#f24a4a;color:#fff;padding:2px 5px;border-radius:2px}.post-body .hljs mark span.hljs-number,.post-body .hljs mark span.hljs-comment,.post-body .hljs mark span.hljs-symbol,.post-body .hljs mark span.hljs-string,.post-body .hljs mark span.hljs-attr,.post-body .hljs mark span.hljs-keyword,.post-body .hljs mark span.hljs-name,.post-body .hljs mark span.hljs-tag{color:#fff;margin:.15rem 0}
/* Shortcode */
.sharethisbawah{margin:20px auto}
.post-body .button{width:100%;padding:0!important;list-style:none;margin:10px auto!important}
.post-body .button li{display:inline-block;width:49%;line-height:normal;margin:0}
.post-body .button li a{position:relative;display:block;padding:15px;margin:5px;color:#fff;text-align:center;text-transform:uppercase;border-radius:3px}
.post-body .button li a.demo{background:#dda245;}.post-body .button li a.demo:hover{background:#c18e3d;}
.post-body .button li a.download{background:#529cce;}.post-body .button li a.download:hover{background:#4686b0;}
.demo:before {content:'\f135';display:inline-block;font-weight:normal;vertical-align:top;margin-right:10px;width:16px;height:16px;line-height:24px;font-family:fontawesome;transition:all 0.5s ease-out;}
.download:before {content:'\f019';display:inline-block;font-weight:normal;vertical-align:top;margin-right:10px;width:16px;height:16px;line-height:24px;font-family:fontawesome;transition:all 0.5s ease-out;}
.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%;}
.post-body .bagidua .separator:nth-of-type(n+2),.post-body .bagitiga .separator:nth-of-type(n+2),.post-body .bagiempat .separator:nth-of-type(n+2) img{margin:0 auto}
.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}
.author-profile a.g-profile{color:#000;font-weight:700}
.author-profile span{font-size:14px}
.author-profile a.g-profile span{font-size:1.2rem}
#flippy{text-align:center;margin:auto;display:inline}
#flippy button{display:block;background:#f20738;width:100%;max-width:50%;padding:18px;cursor:pointer;color:#fff;font-size:16px;text-align:center;border:0;text-transform:uppercase;letter-spacing:0.5px;margin:auto;border-radius:5px;transition:all .3s}
#flippy button:hover,#flippy button:focus{background:#d90e39;outline:none;color:#fff}
#flippanel{padding:20px;display:none;text-align:left;background:#f6f6f6;margin:10px 0 0 0}
#flippanel img{background:#e9e9e9;margin:10px auto}
#flippanel .separator:nth-of-type(1),.post-body .bagidua .separator:nth-of-type(1),.post-body .bagitiga .separator:nth-of-type(1),.post-body .bagiempat .separator:nth-of-type(1){margin:auto}
#flippanel .separator:nth-of-type(1) img,.post-body .bagidua .separator:nth-of-type(1) img,.post-body .bagitiga .separator:nth-of-type(1) img,.post-body .bagiempat .separator:nth-of-type(1) img{width:auto}
.post-body blockquote{background:#f7f7f7;color:#888;border-left:7px solid rgba(0,0,0,0.15);margin:0;padding:1em 15px}
</style></b:if>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<style type='text/css'>
.post {margin:0 0 20px 0;}
.entry-title{clear:none;font-size:130%}
.snippets{margin:10px 0 0 0;font-size:14px}
.label-info{position:absolute;opacity:1;visibility:visible;left:0;top:0;z-index:2;padding:0;transition:all .3s}
.label-info a{display:block;background:rgba(255,51,84,.8);color:rgba(255,255,255,1);font-weight:700;text-transform:uppercase;font-size:12px;padding:6px 8px;transition:all .3s}
.label-info a:hover{background:#34495e;color:#fff;}
/* Page Navigation */
#blog-pager{display:inline-block;text-align:center;margin:30px 0;color:#fff}
#blog-pager .nubie-textpager-newer{margin-left:5px}
#blog-pager .nubie-textpager-older{margin-right:5px}
#blog-pager .namina-btn{display:inline-block;padding:5px 15px;background:#1277cb;color:#fff}
#blog-pager .namina-btn:hover{background-color:#222;color:#fff}
#blog-pager .namina-btn.home-link.namina-btn{display:none}
/* Page Navigation */
#blog-pager{background:#fff;clear:both;width:auto;padding:0;line-height:normal;position:relative;display:block;text-align:left;overflow:visible;margin:30px auto}
.showpage a,.showpageNum a,.showpagePoint,.showpageOf{position:relative;background:#1277cb;display:inline-block;font-size:13px;color:#fff;padding:10px 14px;font-weight:700;margin:0 4px 0 0;border-radius:2px;transition:all .3s}
.showpageNum a:before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;box-shadow:inset 0 -2px 2px rgba(0,0,0,0.02);transition:box-shadow 0.5s}
.showpage a:hover,.showpageNum a:hover,.showpagePoint:hover,.showpagePoint{background:#e17055;color:#fff;position:relative}
.showpageOf{display:none}
@media screen and (max-width:640px) {
#blog-pager {padding:12px;}
.showpage a,.showpageNum a,.showpagePoint,.showpageOf{margin:0 2px 2px 0;box-shadow:0 1px 2px 1px rgba(0,0,0,0.1);}
.showpageOf{display:none}}
@media screen and (max-width:320px) {
.showpage a,.showpageNum a,.showpagePoint,.showpageOf{padding:3px 6px}}
/* Homepage Thumbnail Post */
.post .thumb-wrapper{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;position:relative;z-index:10;float:left;margin-right:20px;height:200px;width:280px}
.post .thumb-wrapper-img,.post .thumbnail-empty-img{background-position:center;background-repeat:no-repeat;background-size:cover;width:100%;height:100%}
.thumbnail-empty-img{position:relative;background-image:url('https://2.bp.blogspot.com/-7g3MtbLU62w/W2NupumTD7I/AAAAAAAAAJU/bn--Y3w70nElbTyTsM_jGFFaZitJiBvLQCLcBGAs/s1600/no_thumbnail.jpg')}
/* Featured Post */
#featured-posx-section{max-height:340px;overflow:hidden;margin:20px auto 0 auto}
.featured-posx a{font-size:1em;color:#fff}
.featured-posx a:hover{color:#fff;}
.main-post.featured-posx a{margin:0;font-size:17px}
.featured-posx .col-post{float:left;position:relative;overflow:hidden;margin:0 10px 0 0}
.featured-posx .secondary-post{background:#f5f5f5;width:31.5%;margin:0 0 10px 0;transition:all .4s}
.featured-posx .secondary-post:nth-child(even){margin:0 10px 10px 0!important}
.featured-posx .main-post{background:#f5f5f5;width:34.9%;padding:0;transition:all .4s}
.featured-posx span{background:#e17055;color:#fff;font-style:normal;position:absolute;font-size:11px;line-height:1.4;padding:3px 6px;top:10px;left:10px;z-index:3;border-radius:2px;transition:all .4s}
.featured-posx .main-post:hover span,.featured-posx .secondary-post:hover span{background:#ff7675;color:#fff}
.featured-posx img{height:100%;transition:all .5s}
.featured-posx .main-post img{height:340px;width:100%;object-fit:cover;}
.featured-posx .secondary-post img{height:165px;object-fit:cover;width:100%;}
.featured-posx .main-post:hover img,.featured-posx .secondary-post:hover img{backface-visibility:hidden;transform-style:preserve-3d;}
.featured-posx header{display:inline-block;position:absolute;background:rgba(20,20,20,.6);top:0;bottom:0;opacity:1;visibility:visible;left:0;right:0;padding:0;z-index:2;transition:all .4s}
.featured-posx header:hover{background:rgba(20,20,20,.8)}
.featured-posx .main-post h3,.featured-posx .secondary-post h4{position:absolute;bottom:5px;left:5px}
.featured-posx .main-post:hover h3,.featured-posx .secondary-post:hover h4{}
.featured-posx .secondary-post header{padding:0}
.featured-posx header h3{font-size:20px;margin:0;font-weight:400}
.featured-posx h4{font-size:14px;margin:0;font-weight:400}
.featured-posx header h3 a,.featured-posx header h4 a{display:block;padding:10px}
.featured-posx .main-post:hover h3 a,.featured-posx .secondary-post:hover h4 a {color:#fff}
/* Label */
.label-line,.label-line-c{position:relative}
.label-info-th{display:block;z-index:2;position:relative;margin-bottom:20px}
.label-line-c{text-align:center;margin-bottom:6px}
.label-line:before,.label-line-c:before{z-index:1;content:"";width:100%;height:1px;background:rgba(0,0,0,0.08);position:absolute;top:50%;left:0;margin-top:-1px}
.label-info-th a{color:#888;background:#fff;display:inline-block;padding:6px 12px;margin:1px 0;font-size:10px;font-weight:400;text-transform:uppercase;border:1px solid rgba(0,0,0,0.08)}
.label-info-th a:hover{color:#1277cb}
.label-info-th a:nth-child(n+4),.feed-links,.breadcrumbs{display:none}
/* Responsive */
@media screen and (max-width:768px){
#blog-pager{display:table;text-align:center;margin:30px auto}
#featured-posx-section{display:none}}
@media screen and (max-width:640px){
.post .thumb-wrapper{width:100%;margin:0 auto 20px auto}}
@media screen and (max-width:480px) {
#blog-pager .nubie-textpager-newer,#blog-pager .nubie-textpager-older,.nubie-share .nubie-sharetext-btn{display:none}}
@media screen and (max-width:640px){
.sosmed-author li {width:23%}}
</style></b:if></b:if>
<b:if cond='data:blog.pageType == "static_page"'>
<style type='text/css'>
#primarypix{width:100%;float:none}
#comments,#secondarypix,.comments-line,.comments-line-c{display:none}
</style></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<style type='text/css'>
#main-wrapper{border:0;margin:50px auto}
#primarypix{width:100%}
#secondarypix,.status-msg-wrap,.banner,.banner2{display:none}
.custom-error{margin:auto;line-height:1.7;max-width:640px;padding:9em 0;text-align:center}
.custom-error h2{font-size:6em;font-weight:700;margin:0 0 20px 0;color:#e17055}
.custom-error h3{font-size:2.5em;font-weight:700;margin:0 0 30px 0}
.custom-error p{color:#999}
.custom-error a{color:#1277cb;transition:initial;text-decoration:underline}
.custom-error a:hover{color:#1277cb}
</style>
</b:if>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/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=Poppins:400,700");loadCSS("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
//]]>
</script>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
snippet_count = 100;
//<![CDATA[
function removeHtmlTag(n,e){if(-1!=n.indexOf("<")){for(var t=n.split("<"),i=0;i<t.length;i++)-1!=t[i].indexOf(">")&&(t[i]=t[i].substring(t[i].indexOf(">")+1,t[i].length));n=t.join("")}for(e=e<n.length-1?e:n.length-2;" "!=n.charAt(e-1)&&-1!=n.indexOf(" ",e);)e++;return n=n.substring(0,e-1),n+"..."}function createSnippet(n){var e=document.getElementById(n),t=snippet_count,i='<div class="snippets">'+removeHtmlTag(e.innerHTML,t)+" ...</div>";e.innerHTML=i}
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
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 slderposx(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="340" 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]="https://1.bp.blogspot.com/-P_8WxiJ8HxM/W2NvT88PX8I/AAAAAAAAAJc/U-NV9JoZSWIRQa1vTdqqp4xxr80U88SJwCLcBGAs/s1600/no_thumbnail2.jpg",showRandomImg=!0,aBold=!0,summaryPost=150,summaryTitle=50,numposts1=10,featured_numposx="5";
//]]>
</script>
</b:if>
</b:if>
<noscript>
<style type='text/css'>
/* No Script */
body,html{overflow:hidden}
.noscript{background:#1277cb;color:#fff;padding:8% 0 0 0;position:fixed;bottom:0;left:0;top:0;right:0;z-index:1000;height:auto;-webkit-transform:translateZ(0);transform:translateZ(0);overflow:hidden}
.noscript p{margin:0;text-align:center;padding:0 20px 10px 20px;margin:auto;font-size:3rem;line-height:1.5;font-family:monospace;max-width:970px;text-transform:uppercase;font-weight:700}
.noscript p span{color:#ffe88b;font-size:10rem;line-height:normal;font-weight:normal}
</style>
</noscript>
<b:if cond='data:blog.pageType == "item"'>
<script async='async' src='//platform-api.sharethis.com/js/sharethis.js#property=5b61089df3815e0011ed226c&product=social-ab' type='text/javascript'/>
</b:if>
</head>
<body expr:class='data:blog.pageType' itemscope='' itemtype='https://schema.org/WebPage'>
<noscript>
<div class='noscript'>
<p><span>⚠</span></p>
<p>Please Enable Javascript to view our site content</p>
<p>Thank you</p>
</div>
</noscript>
<div id='top-container'>
<div id='topfix-container'>
<div class='header-logo'>
<b:section class='header' id='header' maxwidgets='1' name='Logo & Title' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Juragan (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'>
<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'>
<h1><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></h1>
<!--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.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>
</div>
<nav id='mudahmenu' itemscope='itemscope' itemtype='https://schema.org/WPHeader'>
<div id='head-mobile'/>
<div class='button' id='menu-button'/>
<ul>
<li class='homemenu'><a expr:href='data:blog.homepageUrl' itemprop='url'><span itemprop='name'>Home</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Info Menarik</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Inspirasi</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Travelling</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Error 404</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu</span></a>
<ul>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 1</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 2</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 3</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 4</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 5</span></a></li>
</ul>
</li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu</span></a>
<ul>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 1</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 2</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 3</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 4</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Submenu 5</span></a></li>
</ul>
</li>
</ul>
</nav>
<div class='search-icon'>
<a href='#searchfs'><i class='fa fa-search'/></a>
</div>
</div>
</div>
<div class='clear'/>
<div id='searchfs'>
<button class='close' type='button'>×</button>
<form action='/search' id='search-form' method='get'>
<input name='q' placeholder='type to search' type='search' value=''/>
<input name='max-results' type='hidden' value='9'/>
</form>
</div>
<div class='clear'/>
<div class='sitepix' id='pagepix'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<div class='ct-wrapper' id='featured-posx-section'>
<div class='featured-posx padding clearfix'>
<script type='text/javaScript'>
document.write("<script src=\"/feeds/posts/default/?max-results="+featured_numposx+"&orderby=published&alt=json-in-script&callback=slderposx\"><\/script>");
</script>
</div>
</div>
</b:if>
<div class='site-contentpix' id='contentpix'>
<b:section class='banner section' id='banner' maxwidgets='2' showaddelement='yes'>
<b:widget id='HTML96' locked='false' title='' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'><div style="width:100%;height:90px;background:#f1e791;margin:0 auto;position:relative;">
<div id='content1'>
<div style="text-align: center;">
<ul class="button">
<li><a class="download" href="#" rel="nofollow noopener" target="_blank">Buy Now</a></li>
</ul>
</div>
<div class='visible'>
<p>
Ads 970x90
</p>
</div>
</div>
</div>
<style scoped="" type="text/css">
#content1{position:absolute;color:rgba(0,0,0,0.15);font-weight:700;overflow:hidden;width:100%;height:90px}
#content1 .button{margin:0;position:absolute;left:5%;top:29%;list-style:none}
#content1 .button a.download{display:inline-block;background:#d63031;color:#fff;font-size:14px;font-weight:400;padding:8px 16px;border-radius:3px}
#content1 .button a.download:hover{background:#222;color:#fff}
#content1 .visible{position:absolute;right:5%;top:2%;color:rgba(0,0,0,0.1);font-size:4rem}
@media screen and (max-width:768px){
#content1 .button{left:20px;right:20px}
#content1 .button a.download{display:block}
#content1 .visible{display:none}}
</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 class='clear'/>
<div class='content-areapix' id='primarypix' itemscope='itemscope' itemtype='https://schema.org/Blog' role='main'>
<div class='site-mainpix' id='mainpix' role='main'>
<b:section class='mainblogsec' id='mainblogsec' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog' version='1'>
<b:widget-settings>
<b:widget-setting name='commentLabel'>komentar</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='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'>di</b:widget-setting>
<b:widget-setting name='reactionsLabel'>Reaksi:</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>true</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>