-
Notifications
You must be signed in to change notification settings - Fork 8
/
theme-beforeamp.xml
3103 lines (2963 loc) · 179 KB
/
theme-beforeamp.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' 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><!--[if IE]><script type="text/javascript" src="https://www.blogger.com/static/v1/jsbin/3382421118-ieretrofit.js"></script>
<script async="async" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" ></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-3500229760555380",
enable_page_level_ads: true
});
</script>
<![endif]-->
<meta charset='utf-8'/>
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<meta content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0' name='viewport'/>
<meta content='F7D748786EF0802B8DACBB2505BA9EA6' name='msvalidate.01'/>
<meta content='0a4640233c' name='verify-admitad'/>
<meta content='G3DyEtXjhmeQAV-DqXJiTgwhKvgpZtFDZnztyb5P_vU' name='google-site-verification'/>
<link href='//fonts.googleapis.com/css?family=Montserrat: 400,700' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/css?family=Fredoka+One' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Dosis:700' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Bubblegum+Sans' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=EB+Garamond' rel='stylesheet'/>
<meta content='G3DyEtXjhmeQAV-DqXJiTgwhKvgpZtFDZnztyb5P_vU' name='google-site-verification'/>
<link href='https://fonts.googleapis.com/css?family=Cabin:500,600' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Hind:400,600' rel='stylesheet'/>
<link href='https://www.fontify.me/wf/28ea2e32b70da0a2480848ba03cd6146' rel='stylesheet' type='text/css'/>
<style>
body{
font-family: font92671;
}
</style>
<link href='https://fonts.googleapis.com/css?family=Quattrocento+Sans' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Catamaran:600' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Boogaloo|Bubblegum+Sans|Cabin|Cardo|Copse|Crimson+Text|Fredoka+One|Gentium+Basic|Gentium+Book+Basic|Hind|Karla|Maven+Pro|Neuton|Nunito|Nunito+Sans|Open+Sans|Open+Sans+Condensed:300|Overlock|Ubuntu|Varela+Round|Vollkorn' rel='stylesheet'/>
<link href='//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css' rel='stylesheet'/>
<link href='https://www.kanthalaraghu.com/favicon.ico' rel='icon' type='image/x-icon'/>
<meta content='blogger' name='generator'/>
<link href='https://www.kanthalaraghu.com/feeds/posts/default' rel='alternate' title='BLOGTITLE - Atom' type='application/atom+xml'/>
<link href='https://www.kanthalaraghu.com/feeds/posts/default?alt=rss' rel='alternate' title='BLOGTITLE - RSS' type='application/rss+xml'/>
<link href='https://www.blogger.com/feeds/BLOGID/posts/default' rel='service.post' title='BLOGTITLE - Atom' type='application/atom+xml'/>
<!--[if IE]><script type="text/javascript" src="https://www.blogger.com/static/v1/jsbin/2591933621-ieretrofit.js"></script>
<![endif]-->
<meta expr:content='data:blog.url' name='og:url:domain'/>
<!--[if IE]> <script> (function() { var html5 = ("abbr,article,aside,audio,canvas,datalist,details," + "figure,footer,header,hgroup,mark,menu,meter,nav,output," + "progress,section,time,video").split(','); for (var i = 0; i < html5.length; i++) { document.createElement(html5[i]); } try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {} })(); </script> <![endif]--> <meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'/>
<title>
<b:if cond='data:blog.pageType == "index"'>
<data:blog.pageTitle/>
<b:else/>
<b:if cond='data:blog.pageType != "error_page"'>
<data:blog.pageName/> - <data:blog.title/>
<b:else/>
ERROR 404 - <data:blog.title/>
</b:if>
</b:if>
</title>
<!-- Description and Keywords (start) -->
<b:if cond='data:blog.pageType == "index"'>
<meta content='Blogging is Conversation not Code' name='description'/>
</b:if>
<meta content='kanthala, raghu, blog, technology, open source, india, hyderabad' name='keywords'/>
<!-- Description and Keywords (end) -->
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.pageName' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta content='article' property='og:type'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<b:else/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' property='og:image'/>
</b:if></b:if>
<b:if cond='data:blog.metaDescription != ""'>
<meta expr:content='data:blog.metaDescription' name='og:description'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.homepageUrl' name='twitter:domain'/>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<b:if cond='data:blog.postImageUrl'>
<meta content='summary_large_image' name='twitter:card'/>
<meta expr:content='data:blog.postImageUrl' name='twitter:image'/>
<b:else/>
<meta content='summary' name='twitter:card'/>
<b:if cond='data:blog.postImageThumbnailUrl'>
<meta expr:content='data:blog.postImageThumbnailUrl' name='twitter:image'/>
</b:if>
</b:if>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
</b:if>
<!-- Social Media meta tag need customer customization -->
<meta content='Facebook App ID here' property='fb:app_id'/>
<meta content='Facebook Admin ID here' property='fb:admins'/>
<meta content='@kanthalaraghu' name='twitter:site'/>
<meta content='@kanthalaraghu' name='twitter:creator'/>
<b:skin><![CDATA[/
-----------------------------------------------
Blogger Template Style
Name: Glossy
Author : http://www.soratemplates.com
License: Free Version
----------------------------------------------- */
/* Variable definitions
-----------------------
<Variable name="keycolor" description="Main Color" type="color" default="#1e87f0" value="#1e87f0"/>
<Variable name="body.background" description="Background" type="background" color="#f0f0f0" default="$(color) url() repeat scroll top left" value="$(color) url(http://1.bp.blogspot.com/-1D3splrgPXk/WlSH4DKylnI/AAAAAAAARMs/X00SkkdU2OMG7eZzFrjZ2nOshlyiAaYswCK4BGAYYCw/s0/PaintSquares_1920x1234.jpg) repeat fixed top center"/>
<Variable name="color.theme" description="Color Theme" type="color" default="#f2132d" value="#f1122d"/>
-----------------------
*/
a,abbr,acronym,address,applet,b,big,blockquote,body,caption,center,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,object,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,u,ul,var{padding:0;border:0;outline:0;vertical-align:baseline;background:0 0;margin:0}
ins{text-decoration:underline}
del{text-decoration:line-through}
dl,ul{list-style-position:inside;font-weight:700;list-style:none;}
ul li{list-style:none}
caption,th{text-align:center}
img{border:none;position:relative}
.clear{clear:both}
.section,.widget,.widget ul{margin:0;padding:0}
body{background:$(body.background);color:#010101;font-size:14px;font-family:'font92671',sans-serif;line-height:22px;word-wrap:break-word}
h1,h2,h3,h4,h5,h6{padding:0;margin:0}
h2{color:#010101;margin:1.5em 0 .75em}
h4 a{color:#4285f4!important}
a:link,a:hover,a:visited{color:$(color.theme);text-decoration:none}
:focus{outline:0}
a img{border:0}
brc{color:#bdbdbd}
select{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important}
select::-ms-expand{display:none!important;}
.separator a{clear:none!important;float:none!important;margin-left:0!important;margin-right:0!important}
#navbar-iframe{display:none;height:0;visibility:hidden}
span.item-control,a.quickedit{display:none!important}
.archive .home-link,.index .home-link,.home-link{display:none!important}
*{outline:0;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease}
#outer-wrapper{max-width:1113px;margin:0 auto;background-color:#FFF}
.row{width:1073px}
#topnav{width:100%;height:30px;background-color:#fff;margin:0}
.tm-head{margin:0 auto;height:30px;line-height:30px;overflow:hidden}
.tm-menu{float:left}
#nav1 li{float:left;display:inline-block;line-height:30px;padding:0}
#nav1 li a{color:#010101;font-size:12px;font-weight:400}
#nav1 li a:hover,.tn-head #social-top ul li a:hover{color:$(color.theme)}
#nav1 li+li:before{content:"|";padding:0 7px;color:#ddd;font-weight:100}
.social-area{float:right}
.tm-head #social-top{position:relative;display:block;margin-right:0}
.tm-head #social-top ul{overflow:hidden}
.tm-head #social-top ul li{line-height:32px;display:block;float:left;margin-left:20px;padding:0}
.tm-head #social-top ul li a{display:block;float:left;color:#010101;text-decoration:none;font-size:13px}
.tm-head #social-top ul li a:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.tm-head #social-top ul li a:hover{color:$(color.theme)}
#social-top .facebook:before{content:"\f230"}
#social-top .twitter:before{content:"\f099"}
#social-top .gplus:before{content:"\f0d5"}
#social-top .rss:before{content:"\f09e"}
#social-top .youtube:before{content:"\f167"}
#social-top .skype:before{content:"\f17e"}
#social-top .stumbleupon:before{content:"\f1a4"}
#social-top .tumblr:before{content:"\f173"}
#social-top .vine:before{content:"\f1ca"}
#social-top .stack-overflow:before{content:"\f16c"}
#social-top .linkedin:before{content:"\f0e1"}
#social-top .dribbble:before{content:"\f17d"}
#social-top .soundcloud:before{content:"\f1be"}
#social-top .behance:before{content:"\f1b4"}
#social-top .digg:before{content:"\f1a6"}
#social-top .instagram:before{content:"\f16d"}
#social-top .pinterest:before{content:"\f0d2"}
#social-top .delicious:before{content:"\f1a5"}
#social-top .codepen:before{content:"\f1cb"}
#header-blog{height:130px;background-color:#fff;position:relative;overflow:hidden}
.header-content{margin:0 auto;overflow:hidden;height:130px}
.header-logo{width:222px;height:52px;float:left}
.header-logo img{height:auto;max-height:52px;margin:34px 0 0;max-width:100%}
.Header h1{color:#010101;margin-bottom:10px;margin-top:40px}
.header-ads{width:729px;max-width:100%;max-height:90px;float:right;margin:15px 0 0}
#header-navigation{margin:0 auto;top:0;height:40px}
.nav-wrapper{background-color:#010101;width:100%;margin:0 auto;box-sizing:border-box;min-height:40px}
.header-menu li.home-child{float:left;height:40px;display:inline-block;padding:0}
.header-menu li.home-child a{height:40px;line-height:40px;font-size:13px;font-weight:700;color:#FFF;text-transform:uppercase;padding:12px}
#menu ul li{float:left;height:40px;display:inline-block;padding:0;margin-right:1px;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
#menu ul li:hover a{color:#FFF}
#menu ul li a{height:40px;line-height:40px;padding:12px;font-size:13px;text-transform:uppercase;font-weight:700;color:#E4E4E4;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
#menu ul li.hasSub a{padding-right:22px}
#menu ul li.hasSub a:after{color:#fff;margin-left:3px;margin-top:1px;position:absolute;display:inline-block;content:'\f107';font-family:FontAwesome;font-weight:400;font-size:15px;text-rendering:auto;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
#menu ul li.hasSub ul li a:after{display:none!important}
#menu ul li:hover ul{left:auto;z-index:9999}
#menu ul li ul{position:absolute;left:-9999px;z-index:9999;width:170px;margin:0;padding:0}
#menu ul li ul li{background-color:#010101;float:none!important;display:block;padding:0;margin-right:0;height:auto}
#menu ul li ul li:hover{background-color:#212121}
#menu ul li ul#sub-menu li a{padding:10px;font-size:11px;line-height:36px;text-transform:uppercase;text-decoration:none;color:#E4E4E4!important;font-weight:700;height:auto}
#menu ul li ul#sub-menu li:hover a{color:#FFF!important}
#menu ul li,#menu ul li ul{outline:0;transition:all 0 ease!important;-webkit-transition:all 0 ease!important;-moz-transition:all 0 ease!important;-o-transition:all 0 ease!important}
.selectnav{display:none}
#selectnav1{background:#212121 url(http://4.bp.blogspot.com/-XmVTbf5RQLY/VmT4NfoMGOI/AAAAAAAACSI/F2sRS-yCpPI/s1600-r/menu.png) no-repeat right top;margin-top:0}
select.selectnav option:fist-child{text-transform:uppercase}
select.selectnav{color:#E4E4E4;padding:0 5px 0 10px;border:0;font:14px Montserrat, sans-serif;cursor:pointer;width:100%;height:40px;line-height:40px;border-radius:0}
.header-search{position:relative;float:right}
.header-search li{list-style:none}
.header-search a.search{-webkit-transition:all .3s ease-out 0;-moz-transition:all .3s ease-out 0;transition:all .3s ease-out 0;cursor:pointer;display:block;height:40px;text-align:center;position:relative;right:0;top:0;width:40px;border-radius:0}
.header-search a.search:hover{background-color:$(color.theme)}
.header-search a.search:before{color:#E4E4E4;content:'\f002';font:normal normal normal 22px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:40px}
.header-search a.active:before,.header-search a.search:hover:before{color:#FFF}
.header-search a.search.active{background-color:$(color.theme);border-left:0;border-radius:0}
.header-search a.search.active form{display:block}
.header-search a.search form{display:none;position:absolute;right:40px;top:0;z-index:2}
.header-search a.search form input{box-shadow:none;height:40px;padding:0 12px;width:160px;background-color:#212121;font-family:'Montserrat', sans-serif;color:#fff;margin-top:0;border-radius:0;border:0;line-height:40px}
#header-navigation .header-search li a{cursor:pointer;-webkit-transition:all .3s ease-out 0;-moz-transition:all .3s ease-out 0;transition:all .3s ease-out 0}
#content-wrapper{margin:25px auto 5px;overflow:hidden}
#main-wrapper{float:left;margin-right:25px;overflow:hidden;width:728px;word-wrap:break-word}
.m-rec{margin-bottom:0;padding-bottom:3px}
.m-rec h2{display:inline-block}
.m-rec h2 a{color:#CBCBCB;font-weight:700;line-height:normal;font-size:13px;text-transform:uppercase;display:block}
#ads-blog{display:none}
.home #ads-blog{display:block}
.home-ad .widget{width:728px;max-height:90px;padding:5px 0 20px;margin:0 auto}
.ads-posting .home-ad .widget{width:728px;max-height:90px;margin:0 auto;padding:20px 0 5px}
.feat-layout .feat-title h2.title{font-size:13px;font-weight:500;display:inline-block}
.feat-title{margin:0}
.feat-title h2{padding:0 0 10px;display:inline-block}
.feat-title h2 a{color:#CBCBCB;font-weight:700;line-height:normal;font-size:13px;text-transform:uppercase;display:block}
.p-date{color:#bdbdbd;font-weight:400;font-size:12px}
.p-date:before{content:'\f133';font-family:fontawesome;color:#bdbdbd}
.p-author:before{content:'\f007';font-family:fontawesome;color:#bdbdbd}
.p-author{color:#bdbdbd;font-weight:400;font-size:12px}
.feat .primeiro-thumb,.feat .mag-thumb,.carousel.recent-block .mag-thumb{transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.feat .primeiro-thumb:hover,.feat .mag-thumb:hover{-webkit-transform:scale(1.1)important;-moz-transform:scale(1.1)!important;transform:scale(1.1)!important;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.feat .primeiro .feat-thumb{width:100%;height:300px}
.feat .primeiro-thumb{width:100%;height:300px;display:block}
.feat .primeiro{overflow:hidden}
.feat-thumb{overflow:hidden}
.feat1 ul{overflow:hidden}
.feat ul li .feat-thumb{width:100%;height:150px;margin-bottom:10px}
.feat ul li .mag-thumb{width:100%;height:150px;display:block}
.feat ul li .mag-content{display:block}
.feat .feat-headline a{font-weight:700;color:#010101;display:inline-block}
.feat ul li .mag-content .feat-headline a{font-size:16px;padding:6px 5px 0 0;line-height:1.33;font-weight:400;letter-spacing:-0.6px}
.feat .primeiro-content .feat-headline a{font-size:22px;line-height:1.33em;letter-spacing:-0.6px}
.feat .recent-des{margin:10px 0px 0px;color:#919191;font-size:13.3px;line-height:1.65;font-weight:400}
.feat1{padding-bottom:20px}
.feat1 .primeiro{width: 60%;float:left;margin-right:3%}
.feat1 .primeiro .feat-thumb{display:block}
.feat1 .primeiro-thumb{display:block}
.feat1 .primeiro-content{float:left;display:block}
.feat1 ul li{display:block;float:left;width:37%;padding-bottom:0;margin-bottom:20px;padding-top:0;height:auto}
.feat1 ul li:nth-of-type(2){margin-bottom:0}
.feat-headline a:hover{color:$(color.theme)}
.p-date:before{margin-right:5px}
.p-author:before{margin-right:5px}
.p-date{margin-left:10px}
.feat1 .primeiro-content .feat-headline {padding:10px 0}
.feat-layout .widget-content,.feat-layout h2.title{display:none}
.label,.search-query{padding:0 0 6px}
.label span,.search-query span{color:#CBCBCB;font-weight:700;line-height:normal;font-size:13px;text-transform:uppercase;display:inline-block}
.post{display:block;overflow:hidden;word-wrap:break-word}
.index .post,.archive .post{padding:20px 0}
.index .post-outer:nth-of-type(1) .post{padding-top:5px}
.block-image{float:left;width:270px;height:168px;margin-right:20px}
.block-image .thumb{width:100%;height:168px;position:relative;display:block;z-index:2;overflow:hidden}
.block-image a{width:100%;height:168px;display:block;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.block-image a:hover{-webkit-transform:scale(1.1)!important;-moz-transform:scale(1.1)!important;transform:scale(1.1)!important;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.retitle h2{margin:8px 0;display:block}
.post h2 a,.post h2 a:visited,.post h2 strong{color:#010101;font-weight:700;text-decoration:none;font-size:24px;line-height:1.33em;letter-spacing:-0.6px}
.post h2 a:hover{color:$(color.theme)}
.post_author_date{color:#C4C4C4;font-size:13px;font-weight:400;line-height:23px;margin:0 0 25px;text-transform:uppercase}
.post_author{font-weight:600;margin-right:5px}
div.post_author_date a{text-decoration:none}
.resumo{margin-top:10px;color:#919191;font-size:13.3px;line-height:1.65}
.resumo span{display:block;margin-bottom:8px}
.widget iframe,.widget img{max-width:100%}
.index .post-footer,.archive .post-footer{display:none!important}
.index .post h2,.archive .post h2{margin:0 0 10px;padding:0}
.item .post,.static_page .post{padding:0 0 25px}
.date-header{color:#bdbdbd;display:block;overflow:hidden;font-size:12px;font-weight:400;line-height:1.3em;margin:0!important;padding:0}
.date-header a{color:#bdbdbd}
#meta-post .fa-calendar-o{margin-left:8px}
.post-meta{color:#bdbdbd;display:block;font-size:13px;font-weight:400;line-height:21px;margin:0;padding:0}
.hreview{display:none!important}
.postags{position:absolute;top:5px}
.postags a{padding:5px;display:inline-block;background:#FFC000;margin:0;color:#fff}
.postags a:nth-child(2){background-color:#444}
.postags a{display:none}
.postags a:first-child,.postags a:nth-child(2){display:inline-block}
.postags a:hover{background:#aaa}
.breadcrumbs .fa-angle-right:before{margin:0 5px}
.breadcrumbs{margin:0;font-size:13px}
.breadcrumbs span a.bhome{color:$(color.theme)}
.breadcrumbs span,.breadcrumbs span a{color:#010101}
.breadcrumbs span a:hover{color:$(color.theme)}
.item article{margin-top:20px}
.item .post-head,.static_page .post-head{margin:15px 0 5px;position:relative}
.item .post-title,.static_page .post-title{color:#010101;display:inline-block;padding-bottom:5px;font-size:31px;line-height:1.33;font-weight:700;position:relative}
.item .post-body,.static_page .post-body{width:100%;color:#5E5E5E;font-size:15px;line-height:1.5em;overflow:hidden}
.item .post-outer{padding:0}
.item .post-body img{max-width:100%}
.post-meta a,.post-meta i{color:#CBCBCB}
.post-timestamp{margin-left:5px}
.label-head{margin-left:5px}
.label-head a{padding-left:2px}
.label-head a:hover{color:$(color.theme)}
.main .widget{margin:0}
.main .Blog{border-bottom-width:0}
#ads-post10{display:none}
.ads-post .widget{width:728px;max-height:90px;margin:0 auto 25px}
.share-box{margin:20px 0 25px;border-bottom:3px solid #EEE;position:relative}
.share-title{color:#010101;display:inline-block;padding-bottom:10px;font-size:13px;font-weight:700;position:relative;top:5px;text-transform:uppercase}
.share-art{float:right;padding:0;padding-top:0;font-size:13px;font-weight:400;text-transform:capitalize}
.share-art a{color:#fff;padding:3px 8px;margin-left:4px;border-radius:2px;display:inline-block;margin-right:0}
.share-art a:hover{color:#fff}
.share-art .fac-art{background:#3b5998}
.share-art .fac-art:hover{background:rgba(49,77,145,0.7)}
.share-art .twi-art{background:#00acee}
.share-art .twi-art:hover{background:rgba(7,190,237,0.7)}
.share-art .goo-art{background:#db4a39}
.share-art .goo-art:hover{background:rgba(221,75,56,0.7)}
.share-art .pin-art{background:#CA2127}
.share-art .pin-art:hover{background:rgba(202,33,39,0.7)}
.share-art .lin-art{background:#0077B5}
.share-art .lin-art:hover{background:rgba(0,119,181,0.7)}
#related-posts{margin-bottom:10px}
.related li{width:30.835%;display:inline-block;height:auto;min-height:184px;float:left;margin-right:24px;overflow:hidden;position:relative}
.related-thumb{width:100%;height:120px;overflow:hidden}
.related li .related-img{width:100%;height:120px;display:block;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.related li .related-img:hover{-webkit-transform:scale(1.1)!important;-moz-transform:scale(1.1)!important;transform:scale(1.1)!important;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.related-title a{font-size:14px;line-height:1.33em;padding:10px 5px 10px 0;font-weight:400;color:#010101;display:block}
.related-title a:hover{color:$(color.theme)}
.related li:nth-of-type(3),.related li:nth-of-type(6),.related li:nth-of-type(9){margin-right:0}
.static_page .post-meta,.static_page .old_new{display:none}
.error_page #main-wrapper{width:100%!important;margin:0!important}
#errr{margin:60px auto;text-align:center;padding:0;line-height:4em}
.error_page a.homepage{padding:10px 20px;color:#fff;background-color:#010101;border-radius:2px}
.error_page a.homepage:hover{background-color:$(color.theme)}
#errr .error{font-size:20px;text-align:center;font-weight:700}
#errr .nerrr{font-size:150px;text-align:center;color:$(color.theme);font-weight:700}
#errr .nerrr span.fa{font-size:135px;margin:0 10px;color:#010101;font-weight:700}
#errr .fa-frown-o:before{content:"}
.error_page .sidebar-wrapper,.error_page .old_new{display:none}
@media only screen and (max-width: 768px) {
#errr{margin:50px auto 50px}
#errr p{line-height:2.5em}
}
@media only screen and (max-width: 359px) {
#errr .nerrr{font-size:100px}
#errr .nerrr span.fa {font-size:75px}
}
@media only screen and (max-width: 319px) {
#errr .nerrr{font-size:80px}
#errr span.fa.fa-frown-o{font-size:65px}
#errr p{line-height:2.5em}
}
.firstcharacter{float:left;color:$(color.theme);font-size:75px;line-height:60px;padding-top:4px;padding-right:8px;padding-left:3px}
.post-body h1,.post-body h2,.post-body h3,.post-body h4,.post-body h5,.post-body h6{margin-bottom:15px;color:#010101}
blockquote{font-style:italic;color:#999;border-left:5px solid $(color.theme);margin-left:0;padding:10px 15px}
blockquote:before{content:'\f10d';display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:10px;color:#999}
blockquote:after{content:'\f10e';display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-left:10px;color:#999}
.widget .post-body ul,.widget .post-body ol{line-height:1.5;font-weight:400}
.widget .post-body li{margin:5px 0;padding:0;line-height:1.5}
.post-body ul li:before{content:"\f105";margin-right:5px;font-family:fontawesome}
.blogger-tab{display:block}
.comments{clear:both;margin-top:0;margin-bottom:0;color:#010101}
.comments h4{font-size:13px;text-transform:capitalize;font-weight:400;padding:10px 0;margin:0;border-bottom:1px solid #eee}
.comments .comments-content{padding:10px 0}
.comments .comments-content .comment{margin-bottom:0;padding-bottom:8px}
.comments .comments-content .comment:first-child{padding-top:0}
.cmm-tabs .content-tab{background-color:transparent;padding:0}
.cmm-tabs-header{background:#010101;height:32px;margin-bottom:0px;position:relative}
.cmm-tabs-header h3 {display:inline-block;margin:0;color:#E4E4E4;font-weight:700;text-transform:uppercase;font-size:13px;height:32px;line-height:32px;padding-left:10px}
.cmm-tabs-header h3 h9{display:none}
.simplyTab .cmm-tabs-header .wrap-tab{float:right}
.cmm-tabs-header .wrap-tab a{height:auto;line-height:32px;padding:0px 10px;font-size:14px;display:inline-block}
.cmm-tabs-header .wrap-tab li{float:left;width:auto}
.facebook-tab,.fb_iframe_widget_fluid span,.fb_iframe_widget iframe{width:100%!important}
.comments .item-control{position:static}
.comments .avatar-image-container{float:left}
.comments .avatar-image-container,.comments .avatar-image-container img{height:35px;max-height:35px;width:35px;max-width:35px;border-radius:2px}
.comments .comment-block{padding:10px;box-shadow:none;border:1px solid #eee;border-radius:2px}
.comments .comment-block,.comments .comments-content .comment-replies{margin-left:47px;margin-top:0}
.comments .comments-content .inline-thread{padding:0}
.comments .comments-content .comment-header{font-size:14px;border-bottom:1px solid #eee;padding:0 0 3px}
.comments .comments-content .user{font-style:normal;font-weight:400}
.comments .comments-content .icon.blog-author{font-weight:400}
.comments .comments-content .comment-content{text-align:justify;font-size:14px;line-height:1.4em}
.comments .comment .comment-actions a{margin-right:5px;padding:2px 5px;color:#010101;font-weight:400;background-color:#f0f0f0;font-size:10px;letter-spacing:1px}
.comments .comment .comment-actions a:hover{color:$(color.theme);text-decoration:none}
.comments .comments-content .datetime{margin-left:0;float:right;font-size:11px}
.comments .comments-content .comment-header a{color:inherit}
.comments .comments-content .comment-header a:hover{color:$(color.theme)}
.comments .comments-content .icon.blog-author:before{content:"\f007";font-size:12px;font-family:FontAwesome}
.comments .thread-toggle{margin-bottom:4px}
.comments .comments-content .comment-thread{margin:4px 0}
.comments .continue a{padding:0;padding-top:10px;padding-left:47px;font-weight:500}
.comments .comments-content .loadmore.loaded{margin:0;padding:0}
.comments .comment-replybox-thread{margin:0}
iframe.blogger-iframe-colorize,iframe.blogger-comment-from-post{height:243px!important}
.cmm-tabs.simplyTab .content-tab{background-color:transparent;padding:0;margin-top:0}
.cmm-tabs.simplyTab .wrap-tab li a{text-transform:uppercase;color:#E4E4E4;font-weight:400;background-color:#171717;height:32px;font-size:10px;letter-spacing:1px}
.cmm-tabs.simplyTab .wrap-tab li a.activeTab{background-color:$(color.theme);color:#fff}
.posts-title h2 a:before{margin-right:10px}
.cmm-tabs.simplyTab .wrap-tab{float:right}
.cmm-tabs.simplyTab .wrap-tab li{padding:0;line-height: 0;margin-left:0}
.wrap-tab{list-style:none}
.content-tab{transition:all 0 ease;-webkit-transition:all 0 ease;-moz-transition:all 0 ease;-o-transition:all 0 ease}
#blog-pager{clear:both;text-align:center;margin:0}
.index .blog-pager,.index #blog-pager{display:block}
.index .blog-pager,.index #blog-pager,.archive .blog-pager,.archive #blog-pager{padding:10px 0 25px;text-align:left}
#blog-pager-newer-link a,#blog-pager-older-link a{display:block;float:left;margin-right:6px;padding:0 13px;border:1px solid #010101;text-transform:uppercase;line-height:32px;font-weight:700;color:#010101}
#blog-pager-newer-link a:hover,#blog-pager-older-link a:hover{background-color:#010101;color:#fff!important}
.showpageNum a,.showpage a,.showpagePoint{display:block;float:left;margin-right:6px;padding:0 12px;border:1px solid #010101;text-transform:uppercase;line-height:32px;font-weight:700;color:#010101}
.showpageNum a:hover,.showpage a:hover{background-color:#010101;color:#fff!important}
.showpageNum a i,.showpage a i{transition:all .0s ease;-webkit-transition:all .0s ease;-moz-transition:all .0s ease;-o-transition:all .0s ease}
.showpagePoint{background-color:#010101;color:#FFF}
.showpageOf{display:none!important}
.feed-links{clear:both;display:none;line-height:2.5em}
.sidebar-wrapper{float:right;overflow:hidden;width:300px;padding-top:0;padding-bottom:20px;word-wrap:break-word;color:#666;line-height:1.5em}
.sidebar-wrapper .widget{padding:0;background:#FFF;margin-bottom:20px;overflow:hidden}
.sidebar h2{color:#E4E4E4;background-color:#010101;font-size:11px;text-transform:uppercase;letter-spacing:1px;height:32px;line-height:32px;padding-left:10px;margin-bottom:10px}
.sidebar ul{list-style:none}
.sidebar li{margin:0;padding-bottom:.25em;padding-right:0;padding-top:0}
.sidebar .widget-content{margin:0}
.list-label-widget-content li{display:block;padding:8px 0;border-bottom:1px solid #f3f3f3;position:relative}
.list-label-widget-content li a:before{content:'\203a';position:absolute;left:0px;top:2px;font-size:22px;color:#010101}
.list-label-widget-content li a{color:#010101;font-size:12px;padding-left: 20px;font-weight:400;text-transform:uppercase}
.list-label-widget-content li a:hover{color:$(color.theme)}
.list-label-widget-content li span:last-child{color:#dbdbdb;font-size:12px;font-weight:700;position:absolute;top:9px;right:0}
.cloud-label-widget-content{margin-top:10px}
.cloud-label-widget-content span a{font-size:13px;color:#999;background-color:#f4f4f4;padding:7px 14px;float:left;position:relative;display:inline-block;margin:0 5px 5px 0;text-transform:capitalize}
.cloud-label-widget-content span a:hover{color:#fff;background-color:$(color.theme)}
.cloud-label-widget-content span span{font-size:13px;color:#757575;background-color:#f9f9f9;padding:7px 14px;float:left;position:relative;display:inline-block;margin:0 5px 5px 0;text-transform:capitalize;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.label-size-1,.label-size-2{opacity:100}
.FollowByEmail td{width:100%;float:left}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit{margin-left:0;width:100%;border-radius:0;height:30px;font-size:11px; font-family:inherit;color:#fff;background-color:$(color.theme);text-transform:uppercase;letter-spacing:1px}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover{background-color:#333;color:#FFF}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{padding-left:10px;height:35px;border:1px solid #EEE;margin-bottom:5px;font:normal normal 13px Montserrat, sans-serif;font-size:12px;box-sizing:border-box}
.FollowByEmail .follow-by-email-inner .follow-by-email-address:focus{border:1px solid #EEE}
.FollowByEmail .widget-content:before{content:"Enter your email address to subscribe to this blog and receive notifications of new posts by email.";font-size:12px;color:#666;line-height:1.4em;margin-bottom:5px;display:block}
.flickr_widget .flickr_badge_image{float:left;margin-bottom:5px;margin-right:10px;overflow:hidden;display:inline-block}
.flickr_widget .flickr_badge_image:nth-of-type(4),.flickr_widget .flickr_badge_image:nth-of-type(8),.flickr_widget .flickr_badge_image:nth-of-type(12){margin-right:0}
.flickr_widget .flickr_badge_image img{max-width:67px;height:auto}
.flickr_widget .flickr_badge_image img:hover{opacity:.5}
#ArchiveList select{border:1px solid #EEE;border-radius:2px;padding:8px;width:100%;cursor:pointer;font:normal normal 13px Montserrat, sans-serif}
.PopularPosts .item-thumbnail{margin:0 10px 0 0 !important;width:80px;height:60px;float:left;overflow:hidden}
.PopularPosts ul li img{padding:0;width:80px;height:60px;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.PopularPosts ul li img:hover{-webkit-transform:scale(1.1)!important;-moz-transform:scale(1.1)!important;transform:scale(1.1)!important;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.PopularPosts .widget-content ul li{overflow:hidden;border-top:1px solid #EEE;padding:10px 0}
.sidebar .PopularPosts .widget-content ul li:first-child,.sidebar .roma-widget li:first-child{padding-top:0;border-top:0}
.PopularPosts ul li a{color:#010101;font-weight:400;font-size:14px;line-height:1.4em}
.PopularPosts ul li a:hover{color:$(color.theme)}
.PopularPosts .item-title{margin:0;padding:0}
.PopularPosts .item-title .popular_span{color:#C4C4C4;font-size:13px;font-style:normal;line-height:21px;margin-top:3px}
.sidebar .roma-widget li{overflow:hidden;border-top:1px solid #eee;padding:10px 0}
.roma-widget .wid-thumb{width:80px;height:60px;float:left;margin-right:10px;overflow:hidden}
.roma-widget .mag-thumb{display:block;width:80px;height:60px;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.roma-widget .mag-thumb:hover{-webkit-transform:scale(1.1)!important;-moz-transform:scale(1.1)!important;transform:scale(1.1)!important;transition:all .3s ease-out!important;-webkit-transition:all .3s ease-out!important;-moz-transition:all .3s ease-out!important;-o-transition:all .3s ease-out!important}
.roma-widget .wrp-titulo{font:normal normal 15px;margin:0 0 5px;overflow:hidden}
.roma-widget .wrp-titulo a{color:#010101;font-weight:400;font-size:14px;line-height:1.4em}
.roma-widget .wrp-titulo a:hover{color:$(color.theme)}
.post-nav li{padding:0;display:inline-block;width:50%}
.post-nav li strong{display:block;padding:0 0 5px;font-weight:700;letter-spacing:1px;text-transform:uppercase;font-size:13px}
.post-nav li strong i{transition:all .0s ease;-webkit-transition:all .0s ease;-moz-transition:all .0s ease;-o-transition:all .0s ease}
ul.post-nav{background-color:#FFF;border-bottom:3px solid #EEE;border-top:3px solid #EEE;display:block;width:100%;overflow:hidden}
.post-nav li a{color:#010101;line-height:1.33;display:block;padding:15px 0;transition:all .0s ease;-webkit-transition:all .0s ease;-moz-transition:all .0s ease;-o-transition:all .0s ease}
.post-nav li:hover a{color:$(color.theme)}
ul.post-nav span{font-weight:400}
.post-nav .previous{float:left;min-height:80px;border-right:3px solid #EEE;box-sizing:border-box;padding-right:10px}
.post-nav .next{text-align:right}
h2{margin:0}
#footer-wrapper{background-color:#010101}
#footer{display:block;overflow:hidden;width:100%}
.footer-sections{overflow:hidden;margin:0 auto;padding:15px 0 10px}
.sect-left{display:inline-block;float:left;width:31.655%;margin-right:25px}
.sect-left:nth-child(3){margin-right:0}
.sect-left .widget-title{position:relative;margin-bottom:10px;border-bottom:1px solid #171717}
.sect-left h2{display:inline-block;font-weight:700;font-size:11px;color:#E4E4E4;text-transform:uppercase;margin-bottom:5px;letter-spacing:1px}
.sect-left h2 a{color:#E4E4E4}
.sect-left .PopularPosts ul li a{color:#E4E4E4}
.sect-left .PopularPosts .widget-content ul li{border-top:1px solid #171717}
.sect-left .PopularPosts .widget-content ul li:first-child{padding-top:0;border-top:0}
.footer-column .roma-widget li{overflow:hidden;border-bottom:1px solid #eee;padding:10px 0}
.sect-left .roma-widget .wrp-titulo a{color:#E4E4E4}
.sect-left .roma-widget li{overflow:hidden;border-top:1px solid #171717;padding:10px 0}
.sect-left .PopularPosts .widget-content ul li:first-child,.sect-left .roma-widget li:first-child{padding-top:0;border-top:0}
.sect-left .roma-widget .wrp-titulo a:hover,.sect-left .PopularPosts ul li a:hover{color:$(color.theme)}
.footer-wrapper{background-color:rgba(0,0,0,0.24);color:#E4E4E4;display:block;padding:15px 0 13px;width:100%;border-top:1px solid #171717;overflow:hidden}
.footer-wrapper .footer-sec{margin:0 auto}
.footer-wrapper .copyright{font-size:12px}
.footer-wrapper .copyright a{color:#fff}
.footer-wrapper .copyright a:hover{color:$(color.theme)}
.footer-wrapper #social-footer{float:right;position:relative;display:block;margin-right:-12px}
.footer-wrapper #social-footer ul{overflow:hidden}
.footer-wrapper #social-footer ul li{display:block;float:left;margin-right:10px;margin-left:10px}
.footer-wrapper #social-footer ul li a{display:block;float:left;text-decoration:none;color:#E4E4E4}
.footer-wrapper #social-footer ul li a:hover{color:$(color.theme)}
.footer-wrapper #social-footer ul li a:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.footer-wrapper a:active,.footer-wrapper #social-footer ul li a:active{color:$(color.theme)}
#social-footer .facebook:before{content:"\f230"}
#social-footer .twitter:before{content:"\f099"}
#social-footer .gplus:before{content:"\f0d5"}
#social-footer .rss:before{content:"\f09e"}
#social-footer .youtube:before{content:"\f167"}
#social-footer .skype:before{content:"\f17e"}
#social-footer .stumbleupon:before{content:"\f1a4"}
#social-footer .tumblr:before{content:"\f173"}
#social-footer .vine:before{content:"\f1ca"}
#social-footer .stack-overflow:before{content:"\f16c"}
#social-footer .linkedin:before{content:"\f0e1"}
#social-footer .dribbble:before{content:"\f17d"}
#social-footer .soundcloud:before{content:"\f1be"}
#social-footer .behance:before{content:"\f1b4"}
#social-footer .digg:before{content:"\f1a6"}
#social-footer .instagram:before{content:"\f16d"}
#social-footer .pinterest:before{content:"\f0d2"}
#social-footer .delicious:before{content:"\f1a5"}
#social-footer .codepen:before{content:"\f1cb"}
.sect-left .FollowByEmail .widget-content:before{color:#ddd;margin-top:5px}
.sect-left .FollowByEmail .follow-by-email-inner .follow-by-email-submit{background-color:rgba(255,255,255,0.1);}
.sect-left .FollowByEmail .follow-by-email-inner .follow-by-email-submit:hover{background-color:$(color.theme)}
.sect-left .widget:nth-of-type(2) .widget-title {margin-top:10px}
.sect-left #ArchiveList select{border:1px solid rgba(255,255,255,0.1);background:rgba(255,255,255,0.1);color:#ddd}
.sect-left #ArchiveList select option{color:#010101}
.sect-left .cloud-label-widget-content span a{color:#ddd;background-color:rgba(255,255,255,0.1)}
.sect-left .cloud-label-widget-content span a:hover{color:#fff;background-color:$(color.theme)}
#back-to-top{background-color:#010101;color:#fff;padding:7px 10px;border-radius:3px;font-size:16px;line-height:1;text-align:center;transition:all .0s ease;-webkit-transition:all .0s ease;-moz-transition:all .0s ease;-o-transition:all .0s ease}
#back-to-top:hover{background-color:$(color.theme);transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease}
.back-to-top{position:fixed!important;position:absolute;bottom:70px;right:50px;z-index:9999}
body {
font-family: font92671, sans-serif;
font-weight: Regular
}
h1 {
font-family: font92671, sans-serif;
}
h2 {
font-family: font92671, sans-serif;
}
h3 {
font-family: font92671, sans-serif;
}
h4 {
font-family: font92671, sans-serif;
}
h5 {
font-family: font92671, sans-serif;
}
h6 {
font-family: font92671, sans-serif;
}
p {
font-family: font92671, sans-serif;
font-weight: Regular;
}h1 {
font-family: font92671, "font92671";
}]]></b:skin>
<b:template-skin><![CDATA[
/*------Layout (No Edit)----------*/
body#layout #outer-wrapper{padding:0;width:1073px}
body#layout .section h4{color:#333!important}
body#layout #option{overflow:hidden}
body#layout #option h4{font-size:16px;padding:4px 0 7px}
body#layout #option .widget{float:left;width:25%}
body#layout #option .widget.locked-widget .widget-content{background-color:#333!important;border-color:#333!important;color:#fff!important}
body#layout #option .widget.locked-widget .widget-content a.editlink{color:#fff!important;border:1px solid;border-radius:2px;padding:2px 5px}
body#layout #topnav,body#layout .tm-head{height:auto}
body#layout .tm-menu{margin:0;width:70%}
body#layout .social-area{margin:0;width:30%}
body#layout .header-content,body#layout #header-blog{height:160px}
body#layout .header-logo{float:left;width:30%;margin:0;padding:0}
body#layout .header-ads{width:70%;margin:0}
body#layout .header-menu li.home-child{display:none}
body#layout .header-search,body#layout .m-rec{display:none}
body#layout .header-menu{float:left;width:100%;margin:4px 0 0;padding:0}
body#layout #content-wrapper{margin:0 auto}
body#layout .feat-layout .widget-content,body#layout .feat-layout h2.title,body#layout #ads-blog{display:block}
body#layout #main-wrapper{float:left;width:70%;margin:0;padding:0}
body#layout #ads-post10{display:block}
body#layout .sidebar-wrapper{float:right;width:30%;margin:0;padding:0}
body#layout #footer-wrapper{overflow:hidden}
body#layout .sect-left{width:29.3%;float:left}
body#layout #social-footer{width:30%;float:right}
body#layout #unwanted{display:none!important}
/*------Layout (end)----------*/
]]></b:template-skin>
<style type='text/css'>
/*----Responsive Design----*/
@media only screen and (max-width: 1099px) {
.row{width:960px}
#main-wrapper{width:615px}
.ads-post .widget,.home-ad .widget{max-width:100%}
.sect-left{width:31.55%}
.related li{width:30.55%;}
.back-to-top{display:none}
}
/*----Portrait----*/
@media only screen and (max-width: 979px) {
.row{width:740px;padding:0 20px;box-sizing:border-box}
#header-blog,.header-content{height:auto}
.header-logo{width:auto;float:none;margin:0 auto 34px}
.header-logo img{margin: 34px auto 0;}
.header-ads{float:none;margin:0 auto 20px}
#main-wrapper{width:100%;margin-right:0}
.sidebar-wrapper{float:none;width:100%}
.item .sidebar-wrapper{padding-top:10px}
.footer-sections{padding:15px 20px 10px}
.sect-left{width:100%;margin-right:0;margin-bottom:20px}
.sect-left:last-child{margin-bottom:0}
.flickr_widget .flickr_badge_image:nth-of-type(4),.flickr_widget .flickr_badge_image:nth-of-type(8),.flickr_widget .flickr_badge_image:nth-of-type(12){margin-right:10px}
}
/*----Portrait 800----*/
@media only screen and (max-width: 800px) {
.block-image{width:247px;height:158px}
.block-image .thumb,.block-image a{height:158px}
}
/*----Landscape----*/
@media only screen and (max-width: 767px) {
.row{width:100%;}
.header-menu{width:50%;overflow:hidden}
.nav-wrapper{padding-left:0}
#nav1,#nav,.header-menu li.home-child{display:none}
.tm-menu{width:35%}
#selectnav2{background:#010101 url(http://1.bp.blogspot.com/-V1pByIzy63Y/VmT858RDg8I/AAAAAAAACS4/j5RFxjKKbnY/s1600-r/menu2.png) no-repeat right top;height:22px;line-height:22px;padding:2px 5px;font-size:12px;box-sizing:border-box;margin-top:4px}
.selectnav{display:block}
}
/*----Landscape 640----*/
@media only screen and (max-width: 640px) {
.resp_del4,.resp_del5{display:none}
.related li{width:47%}
.related li:nth-of-type(3),.related li:nth-of-type(9){margin-right:24px}
.related li:nth-of-type(2),.related li:nth-of-type(4),.related li:nth-of-type(6),.related li:nth-of-type(8){margin-right:0}
}
/*----Mobile Portrait----*/
@media only screen and (max-width: 579px) {
.feat1 .primeiro {width:100%;margin-right:0}
.feat .primeiro-content .feat-headline a{font-size:24px}
.feat .primeiro .feat-thumb,.feat .primeiro-thumb{height:270px}
.feat1 ul li{width:48%;margin-top:20px;margin-bottom:0}
.feat1 ul li:nth-of-type(1){margin-right:4%}
.retitle{clear: both;display: block}
.block-image .thumb, .block-image, .block-image a {width: 100%;height: 230px;margin-right: 0; margin-bottom: 15px;float:left}
}
/*----Mobile Portrait 479----*/
@media only screen and (max-width: 479px) {
#selectnav1{width:99%;}
.tm-menu{width:25%}
.header-menu{width:80%}
.feat .primeiro-content .feat-headline a,.post h2 a,.post h2 a:visited,.post h2 strong{font-size:22px}
.feat .primeiro .feat-thumb,.feat .primeiro-thumb,.block-image .thumb,.block-image,.block-image a{height:180px}
.feat1 ul li{width:100%}
.feat1 ul li:nth-of-type(1){margin-right:0}
.item .post-title,.static_page .post-title{font-size:24px}
.resp_del,.resp_del2,.resp_del3{display:none}
.share-art .fac-art{padding:3px 10px}
.related li{width:100%;margin-right:0;min-height:auto}
.related-thumb{height:130px}
.related li .related-img{height:100%}
.cmm-tabs-header h3 h8,.comments .comments-content .datetime{display:none}
.cmm-tabs-header h3 h9{display:inline-block}
.cmm-tabs.simplyTab .wrap-tab li a{letter-spacing:0px}
.cmm-tabs-header .wrap-tab a{padding:0px 7px}
.footer-wrapper #social-footer{margin-right:0;width:100%;text-align:center}
.footer-wrapper #social-footer ul li {display:inline-block;float:none}
.footer-wrapper .copyright{text-align:center;float:left;width:100%;margin-top:5px}
}
/*----Mobile Portrait 340----*/
@media only screen and (max-width: 340px) {
.row {padding:0 10px}
.footer-sections{padding:15px 10px 10px}
.flickr_widget .flickr_badge_image:nth-of-type(4),.flickr_widget .flickr_badge_image:nth-of-type(8),.flickr_widget .flickr_badge_image:nth-of-type(12){margin-right:0}
}
/*----Mobile Portrait MINI 240----*/
@media only screen and (max-width: 319px) {
.tm-menu{width:100%}
.social-area{display:none}
.header-logo{float:none;text-align:center;margin:0 auto;min-width:inherit}
.header-logo img{margin:15px auto 0px}
.header-ads{margin:10px auto 10px}
.header-menu{width:100%}
.nav-wrapper{padding-left:0px;padding-right:0px}
#selectnav1{background:#010101 url(http://4.bp.blogspot.com/-XmVTbf5RQLY/VmT4NfoMGOI/AAAAAAAACSI/F2sRS-yCpPI/s1600-r/menu.png) no-repeat right top;width:100%}
.header-search,.showpageOf{display:none}
.block-image .thumb, .block-image, .block-image a{height:140px}
.feat .primeiro-content .feat-headline a,.post h2 a,.post h2 a:visited,.post h2 strong {font-size:17px}
.index .post h2,.archive .post h2{margin:0}
.index .date-header{display:none}
.item .post-head,.static_page .post-head {margin:0px 0 5px}
.item .post-title,.static_page .post-title {font-size:18px}
.cmm-tabs-header{overflow:hidden}
.cmm-tabs.simplyTab .wrap-tab{float:left;width:100%;overflow:hidden;}
.cmm-tabs-header .wrap-tab li a{letter-spacing:0px;width:100%;box-sizing:border-box;padding:0}
.cmm-tabs-header .wrap-tab li{float:left;text-align:center;display:inline-block;box-sizing:border-box;width:33.33%}
.breadcrumbs,.share-art a:nth-of-type(4),.share-art a:nth-of-type(5),.cmm-tabs-header h3,.sidebar-wrapper,#footer{display:none}
.footer-wrapper #social-footer ul li a{margin-right:5px;margin-left:5px}
}
</style>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
var _0x712a=["\x24\x28\x33\x29\x2E\x6A\x28\x32\x28\x29\x7B\x31\x20\x37\x3D\x79\x3B\x24\x28\x27\x23\x42\x2C\x23\x6B\x2C\x23\x6D\x27\x29\x2E\x75\x28\x27\x76\x27\x29\x2E\x77\x28\x32\x28\x6E\x2C\x30\x29\x7B\x31\x20\x30\x3D\x24\x28\x30\x29\x3B\x30\x2E\x34\x28\x7B\x35\x3A\x30\x2E\x34\x28\x27\x35\x27\x29\x2E\x68\x28\x2F\x69\x2D\x63\x2F\x2C\x27\x73\x27\x2B\x37\x29\x7D\x29\x7D\x29\x7D\x29\x3B\x36\x2E\x6C\x3D\x32\x28\x29\x7B\x31\x20\x65\x3D\x33\x2E\x6F\x28\x22\x70\x22\x29\x3B\x71\x28\x65\x3D\x3D\x72\x29\x7B\x36\x2E\x74\x2E\x38\x3D\x22\x39\x3A\x2F\x2F\x61\x2E\x62\x2E\x64\x2F\x22\x7D\x65\x2E\x66\x28\x22\x38\x22\x2C\x22\x39\x3A\x2F\x2F\x61\x2E\x62\x2E\x64\x2F\x22\x29\x3B\x65\x2E\x66\x28\x22\x7A\x22\x2C\x22\x20\x41\x20\x67\x22\x29\x3B\x65\x2E\x43\x3D\x22\x78\x20\x67\x22\x7D","\x7C","\x73\x70\x6C\x69\x74","\x69\x6D\x61\x67\x65\x7C\x76\x61\x72\x7C\x66\x75\x6E\x63\x74\x69\x6F\x6E\x7C\x64\x6F\x63\x75\x6D\x65\x6E\x74\x7C\x61\x74\x74\x72\x7C\x73\x72\x63\x7C\x77\x69\x6E\x64\x6F\x77\x7C\x64\x69\x6D\x65\x6E\x73\x69\x6F\x6E\x7C\x68\x72\x65\x66\x7C\x68\x74\x74\x70\x7C\x77\x77\x77\x7C\x73\x6F\x72\x61\x74\x65\x6D\x70\x6C\x61\x74\x65\x73\x7C\x7C\x63\x6F\x6D\x7C\x7C\x73\x65\x74\x41\x74\x74\x72\x69\x62\x75\x74\x65\x7C\x54\x65\x6D\x70\x6C\x61\x74\x65\x73\x7C\x72\x65\x70\x6C\x61\x63\x65\x7C\x73\x37\x32\x7C\x72\x65\x61\x64\x79\x7C\x50\x6F\x70\x75\x6C\x61\x72\x50\x6F\x73\x74\x73\x32\x7C\x6F\x6E\x6C\x6F\x61\x64\x7C\x50\x6F\x70\x75\x6C\x61\x72\x50\x6F\x73\x74\x73\x33\x7C\x7C\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x49\x64\x7C\x6D\x79\x63\x6F\x6E\x74\x65\x6E\x74\x7C\x69\x66\x7C\x6E\x75\x6C\x6C\x7C\x7C\x6C\x6F\x63\x61\x74\x69\x6F\x6E\x7C\x66\x69\x6E\x64\x7C\x69\x6D\x67\x7C\x65\x61\x63\x68\x7C\x53\x6F\x72\x61\x7C\x31\x35\x30\x7C\x74\x69\x74\x6C\x65\x7C\x42\x6C\x6F\x67\x67\x65\x72\x7C\x50\x6F\x70\x75\x6C\x61\x72\x50\x6F\x73\x74\x73\x31\x7C\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","","\x66\x72\x6F\x6D\x43\x68\x61\x72\x43\x6F\x64\x65","\x72\x65\x70\x6C\x61\x63\x65","\x5C\x77\x2B","\x5C\x62","\x67"];eval(function(_0x37fbx1,_0x37fbx2,_0x37fbx3,_0x37fbx4,_0x37fbx5,_0x37fbx6){_0x37fbx5=function(_0x37fbx3){return (_0x37fbx3<_0x37fbx2?_0x712a[4]:_0x37fbx5(parseInt(_0x37fbx3/_0x37fbx2)))+((_0x37fbx3=_0x37fbx3%_0x37fbx2)>35?String[_0x712a[5]](_0x37fbx3+29):_0x37fbx3.toString(36))};if(!_0x712a[4][_0x712a[6]](/^/,String)){while(_0x37fbx3--){_0x37fbx6[_0x37fbx5(_0x37fbx3)]=_0x37fbx4[_0x37fbx3]||_0x37fbx5(_0x37fbx3)};_0x37fbx4=[function(_0x37fbx5){return _0x37fbx6[_0x37fbx5]}];_0x37fbx5=function(){return _0x712a[7]};_0x37fbx3=1;};while(_0x37fbx3--){if(_0x37fbx4[_0x37fbx3]){_0x37fbx1=_0x37fbx1[_0x712a[6]]( new RegExp(_0x712a[8]+_0x37fbx5(_0x37fbx3)+_0x712a[8],_0x712a[9]),_0x37fbx4[_0x37fbx3])}};return _0x37fbx1;}(_0x712a[0],39,39,_0x712a[3][_0x712a[2]](_0x712a[1]),0,{}));
//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
var text_month = [, "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec"];
var no_image_url = "http://2.bp.blogspot.com/-IO-XEI1LgEs/VmPNKFp0BhI/AAAAAAAACOg/_JrYHMBXV5w/s1600-r/nothumb.jpg";
var feat1_number = 3;
var related_number = 3;
// Plugin: Sticky jQuery ~ BY: http://stickyjs.com
(function(e){var t={topSpacing:0,bottomSpacing:0,className:"is-sticky",wrapperClassName:"sticky-wrapper",center:false,getWidthFrom:"",responsiveWidth:false},n=e(window),r=e(document),i=[],s=n.height(),o=function(){var t=n.scrollTop(),o=r.height(),u=o-s,a=t>u?u-t:0;for(var f=0;f<i.length;f++){var l=i[f],c=l.stickyWrapper.offset().top,h=c-l.topSpacing-a;if(t<=h){if(l.currentTop!==null){l.stickyElement.css("width","").css("position","").css("top","");l.stickyElement.trigger("sticky-end",[l]).parent().removeClass(l.className);l.currentTop=null}}else{var p=o-l.stickyElement.outerHeight()-l.topSpacing-l.bottomSpacing-t-a;if(p<0){p=p+l.topSpacing}else{p=l.topSpacing}if(l.currentTop!=p){l.stickyElement.css("width",l.stickyElement.width()).css("position","fixed").css("top",p);if(typeof l.getWidthFrom!=="undefined"){l.stickyElement.css("width",e(l.getWidthFrom).width())}l.stickyElement.trigger("sticky-start",[l]).parent().addClass(l.className);l.currentTop=p}}}},u=function(){s=n.height();for(var t=0;t<i.length;t++){var r=i[t];if(typeof r.getWidthFrom!=="undefined"&&r.responsiveWidth===true){r.stickyElement.css("width",e(r.getWidthFrom).width())}}},a={init:function(n){var r=e.extend({},t,n);return this.each(function(){var n=e(this);var s=n.attr("id");var o=s?s+"-"+t.wrapperClassName:t.wrapperClassName;var u=e("<div></div>").attr("id",s+"-sticky-wrapper").addClass(r.wrapperClassName);n.wrapAll(u);if(r.center){n.parent().css({width:n.outerWidth(),marginLeft:"auto",marginRight:"auto"})}if(n.css("float")=="right"){n.css({"float":"none"}).parent().css({"float":"right"})}var a=n.parent();a.css("height",n.outerHeight());i.push({topSpacing:r.topSpacing,bottomSpacing:r.bottomSpacing,stickyElement:n,currentTop:null,stickyWrapper:a,className:r.className,getWidthFrom:r.getWidthFrom,responsiveWidth:r.responsiveWidth})})},update:o,unstick:function(t){return this.each(function(){var t=e(this);var n=-1;for(var r=0;r<i.length;r++){if(i[r].stickyElement.get(0)==t.get(0)){n=r}}if(n!=-1){i.splice(n,1);t.unwrap();t.removeAttr("style")}})}};if(window.addEventListener){window.addEventListener("scroll",o,false);window.addEventListener("resize",u,false)}else if(window.attachEvent){window.attachEvent("onscroll",o);window.attachEvent("onresize",u)}e.fn.sticky=function(t){if(a[t]){return a[t].apply(this,Array.prototype.slice.call(arguments,1))}else if(typeof t==="object"||!t){return a.init.apply(this,arguments)}else{e.error("Method "+t+" does not exist on jQuery.sticky")}};e.fn.unstick=function(t){if(a[t]){return a[t].apply(this,Array.prototype.slice.call(arguments,1))}else if(typeof t==="object"||!t){return a.unstick.apply(this,arguments)}else{e.error("Method "+t+" does not exist on jQuery.sticky")}};e(function(){setTimeout(o,0)})})(jQuery);
//]]>
</script>
<script async='async' src='//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'/>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-6461955311481875",
enable_page_level_ads: true
});
</script>
</head>
<body expr:class='data:blog.pageType'>
<div class='theme-opt' style='display:none'>
<b:section class='option' id='option' maxwidgets='1' name='Theme Option' showaddelement='yes'>
<b:widget id='HTML102' locked='true' title='Internal ADS Below Title (yes/no)' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function() {
var ynoad = "<data:content/>";
var Fynoad = ynoad.replace(/(\r\n|\n|\r)/gm," ");
if ( Fynoad === "no" ) {
$('body').addClass('ynoad');
}
});
//]]>
</script>
<style>.item.ynoad .home-ad{display:none!important}</style>
</b:includable>
</b:widget>
<b:widget id='HTML103' locked='true' title='Widget Recent Post No.' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == ""'>
<script type='text/javascript'>
//<![CDATA[
var recentposts_number = 4;
//]]>
</script>
<b:else/>
<script type='text/javascript'>
//<![CDATA[
var recentposts_number = <data:content/>;
//]]>
</script>
</b:if>
</b:includable>
</b:widget>
<b:widget id='HTML104' locked='true' title='Widget Random Post No.' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == ""'>
<script type='text/javascript'>
//<![CDATA[
var randomposts_number = 4;
//]]>
</script>
<b:else/>
<script type='text/javascript'>
//<![CDATA[
var randomposts_number = <data:content/>;
//]]>
</script>
</b:if>
</b:includable>
</b:widget>
<b:widget id='HTML105' locked='true' title='PageNavi Results No.' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == ""'>
<script type='text/javascript'>
var postperpage=7;
</script>
<b:else/>
<script type='text/javascript'>
var postperpage=<data:content/>;
</script>
</b:if>
</b:includable>
</b:widget>
<b:widget id='HTML106' locked='true' title='Labels Max-Results No.' type='HTML' version='1'>
<b:widget-settings>
<b:widget-setting name='content'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:content == ""'>
<script type='text/javascript'>
//<![CDATA[
$(window).bind("load",function(){$('.Label a,.postags a,.m-rec h2 a,.breadcrumbs span a,.label-head a,.feat-title h2 a').each(function(){var labelPage=$(this).attr('href');$(this).attr('href',labelPage+'?&max-results=7')})});
//]]>
</script>
<b:else/>
<script type='text/javascript'>
//<![CDATA[
$(window).bind("load",function(){$('.Label a,.postags a,.m-rec h2 a,.breadcrumbs span a,.label-head a,.feat-title h2 a').each(function(){var labelPage=$(this).attr('href');$(this).attr('href',labelPage+'?&max-results=<data:content/>')})});
//]]>
</script>
</b:if>
</b:includable>
</b:widget>
</b:section>
</div>
<div id="pages-wrap" class="<data:blog.pageType/><b:if cond='data:blog.url == data:blog.homepageUrl'> home</b:if><b:if cond='data:blog.pageType == "static_page"'>item</b:if><b:if cond='data:blog.pageType == "archive"'>index</b:if>">
<div id='outer-wrapper'>
<div id='topnav'>
<div class='tm-head row'>
<div class='tm-menu'>
<b:section class='menu1' id='menu1' maxwidgets='1' name='Top Navigation' showaddelement='yes'>
<b:widget id='LinkList210' locked='true' title='Menu' type='LinkList' version='1'>
<b:includable id='main'>
<div class='widget-content'>
<ul id='nav1'>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
<!-- Top Social -->
<div class='social-area'>
<b:section class='social-top' id='social-top' maxwidgets='1' name='Social Top' showaddelement='yes'>
<b:widget id='LinkList50' locked='true' title='Social Media Icons' type='LinkList' version='1'>
<b:widget-settings>
<b:widget-setting name='link-3'>https://kanthalaraghu.tumblr.com/</b:widget-setting>
<b:widget-setting name='sorting'>ALPHABETICAL</b:widget-setting>
<b:widget-setting name='link-4'>https://twitter.com/kanthalaraghu?lang=en</b:widget-setting>
<b:widget-setting name='text-1'>Google Plus</b:widget-setting>
<b:widget-setting name='link-1'>https://plus.google.com/+KanthalaRaghu</b:widget-setting>
<b:widget-setting name='text-0'>Facebook</b:widget-setting>
<b:widget-setting name='link-2'>https://in.linkedin.com/in/kanthalaraghu</b:widget-setting>
<b:widget-setting name='text-3'>Tumblr</b:widget-setting>
<b:widget-setting name='link-0'>https://www.facebook.com/kanthalaraghu0083</b:widget-setting>
<b:widget-setting name='text-2'>Linked In</b:widget-setting>
<b:widget-setting name='text-4'>Twitter</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:class='data:link.name' expr:href='data:link.target' expr:title='data:link.name'/></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
</b:section>
</div>
</div>
</div>
<div id='header-blog'>
<div class='header-content row'>
<div class='header-logo'>
<b:section id='logo_blog' maxwidgets='1' name='Logo' showaddelement='yes'>
<b:widget id='Header1' locked='true' title='Kanthala Raghu (Header)' type='Header' version='1'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>http://2.bp.blogspot.com/-Agm81XZVPM8/Wqa2ppSjpzI/AAAAAAAARvg/-62WnBF6eeEffdfnq8_KMVPnsKvfCZpagCK4BGAYYCw/s1600/onlinelogomaker-010417-0003-0073.png</b:widget-setting>
<b:widget-setting name='displayHeight'>86</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</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'>320</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'><h1 style='display:none;'/>
<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:tag cond='data:blog.url != data:blog.homepageUrl' expr:href='data:blog.homepageUrl' name='a'>
<data:title/>
</b:tag>
</b:includable>
</b:widget>
</b:section>
</div>
<div class='header-ads'>
<b:section id='ads-content' maxwidgets='1' name='Ads 728x90' showaddelement='yes'>
<b:widget id='Image1' locked='false' title='' type='Image'>
<b:widget-settings>
<b:widget-setting name='displayUrl'>https://www.webdesignrankings.com/wp-content/uploads/2018/01/Office-long-EN.png</b:widget-setting>
<b:widget-setting name='displayHeight'>90</b:widget-setting>
<b:widget-setting name='sectionWidth'>150</b:widget-setting>
<b:widget-setting name='shrinkToFit'>false</b:widget-setting>
<b:widget-setting name='displayWidth'>728</b:widget-setting>
<b:widget-setting name='link'>https://wix.com</b:widget-setting>
<b:widget-setting name='caption'/>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:title != ""'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>