forked from nguyenphu04723/ThemeBlogspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startuanv3.0.xml
1877 lines (1863 loc) · 215 KB
/
startuanv3.0.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:templateUrl='indie.xml' b:version='2' class='v2' expr:dir='data:blog.languageDirection' xml:lang='vi' 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>
<script type='text/javascript'>
//<![CDATA[
var url_index = window.location.href.indexOf('url=');if (url_index != -1){url_go = window.location.href;url_go = url_go.substring(url_index + 4);setTimeout(function () {window.location.href = url_go;}, 100);}
//]]></script>
<!-- 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'/>
<link href='//i.imgur.com' rel='dns-prefetch'/>
<link href='//cdn.staticaly.com' rel='dns-prefetch'/>
<meta content='public' http-equiv='Cache-control'/>
<meta content='text/html; charset=ISO-2022-JP' http-equiv='Content-Type'/>
<meta content='text/javascript' http-equiv='Content-Script-Type'/>
<meta content='text/css' http-equiv='Content-Style-Type'/>
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'/>
<meta content='blogger' name='gener ator'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<link expr:href='data:blog.homepageUrl + "favicon.ico"' rel='icon' type='image/x-icon'/>
<!-- CODE META CANONICAL -->
<link expr:href='data:blog.url' rel='canonical'/>
<b:if cond='data:blog.searchLabel'>
<link expr:href='data:label.url + "?&max-results=9"' rel='canonical'/>
</b:if>
<!-- GENERAL META -->
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<title><data:blog.title/></title>
<meta expr:content='data:blog.metaDescription' name='description'/>
<b:else/>
<b:if cond='data:view.isSearch and !data:view.isLabelSearch and !data:blog.searchQuery'>
<title><data:messages.morePosts/> - <data:blog.title/></title>
<meta expr:content='data:messages.morePosts' name='description'/>
<b:else/>
<b:if cond='data:blog.searchQuery'>
<title><data:blog.pageName/></title>
<meta expr:content='data:blog.pageName' name='description'/>
<b:else/>
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/></title>
<meta expr:content='data:blog.metaDescription' name='description'/>
<b:else/>
<b:if cond='data:blog.pageType == "static_page"'>
<title><data:blog.pageName/></title>
<meta expr:content='data:blog.metaDescription' name='description'/>
<b:else/>
<b:if cond='data:blog.pageType == "archive"'>
<title><data:blog.pageName/></title>
<meta expr:content='"" + " " + data:blog.pageName' name='description'/>
<b:else/>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Không tìm thấy trang - <data:blog.title/></title>
</b:if></b:if></b:if></b:if></b:if></b:if></b:if>
<b:if cond='data:blog.searchLabel'>
<title><data:blog.pageName/> - <data:blog.title/></title>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
<link expr:href='data:blog.canonicalUrl' rel='canonical'/>
<meta content='Star Tỉnh IT, nguyễn tỉnh, startinh, startinhit,star tỉnh blog, nguyễn tỉnh blog, nguyentinh, nguyen tinh, psd cmnd, psd cmnd nguyễn tỉnh, thủ thuật facebook, cmnd nguyễn tỉnh, psd ảnh bìa' name='keywords'/>
<meta content='https://www.facebook.com/startinhit' property='article:author'/>
<meta content='Nguyễn Tỉnh' name='author'/>
<!-- ROBOTS -->
<meta content='noarchive,index,follow' name='googlebot'/>
<!-- LIVE HEADER CONFIG -->
<meta content='D5121726ADDFA3D11C8E13B44A13B286' name='msvalidate.01'/>
<meta content='NGtvEUFWf0Z4lO1otRaCBvAD301LfVwGduYWQ_YVoNU' name='google-site-verification'/>
<!-- RSS links -->
<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'/>
<!-- Local SEO meta start -->
<meta content='Star Tỉnh IT - Nguyễn Tỉnh Blog' name='DC.title'/>
<meta content='VN-33' name='geo.region'/>
<meta content='Star Tỉnh IT - Nguyễn Tỉnh Blog' name='geo.placename'/>
<meta content='12.469538;108.368264' name='geo.position'/>
<meta content='12.469538, 108.368264' name='ICBM'/>
<meta content='vi,en' http-equiv='content-language'/>
<link href='https://www.nguyentinhblog.com' hreflang='vi-vn' rel='alternate'/>
<!-- Cache-control config -->
<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'/>
<b:if cond='data:blog.pageType == "index"'>
<!-- TWITTER OPEN GRAPH -->
<meta content='summary' name='twitter:card'/>
<meta content='@startinhit' name='twitter:site'/>
<meta content='@startinhit' name='twitter:creator'/>
<meta expr:content='data:blog.title' name='twitter:title'/>
<meta expr:content='data:blog.canonicalUrl' name='twitter:url'/>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<meta content='https://i.imgur.com/EAPPCQ5.png' name='twitter:image'/>
<!-- FACEBOOK OPEN GRAPH -->
<meta content='309786216308999' property='fb:app_id'/>
<meta content='100015116920118' property='fb:admins'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta content='website' property='og:type'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta expr:content='data:blog.title' property='og:title'/>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<meta content='https://i.imgur.com/EAPPCQ5.png' property='og:image'/>
<meta expr:content='data:blog.title' property='og:image:alt'/>
<!-- GOOGLE OPEN GRAPH -->
<meta content='website' property='og:type'/>
<meta expr:content='data:blog.canonicalUrl' itemprop='og:url'/>
<meta expr:content='data:blog.title' itemprop='og:headline'/>
<meta expr:content='data:blog.metaDescription' itemprop='og:description'/>
<meta content='https://i.imgur.com/EAPPCQ5.png' property='og:image'/>
</b:if>
<b:if cond='data:blog.url == data:post.url'>
<!-- TWITTER OPEN GRAPH -->
<meta content='summary' name='twitter:card'/>
<meta content='@startinhit' name='twitter:site'/>
<meta content='@startinhit' name='twitter:creator'/>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<meta expr:content='data:blog.canonicalUrl' name='twitter:url'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<b:else/>
<meta expr:content='data:blog.title' property='twitter:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' name='twitter:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' name='twitter:image'/>
<b:else/>
<meta content='https://i.imgur.com/EAPPCQ5.png' name='twitter:image'/>
</b:if>
</b:if>
<!-- FACEBOOK OPEN GRAPH -->
<meta content='309786216308999' property='fb:app_id'/>
<meta content='100015116920118' property='fb:admins'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta content='article' property='og:type'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta expr:content='data:blog.pageName' property='og:title'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
<meta expr:content='data:blog.title' property='og:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postThumbnailUrl' property='og:image'/>
<b:else/>
<meta content='https://i.imgur.com/EAPPCQ5.png' property='og:image'/>
</b:if>
</b:if>
<!-- GOOGLE OPEN GRAPH -->
<meta content='article' property='og:type'/>
<meta expr:content='data:blog.canonicalUrl' itemprop='og:url'/>
<meta expr:content='data:blog.pageName' itemprop='og:headline'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' itemprop='og:description'/>
<b:else/>
<meta expr:content='data:blog.title' itemprop='og:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' property='og:image'/>
<b:else/>
<meta content='https://i.imgur.com/EAPPCQ5.png' property='og:image'/>
</b:if>
</b:if>
</b:if>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<!-- Google Search Meta -->
<script type='application/ld+json'>
{
"@context" : "http://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": "http://schema.org",
"@type": "Organization",
"url": "<data:blog.canonicalUrl/>",
"logo": "https://i.imgur.com/F5xk7Ah.png"
}
</script>
<!-- Google Profile -->
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "Person",
"name": "<data:blog.title/>",
"url": "<data:blog.canonicalUrl/>",
"sameAs": [
"https://www.facebook.com/startinhit",
"https://twitter.com/startinhit",
"https://www.youtube.com/startinhit",
"https://plus.google.com/114712649307042454283"
]
}
</script>
<!-- Google Sitelinks Searchbox -->
<script type='application/ld+json'>
{
"@context":"http://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>
<!--[if IE]>
<script type='text/javascript'>
//<![CDATA[
(function(){var html5=("abbr,article,aside,audio,canvas,datalist,details,"+"figure,footer,header,hgroup,mark,menu,meter,nav,output,"+"progress,section,time,video").split(',');for(var i=0;i<html5.length;i++){document.createElement(html5[i])}try{document.execCommand('BackgroundImageCache',!1,!0)}catch(e){}})()
//]]>
</script>
<![endif]-->
<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("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");loadCSS("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Condensed:300,400,700")
//]]>
</script>
<script src='//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js' type='text/javascript'/>
<b:skin><![CDATA[
/*
Template Name: Template Blogspot Startuan v3
Design: Trương Ngọc Tuấn
Redesigned and developed: Nguyễn Tỉnh
URL: https://www.nguyentinhblog.com
*/
/* Variable definitions
====================
<Group description="New Comment Required – Dont edit">
<Variable name="body.background" description="Body Background" type="background" color="#000" default="#000 none repeat scroll top left" value="#000 none repeat scroll top left"/>
<Variable name="body.font" description="Font" type="font" default="normal normal 14px Arial, sans-serif" value="normal normal 14px Arial"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#222" value="#222222"/>
<Variable name="body.text.font" description="2" type="font" default="$(body.font)" value="normal normal 14px Arial, sans serif"/>
<Variable name="posts.background.color" description="6" type="color" default="#fff" value="#ffffff"/>
<Variable name="body.link.color" description="7" type="color" default="#2196f3" value="#2196f3"/>
<Variable name="body.link.visited.color" description="8" type="color" default="$(body.link.color)" value="#2196f3"/>
<Variable name="body.link.hover.color" description="9" type="color" default="$(body.link.color)" value="#2196f3"/>
<Variable name="blog.title.font" description="10" type="font" default="$(robotoBold45)" value="$(robotoBold45)"/>
<Variable name="blog.title.color" description="11" type="color" default="#fff" value="#ffffff"/>
<Variable name="header.icons.color" description="12" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.font" description="13" type="font" family="$(body.font.family)" size="$(body.font.size)" default="700 normal $(size) $(family)" value="700 normal $(size) $(family)"/>
<Variable name="tabs.color" description="14" type="color" default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="15" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="16" type="color" default="$(posts.background.color)" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="17" type="color" default="$(posts.text.color)" value="#222222"/>
<Variable name="tabs.overflow.selected.color" description="18" type="color" default="$(posts.title.color)" value="#212121"/>
<Variable name="posts.title.color" description="19" type="color" default="#212121" value="#212121"/>
<Variable name="posts.title.font" description="20" type="font" default="$(robotoBold22)" value="$(robotoBold22)"/>
<Variable name="posts.text.font" description="21" type="font" default="$(body.text.font)" value="normal normal 14px 'roboto', sans-serif"/>
<Variable name="posts.text.color" description="22" type="color" default="$(body.text.color)" value="#222222"/>
<Variable name="posts.icons.color" description="23" type="color" default="#707070" value="#707070"/>
<Variable name="labels.background.color" description="24" type="color" default="$(sidebar.backgroundColorTopHD)" value="$(sidebar.backgroundColorTopHD)"/>
</Group>
*/
]]></b:skin>
<style>
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}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body{font-family:Arial,sans-serif;line-height:1;display:block}
*{margin:0;padding:0}
html{display:block}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{background:transparent}
table{border-collapse:collapse;border-spacing:0}
ul{list-style:none}
ul,dl{margin:0}
.widget-item-control,.descriptionwrapper,.author-info,.navbar,.post-feeds,.feed-links{display:none!important}
.section,.widget{margin:0;padding:0}
strong,b{font-weight:bold;padding:0}
cite,em,i{font-style:italic}
a:link{color:#333;text-decoration:none;outline:0}
a:visited{color:#222;text-decoration:none}
.post-body a:link{color:#00a26d}
a:link:hover{color:#00a26d;text-decoration:none}
a:visited:hover{color:#00a26d;text-decoration:none}
a img{border:0;border-width:0;outline:0}
img{max-width:100%;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;border:1px solid #ddd;border-radius:3px;padding:0;margin:0;transition:all .3s}
kbd:hover{border-color:#aaa;color:#222}
p,blockquote,pre,table,figure,hr,form,ol,ul,dl{margin:0}
hr{height:1px;border:0;background-color:#999}
h1,h2,h3,h4,h5,h6{font-family:Arial,sans-serif;font-weight:300;line-height:normal;margin:0}
h1{font-size:200%}
h2{font-size:130%}
h3{font-size:130%;padding-top:10px;color:#00a26d}
h4{font-size:120%}
h5{font-size:110%}
h6{font-size:100%}
input,button,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline}
textarea{width:100%;display:block;box-sizing:border-box}
pre,code{font-family:"Segoe UI",Arial,sans-serif;color:#444}
pre{white-space:pre;word-wrap:normal;overflow:auto}
blockquote{position:relative;line-height:24px;margin:15px 0;border-left:3px solid #ccc;font-weight:400;padding:0 18px}
*:focus{outline:0!important}
ul,dl{margin:0}
ol{list-style:decimal outside}
ul{list-style:disc outside}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
li{margin:0}
dt{font-weight:bold}
dd{margin:0}
ol{counter-reset:li;list-style:none;padding:0;margin-bottom:1em;text-shadow:0 1px 0 rgba(255,255,255,.5)}
ol ol{margin:0}
img{max-width:100%;height:auto;border:0}
table{max-width:100%;width:100%;margin:1.5em auto}
table.section-columns td.first.columns-cell{border-left:none}
table.section-columns{border:0;table-layout:fixed;width:100%;position:relative}
table.columns-2 td.columns-cell{width:50%}
table.columns-3 td.columns-cell{width:33.33%}
table.columns-4 td.columns-cell{width:25%}
table.section-columns td.columns-cell{vertical-align:top}
table.tr-caption-container{padding:4px;margin-bottom:.5em}
td.tr-caption{font-size:80%}
body{background:#ccc;margin:0;margin:0;padding:0;color:#333;font-family:Arial,sans-serif;font-size:14px;font-weight:400;text-align:left}
.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:"";display:table}
.widget ul{padding:0}
.clear{clear:both}
.clear:after{visibility:hidden;display:block;font-size:0;content:"";clear:both;height:0}
.post ol li{position:relative;display:block;padding:0;margin:.5em 0 .5em 2.5em;background:#fff;color:#444;text-decoration:none;transition:all .3s ease-out}
.cycle-slideshow,.bgw,.post,#sidebar-inner h2,.sidebar .widget,.widget-content,#blog-pager a,.ch-muc,.related-post-style-3 .related-post-item,.cmt-title,.related-post h4,#top-comment,.post-title-2,.img-thumbnail,#comments{border-radius:5px}
.related-post{margin:10px 0 0;position:relative}
.cmt-title,.related-post h4{text-transform:uppercase;text-align:left;font-weight:700;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);background:#fff;position:relative;padding:10px;margin:7px 0 7px}
.related-post-style-3 .related-post-item{display:inline-block;float:left;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);width:49%;margin:0 0 5px 5px;height:auto;padding:0;position:relative;overflow:hidden;background:#fff}
.related-post-style-3{list-style:none;word-wrap:break-word;margin-right:-5px;margin-left:-5px}
.related-post-style-3 .related-post-item{display:inline-block;float:left;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);width:49%;margin:0 0 5px 5px;height:auto;padding:0;position:relative;overflow:hidden;background:#fff}
.related-post-style-3 li a{font-weight:700!important;font-size:14px;line-height:1.4em}
.related-post-style-3 .related-post-item-thumbnail{display:block;margin:0;width:40%;height:100px;float:left;object-fit:cover}
.related-post-item-tooltip{overflow:hidden;width:50%;float:left;text-overflow:ellipsis;padding:10px}
@media screen and (max-width:480px){.labels{display:none}.related-post-style-3 .related-post-item{width:100%!important}.related-post-style-3 .related-post-item-thumbnail{height:100px!important}}
.post ol li:before{content:counter(li);counter-increment:li;position:absolute;left:-2.5em;top:50%;margin-top:-1em;height:1.5em;width:1.5em;line-height:1.5em;border:2px solid;border-radius:50px;color:#28b8d0;text-align:center}
.image_src,.not-show,.lande{position:absolute;top:-9768px;left:-9768px}
.post-body table td,.post-body table caption{padding:10px;text-align:left;vertical-align:top}
.post-body table th{padding:10px;text-align:left;vertical-align:top}
.post-body table.tr-caption-container{border:1px solid #eee}
.post-body th{font-weight:700}
.post-body table caption{border:0;font-style:italic}
.post-body td,.post-body th{vertical-align:top;text-align:left;font-size:13px;padding:3px 5px;border:1px solid #eee}
.post-body td:hover{background:#fefefe}
.post-body th{background:#fafafa}
.post-body th:hover{background:#fdfdfd}
.post-body table.tr-caption-container td{border:0;padding:8px}
.post-body table.tr-caption-container,.post-body table.tr-caption-container img,.post-body img{max-width:100%;height:auto}
.post-body td.tr-caption{color:#444;font-size:80%;padding:0 8px 8px!important}
.post-body li{list-style-type:square}
.footer .widget,.sidebar .widget{overflow:hidden;margin-bottom:10px}
.PopularPosts .item-title a{color:#333;line-height:1.2;font-size:16px}
.PopularPosts .item-title a:hover,#random-posts li div a:hover{color:#00a26d}
.PopularPosts ul{margin:0;list-style:noneer-reset:num}
.PopularPosts ul li{counter-increment:num;position:relative;margin-bottom:10px}
.PopularPosts ul li:before,#random-posts li:before{content:counter(num)!important;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);display:block;position:absolute;background-color:#333;color:#fff!important;width:22px;height:22px;line-height:22px;text-align:center;bottom:7px;right:0;border-radius:3px;padding-right:0!important}
.PopularPosts .item-snippet{font-size:11px;color:#101010;overflow:hidden;text-align:justify;margin-bottom:3px}
.PopularPosts .item-thumbnail{box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);border-radius:3px;float:left;margin:0;width:80px;height:60px;overflow:hidden;margin-right:10px}
.PopularPosts .item-thumbnail img{float:left;margin:0;width:80px;height:60px;overflow:hidden}
.PopularPosts .item-title{font-weight:400}
.PopularPosts .item-snippet{font-size:11px;color:#888;overflow:hidden;text-align:justify;display:none}
.popular-posts .new:before{content:"New"!important;width:42px;background:#00a26d!important}
.PopularPosts ul li:nth-child(1):before{background:#f44336}
.PopularPosts ul li:nth-child(2):before{background:#ffc107}
.PopularPosts ul li:nth-child(3):before{background:#009688}
.bt-top{border-radius:5px;visibility:hidden;background-color:#111;width:40px;height:40px;text-align:center;position:fixed;bottom:10px;right:10px;z-index:999;cursor:pointer;opacity:0;-webkit-transform:translateZ(0);transition:all .3s}
.bt-top.show{visibility:visible;opacity:1}
.bt-top i{font-size:25px;color:#00a26d;position:absolute;top:7px;left:12.5px}
.bt-top:hover{border-radius:30px;opacity:1}
.blog-footer-widgets{color:#ccc;clear:both;background:#111}
#bp_toc a{color:#222}
#bp_toc a:hover{color:#333}
#footer-colleft{width:68%;float:left;margin:0;padding:0}
#st-postleft{width:69%;float:left;margin:0;padding:0;position:relative;overflow:hidden}
#st-sidebar-wrapper{width:30%;float:right;margin:0;padding:0}
#colleft1{width:48%;float:left;margin:0;padding:0}
#colleft2{width:48%;float:right;margin:0;padding:0}
#colright{width:30%;float:right;margin:0;padding:0}
#st-post-wrapper{max-width:1200px;width:100%;margin:0 auto;padding:0 10px;overflow:hidden;margin-top:65px}
#blog-pager a{font-weight:700;background:#fff;color:#333!important;width:100%;height:43px;text-align:center;text-transform:uppercase;display:inline-block;line-height:43px;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05)}
#blog-pager a:focus{text-indent:-999999px;background:#fff url(https://lh5.googleusercontent.com/proxy/4bAJKgSJXhE1aVMmkJmOSE2GQuwAmXO58yABt59-J5wvyCx6Z4FyO-QfMOhJv1ledDFLN7PFrFejuAdq5rGy9bR5v4ZxRMItug=s0-d) no-repeat center 50%}
.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}
.navbar-form{margin-left:0;margin-right:0;padding:10px 15px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;text-align:center}
.form-control{display:block;width:100%;padding:10px 10px;font-size:15px;color:#2c3e50;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}
.devsite-nav{font-size:13px}
.devsite-site-footer-nav{padding:20px 4px;text-align:center}
.devsite-full-site-width{margin:0 auto;max-width:1400px}
.devsite-nav ul{list-style-type:none;padding:0}
.titlewrapper{color:#eee;transition:all .4s ease-in-out}
h2.post-title a,h2.post-title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
div#header-inner{float:left;width:190px;margin-left:30px}
.button{margin:10px 5px;background-color:#4e92df;cursor:pointer;font-family:"Roboto",arial,sans-serif;border-radius:2px;box-shadow:0 0 2px 0 rgba(0,0,0,0.12),0 2px 2px 0 rgba(0,0,0,0.24);font-weight:500;text-transform:capitalize;padding:7px 10px;display:inline-block;color:#fff!important}
#st-ads{padding:10px 0}
.accordion{width:100%;max-width:360px}
.accordion .link{cursor:pointer;display:block;padding:10px 15px;color:#333;font-size:14px;font-weight:700;position:relative;-webkit-transition:all .4s ease;-o-transition:all .4s ease;transition:all .4s ease}
.accordion .open .link{background:#eeeeee75}
.accordion .link:hover{background:#eeeeee75}
.accordion li i{font-size:16px;margin-right:3px;color:#00a26d;-webkit-transition:all .4s ease;-o-transition:all .4s ease;transition:all .4s ease}
.accordion li.open i.fa-chevron-down{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}
i.fa.fa-chevron-down{right:20px;position:absolute;top:25px;font-size:12px}
.submenu{display:none;font-size:14px;color:rgba(255,255,255,0.8)}
.submenu a{background:#fff;display:block;text-decoration:none;color:#333;padding:5px;padding-left:35px;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease}
.submenu a:hover{background:#ddd;color:#333!important}
.st-social{border:0!important;background:transparent!important}
.st-social.fb{margin:0 3px}
a.st-social.fb i{color:#4565a2!important}
.st-social.gg i{color:#df4a32!important}
.box-search{text-align:center;z-index:99;width:auto;position:absolute;left:25%;right:25%;top:30%;font-size:35px}
#st-link,#open-search{opacity:0;visibility:hidden}
#st-link:target,#open-search:target{background:rgba(0,0,0,.8);opacity:1;visibility:visible;position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:999999999;transition:all .3s}
a.popup-close{position:absolute;top:0;right:0;font-weight:700;font-size:25px;line-height:50px;color:#fff;width:50px;height:50px;text-align:center;display:block}
a.popup-close:hover{color:#fff}
#search-box-pc{position:relative;margin:0}
#search-form-pc{overflow:hidden;margin:0}
#search-text{font-size:13px;color:#ddd;border-width:0;background:transparent}
#search-box-pc input[type="text"]{width:100%;padding:0;color:#fff;outline:0;font-family:inherit;display:block;opacity:1;border:0;background:transparent;height:100px;border-bottom:1px dashed;text-align:center}
#search-text-pc::-webkit-input-placeholder{color:#fff}
.st-hide{display:none}
#menu-st:hover i{color:#28b8d0}
div#menu-st{right:0;position:absolute}
#menu-st:hover i.fa-star{transform:rotate(240deg)}
.menu-social{padding:10px;border-top:1px solid #eee;border-bottom:1px solid #eee;text-align:center}
.menu-social i,.chuyenmuc i{border:2px solid;border-radius:50px;display:inline-block;height:30px;line-height:26.5px;transition:all .2s;width:30px;font-size:12.5px;color:#333}
.chuyenmuc li{position:relative;list-style:none;display:inline;text-align:center}
.chuyenmuc li a{text-decoration:none;font-family:monospace;font-size:14px;padding:7px 10px;border-radius:5px;margin:0;text-transform:uppercase;font-weight:400;transition:all .2s;letter-spacing:0}
.chuyenmuc a:hover,.btn-baimoi a{color:#fff!important;background:#00a26d;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05)}
.blog-pager i{display:block}
i.fa.fa-star.tuan{color:#fff;border:2px solid;border-radius:31px;padding:12px;font-size:22px}
.follow-by-email-inner table{margin:0}
input.follow-by-email-address{height:40px;border:1px solid #cbddef;border-left:4px solid #cbddef;background:#fff;-webkit-box-shadow:inset 0 0 0;box-shadow:inset 0 0 0;padding:0 20px 0 30px}
input.follow-by-email-submit{cursor:pointer;margin:10px 0;padding:0;width:100px;-webkit-appearance:none;background:#fff;color:#28b8d0;height:40px;outline:0;transition:all .3s ease-out;font-family:'Open Sans',Helvetica,sans-serif;text-decoration:none;font-weight:700;border:1px solid}
input.follow-by-email-submit:hover{background:#28b8d0;color:#fff;border-color:#4e92df}
.container{margin:0 auto}
@media(min-width:992px){.container{width:970px}}
@media(min-width:1200px){.container{width:1200px}.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4{position:relative;min-height:1px;padding-left:15px;padding-right:15px}}
@media(min-width:768px){.devsite-site-footer-column{width:calc((100% - 80px)/1)}.col-sm-4{float:left}.col-sm-4{width:33.33333333%}}
#navigator{width:250px;height:100%;position:fixed;top:55px;left:-250px;background:#fff;box-shadow:0 3px 5px rgba(0,0,0,.5);float:left;z-index:10}
#nav{width:250px;height:auto;display:block;margin:0;padding:0}
#nav{width:250px;height:auto;display:block;margin:0;padding:0}
.nav_tab{width:250px;height:50px;display:block}
.nav_tab a p{color:rgba(255,255,255,0.8);font-size:18px;padding:15px 0;text-align:center;transition:.35s ease;-webkit-transition:.35s ease;-moz-transition:.35s ease}
.nav_tab a p:hover{background:rgba(255,255,255,0.9);color:rgba(0,0,0,1);letter-spacing:2px;transition:.35s ease;-webkit-transition:.35s ease;-moz-transition:.35s ease}
.menu-icon{cursor:pointer;position:absolute;left:inherit!important;top:20px;z-index:10}
.menu-text{width:50px;height:35px;font-size:30px;color:#e67e22;display:block;position:fixed;top:0;left:50px;margin:10px;z-index:9}
.menu-icon div{width:20px;height:3px;background:#333;margin:0 0 2px;transition:all .35s;border-radius:0}
.on .line_one{transform:rotate(45deg) translate(4px,4px)}
.on .line_two{opacity:0}
.on .line_three{transform:rotate(-45deg) translate(3px,-3px)}
.post-header{border-top:1px solid #eee;font-size:13px;font-family:monospace;display:-webkit-box;border-bottom:1px solid #eee;padding:10px 0;margin-top:10px}
.widget.Label li a,.widget.Label li span{float:left;width:47%;overflow:hidden;border:1px solid;height:32px;line-height:31px;position:relative;margin-bottom:9px;margin-right:10px;padding-left:10px;border:1px solid;box-shadow:0 1px 1px rgba(255,255,255,0.35) inset,0px 1px 1px rgba(0,0,0,0.3);color:#28b8d0;border-radius:50px}
#pp-show:hover,#pp-hide:hover,.widget.Label li a:hover{background:#28b8d0;color:#fff!important}
.sidebar ul,.footer ul{list-style:none;margin:0;padding:0}
.widget.Label li span{color:#fff!important;background:#28b8d0}
#comments,.footer .widget,.sidebar .widget,.share-post i,#sidebar-inner h2,.bt-top{box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05)}
#sidebar-inner h2{color:#00a26d;font-weight:bold;font-size:15px;margin:0;text-transform:uppercase;margin-bottom:5px}
.devsite-site-footer-column{border-top:1px solid #616161;display:inline-block;margin:19px 20px 20px;text-align:left;vertical-align:top;width:calc((100% - 160px)/3)}
.devsite-site-footer-column li{margin:8px 0;padding:0}
.devsite-nav ul{list-style-type:none;padding:0}
ul,li{display:block;list-style:disc outside}
user agent stylesheetul,menu,dir{display:block;list-style-type:none}
.devsite-nav{font-size:13px}
.devsite-site-footer-nav{padding:20px 4px;text-align:center}
.devsite-site-footer-item a:hover,.devsite-site-footer-item a:focus{color:#fff;text-decoration:none}
.devsite-site-footer-item a{color:#9e9e9e}
#maia-footer-global{font-size:14px;line-height:2.19;padding:5px 10px;list-style:none}
#maia-footer-global a{color:#eee}
.footer-global{min-height:29px}
#terms{margin:0 7px 0 0}
.footer-global #privacy::before{content:"|";color:#808080}
.footer-global #privacy a{margin:0 0 0 7px}
.footer-global a:link{font:16px arial,sans-serif;color:#808080}
@media screen and (max-width:900px) and (min-width:500px){#footer-colleft{width:100%;float:left;margin:0;padding:0}#st-postleft{width:100%;float:left;margin:0;padding:0}#colleft1{width:48%;float:left;margin:0;padding:0}#colleft2{width:48%;float:right;margin:0;padding:0}#st-sidebar-wrapper{width:100%;float:left;margin:0;padding:0}#colright{width:100%;float:left;margin:0;padding:0}}
@media screen and (max-width:500px){#footer-colleft{width:100%;float:left;margin:0;padding:0}#st-postleft{width:100%;float:left;margin:0;padding:0}#colleft1{width:100%;float:left;margin:0;padding:0}#colleft2{width:100%;float:right;margin:0;padding:0}#st-sidebar-wrapper{width:100%;float:left;margin:0;padding:0}#colright{width:100%;float:left;margin:0;padding:0}}
.widget-content{width:100%}
.counter{color:#fff;font-size:30px;vertical-align:5%}
.email{border:solid #ccc 1px;padding:0}
#email{width:95%;float:left;line-height:17px;padding:5px;border:0}
#email-button{width:100%;padding:7px 5px;float:right;border:0;background:#00569e;color:#fff;font-weight:bold;cursor:pointer;line-height:25px}
.label-size a{display:inline-block;margin:0 5px 5px 0;text-decoration:none;background:#666;color:#fff;border-left:4px solid #ffa200;padding:3px}
.label-size a:hover{background:#888}
#pagelist{float:left;list-style:none;margin:0;max-width:425px}
#pagelist li{display:inline}
#pagelist a{color:#fff;text-decoration:none;margin-right:2px;padding:10px}
#pagelist .selected a,#pagelist a:hover{background:#ffa200}
.listlink{border-bottom:1px solid #ccc;display:block}
.listlink a:hover{padding-left:10px}
@media screen and (max-width:768px){.st-socialbar{display:none}#menu{position:relative}#menu ul{background:#838383;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none}#menu ul.menus{width:100%;position:static;border:0}#menu li{display:block;float:none;width:auto;text-align:left}#menu li a{color:#fff}#menu li a:hover{color:#333}#menu li:hover{background:#bababa;color:#333}#menu li:hover>a.prett,#menu a.prett:hover{background:#bababa;color:#333}#menu ul.menus a{background:#bababa}#menu ul.menus a:hover{background:#fff}#menu input,#menu label{position:absolute;top:0;left:0;display:block}#menu input{z-index:4}#menu input:checked+label{color:white}#menu input:checked ~ ul{display:block}}
.post blockquote{margin:5px 0 5px 0;padding:5px 10px;border-left:5px solid #999;background:#eee;font-style:italic;overflow:auto;max-height:300px}
.infopost{box-shadow:0 0 7px 1px #b5b5b5;line-height:20px;background:#16a085;width:100%;margin:0 20px 15px -20px;padding:5px 20px}
.infopost span{vertical-align:5%}
.infopost a{text-decoration:none;color:#fff}
.post img{max-width:100%}
.post{overflow:hidden;font-size:100%;position:relative;background:white;padding:10px}
.readmore img{float:left;margin-right:20px;box-shadow:-5px 0 5px #F1F1F1,5px 0 5px #F1F1F1,0 -5px 5px #F1F1F1,0 1px 5px #999;padding:5px;border:1px solid #eee}
.entry-content ul{margin-left:40px}
.post span{margin-left:0!important}
h3.post-title.entry-title{margin:15px 0 5px 0;padding:0;font-size:130%;font-weight:normal}
.richsnippets{line-height:1.7em;font-size:14px;margin:6px 0 0;padding:12px;background:#f8f8f8;border:1px solid #e2e2e2;color:#333;overflow:hidden}
#pnf{text-align:center}
#pnf h2{border:0}
#st-content-wrapper{width:100%;z-index:999;position:fixed;top:0}
#st-header-wrapper{box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);margin:0;padding:0 10px;width:100%;background:#fff;height:55px;line-height:35px}
.header{width:100%;margin:0 auto;height:55px;padding:10px 0;max-width:1200px;position:relative;text-align:center}
.header a img{text-align:center;z-index:1;position:relative;max-width:190px}
@media screen and (max-width:1100px){.chuyenmuc li a{font-size:12px;padding:5px 7px}.search-gg{right:200px!important}#search{font-size:13px!important;height:33px!important;top:2px!important}#search:focus{width:350px!important}.addthis{display:none}}
h2.post-title:hover,h1.post-title:hover{color:#28b8d0}
h2.post-title a,h1.post-title a,h2.post-title,h1.post-title{color:#333;z-index:0;margin:0}
h2.post-title a:hover,h1.post-title a:hover{color:#28b8d0}
.mobile-desktop-link a.home-link{font-size:0;font-weight:normal;background:0;padding:0}
@media only screen and (max-width:480px){i.fa.fa-star.tuan{display:none}.devsite-site-footer-column{margin:0;text-align:left;width:90%}}
@media only screen and (max-width:320px){.devsite-site-footer-column{margin:0;text-align:left;width:90%}}
#pluslike{padding:10px 0 0 10px}
#top-comment{box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);padding:0;margin-bottom:10px;overflow:hidden;font-size:100%;position:relative;background:white}
@media screen and (max-width:1000px){div#menu-st{display:none}div#header-inner{width:100%;margin:auto}.menu-icon{left:15px!important}}
.labels{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
.labels a{background:#222;padding:4px;font-size:12px;font-family:monospace;color:#fff!important;border-radius:3px;margin:0 2px;display:block;float:left}
.cycle-slideshow{width:100%;height:300px;display:block;text-align:center;z-index:0;overflow:hidden;margin-bottom:10px;position:relative}
.cycle-slideshow ul{width:100%;height:100%;height:100vh;padding:0}
.cycle-slideshow li{width:100%;height:100%;margin:0;padding:0}
.cycle-prev,.cycle-next{position:absolute;top:0;width:11%;opacity:.92;filter:alpha(opacity=92);z-index:800;height:100%;cursor:pointer;-o-transition:.25s;-ms-transition:.25s;-moz-transition:.25s;-webkit-transition:.25s;opacity:0}
.cycle-slideshow:hover .cycle-prev,.cycle-slideshow:hover .cycle-next{opacity:1}
.cycle-prev{left:10px;position:absolute;top:50%;margin-top:-15px;color:#fff;outline:0;z-index:999;border:1px solid #fff;height:30px;width:30px;font-size:16px;line-height:30px;text-align:center;border-radius:50%;-o-transition:.25s;-ms-transition:.25s;-moz-transition:.25s;-webkit-transition:.25s}
.cycle-next{right:10px;position:absolute;top:50%;margin-top:-15px;color:#fff;outline:0;z-index:999;border:1px solid #fff;height:30px;width:30px;font-size:16px;line-height:30px;text-align:center;border-radius:50%;-o-transition:.25s;-ms-transition:.25s;-moz-transition:.25s;-webkit-transition:.25s}
.slide-inside{display:table;vertical-align:middle;height:100%;padding:0;width:100%;background:transparent;transition:all .25s ease-out;-o-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-webkit-transition:all .25s ease-out}
.slide-inside:hover{background:rgba(255,255,255,.1)}
.slide-title,.slide-title a:hover{display:table-cell;vertical-align:bottom;background:linear-gradient(transparent,#111)}
.slide-image{background-position:center;background-size:cover;height:100%;width:100%}
.slide-cat{display:inline-block;margin:0 3px 13px;color:#fff;font-size:11px;text-transform:uppercase;letter-spacing:2px;padding-bottom:2px}
.slide-h2{color:#fff;font-size:24px;line-height:1.4em;font-weight:400;text-transform:uppercase;letter-spacing:3px;margin-bottom:16px;display:block;z-index:9}
.slide-excerpt{color:#fff;font-size:12px;font-weight:300;letter-spacing:1px;padding:0 0 20px;display:none}
.slide-divider{border-top:2px solid;display:block;max-width:50px;margin:0 auto;color:#fff}
.slide-more{display:none;color:#fff;border-radius:50px;padding:10px 50px;margin:10px auto 10px;font-size:10px;text-transform:uppercase;letter-spacing:2px;border:2px solid #fff;display:inline-block;transition:all .25s ease-out;-o-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-webkit-transition:all .25s ease-out}
.slide-more:hover{background:#fff;color:#000}
#crosscol-overflow{margin:0 auto}
.mobile .cycle-slideshow{height:250px}
.mobile .slide-resume,.mobile .slide-more{display:none}
.post-title-2{margin:0;background:#fff;margin-bottom:7px;padding:30px 10px;text-align:center;letter-spacing:2px;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);text-transform:uppercase;font-size:20px}
h1.post-title.entry-title{display:none}
.breadcrumbs{color:#333;background:#fff;font-weight:bold}
@media only screen and (max-width:768px){#st-sidebar-wrapper{display:none}}
</style>
<b:template-skin><![CDATA[
body#layout #menu-st,.st-lk-widget{display:none}
body#layout #st-postleft{width:60%;float:left;overflow:hidden}
body#layout #st-sidebar-wrapper{width:40%;float:right}
]]></b:template-skin>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<style>
.hover-box{display:block;top:0;left:0;border-radius:3px;position:absolute;width:100%;height:100%;background-image:url(https://2.bp.blogspot.com/-je9bZ-iUBuk/WXfbpQ43x_I/AAAAAAAAG9M/F8EZbGxmAV4D126SWnMWfrhhNkRHHyKOgCK4BGAYYCw/s60/st-logo.png);visibility:hidden;background-repeat:no-repeat;background-position:center;-webkit-transition:.5s;-moz-transition:.5s;-o-transition:.5s;opacity:0;transform:scale(1.5)}
.blog-pager,#blog-pager{margin-bottom:10px;clear:both}
.post{box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05)}
.post-outer{width:100%;float:left;margin-bottom:10px}
.img-thumbnail:hover .hover-box,#flickr>a:hover .hover-box{background-color:rgba(0,0,0,.8);display:block;opacity:1;transform:scale(1)}
.hover-box{display:block;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:3px}
.post-inner{padding:0;margin:0}
.articlepost{height:100%;margin:0 5px;overflow:hidden;padding:0;background:#fff}
.author-info,.time-info,.comment-info,.label-info,.review-info{display:inline;padding:0;margin-right:10px}
.img-thumbnail{overflow:hidden;background:#e5e5e5;position:relative;width:320px;height:160px;margin:0;z-index:1;margin-right:15px;float:left}
.img-thumbnail img{width:100%;height:100%}
.img-thumbnail:hover .hover-box,#flickr>a:hover .hover-box{visibility:visible;background-color:rgba(0,0,0,.8)}
.post-body{font-size:14px;line-height:1.5em;color:#2c3e50;padding:0;margin:5px 0;z-index:0;position:relative;font-weight:300;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;overflow:hidden;-webkit-box-orient:vertical}
@media only screen and (max-width:640px){#st-content-wrapper{padding:0}h2.post-title,h1.post-title,h2.post-title a,h1.post-title a,h2.post-title,h1.post-title{padding:10px 0 0 0;clear:both}.post{padding:0;width:100%}.post-body{display:none!important}}
@media only screen and (max-width:480px){.post-header{border-top:1px dashed #ccc;border-bottom:1px dashed #ccc;padding:10px;margin-top:10px;float:left;width:100%;margin-bottom:10px}.img-thumbnail{width:100%;height:auto;margin:0}.img-thumbnail img{width:100%;height:auto}.post{padding:0;width:100%}h2.post-title,h1.post-title,h2.post-title a,h1.post-title a,h2.post-title,h1.post-title{font-size:17px}}
@media only screen and (max-width:320px){.post{padding:0;width:100%}h2.post-title,h1.post-title,h2.post-title a,h1.post-title a,h2.post-title,h1.post-title{font-size:17px}}
.post{padding:10px!important}
</style>
<script type='text/javascript'>
function bp_thumbnail_resize(c,d){var a=280;var b=180;image_tag='<img async="async" width="'+a+'" height="'+b+'" src="'+c.replace("/s72-c/","/w"+a+"-h"+b+"-c/")+'" alt="'+d.replace(/"/g,"")+'" title="'+d.replace(/"/g,"")+'"/>';if(d!=""){return image_tag}else{return""}}function sompret_image_creator(j,e){var i=332;var k=190;var h=true;var l="https://lh5.ggpht.com/-seTgimF08LA/VZTp6HVjSvI/AAAAAAAAAcE/_nMcfrik7OY/s1600/no_img.gif?imgmax=800";if(h==true&&j==""){j=l}image_tag='<img src="'+j.replace("/s72-c/","/w"+i+"-h190-c/")+'" alt="'+e+'" width="'+i+'" height="'+k+'"/>';if(j!="'+s+'"){return image_tag}else{return""}}
</script>
</b:if></b:if>
<b:if cond='data:blog.pageType == "item"'>
<style>
.post-body{margin:1em 0 .65em;font-size:16px;font-weight:300;line-height:1.6em;padding:0;color:#2c3e50}
h1.post-title{margin:0;padding:0}
.labels{margin-top:0;float:right}
.post{box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05)}
.blog-pager,#blog-pager{display:none}
a.home-link{visibility:hidden}
a.dlbtn{display:inline-block;position:relative;height:45px;line-height:40px;overflow:hidden;padding:0 30px;font-size:12px;font-weight:bold;color:#c0c0c0;background-color:#fff;text-decoration:none;cursor:pointer;border:3px solid #ddd;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-transition:all .4s;-moz-transition:all .4s;transition:all .4s}
a.dlbtn:hover,a.dlbtn:focus{color:#fff;padding-right:90px;background-color:#5381bf;border-color:#5381bf}
a.dlbtn .details{position:absolute;line-height:11px;top:4px;right:-15px;opacity:0;background:#49668c;color:#fff;text-align:center;padding:3px 4px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-transition:right .4s linear,opacity .25s;-moz-transition:right .4s linear,opacity .25s;transition:right .4s linear,opacity .25s}
a.dlbtn .details .size{display:block;padding-top:3px}
a.dlbtn:hover .details,a.dlbtn:focus .details{right:8px;opacity:1}
@media screen and (max-width:620px){h1{font-size:2.7em}.center{width:30%}.centerbig{width:70%}}
@media screen and (max-width:480px){h1{font-size:2.2em}
.center{margin-left:0}
.centerbig{margin-left:-20px}
a.dlbtn.big{padding:0 70px}
a.dlbtn.big:hover,a.dlbtn.big:focus{padding-right:150px}
</style>
</b:if>
<b:include data='blog' name='google-analytics'/>
<b:if cond='data:blog.isMobileRequest == "true"'>
<style>
#st-postleft,#st-sidebar-wrapper{width:100%;float:none}
#HTML10,.cycle-slideshow{display:none}
</style>
</b:if>
</head><!--<head/>-->
<body>
<b:if cond='data:blog.pageType != "index"'>
<div id='fb-root'/>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/vi_VN/sdk.js#xfbml=1&version=v3.2&appId=309786216308999&autoLogAppEvents=1';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<style type='text/css'>
/* CSS Comment */
.comments-h4{margin-bottom:10px;font-size:14px}
#comments{padding:10px;margin-bottom:20px;background:#fff}
#comments .comment{position:relative;margin-top:0}
#comments .comment-thread ol{margin:0;padding-left:0}
#comments .comment-thread ol{padding-left:0}
#comments .comment-thread .comment-replies{margin-bottom:26px;margin-left:20px;padding:0 0 0 32px;border-left:1px dashed #ccc}
#comments .comment-replybox-single{margin-left:0}
#comments .comment-thread .thread-count{display:none}
#comments .comment{list-style-type:none;position:relative}
#comments .comment .continue .comment-reply{display:none}
#comments .continue .comment-reply{color:#777;font-weight:500}
#comments .continue{margin:10px 0 3px 0;display:none}
.comment .avatar-image-container{position:absolute}
.comment .avatar-image-container img{border-radius:50%;height:40px;width:40px}
.avatar-image-container img{background:url(//4.bp.blogspot.com/-9TaHwQSt4ps/WfdMSWzDpAI/AAAAAAAAQgE/lwRBOH-oCWQVR-UDuoXZGFHUc4A1B99cQCLcBGAs/s1600/no-image.png) no-repeat center}
.avatar-image-container svg,.comment .avatar-image-container .avatar-icon{border-radius:50%;border:solid 1px #707070;box-sizing:border-box;fill:#707070;height:40px;margin:0;padding:7px;width:40px}
.comments .comments-content .icon.blog-author:before{font-family:fontawesome;content:"\f058";display:inline-block;color:#373737;margin-left:5px;font-size:15px;line-height:13px}
.comment .comment-block{padding:0 10px;margin-left:45px;margin-top:10px;margin-bottom:10px;border-radius:10px}
#comments .comment-author-header-wrapper{margin-left:40px}
#comments .comment .comment-header .user,#comments .comment .comment-header .user a{color:#373737;font-style:normal;font-weight:600;font-size:15px;text-transform:none}
#comments .comment .comment-actions{text-transform:uppercase;background:transparent;border:0;box-shadow:none;cursor:pointer;font-size:11px;font-weight:500;outline:none;text-decoration:none;width:auto;margin-bottom:15px}
#comments .comment .comment-actions a{color:#777;font-weight:500}
#comments .comment .comment-actions .comment-reply{margin-right:6px}
#comments .comment .comment-actions a:hover{color:#2196f3}
#comments .comment .comment-actions >*{margin-right:8px}
#comments .comment .comment-header .datetime{bottom:0;color:rgba(33,33,33,0.54);display:inline-block;font-size:11px}
#comments .comment .comment-header .datetime{margin-left:5px}
#comments .comment .comment-header .datetime a,#comments .comment .comment-footer .comment-timestamp a{color:#777}
.comment .comment-body,#comments .comment .comment-content{margin-top:7px;margin-bottom:7px;line-height:1.6;word-break:break-word}
.comment-body{margin-bottom:12px}
#comments.embed[data-num-comments="0"]{border:none;margin-top:0;padding-top:0}
#comments.embed[data-num-comments="0"] #comment-post-message,#comments.embed[data-num-comments="0"] div.comment-form >p,#comments.embed[data-num-comments="0"] p.comment-footer{display:none}
#comment-editor-src{display:none}
.comments .comments-content .loadmore .loaded{max-height:0;opacity:0;overflow:hidden}
.loadmore{display:none}
.blogger-iframe-colorize{min-height:93px}
</style>
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<style>
body{color:#999;text-align:center;background-color:#fafafa;font-family:Tahoma,sans-serif}
.p404{overflow:hidden}
@-webkit-keyframes eye-blink{95%{color:#bbb;text-shadow:3px 0 0 #fafafa}100%{color:#fafafa;text-shadow:3px 0 0 #bbb}}
@-moz-keyframes eye-blink{95%{color:#bbb;text-shadow:3px 0 0 #fafafa}100%{color:#fafafa;text-shadow:3px 0 0 #bbb}}
@-o-keyframes eye-blink{95%{color:#bbb;text-shadow:3px 0 0 #fafafa}100%{color:#fafafa;text-shadow:3px 0 0 #bbb}}
@keyframes eye-blink{95%{color:#bbb;text-shadow:3px 0 0 #fafafa}100%{color:#fafafa;text-shadow:3px 0 0 #bbb}}
.face{color:#bbb;line-height:.8;font-size:300px;margin-bottom:120px}
.face .eyes{text-shadow:3px 0 0 #fafafa;-webkit-animation:eye-blink 3s infinite;-moz-animation:eye-blink 3s infinite;-o-animation:eye-blink 3s infinite;animation:eye-blink 3s infinite}
.face-smile .eyes{color:#fafafa;text-shadow:-5px 0 0 #bbb;-webkit-animation:none;-moz-animation:none;-o-animation:none;animation:none}
.face-smile .mouth{display:inline-block;-webkit-transition:all .7s ease;-webkit-transform:rotateY(180deg);-moz-transition:all .7s ease;-moz-transform:rotateY(180deg);-o-transition:all .7s ease;-o-transform:rotate(180deg);transition:all .7s ease;transform:rotateY(180deg)}
.message{font-size:22px}
.message span{color:#f50}
.message a{color:#444;padding-bottom:2px;text-decoration:none}
.message a:link,.message a:visited{border-bottom:2px solid #ddd}
.message a:hover,.message a:active{border-bottom:2px solid #f50}
.search-box{margin:40px 0}
.search-box form{display:inline;position:relative}
.search-box input{width:320px;padding:10px;border:0 none;font-size:15px;color:#666;background-color:#eee;-webkit-border-radius:2px 2px 2px 2px;-moz-border-radius:2px 2px 2px 2px;-khtml-border-radius:2px 2px 2px 2px;border-radius:2px 2px 2px 2px}
.search-box i{cursor:pointer;position:absolute;right:5px;top:-2px;padding:0 10px;font-size:1.5em;color:#ccc;background-color:#eee;border-left:1px solid #ddd}
.search-box i:hover,.search-box i:active{color:#999}
</style>
<div class='p404'>
<div class='face'><span class='eyes'>:</span><span class='mouth'>(</span></div>
<p class='message'>Lỗi 404 <span>/Không tìm thấy đường dẫn này</span>... Bạn có thể truy cập vào <a href='/'>trang chủ</a>?</p>
<div class='search-box'>
<form action=''>
<input placeholder='Hoặc sử dụng ô dưới đây để tìm kiếm' type='text'/>
<i class='fa fa-search'/>
</form>
</div>
</div>
<script src='https://assets.codepen.io/assets/common/stopExecutionOnTimeout.js?t=1'/><script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'/>
<script type='text/javascript'>function vCenter(){$(".p404").css({position:"relative",top:($(document).height()-$(".p404").height())/2})}function toggleSmile(b){var a=$(this).parent().siblings(".face");if(a.hasClass("face-smile")&&$(this).is("form")&&b.type==="focusin"){a.data("trigger",$(this))}else{if(!a.hasClass("face-smile")||a.hasClass("face-smile")&&$(this).is(a.data("trigger"))){a.toggleClass("face-smile").data("trigger",$(this))}}}vCenter();$(".message a").on("mouseenter mouseleave",toggleSmile);$(".p404").on("focusin focusout",".search-box form",toggleSmile);$(".search-box form").submit(false);window.onresize=vCenter;</script>
<b:else/>
<div id='st-content-wrapper'>
<header id='st-header-wrapper' itemscope='itemscope' itemtype='https://schema.org/WPHeader' role='banner'>
<div class='header'>
<b:section class='st-header-wrappers' id='st-header-wrappers' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Star tuấn (Tiêu đề)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://4.bp.blogspot.com/-NG77YuL1sVw/XB8wfNxa19I/AAAAAAAACSI/cSVBE14-cBQQy9hMV69M8OvKwFwyW0-fwCK4BGAYYCw/s1600/logo-startinhit.png</b:widget-setting>
<b:widget-setting name='displayHeight'>32</b:widget-setting>
<b:widget-setting name='sectionWidth'>790</b:widget-setting>
<b:widget-setting name='useImage'>true</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='imagePlacement'>REPLACE</b:widget-setting>
<b:widget-setting name='displayWidth'>190</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<b:if cond='data:mobile'>
<div id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
<b:else/>
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
<b:else/>
<div id='header-inner'>
<b:if cond='data:blog.pageType == "index"'>
<h1 style='text-indent:-9999px;margin:0 0 0 0;padding:0 0 0 0;height:0px;'><b:include name='title'/></h1>
</b:if>
<a expr:href='data:blog.homepageUrl'>
<img expr:alt='data:title' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:title='data:title'/>
</a>
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
<b:if cond='data:blog.pageType == "index"'>
<h1 style='text-indent:-9999px;margin:0 0 0 0;padding:0 0 0 0;height:0px;'><b:include name='title'/></h1>
</b:if>
</b:if>
</div>
</b:if>
<b:else/>
<div id='header-inner'>
<div class='titlewrapper'>
<b:if cond='data:blog.pageType == "index"'>
<h1 class='title'><b:include name='title'/></h1>
<b:else/>
<p class='title'><b:include name='title'/></p>
</b:if>
<b:include name='description'/>
</div>
</div>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='title'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<data:title/>
<b:else/>
<a expr:href='data:blog.homepageUrl'><data:title/></a>
</b:if>
</b:includable>
</b:widget>
</b:section>
<style>
.search-gg{width:auto;line-height:initial;right:250px;text-align:right;padding-left:10px;position:absolute;top:0;z-index:9999999}
#search{border:1px solid #e6ecf0;height:36px;top:0;position:relative;outline:0;background:#f5f8fa;background-position:2% 50%;padding:12px 15px 12px 50px;color:#333;font-size:14px;width:300px;transition:1s;font-family:Roboto,sans-serif;border-radius:20px}
#search::-webkit-input-placeholder{color:#999}
#search:focus{width:370px;background:#fff;border-top:2px solid rgba(0,0,0,0.10);box-shadow:0 1px 1px rgba(0,0,0,0.24)}
.sb-search-submit{opacity:0;right:0;width:80px;z-index:9999;display:none;height:32px;position:absolute;top:12px;padding:0;margin:0;line-height:32px;text-align:center;cursor:pointer}
.sb-icon-search{width:80px;height:32px;display:none;position:absolute;right:0;top:12px;padding:0;margin:0;line-height:32px;text-align:center;cursor:pointer;color:#fff;background:#333;border-radius:3px;font-size:13px}
@media screen and (max-width:1000px){.search-gg{right:55px;display:none}button.search-submit{display:none}input#search{width:200px!important;right:90px}.sb-icon-search,.sb-search-submit{display:block}}
.search-gg.show{display:block}
button.search-submit{position:absolute;width:40px;height:36px;font-size:16px;border:0;top:0;padding:0;background:transparent;left:15px;cursor:pointer;z-index:999;color:#555}
.search-submit:hover{color:#00a26d}
button.search-submit:before{font-family:FontAwesome;content:"\f002"}
</style>
<div id='menu-st'>
<div class='chuyenmuc'>
<li>
<div class='search-gg'>
<form action='/search'>
<input class='sb-search-input' id='search' name='q' placeholder='Nhập từ khóa tìm kiếm...'/>
<input class='sb-search-submit' type='submit' value=''/>
<span class='sb-icon-search'>Tìm kiếm</span>
<button class='search-submit' type='submit'/>
</form>
</div></li>
<li class='btn-ch-muc'><a href='/search/label/Thủ%20thuật' title='Thủ thuật Facebook, Blogspot, Photoshop, Game,...'>Thủ thuật</a><ul class='ch-muc'>
<li><a href='/search/label/Thủ%20Thuật%20Facebook'>Thủ thuật Facebook</a></li>
<li><a href='/search/label/Thủ%20thuật%20Blogger'>Thủ thuật Blogger</a></li>
<li><a href='/search/label/Thủ%20Thuật%20Photoshop'>Thủ thuật Photoshop</a></li>
<li><a href='/search/label/Thủ%20thuật%20Game'>Thủ thuật Game</a></li>
</ul>
</li><li class='btn-ch-muc'><a href='/search/label/PSD' title='Tải PSD Ảnh bìa, logo, PSD CMND,...'>Tải PSD</a><ul class='ch-muc'>
<li><a href='/search/label/PSD Ảnh bìa'>PSD Ảnh bìa</a></li>
<li><a href='/search/label/PSD CMND'>PSD CMND</a></li>
<li><a href='/2017/07/tai-phan-mem-photoshop-cs6-portable.html'>Tải Photoshop</a></li>
</ul>
</li>
<li><a href='/search/label/Hình%20nền' title='Hình nền đẹp cho máy tính, điện thoại'>Hình nền</a></li>
<li><a href='/p/huong-dan-bo-qua-quang-cao.html' title='Hướng dẫn cách bỏ qua quảng cáo link rút gọn'>Cách bỏ qua QC</a></li>
<li class='btn-baimoi'>
<a href='/search' title='Bài viết mới nhất'>Mới nhất</a>
<style>
.bai-moi{position:absolute;right:0;display:none;background:#fff;width:320px;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);padding:5px 10px}
.bai-moi li,.ch-muc li{display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;text-align:left}
.bai-moi li a,.ch-muc li a{font-size:13px;border-bottom:0!important;text-transform:none}
.btn-ch-muc:hover>ul,.btn-baimoi:hover>ul{display:block}
.btn-ch-muc:hover>a{border-bottom:2px solid #00a26d}
.ch-muc{position:absolute;left:0;display:none;background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.05),0 3px 3px rgba(0,0,0,.05);padding:5px 10px}
</style>
</li>
</div></div>
<div class='menu-icon'>
<div class='line_one'/>
<div class='line_two'/>
<div class='line_three'/>
</div>
</div><div class='clear'/>
<div id='navigator'>
<div class='menu-social'><a class='st-social fb' href='https://www.facebook.com/Youtuber.StarTinhIT' target='_blank'><i aria-hidden='true' class='fa fa-facebook'/></a>
<a class='st-social gg' href='//plus.google.com/u/0/114712649307042454283' target='_blank'><i aria-hidden='true' class='fa fa-google-plus'/></a>
<a class='st-social fl' href='/p/thanh-vien-trong-star-tinh-it.html' title='Thành viên'>
<i aria-hidden='true' class='fa fa-user-circle'/></a>
<a class='st-social rd' href='/p/sitemap.html' title='Sơ đồ blog'>
<i aria-hidden='true' class='fa fa-sitemap'/></a>
</div>
<ul class='accordion' id='accordion'>
<li>
<a class='link' href='/search' style='color:#333'><i class='fa fa-repeat'/> Bài mới</a>
</li><li>
<div class='link'><i class='fa fa-lightbulb-o'/> Thủ thuật<i class='fa fa-chevron-down'/></div>
<ul class='submenu'>
<li><a href='/search/label/Thủ Thuật Facebook'>Facebook</a></li>
<li><a href='/search/label/Thủ thuật Blogspot'>Blogspot</a></li>
<li><a href='/search/label/Thủ Thuật Photoshop'>Photoshop</a></li>
<li><a href='/search/label/Thủ thuật Game'>Game</a></li>
</ul>
</li>
<li>
<div class='link'><i class='fa fa-photo'/> Hình nền<i class='fa fa-chevron-down'/></div>
<ul class='submenu' style='display: none;'>
<li><a href='/search/label/Hình nền Desktop'>Hình nền máy tính</a></li>
<li><a href='/search/label/Hình Nền Mobile'>Hình nền điện thoại</a></li>
<li><a href='/search/label/Ảnh Game'>Ảnh Game</a></li>
<li><a href='/search/label/Ảnh bìa facebook'>Ảnh bìa facebook</a></li>
</ul>
</li><li>
<div class='link'><i class='fa fa-file-powerpoint-o'/> File PSD<i class='fa fa-chevron-down'/></div>
<ul class='submenu'>
<li><a href='/search/label/PSD Ảnh bìa'>PSD Ảnh bìa</a></li>
<li><a href='/search/label/PSD CMND'>PSD CMND</a></li>
<li><a href='/search/label/Mockup'>Mockup</a></li>
<li><a href='/search/label/Hiệu ứng chữ'>Hiệu ứng chữ</a></li>
<li><a href='/search/label/PSD'>Tất cả</a></li>
</ul>
</li>
<li>
<div class='link'><i class='fa fa-download'/> Download<i class='fa fa-chevron-down'/></div>
<ul class='submenu'>
<li><a href='/2017/07/tai-phan-mem-photoshop-cs6-portable.html'>Photoshop CS6</a></li>
<li><a href='/search/label/PSD'>File PSD</a></li>
<li><a href='/search/label/Phần mềm'>Phần mềm</a></li><li><a href='/search/label/Template Blogspot'>Template blogspot</a></li></ul>
</li>
<form action='/p/search.html' class='navbar-form navbar-left' method='get'>
<input class='form-control col-lg-8' name='q' onblur='if(this.value=='')this.value=this.defaultValue' onfocus='if(this.value==this.defaultValue)this.value=''' type='text' value='Tìm kiếm trên blog...'/>
</form>
</ul>
</div>
</header></div>
<div id='st-post-wrapper'>
<b:if cond='data:view.isSingleItem'>
<p class='post-title-2'>
<data:blog.pageName/>
</p>
</b:if>
<div id='st-postleft'>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<script src='https://cdn.staticaly.com/gh/startinhit/JS/master/jquery.cycle2.min.js' type='text/javascript'/>
<script>
//<![CDATA[
var showpostthumbnails=!0;var showpostsummary=!0;var random_posts=!1;var numchars=100;var numposts=10;function showgalleryposts(json){var numPosts=json.feed.openSearch$totalResults.$t;var indexPosts=new Array();document.write('<ul>');for(var i=0;i<numPosts;++i){indexPosts[i]=i}
if(random_posts==!0){indexPosts.sort(function(){return 10-Math.random()})}
if(numposts>numPosts){numposts=numPosts}
for(i=0;i<numposts;++i){var entry=json.feed.entry[indexPosts[i]];var posttitle=entry.title.$t;
if(typeof cate=='undefined'){var cate="uncategorised"}else{var cate=json.feed.entry[i].category[0].term}
for(var k=0;k<entry.link.length;k++){if(entry.link[k].rel=='alternate'){posturl=entry.link[k].href;break}}
if("content" in entry){var postcontent=entry.content.$t}
s=postcontent;a=s.indexOf("<img");b=s.indexOf("src=\"",a);c=s.indexOf("\"",b+5);d=s.substr(b+5,c-b-5);if((a!=-1)&&(b!=-1)&&(c!=-1)&&(d!="")){var thumburl=d}else var thumburl='//placehold.it/1000x300';document.write('<li><div class="cycle-slideshow"><a href="'+posturl+'"><div class="slide-image" style="background-image:url('+thumburl+');"/><div class="slide-inside"><div class="slide-title">');document.write('<div class="slide-container">');document.write('<div class="slide-cat">'+cate+'</div>');document.write('<div class="slide-h2">'+posttitle+'</div>');var
re=/<\S[^>]*>/g;postcontent=postcontent.replace(re,"");if(showpostsummary==!0){if(postcontent.length<numchars){document.write('<div class="slide-excerpt">'+postcontent+'... </div>')}else{postcontent=postcontent.substring(0,numchars);var quoteEnd=postcontent.lastIndexOf(" ");postcontentl=postcontent.substring(0,quoteEnd);document.write('<div class="slide-excerpt">'+postcontent+'... </div>')}
document.write('<div class="slide-divider"></div>');document.write('<div class="slide-more">Xem thêm</div></div></div></div>')}
document.write('</a></div></li>')}
document.write('</ul>');document.write("<div class='cycle-prev'><i class='fa fa-angle-left' aria-hidden='true'></i></div><div class='cycle-next'><i class='fa fa-angle-right' aria-hidden='true'></i></div>")}
//]]>
</script>
<div class='cycle-slideshow' data-cycle-manual-speed='800' data-cycle-pause-on-hover='true' data-cycle-random='true' data-cycle-slides='li' data-cycle-speed='1600' data-cycle-timeout='0'>
<script>document.write("<script src=\"/feeds/posts/default/?max-results=10&orderby=published&alt=json-in-script&callback=showgalleryposts\"><\/script>");
</script>
</div></b:if>
<b:section id='mainpost'>
<b:widget id='Blog1' locked='true' title='Bài đăng trên Blog' type='Blog' version='1'>
<b:widget-settings>
<b:widget-setting name='commentLabel'>blogger-facebook</b:widget-setting>
<b:widget-setting name='showShareButtons'>false</b:widget-setting>
<b:widget-setting name='authorLabel'>By</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'>-</b:widget-setting>
<b:widget-setting name='reactionsLabel'>Bạn Thấy Như Thế Nào</b:widget-setting>
<b:widget-setting name='showAuthorProfile'>true</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
<b:widget-setting name='backlinksLabel'>Links to this post</b:widget-setting>
<b:widget-setting name='showDateHeader'>true</b:widget-setting>
<b:widget-setting name='style.textcolor'>#2196f3</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#212121</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#222222</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>Từ Khóa:</b:widget-setting>
<b:widget-setting name='showBacklinks'>true</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='top'>
<b:if cond='data:mobile == "false"'>
<b:include data='posts' name='breadcrumb'/>
<div class='blog-posts hfeed'>
<b:include data='top' name='status-message'/>
<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.isDateStart'>
<b:if cond='data:post.isFirstPost == "false"'></div></div>
</b:if></b:if><b:if cond='data:post.isDateStart'><div class="date-outer"></b:if>
<b:if cond='data:post.isDateStart'><div class="date-posts">
</b:if><div class='post-outer'><b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:include data='post' name='comment_picker'/>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:include data='post' name='comment_picker'/>