-
Notifications
You must be signed in to change notification settings - Fork 125
/
niemstyleblog.xml
3357 lines (3297 loc) · 221 KB
/
niemstyleblog.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:defaultwidgetversion='2' b:layoutsVersion='3' b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<link href='https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=vietnamese' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/css?family=Lobster&subset=vietnamese' rel='stylesheet' type='text/css'/>
<head>
<link href='https://www.blogger.com/static/v1/widgets/2258130529-css_bundle_v2.css' rel='stylesheet' type='text/css'/>
<!-- 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='//www.blogger.com' rel='dns-prefetch'/>
<link href='//maxcdn.bootstrapcdn.com' rel='dns-prefetch'/>
<link href='//fonts.googleapis.com' rel='dns-prefetch'/>
<link href='//use.fontawesome.com' rel='dns-prefetch'/>
<link href='//ajax.googleapis.com' rel='dns-prefetch'/>
<link href='//resources.blogblog.com' rel='dns-prefetch'/>
<link href='//www.facebook.com' rel='dns-prefetch'/>
<link href='//plus.google.com' rel='dns-prefetch'/>
<link href='//twitter.com' rel='dns-prefetch'/>
<link href='//www.youtube.com' rel='dns-prefetch'/>
<link href='//feedburner.google.com' rel='dns-prefetch'/>
<link href='//www.pinterest.com' rel='dns-prefetch'/>
<link href='//www.linkedin.com' rel='dns-prefetch'/>
<link href='//feeds.feedburner.com' rel='dns-prefetch'/>
<link href='//github.com' rel='dns-prefetch'/>
<link href='//player.vimeo.com' rel='dns-prefetch'/>
<link href='//platform.twitter.com' rel='dns-prefetch'/>
<link href='//apis.google.com' rel='dns-prefetch'/>
<link href='//connect.facebook.net' rel='dns-prefetch'/>
<link href='//cdnjs.cloudflare.com' rel='dns-prefetch'/>
<link href='//www.google-analytics.com' rel='dns-prefetch'/>
<link href='//pagead2.googlesyndication.com' rel='dns-prefetch'/>
<link href='//googleads.g.doubleclick.net' rel='dns-prefetch'/>
<link href='//www.gstatic.com' rel='preconnect'/>
<link href='//www.googletagservices.com' rel='dns-prefetch'/>
<link href='//static.xx.fbcdn.net' rel='dns-prefetch'/>
<link href='//tpc.googlesyndication.com' rel='dns-prefetch'/>
<link href='//syndication.twitter.com' rel='dns-prefetch'/>
<!-- Chrome, Firefox OS, Opera and Vivaldi -->
<meta content='#006e78' name='theme-color'/>
<!-- Windows Phone -->
<meta content='#006e78' name='msapplication-navbutton-color'/>
<!-- iOS Safari -->
<meta content='black' name='apple-mobile-web-app-status-bar-style'/>
<!-- [ Meta Tag SEO ] -->
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta content='blogger' name='generator'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<link href='http://www.blogger.com/openid-server.g' rel='openid.server'/>
<link href='http://niemstyle.blogspot.com/' rel='openid.delegate'/>
<link href='http://niemstyle.blogspot.com/' rel='canonical'/>
<title>NIỆM STYLE BLOG</title>
<meta content='Chia sẻ Thủ thuật Blogspot - Ảnh Girl Xinh – Tin Tức Thú Vị - Download Hay.' name='description'/>
<script type='application/ld+json'>{ "@context": "http://schema.org", "@type": "WebSite", "url": "http://niemstyle.blogspot.com/", "potentialAction": { "@type": "SearchAction", "target": "http://niemstyle.blogspot.com/?q={search_term}", "query-input": "required name=search_term" } }</script>
<meta content='NIỆM STYLE BLOG, thủ thuật internet, thủ thuật blogger, thủ thuật facebook,…' name='keywords'/>
<link href='http://niemstyle.blogspot.com/feeds/posts/default' rel='alternate' title='NIỆM STYLE BLOG- Atom' type='application/atom+xml'/>
<link href='http://niemstyle.blogspot.com/feeds/posts/default?alt=rss' rel='alternate' title='NIỆM STYLE BLOG - RSS' type='application/rss+xml'/>
<link href='http://www.blogger.com/feeds/2231081798976481617/posts/default' rel='alternate' title='NIỆM STYLE BLOG - Atom' type='application/atom+xml'/>
<link href='http://niemstyle.blogspot.com/' hreflang='x-default' rel='alternate'/>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://plus.google.com/100323387662798562375/posts' rel='publisher'/>
<link href='https://plus.google.com/100323387662798562375/about' rel='author'/>
<link href='https://plus.google.com/100323387662798562375' rel='me'/>
<meta content='xxxxx' name='google-site-verification'/>
<meta content='xxxxx' name='msvalidate.01'/>
<meta content='xxxxx' name='alexaVerifyID'/>
<meta content='Vietnam' name='geo.placename'/>
<meta content='Phan Niệm' name='Author'/>
<meta content='general' name='rating'/>
<meta content='id' name='geo.country'/>
<!-- [ Social Media Meta Tag ] -->
<meta content='NIỆM STYLE BLOG' property='og:title'/>
<meta content='website' property='og:type'/>
<meta content='http://niemstyle.blogspot.com/' property='og:url'/>
<meta content='http://niemstyle.blogspot.com/favicon.ico' property='og:image'/>
<meta content=' Chia sẻ Thủ thuật Blogspot - Ảnh Girl Xinh – Tin Tức Thú Vị - Download Hay.' property='og:description'/>
<meta content='NIỆM STYLE BLOG' property='og:site_name'/>
<meta content='https://www.facebook.com/niemstyle.td' property='article:author'/>
<meta content='https://www.facebook.com/niemstyle.td' property='article:publisher'/>
<meta content='xxxxx' property='fb:app_id'/>
<meta content='hoachatsapa.vn' property='fb:admins'/>
<meta content='vi_VN' property='og:locale'/>
<meta content='vi_VN' property='og:locale:alternate'/>
<meta content='id_ID' property='og:locale:alternate'/>
<meta content='summary' name='twitter:card'/>
<meta content='NIỆM STYLE BLOG' name='twitter:title'/>
<meta content='niemstyle' name='twitter:site'/>
<meta content='niemstyle' name='twitter:creator'/>
<!--<style type='text/css'/>-->
<b:skin version='1.0.0'><![CDATA[
/*
Name : Niệm Style Blog
Designer : Phan Niệm
Designer url : niemstyle.blogspot.com
*/
/* CSS http://niemstyle.blogspot.com/ */
.widget-home img{float:left;clear:both;object-fit:cover;transition:.33s;margin:0 0 6px 0}
.widget-home img:hover{-webkit-filter:brightness(80%)}
.widget-home{margin:0;overflow:hidden}
.widget-home a{color:#555;text-decoration:none}
.widget-home a:hover{color:#66689c}
.widget-homewrap{padding:0;background:0;overflow:hidden}
.widgetsplitone{width:558px;padding:0;margin:0;overflow:hidden}
.widgetsplitone_left{width:52.5%;padding:0;margin:0;float:left;text-align:left;height:310px;position:relative}
.widgetsplitone_right{width:340px;padding:0;margin:0;float:right}
.featuredPost{margin:0 0 10px;height:80px;padding:0 10px;background:#fff;display:table}
.featuredPost img{margin-right:10px}
.featuredPost a{font-size:16px;font-weight:400;line-height:1.345;display:table-cell;vertical-align:middle;letter-spacing:-.15px}
h3.widget-home{font-size:18px;font-weight:400;text-transform:uppercase;color:#555;letter-spacing:.02352em;padding:0;display:block;text-align:left;background:#FFF}
h3.widget-home span {position:relative;padding: 10px 10px; display: table; background: #7577a9; color: #fff; float: left;}
h3.widget-home a{color: #fff; text-decoration: none; float: right; font-weight: 300; background: #7577a9; font-size: 14px; padding: 2px 15px; border-radius: 4px; margin:10px 10px 0 0}
h3.widget-home a:hover{color:#fff;background:#444}
h3.widget-home span:after{content:"";border-left:30px solid #7577a9;border-top:40px solid transparent;width:0;height:0;float:left;z-index:1;position:absolute;bottom:0;right:-30px}
h3.widget-home span:before{content:"";border-right:0 solid;border-left:40px solid #515498;border-top:50px solid transparent;width:0;height:0;float:left;z-index:1;position:absolute;bottom:0;right:-40px}
.contentstyle p{margin:0;color:#777;font-size:17px;display:none}
.widgetsplitone_left img{position:absolute;top:0;left:0}
h5.posttitle{margin:0;padding:0;float:left;text-align:center;bottom:0;left:0;background:#fff;width:100%;box-sizing:border-box;transition:.35s;position:absolute;height:80px}
h5.posttitle a{position:absolute;left:0;top:50%;transform:translate(0,-50%);color:#555;font:400 18px Roboto;letter-spacing:-.15px;line-height:1.5;display:block;width:100%;padding:0 15px;box-sizing:border-box;text-transform:uppercase}
h5.posttitle:hover{background: #7577a9!important}
h5.posttitle a:hover{color:#fff!important}
/* CSS Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
/* HTML5 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
body{line-height:1;display:block;}
*{margin:0;padding:0;}
html{display:block;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{display:none;}
table{border-collapse:collapse;border-spacing:0;}
*,*:before, *:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
ins{background:#fff;}
.post blockquote,.post code{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}
.post blockquote{background:#f3f3f3;margin:10px 0;text-align:left!important;padding:12px;transition:.3s;font:400 17px Monospace;letter-spacing:0;line-height:2;color:#666;max-height:300px;overflow:auto}
blockquote br{display:inherit!important;padding:0!important}
.post blockquote:hover::-webkit-scrollbar{width:5px}
.post blockquote::-webkit-scrollbar{width:0}
.post blockquote::-webkit-scrollbar-thumb{background:#ddd;border-radius:100px}
.post blockquote::-webkit-scrollbar-thumb:active{background:#bbb}
/* Popular Post Style */
#PopularPosts1 ul li a{display:block}
#PopularPosts1 ul{padding:10px 0}
#PopularPosts1:hover h2{background:#f94f4b;color:#fff}
.PopularPosts .item-thumbnail{margin:0}
.PopularPosts .widget-content ul{padding:0;margin-top:-7px}
.PopularPosts .item-title a{text-decoration:none;font-weight:400;font-size:17px;color:#555;line-height:1.4em;transition:all ease-in-out .1s;text-transform:uppercase}
.PopularPosts .item-title{position: absolute; margin: 0 0 0 130px; top: 50%; transform: translate(0,-50%);}
.PopularPosts .widget-content ul li:hover a,.PopularPosts .widget-content ul li a:hover{color:#7577a9}
.PopularPosts li:first-child .item-title {position: inherit; margin: 0;transform:none}
.PopularPosts li:first-child img{filter:brightness(30%)}
.PopularPosts li:first-child .item-title a {position:absolute;top:50%;transform:translate(0,-50%);padding:0 15px;color:#eee;text-align:center;box-sizing:border-box}
.PopularPosts li:first-child .item-title a:hover{color:#7577a9}
.PopularPosts li:first-child .item-snippet{position:absolute;top:0;opacity:0;visibility:hidden;width:85%;left:11px;color:#fff;background-color:rgba(172,22,172,.83);padding:10px;font-size:90%;line-height:normal;transition:.3s}
.PopularPosts li:hover:first-child .item-snippet{top:20%;opacity:1;visibility:visible}
.PopularPosts li:first-child img{width:100%;height:170px}
.PopularPosts img{width:120px;height:80px;object-fit:cover;border-radius:4px}
.PopularPosts img {padding:0!important}
.PopularPosts .widget-content ul li{list-style:none;margin:0 0 15px!important;padding:0;line-height:1.3em!important;position:relative}
.PopularPosts li .item-snippet{display:none}
.PopularPosts li .item-thumbnail{width:120px;height:80px;margin:0 10px 0 0;overflow:hidden;float:left}
.PopularPosts li:first-child .item-thumbnail{width:120px;height:80px;border-radius:4px;overflow:hidden;margin-bottom:10px}
.PopularPosts li:first-child .item-content{position:relative}
.PopularPosts li:first-child .item-thumbnail,.PopularPosts li:first-child .item-snippet{width:100%;height:160px;display:block}
.PopularPosts li:first-child .item-title a{font-size:20px;line-height:1.5;font-weight:300;text-transform:uppercase}
/* Layout */
body {background: #ddd;font-family:'Roboto',sans-serif;font-size:14px;font-weight:400;text-align:left;color:#000;margin:0;padding:0;}
.navbar,.post-feeds,.feed-links{display:none;}.section,.widget{margin:0;padding:0;}strong,b{font-weight:bold;padding:0;}cite,em,i{font-style:italic;}a:link,a:visited {color:#7577a9;text-decoration:none;transition:all .3s}a:hover,a:hover:visited {color:#000}a img{border:none;border-width:0;outline:none;}img{max-width:100%;vertical-align:middle;border:0;}abbr,acronym{border-bottom:1px dotted;cursor:help;}sup,sub{vertical-align:baseline;position:relative;top:-.4em;font-size:86%;}sub{top:.4em;}small{font-size:86%;}kbd{display:inline-block;font-size:90%;color:#7577a9;}mark{background-color:#ffce00;color:#182025;}p,blockquote,pre,table,figure,hr,form,ol,ul,dl{margin:0;}hr{height:1px;border:none;background-color:#999;}code,kbd,pre,samp{font-family:monospace,monospace;}
pre{white-space:pre;word-wrap:normal;overflow:auto;font-size:13px;margin:0;}*:focus {outline:0!important;}h1,h2,h3,h4,h5,h6{font-weight:500;line-height:normal;}h1{font-size:200%}h2{font-size:180%}h3{font-size:160%}h4{font-size:160%}h5{font-size:120%}h6{font-size:100%}
.post-body blockquote{border-radius: 5px;position:relative;background:#C5EFF7;border-left:none;padding:10px;color:#676767;font-weight:500;line-height:22px}
.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%}
.post-body h1 b,.post-body h2 b,.post-body h3 b,.post-body h4 b,.post-body h5 b,.post-body h6 b{font-weight:700;}
input,button,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline;}
textarea{display:block;box-sizing:border-box;}
input.placeholder_text,textarea.placeholder_text{color:#888}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder,input:-moz-placeholder,textarea:-moz-placeholder,input.placeholder_text,textarea.placeholder_text{color:#444}[placeholder]:focus::-webkit-input-placeholder{transition:opacity .5s .5s ease;opacity:0}
.post ul li span{position:relative;display:block;padding:0;margin:.5em 0 .5em 2em;text-decoration:none;}
ol {counter-reset:li;list-style:none;padding:0;margin:0;}
ol ol {margin: 0 0 0 2em;}
.post ol li{position:relative;display:block;padding:0;margin:.5em 0 .5em 2em;background:#fff;text-decoration:none;}
.post ol li:before {content:counter(li);counter-increment:li;position:absolute;left:-2.5em;height:2em;width:2em;text-align:center;}
.post-body ul {position:relative;display:block;padding:0;margin:.5em 0 .5em 1.5em;text-decoration:none;}
@media screen and (max-width:736px){/* Responsive related post */#related-title{font-size:17px!important;text-align:left!important;white-space:normal!important;overflow:inherit!important;word-wrap:inherit!important;width:100%!important}#related-posts .related_img{border-radius:4px!important;margin:0 10px 0 0!important;width:130px!important;height:80px!important;float:left;display:inherit!important}#related-posts a{padding:10px 10px 0!important;box-sizing:border-box;width:100%!important;float:left!important}#related-posts{padding:0 0 10px}h5.posttitle{float:left;padding:5px 10px;text-align:center;line-height:1.4;letter-spacing:-.65px!important}.widgetsplitone_left{padding:0!important}.featuredPost a{letter-spacing:-.35px}h3.widget-home{text-align:center}}
/* Post Table */
.post-body table {width:100%;}
.post-body table td,.post-body table caption{background:#fff;border:1px solid rgba(0,0,0,0.05);padding:10px;text-align:left;vertical-align:top}
.post-body table th{background:#e74c3c;color:#fff;border:1px solid rgba(0,0,0,0.05);border-bottom:0;padding:10px;text-align:left;vertical-align:top}
.post-body table.tr-caption-container {border:1px solid rgba(0,0,0,0.14);margin:0;}
.post-body th{font-weight:700;}
.post-body table caption{border:none;font-style:italic;}
.post-body td, .post-body th{vertical-align:top;text-align:left;font-size:13px;padding:3px 5px;border:1px solid #97b28e;}
.post-body th{}
.post-body th:hover{color:#fff;}
.post-body td a{color:#444;}
.post-body td a:hover{color:#cf4d35;}
.post-body table.tr-caption-container td{border:0;padding:8px;background:#fff;line-height:17px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;font-weight:700;color:#000;}
.post-body table.tr-caption-container, .post-body table.tr-caption-container img, .post-body img {max-width:100%;height:auto;}
.post-body li {list-style-type:square;}
.post-body td.tr-caption {color:#666;font-size:80%;padding:0px 8px 8px!important;}
.sr {visibility:hidden;width:0;height:0;}
.clear{clear:both}
html {-webkit-font-smoothing:antialiased;}
::selection {background:#222;color:#fff;text-shadow:none;}
.post-body ::selection {background:#222;color:#fff;}
::-webkit-scrollbar {width: 5px; height:8px;}
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);background:#fff;}
::-webkit-scrollbar-thumb {background: #7577a9;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);}
::-webkit-scrollbar-thumb:window-inactive {background: #7577a9;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);}
<!-- hiệu ứng ảnh -->
.btn{list-style:none;text-align:center;margin:10px!important;padding:10px!important;font-size:14px;clear:both;display:inline-block;text-decoration:none!important;color:#FFF!important}
.btn ul {margin:0;padding:0}
.btn li{display:inline;margin:5px;padding:0;list-style:none;}
.demo,.download{padding:12px 15px!important;color:#fff!important;font-weight:700;font-size:14px;font-family:Open Sans,sans-serif;text-align:center;text-transform:uppercase;border-radius:3px;opacity:.95;border:0;letter-spacing:2px;transition:all .2s ease-out}
.demo {background-color:#3498DB;}
.download {background-color:#1ABC84;}
.demo:hover {background-color:#60B8F4;color:#fff;border-bottom:2px solid #3498DB; opacity:1;}
.download:hover {background-color:#49DDAA;color:#fff;border-bottom:2px solid #1ABC84;opacity:1;}
.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;}
.alert-message{position:relative;display:block;padding:15px}
.alert-message p{margin:0!important;padding:0;line-height:22px;font-size:13px;color:#2f3239}
.alert-message span{font-size:14px!important}
.alert-message i{font-size:16px;line-height:20px}
.alert-message.success{background-color:#7577a9;border-color:#7577a9;color:#ffffff;font-size:15px}
.alert-message.success a,.alert-message.success span{color:#ffffff}
.alert-message.alert{background-color:#DAEFFF;border-color:#8ED2FF;color:#378FFF}
.alert-message.alert a,.alert-message.alert span{color:#378FFF}
.alert-message.warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}
.alert-message.warning a,.alert-message.warning span{color:#8a6d3b}
.alert-message.error{background-color:#FFD7D2;border-color:#FF9494;color:#F55D5D}
.alert-message.error a,.alert-message.error span{color:#F55D5D}
.comment_emo_list{padding:0;margin:10px 0 10px;clear:both;float:left}.comment_emo_list .item{float:left;text-align:center;height:55px;width:55px;margin:0;padding:10px 0 15px}.comment_emo_list .item:hover{background:#eee}.comment_emo_list .item:hover{color:#66689c}.comment_emo_list span{display:block;font-weight:500;font-size:14px;letter-spacing:0;color:#c7c7c7;transition:.33s}img.comment_emo{width:23px;height:23px;pointer-events:none;-webkit-user-select:none}.comment-replybox-single .item,.comment-replybox-thread .item{width:53px}.comment_emo_list span{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;-o-user-select:all;}
.authorboxwrap {
Font-family: arial;
background: #fff;
padding: 2px;
overflow: hidden
}
.avatar-container {
float: left;
margin-right: 20px;
border: 0px solid silver;
padding: 3px;
}
.authorsocial a {
display: inline-block;
text-align: center;
margin-right: 10px;
}
a, a:visited {
text-decoration: none;
font-weight: 200;
}
a {
color: #10b2f5;
}
.fb_iframe_widget {
display: inline-block;
position: relative;
}
.author_description_container h4 {
font-family: arial;
font-weight: 700;
font-size: 16px;
display: block;
margin: 0;
margin-bottom: 2px;
}
.author_description_container h4 a {
color: #ef4824;
}
a,a:visited{text-decoration:none;font-weight:400}
.author_description_container p{margin:0 0 8px;color:#888;font-size:95%;font-family:arial}
.authorsocial a i{font-family:Fontawesome;width:30px;height:30px;line-height:20px;padding:5px;display:block;opacity:1;border-radius:100%;transition:all .3s}
#HTML2:before{content:"\f05a";font-family:FontAwesome;float:left;padding-right:5px;font-size:24px;line-height:24px;color:#7577a9}
#HTML4:before{content:"\f27a";font-family:FontAwesome;float:left;padding-right:5px;font-size:24px;line-height:24px;color:#7577a9}
#HTML7:before{content:"\f0c0";font-family:FontAwesome;float:left;padding-right:5px;font-size:19px;color:#7577a9}
.comments .deleted-comment:after{content:" Vui lòng xem lại nội quy bình luận tại: http://niemstyle.blogspot.com/p/noi-quy-binh-luan.html"}
.comments .deleted-comment:before{content:"\f00d";font-family:fontawesome;margin:0 6px 0 0}
.tuan-tinh{position:relative;display:block;padding:10px}
.tuan-tinh p{margin:0!important;padding:0;line-height:22px;font-size:13px;color:#2f3239}
.tuan-tinh span{font-size:14px!important}
.tuan-tinh i{font-size:16px;line-height:20px}
.tuan-tinh.tinh{color:#222;font-size:17px;border-top:1px solid rgba(0,0,0,0.14)}
.tuan-tinh.tinh a,.tuan-tinh.successtinh span{color:#222}
.tuan-tinh.alert{background-color:#DAEFFF;border-color:#8ED2FF;color:#378FFF}
.tuan-tinh.alert a,.tuan-tinh.alert span{color:#378FFF}
.tuan-tinh.warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}
.tuan-tinh.warning a,.alert-message.warning span{color:#8a6d3b}
.tuan-tinh.error{background-color:#FFD7D2;border-color:#FF9494;color:#F55D5D}
.tuan-tinh.error a,.tuan-tinh.error span{color:#F55D5D}
]]></b:skin>
<b:template-skin><![CDATA[
/* Body Layout */
body#layout{width:1080px}
body#layout div.section{padding:10px;margin:5px}
body#layout ul,#layout ul{display:none;}
body#layout,#layout .widget-content{border:none;}
body#layout .add_widget {background-color:#999;border:none}
body#layout .add_widget a {color:#fff;}
body#layout .draggable-widget .widget-wrap2 {background:#999;}
body#layout #outer-wrapper, body#layout .post-inner, body#layout .sidebar,body#layout #wrapper, body#layout .post-inner, body#layout .sidebar-inner {padding:0;}
body#layout .header-wrapper {margin-top:0;}
body#layout #header {min-height:0px;width:100%;margin:0}
body#layout #header-left {width:30%;float:left;margin:5;padding:10px}
body#layout #main-wrapper{width:70%;float:left}
body#layout #sidebar-wrapper{width:30%;left:0;padding:0;float:right}
body#layout #footer-wrapper .footer-widget{width:25%;float:left}
body#layout #footer-wrapper #column1,#layout #footer-wrapper #column2{margin:0}
]]></b:template-skin>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='responsiveImage' var='settings'>
<b:comment>Add in the high-res thumb for youtube images.</b:comment>
<b:if cond='not data:settings.image.isYoutube'>
<b:include data='settings' name='super.responsiveImage'/>
<b:else/>
<b:with value='resizeImage(data:post.featuredImage.youtubeMaxResDefaultUrl, 1152, "4:3")' var='highRes'>
<b:include data='{ image: data:settings.image, imageSizes: [320,490], sourceSizes: "(max-width: 640px) 100vw, (max-width: 1024px) 576px, 490px", enhancedSourceset: data:highRes }' name='super.responsiveImage'/>
</b:with>
</b:if>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='BlogSearch'>
<b:includable id='searchSubmit'>
<b:if cond='data:widget.sectionId == "search_top"'>
<label>
<input type='submit'/>
<b:include data='{ iconClass: "touch-icon search-icon" }' name='searchIcon'/>
</label>
<b:else/>
<b:include name='super.searchSubmit'/>
</b:if>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='AdSense,Blog'>
<b:includable id='defaultAdUnit'>
<!-- Clear out style (need non-empty string) -->
<b:with value='"/* Done in css. */"' var='style'>
<b:include name='super.defaultAdUnit'/>
</b:with>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Blog,FeaturedPost,PopularPosts'>
<b:includable id='sharingButtonContent'>
<b:message name='messages.share'/>
</b:includable>
<b:includable id='postLabels'>
<b:include cond='data:view.isSingleItem and data:widget.type == "Blog"' name='super.postLabels'/>
</b:includable>
<b:includable id='headerByline'>
<b:if cond='data:view.isSingleItem and data:widget.type == "Blog"'>
<b:include name='super.headerByline'/>
<b:else/>
<b:include data='{ items: ["author", "timestamp"] }' name='headerBylineOverride'/>
</b:if>
</b:includable>
<b:includable id='footerBylines'>
<b:if cond='data:view.isSingleItem and data:widget.type == "Blog"'>
<b:include name='super.footerBylines'/>
<b:else/>
<b:include data='{ items: [["share", "comments"]] }' name='footerBylinesOverride'/>
</b:if>
</b:includable>
<b:includable id='emailPostIcon'>
<!-- Replace icon with text -->
<span class='byline'>
<a class='flat-button' expr:href='data:post.emailPostUrl'><data:messages.emailPost/></a>
</span>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Blog'>
<b:includable id='main'>
<b:if cond='not data:posts.any'>
<div class='no-posts'>
<b:eval expr='data:view.isSearch ? data:messages.noResultsFound : data:messages.theresNothingHere'/>
</div>
</b:if>
<!-- Display title on homepage -->
<b:if cond='data:posts.any and data:view.isHomepage'>
<h3 class='title'><data:messages.latestPosts/></h3>
</b:if>
<!-- Filter out the featured post, but only on the homepage. -->
<b:with value='(data:widgets.FeaturedPost filter w => w.sectionId == "page_body") map (w => w.postId)' var='featuredPostIds'>
<b:with value='data:view.isHomepage ? data:posts filter (post => post.id not in data:featuredPostIds) : data:posts' var='posts'>
<b:include name='super.main'/>
</b:with>
</b:with>
</b:includable>
<b:includable id='commentFormIframeSrc' var='post'>
<b:with value='data:template.isAlternateRendering ? ("&skinvariant=" + data:template.variant) : ""' var='variantParam'>
<a expr:href='data:post.commentFormIframeSrc + "&skin=soho" + data:variantParam' id='comment-editor-src'/>
</b:with>
</b:includable>
<b:includable id='commentForm' var='post'>
<b:with value='"90px"' var='cmtIframeInitialHeight'>
<b:include data='post' name='super.commentForm'/>
</b:with>
</b:includable>
<b:includable id='threadedCommentForm' var='post'>
<b:with value='"90px"' var='cmtIframeInitialHeight'>
<b:include data='post' name='super.threadedCommentForm'/>
</b:with>
</b:includable>
<b:includable id='postCommentsAndAd' var='post'>
<!-- Always render inline ad inside container -->
<div class='post-outer-container'>
<div class='post-outer'>
<b:include data='post' name='post'/>
</div>
<b:include cond='data:view.isSingleItem' data='post' name='commentPicker'/>
<b:include cond='data:post.includeAd and data:post.adNumber lt (data:view.isHomepage ? 2 : 3)' data='post' name='inlineAd'/>
</div>
</b:includable>
<b:includable id='post' var='post'>
<b:if cond='data:view.isSingleItem'>
<div class='post-sidebar'>
<b:if cond='data:widgets.Blog.first.allBylineItems.share and data:post.shareUrl'>
<div class='post-sidebar-item post-share-buttons'>
<b:with value='data:widget.instanceId + "-" + (data:regionName ?: "byline") + "-" + data:post.id' var='sharingId'>
<b:include data='{ sharingId: data:sharingId, originalUrl: data:post.url, shareUrl: data:post.shareUrl, platforms: data:blog.sharing.platforms, }' name='sharingButtons'/>
</b:with>
</div>
</b:if>
<b:if cond='data:widgets.Blog.first.allBylineItems.labels and data:post.labels'>
<div class='post-sidebar-item post-sidebar-labels'>
<div><data:messages.labels/></div>
<ul>
<b:loop index='i' values='data:post.labels' var='label'>
<li><a expr:href='data:label.url + "?&max-results=10"' rel='tag'><data:label.name/></a></li>
</b:loop>
</ul>
</div>
</b:if>
</div>
</b:if>
<div class='post'>
<b:class cond='data:view.isMultipleItems and data:post.featuredImage' name='has-featured-image'/>
<b:class cond='data:view.isMultipleItems and not data:post.featuredImage' name='no-featured-image'/>
<b:include data='post' name='postMeta'/>
<b:if cond='data:view.isSingleItem'>
<b:include name='headerByline'/>
<b:include data='post' name='postTitle'/>
<div class='post-body-container'>
<b:include data='post' name='postBody'/>
</div>
<b:else/>
<b:if cond='data:post.featuredImage'>
<div class='snippet-thumbnail'>
<a b:whitespace='remove' expr:href='data:post.url'>
<b:comment>Max width is 576, so max size @ 2x is 1152.</b:comment>
<b:include data='{ image: data:post.featuredImage, imageSizes: [320,490,576,1152], sourceSizes: "(max-width: 576px) 100vw, (max-width: 1024px) 576px, 490px" }' name='responsiveImage'/>
</a>
<b:include name='headerByline'/>
</div>
<b:else/>
<b:include name='headerByline'/>
</b:if>
<b:include data='post' name='postTitle'/>
</b:if>
<b:include data='post' name='postFooter'/>
</div>
</b:includable>
<b:includable id='feedLinks'>
<!-- Don't render -->
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='BlogArchive'>
<b:includable id='main' var='this'>
<details class='collapsible extendable'>
<b:attr cond='data:view.isArchive' name='open' value='open'/>
<b:with value='true' var='renderAsDetails'>
<b:with value='data:messages.archive' var='defaultTitle'>
<b:include name='super.main'/>
</b:with>
</b:with>
</details>
</b:includable>
<b:includable id='flat'>
<b:include data='{ buttonClass: "flat-button", items: data:this.data, itemSet: "data", itemsMarkup: "super.flat" }' name='extendableItems'/>
</b:includable>
<b:includable id='hierarchy'>
<b:include data='{ buttonClass: "flat-button", limit: 1, items: data:this.data, itemSet: "data", itemsMarkup: "super.hierarchy" }' name='extendableItems'/>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='FeaturedPost'>
<b:includable id='main'>
<b:with value='data:messages.featured' var='defaultTitle'>
<b:include name='super.main'/>
</b:with>
</b:includable>
<b:includable id='snippetedPostContent'>
<b:with value='data:postDisplay.showFeaturedImage and data:post.featuredImage' var='hasImage'>
<div class='post-content'>
<b:class cond='data:hasImage' name='has-featured-image'/>
<b:class cond='not data:hasImage' name='no-featured-image'/>
<!-- Change the order and add a snippet container -->
<b:include cond='data:hasImage' data='post' name='snippetedPostThumbnail'/>
<div class='post-text-container'>
<b:include name='headerByline'/>
<b:include cond='data:this.postDisplay.showTitle' name='snippetedPostTitle'/>
<b:with value='"featured-post"' var='snippetPrefix'>
<b:include cond='data:this.postDisplay.showSnippet' data='post' name='postSnippet'/>
</b:with>
<div class='post-footer'>
<b:include name='footerBylines'/>
<!-- TODO(sarnesjo): Use the postJumpLink call (in case it's been customized). -->
<a class='jump-link flat-button' expr:href='data:post.url'><data:messages.readMore/></a>
</div>
</div>
</div>
</b:with>
</b:includable>
<b:includable id='snippetedPostByline' var='post'>
<b:include name='headerByline'/>
</b:includable>
<b:includable id='snippetedPostThumbnail'>
<b:include data='{image: data:featuredImage, maxSize: 954, selector: ".hero-thumb"}' name='responsiveImageStyle'/>
<a class='thumb-link' expr:href='data:post.url'><div class='thumb hero-thumb'/></a>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Header'>
<b:includable id='image'>
<b:include name='super.image'/>
<!-- If we are replacing the title, force it to render anyway, and it'll be hidden in CSS. -->
<b:include cond='data:this.imagePlacement == "REPLACE"' name='title'/>
</b:includable>
<b:includable id='title'>
<div>
<b:class cond='data:this.imagePlacement == "REPLACE"' name='replaced'/>
<b:include name='super.title'/>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Label'>
<b:includable id='main' var='this'>
<details class='collapsible extendable'>
<b:attr cond='data:view.isLabelSearch' name='open' value='open'/>
<b:with value='true' var='renderAsDetails'>
<b:with value='data:messages.labels' var='defaultTitle'>
<b:include name='super.main'/>
</b:with>
</b:with>
</details>
</b:includable>
<b:includable id='list'>
<b:include data='{ buttonClass: "flat-button", items: data:this.labels, itemSet: "labels", itemsMarkup: "super.list" }' name='extendableItems'/>
</b:includable>
<b:includable id='cloud'>
<b:include data='{ buttonClass: "flat-button", items: data:this.labels, itemSet: "labels", itemsMarkup: "super.cloud" }' name='extendableItems'/>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='PageList'>
<b:includable id='content'>
<div class='widget-content'>
<b:if cond='data:widget.sectionId == "page_list_top"'>
<b:include name='overflowablePageList'/>
<b:else/>
<b:include name='pageList'/>
</b:if>
</div>
</b:includable>
<b:includable id='overflowButton'>
<a><data:messages.moreEllipsis/></a>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='PopularPosts'>
<b:includable id='main'>
<!-- Default the title to 'Popular posts'. -->
<b:with value='data:messages.popularPosts' var='defaultTitle'>
<b:include name='super.main'/>
</b:with>
</b:includable>
<b:includable id='snippetedPostContent'>
<div class='post'>
<b:class cond='data:post.featuredImage' name='has-featured-image'/>
<b:class cond='not data:post.featuredImage' name='no-featured-image'/>
<b:if cond='data:post.featuredImage'>
<div class='snippet-thumbnail'>
<a b:whitespace='remove' expr:href='data:post.url'>
<b:include data='{ image: data:post.featuredImage, imageSizes: [330,660,1320], sourceSizes: "(max-width: 660px) 100vw, 660px" }' name='responsiveImage'/>
</a>
<b:include name='headerByline'/>
</div>
<b:else/>
<b:include name='headerByline'/>
</b:if>
<b:include cond='data:this.postDisplay.showTitle' name='snippetedPostTitle'/>
<div class='post-footer'>
<b:include name='footerBylines'/>
</div>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Profile'>
<b:includable id='main' var='this'>
<!-- Remove widget title -->
<b:include name='content'/>
</b:includable>
<b:includable id='teamProfileLink'>
<!-- Remove background image, add "Visit profile" message -->
<a class='profile-link g-profile' expr:href='data:userUrl'>
<b:include name='profileImage'/>
<div class='profile-name-wrapper'>
<div class='profile-name'><data:display-name/></div>
<div class='visit-profile'><data:messages.visitProfile/></div>
</div>
</a>
</b:includable>
<b:includable id='userProfileLink'>
<!-- Remove background image -->
<a class='profile-link g-profile' expr:href='data:userUrl' rel='author'>
<data:displayname/>
</a>
</b:includable>
<b:includable id='viewProfileLink'>
<!-- Change message to "Visit profile" -->
<a class='profile-link' expr:href='data:userUrl' rel='author'>
<data:messages.visitProfile/>
</a>
</b:includable>
<b:includable id='defaultProfileImage'>
<div class='default-avatar-wrapper'>
<b:include data='{ iconClass: "avatar-icon" }' name='defaultAvatarIcon'/>
</div>
</b:includable>
</b:defaultmarkup>
</b:defaultmarkups>
<style type='text/css'>
/* Custom Cookies Info Dark */
.cookie-choices-info{background-color:rgba(56,66,75,.97)!important;line-height:normal!important;top:initial!important;bottom:0!important;font-family:inherit!important;-webkit-transform:translateZ(0);}
.cookie-choices-info .cookie-choices-text{font-size:14px!important;color:#cee6ea!important}
.cookie-choices-info .cookie-choices-button{font-weight:normal!important;color:#fff!important;margin-left:5px!important;padding:3px 6px!important;background:#f64c3b!important;letter-spacing:.8px;transition:all .4s linear}
.cookie-choices-info .cookie-choices-button:nth-child(2){background:#f68c2e!important;transition:all .4s linear}
.cookie-choices-info .cookie-choices-button:hover,.cookie-choices-info .cookie-choices-button:nth-child(2):hover{background:#282f36!important;transition:all .1s linear}
/* Arlina Fixed Layout */
.CSS_LIGHTBOX {z-index:999999!important;}
.CSS_LIGHTBOX_BG_MASK_TRANSPARENT {opacity:.95!important;}
.CSS_LIGHTBOX_SCALED_IMAGE_IMG {width:auto!important;max-width:100%;box-shadow:0 0 10px rgba(0,0,0,0.1);}
.CSS_LIGHTBOX_BTN_CLOSE {background: url('https://4.bp.blogspot.com/-cmZSAe4hgWI/V0K-3C5xiHI/AAAAAAAAG90/2btatUgRsM4qf8HIc7QweuToTkRqRNeuACLcB/s1600/delete.png') no-repeat!important;width:32px!important;height:32px!important;top:30px!important;opacity:0.7;transition:all .3s;}
.CSS_LIGHTBOX_BTN_CLOSE:hover{opacity:1;}
.CSS_LIGHTBOX_BTN_CLOSE_POS {right:10px!important;}
.CSS_LIGHTBOX_BG_MASK{background-color:rgba(0,0,0,0.8)!important}
.CSS_LIGHTBOX_FILMSTRIP{background-color:rgba(0,0,0,0.5)!important}
.quickedit,#ContactForm1,#ContactForm1 br {display:none}
.post,.widget-content,.breadcrumbs,.banner .widget,#blog-pager,#comments{}
.banner .widget-content,#LinkList215 .widget-content{padding:0!important;margin:0}
#BlogArchive1 li.archivedate {padding:0;}
#BlogArchive1 #ArchiveList ul.posts li {padding:0 0 0 22px;line-height:normal;}
#ArchiveList{padding:10px}
#ArchiveList select{width:100%;padding:10px;margin-bottom:5px;border:1px solid rgba(201,201,201,0.52);font-size:13px;font-family:'Roboto',sans-serif}
/* Arlina Template Wrapper */
.maxwrap {max-width:1200px;margin:0 auto;}
#wrapper{display:block;position:relative;overflow:hidden;max-width:1200px;margin:0 auto;padding:0;}
#content-wrapper {background: #ddd;display:block;position:relative;overflow:hidden;padding:0;margin:60px auto 0px auto;}
/* Arlina Header Wrapper */
#header{background:linear-gradient(120deg,#7577a9,#515498);display:block;margin:0 auto;padding: 0;word-wrap:break-word;width:100%;position:fixed;z-index:99;height:50px;line-height:50px;-webkit-transform:translateZ(0);transform:translateZ(0)}
#header .title{font-size:220%;margin:5px 0 0 0;padding:0;display:inline-block;width:100%;font-weight:600}
#header .title a{color:#fff;}
#header .title a:hover {color:#fff;}
#header p.description{display:none;font-size:90%;margin:5px 0 0 0;line-height:normal;font-weight:600}
.header img {display:block;height:auto;}
#header-left {float:left;margin:0 10px 0 10px;}
/* Arlina Main Navigation */
#menu-pc{font-size:0;padding:7px 0;margin:0 auto;float:left}
#menu-pc ul.menus{height:auto;overflow:hidden;position:absolute;z-index:99;display:none}
#menu-pc a{display:block;height:36px;line-height:36px;color:#fff;font-size:15px;font-weight:700;overflow:hidden;padding:0 10px;margin-right:5px;text-transform:uppercase;border-radius: 6px;}
#menu-pc ul > li a i {color:#fff}
#menu-pc ul{margin:0 auto;padding:0;float:left}
#menu-pc ul li{position:relative;margin:0;list-style:none}
#menu-pc ul > li {float:left;}
#menu-pc input {display:none;margin:0;padding:0;width:80px;height:45px;opacity:0;cursor:pointer}
#menu-pc label {display:none;width:55px;height:48px;line-height:48px;text-align:center}
#menu-pc label span {font-size:16px;position:absolute;left:55px}
#menu-pc ul.menus li {display:block;width:100%;text-transform:none;text-shadow:none;}
#menu-pc ul.menus a {color:#ee9622;line-height:55px}
#menu-pc li a:hover,#menu-pc ul.menus a:hover,#menu-pc li a:active,#menu-pc ul.menus a:active{background:rgba(0,0,0,.2);color:#fff}
#menu-pc li ul{display:none;background:#2f4154;border-top:6px solid #018768;margin:0;height:auto;position:absolute;top:99%;left:0;z-index:12;box-shadow:1px 2px 5px rgba(0,0,0,0.1);}
#menu-pc li:hover ul.menus,#menu-pc li:hover > ul{display:block;}
#menu-pc li:hover ul.menus,#menu-pc li:hover > ul{visibility:visible;opacity:1;}
#menu-pc li li{display:block;float:none;font-size:13px;height:auto;clear:both;margin-left:0;line-height:36px;border-bottom:1px solid rgba(0,0,0,0.05)}
#menu-pc li li:last-child {border:0;}
#menu-pc li ul ul {left:100%;top:0}
#menu-pc li li > a{background:#2f4154;color:#fff;display:block;margin:0;text-decoration:none;text-transform:none;min-width:190px;height:36px;line-height:36px;padding:0 10px;font-size:14px;border-radius:0;margin-top:0;transition:initial;}
#menu-pc li li a:hover{background:rgba(0,0,0,.2);color:#fff;}
/* Arlina search form */
#search-form{float:right;margin:0;padding:0;overflow:hidden;width:226px}
#search-form table{width:100%;margin:0;position:relative;height:36px}
#search-form td.search-box{color:#fff!important}
#search-form input#search-box[type="text"]{background:rgba(0,0,0,.2);height:36px;line-height:35px;margin:0;padding:0 10px;width:100%;border:0;color:#eee!important;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;border-radius: 5px;}
#search-form input#search-box[type="text"]:hover{border-color:rgba(0,0,0,.34);}
#search-form input#search-box[type="text"]:focus{outline:none;color:#fff!important;}
#search-form input#search-button[type="submit"]{cursor:pointer;font-family:FontAwesome;font-size:18px;background:transparent;color:#fff;height:45px;line-height:40px;margin:0;padding:0 15px;border:none;outline:none;font-weight:normal!important;transition:all 0.25s;position:absolute;right:0;top:0;z-index:2}
#search-form input#search-button[type="submit"]:hover,#search-form input#search-button[type="submit"]:active{color:#fff;}
/* Arlina Post Wrapper */
#main-wrapper{width:70%;float:left;margin:0 0 10px 0;padding:0;word-wrap:break-word;}
.main .Blog{border-bottom-width:0}
.main .widget{margin:0;padding:0}
.date-header{display:none!important}
h1.post-title.entry-title,h2.post-title.entry-title {font-size:18px;margin:0 0 15px;}
h1.post-title.entry-title a,h2.post-title.entry-title a{color:#222;text-transform:uppercase;font-weight:600}
h1.post-title.entry-title a:hover,h2.post-title.entry-title a:hover{color:#2ABB9B;}
.post{background:#fff;position:relative;margin:0;padding:0}
.post-body {margin:0;line-height:1.7em;text-align:left;font-size:16px;padding:10px;font-weight:500}
.post-info abbr {border:0;}
.post-timestamp,.author-info,.comment-info,.label-info{padding:0 10px 0 0}
.post-body img,.post-body video,.post-body object {background:#fafafa;max-width:100%}
.breadcrumbs{background:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:14px;padding:10px 10px;margin-bottom:10px;font-weight:500;}
.breadcrumbs a{color:#333;margin:0 2px;line-height:normal;font-weight:500}
.breadcrumbs .breadhome a{margin:0 5px 0 0}
.breadcrumbs .breadlabel:last-child{margin:0 0 0 4px;color:#333}
.breadcrumbs a:hover{color:#2ABB9B;}
.post-footer{line-height:1.6em}
.post-footer a{color:#7577a9}
.feed-links{clear:both;line-height:2.5em;}
/* Arlina Sidebar Wrapper */
#sidebar-wrapper{padding:0px;width:29%;float:right;word-wrap:break-word;overflow:hidden;margin-bottom:10px}
#sidebar-wrapper h2,#sidebar-wrapper h3,#sidebar-wrapper h4{background:#7577a9;color:#fff;position:relative;overflow:hidden;margin:0;font-size:18px;vertical-align:middle;padding:10px;border-bottom:1px solid rgba(0,0,0,.1);}
#sidebar-wrapper h2 span,#sidebar-wrapper h3 span,#sidebar-wrapper h4 span{display:inline-block;vertical-align:middle}
#sidebar-wrapper .widget ul{margin:0;padding:0}
.widget-content{background:#fff;padding:10px 10px 0px 10px;margin:10px 0;overflow:hidden}
.sidebar{line-height:1.5em;padding:0px}
.sidebar ul{padding:0;margin:0}
.BlogArchive #ArchiveList ul li {text-indent:0!important}
.sidebar ul li{margin:0;padding:10px}
.sidebar .widget{margin:0;}
/* CSS Post Home */
#mainpost{display:none;visibility:hidden}
.tabs{background:#fff;width:100%;max-width:100%;float:none;list-style:none;padding:0;margin:auto;display:table;overflow:hidden}
.tabs-st{background:#ddd;display:block;height:45px}
.tabs:after{content:'';display:table;clear:both}
.tabs input[type=radio]{display:none}
.tabs label{display:table-cell;float:left;width:25%;color:#ddd;font-size:19px;font-weight:400;text-align:center;cursor:pointer;transition:all .3s;height:45px;line-height:45px;text-transform:uppercase;margin-right:10px;background:#7577a9}
.more-tabs{width:21.4%;float:right;height:45px;margin:-45px 0 0;line-height:45px;font-size:25px;text-align:center;background:#fff}
.more-tabs a{color:#222}
.more-tabs a:hover{color:#00765b}
.tabs label span{display:inline-block}
.tabs label i{display:none;height:45px;line-height:45px}
.tabs label:hover{color:#fff}
.tab-content{display:none;width:100%;float:left}
.tab-content *{-webkit-animation:showx .5s ease-in-out;-moz-animation:showx .5s ease-in-out;animation:showx .5s ease-in-out}
.tabs [id^="tab"]:checked + label{color:#fff;background:#305fa2}
#tab1:checked ~ #tab-content1,#tab2:checked ~ #tab-content2,#tab3:checked ~ #tab-content3{display:block;background:#ddd}
.title-post0,.title-post1{font-size:18px;padding:10px;font-weight:400;text-transform:uppercase;text-align:left;color:#fff;line-height:normal;margin:0}
.title-post1{background:#337ab7}
.title-post0{background:rgb(250, 73, 73)}
.title-post2,.title-post1, .title-post3, .title-post4{font-size:18px;padding:10px;font-weight:400;text-transform:uppercase;text-align:left;color:#fff;line-height:normal;margin:0}
.title-post2{background:#1ABC9C}
#widget-22{box-shadow:#1ABC9C inset}
#widget-22 .featuredPost a:hover {color:#1ABC9C}
#widget-2{box-shadow:0 0 0 1px rgb(255, 153, 0) inset}
#widget-2 .featuredPost a:hover {color:rgb(255, 153, 0)}
.title-post3{background:#FF4000}
.title-post4{background:#8E44AD}
.readmore{float: right;text-transform: none;}
.readmore a,.readmore a:hover{color: #fff!important;}
.widget-home img{float:left;clear:both;object-fit:cover;transition:.33s;margin:0 0 6px 0}
.widget-home img:hover{-webkit-filter:brightness(80%)}
.widget-home{overflow:hidden}
#widget-00 .featuredPost a:hover {color:rgba(234, 25, 25, 0.77)}
#widget-0 .featuredPost a:hover {color:rgb(255, 153, 0)}
.widget-home a{color:#555;text-decoration:none;line-height: normal;}
.widget-home a:hover{color:#0087be}
.widget-homewrap{margin-top:10px;overflow:hidden}
.widgetsplitone{width:100%;padding:0;margin:0;overflow:hidden}
.widgetsplitone_left{width:460px;padding:0;margin:0;float:left;text-align:left;height:350px;position:relative}
.widgetsplitone_right{width:45.15%;padding:0 0 0 10px;margin:0;float:right}
.featuredPost img{margin-right:10px}
.featuredPost a{font-size:16px;font-weight:400;line-height:1.345;display:table-cell;vertical-align:middle;letter-spacing:-.15px;text-transform:uppercase}
h5.posttitle{font-size:18px;font-weight:700}
.contentstyle{line-height:normal;font-size:13px;padding:0 0 10px;color: #555;}
@media screen and (max-width:600px){.widgetsplitone_right{width:100%;margin:15px 0 0 0;padding:0;float:left}.widgetsplitone_left{width:100%}.tabs label span{display:none}.tabs label i{display:block}}
#carousel{width:100%;position:relative;display:block}
#carousel .container{position:relative}
#carousel ul{width:100%;position:relative;margin:0}
#carousel ul li{display:inline;float:left;text-align:center;font-weight:400;font-size:14px;line-height:normal;width:18.6%;margin:0 .7%}
#carousel ul li:hover{-webkit-filter:brightness(80%)}
#carousel ul li a.slider_title{color:#222;display:block;margin-top:5px}
#carousel ul li a.slider_title:hover{color:#FF4000}
#carousel a img{display:block;background:#fff;margin-top:0;width:100%}
#carousel1{width:100%;height:190px;position:relative;display:block;box-shadow:0 0 0 1px #FF4000 inset;padding:10px 2px;margin:0 0 15px}
#carousel1 .container{position:relative}
#carousel1 ul{width:100%;position:relative;margin:0}
#carousel1 ul li{display:inline;float:left;text-align:center;font-weight:400;font-size:14px;line-height:normal;width:18.6%;margin:0 .7%}
#carousel1 ul li:hover{-webkit-filter:brightness(80%)}
#carousel1 ul li a.slider_title{color:#222;display:block;margin-top:5px}
#carousel1 ul li a.slider_title:hover{color:#FF4000}
#carousel1 a img{display:block;background:#fff;margin-top:0;width:100%}
/* Dropdown Label */
.droplabel select{outline:none;cursor:pointer;transition:all .6s ease-out}
.droplabel{display:inline-block;position:relative;overflow:hidden;width:100%;border:0;height:40px;line-height:40px;color:#7f8c8d}
.droplabel:before,.droplabel:after{content:'';position:absolute;z-index:2;top:15px;right:12px;width:0;height:0;line-height:40px;border:4px dashed;border-color:#999 transparent;pointer-events:none}
.droplabel:before{border-bottom-style:solid;border-top:none}
.droplabel:after{margin-top:8px;border-top-style:solid;border-bottom:none}
.dropdown-select{color:#000;position:relative;width:100%;margin:0;padding:6px 8px 6px 10px;height:40px;line-height:20px;font-size:13px;border:1px solid rgba(0,0,0,0.1);-webkit-appearance:none;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}
.droplabel select:hover{border-color:rgba(0,0,0,.34);}
.droplabel select:focus{outline:none;cursor:pointer;border-color:#66afe9;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);}
.dropdown-select>option{background:#fafafa;position:relative;display:block;margin:3px;text-shadow:none;outline:0;border:0;cursor:pointer}
/* Arlina Footer Wrapper */
#footer-wrapper{background-color:#2f4154;border:none;}
#footer-wrapper{text-align:center;padding:0}
#footer-sgwidget .footer-widget{width:31.66%;float:left;margin:0 10px;padding:0;display:block}
#footer-sgwidget{max-width:1200px;overflow:hidden;margin:0 auto;line-height:24px}
#footer-wrapper h2,#footer-wrapper h3{font:400 25px Roboto;text-transform:none;margin:20px 0;color:#7577a9;position:relative;line-height:1;text-align:left}
#footer-wrapper .widget-content{background:#2f4154;text-align:left;font-family:'Roboto',Helvetica;margin:20px 0 15px;padding:0;color:#fff;font-weight:600}
#footer-wrapper .widget-content li{margin-left:-14px;color:#fff}
#footer-wrapper .widget li{margin:0;display:block}
.footer li a{padding-right:0;line-height:2em;font-size:13px;font-weight:400;font-family:'Roboto',Helvetica;color:#fff;margin:4px}
.footer li a:hover{color:#fff}
.footer{font-weight:400;padding-bottom:.2em}
.footer-bottom{min-height:40px}
#footx1,#footx2,#footx3{margin:0 .2%}
.tscredit{line-height:normal;margin:10px;color:#fff;text-transform:uppercase;font-size:90%}
.tscredit a{color:#E61727;text-decoration:none;font-weight:700}
.tscredit a:hover{color:#fff;text-decoration:none}
#footer-wrapper .Label li{background:transparent;float:left;padding:5px;margin:0;text-align:left;width:45%;transition:all .3s ease-out}
#footer-wrapper .Label li:hover{color:#fff}
#footer-wrapper .Label li a{color:#fff;transition:all .3s ease-out}
#footer-wrapper .Label li a:hover{color:#fff}
#footer-wrapper .Label li span{float:right;color:#fff;margin:0;padding:4px 6px;text-align:center;font-size:13px;font-weight:400;border-radius:2px}
#footer-wrapper .Label li span:hover{color:#fff}
#footer-wrapper .label-size{opacity:1;background:#484d5d;color:#fff;display:block;float:left;margin:0 4px 4px 0;font-size:13px;transition:all 0.4s}
#footer-wrapper .label-size a{display:inline-block;color:#fff;padding:10px 12px;font-weight:400;transition:initial}
#footer-wrapper .label-size a:hover{background:#0EB1F0;color:#fff;transition:all 0.2s}
#footer-wrapper .label-size a:before{content:"\f02b";font-family:FontAwesome;font-style:normal;font-weight:normal;text-decoration:none;padding-right:4px;color:#fff;transition:initial}
#footer-wrapper .label-size a:hover:before{content:"\f02b";font-family:FontAwesome;font-style:normal;font-weight:normal;text-decoration:none;color:#fff;transition:initial}
#footer-wrapper .label-size:hover,#footer-wrapper-inner .label-size:hover{background:#0EB1F0;color:#fff;transition:initial}
#footer-wrapper .label-count{background:#484d5d}
#textlink{line-height:24px}
a.tochu{color:#fff;border:1px solid #fff;padding:1px 5px;float:left;display:inline-block;margin:0 5px 5px 0;border-radius:4px;font-size:14px;transition:0}
.tochu:hover{color:#fff;border:1px solid #2ABB9B}
/* Banner */
.banner{margin:0 auto;text-align:center;overflow:hidden}
.banner .widget{width:100%;max-width:100%;margin:0 auto;background:#fff;text-align:center}
.banner .widget{margin-bottom:10px}
.banner img,.banner iframe{display:block;margin:0 auto;text-align:center;height:auto;}
#HTML2 .widget-content,#HTML3 .widget-content,#HTML4 .widget-content,#HTML5 .widget-content{padding:0;}
/* Arlina Global Responsive */
@media screen and (max-width:1200px) {
#search-form{margin-right:60px}
}
@media screen and (max-width:1000px) {
#search-form{display:none}
}
@media screen and (max-width:800px) {
#header{top:0}
#menu-pc{display:none}
#wrapper{overflow:initial}
#main-wrapper {float:none;border:0;width:100%;}
#sidebar-wrapper {width:100%;float:none;}
#footer-sgwidget{width:100%;overflow:hidden}
#footer-sgwidget .footer-widget{display:block;clear:both;width:95%;float:none;margin:0 10px 0 10px}
}
@media only screen and (max-width:768px) {
#sidebar-wrapper,#main-wrapper {width:100%;}
.sidebar {padding:0;}
.page-menu ul li a:hover,.page-menu ul li:hover a{background:transparent}
}
@media screen and (max-width:640px) {
#main-wrapper {width:100%;}
#sidebar-wrapper {width:100%;}
.status-msg-border {width:97%}
.post h2 {font-size:100%}
h1.post-title.entry-title,h2.post-title.entry-title{font-size:16px;margin:0}
}
@media screen and (max-width:480px) {
.comments .comments-content .user{line-height:2.8em}
.post h2{font-size:100%}
.post h1{font-size:120%}
body,.body-fauxcolumn-outer{font-size:80%}
.post-body{padding:10px}
.widget-content{box-shadow:none;border:0}
.sidebar .widget{margin:0;}
#Label1 .widget-content {padding:20px 10px;}
}
@media screen and (max-width:320px) {
#HTML2 .widget-content,#HTML3 .widget-content,#HTML4 .widget-content,#HTML5 .widget-content {padding:0}
#Label1 .widget-content {padding:20px 0;}}
@media screen and (max-width:240px) {
body,.body-fauxcolumn-outer {font-size:80%}
#PopularPosts1 .item-thumbnail,.recent_posts_arlina .wrapinfo,.post-thumb{width:62px!important;height:52px!important}
h2.post-title.entry-title,#PopularPosts1 ul li .item-title a,.PopularPosts ul li a,ul.recent_posts_arlina li a{font-size:12px!important}
.recent_posts_arlina br{display:none}}
.status-msg-body {padding:10px 0;display:none}
.status-msg-wrap{display:none;font-size:14px;margin-left:1px;width:100%;color:#666}
.status-msg-wrap a{color:orange!important}
.status-msg-bg{display:none;background:#ccc;position:relative;width:99%;padding:6px;z-index:1;border:2px #999 solid}
.status-msg-border{display:none;border:0;position:relative;width:99%}
</style>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<style type='text/css'>
.post{padding:10px;margin:10px 0 10px 0;transition:all .3s}
.post-body{padding:0;}
h1.post-title.entry-title a:hover, h2.post-title.entry-title a:hover {color:#2ABB9B;}
h1.post-title.entry-title,h2.post-title.entry-title{margin:0 12px 15px 0}
.post-thumb{position:relative;background:#f1f1f1;overflow:hidden;float:left;min-width:200px;height:auto;min-height:150px;margin:0 20px 0 0;transition:all .3s}
.post-thumbnail{background:#f1f1f1;width:100%;height:auto;}
.post-thumb img{background:#f1f1f1;}
.post-thumb .comment-info{position:absolute;top:0;left:0;z-index:5;color:#fff;padding:0}
.post-thumb .comment-info a{display:inline-block;background:red;color:#fff;padding:10px}
.snippets{font-size:96%;line-height:1.5;margin:0 0 8px 0;color:#333}
.post-timestamp,.author-info,.comment-info{padding:0;margin:0 5px 0 0;}
.post-timestamp a abbr.published.updated{border:0;cursor:pointer}
.post-info{color:#999;padding:0;overflow:hidden;border:0;margin:0 0 15px;font-size:13px;}
.post-info a{color:#666;margin:0 5px 0 0}
.post-info a:hover{color:#2ABB9B;}
.author-info img.avatar-photo1{height:22px;width:22px;border-radius:100%;margin:0 3px 0 0}
.label-info{position:absolute;left:0;top:0;z-index:2;opacity:0;visibility:hidden;transition:all .3s}
.post-thumb:hover .label-info{opacity:1;visibility:visible;}
.label-info a{display:inline-block;background:#222;color:#fff;font-size:12px;font-weight:600;padding:6px}
.label-info a:hover{background:#2f4154;color:rgba(255,255,255,1);}
/* Page Navigation */
#blog-pager{clear:both;margin:30px auto;text-align:center;padding:0px}
.blog-pager{background:none}
#blog-pager .pagecurrent{font-weight:700;color:#fff;}
.showpageOf{display:none!important}
#blog-pager .pages{border:none}
#blog-pager-newer-link{float:left}
#blog-pager-older-link{float:right}
#blog-pager{background:#7577a9;float:left;width:100%;text-align:center;line-height:normal;margin:0px 0}
#blog-pager a:link,#blog-pager a:visited{color:#fff;font-size:25px!important;padding:0;margin:0}
.feed-links{clear:both;line-height:2.5em;display:none}
.home-link,#blog-pager-newer-link,#blog-pager-older-link{width:40px;display: inline-block;height: 40px;line-height: 40px;}
.home-link:hover,#blog-pager-newer-link:hover,#blog-pager-older-link:hover{background:#7577a9}
span.label-info a.label-block:nth-child(n+2) {display:none;}
@media screen and (max-width:768px) {
h1.post-title.entry-title a, h2.post-title.entry-title a {margin:15px 0;}}
@media screen and (max-width:640px) {
.post{padding:10px}
.post-thumb{width:150px;margin:0 10px 0 0;min-width:auto;min-height:auto;max-height:200px}
.post-thumbnail {width:100%;height:auto;}
h1.post-title.entry-title,h2.post-title.entry-title{margin:0 12px 15px 0}
h1.post-title.entry-title a, h2.post-title.entry-title a {margin:0 0 10px 0;}
.post-info{margin:0 0 10px}
.snippets{font-size:96%;color:#999}
.label-info a{font-size:12px}}
@media screen and (max-width:480px) {
body{background: #BDC3C7}
.post-thumb{max-height:180px;width:120px;}
{margin:0 0 5px 0;}
.snippets,.label-info,.comment-info,.showpageOf{display:none}}
@media screen and (max-width:320px) {
h1.post-title.entry-title,h2.post-title.entry-title{font-size:14px}
.post-info{font-size:11px;color:#bbb;}
.post-info a{color:#bbb;}
.post-thumb{width:90px;}
.showpage a,.showpageNum a,.showpagePoint{padding:5px 8px}}
@media screen and (max-width:240px) {
.post-info{display:none}}
</style>
</b:if></b:if>
<b:if cond='data:blog.pageType != "index"'>
<style type='text/css'>
/* CSS Comments */
#comments{background:#fff;position:relative;margin:0 auto 0 auto;padding:10px;}
#comments h3 {display:inline-block;margin:0;padding:5px;font-size:15px}
.comment_avatar_wrap{width:42px;height:42px;background:#fcfcfc;border-radius:6px;text-align:center;margin:0 0 20px 0;padding:0}
#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(http://2.bp.blogspot.com/-fjaZBtfvzac/UN1mw2tUamI/AAAAAAAADkc/XdKqt8hWZ6w/s1600/anon.jpg) no-repeat}
#comments .comment_name,#comments .comment_admin .comment_name{padding:0 0 10px 0;font-size:13px;position:relative}
#comments .comment_name a{color:#7577a9;font-weight:700;padding:0;font-size:16px;text-decoration:none;text-transform:uppercase}
#comments .comment_admin .comment_date{font-weight:normal;font-size:11px}
#comments .comment_admin .comment_author_flag{display:inline-block;font-size:14px;color:rgb(17,143,249);text-align:center;margin:0 0 0 3px;}
#comments .comment_service{margin-top:5px}
#comments .comment_date{color:#a9a9a9;float:right;font-size:11px;font-weight:normal;margin-top:-3px}
#comments .comment_date a{color:#a9a9a9;float:right;font-size:11px;font-weight:normal;margin:0;padding:0}
#comments .comment_date a:hover{color:#a9a9a9;text-decoration:none}
#comments .comment_body{margin-left:62px;margin-top:-64px;background:#fafafa;padding:18px 20px;line-height:26px;border-radius:7px;margin-bottom:20px;position:relative;border:1px solid rgba(0,0,0,0.05)}
#comments .comment_body p{margin:5px 0 0 0;font-size:15px;word-wrap:break-word;padding:0 0 5px 0}
#comments .comment_body:before{content:'';right:100%;border:solid transparent;height:0;width:0;position:absolute;pointer-events:none;border-right-color:rgba(0,0,0,0.08);border-width:10px}
#comments .comment_body:after{content:'';top:19px;right:99.9%;border:solid transparent;height:0;width:0;position:absolute;pointer-events:none;border-right-color:#fafafa;border-width:9px}
#comments .comment_inner{margin:12px 0}
#comments .comment_child .comment_wrap{padding-left:3%}
#comments .comment_reply{display:inline-block;margin-top:10px;padding:1px 6px;color:#fff;text-align:center;text-decoration:none;background:#7577a9;font:11px/18px sans-serif;transition:background-color .5s ease-out 0s}
#comments .comment_reply:hover{text-decoration:none;background:#7577a9}
#comments .unneeded-paging-control{display:none}
#comments .comment-form{max-width:100%;}
#comment-editor{width:100%;background:transparent url(http://4.bp.blogspot.com/-jSUS8v5kwpQ/U8Z_6Ufr-PI/AAAAAAAAEYY/o4cQPKvt8vQ/s1600/loading.gif) no-repeat 50% 30%;}
#comments .comment_form a{text-decoration:none;font-weight:500}
#comments .comment_reply_form{padding:0 0 0 70px}
#comments .comment_reply_form .comment-form{width:99%}
.comment_emo_list .item{float:left;display:block;text-align:center;padding:5px;height:40px;width:41px}
.comment_emo_list .item:hover{border-radius: 20px;background:#e6ebef}