-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBlogger xml code
3750 lines (3511 loc) · 213 KB
/
Blogger xml code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale.language' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='743A462C637DB2132AF7913115F081BE' name='msvalidate.01'/>
<!-- Meta Tag -->
<b:if cond='data:view.isHomepage or (data:view.isSearch and !data:view.isLabelSearch and !data:blog.searchQuery)'>
<title><data:view.title.escaped/></title>
<meta expr:content='data:view.title' property='og:title'/>
<meta expr:content='data:view.title' property='og:image:alt'/>
<meta expr:content='data:view.title' name='twitter:title'/>
<meta expr:content='data:view.title' name='twitter:image:alt'/>
<b:elseif cond='data:view.isSingleItem or data:view.isSearch or data:view.isArchive'/>
<title><data:blog.pageName/> - <data:blog.title/></title>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' property='og:title'/>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' property='og:image:alt'/>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' name='twitter:title'/>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' name='twitter:image:alt'/>
<b:elseif cond='data:view.isError'/>
<title>Page Not Found - <data:blog.title/></title>
<meta expr:content='"Page Not Found - " + data:blog.title' property='og:title'/>
<meta expr:content='"Page Not Found - " + data:blog.title' property='og:image:alt'/>
<meta expr:content='"Page Not Found - " + data:blog.title' name='twitter:title'/>
<meta expr:content='"Page Not Found - " + data:blog.title' name='twitter:image:alt'/>
<b:else/>
<title><data:view.title/></title>
<meta expr:content='data:view.title' property='og:title'/>
<meta expr:content='data:view.title' property='og:image:alt'/>
<meta expr:content='data:view.title' name='twitter:title'/>
<meta expr:content='data:view.title' name='twitter:image:alt'/>
</b:if>
<!-- Tracking Code -->
<meta content='xxxxxxxxx' name='google-site-verification'/>
<meta content='xxxxxxxxx' name='msvalidate.01'/>
<!-- Keyword -->
<meta content='Keyword 1, keyword 2, keyword 3, keyword 4, keyword 5, etc' name='keywords'/>
<meta content='Keyword 1, keyword 2, keyword 3, keyword 4, keyword 5, etc' property='article:tag'/>
<!-- Facebook, Twitter, and Pinterest Meta Tag -->
<meta content='article' property='og:type'/>
<meta content='Your Name' name='author'/>
<meta content='Your Name' property='article:author'/>
<meta content='xxxxxx' property='fb:admins'/>
<meta content='https://www.facebook.com/xxxxxx' property='article:author'/>
<meta content='https://www.facebook.com/xxxxxx' property='article:publisher'/>
<meta content='@YOURusername' name='twitter:site'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta content='en_US' property='og:locale'/>
<meta content='id_ID' property='og:locale:alternate'/>
<meta content='summary' name='twitter:card'/>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<meta expr:content='data:blog.postImageUrl' name='twitter:image'/>
<meta expr:content='data:blog.pageName' name='twitter:image:alt'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postThumbnailUrl' property='og:image'/>
<b:else/>
<meta content='https://1.bp.blogspot.com/-57IYXTY-xXw/X5fe9MeDs_I/AAAAAAAAF1s/Pal-4VNeBWg39GH86lrcOl2-SybNTnPfgCLcBGAsYHQ/w640-h462/Fitrah%2BPress.jpg' property='og:image'/>
<meta content='https://1.bp.blogspot.com/-57IYXTY-xXw/X5fe9MeDs_I/AAAAAAAAF1s/Pal-4VNeBWg39GH86lrcOl2-SybNTnPfgCLcBGAsYHQ/w640-h462/Fitrah%2BPress.jpg' name='twitter:image'/>
<meta expr:content='data:blog.postThumbnailUrl' name='twitter:image'/>
</b:if>
</b:if>
<!-- Other -->
<meta content='width=device-width, minimum-scale=1, initial-scale=1, shrink-to-fit=no' name='viewport'/>
<meta content='IE=Edge' http-equiv='X-UA-Compatible'/>
<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.canonical' rel='canonical'/>
<b:if cond='data:view.isArchive or data:view.isSearch or data:view.isLabelSearch or data:view.isError'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:include data='blog' name='all-head-content'/>
<!-- Owner Sife Verification -->
<meta content='#' name='google-site-verification'/>
<meta content='#' name='msvalidate.01'/>
<meta content='#' name='p:domain_verify'/>
<meta content='#' name='majestic-site-verification'/>
<meta content='Kudupinter' name='copyright'/>
<script type='application/ld+json'>
{"@context": "https://schema.org",
"@type": "WebSite",
"url": "<data:blog.homepageUrl.canonical/>",
"name": "<data:blog.title/>",
"alternateName": "<data:blog.title/>",
"potentialAction": {
"@type": "SearchAction",
"target": "<data:blog.homepageUrl.canonical/>search?q={search_term_string}&max-results=8",
"query-input": "required name=search_term_string"}}
</script>
<b:if cond='data:view.isSingleItem'>
<script type='application/ld+json'>
{"@context":
"https://schema.org/",
"@type":
"CreativeWorkSeries",
"name":
"<data:blog.pageName/>",
"aggregateRating": { "@type":
"AggregateRating",
"ratingValue":
"4.9",
"bestRating":
"5",
"ratingCount": "107" } }
</script>
</b:if>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'/>
<link href='https://fonts.googleapis.com/css2?family=Roboto+Sans:wght@700' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css2?family=Noto+Sans' rel='stylesheet'/>
<link expr:href='data:blog.url' hreflang='x-default' rel='alternate'/>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://cdn.statically.io/gh/TaufiqHdyt/CDN/fd1ce28b/font-awesome-5-pro/css/all.min.css' rel='stylesheet'/>
<b:skin><![CDATA[/*
*/
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}
/*
Name : Blogger Press
Version : 1.21.0
Date : November 01, 2021
Demo : emexee.com
Type : Premium
Designer : Muhammad Ahmed Saeed
Website : www.xoominternet.com
*/
<!-- Variable definitions -->
<Group description="Komentar Baru Blogger (Contempo, Soho, Emporio, Notable)">
<Variable name="body.background" description="Body Background" type="background" color="#dddfe2" default="#dddfe2 none repeat scroll top left" value="#dddfe2 none repeat scroll top left"/>
<Variable name="body.font" description="Font" type="font" default="normal 400 14px Roboto, Arial, sans-serif" value="normal 400 14px Roboto"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#1d2129" value="#29251d"/>
<Variable name="body.text.font" description="1"
type="font"
default="$(body.font)" value="normal 400 14px Roboto"/>
<Variable name="posts.background.color" description="2"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="body.link.color" description="3"
type="color"
default="#008c5f" value="#666666"/>
<Variable name="body.link.visited.color" description="4"
type="color"
default="#008c5f" value="#008c5f"/>
<Variable name="body.link.hover.color" description="5"
type="color"
default="#32CD32" value="#D52C1F"/>
<Variable name="blog.title.font" description="6"
type="font"
default="$(body.text.font)" value="normal 400 14px Roboto"/>
<Variable name="blog.title.color" description="7"
type="color"
default="#fff" value="#004630"/>
<Variable name="header.icons.color" description="8"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="tabs.font" description="9"
type="font"
default="$(body.text.font)" value="normal 400 14px Roboto"/>
<Variable name="tabs.color" description="10"
type="color"
default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="11"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="12"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="13"
type="color"
default="$(body.text.color)" value="#1d2129"/>
<Variable name="tabs.overflow.selected.color" description="14"
type="color"
default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.color" description="15"
type="color"
default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.font" description="16"
type="font"
default="$(body.text.font)" value="normal 400 14px Roboto"/>
<Variable name="posts.text.font" description="17"
type="font"
default="$(body.text.font)" value="normal 400 14px Roboto"/>
<Variable name="posts.text.color" description="18"
type="color"
default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.icons.color" description="19"
type="color"
default="$(body.text.color)" value="#6c6f74"/>
<Variable name="labels.background.color" description="20"
type="color"
default="#008c5f" value="#008c5f"/>
</Group>
/* Komentar */
#comments{position:relative;margin:0px auto 0px auto;padding:0px;border:px solid rgba(0,0,0,0.08)}
#comments h4{font-size:24px;}
#comment_block{position:relative}
.comment_avatar_wrap{display:none;width:42px;height:42px;background:rgba(0,0,0,0.01);text-align:center;margin-bottom:20px;border-radius:100%}
#comments .avatar-image-container{display:none;float:left;width:42px;height:42px;max-width:42px;max-height:42px;padding:0;margin-top:5px;border-radius:3px}
#comments .avatar-image-container img{display:none;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:#000;}
.comment_admin .comment_name{font-weight:700;font-size:1.1rem;color:#000;}
.comment_admin .comment_date{font-weight:normal;font-size:11px;color:#000;}
.comment_name{font-weight:700;position:relative}
.comment_service{margin-top:5px}
.comment_date{color:#000;float:right;font-size:11px;font-weight:normal;margin-top:-3px}
.comment_inner{margin:12px 0}
.comment_child .comment_wrap{padding-left:7%}
#comments .comment-block{margin:5px 0 15px;color:#000;line-height:1.3em;border-radius:3px;position:relative;max-width:100%;margin-left:0px;padding:20px;border:1px solid rgba(0,0,0,0.08)}
#comments .comment-block .comment-content{line-height:normal;font-size:17px;text-align:left;margin:5px 0 0 0;color:#000;word-wrap:break-word;padding:10px 0}
#comments .comment-reply,#comments .comment-actions a{text-transform:uppercase;font-weight:bold;overflow:hidden;display:inline-block;margin-top:10px;margin-right:10px;color:#000;text-align:center;text-decoration:none;font-size:14px}
#comments .comment-reply:hover,#comments .comment-actions a:hover{color:#000}
#comments .datetime a{color:#000;float:right;font-size:14px;font-weight:normal}
#comments .datetime a{color:#000;text-decoration:none}
#comments .inline-thread{padding:0 0 0 1em}
#comments .thread-toggle{display:inline-block;color:#999;text-align:left;text-decoration:none;font-size:12px}
#comments .thread-toggle a{color:#999}
#comments .hidden{display:none}
.unneeded-paging-control{display:none}
.comment-form{max-width:100%;!important}
.comment_form a{text-decoration:none;text-transform:uppercase;font-size:15px}
.comment_reply_form{padding:0 0 0 70px}
.comment_reply_form .comment-form{width:100%}
.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 a{color:#000;}
.comments-line,.comments-line-c{display:nne;position:relative;margin:0px auto 20px auto}
.comments-info-th {z-index:2;position:relative;margin-bottom:0px;color:#000;background:#fff;display:inline-block;padding:px 10px;margin:1px 0;font-size:24px;font-weight:700;text-transform:normal;border:0px solid rgba(0,0,0,0.08);border-radius:99em}
.comments-line-c{text-align:center;}
.comments-line:before,.comments-line-c:before{z-index:1;content:"";width:100%;height:0px;background:rgba(0,0,0,0.08);position:absolute;top:50%;left:0;margin-top:-1px}
.post-body .separator a{ margin:0 !important; }
.post ul li {
list-style-image:url('http://3.bp.blogspot.com/_7wsQzULWIwo/SuM3oFg5zlI/AAAAAAAACHo/n5UluB5ugMI/s400/255.gif');
}]]></b:skin>
<style type='text/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,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{word-wrap: break-word;background-color:#f7f7f7 !important;color:#000;font-family: 'Noto Sans';font-size:16px;line-height:1.6;text-align:left;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:10}
/* Default */
h2.date-header{margin:0px 0;display:none}
.main .widget{margin:0 0 5px;padding:0 0 2px}
.main .Blog{border-bottom-width:10}
.deleted-comment{font-style:italic;color:#aaa}
#navbar-iframe,.status-msg-wrap{height:0;visibility:hidden;display:none}
.separator a { margin-left: 0 !important; margin-right: 0 !important; }
.separator a[style="margin-left:0em;margin-right:0em;"]{margin-left:0!important;margin-right:0!important}
.separator a[style="clear:left;float:left;margin-bottom:0em;margin-right:0em;"]{clear:none!important;float:none!important;margin-bottom:0!important;margin-right:0!important}
.separator a[style="clear:left;float:left;margin-bottom:0em;margin-right:0em;"] img{float:left!important;margin:0 10px 10px 0}
.separator a[style="clear:right;float:right;margin-bottom:0em;margin-left:0em;"]{clear:none!important;float:none!important;margin-bottom:0!important;margin-left:0!important}
.separator a[style="clear:right;float:right;margin-bottom:0em;margin-left:em;"] 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}
img{max-width:100%;height:auto}
/* Scrollbar Custom */
html, .post-body pre, .post-body pre code{scrollbar-width:thin}
/* Global */
button,input,select,textarea{color:#fff;word-wrap:break-word;line-height:1.6}
/* Headings */
h1,h2,h3,h4,h5,h6{font-family: 'PT Sans', sans-serif;clear:both;word-wrap:break-word;font-weight:bold;line-height:1.1;font-weight:700}
h1{font-size:28px;margin-bottom:0.75em}
h2{font-size:18px;margin-bottom:1.85715em}
h3{font-size:16px;margin-bottom:1.125em}
h4{font-size:14px;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;}
hr{background-color:#e6e6e6;border:0;height:1px;margin:1.1538461538em 0}
.post-body pre{position:relative;width:100%;background-color:#161617;color:#ffffff;border-radius:0px;padding:0;margin:0;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;transition:all .2s ease;overflow:hidden}
.post-body pre code{font-size:12px;line-height:1.5em;display:block;padding:15px 20px 30px 20px;font-family:'source code pro',menlo,consolas,monaco,monospace;overflow:auto;white-space:pre}
.post-body pre code span{color:#b8631e}
.post-body pre code span.block{color:#fff;background:#b8631e}
.post-body pre code i{color:#519bd6} .post-body .code{display:inline-block;font-size:.98rem;line-height:1.48rem;color:#519bd6}
.post-body pre code i.comment{color:#898ea4;user-select:text;-moz-user-select:text;-ms-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-webkit-touch-callout:text;}
/* Text elements */
p,blockquote p:last-child{margin-bottom:1.5em}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 1.5em 2.1538461538em}
ul{list-style:circle}
ol{list-style:decimal}
li > ul,li > ol{margin-bottom:1.1538461538em;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:1px solid #000;margin:0;padding-left:1.2538461538em}
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{text-decoration:none;}
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:normal}
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:#125e9d;text-decoration:none;transition:all .3s}
/* Othe Style */
.place-ads{width:100%;display:table;padding:0px;text-align:center;border-radius:0px;background:#fff;color:#989b9f}
.place-ads:before{content:'Ad is here';font-size:17px;display:table-cell;vertical-align:middle;}
.place-ads1{width:100%;display:table;padding:0px;text-align:center;border-radius:0px;background:#f2f2f2;color:#989b9f}
.place-ads1:before{content:'Ad is here';font-size:17px;display:table-cell;vertical-align:middle;}
.banner,.banner2{margin:0px auto 15px auto;float:center;position:center;text-align:center;overflow:hidden}
.banner .widget,.banner2 .widget{width:100%;max-width:100%;margin:0 auto;background:none;;text-align:center;overflow:hidden;padding:0}
/* 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}
ol{counter-reset:li;list-style:none;padding:0;margin:0}ol ol{margin:0 0 0 1em}
.post ol li{position:relative;display:block;padding:0;margin:0em 0 0em 2em;background:none;text-decoration:none}
.post ol li:before{content:counter(li);counter-increment:li;position:absolute;left:-2em;height:1em;width:2em;text-align:center}
/* Table */
.post-body table{width:100%;max-width:100%;border-radius:0px;border:2px solid #000;overflow:hidden}
.post-body table td,.post-body table caption{padding:10px 15px;text-align:left;vertical-align:top;color:#00000;font-size:100%;}
.post-body table td:first-child{border-right:0}
.post-body table th{vertical-align:middle;background:#000;color:#fff;border:0;padding:10px 15px;text-align:left;font-size:100%;}
.post-body table tr th:hover{background:#000;}
.post-body table.tr-caption-container{vertical-align:middle;border:0;margin:0}
.post-body table caption{border:none;font-style:italic}
.post-body td,.post-body th{vertical-align:middle;text-align:left;font-size:100%;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:00;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 table tr:nth-of-type(even) td{vertical-align:middle;border-left:1px solid rgba(0,0,0,0.03);background-color:#ffffff;}
.post-body table tr:nth-of-type(odd) td{border-left:1px solid rgba(0,0,0,0.03);background-color:#f1f1f1;}
.post-body table tr td:nth-of-type(even){}
.post-body table tr th:nth-of-type(even){border-left:1px solid rgba(255,255,255,0.03)}
/* Default Whatsapp Form */
form.whatsapp-form{background:#fff;border:0 solid#eee;padding:0;box-sizing:border-box;color:#000;font-size:18px;line-height:1.5}
.whatsapp-form a.send_form{color:#fff;background:#128C7E;text-decoration:none;display:inline-block;padding:10px 25px;border-radius:0;font-weight:0;letter-spacing:.5px}
#text-info span{display:block;padding:10px 15px;text-align:center;font-weight:700;margin:15px 0;border-radius:.5rem}
#text-info span.yes{background:#c6ffc5;color:#0ea904}
#text-info span.no{background:#ffc5c5;color:#ce0404}
/* Input Field CSS */
.datainput{background:#fff;position:relative;margin:5px 0 20px;border-radius:5px;}
.datainput p{background:#fff; color:#000;display:inline-block;padding:5px 15px;border-radius:.5rem}
.whatsapp-form textarea{background:#fff; color:#000;min-height:200px}
.datainput select{padding:12px 10px;color:#000;width:100%;border:0;border:1px solid #ddd;outline:none;background:#eee;}
.datainput input,.datainput textarea{background:#eee;padding:15px 0;display:block;width:100%;border:none;border:1px solid #ddd}
.datainput input:focus,.datainput textarea:focus{background:#fff;outline:none}
.datainput label{padding:0px 10px;color:#000;font-weight:400;position:absolute;pointer-events:none;left:0;top:18px;transition:.2s ease all}
.datainput input:focus~label,.datainput input:valid~label,.datainput textarea:focus~label,.datainput textarea:valid~label{top:-10px;color:#21a51f}
#notif-license span{font-size:40px}
#notif-license{display:none;position:fixed}
.bar{position:relative;display:block;width:100%}
.bar:before,.bar:after{content:'';height:2px;width:0;bottom:1px;position:absolute;background:#21a51f;transition:.2s ease all}
.bar:before{left:50%}
.bar:after{right:50%}
.datainput input:focus~.bar:before,.datainput input:focus~.bar:after,.datainput textarea:focus~.bar:before,.datainput textarea:focus~.bar:after{width:50%}
.highlight{position:absolute;height:50%;width:100px;top:25%;left:0;pointer-events:none;opacity:.5}
.datainput input:focus~.highlight,.datainput textarea:focus~.highlight{animation:inputHighlighter .3s ease}
.datainput input:focus~label,.datainput input:valid~label,.datainput textarea:focus~label,.datainput textarea:valid~label{top:-10px;font-size:13px;color:#21a51f}
/* Custom Cookies */
.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}
/* Header */
#header{padding:0;margin:0}
#header-inner{text-align:center;display:inline-block;}
#header-inner img {width: 330px;height: auto;}
#header h1,#header h2{font-weight:normal;margin:0;font-size:2.6rem;text-align:center}
#header h1 a,#header h2 a{color: #000;}
#header h1 a:hover,#header h2 a:hover{color: #2F4F4F;}
.descriptionwrapper{display:none}
.header-logo{float:left;padding:8px 18px 0px 2px;}
.mudah-head{display:table;width:100%;height:100%}
.mudah-sub-head{margin:auto;padding:0 10px;max-width:1240px}
/* Menu Wrapper */
#top-container{display:inline-block;width:100%;background:#fff;color:#ff0000;z-index:999;position: fixed; top: 0; width: display: block; transition: top 0.3s;border-bottom:5px solid #ff0000;transform:translateZ(0);box-shadow:0 0px 0px rgba(0,0,0,0.1)}
#topfix-container{max-width:1160px;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:right;margin:0 60px 0 0}
#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{margin: 10px 0px;float:left;}
#mudahmenu > ul > li > a{padding:15px 16px;letter-spacing:0.4px;text-decoration:none;font-size:18px;color:#003063;font-weight:00;transition:initial}
#mudahmenu > ul > li:hover > a,#mudahmenu ul li.active a{background:#ff0000;color:#fff}
#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 ul{position:absolute;left:-9999px;z-index:1;box-shadow:0 5px 10px rgba(0,0,0,.1);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:15px 25px;max-width:100%;min-width:150px;font-size:16px;text-decoration:none;color:#fff;background:#003063;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:#eeeeee}
#mudahmenu ul ul ul li.active a{border-left:1px solid #ff0000}
#mudahmenu > ul > li.has-sub > ul > li.active > a,#mudahmenu > ul ul > li.has-sub > ul > li.active> a{border-top:1px solid #ff0000}
#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{padding:0px}
#mudahmenu > ul > li > a,#mudahmenu > ul > li:hover > a,#mudahmenu ul li.active a{background:transparent;color:#fff}
#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;margin:0 auto}#mudahmenu ul{padding:0px;margin:0px;width:100%;display:none;background:black;;}#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{background:none;;);color:#fff;width:100%;border-bottom:0;font-weight:400}#mudahmenu > ul > li{float:none}#mudahmenu ul ul li a{padding-left:18px}#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,#mudah
menu 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{border:1px solid #000;border-radius:0px;width:50px;height:32px;position:absolute;right:18px;top:10px;cursor:pointer;z-index:2
;transition:all .1s}
#mudahmenu .button:after{text-align:center;position:absolute;top:15px;right:10px;display:block;height:4px;width:30px;border-top:3px solid #000;border-bottom:3px solid #000;content:'';-webkit-box-sizing:initial;-moz-box-sizing:initial;box-sizing:initial;transition:all .3s}
#mudahmenu .button:before{text-align:center;position:absolute;top:7px;right:10px;display:block;height:3px;width:30px;background:#000;content:'';transition:all .3s}
#mudahmenu .submenu-button{background:rgba(255,255,255,.2);position:absolute;z-index:99;right:15px;top:15px;display:block;height:28px;width:28px;line-height:28px;cursor:pointer;border-radius:99em}#mudahmenu .submenu-button.submenu-opened{background:rgba(0,0,0,.1)}#mudahmenu ul ul .submenu-button{height:32px;width:32px}#mudahmenu .submenu-button:after{content:'';position:absolute;top:14px;right:8px;width:12px;height:1px;display:block;background:rgba(255,255,255,.9)}#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:14px;display:block;width:1px;height:12px;background:rgba(255,255,255,.9)}#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,#mudahmenu > ul > li:hover > a,#mudahmenu ul li.active a{background:#1277cb;background:linear-gradient(to right,#1277cb,#46a7f7);color:#fff}}
/* Search Form */
.search-icon{font-size:20px;padding:20px 0px 13px 14px;position:absolute;right:0;top:0}
.search-icon a{color:#000;}
#searchfs{position:fixed;z-index:9999;top:0;left:0;width:100%;height:100%;background-color:#eee;color:#000;border:2px solid #eee;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:39%;background:#fff;color:#000;border:0px solid #000;border-radius:0px;font-size:22px;text-align:left;outline:none;padding:15px 25px;margin:auto}
#searchfs .close{position:fixed;top:20px;right:30px;color:#000;background-color:transparent;opacity:0.6;font-size:70px;border:none;outline:none;padding:0}
#searchfs .close:hover{cursor:pointer;opacity:1;}
/* Layout */
.sitepix{margin:90px auto 70px auto;max-width:1240px;padding:0}
#primarypix{float:center;background:#fff;margin:0px 0;!important;}
#secondarypix{float:right;margin:0px 0;padding:0;}
/* Content */
.hentry{position:relative;color:#ff0000;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{font-size:250%;line-height:1.2em;}
.entry-title a{color:#003063}.headertitle{color:#1277cb}
.entry-title a:hover{color:#ff0000;}
.entry-metapix{color:#000;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:normal}
.entry-metapix a:hover{color:#000}
.entry-metapix .datepix{margin-right:1em}
.entry-metapix .datepix a:before{margin-right:3px;position:relative;top:1px}
.entry-metapix .authorpix{margin-left: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:20px;color:#000;line-height:1.6;}
.entry-content-botpix{padding:0}
embed,iframe,object{max-width:100%}
/* Widgets */
.widget-areapix .widget{margin:0 0 35px 0;overflow:hidden}
.widget-areapix .widget h2,.widget-areapix .widget h3{}
.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:40px}
.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{padding:0}
#secondarypix h2,#secondarypix h3{font-size:20px;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:normal}
#secondarypix .widget-content{padding:0}
/* Search Form Post */
#search-form{padding:0;margin: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:2px dashed #000;color:#000;text-indent:10px;font-size:14px}
#search-wrapper input#search-boxs1[type="text"]:focus{outline:none;color:#222}
#search-wrapper input#search-button1[type="submit"]{font-size:15px;background:#000;color:#fff;height:40px;line-height:40px;margin:0;padding:0 25px;border:2px solid rgba(0,0,0,0.08) ;outline:none;font-weight:normal;transition:all 0.25s;position:absolute;right:0;top:0;z-index:2;cursor:pointer;font-size:14px}
#search-wrapper input#search-button1[type="submit"]:hover,#search-wrapper input#search-button1[type="submit"]:active{outline:none;background:#be5e48;color:#fff}
/* Insert Ads After Certain Paragraph */
.KudupinterParagraphAds {display:block; margin:10px 0px; padding:0px;}
/* Multiple Ads Inside Post */
.KudupinterMultiAds {display:block; margin:10px auto; padding:0px; text-align:center}
/* 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 {color:#1277cb;}
#secondarypix .Label li a {color:#000;font-size:14px}
#secondarypix .Label li a:hover {color:#1277cb}
#secondarypix .Label li span{color:#888;float:right;font-size:11px;display:inline-block;padding:3px 10px;margin:1px 0;border:1px solid rgba(0,0,0,0.08);border-radius:99em}
#secondarypix .Label li span:nth-child(1){background:transparent;color:#1277cb;font-size:14px;float:none;padding:0;border:0}
#secondarypix .Label li:hover span:nth-child(2){background:#fff;color:#1277cb}
.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:#082C39;color:#fff;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:#fff;font-size:16px}
.maxwrap.bawahcr{margin:0 auto;overflow:hidden;padding:10px;}
.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:40px 0 10px 0}
ul.menufoot li a{color:#082C39;overflow:hidden;margin-right:5px;padding:6px 12px;line-height:25px;transition:all .1s}
ul.menufoot li a:hover{color:#ff0000;}
ul.menufoot li a i {margin:0 5px 0 0;color:rgba(255,255,255,1)}
ul.menufoot li a:hover i {margin:0 5px 0 0;color:rgba(255,255,255,.5)}
/* Footer Wrapper */
.footer-navbarpix{padding:10px;}
.site-infopix{color:#082C39;font-weight:normal;padding:0px 20px 20px 20px;text-align:center}
.site-infopix a{color:#082C39;}
.site-infopix a:hover{color:#ff0000;}
.site-infopix .credits{font-size:10px;opacity:0}
/* Blog Pager */
#blog-pager-newer-link{display:none;}
#blog-pager-older-link{width:100%;display:inline-block;float:center !important;text-align:center;
background:none;;padding:20px 0px;margin:20px 0px;;}
#blog-pager-older-link a{background:#fff;color:#000;font-weight:bold;text-transform:normal;padding:20px 70px;}
#blog-pager-older-link a:hover{background: #000;color:#fff;}
#blog-pager .namina-btn.home-link.namina-btn{display:none}
#blog-pager .home-link {display:none;}
/* Responsive */
@media screen and (min-width:1200px){
html{font-size:96.75%}.display-header-textpix .site-imagepix{margin-bottom:17px}.site-descriptionpix{margin-top:12px}.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:810px){
.site-brandingpix,.site-navigationpix{padding-left:1.98245614%;padding-right:1.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%}
.search-icon a{color:#000}
.search-icon{display:none;padding:13px 18px}
.post-outer{background-color:#fff;padding:18px !important;}
.post .thumb-wrapper{height:250px !important;width:100%;}
#searchfs input[type="search"]{width:80%;font-size:20px}
.item #content-wrapper{padding:0 0 30px}
#header{padding:5px 0px;margin:0}
#header-inner{text-align:center;display:inline-block;}
#header h1,#header h2{font-weight:normal;margin:0;font-size:2.2rem;}
.header-logo{background:transparent;margin:auto;position:absolute;top:0;left:18px;text-align:left;width:100%;z-index:0;padding:3px 0}
#header-inner img {width: 200px;height: auto}
.social-head{float:none;margin:5px auto 20px auto}
.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:920px){
.sitepix{margin:60px auto 30px auto;max-width:850px;padding:0}
#primarypix,#secondarypix{width:100%}.pixtotop{display:non}}
@media screen and (max-width:767px){
.entry-content{padding:0;font-size:17px;line-height:1.5;color:#000;}
.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:5}}
@media screen and (max-width:362px){
.site-logopix{max-width:100%}}
<b:if cond='data:blog.pageType == "item"'>
ins.adsbygoogle {display:block;background: transparent !important; }
#primarypix{float:left;width:100%;background:#fff;margin:10px 0;!important;}
#secondarypix{display:none;float:right;margin:0px 0;padding:0;width:;}
.post-outer{padding:0px !important;}
.comments-line{padding:0px 40px;}
#comments.comments {padding:0px 40px 40px 40px;}
.item .post .separator a{margin-left:0em !important;margin-right:0em !important;padding:0em !important;}
.item .post .separator img{margin-left:0em !important;margin-right:0em !important;padding:0em !important;}
.post-body .separator1{position:relative;width:111%;left:-5.5%}
.post-body .separator1 img{display:block;width:100%;border-radius:0}
.post-body {padding:0px 40px 40px 40px;font-size:18.2px;line-height:28px;}
.post-body img{width:100%;height:auto; margin:10x 0px;}
.post-body h1 {font-size:180%;}
.post-body h2 {font-size:180% !important;color:#f58634;margin-bottom:20px;}
.post-body h3 {font-size:160% !important;color:#2ea550;margin-bottom:20px;}
.post-body h4 {font-size:140% !important;margin-bottom:20px;}
.post-body h5 {font-size:140% !important;margin-bottom:20px;}
.post-body h6 {font-size:140% !important;margin-bottom:20px;}
.entry-title{padding:10px 40px 0px 40px;font-size:280% !important;margin-bottom:10px;}
.item .post .author-profile li{margin-bottom:3px;display:block;font-size:16px;font-weight:300;color:#000;line-height:19px}
.item .post .author-profile li a{text-decoration:none;font-weight:00;color:#111}
.item .post .author-profile span.abbr{font-size:16px}
.item .post .author-profile img{float:left;border-radius:60%;width:46px; margin-right:10px;}
.item .post .author-profile{overflow:hidden;padding:0;margin-bottom:0px}
.item .post .author-info{display:nne;float:left;width:100%}
.item .post .label-info a.label-block:nth-child(n+2),.showpageOf{display:none}
/* CSS Breadcrumbs */
.breadcrumbs{padding:40px 40px 0px 40px;line-height:1.2em;width:auto;overflow:hidden;0;margin:font-size:90%;color:#888;font-weight:400;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;white-space:nowrap}
.breadcrumbs a{display:inline-block;text-decoration:none;transition:all .3s ease-in-out;color:#777;font-weight:400}
.breadcrumbs a:hover{color:blue}
.breadcrumbs svg{width:20px;height:20px;vertical-align:-5px;margin:0 -3px}
.breadcrumbs svg.homesvg{width:22px;height:22px;margin-right:0}
.breadcrumbs svg path{fill:#c8c8c8}
.breadcrumbs svg.homesvg path{fill:#999}
/* Box Author */
.item .post .author-profile-bottom {background:none;padding:0px 40px 20px 40px;margin:0px}
.item .post .author-box {padding:40px 30px;background:#eee;}
.item .post .author-profile-bottom .befored{font-size:15px;}
.item .post .author-profile-bottom .left{width:100px;letter-spacing:-1px;color:#111}
.item .post .author-profile-bottom .left img{float:left;margin-right:10px;border-radius:50%}
.item .post .author-profile-bottom .right{width:90%;}
.item .post .author-profile-bottom a.g-profile{color:#000;font-weight:700}
.item .post .author-profile-bottom span{}
.item .post .author-profile-bottom a.g-profile span{font-size:24px;}
/* Blogspot TOC */
.kudupintertoc {background-color:#f8f9fa; border:10px solid #a2a9b1; display:table !important;padding:13px 15px;margin-bottom:20px;
line-height:1.2em;}
.kudupintertoc ol, .kudupintertoc ul {list-style-type:none; list-style-image:none; margin:5px 0px 0px 0px; padding: 30px 30px; text-align:left}
.kudupintertoc ul li {list-style-type: none;list-style: display:none !important;}
.kudupintertoc ol li, .kudupintertoc ul li {padding: 2px 0px 0 0; margin: 0 0 0 0px;}
.kudupintertoc ol li, .kudupintertoc ul li a {font-size: 95%;line-height:0.7em;}
.kudupintertoc a {text-decoration: none;}
.kudupintertoc a:hover {text-decoration: underline;}
.kudupintertoc .kudupintertocHeader {font-weight: normal;cursor:pointer;font-size: 100%;}
.kudupintertoc .kudupintertocHeader a {font-weight: bold; position: center; float:center;text-align:center;outline: none; border: none;
margin: 0px 0px;}
.kudupintertoc .kudupintertocHeader a:hover { text-decoration: none;}
:target::before {content: '';height: 70px; margin-top: -70px; display: block; visibility: hidden
}
@media screen and (max-width:767px){
:target::before {content: '';height: 70px; margin-top: -70px; display: block; visibility: hidden
}}
/* Related Post */
#related-posts{overflow:hidden;margin:0 0 20px 0;padding:10px 40px}
.related li{width:49.8%;display:inline-block;height:auto;float:left;margin-bottom:2px;
margin-right:2px;overflow:hidden;position:relative}
.related li h3{margin-top:0}
.related-thumb{width:100%;height:180px;overflow:hidden;border-radius:0px}
.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:17px;line-height:1.2em;padding:0;font-weight:400;color:#fff;display:block;}
.related li:nth-of-type(2),.related li:nth-of-type(4),.related li:nth-of-type(6){margin-right:0px;}
.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:#000;background:#fff;display:inline-block;padding:3px 10px;margin:1px 0;font-size:14px;font-weight:400;text-transform:uppercase;border:1px solid rgba(0,0,0,0.08);border-radius:0em}
.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}
/* Share Button */
.post-share{position:relative;display:flex;flex-wrap:nowrap;margin:10px 0 5px;padding:20px 40px;font-size:13px;line-height:22px;}
.post-share .hidden{display:none}
.post-share:before{display:none;content:attr(data-share);width:100%;margin-bottom:20px;font-size:14px}
.post-share .share-icon{flex-grow:1}
.post-share .share-icon:not(:first-child){margin-left:10px}
.post-share .share-icon > *{display:flex;align-items:center;padding: 10px;border-radius:0px;background-color:#f2f2f2;color:inherit}
.post-share .share-icon > a{padding:10px 15px;color:#fefefe}
.post-share .share-icon > a svg{fill:#fefefe}
.post-share .share-icon svg{width:20px;fill:var(--warna-teks-alternatif)}
.post-share .facebookThis a{background-color:#3059b0}
.post-share .facebookThis a:after{content:'Share on Facebook';margin-left:15px}
.post-share .twitterThis a{background-color:#55acef}
.post-share .twitterThis a:after{content:'Share on Twitter';margin-left:15px}
.post-share .whatsappThis a{background-color:#25D366}
.post-share .whatsappThis a:after{content:'Share on Whatsapp';margin-left:15px}
.post-share .shareThis{flex-grow:0}
.post-share .share-popup{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;z-index:50;-webkit-transition:all .2s ease;transition:all .2s ease;opacity:0;visibility:hidden}
.post-share .share-check:checked + .share-popup{opacity:1;visibility:visible}
.post-share .share-check:checked + .share-popup ul{margin:0 auto}
.post-share .share-check:checked + .share-popup .full-close{background:rgba(0,0,0,.25);opacity:1;visibility:visible}
.post-share ul{position:relative;display:flex;flex-wrap:wrap;width:95%;max-width:500px;list-style:none;margin:0 auto -50%;padding:20px 20px 15px;background-color:#fefefe;border-radius:20px;z-index:3;-webkit-transition:all .2s ease;transition:all .2s ease}
.post-share ul:before{content:'Bagikan artikel ini';display:block;width:100%;margin:0 0 15px;font-size:14px;text-align:center}
.post-share li{position:relative;width:calc(25% - 15px);margin-right:20px}
.post-share li:nth-of-type(4n){margin-right:0}
.post-share li > *{display:block;margin:8px 0;text-align:center;color:inherit;cursor:pointer}
.post-share li > * span{display:block;margin:5px 0 0;font-size:12px}
.post-share li > * svg{width:44px;height:44px;fill:var(--warna-teks-alternatif);padding:12px;background-color:#f2f2f2;border-radius:12px}
.post-share li > * svg.line{fill:none;stroke:var(--warna-teks-alternatif);padding:11px}
.post-share li input{margin:0;padding:0;outline:0;border:0;width:1px;height:0;opacity:0}
.post-share li.share-close{position:initial;width:100%;margin:0;z-index:2}
.post-share li.share-close > .close-1{visibility:hidden;margin-top:0}
.post-share li.share-close > .close-2{position:absolute;top:15px;right:15px;margin-top:0}
.post-share li.share-close > *{max-width:22px;margin:10px auto 0;}
.post-share li.share-close > * svg{display:block;width:22px;height:22px;padding:0;background:transparent}
/* Responsive */
@media screen and (max-width:970px){
#primarypix,#secondarypix{margin-top:10px;}
.banner,.banner2{margin:0px auto 20px auto;}
.post-outer {background-color:#fff;margin:0px 0px 20px 0px !important;padding:0px !important;}
.post-share {padding:0 20px;}
.post-share .twitterThis{display:none}
.post-share .facebookThis a:after{content:'Facebook'}
.post-share .whatsappThis a:after{content:'Whatsapp'}
.post-share .share-popup{align-items:flex-end;z-index:60}
.post-share .share-check:checked + .share-popup ul{margin:0 auto 20px}
.post-share li.share-close > .close-1{visibility:visible;margin-top:10px}
.post-share li.share-close > .close-2{display:none}
.item .post .author-profile-bottom {background:none;padding:20px;margin:0px}
.item .post .author-box {padding:30px;background:#eee;}
.item .post .author-profile-bottom .left{width:125px;}
.item .post .author-profile-bottom .left img{float:left;margin-right:10px;border-radius:50%}
.item .post .author-profile-bottom .right{width:100%;}
.comments-line{padding:0px 20px;}
#comments.comments {padding:0px 20px;}
.post-body {font-size:17.2px;line-height:29px;padding:0px 20px 30px 20px;}
.post-body img{width:100%;height:auto; margin:0px;}
.post-body h1 {font-size:140%;}
.post-body h2 {font-size:130%;}
.post-body h3 {font-size:120%;}
.post-body h4 {font-size:120%;}
.post-body h5 {font-size:100%;}
.post-body h6 {font-size:100%;}
.entry-title{font-size:150% !important;line-height:33px;padding:14px 20px;0px 20x;margin-bottom:0px;}
.breadcrumbs{padding:30px 20px 0px 20px;}
#related-posts{padding:0px 20px;}
.related li{width:100%;margin:0 0 10px 0}
}
@media screen and (max-width:640px){
#primarypix{float:center;width:100%;}
#secondarypix{float:center;width:100%;}
#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;}}
</b:if>
<b:if cond='data:blog.pageType != "index"'>
.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{margin:10px 0px;}
.post-body h1 {font-size:180%;}
.post-body h2 {font-size:160%;}
.post-body h3 {font-size:140%;}
.post-body h4 {font-size:120%;}
.post-body h5 {font-size:100%;}
.post-body h6 {font-size:100%;}
.hentry{line-height:1.7}
#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{display:none;margin:10px 0 0 0;text-decoration:none;text-transform:none;font-size:13px;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,.comment-form p{display:none}
/* Shortcode */
.sharethisbawah{display:none;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}
#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:#f1f1f1;color:#000;border-left:1px solid #000;margin:0;padding:2em;}
</b:if>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
.banner,.banner2{padding:0px 10px;}
.post {margin:10px 0;}
.entry-title{clear:none;font-size:150%;padding:30px 30px 0px 30px;}
h2 {margin-bottom:0.45715em}
#secondarypix{display:none;}
.snippets{padding:0px 30px;}
.author-info {display:noe;padding:0px 30px;}
.label-info a.label-block:nth-child(n+2),.showpageOf{display:none}
.author-profile li{display:block;font-size:16px;font-weight:300;color:#000;line-height:19px;}
.author-profile li a{text-decoration:none;font-weight:00;color:#000;}
.author-profile span.abbr{font-size:16px}
.author-profile img{float:left;border-radius:60%;width:46px; margin-right:10px;}
.author-profile{margin:5px 5px 0 0;overflow:hidden;padding:0 0 10px;border-bottom:0px solid #eee;margin-bottom:0px}
.author-info{float:left;width:100%}
/* Homepage Thumbnail Post */
.sitepix{margin:90px auto 50px auto;max-width:1240px;padding:0}
#primarypix{width:100%;float:center;background:none;margin:none;padding:none;}
.post-outer{height:660px;float:left;max-width:616px;background-color:#fff;margin:2px;}
.thumb-wrapper{display:inline-block;position:relative;float:center;width:100%;height:420px;padding:0;z-index:2;overflow:hidden}
.thumb-wrapper img{width:100%;height:400px;}
.rmlink {display:none;float:right;margin-top:10px;padding:0px 10px;}
.rmlink a {color:#ccc;background: #000;;float:right;padding:10px 10px;}
.rmlink a:hover {color:#fff;background:none;border:15px solid #000;}
/* Responsive */
@media screen and (max-width:768px){
#featured-posx-section{display:none}}
@media screen and (max-width:640px){
.sitepix{margin:60px auto 30px auto;}
#primarypix,#secondarypix{width:100%;float:none;margin-top:0px;}
.post .thumb-wrapper{width:100%;margin:0 auto 20px auto}
.post-outer{margin:10px 0px;padding:0px !important;}
.author-info {padding:0px 20px;}
.entry-title{font-size:140%;padding:20px 20px 0px 20px;}
.postmeta-primarypix{padding:0px 20px;}
.snippets{padding:0px 30px;}
.rmlink{padding:0px 20px;}
.banner,.banner2{padding:0px 0px;}
}
@media screen and (max-width:480px) {
.entry-title{clear:none;font-size:150%;}
}
@media screen and (max-width:640px){
.sosmed-author li {width:23%}}
</b:if></b:if>
<b:if cond='data:blog.pageType == "static_page"'>
#HTML99,#HTML99 .widget-content{border: 0 !important;margin: 0 !important;padding: 0 !important}
/* Responsive */
@media screen and (max-width: 768px){.blockLink > div{width: 100% !important;margin: 0 0 15px;text-align: center}.blockLink > div:last-child{margin: 0}}
.post-outer{background-color:#fff;margin:0px !important;padding:40px !important;}
#primarypix,#secondarypix{width:100%;float:none;}
#comments,#secondarypix,.comments-line,.comments-line-c{display:none;}
.breadcrumbs{display:none;}
/* Responsive */
@media screen and (max-width:768px){
.post-outer{background-color:#fff;padding:18px !important;}
}
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
#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}
</b:if>
<noscript>
/* 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:810px;text-transform:uppercase;font-weight:700}
.noscript p span{color:#ffe88b;font-size:10rem;line-height:normal;font-weight:normal}
</noscript>
</style>