-
Notifications
You must be signed in to change notification settings - Fork 21
/
ToiCode(bancuoicung).xml
2755 lines (2571 loc) · 252 KB
/
ToiCode(bancuoicung).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:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateUrl='indie.xml' b:templateVersion='1.1.1' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head prefix='og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# website: http://ogp.me/ns/website#'>
<meta content='ID' name='google-site-verification'/>
<meta content='ID' name='yandex-verification'/>
<meta content='ID' name='msvalidate.01'/>
<meta content='#337ab7' name='theme-color'/>
<meta content='text/javascript' http-equiv='Content-Script-Type'/>
<meta content='text/css' http-equiv='Content-Style-Type'/>
<meta content='vi' http-equiv='content-language'/>
<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='//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'/>
<!-- [ Meta Tag SEO ] -->
<link href='//www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.homepageUrl' rel='openid.delegate'/>
<link expr:href='data:blog.url' rel='canonical'/>
<b:if cond='data:blog.searchLabel'>
<link expr:href='data:label.url' rel='canonical'/>
</b:if>
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<title><data:blog.pageName/> - <data:blog.title/></title>
</b:if></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found - <data:blog.title/></title>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<meta content='noindex' name='robots'/>
</b:if>
<b:if cond='data:blog.searchLabel'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.isMobile'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:if cond='data:blog.pageType != "error_page"'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<meta expr:content='data:blog.pageName + ", " + data:blog.pageTitle + ", " + data:blog.title' name='keywords'/>
</b:if></b:if>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " - RSS"' rel='alternate' type='application/rss+xml'/>
<link expr:href='"https://www.blogger.com/feeds/" + data:blog.blogId + "/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:blog.postImageThumbnailUrl'>
<link expr:href='data:blog.postImageThumbnailUrl' rel='image_src'/>
</b:if></b:if>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://plus.google.com/ID' rel='publisher'/>
<link href='https://plus.google.com/ID/posts' rel='publisher'/>
<include expiration='7d' path='*.css'/>
<include expiration='7d' path='*.js'/>
<include expiration='3d' path='*.gif'/>
<include expiration='3d' path='*.jpeg'/>
<include expiration='3d' path='*.jpg'/>
<include expiration='3d' path='*.png'/>
<include expiration='3d' path='*.ico'/>
<meta content='tue, 02 jun 2020 00:00:00 GMT' http-equiv='expires'/>
<meta content='public' http-equiv='Cache-control'/>
<meta content='Vietnam' name='geo.placename'/>
<meta content='Nguyễn Phú Cường' name='Author'/>
<meta content='general' name='rating'/>
<meta content='all' name='audience'/>
<meta content='id' name='geo.country'/>
<!-- Open Graph Meta Tags BEGIN -->
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType == "static_page"'>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta content='article' property='og:type'/>
<b:else/>
<meta expr:content='data:blog.pageTitle' property='og:title'/>
<meta content='blog' property='og:type'/>
</b:if>
<b:else/>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta content='article' property='og:type'/>
</b:if>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<meta content='YOUR_IMAGE' property='og:image'/>
</b:if>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
</b:if>
<meta content='APP_ID' property='fb:app_id'/>
<meta content='vi_VN' property='og:locale'/>
<meta content='en_US' property='og:locale:alternate'/>
<!-- Open Graph Meta Tags END -->
<!-- Twitter Cards -->
<meta content='summary' name='twitter:card'/>
<meta content='@USERNAME' name='twitter:site'/>
<meta content='@USERNAME' name='twitter:creator'/>
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.url' name='twitter:url'/>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.homepageUrl' name='twitter:url'/>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
</b:if>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' name='twitter:image'/>
<meta expr:content='data:blog.title' name='twitter:title'/>
<b:else/>
<meta content='YOUR_IMAGE' name='twitter:image'/>
<meta expr:content='data:blog.title' name='twitter:title'/>
</b:if>
<b:if cond='data:blog.pageType == "index"'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<script type='application/ld+json'>
{"@context" : "https://schema.org","@type" : "WebSite","name" : "<data:blog.pageTitle/>","url" : "YOUR_SITE_URL"}
</script>
<link expr:href='data:blog.canonicalHomepageUrl' hreflang='vi-vn' rel='alternate'/></b:if>
<b:else/>
<b:if cond='data:blog.pageTitle != data:blog.title'>
<link expr:href='data:blog.canonicalUrl' hreflang='vi-vn' rel='alternate'/>
</b:if></b:if>
<script type='text/javascript'>
//<![CDATA[
function loadCSS(e, t, n) { "use strict"; var i = window.document.createElement("link"); var o = t || window.document.getElementsByTagName("script")[0]; i.rel = "stylesheet"; i.href = e; i.media = "only x"; o.parentNode.insertBefore(i, o); setTimeout(function () { i.media = n || "all" }) }
loadCSS("//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");loadCSS("https://fonts.googleapis.com/css?family=Roboto:400,500");
//]]>
</script>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- Google Search Meta -->
<script type='application/ld+json'>
{
"@context" : "https://schema.org",
"@type" : "WebSite",
"name" : "<data:blog.title/>",
"alternateName" : "<data:blog.metaDescription/>",
"url" : "<data:blog.canonicalUrl/>"
}
</script>
<!-- Google Logos -->
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "Organization",
"url": "<data:blog.canonicalUrl/>",
"logo": "YOUR_IMAGE"
}
</script>
<!-- Google Profile -->
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "Person",
"name": "<data:blog.title/>",
"url": "<data:blog.canonicalUrl/>",
"sameAs": [
"https://www.facebook.com/USERNAME/",
"https://twitter.com/USERNAME",
"https://www.youtube.com/channel/USERNAME",
"https://plus.google.com/u/0/ID"
]
}
</script>
<!-- Google Sitelinks Searchbox -->
<script type='application/ld+json'>
{
"@context":"https://schema.org",
"@type":"WebSite",
"url":"<data:blog.canonicalUrl/>",
"name":"<data:blog.title/>",
"potentialAction":{
"@type":"SearchAction",
"target":"<data:blog.canonicalUrl/>?q={search_term_string}",
"query-input":"required name=search_term_string"
}
}
</script>
</b:if>
<b:skin version='1.1.0'><![CDATA[/*
/*
-----------------------------------------------
Blogger Template Style
License: Premium Version
Edit: Nguyen Phu Cuong
Website: https://pcdevshare.com
----------------------------------------------- */
/*
<!-- Constants -->
<Variable name="damionRegular36" description="Damion Regular 36" type="font" default="400 36px Damion, cursive" hideEditor="true" value="400 36px Damion, cursive"/>
<Variable name="damionRegular62" description="Damion Regular 62" type="font" default="400 62px Damion, cursive" hideEditor="true" value="400 62px Damion, cursive"/>
<Variable name="playfairDisplayBlack28" description="Playfair Display Black 28" type="font" default="900 28px Playfair Display, serif" hideEditor="true" value="900 28px Playfair Display, serif"/>
<Variable name="playfairDisplayBlack36" description="Playfair Display Black 36" type="font" default="900 36px Playfair Display, serif" hideEditor="true" value="900 36px Playfair Display, serif"/>
<Variable name="playfairDisplayBlack44" description="Playfair Display Black 44" type="font" default="900 44px Playfair Display, serif" hideEditor="true" value="900 44px Playfair Display, serif"/>
<Variable name="robotoNormal15" description="Roboto Normal 15" type="font" default="15px Roboto, sans-serif" hideEditor="true" value="15px Roboto, sans-serif"/>
<Variable name="robotoNormal16" description="Roboto Normal 16" type="font" default="16px Roboto, sans-serif" hideEditor="true" value="16px Roboto, sans-serif"/>
<Variable name="robotoLightItalic15" description="Roboto Light Italic 15" type="font" default="italic 300 15px Roboto, sans-serif" hideEditor="true" value="italic 300 15px Roboto, sans-serif"/>
<Variable name="robotoBold22" description="Roboto Bold 22" type="font" default="bold 22px Roboto, sans-serif" hideEditor="true" value="bold 22px Roboto, sans-serif"/>
<Variable name="robotoBold30" description="Roboto Bold 30" type="font" default="bold 30px Roboto, sans-serif" hideEditor="true" value="bold 30px Roboto, sans-serif"/>
<Variable name="robotoBold45" description="Roboto Bold 45" type="font" default="bold 45px Roboto, sans-serif" hideEditor="true" value="bold 45px Roboto, sans-serif"/>
<!-- Variable definitions -->
<Variable name="keycolor" description="Main color" type="color" default="#2196f3" value="#2196f3"/>
<Variable name="startSide" description="Start side in blog language" type="automatic" default="left" hideEditor="true" />
<Variable name="endSide" description="End side in blog language" type="automatic" default="right" hideEditor="true" />
<Group description="Page Text">
<Variable name="body.text.font" description="Font"
type="font"
default="$(robotoNormal15)" value="15px Roboto, sans-serif"/>
<Variable name="body.text.color" description="Color"
type="color"
default="#333333" value="#333333"/>
</Group>
<Group description="Backgrounds">
<Variable name="body.background.height" description="Background height"
type="length"
min="420px"
max="640px"
default="480px" value="480px"/>
<Variable name="body.background" description="Background"
color="$(body.background.color)"
type="background"
default="$(color) none repeat scroll top left" value="$(color) url(https://themes.googleusercontent.com/image?id=L1lcAxxz0CLgsDzixEprHJ2F38TyEjCyE3RSAjynQDks0lT1BDc1OxXKaTEdLc89HPvdB11X9FDw) no-repeat scroll top center /* Credit: Michael Elkan (https://www.offset.com/photos/394244) */;"/>
<Variable name="body.background.color" description="Body background color"
type="color"
default="#eee" value="#eeeeee"/>
<Variable name="posts.background.color" description="Post background color"
type="color"
default="transparent" value="transparent"/>
<Variable name="body.background.blur" description="Background blur"
type="length"
min="0px"
max="50px"
default="0px" value="0px"/>
</Group>
<Group description="Links">
<Variable name="body.link.color" description="Link color"
type="color"
default="#2196f3" value="#2196f3"/>
<Variable name="body.link.visited.color" description="Visited link color"
type="color"
default="$(body.link.color)" value="#2196f3"/>
<Variable name="body.link.hover.color" description="Link Hover color"
type="color"
default="$(body.link.color)" value="#2196f3"/>
</Group>
<Group description="Blog title" selector="div.widget.Header">
<Variable name="blog.title.font" description="Font"
type="font"
default="$(robotoBold45)" value="bold 45px Roboto, sans-serif"/>
<Variable name="blog.title.color" description="Color"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="header.icons.color"
description="Background icons color"
type="color"
default="#fff" value="#ffffff"/>
</Group>
<Group description="Tabs text" selector="div.widget.PageList">
<Variable name="tabs.font" description="Font"
type="font"
family="$(robotoNormal15.family)"
size="$(robotoNormal15.size)"
default="700 normal $(size) $(family)" value="700 normal $(size) $(family)"/>
<Variable name="tabs.color" description="Text color"
type="color"
default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="Selected color"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="Popup background color"
type="color"
default="$(posts.background.color)" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="Popup text color"
type="color"
default="$(posts.text.color)" value="#333333"/>
<Variable name="tabs.overflow.selected.color" description="Popup selected color"
type="color"
default="$(posts.title.color)" value="#212121"/>
</Group>
<Group description="Posts" selector="div.widget.Blog">
<Variable name="posts.title.color" description="Post title color"
type="color"
default="#212121" value="#212121"/>
<Variable name="posts.title.font" description="Post title font"
type="font"
default="$(robotoBold22)" value="bold 22px Roboto, sans-serif"/>
<Variable name="posts.stream.title.font" description="Post title stream font"
type="font"
default="$(robotoBold30)" value="bold 30px Roboto, sans-serif"/>
<Variable name="posts.text.font" description="Post text font"
type="font"
default="$(body.text.font)" value="15px Roboto, sans-serif"/>
<Variable name="posts.text.color" description="Post text color"
type="color"
default="$(body.text.color)" value="#333333"/>
<Variable name="posts.byline.color" description="Post byline color"
type="color"
default="rgba(0, 0, 0, 0.54)" value="rgba(0, 0, 0, 0.54)"/>
<Variable name="blockquote.font" description="Blockquote font"
type="font"
default="$(robotoLightItalic15)" value="italic 300 15px Roboto, sans-serif"/>
<Variable name="blockquote.color" description="Blockquote color"
type="color"
default="#444" value="#444444"/>
<Variable name="posts.icons.color"
description="Post icons color"
type="color"
default="#707070" value="#707070"/>
</Group>
<Group description="Search">
<Variable name="search.input.color" description="Input color"
type="color"
default="$(blog.title.color)" value="#ffffff"/>
<Variable name="search.input.font" description="Input font"
type="font"
default="$(robotoNormal16)" value="16px Roboto, sans-serif"/>
<Variable name="search.placeholder.color" description="Placeholder text color"
type="color"
default="$(blog.title.color)" value="#ffffff"/>
</Group>
<Group description="Sharing">
<Variable name="sharing.background.color"
description="Sharing background color"
type="color"
default="$()" value="#ffffff"/>
<Variable name="sharing.text.color" description="Sharing text color"
type="color"
default="$(posts.title.color)" value="#212121"/>
<Variable name="sharing.icons.color"
description="Sharing icons color"
type="color"
default="$(sharing.text.color)" value="#212121"/>
</Group>
<Group description="Popular posts" selector="div.widget.PopularPosts">
<Variable name="popularposts.background.color"
description="Popular post background color"
type="color"
default="$(body.background.color)" value="#eeeeee"/>
<Variable name="popularposts.byline.color"
description="Popular post byline color"
type="color"
default="$(posts.byline.color)" value="rgba(0, 0, 0, 0.54)"/>
<Variable name="popularposts.title.color"
description="Popular post title color"
type="color"
default="$(posts.title.color)" value="#212121"/>
<Variable name="popularposts.text.color"
description="Popular post text color"
type="color"
default="$(posts.text.color)" value="#333333"/>
<Variable name="popularposts.link.color"
description="Popular post link color"
type="color"
default="$(body.link.color)" value="#2196f3"/>
</Group>
<Group description="Post navigation" selector='div.blog-pager'>
<Variable name="posts.navigation.link.color"
description="Post navigation links color"
type="color"
default="$(body.link.color)" value="#2196f3"/>
<Variable name="posts.navigation.link.visited.color"
description="Post navigation links visited color"
type="color"
default="$(body.link.visited.color)" value="#2196f3"/>
<Variable name="posts.navigation.link.hover.color"
description="Post navigations links hover color"
type="color"
default="$(body.link.hover.color)" value="#2196f3"/>
</Group>
<Group description="Sidebar" selector="div.sidebar-container">
<Variable name="sidebar.backgroundColorTop"
description="Background color (Top)"
type="color"
default="#f7f7f7" value="#ffffff"/>
<Variable name="sidebar.backgroundColorTopHD"
description="Background color (Top) - HD"
type="color"
default="rgba(255, 255, 255, 1)" value="#f7f7f7"/>
<Variable name="sidebar.backgroundColorBottom"
description="Background color (Bottom)"
type="color"
default="#fff" value="#ffffff"/>
<Variable name="sidebar.separator.color"
description="Separator color"
type="color"
default="#ccc" value="#cccccc"/>
<Variable name="widget.title.color"
description="Gadget title color"
type="color"
default="#212121" value="#212121"/>
<Variable name="sidebar.icons.color"
description="Sidebar icons color"
type="color"
default="#707070" value="#707070"/>
</Group>
<Group description="Author profile" selector='.widget.Profile'>
<Variable name="profile.title.color" description="Profile title color"
type="color"
default="rgba(0,0,0,0.52)" value="rgba(0,0,0,0.52)"/>
<Variable name="profile.text.color" description="Profile text color"
type="color"
default="rgba(0, 0, 0, 0.54)" value="rgba(0, 0, 0, 0.54)"/>
<Variable name="profile.link.color" description="Profile link color"
type="color"
default="$(posts.title.color)" value="#212121"/>
</Group>
<Group description="Labels" selector=".widget.Label">
<Variable name="labels.text.color"
description="Label text color"
type="color"
default="$(body.link.color)" value="rgba(0,0,0,0.54)"/>
<Variable name="labels.background.color"
description="Label background color"
type="color"
red="$(labels.text.color.red)"
green="$(labels.text.color.green)"
blue="$(labels.text.color.blue)"
default="rgba($red, $green, $blue, 0.05)" value="#f7f7f7"/>
</Group>
<Group description="Attribution" selector=".widget.Attribution">
<Variable name="attribution.text.color" description="Attribution text color"
type="color"
default="$(body.text.color)" value="#333333"/>
<Variable name="attribution.link.color" description="Attribution link color"
type="color"
default="$(body.link.color)" value="#2196f3"/>
<Variable name="attribution.icon.color" description="Attribution icon color"
type="color"
default="#707070"
hideEditor="true" value="#707070"/>
</Group>
<Group description="Widths">
<Variable name="sidebar.width" description="Sidebar width" type="length"
min="100px" max="1000px" default="284px" value="284px"/>
<Variable name="content.width" description="Content width" type="length"
min="600px" max="2400px" default="922px" value="922px"/>
<Variable name="content.margin" description="Content margin" type="length"
min="0px" max="1000px" default="117px" value="117px"/>
</Group>
*/
a,abbr,acronym,address,applet,b,big,blockquote,body,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var{padding:0;border:0;outline:0;vertical-align:baseline;background:0 0}
b{font-weight:500}
ins{text-decoration:underline}
del{text-decoration:line-through}
dl,ul{list-style-position:inside;font-weight:400;list-style:none}
ul li{list-style:none}
caption,th{text-align:center}
li{list-style:none}
img{border:none;position:relative}
a,a:visited{text-decoration:none}
.clear{clear:both}
.section,.widget,.widget ul{margin:0;padding:0}
a{color:#337ab7}
a:hover{color:#337ab7}
:focus{outline:0}
a img{border:0}
abbr{text-decoration:none}
.CSS_LIGHTBOX{z-index:999999!important}
.separator a{clear:none!important;float:none!important;margin-left:0!important;margin-right:0!important}
.row{width:1080px;margin:0 auto}
#navbar-iframe{display:none;height:0;visibility:hidden}
.widget-item-control,a.quickedit{display:none!important}
.index .home-link,.home-link{display:none!important}
.status-msg-wrap{margin:0 auto 20px;text-transform:uppercase;font-size:11px;display:none}
.status-msg-bg{background-color:#f8f8f8;opacity:1;filter:none}
.status-msg-body{padding:7px;background:#fff}
.feed-links{clear:both;display:none;line-height:2.5em}
.widget li,.BlogArchive #ArchiveList ul.flat li{padding:0}
.post-header,.post-footer{line-height:inherit}
body{background:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:#333;font-size:14px;font-weight:400;word-wrap:break-word;margin:0;padding:0;animation: fadeInx 2s;-webkit-animation:fadeInx 2s;-moz-animation:fadeInx 2s;transition:all 2s}
@keyframes fadeInx{from{opacity:0}to{opacity:1}}
@-webkit-keyframes fadeInx{from{opacity:0}to{opacity:1}}
@-moz-keyframes fadeInx{from{opacity:0}to{opacity:1}}
@-o-keyframes fadeInx{from{opacity:0}to{opacity:1}}
#outer-wrapper{width:100%;margin:0 auto;}
#content-wrapper{margin:0 auto;overflow:hidden;padding:60px 0 20px 0}
#main-wrapper{float:left;overflow:hidden;width:70%;margin:0;padding:3px 0 0 3px;box-sizing:border-box;word-wrap:break-word}
#sidebar-wrapper{float:right;overflow:hidden;width:30%;box-sizing:border-box;word-wrap:break-word;padding-bottom:0;padding-left:15px}
.transition {transition: all 0.2s ease;-o-transition: all 0.2s ease;-moz-transition: all 0.2s ease;-webkit-transition: all 0.2s ease;}
.fixed{position:fixed}
#header-wrapper{position:fixed;left:0;width:100%;height:50px;background:#337ab7;z-index:9999;font-size:13px;margin:0;padding:0;transition: all 0.6s ease;-webkit-transition: all 0.6s ease;}
.scroll{top:-50px;transition: all 0.6s ease;-webkit-transition: all 0.6s ease;}
.no-scroll{top:0;z-index:9999;transition: all 0.6s ease;-webkit-transition: all 0.6s ease;}
.header-content{position:relative;height:50px;margin:0 auto;padding:0}
.header-logo{float:left;max-width:100px;max-height:50px;overflow:hidden;}
.header-logo img{float:left;width:auto;max-height:50px;overflow:hidden;}
.header h1,.header h3{color:#222;margin:0;font-size:20px;line-height:1.4em}
.header h1 a,.header h3 a, .header h1 a:visited, .header h3 a:visited{color:#fff; font-size:1px;text-decoration:none;margin:0;padding:0}
.header h1 span, .header h3 span{text-indent:-999em; display:block;}
#header-inner h1,#header-inner h3 {margin:0;padding:0}
#main-nav{position:static;float:right;height:50px;margin:0}
#menu{float:left;height:50px;z-index:10}
#menu .widget{display:none}
#menu ul > li{float:left;position:relative;margin:0;padding:0;}
#menu ul > li:hover {background:transparent}
#menu ul > li > a{position:relative;color:#fff;font-size:14px;line-height:50px;display:inline-block;text-decoration:none;margin:0;padding:0 10px;text-transform:uppercase;}
#menu ul > li:hover > a{background:#fff;color:#424242}
#menu ul > li > ul{position:absolute;float:left;left:0;top:100%;width:180px;background:#fff;z-index:99999;margin-top:0;padding:0;visibility:hidden;opacity:0;transition: all 0.1s ease;-webkit-transition: all 0.1s ease;-moz-transition: all 0.1s ease;box-shadow:0 2px 3px 0 rgba(0,0,0,.1); -webkit-box-shadow:0 2px 3px 0 rgba(0,0,0,.1)}
#menu ul > li > ul > li{display:block;float:none;position:relative;margin:0;border-bottom: 1px solid #f5f5f5;}
#menu ul > li > ul > li:last-child {border-bottom:none}
#menu ul > li > ul > li:hover{background-color:rgba(255,255,255,0.01);}
#menu ul > li > ul > li a{display:block;height:34px;font-size:13px;color:#424242;line-height:34px;text-decoration:none;box-sizing:border-box;margin:0;padding:0 20px;border:0;}
#menu ul > li > ul > li:hover {color:#000;background:#f1f1f1;}
#menu ul > li > ul > li:last-child a{border-bottom:0}
#menu ul > li.has-sub > a:after{content: '\f107';font-family: FontAwesome;position: absolute;bottom: -14px;left: 45%;color:#ddd}
#menu .widget,.mega-menu{position:static!important}
#menu ul > li:hover > ul{opacity:1;visibility:visible;transform: scale(1)}
#menu .mega-menu > ul{width:100%;box-sizing:border-box;padding:15px 7.5px;border-top:0}
#menu ul > li:hover > ul,#menu ul > li > ul > li:hover > ul{opacity:1;visibility:visible;}
#search-icon{position:relative;display:inline-block;width:35px;height:35px;z-index:20;color:#fff;font-size:14px;line-height:35px;border-radius: 50%; background:rgba(0,0,0,.1);top:8px;text-align:right;cursor:pointer;margin:0 0 0 15px;padding:0;text-align:center;}
#search-icon:before{content:"\f002";display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.show-search #search-icon:before{content:"\f00d"}
#search-icon:hover,.show-search #search-icon, #login-blog:hover{color:#f1f1f1;}
#nav-search{position:absolute;right:0;top:50px;width:30%;height:40px;z-index:10;background:#337ab7;box-sizing:border-box;padding:5px;visibility:hidden;opacity:0;-webkit-transform:translateY(10px);-moz-transform:translateY(10px);transform:translateY(10px);}
.show-search #nav-search{opacity:1;visibility:visible;-webkit-transform:translateY(0);-moz-transform:translateY(0);transform:translateY(0)}
#nav-search #searchform{display:block;background:#fff;color:#333;width:100%;height:30px;box-sizing:border-box;overflow:hidden;padding:0;border-radius:3px;border:1px solid #d0d0d0}#nav-search #s{width:100%;height:27px;color:#383838;margin:0;padding:0 10px;background-color:rgba(255,255,255,0.01);font-family:inherit;font-size:14px;font-weight:400;box-sizing:border-box;border:0}
#nav-search #s:focus{color:#fff;outline:none;background:rgba(35, 54, 72, 0.89);}
#nav-search #s:focus::placeholder {color:#fff}
.mobile-menu{display:none;float:left}
.search-bt{background:url(//i.imgur.com/CPpitQq.png) -4px 1px no-repeat;background-size:27px;padding:8px 10px;background-repeat:no-repeat}
i.search-bt{height:40px;width:70px;border:0;border-radius:3px;float:right;cursor:pointer}
#login-blog{position:relative;float:right;display:none;width:35px;height:35px;z-index:20;color:#777;font-size:15px;line-height:35px;text-align:right;cursor:pointer;margin:0 0 0 15px;padding:0;text-align:center;border-radius:50%;top:6px;border:1px solid #ddd}
#login-blog:before{content:"\f0a2";display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.mobile-menu .nav-toggle{position:relative;float:right;display:inline-block;width:35px;height:35px;z-index:20;color:#fff;font-size:15px;line-height:35px;text-align:right;cursor:pointer;margin:0 0 0 15px;padding:0;text-align:center;border-radius:50%;top:8px;background:rgba(0,0,0,.1)}
.mobile-menu .nav-toggle:before{content:"\f0c9";font-family:fontawesome}
.show-menu .mobile-menu .nav-toggle:before{content:"\f00d"}
.mobile-menu .nav-toggle:hover,.show-menu .mobile-menu .nav-toggle:hover{color:#337ab7;background:#fff}
.mobile-menu #nav2{position:absolute;overflow:hidden;top:50px;left:0;width:100%;background-color:#222;border-right:1px solid rgba(0,0,0,0.2);margin:0;padding:0;z-index:15;text-transform:none;font-weight:500;font-size:12px;visibility:hidden;opacity:0;-webkit-transform:translateY(10px);-moz-transform:translateY(10px);transform:translateY(10px);}
.show-menu .mobile-menu #nav2{opacity:1;visibility:visible;-webkit-transform:translateY(0);-moz-transform:translateY(0);transform:translateY(0)}
.mobile-menu ul li{position:relative;display:block;overflow:hidden;float:left;width:100%;line-height:34px;margin:0;padding:0;border-top:1px solid #1b1b1b}
.mobile-menu > ul > li:first-child{border-top:0}
.mobile-menu ul li a{color:#fff;padding:0 0 0 10px;display:block}
.mobile-menu ul li a:hover{background-color:#222}
.mobile-menu ul li.has-sub > a:after{content:'\f067';font-family:FontAwesome;float:right;width:34px;font-size:14px;text-align:center;border-left:1px solid #1b1b1b;}
.mobile-menu ul li.has-sub.show > a:after{content:'\f068'}
.mobile-menu > ul > li ul{background-color:#333;overflow:hidden}
.mobile-menu > ul > li > ul > li > a{padding-left:20px}
.mobile-menu .sub-menu{display:none}
#PopularPosts1 .ty-meta{display:none}
.ty-meta{display:block;color:#337ab7;text-transform:none}
.ty-meta .item-author:before{content:'\f2c0';font-family:fontawesome;margin-right:5px}
.ty-meta .item-date:before{content:'\f017';font-family:fontawesome;margin-right:5px}
.post{display:block;overflow:hidden;word-wrap:break-word}
.recent-title > h2{font-size:14px;font-weight:400;text-transform:uppercase;color:#aaa;padding:0 0 7px;display:none;border-bottom:1px solid #f1f1f1}
.index .post{margin:0 8px 20px 0;padding:0;background:#fff;border:1px solid #f1f1f1;float: left;width: 32%;transition:all 0.2s ease;-moz-transition:all 0.2s ease;-webkit-transition:all 0.2s ease}
.index .post:hover {border-color:transparent;box-shadow: 0px 0 4px 1px rgba(0, 0, 0, 0.3);}
.index .ty-article .ty-inner{position:relative;overflow:hidden;padding:3px;}
.fa-lg{font-size:20px}
.block-image{position:relative;width:100%;height:145px;display:block;overflow:hidden;margin:0}
.block-image:hover{border-color:#337ab7}
.block-image .thumb{width:100%;height:100%;position:relative;display:block;z-index:1;overflow:hidden}
.block-image .thumb img{width:100%;height:100%;display:block;object-fit:cover}
.label-thumb {position:absolute;background:linear-gradient(90deg, #f76868, #f39520);color:#fff;text-transform:uppercase;font-size:11px;font-weight:500;left:5px;bottom:5px;z-index:9999;padding: 2px 5px;border-radius: 10px;-moz-user-select: none;-ms-user-select: none;-khtml-user-select:none;-webkit-user-select: none;-webkit-touch-callout: none;}
.index .post:hover .label-thumb {background:#424242}
.index .post h2{font-size: 15px;font-weight: 500;text-decoration: none;word-wrap: break-word;margin: 0;text-overflow: ellipsis;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
.index .post h2 a{color:#444;}
.index .post h2 a:hover{color:#337ab7}
.widget iframe,.widget img{max-width:100%}
.item .post{padding:15px;background:#fff;}
.index .date-header{overflow:hidden;font-weight:400;margin:0!important;padding:5px}
.meta-post{position:relative;font-size:0.9em;margin:9px 0 7px}
.meta-post a{color:#555;margin-right:10px;}
.meta-post a:hover {color:#424242!important}
.meta-post .timestamp-link{margin-left:0}
.meta-post .author-link a:before,.meta-post .timestamp-link:before{content:'\f2c0';font-family:fontawesome;color:#555;margin-right:5px}
.meta-post .timestamp-link:before{content:'\f021';}
.meta-post .post-cmt a:before{content:'\f0e6';font-family:fontawesome;color:#337ab7;margin-right:5px}
.fa-comments-o:before{content:'\f0e6';font-family:fontawesome;color:#337ab7;margin-right:2px;color:#777}
.post-snip{float:left;width:100%;text-overflow:ellipsis;display:none;margin-top:5px;-webkit-line-clamp:2;overflow:hidden;-webkit-box-orient:vertical;font-size:13px;line-height:20px;color:#666}
.more-link a{display:inline-block;height:30px;background:#337ab7;color:#fff;font-size:13px;line-height:30px;font-weight:400;text-transform:uppercase;padding:0 10px;border-radius:3px;display:none}
.more-link a:hover{background-color:#272727;color:#fff}
.breadcrumbs{background:#fff;padding:10px 15px;margin:-16px -16px 10px;color:#222;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;border:1px solid #dfe0e4}
.fa-angle-right:before{margin:0 3px}
.item .post-title{color:#333;font-size:1.625rem;text-align:center;line-height:1.4em;font-weight:400;position:relative;display:block;margin:0;padding:0;border-bottom: 1px solid #ddd;
padding-bottom: 10px;}
.static_page .post-title{margin-bottom:0}
.item .ty-inner{margin:0;padding:10px 0 0}
.item .post-body{width:100%;color:#444;font-size:15px;line-height:25px;overflow:hidden;padding:0;font-weight:400;text-align: justify;}
.item .post-outer{padding:0}
.item .post-body img{max-width:100%;margin:15px 0;box-shadow:0 0 15px 0 rgba(0,0,0,.3);margin-bottom:0}
.post-outer{width:100%;}
.post-meta{display:none;font-size:15px;margin:0px -14px;padding:10px;font-weight:400;border-top:1px solid #e6e6e6;}
.post-meta a{color:#777;margin-right:10px;}
.post-timestamp{margin-left:0}
.post-meta a:hover{color:#337ab7}
.post-meta .post-author a:before{content:'\f007';font-family:fontawesome;color:#337ab7;margin-right:5px}
.post-meta .timestamp-link:before{content:'\f073';font-family:fontawesome;color:#337ab7;margin-right:5px}
.post-meta .times-link:before{content:'\f021';font-family:fontawesome;color:#337ab7;margin-right:5px}
.post-meta .post-fix a:before{content:'\f0ad';font-family:fontawesome;color:#337ab7;margin-right:5px}
.main .widget{margin:0}
.main .Blog{border-bottom-width:0}
.post-footer{margin-top:10px}
.shareit i{float:left;font-size:15px;color:#424242;border-radius:50%;padding:0;height:23px;width:23px;text-align:center;line-height:23px}
.shareit a.fb,.shareit a.gp,.shareit a.tw{text-decoration: none!important;display: inline-block;margin: 0 5px 5px 0;font-size: 16px;font-weight: 400;text-shadow: none;line-height: 23px;transition: all 100ms ease;float: left;background: transparent;border-bottom: 2px solid #ddd}
.shareit.top.top a.fb,.shareit.top.top a.gp,.shareit.top a.tw{padding:0px 10px}
.shareit.top a.tw{margin:0 0 5px}
.shareit a:hover i {color:#fff!important}
.shareit a.fb i{color:#045491}
.shareit a.gp i{color:#C11F27}
.shareit a.tw i{color:#1FB7C1}
.shareit a.fb:hover{background:#045491}
.shareit a.gp:hover{background:#C11F27}
.shareit a.tw:hover{background:#1FB7C1}
.shareit p{margin:0;float:left;color:#fff;margin-left:5px}
a.donate{float:right;padding:5px 10px;background:#293a4a;border-radius:3px;color:#fff}
.shareit.top{background:transparent;float:right;margin-top:15px}
.shareit.top a{border-radius:3px!important}
#related-wrap{margin-top:35px}
.title-wrap h2{color:#fff;margin:0 -15px 15px;font-size:20px;background:#337ab7;padding:10px;font-weight:400;line-height:normal}
#related-wrap .related-tag{display:none}
#blog-pager{clear:both;text-align:center;margin:0;clear:both;text-align:center;margin:0}
.index #blog-pager{display:block;padding:0;text-align:center}
#blog-pager-newer-link a,#blog-pager-older-link a{display:block;float:left;background-color:#272727;margin-right:0;padding:0 12px;border:0;text-transform:uppercase;line-height:32px;font-weight:400;color:#f2f2f2;font-size:12px;border-radius:3px;}
#blog-pager-newer-link a:hover,#blog-pager-older-link a:hover{background-color:#337ab7;color:#fff}
.showpageNum a,.showpage a,.showpagePoint,.more-page{display: inline-block;float: none;margin-right: 6px;color: #424242;text-transform: uppercase;font-weight: 400;border-radius: 2px;border: 1px solid #ddd;width: 30px;height: 30px;line-height: 30px;text-align: center;}
.showpageNum a:hover {background:#337ab7;color:#fff}
.showpageNum a i,.showpage a.comments h4 i{font-weight:400}
.showpagePoint{background:#f1f1f1;font-weight:400;color:#424242}
.showpageOf{display:none!important}
.more-page a{color:#999;font-weight:400}
.comments{display:block;clear:both;margin:15px 0 0;color:#333;background:transparent;border-radius:0 3px 3px 3px}
#Blog1_comments-block-wrapper{margin:-25px 0}
.static_page .comment-system,.static_page .comments{display:block}
.static_page .comments{margin-top:20px}
.post-body h1{color:#bc382e;font-size:26px;font-weight:400;padding:0;margin-bottom:1em;border-bottom:2px solid;margin:12px 0}
.post-body h2{font-size: 23px;font-weight:500;margin-bottom: 15px;padding-bottom: 7px;border-bottom: 1px solid #f1f1f1;margin-top: 15px;color: #337ab7 ;text-transform: uppercase;}
.post-body h3{font-size: 18px;font-weight:500;margin: 10px 0;text-decoration:underline}
.post-body h4{font-size:13px;font-weight:500;text-align:right;color:#888;margin:6px 0}
.widget .post-body ul,.widget .post-body ol{line-height:1.5;font-weight:400}
.widget .post-body li{margin:8px 0;padding:0;line-height:1.5}
#sidebar-wrapper .widget{margin-bottom:10px;display:inline-block;width:99%;}
.sidebar .widget > h2,.sidebar .widget > h3{font-weight: 400;line-height: 17px;display: inline-block;padding: 7px 12px 4px;background-color: #337ab7;color: #fff;font-family: 'Roboto',sans-serif;font-size: 14px;line-height: 1;margin-top: 0;margin-bottom: 0;}
.sidebar ul{list-style:none;padding:10px 0}
.sidebar .widget-content{margin:0;background:#fff;border-top: 2px solid #337ab7;padding-top: 10px;}
#HTML1 .widget-content,#HTML6 .widget-content,#HTML5 .widget-content {border-top:none}
.label-size-1,.label-size-2{opacity:100}
.FollowByEmail td{width:100%;float:left;box-sizing:border-box}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{height:40px;border:0;margin-bottom:20px;box-sizing:border-box;font-size:13px;font-family:inherit;background:rgba(0,0,0,0.2);text-align:center;color:#fff;width:100%}
.FollowByEmail .follow-by-email-inner .follow-by-email-address::-webkit-input-placeholder{color:#2a2a2a}
.FollowByEmail{background:#3f3f3f!important;border:0!important;color:#fff}
.FollowByEmail .title-wrap{margin-bottom:0!important;border-bottom:0!important}
.FollowByEmail > h2{background:none!important;text-align:center;width:100%;font-size:22px!important;padding:0!important;margin:0!important;border-bottom:0!important;color:#fff!important}
.FollowByEmail .widget-content{box-sizing:border-box}
.FollowByEmail p{text-align:center}
#ArchiveList select{border:1px solid #eee;padding:10px;width:100%;cursor:pointer;font-family:inherit;font-size:15px;color:#333}
.danhmuc-chan{font-family:inherit;width:100%;padding:10px;border:1px solid #ccc;font-size:15px}
.PopularPosts .item-thumbnail{width:90px;height:65px;float:left;overflow:hidden;display:block;vertical-align:middle;margin:0 15px 0 0 !important}
.PopularPosts .item-thumbnail a{position:relative;display:block;overflow:hidden;line-height:0;width:100%;height:100%}
.PopularPosts ul li img{width:100%;height:100%;padding:0;border-radius:2px}
#sidebar-wrapper .PopularPosts .widget-content ul li{padding:12px;margin:0 -10px;position:relative;border-bottom: 1px dashed #ddd;text-align: justify;}
#sidebar-wrapper .sidebar .PopularPosts .widget-content ul li:first-child{padding-top:0;border-top:0}
.PopularPosts .item-title{font-size:14px;font-weight:400;line-height:1.4em;margin:0 0 5px;padding:0}
.PopularPosts ul li a{color:#464545;font-size:15px;position:relative}
.PopularPosts ul li a:hover{color:#337ab7}
/*.PopularPosts .item-snippet {font-size: 90%;line-height: 1.2em;position: absolute;width: 230px;background-color: whiteSmoke;padding: 7px;border-top: 2px solid #FF0202;z-index: 2;left: 300px;top: 60%;height: 4.5em!important;visibility: hidden;opacity: 0;transition: all 0.6s cubic-bezier(1,2,0,0) 0s;-moz-transition: all 0.6s cubic-bezier(1,2,0,0) 0s;-webkit-transition: all 0.6s cubic-bezier(1,2,0,0) 0s;-o-transition: all 0.6s cubic-bezier(1,2,0,0) 0s;}
.PopularPosts ul li:hover .item-snippet {left:60px;opacity:1;visibility:visible}*/
.blogger-tab{display:block}
iframe{border:none;overflow:hidden}
#footer-wrapper{background: #f1f1f1;border-top: 1px solid #ddd;}
#footer{position:relative;overflow:hidden;margin:0 auto;padding:25px 0;display: none;}
#footer a{color:#0070a0}
.footer-wrapper{width:100%;overflow:hidden;color:#424242;display:block;padding:0}
.footer-wrapper .footer-copy{overflow:hidden;margin:0 auto}
.footer-wrapper .copyright{font-size:13px;text-align:center;font-weight:400;color:#424242;padding:20px 0}
.footer-wrapper .copyright ul{display:inline-block;padding:0;margin:10px 0 0;text-align:center;}
.footer-wrapper .copyright ul li{margin-left:10px;display: inline-block;}
.copyright a {color:#888}
.copyright a:hover {text-decoration:underline;color:#777}
.error_page #main-wrapper{width:100%!important;margin:0!important}
.error_page #sidebar-wrapper,.error_page .status-msg-wrap,.error_page #header-wrapper,.error_page #footer-wrapper,.error_page #subscribe-form{display:none}
#error-wrap{color:#333;text-align:center;padding:60px 0 80px}
.error-item{font-size:160px;line-height:1;margin-bottom:20px}
#error-wrap h2{font-size:25px;padding:20px 0 10px}
#error-wrap .homepage{padding-top:10px;display:block}
#error-wrap .homepage i{font-size:20px}
#error-wrap .homepage:hover{text-decoration:underline}
/* Related Post Style 2 */
.related-simplify{position:relative;padding:20px 12px 12px 12px;margin:32px auto 24px auto;width:95%;border:1px solid rgba(0,0,0,0.08)}
.related-simplify h4{background: #fff;padding: 3px 10px;position: absolute;margin: 0;font-size: 16px;font-weight: 500;color: #333;top: -20px;left: 2.5%;border: 1px solid rgba(0,0,0,.08);}
.related-simplify ul{margin:0;padding:0}
.related-simplify ul li{position:relative;list-style:none;padding:9px 0;margin:auto;line-height:1.4em;transition:all .3s}
.related-simplify a{color:#333;font-size:15px;margin:0;}
.related-simplify a:hover{color:#337ab7;}
.related-simplify ul li:nth-child(n+4) {display:none;}
@media only screen and (max-width:768px){
.related-simplify{padding:15px 0 10px 0;width:100%;border:2px solid #e74c3c;border-left:0;border-right:0}
.related-simplify h4{color:#e74c3c;padding:8px;font-size:15px;top:-18px;left:3.5%}
.related-simplify a{font-size:14px;margin:0}.related-simplify a:hover{color:#e74c3c}
.related-simplify ul li{padding:5px 0}
.related-simplify ul li:before,.related-simplify ul li:hover:before{display:none}}
.ty-share-post{position:relative;overflow:hidden;margin:0 -16px 35px;padding:10px;background:#222}
.ty-share-post > span{float:left;color:#fff;font-size:15px;text-transform:none;line-height:28px;margin-right:10px;display:none}
ul.ty-share{position:relative;margin:0;padding:0}
.ty-share li{float:left;margin:0 10px 0 0;padding:0}
.ty-share li a{float:left;color:#fff;font-weight:400;font-size:15px;text-align:center;display:inline-block;box-sizing:border-box;opacity:1;margin:0;padding:5px 10px;border-radius:3px;transition:opacity .2s}
.ty-share li a i{border-radius:100%;border:1px solid #fff;width:25px;height:25px;line-height:25px}
.ty-share li a span{margin-left:5px}
.ty-share .ty-facebook{background-color:#3b5998}
.ty-share .ty-twitter{background-color:#00acee}
.ty-share .ty-google{background-color:#db4a39}
.ty-share li a:hover{opacity:.8}
li.num-post a{float:left;padding:5px 10px;border:1px solid;border-radius:3px;margin-right:10px;color:#f90}
li.num-comment{cursor:pointer;float:left;padding:5px 10px;border:1px solid;border-radius:3px;color:#9c0}
li.author-home a{float:left;padding:5px 10px;border:1px solid;border-radius:3px;color:#0070a0;margin-left:10px;cursor:pointer}
li.num-post a:hover{background:#f90;color:#fff;border-color:#f90}
li.num-comment:hover{background:#9c0;color:#fff;border-color:#9c0}
li.author-home a:hover{background:#0070a0;color:#fff;border-color:#0070a0}
a.random{color:#333;font-size:16px}
ul.random{padding:0;background:#fff;float:left;width:100%;border-radius:0 0 3px 3px;margin:0}
.fa-envelope-open:before{margin-right:5px}
.fa fa-times{float:right;padding-right:45px}
.label-head a{font-size:14px;background:#eee;padding:2px 10px;border-radius:2px;color:#337ab7;display:inline-block;font-weight:400}
.label-head:before{content:'\f02c';font-family:FontAwesome;color:#333;margin-right:-8px;text-transform:uppercase;font-size:15px;padding:3px 8px}
.label-head a:hover {text-decoration:underline}
.info{float:left;width:100%;background:#f2f2f2;min-height:50px;margin-top:-45px;padding:5px}
#view{padding:0;margin:0;border:0;position:fixed;top:50px;left:0;right:0;bottom:0;width:100%;height:93%;background:url(https://lh6.googleusercontent.com/-inJ_59r9FJ0/UuEXr4IQn0I/AAAAAAAAGWg/OSIKdAm4Wwg/s1600/loader.gif)no-repeat center center;}
#tab-demo{width:100%;height:50px;top:0;left:0;background:#222;color:#fff;font:normal 13px Arial,sans-serif;z-index:99999;position:fixed}
.closebutton{background:#0379c4 url(https://lh6.googleusercontent.com/-yDP_V5EQ09U/UuC7diNnwYI/AAAAAAAAGVw/Hez_ZcpmFLE/s1600/close.png)no-repeat 15px 50%;text-align:center;height:50px;padding:0 20px 0 50px;position:fixed;top:0;right:0;line-height:50px;cursor:pointer;color:#fff}
a.closebutton {color:white;text-decoration:none;}
.closebutton:hover {background:#11b75b url(https://lh6.googleusercontent.com/-yDP_V5EQ09U/UuC7diNnwYI/AAAAAAAAGVw/Hez_ZcpmFLE/s1600/close.png)no-repeat 15px 50%}
.dlbutton:hover {background:#11b75b url(https://lh6.googleusercontent.com/-MHVCwQQDhzQ/UuC7dgZiqvI/AAAAAAAAGV0/llC0hES500M/s1600/download.png)no-repeat 15px 50%}
.dlbutton,a.dlbutton{background:url(https://lh6.googleusercontent.com/-MHVCwQQDhzQ/UuC7dgZiqvI/AAAAAAAAGV0/llC0hES500M/s1600/download.png)no-repeat 15px 50%;text-align:center;height:50px;padding:0 20px 0 55px;position:fixed;top:0;right:158px;line-height:50px;cursor:pointer;color:#fff;text-decoration:none}
.demologo,a.demologo{background:url(https://lh6.googleusercontent.com/-3Z-HuFDHOOg/UuDyIp8DZaI/AAAAAAAAGWQ/81Ev67C13hM/s1600/ki-logo.png)no-repeat left center;padding-left:55px;font-size:17px;font-weight:400;font-family:Arial,Sans-serif;text-transform:uppercase;line-height:50px;left:15px;position:fixed;color:#fff;text-decoration:none}
a.demo{padding:5px 35px;background:#337ab7;font-weight:400;border-radius:3px;font-size:14px;display:inline-block;text-transform:uppercase;margin-bottom:20px;box-shadow:0 2px 4px rgba(0,0,0,.2);color:#fff}
a.download{padding:5px 15px;color:#fff!important;background:#337ab7;border-radius:3px;font-weight:400;font-size:14px;display:inline-block;text-transform: uppercase;margin-bottom:10px;box-shadow:0 2px 4px rgba(34,36,38,0.35)}
a.demo:hover, a.download:hover{background:#3378b3!important;text-decoration:none!important}
.post-notice{background:rgba(11,60,93,0.8);color:#fff;margin:15px 0;padding:10px 25px;box-shadow:2px 2px 2px #999}
.follow-by-email-inner {position:relative}
.FollowByEmail {padding:0!important;background:#fff!important}
.FollowByEmail p {color:#ff0000; font-size:14px;display:none}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{display:block;width:97%;height:34px;margin:10px auto;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;text-align:left}
.FollowByEmail .follow-by-email-inner .follow-by-email-address::placeholder {color:#999}
.FollowByEmail .follow-by-email-inner .follow-by-email-address:focus {border-color:#337ab7;box-shadow:0 0 5px #a8d8f5}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit{position:absolute;right:4px;border:0;color:#fff;background:#337ab7;top:0;height:34px;width:52px;border-radius:0 4px 4px 0;cursor:pointer;transition:all .3s ease}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover {background:rgba(0,0,0,.6)}
.widget#HTML2 ,.widget.PopularPosts,.widget#Label1 {box-shadow:none!important}
#Label1 {max-height:350px; overflow:auto!important}
#Label1 a {text-transform: none; width: 100%;display: block;font-size: 14px;padding: 7px 0;}
.width100 {width:100%!important;}
.disappear {display:none!important}
#nav2 span { font-size: 11px;
text-transform: none;
position: absolute;
background-image: linear-gradient(90deg,#f44336 0,#e91e63 100%);
display: inline-block;
line-height: 1;
top: 9px;
padding: 1px 5px;
border-radius: 2px;
right: -2px;}
#unblocker{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#fff;opacity:0.980000019073486328125;display:block;z-index:9999;overflow:hidden}
#unblocker p{color:#666;text-align:center;margin:15% auto;font-size:1.5rem;max-width:750px;display:table;line-height:1.5}
#unblocker p:before{font-family:fontawesome;text-align:center;padding:0;font-weight:400}
#unblocker p:before{content:'\f023';background:#1DBF69;color:#fff;display:block;width:2em;height:2em;line-height:2em;font-size:2.5rem;clear:both;border-radius:100%;margin:0 auto 3%}
#unblocker p:hover:before{content:'\f13e'}#unblocker p a,#unblocker p i{font-size:15px}
#unblocker p a,#unblocker p i{font-size:15px}
#unblocker ~ *{display:none}
]]></b:skin>
<b:if cond='data:blog.pageType == "static_page"'>
<style>
#main-wrapper {width:100%}
#sidebar-wrapper {display:none}
</style>
</b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<style>
#HTML1 {display:none!important}
</style>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<style>
#HTML6 {display:none!important}
.feat_button {position:fixed;right:45px;top:30%;display:none;z-index:999}
.feat_button a {display:block; position:relative}
.feat_button a:before {content:'';font-family:fontawesome;border: 2px solid #999;width: 35px;height: 35px;line-height: 35px;display: block;font-size: 20px;border-radius: 50%;text-align: center;color: #666;transition:all 0.2s ease;-moz-transition:all 0.2s ease;-webkit-transition:all 0.2s ease;-o-transition:all 0.2s ease;margin-bottom:8px;}
.feat_button a:hover:before {border-color:#337ab7;color:#337ab7;box-shadow: 0 3px 10px #555;}
.feat_button > a > span {position: absolute;width: 108px;background: #337ab7;color: #fff;padding: 5px 10px;border-radius: 50px;right: 40px;
top: 5px;z-index: 9999;text-align: center;opacity:0;visibility:hidden;transform: scale(0.8)}
.feat_button > a:hover > span {opacity: 1; visibility: visible; transform: scale(1)}
a.full_width:before {content:'\f085';}
a.comment_button:before {content:'\f0e6';}
a.back_top:before {content:'\f062';}
a.back_bottom:before {content:'\f063';}
a.dropdown-list_buttonx:before {content:'\f0c9'}
a.dropdown-list_button {display:none;}
#notification {padding: 10px;border: 1px dashed #ddd;margin: 20px 0;background: #f1f1f1;}
#notification p {margin:0}
#notification a:hover {text-decoration:underline;}
/* Khung code */
code{display:inline-block;position:relative;background:#fff;max-height:400px;font-size:14px;color:#424242;text-align:left;overflow:auto;border:1px solid #d3d6db;margin:0;padding:10px;white-space:pre-line;width:97%;padding-top:40px;}
code::-webkit-scrollbar-track{background:transparent;border:0px;}
code::-webkit-scrollbar{width:0px;}
code::-webkit-scrollbar-thumb{background:transparent;}
blockquote{font-size:13px;color:#424242;display:inline-block;position:relative;margin:2px 0;border:1px solid #ddd;border-radius:3px;padding:0 5px;background:#fff;transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease}
blockquote:hover {border-color:#999;background:#fff}
blockquote:before{position:absolute;content:'Double click to select';display:table;bottom:27px;left:0;right:0;background:#337ab7 ;color:#fff;padding:6px;border-radius:2px;font-size:85%;line-height:1;opacity:0;visibility:hidden;transform:scale(0.8);z-index:2;transition:all .2s;width:max-content}
blockquote:before::after {content:'';display:inline-block;width:0;height:0;border:7px solid rgba(255,255,255,0);position:absolute;top:-15px;right:10px;z-index:999;border-bottom:8px solid #fff;}
blockquote:hover:before{transform:scale(1.0);opacity:1;visibility:visible;transition:all .2s}
blockquote cite{display:block;margin:.5em 0 0 .5em;color:#777}
code:before{position:absolute;content:'Double click and Ctrl+C to copy code';top:0;left:0;right:0;color:#666;padding:9px 0;font-size:13px;line-height:1;opacity:1;visibility:visible;z-index:2;transition:all .4s;text-align:right;padding-right:10px}
code:hover:before{opacity:0;visibility:hidden;top:-25px}
code:after{content:"Code For You";color:#424242;position:absolute;top:0;left:0;right:0;visibility:visible;opacity:1;transition:all .2s;text-align:left;border-bottom:1px dashed #ddd;padding:3px 0;font-size:14px;letter-spacing:1px;padding-left:11px}
code.html-pc:after {content: "HTML";color: #337ab7;}
code.css-pc:after {content: "CSS";color:#45a25d}
code.js-pc:after {content: "Javascript";color:#4ba2a7}
code.jquery-pc:after {content: "Jquery";color:#97ab28}
/*code:hover:after {opacity: 0; visibility: hidden}*/
#post-tags {padding: 10px 0;}
.post-tags{padding: 0 3px;border: 1px solid #337ab7;border-radius: 3px;display: inline-block;margin: 3px 0;background: #337ab7;color: #fff;text-decoration: none;font-size: 13px;line-height: 1.6;}
.post-tags:hover {background:#2e6da2;text-decoration:none!important;color:#fff!important}
#dropdown-list {position:fixed;left:50%;top:50%;z-index:9999;transform:translate(-50%,-50%);width:300px;display:none;text-align: right;}
.dropdown-list_menu {display: none;margin: 0px!important;padding: 10px!important;background: rgb(255, 255, 255);border: 3px solid #999;text-align: left;}
.dropdown-list_menu h5 {margin: 0;font-size: 20px;text-transform: uppercase;text-align: center;letter-spacing: 1px;}
@media all and (max-width:600px){#dropdown-list {display:none!important}}
.post-body{
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer */
-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
-webkit-user-select: none; /* Chrome, Safari, and Opera */
-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
pre,code,blockquote,input,textarea{
-webkit-user-select:text;
-khtml-user-select:text;
-moz-user-select:text;
-ms-user-select: text;
-webkit-touch-callout: text;
}
fieldset {display: none;border: 1px solid rgba(68, 34, 68, 0.3);border-radius:5px;margin:0 2px;padding: 0.35em 0.75em 0.65em 0.75em;margin-top:10px}
legend {display: block; padding: 0 5px;font-size: 17px;text-transform: uppercase;}
.post-body li {list-style-type:square!important;margin-left:40px!important}
.tr-caption {text-align: center;
font-size: 14px;
font-style: italic;}
/*.post-body a {border-bottom: 1px solid #e0e2e1;
margin-top: -1px;
padding: 1px 5px;color:#f55b2c}
.post-body a:hover {border-color:#f55b2c;background:#fff7a5;color:#424242}*/
.post-body a:hover {text-decoration:underline}
.post-body ol li{position:relative;display:block;}
.widget .post-body ol {padding:0}
.post-body ol li:before{content:'';position:absolute;left:-2.5em;top:55%;margin-top:-1em;height:1.5em;width:1.5em;line-height:1.5em;border:2px solid;border-radius:50px;color:#337ab7;text-align:center}
.post-body ol li:nth-child(1):before{content:'1'}
.post-body ol li:nth-child(2):before{content:'2'}
.post-body ol li:nth-child(3):before{content:'3'}
.post-body ol li:nth-child(4):before{content:'4'}
.post-body ol li:nth-child(5):before{content:'5'}
.post-body ol li:nth-child(6):before{content:'6'}
.post-body ol li:nth-child(7):before{content:'7'}
.post-body ol li:nth-child(8):before{content:'8'}
.post-body ol li:nth-child(9):before{content:'9'}
.post-body ol li:nth-child(10):before{content:'10'}
.post-body ol li:nth-child(11):before{content:'11'}
.post-body ol li:nth-child(12):before{content:'12'}
</style>
</b:if>
<style type='text/css'>
/*----Responsive Design----*/
@media screen and (max-width: 1138px) {
#outer-wrapper{width:100%;margin-top:30px;}
.row{width:96%}
#main-wrapper{width:69%}
#sidebar-wrapper{width:31%}
}
@media screen and (max-width: 1025px) {
.index .post {width:31%;}
.meta-post {font-size:11px;}
}
@media screen and (max-width: 980px) {
#menu, .feat_button{display:none!important}
.mobile-menu{display:block}
li.li-home{float:left;display:inline-block}
#content-wrapper{margin:0 auto}
#main-wrapper{width:100%}
#sidebar-wrapper{width:100%;padding: 0;margin: 15px 0 0;}
#blog-pager{margin-bottom:40px}
}
@media screen and (max-width: 880px) {
#nav1,#menu-main-nav, #nen-xem{display:none!important}
.selectnav{display:block;color:#eee}
.tm-menu{float:left;width:20%}
.tm-menu .selectnav{padding:0 5px;height:30px!important; width: 110px;font-size:13px;line-height:19px;border-radius:2px!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;margin-top:5px}
.header-menu #menu .selectnav{padding:0 10px!important;font-size:14px;height:35px;line-height:26px;margin-left:10px;float:left;border-radius:2px!important;margin-top:7px}
#login-blog{display:none!important}
#nav-search{width:100%!important}
}
@media screen and (max-width: 600px) {
.block-image{width:125px;height:85px;margin:0}
.block-image .thumb{border-radius:3px 0 0 3px;}
.index .date-header{float:none}