-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBolina Premium Version.xml
3636 lines (3376 loc) · 315 KB
/
Bolina Premium 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, maximum-scale=1' name='viewport'/>
<b:include data='blog' name='all-head-content'/>
<!--########### SEO Titles ########### -->
<b:if cond='data:blog.url == data:blog.homepageUrl'>
</b:if>
<b:if cond='data:blog.pageType == "index"'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> ~ <data:blog.title/></title>
</b:if>
<!--########### Meta Description ########### -->
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='Description-here' name='description'/>
<meta content='Keywords-here' name='keywords'/>
</b:if>
<link href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' rel='stylesheet'/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700&subset=latin,vietnamese' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700,800&subset=latin,vietnamese,greek-ext,greek,latin-ext' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Lato:100,400,700,900,100italic,300italic,400italic,700italic' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800' rel='stylesheet' type='text/css'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js' type='text/javascript'/>
<b:include data='blog' name='google-analytics'/>
<b:skin><![CDATA[/*
/*-----------------------------------------------
/////////////////////////////////////////////////////////
// //
// Blogger: Template Style
// Name: Bolina Responsive Blogger Template
// Designer: alistarbot
// URL: http://www.alistarbot.com/
// Date: Feb 24/2016
// Version: Free Version
//
//
/////////////////////////////////////////////////////////
License: You May Not Remove the footer credit links because This free Blogger template is licensed under the Creative Commons Attribution 3.0 License, which permits both personal and commercial use.
-----------------------------------------------*/
body#layout .blogme{width:60%; float:left; overflow:hidden}
body#layout .side-right{width:38%; float:left; overflow:hidden}
body#layout .footer-widgets-box{width:24%; float:left; overflow:hidden}
body#layout .menu-foot, body#layout .footer-4c .cat-box-title, body#layout .hright{display:none}
body#layout .Header{margin-bottom:20px}
body#layout #header{margin-bottom: 35px;}
body#layout .hleft{padding-top:10px}
/* Variable definitions
====================
<Variable name="keycolor" description="Main Color" type="color" default="#1a222a" value="#4791d2"/>
<Variable name="body.background" description="Body Background" type="background"
color="#f1f2f3"
default="#ea9c16 url() no-repeat fixed top center "
value="#efefef url() no-repeat fixed top center"/>
<Group description="Main Color" selector=".plook-first:hover .mak">
<Variable name="maincolor" description="Blog Main Color" type="color" default="#2a83ed" value="#4791d2"/>
</Group>
<Group description="Main Menu" selector="nav.main_menu ul li a">
<Variable name="fontmn" description="Font Family" type="font" default="normal 600 13px 'Open Sans','Oswald', Arial, Helvetica, sans-serif" value="normal 600 13px 'Open Sans','Oswald', Arial, Helvetica, sans-serif"/>
</Group>
<Group description="SlideShow" selector=".step h3, .step p, a.jms-link">
<Variable name="title.slide" description="SlideShow Font Title " type="font" default="normal normal 40px 'PT Sans','Oswald', Arial, Helvetica, sans-serif" value="normal normal 40px 'PT Sans','Oswald', Arial, Helvetica, sans-serif"/>
<Variable name="color.slide" description="SlideShow Color Posts" type="color" default="#ffffff" value="#ffffff"/>
</Group>
<Group description="Title Header" select=".titlep a, .descript h3">
<Variable name="fontph" description="Font Header" type="font" default="normal 600 25px 'Open Sans', 'Tahom', Arial" value="normal 600 25px 'Open Sans', 'Tahom', Arial"/>
<Variable name="colorph" description="Color Post Header" type="color" default="#333333" value="#333333"/>
</Group>
<Group description="Description Header" select=".descript h3">
<Variable name="fontdes" description="Font Description Header" type="font" default="normal 400 14px 'Open Sans', 'Tahoma', Arial" value="normal 400 14px 'Open Sans', 'Tahoma', Arial"/>
<Variable name="colordes" description="Color Description Header" type="color" default="#777777" value="#777777"/>
</Group>
<Group description="Post Title" select="h3.ttpost a, h2.post-box-title, .boxcl .post-box-title a">
<Variable name="fonttitle" description="Font Post Title" type="font" default="normal 600 13px 'Open Sans', 'Tahom', Arial" value="normal 600 13px 'Open Sans', 'Tahom', Arial"/>
</Group>
<Group description="Post Shorten" select=".morepost, .entry">
<Variable name="font.body" description="Font body" type="font" default="normal normal 13px 'Open Sans'" value="normal normal 13px 'Open Sans'"/>
<Variable name="color.shorten" description="Color Shorten" type="color" default="#9a9a9a" value="#9a9a9a"/>
</Group>
*/
/*==///////////////////////////////////////////
// Boxed Style
/////////////////////////////////////////==*/
#navbar-iframe-container{display:none !important;}
#Attribution1 {
display: none;
}
#header, #body-wrapper, #footer {
background: #fff none repeat scroll 0 0;
box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.5);
margin: 0 auto !important;
max-width: 1150px;
}
#section-recent, .blog-wrapper{background:#fff}
#footer{margin-top:-16px !important}
body{background:$(body.background)}
a:link, a:visited{text-decoration:none; color:#444}
a:hover{color:$(maincolor)}
*{margin:0; padding:0;}
.clear{clear:both;}
.Header .description {
display: none;
margin: 0.5em 0 10px;
padding: 0 2px;
}
.ddpost:before{color:#bbb;content:"\f073";font:12px fontawesome;padding-right:.4em;text-decoration:inherit;top:0}
#header,#body-wrapper,#footer{width:100%}
.container{width:1050px; margin:0 auto;}
#header{background:#fff; box-shadow: 0 3px 5px rgba(0,0,0,0.1); min-height:80px; -webkit-box-sizing: border-box;
-moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.2s ease-in ;
-moz-transition: all 0.2s ease-in ;
-ms-transition: all 0.2s ease-in ;
-o-transition: all 0.2s ease-in ;
transition: all 0.2s ease-in ;}
.Header img{ -webkit-transition: all 0.5s ease-in ;
-moz-transition: all 0.5s ease-in ;
-ms-transition: all 0.5s ease-in ;
-o-transition: all 0.5s ease-in ;
transition: all 0.5s ease-in ;
height: 80px;
width: auto;
}
.hleft{float:left; height:80px; line-height:80px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box; box-sizing: border-box; width:20%}
-moz-transition: all 0.5s ease-in ;
-ms-transition: all 0.5s ease-in ;
-o-transition: all 0.5s ease-in ;
transition: all 0.5s ease-in ;}
/*==///////////////////////////////////////////
// Menu
/////////////////////////////////////////==*/
.section, .widget{margin:0; padding:0}
#slidertop h2 {display:none;}
#slidertop{margin:auto}
/*==///////////////////////////////////////////
// Search Box
/////////////////////////////////////////==*/
.search-right{display:block;float:left;margin-right:-15px;margin-top:-80px;position:static;right:0;width:100%;}
*:after,*:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.main,.container > header{margin:0 auto;padding:2em}
.container > header{text-align:center;background:rgba(0,0,0,0.01)}
.container > header h1{font-size:2.625em;line-height:1.3;margin:0;font-weight:300}
.container > header span{display:block;font-size:60%;color:#777;padding:0 0 0.6em 0.1em; font:normal normal 12px 'Open Sans' !important}
.main{max-width:69em}
.column{float:left;width:50%;padding:0 2em;min-height:300px;position:relative}
.column:nth-child(2){box-shadow:-1px 0 0 rgba(0,0,0,0.1)}
.column p{font-weight:300;font-size:2em;padding:0;margin:0;text-align:right;line-height:1.5}
.column a{border:3px solid #b4c7da;padding:0 15px;display:inline-block;margin:20px 0}
.column a:hover{border-color:#fff}
.codrops-top{background:#566472;background:rgba(255,255,255,0.2);text-transform:uppercase;width:100%;font-size:0.69em;line-height:2.2}
.codrops-top a{padding:0 1em;letter-spacing:0.1em;color:#fff;display:inline-block}
.codrops-top a:hover{background:rgba(255,255,255,0.8);color:#2c3e50}
.codrops-top span.right{float:right}
.codrops-top span.right a{float:left;display:block}
.codrops-icon:before{font-family:'codropsicons';margin:0 4px;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}
.codrops-icon-drop:before{content:"\e001"}
.codrops-icon-prev:before{content:"\e004"}
@media screen and (max-width:46.0625em){.column{width:100%;min-width:auto;min-height:auto;padding:1em}
.column p{text-align:left;font-size:1.5em}
.column:nth-child(2){box-shadow:0 -1px 0 rgba(0,0,0,0.1)}
}
@media screen and (max-width:25em){.codrops-icon span{display:none}
}
#cmwidget h2.title{display:none}
.sb-search{background:#fafafa none repeat scroll 0 0;float:right;height:60px;margin-top:10px;min-width:60px;overflow:hidden;position:relative;transition:width 0.3s ease 0s;width:0;z-index:9999999 !important;}
.sb-search-input{position:absolute;top:0;right:0;border:none;outline:none;background:transparent !important;width:100%;height:60px;margin:0;z-index:10;padding:20px 65px 20px 20px;font-family:inherit;font-size:20px;color:#2c3e50; font:normal normal 13px 'Open Sans','Oswald', Arial, Helvetica, sans-serif !important;}
.sb-icon-search,.sb-search-submit{width:53px;height:60px;display:block;position:absolute;right:0;top:0;padding:0;margin:0;line-height:60px;text-align:center;cursor:pointer}
.sb-search-submit{background:#fff;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;color:transparent;border:none;outline:none;z-index:-1}
.sb-icon-search{color: #fff;
background: transparent url(http://1.bp.blogspot.com/-cUz62s9wLqk/Utj9A4rmgeI/AAAAAAAABAA/8wIpf2LMa0A/s1600/01_search.png) no-repeat 10px;text-indent: -999px;z-index: 90;font-size: 22px;font-family: 'icomoon';speak: none;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;-webkit-font-smoothing: antialiased;-moz-transition: .4s ease-in-out;-webkit-transition: .4s ease-in-out;transition: .4s ease-in-out;}
.sb-search.sb-search-open,.no-js .sb-search{width:100%}
.sb-search.sb-search-open .sb-search-submit,.no-js .sb-search .sb-search-submit{z-index:90}
.sb-search{position:relative;margin-top:10px;width:0%;min-width:60px;height:60px;float:right;overflow:hidden;-webkit-transition:width 0.3s;-moz-transition:width 0.3s;transition:width 0.3s;-webkit-backface-visibility:hidden}
.sb-search-input{position:absolute;top:0;right:0;border:none;outline:none;background:#fff;width:100%;height:60px;margin:0;z-index:10;padding:20px 65px 20px 20px;font-family:inherit;font-size:20px;color:#2c3e50}
.sb-search-submit{background:#fff;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0;color:transparent;border:none;outline:none;z-index:-1}
.sb-search.sb-search-open,.no-js .sb-search{width:100%}
.sb-search.sb-search-open .sb-search-submit,.no-js .sb-search .sb-search-submit{z-index:90}
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);*,*:after,*:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
.main,.container > header{margin:0 auto;padding:2em}
.container > header{text-align:center;background:rgba(0,0,0,0.01)}
.container > header h1{font-size:2.625em;line-height:1.3;margin:0;font-weight:300}
.main{max-width:69em}
.column{float:left;width:50%;padding:0 2em;min-height:300px;position:relative}
.column:nth-child(2){box-shadow:-1px 0 0 rgba(0,0,0,0.1)}
.column p{font-weight:300;font-size:2em;padding:0;margin:0;text-align:right;line-height:1.5}
.column a{border:3px solid #b4c7da;padding:0 15px;display:inline-block;margin:20px 0}
.column a:hover{border-color:#fff}
.codrops-top{background:#566472;background:rgba(255,255,255,0.2);text-transform:uppercase;width:100%;font-size:0.69em;line-height:2.2}
.codrops-top a{padding:0 1em;letter-spacing:0.1em;color:#fff;display:inline-block}
.codrops-top a:hover{background:rgba(255,255,255,0.8);color:#2c3e50}
.codrops-top span.right{float:right}
.codrops-top span.right a{float:left;display:block}
.codrops-icon:before{font-family:'codropsicons';margin:0 4px;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}
.codrops-icon-drop:before{content:"\e001"}
.codrops-icon-prev:before{content:"\e004"}
@media screen and (max-width:46.0625em){.column{width:100%;min-width:auto;min-height:auto;padding:1em}
.column p{text-align:left;font-size:1.5em}
.column:nth-child(2){box-shadow:0 -1px 0 rgba(0,0,0,0.1)}
}
@media screen and (max-width:25em){.codrops-icon span{display:none}
}
/*
ul#foo3 li:nth-child(2) .imagehv{-moz-transition: .5s ease-in-out;-webkit-transition: .5s ease-in-out;transition: .5s ease-in-out;z-index: 1;background:$(maincolor) url(http://1.bp.blogspot.com/-iNvOMa_461M/UtikbnDY00I/AAAAAAAAA-k/heHVfAU3exQ/s1600/1.png) no-repeat center center;visibility: visible;opacity:0.8;}
ul#foo3 li:nth-child(2):hover .imagehv{background:none}
*/
/*==///////////////////////////////////////////
// Bottom to Top
/////////////////////////////////////////==*/
.back-to-top {float: right;left: 0;padding-left: 20px;position: relative;}
.back-to-top .fa {background: #4e5563 none repeat scroll 0 0; border-radius: 50px;color: #fff;font-size: 1.3em;padding: 10px 13px;transition: all 0.3s ease-in-out 0s;}
.back-to-top .fa:hover {background-color: #222;}
/*==///////////////////////////////////////////
// Social Buttons
/////////////////////////////////////////==*/
.floating-buttons{position:fixed;top:170px;width:45px;z-index:9999}
.button-left{left:0}
.button-right{right:0}
.floating-buttons #twitter-btn .social-icon,.floating-buttons #facebook-btn .social-icon,.floating-buttons #google-btn .social-icon,.floating-buttons #rss-btn .social-icon,.floating-buttons #pinterest-btn .social-icon,.floating-buttons #youtube-btn .social-icon{background-color:#4e5563;background-image:url(http://1.bp.blogspot.com/-zt3csy2DqGo/U661h1iTakI/AAAAAAAAAFc/v5tUjZIJDHs/s1600/mas-icons.png)}
.button-left #facebook-btn span{background-position:right 10px}
.button-left #twitter-btn span{background-position:right -35px}
.button-left #google-btn span{background-position:right -127px}
.button-left #rss-btn span{background-position:right -80px}
.button-right #facebook-btn span{background-position:12px 10px}
.button-right #twitter-btn span{background-position:11px -35px}
.button-right #google-btn span{background-position:10px -127px}
.button-right #rss-btn span{background-position:11px -80px}
.floating-buttons #facebook-btn:hover .social-icon{background-color:#3B5998}
.floating-buttons #twitter-btn:hover .social-icon{background-color:#62BDB2}
.floating-buttons #google-btn:hover .social-icon{background-color:#DB4A39}
.floating-buttons #rss-btn:hover .social-icon{background-color:#FF8B0F}
.floating-buttons #pinterest-btn:hover .social-icon{background-color:#D43638}
.floating-buttons #youtube-btn:hover .social-icon{background-color:#C4302B}
.floating-buttons a:hover .social-text{display:block}
.button-left .social-icon{-moz-transition:background-color .4s ease-in 0;-webkit-transition:background-color .4s ease-in 0;background-repeat:no-repeat;display:block;float:left;height:43px;margin-bottom:2px;width:43px}
.button-left .social-text{display:none;float:right;font-size:1em;font-weight:700;white-space:nowrap;margin:11px 40px 11px 0}
.button-right .social-icon{-moz-transition:background-color .4s ease-in 0;-webkit-transition:background-color .4s ease-in 0;background-repeat:no-repeat;display:block;float:right;height:43px;margin-bottom:2px;width:43px}
.button-right .social-text{display:none;float:left;font-size:80%;font-weight:700;white-space:nowrap;margin:11px 0 11px 40px}
.floating-buttons .social-text{color:#FFF}
.button-left #pinterest-btn span,.button-right #pinterest-btn span{background-position:11px -177px}
.button-left #youtube-btn span,.button-right #youtube-btn span{background-position:11px -223px}
/*==///////////////////////////////////////////
// Slider
/////////////////////////////////////////==*/
.jms-slideshow{position:relative;width:100%;min-width:320px;margin:0px auto; /*height:460px;*/ }
.jms-wrapper{width:auto;min-width:320px;height:440px;background-color:#fff;-webkit-background-clip:padding;-moz-background-clip:padding;background-clip:padding-box;outline:none;-webkit-transition:background-color 1s linear;-moz-transition:background-color 1s linear;-o-transition:background-color 1s linear;-ms-transition:background-color 1s linear;transition:background-color 1s linear}
.color-0{background:#000; -webkit-transition: all 0.2s ease-in ;
-moz-transition: all 0.2s ease-in ;
-ms-transition: all 0.2s ease-in ;
-o-transition: all 0.2s ease-in ;
transition: all 0.2s ease-in ;
}
.color-1{background: url(http://2.bp.blogspot.com/-PbYUVYzfs5I/Ut1nbsnH_QI/AAAAAAAABCc/yQ_c9Emo0Vk/s1600/grass.jpg); -webkit-transition: all 0.2s ease-in ;
-moz-transition: all 0.2s ease-in ;
-ms-transition: all 0.2s ease-in ;
-o-transition: all 0.2s ease-in ;
transition: all 0.2s ease-in ;}
.color-2{background: url(https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F2.bp.blogspot.com%2F-gPXx0yP6rGA%2FUsqUW5INiLI%2FAAAAAAAAA18%2FBigy7rUZgqI%2Fs1600%2Fcl3.jpg&container=blogger&gadget=a&rewriteMime=image%2F*);
-webkit-transition: all 0.2s ease-in ;
-moz-transition: all 0.2s ease-in ;
-ms-transition: all 0.2s ease-in ;
-o-transition: all 0.2s ease-in ;
transition: all 0.2s ease-in ;
}
.color-3{background: url(http://1.bp.blogspot.com/-Fosq4nyjcaE/Us_b8PCzI3I/AAAAAAAAA6U/zdpu5eqI9jI/s1600/vista-windows7-wallpaper20097121511610977803.jpg);
-webkit-transition: all 0.2s ease-in ;
-moz-transition: all 0.2s ease-in ;
-ms-transition: all 0.2s ease-in ;
-o-transition: all 0.2s ease-in ;
transition: all 0.2s ease-in ;
}
.color-4{background:#B1224D url(http://2.bp.blogspot.com/-ZB2h07bpSRg/Uolb8OGF-aI/AAAAAAAACLY/pdFFWasQ7XM/s1600/bg_5.jpg);}
.color-5{background:#A041AD url(http://demos.xiaothemes.com/wada/files/2013/11/ios7back.jpg);}
.step{width:1050px;height:420px;display:block;-webkit-transition:opacity 1s;-moz-transition:opacity 1s;-ms-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}
.step:not(.active){opacity:0;filter:alpha(opacity=0); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)";}
.jms-content{margin:0 370px 0 0px;position:relative;clear:both; z-index:10}
.step h3{color:$(color.slide);font-size:52px;font-weight:bold;text-shadow:0 5px 5px rgba(0, 0, 0, 0.3);margin:0;padding:60px 0 10px 0}
.step h3{font:$(title.slide) }
.step p{color:$(color.slide);text-shadow:1px 1px 1px rgba(0,0,0,0.1);font-size:34px;font-weight:normal;position:relative;margin:0}
.step p{font:normal 400 14px 'Open Sans','Oswald', Arial, Helvetica, sans-serif;line-height:2.4}
a.jms-link{color:$(color.slide);text-transform:uppercase;
background:transparent; border:1px solid $(color.slide);
padding:8px 15px;
font:normal normal 12px 'Open Sans', Arial, Helvetica, sans-serif;
display:inline-block;color:#fff;
opacity:1;margin-top:40px;clear:both;
-webkit-transition:all 0.1s ease-in-out 1s;
-moz-transition:all 0.1s ease-in-out 1s;
-ms-transition:all 0.1s ease-in-out 1s;
-o-transition:all 0.1s ease-in-out 1s;
transition:all 0.1s ease-in-out 1s;
}
a.jms-link:hover{padding:8px 25px; -webkit-transition:all 0.1s ease-in-out .1s;
-moz-transition:all 0.1s ease-in-out .1s;
-ms-transition:all 0.1s ease-in-out .1s;
-o-transition:all 0.1s ease-in-out .1s;
transition:all 0.1s ease-in-out .1s;}
.step:not(.active) a.jms-link{opacity:0;margin-top:80px}
.step img{position:absolute;right:0;top:30px; z-index:1; }
.jms-dots{width:100%;position:absolute;text-align:center;left:0;bottom:40px;z-index:2000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}
.jms-dots span{display:inline-block;position:relative;width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,0.2) ;margin:3px;cursor:pointer;box-shadow: 1px 1px 1px rgba(0,0,0,0.5); -webkit-transition:all 0.8s ease-in-out .1s;
-moz-transition:all 0.8s ease-in-out .1s;
-ms-transition:all 0.8s ease-in-out .1s;
-o-transition:all 0.8s ease-in-out .1s;
transition:all 0.8s ease-in-out .1s;}
.jms-dots span:hover{background:$(maincolor)}
.jms-dots span.jms-dots-current:after{content:'';width:8px;height:8px;position:absolute;top:2px;left:2px;border-radius:50%;background:rgba(255,255,255,0.8)}
.jms-arrows{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}
.jms-arrows span{position:absolute;top:50%;margin-top:-40px;height:80px;width:30px;cursor:pointer;z-index:2000;box-shadow:1px 1px 4px rgba(0,0,0,0.1)}
.jms-arrows span.jms-arrows-prev{background:#fff url(https://lh5.googleusercontent.com/-ZhbjK2QrZac/UqclPYgsyuI/AAAAAAAAAcw/IoB-50GyvLk/w10-h15-no/arrow_left.png) no-repeat 50% 50%;left:0;border-radius:0 0px 0px 0; opacity:0.3; -moz-transition: .2s ease-in-out;-webkit-transition: .2s ease-in-out;transition: .2s ease-in-out; visibility:hidden;}
.jms-arrows span.jms-arrows-next{background:#fff url(https://lh5.googleusercontent.com/-soVd2Qa2048/UqclPZleqHI/AAAAAAAAAcs/FCQZAH45TYw/w10-h15-no/arrow_right.png) no-repeat 50% 50%;right:0;border-radius:0px 0 0 0px; opacity:0.3; -moz-transition: .2s ease-in-out;-webkit-transition: .2s ease-in-out;transition: .2s ease-in-out; visibility:hidden;}
.jms-slideshow:hover span.jms-arrows-prev, .jms-slideshow:hover span.jms-arrows-next{visibility:visible}
.jms-arrows span.jms-arrows-next:hover{opacity:1}
.jms-arrows span.jms-arrows-prev:hover{opacity:1}
.jms-wrapper.not-supported{background-color:#E3D8FF;background-color:rgba(227,216,268,1)}
.jms-wrapper.not-supported:after{content:'The slideshow functionality is not supported on your device.';padding:0 0 30px;text-align:center;display:block}
.jms-wrapper.not-supported .step{display:none;position:relative;opacity:1;filter:alpha(opacity=99); -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)";margin:20px auto}
.jms-wrapper.not-supported .step:first-of-type{display:block}
.jms-wrapper.not-supported .step:not(.active) a.jms-link{opacity:1;margin-top:40px}
.clr{clear:both;padding:0;height:0;margin:0}
.codrops-top{line-height:24px;font-size:11px;background:#fff;background:rgba(255,255,255,0.6);text-transform:uppercase;z-index:9999;position:relative;font-family:Cambria,Georgia,serif;box-shadow:1px 0 2px rgba(0,0,0,0.2)}
.codrops-top a{padding:0 10px;letter-spacing:1px;color:#333;display:inline-block}
.codrops-top a:hover{background:rgba(255,255,255,0.3)}
.codrops-top span.right{float:right}
.codrops-top span.right a{float:left;display:block}
.codrops-demos{text-align:center;display:block;line-height:30px;padding:5px 0}
.codrops-demos a{display:inline-block;margin:0 4px;padding:0 6px;color:#aaa;line-height:20px;font-size:13px;text-shadow:1px 1px 1px #fff;border:1px solid #ddd;background:#fff;background:-moz-linear-gradient(top,#fff 0%,#f6f6f6 47%,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#fff),color-stop(47%,#f6f6f6),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fff 0%,#f6f6f6 47%,#ededed 100%);background:-o-linear-gradient(top,#fff 0%,#f6f6f6 47%,#ededed 100%);background:-ms-linear-gradient(top,#fff 0%,#f6f6f6 47%,#ededed 100%);background:linear-gradient(top,#fff 0%,#f6f6f6 47%,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff',endColorstr='#ededed',GradientType=0 );box-shadow:0 1px 1px rgba(255,255,255,0.5)}
.codrops-demos a:hover{color:#333;box-shadow:0 1px 1px rgba(255,255,255,0.5)}
.codrops-demos a:active{background:#fff}
.codrops-demos a.current-demo,.codrops-demos a.current-demo:hover{background:#f6f6f6}
/*==///////////////////////////////////////////
// Recent Side Bar styling
/////////////////////////////////////////==*/
#top-ads h2 {
display:none;
}
#top-ads{padding:10px 0px;}
/*==///////////////////////////////////////////
// Recent Side Bar styling
/////////////////////////////////////////==*/
.post-left{width:31.3%; overflow:hidden; float:left; height:auto; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; margin-right:3%}
.post-left:nth-child(3n){margin-right:0px !important}
/*.post-left img{max-width:100%}*/
a.rca{width:100%; height:165px; position:relative; overflow:hidden;display:block}
.posttitle{text-align:center; padding:10px 0px 30px 0px}
.titlep::after{border-bottom:4px double #4e5563;content:"";display:inline-block;height:1px;margin-left:25px;position:absolute;margin-top: 20px;width:6%;}
.titlep::before{border-bottom:4px double #4e5563;content:"";display:inline-block;height:1px;margin-left:-100px;position:absolute; margin-top: 20px;width:6%;}
.titlep a{color:#4e5563 !important;font-family:raleway,lato,arial,sans-serif !important;font-size:26px !important;font-weight:700 !important;line-height:40px !important;margin-bottom:0;margin-top:65px;text-align:center;}
.postcontent .ttpost { height:50px; width:100% !important; padding: 10px 0 !important; overflow:hidden !important;}
.postcontent .ttpost a {overflow: hidden; padding: 0 15px !important;}
.titlep{padding:0px 0px 10px 0px}
.descript h3{font-size:17px;font-weight:300;font:$(fontdes), Arial;color:$(colordes)}
h3.ttpost a, h2.post-box-title{border-radius:0 80px;font-family:raleway,lato,arial,sans-serif !important;font-feature-settings:normal !important;font-kerning:auto !important;font-language-override:normal !important;font-size:13px !important;font-size-adjust:none !important;font-stretch:normal !important;font-synthesis:weight style !important;font-variant:normal !important;font-weight:600 !important;line-height:normal !important;padding:8px 22px !important;transition:all 0.3s ease-in-out 0s;}
h3.ttpost a, h2.post-box-title:hover {
border-radius: 80px 0px 80px 0px;
}
a.aslider img{background:#555}
.ttpost{background:white none repeat scroll 0 0;border-bottom:2px solid #ebebeb;border-left:4px solid #4791d2;font-family:raleway,lato,arial,sans-serif !important;padding:9px 0 9px 10px;text-transform:capitalize;}
.ddpost {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31d160',endColorstr='$(maincolor)',GradientType=0 );
padding: 3px 0px;
padding-left:15px;
font: normal normal 12px 'Open Sans', Arial, Helvetica, sans-serif;
display: inline-block;
color: #777;
opacity: 1;
clear: both;
-webkit-transition: all 0.1s ease-in-out 1s;
-moz-transition: all 0.1s ease-in-out 1s;
-ms-transition: all 0.1s ease-in-out 1s;
-o-transition: all 0.1s ease-in-out 1s;
transition: all 0.1s ease-in-out 1s;}
.morepost {
border-left: 2px solid #f4f4f4;
color: #9a9a9a;
font: 13px/18px "Open Sans";
padding: 10px 0 10px 13px;
}
.parrow{color:#666; -webkit-transition: all 0.1s ease-in-out ;
-moz-transition: all 0.1s ease-in-out ;
-ms-transition: all 0.1s ease-in-out ;
-o-transition: all 0.1s ease-in-out ;
transition: all 0.1s ease-in-out ;}
/*==///////////////////////////////////////////
// Feature slider dating
/////////////////////////////////////////==*/
.plook{float:left;overflow:hidden;position:relative;cursor:default;background:#fff no-repeat center center;}
.phover .mask{width:100%;display:none;height:100%;position:absolute;overflow:hidden;top:0px;left:0;}
.plook .mask,.plook .content{width:100%;height:100%;position:absolute;overflow:hidden;top:20px;left:0;}
.plook img{display:block;position:relative;}
.plook h2{text-transform:uppercase;color:#fff;text-align:center;position:relative;font-size:17px;padding:10px;background:rgba(0, 0, 0, 0.8);margin:20px 0 0 0;}
.plook p{font-family:Georgia, serif;font-style:italic;font-size:12px;position:relative;color:#fff;padding:10px 20px 20px;text-align:center;}
.plook a.info{display:inline-block;text-decoration:none;padding:7px 14px;background:#000;color:#fff;text-transform:uppercase;-webkit-box-shadow:0 0 1px #000;-moz-box-shadow:0 0 1px #000;box-shadow:0 0 1px #000;}
.plook a.info:hover{-webkit-box-shadow:0 0 5px #000;-moz-box-shadow:0 0 5px #000;box-shadow:0 0 5px #000;}
.plook-first img{-webkit-transition:all 0.2s linear;-moz-transition:all 0.2s linear;-o-transition:all 0.2s linear;-ms-transition:all 0.2s linear;transition:all 0.2s linear;}
.plook-first .mask{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-o-transition:all 0.4s ease-in-out;-ms-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;}
.plook-first div.info1{-webkit-transform:translateX(-100px);-moz-transform:translateX(-100px);-o-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}
.plook-first div.info2{-webkit-transform:translateX(-100px);-moz-transform:translateX(-100px);-o-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-o-transition:all 0.4s ease-in-out;-ms-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;}
.plook-first:hover img{-webkit-transform:scale(1.1,1.1);-moz-transform:scale(1.1,1.1);-o-transform:scale(1.1,1.1);-ms-transform:scale(1.1,1.1);transform:scale(1.1,1.1);}
.mak{width:100%;height:100%;position:absolute;left:-100%;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-o-transition:all 0.4s ease-in-out;-ms-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;}
.plook-first:hover .mak{background:$(maincolor);left:0;opacity:0.8}
.plook-first div.info3{-webkit-transform:translateX(-100px);-moz-transform:translateX(-100px);-o-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3{margin-top:15%;margin-left:28%;}
.plook-first:hover .mask{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1;}
.plook-first:hover .rca{background:rgba(0,0,0,0.5);display:block;}
.plook-first:hover div.info1,.plook-first:hover div.info2,.plook-first:hover div.info3{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);opacity:1;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-o-transform:translateY(0px);-ms-transform:translateY(0px);transform:translateY(0px);}
.plook-first:hover .parrow{padding-left:5px}
.plook-first:hover div.info1{-webkit-transition-delay:0.1s;-moz-transition-delay:0.1s;-o-transition-delay:0.1s;-ms-transition-delay:0.1s;transition-delay:0.1s;}
.plook-first:hover div.info3{-webkit-transition-delay:0.2s;-moz-transition-delay:0.2s;-o-transition-delay:0.2s;-ms-transition-delay:0.2s;transition-delay:0.2s;}
#postf{width:100%}
.postcontent{background:#fefefe none repeat scroll 0 0;border-bottom:2px solid #e6e6e6;margin-top:-2px;position:relative;z-index:9999;}
i.pcm{padding: 5px 10px;padding-left: 30px;color: white;background: url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png) no-repeat;background-position: 5px 7px; font: normal 300 12px 'Open Sans', 'Tahom', Arial}
i.pdt{padding: 5px 10px;padding-left: 30px;color: white;background: url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png) no-repeat;background-position: 5px -25px; font: normal 300 12px 'Open Sans', 'Tahom', Arial}
li.pshare{padding: 5px 10px;padding-left: 20px;color: white;background: url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png) no-repeat;background-position: 5px -61px; font: normal 300 12px 'Open Sans', 'Tahom', Arial}
ul.profile-link{list-style:none; display:inline-block; padding:0px;}
ul.profile-link li{dipslay:inline; float:left; background:transparent;padding:6px}
.info3 ul.profile-link li{background:}
ul.profile-link li a{display:block; width:22px; height:22px; background:#223 url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png); margin-right:4px; opacity:1;border-radius: 50%;
padding: 5px;border: 0px solid rgba(255,255,255,0.5);}
ul.profile-link li:first-child{padding:6px; background:; margin-right:3px}
ul.profile-link li a.ptwitter{background-position:-31px -66px}
ul.profile-link li a.pfacebook{background-position:-47px -66px}
ul.profile-link li a.pgplus{background-position: -64px -66px}
ul.profile-link li a.pshare{background-position: 0px -66px}
ul.profile-link li a.plink{background-position: 43px;}
ul.profile-link li a.ptwitter:hover, ul.profile-link li a.pfacebook:hover, ul.profile-link li a.pgplus:hover, ul.profile-link li
a.plink:hover {opacity:1}
.author-profile img{padding-right:10px!important}
.ddpost a{color:$(maincolor)}
#prev2, #next2{display:none !important}
/*caroufredsel_wrapper ul social configure*/
.caroufredsel_wrapper ul.profile-link li a{display:block; width:22px; height:22px; background:$(maincolor) url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png); margin-right:4px; opacity:1; border:1px solid $(maincolor); border-radius:50%}
.caroufredsel_wrapper ul.profile-link li:first-child{padding:6px; background: #ffba00; margin-right:3px; display:none}
.caroufredsel_wrapper ul.profile-link li a.ptwitter{background-position:-32px -66px;
}
.caroufredsel_wrapper ul.profile-link li a:hover{border:1px solid #f1f2f3}
.caroufredsel_wrapper ul.profile-link li a.pfacebook{background-position:-48px -66px}
.caroufredsel_wrapper ul.profile-link li a.pgplus{background-position: -65px -66px}
.caroufredsel_wrapper ul.profile-link li a.pshare{background-position: 0px -66px}
.caroufredsel_wrapper ul.profile-link li a.plink{background-position: 43px;}
.caroufredsel_wrapper ul.profile-link li a.ptwitter:hover, ul.profile-link li a.pfacebook:hover, ul.profile-link li a.pgplus:hover, ul.profile-link li a.plink:hover {opacity:1}
.caroufredsel_wrapper ul.profile-link li a.ptwitter:hover{background:#00ABF0 url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png); background-position:-32px -66px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.caroufredsel_wrapper ul.profile-link li a.pfacebook:hover{background:#3962AC url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png); background-position:-48px -66px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.caroufredsel_wrapper ul.profile-link li a.pgplus:hover{background:#DB4A37 url(http://2.bp.blogspot.com/-_Dl7MwX_W9M/Utj9BE3d_BI/AAAAAAAAA_8/oSnmZUjFsPk/s1600/02_img-icon.png); background-position: -65px -66px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
/*==///////////////////////////////////////////
// Slider Top *
/////////////////////////////////////////==*/
.caroufredsel_wrapper{width:100%;margin:0 auto; box-sizing:border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; position:relative;overflow:hidden; min-height:100px}
.list_carousel ul {margin: 0;padding: 0;list-style: none;display: block;}
.list_carousel li {color: #666;text-align: center;padding:0px; display: block; float: left;position:relative;}
.columns {float: left;min-height: 1px;padding: 0 15px;position: relative;}
.caroufredsel_wrapper2{width:105%; box-sizing:border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; position:relative;overflow:hidden;margin:0 auto; margin-left:-15px}
#foo4 .carousel-post-meta{display:none}
#next4{right:17px !important}
.caroufredsel_wrapper2 .cat-box-title{left:15px}
.carousel-thumb{display:block; position:relative; width:100%; height:170px;overflow:hidden}
.carousel-post-meta{position:absolute;color:white;z-index:999;left:0px; bottom:0px; height:25px; line-height:25px; box-sizing:border-box;padding:0px 5px; background:#89d942 }
a.aslider{display:block; position:relative; width:100%; height:170px;overflow:hidden; background:#f1f2f3}
.prev:hover{width: 28px;height: 36px;background: url(https://lh5.googleusercontent.com/-nJ1gPs20rQ4/UmDkXkjHy4I/AAAAAAAAGuA/74dmWch3MwI/w56-h36-no/arrow_1.png);display: block;opacity: 0.9;}
.next:hover{width: 28px;height: 36px;background: url(https://lh5.googleusercontent.com/-nJ1gPs20rQ4/UmDkXkjHy4I/AAAAAAAAGuA/74dmWch3MwI/w56-h36-no/arrow_1.png) -29px;display: block;opacity: 0.9;right: 16px;}
.carousel-data-wrapper{padding:0px 0px}
.slider-top .container{width:1050px;}
.caroufredsel_wrapper{ margin-left:0px}
#pager2 a{background:#fff; width:10px; height:10px; opacity:0.4; margin:0px 10px; text-indent:-999px;display:inline-block; border-radius:5px; border:2px solid #000}
#pager2 a:hover{background:#fff; opacity:0.7}
#pager2 a span{text-indent:-999px}
#pager2 a.selected{background:#fff;opacity:1}
.pager2{margin:20px auto 0px; text-align:center; width:100%}
#pager2 a span {text-indent: -999px;text-align: center;opacity: 0;display: inline-block;}
.prev{z-index:10; margin-left:3px; width: 28px;height: 36px;background: rgba(0,0,0,0.3) url(https://lh5.googleusercontent.com/-nJ1gPs20rQ4/UmDkXkjHy4I/AAAAAAAAGuA/74dmWch3MwI/w56-h36-no/arrow_1.png);display: block;opacity: 0.4;}
.next{z-index:10; margin-right:3px; width: 28px;height: 36px;background: rgba(0,0,0,0.3) url(https://lh5.googleusercontent.com/-nJ1gPs20rQ4/UmDkXkjHy4I/AAAAAAAAGuA/74dmWch3MwI/w56-h36-no/arrow_1.png) -29px;display: block;opacity: 0.4;right: 16px;}
.prev{position:absolute; top:30%;left:15px}
.next{position:absolute; top:30%;right:17px}
#pager10 a{background:rgba(255, 255, 255, 0.4); width:10px; height:10px; opacity:0.4; margin:0px 10px; text-indent:-999px;display:inline-block; border-radius:5px; border:2px solid rgba(0,0,0,0.7)}
#pager10 a:hover{background:rgba(255, 255, 255, 0.4); opacity:0.7}
#pager10 a span{text-indent:-999px}
#pager10 a.selected{background:rgba(255, 255, 255, 0.8);opacity:1}
.pager10{margin:20px auto 0px; text-align:center; width:100%}
#pager10 a span {text-indent: -999px;text-align: center;opacity: 0;display: inline-block;}
.prev:hover{width: 28px;height: 36px;background: url(https://lh5.googleusercontent.com/-nJ1gPs20rQ4/UmDkXkjHy4I/AAAAAAAAGuA/74dmWch3MwI/w56-h36-no/arrow_1.png);display: block;opacity: 0.9;}
.next:hover{width: 28px;height: 36px;background: url(https://lh5.googleusercontent.com/-nJ1gPs20rQ4/UmDkXkjHy4I/AAAAAAAAGuA/74dmWch3MwI/w56-h36-no/arrow_1.png) -29px;display: block;opacity: 0.9;right: 16px;}
.paddingrc{padding:15px 0px 25px 0px}
/*==///////////////////////////////////////////
// Make boxcl
/////////////////////////////////////////==*/
.boxcl, #cmwidget{background:#f8f8f8 url(); padding:15px 0px 35px 0px; box-shadow:inset 0 1px 3px rgba(0,0,0,0.1); -webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1); -moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.1)}
#cmwidget{background:url(http://2.bp.blogspot.com/_LkTxPZXvwBc/S-0kbnkwiyI/AAAAAAAAC98/oSUDpqeHESc/s1600/3colfwnce.jpg)}
.hvcm{width:100%; height:100%; top:0; background:rgba(87, 132, 26, 0.6); position:absolute; top:0; z-index:999}
.descript h3{color:$(colordes); text-transform:none}
.caroufredsel_wrapper .list_carousel ul{display:inline-block}
.boxcl .post-box-title a{font:$(fonttitle)}
/*
#cmwidget .titlep a, #cmwidget .descript h3{color:#fff}*/
.imagehv{position:absolute; width:100%; height:100%; visibility: hidden; background:rgba(0,0,0,0.00001) url(http://4.bp.blogspot.com/-T0Wa02lidLw/Us1It11DMYI/AAAAAAAAA5E/acuvEtjq95Q/s1600/link.png) no-repeat center 40px;}
.phover:hover .imagehv{ -moz-transition: .5s ease-in-out;
-webkit-transition: .5s ease-in-out;transition: .5s ease-in-out; z-index:1; background:$(maincolor) url(http://2.bp.blogspot.com/-K_Jixb74KT0/Utj9Bb_qDZI/AAAAAAAAA_4/_ykyXIt1cO0/s1600/03_link.png) no-repeat center center; visibility: visible; opacity:0.8}
/*fixed*/
/* .mnfixed{position:fixed; top:0; z-index:99999; background:rgba(255,255,255,0.96) !important} */
#two-cl{width:1050px; min-height:20px; margin:0 auto; background:url(https://lh3.googleusercontent.com/-g1I6Wgr_c_g/Usv4MWw4XyI/AAAAAAAAA4c/5Kjg0GUJQ38/w9-h11-no/line.png) repeat-y center center}
.cl-1{float:left; width:50%; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; min-height:20px;}
.cl-2{float:left; width:50%; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; min-height:20px;}
.quickedit{display:none}
/*==///////////////////////////////////////////
// BlogGm
/////////////////////////////////////////==*/
.blogme{max-width:1050px; margin:0 auto}
h2.date-header, h3.post-title {display:none}
a.thumb79 {display: block;width: 100%;height: auto;max-width: 100%;position: relative;height:205px;overflow:hidden;border-right:2px solid #fff}
.post-thumnail79{width:50%; float:left; box-sizing:border-box;padding:0px 2px 0px 0px}
.post-content{width: 50%;box-sizing: border-box;float: left;padding:13px 13px}
#section4 .widget {margin-bottom:29px}
.row{border:1px solid #fff; border-radius:0px;overflow:hidden; background:#f2f2f2}
.row:last-child{margin-bottom:0px}
.post-footer{display:none}
.post-outer{width:50%; float:left; padding:0px; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; }
.entry{font:$(font.body); color:$(color.shorten)}
.blog-wrapper{width:100%; min-height:10px; border-top:1px solid rgba(0,0,0,0.1)}
.post-meta{font:normal normal 11px 'Open Sans'; color:#666; padding:10px 0px}
.jump-link{display:none}
.rmpost{margin-top:20px; display:none}
.rmpost a{padding:4px 6px; font:normal normal 12px 'Open Sans'; border:1px solid rgba(0,0,0,0.1); border-radius:2px}
.thepager {display: block;margin: 1em 0;text-align: center;overflow: hidden;padding: 10px 0px;}
.thepager span {
background: #4e5563 none repeat scroll 0 0 !important;
border: medium none !important;
border-radius: 2px !important;
color: #fff !important;
font: 300 13px "Open Sans",Arial,Helvetica,sans-serif;
margin: 0 9px !important;
padding: 1px 14px 3px !important;
}
.thepager span a {
color: #fff;
}
.thepager span.first, .thepager span.last {padding: 2px 8px 4px !important;}
.thepager{display:block; margin: 1em 0; text-align: center; overflow: hidden; padding:10px 0px}
.thepager span {padding: 1px 9px 3px !important;}
.thepager yeungok.pages{display:none}
.status-msg-body, .status-msg-wrap{display:none}
.thepager{visibility:hidden}
span.last a, .first a{font-family:'Open Sans' !important; padding:1px}
.blog-feeds{display:none}
#slidertop .widget, #section-recent .widget{visibility:hidden}
.post-thumnail79 ul.profile-link{position:absolute;top:60%;left:7%;z-index:-1;-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;}
.post-thumnail79:hover ul.profile-link{z-index:100; top:42%;}
.post-thumnail79:hover ul.profile-link{}
.post-thumnail79 ul.profile-link li:first-child{display:none}
.post-thumnail79 .hv{display:block; width:100%; height:100%;position: absolute;top: -100%;left: 0;}
.post-thumnail79:hover .hv{top:0; -webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;background:$(maincolor); z-index:9; opacity:0.7}
/*==///////////////////////////////////////////
// Top Responsive Menu
/////////////////////////////////////////==*/
.menu-secondary.expanded, nav#nav-mobile .menu-secondary{margin-top:2px;}
.menus, .menus *{line-height:1;list-style:outside none none;margin:0;padding:0;}
.menu-secondary-container{float:left;padding-left:0;width:100%;}
.menus ul{position:absolute;top:-999em;width:100%;}
.menus ul li{width:100%;}
.menus li:hover{visibility:inherit;}
.menus li{float:left;position:relative;}
.menus a{display:block;position:relative;}
.menus li:hover ul, .menus li.sfHover ul{left:0;top:100%;z-index:99;}
.menus li:hover li ul, .menus li.sfHover li ul{top:-999em;}
.menus li li:hover ul, .menus li li.sfHover ul{left:100%;top:0;}
.menus li li:hover li ul, .menus li li.sfHover li ul{top:-999em;}
.menus li li li:hover ul, .menus li li li.sfHover ul{left:100%;top:0;}
.menu-primary{}
.menu-primary ul{min-width:160px;}
.menu-primary li a{color:#222121;font:11px/11px Arial,Helvetica,sans-serif;padding:12px 15px;text-decoration:none;text-shadow:0 1px 0 #fff;text-transform:uppercase;}
.menu-primary li li a{background:#e64633 none repeat scroll 0 0;border:0 none;color:#fff;font-weight:normal;margin:0;padding:10px 15px;text-shadow:0 1px 0 #000;text-transform:none;}
.menu-primary li li a:hover, .menu-primary li li a:active, .menu-primary li li a:focus, .menu-primary li li:hover >a, .menu-primary li li.current-cat >a, .menu-primary li li.current_page_item >a, .menu-primary li li.current-menu-item >a{background:#f85b49 none repeat scroll 0 0;border-bottom:0 none;color:#fff;outline:0 none;text-decoration:none;text-shadow:0 1px 0 #000;}
.menu-primary li li .sf-sub-indicator{padding:9px 10px 0 0;}
.menu-secondary{}
.menu-secondary ul{min-width:160px;}
.menu-secondary li a{color:#777;font-family:"Open Sans","Oswald",Arial,Helvetica,sans-serif;font-size:13px;font-weight:600;margin-bottom:4px;margin-top:10px;padding:28px 14px;text-decoration:none;text-transform:capitalize;}
.menu-secondary li li a{background:#fbfbfb none repeat scroll 0 0;border-bottom:1px solid rgba(255, 255, 255, 0.05);color:#777;font:600 12px "Open Sans","Oswald",Arial,Helvetica,sans-serif;margin:0;padding:10px;text-shadow:none;text-transform:capitalize;width:100%;transition: all 0.2s ease-in 0s;}
.menu-secondary li li a:hover{color:#777;background:#fff;margin-left:5px;}
.menu-secondary a.sf-with-ul{min-width:1px;padding-right:26px;}
.menu-secondary .sf-sub-indicator{display:block;overflow:hidden;padding:12px 13px 0 0;position:absolute;right:0;top:0;}
.fa-bars{margin:auto 5px !important;}
nav#nav-mobile{display:none;}
nav#nav-mobile i{margin-right:9px;}
nav#nav-mobile ul{background-color:#f9f9f9;border-bottom:1px solid #d2d2d2;display:none;left:0;list-style-type:none;margin-left:auto;margin-right:auto;padding:0;position:absolute;right:0;text-align:center;z-index:10;}
nav#nav-mobile li:last-child{border-bottom:medium none;}
nav#nav-mobile a{border-bottom:1px solid #d2d2d2;color:#777777;display:block;padding:10px 30px;text-decoration:none;}
nav#nav-mobile a:hover{color:#4e5563;}
#nav-trigger{background:#fafafa none repeat scroll 0 0;display:none;float:right;position:relative;text-align:center;top:10px;width:60px;}
#nav-trigger span{color:#fff;cursor:pointer;line-height:60px;}
nav#nav-mobile{margin:0;}
nav#nav-mobile{display:none;}
.children.expanded a{color:#777 !important;}
#nav-trigger span .fa{color:#4791d2 !important;font-size:23px;}
.menus li:hover{background:#fff none repeat scroll 0 0;transition:all 0.3s ease-in 0s;}
ul.menu-secondary{background:#fbfbfb none repeat scroll 0 0;display:table-cell;float:right;height:80px;margin-right:75px;vertical-align:middle;}
.menu-secondary ul ul{background:rgba(255, 255, 255, 0.4) none repeat scroll 0 0;border-top:medium none;height:0;left:0;overflow:hidden;position:absolute;top:80px;transition:all 0.2s ease-in 0s;width:183px;}
.menu-secondary >ul >li{background:rgba(0, 0, 0, 0) url("") no-repeat scroll 0 12px;display:block;float:left;height:80px;line-height:80px;padding-left:2px;position:relative;z-index:1;}
li.arrowb .fa{color:#777;float:left;left:1px;position:relative;top:35px;}
.menus li ul li{border:1px solid #f4f4f4;top:-3px;width:100%;transition:all 0.2s ease-in 0s;}
.menus li ul li:hover{background:#fff;}
.menus li:nth-child(1) {background: #4791d2 none repeat scroll 0 0 !important;color: #fff !important;height: 100%!important;}
#head-inner-right{float:left;height:80px;margin:auto;width:80%;}
/*--------Hide Large Menu--------------*/
@media all and (max-width:1110px){navo#navo-main{display:none;}
}
/*--------Show Responsive Menu--------------*/
@media all and (max-width:900px){nav#nav-mobile, #nav-trigger{display:block !important;}
#head-inner-right{float:none !important;}
.menus li{float:none !important;}
ul.menu-secondary{height:auto !important;}
#navo-trigger{float:right;margin-top:0px;text-align:center;}
.menu-secondary-container{display:none!important;}
}
/*==///////////////////////////////////////////
// Comments Widget
/////////////////////////////////////////==*/
#prev10, #next10{display:none !important}
.recent-comment-ico img{display:block; border-radius:50%; }
.recent-comment-ico {float:left; width:50px;}
.recent-comment-body{background: #fff;padding: 25px 10px;width: 90%;margin-left: 25px; text-align:left;padding-left:26px; border-radius:2px; color:#9a9a9a; height:180px; min-height:180px; box-shadow:2px 2px 3px rgba(0,0,0,0.1) }
.authorname{color: $(maincolor)!important; padding: 5px 0px;margin-top: 10px;display: block;}
#foo10{font:normal normal 13px 'Open Sans'}
.dx{color:#888; font-weight:600}
#footerblog {
background: inactiveborder url("https://lh6.googleusercontent.com/-oTjnGLLM7Ig/UVRWx7Wq0XI/AAAAAAAAFU8/jfkNgNQ9970/s1105/top-shadow.png") no-repeat scroll center top !important;
padding: 21px 15px 1px 16px;
}
#footerblog .cat-box-title{background:transparent !important}
#footerblog{color:#ddd;background:url()}
#footerblog .foot-sec h2{position:static}
#footerblog .foot-sec h2{position:static}
#footerblog .foot-sec h2{color:#AAA;font-family:sans-serif;font-size:12px;padding-bottom:20px;text-align:left;text-transform:uppercase}
#footerblog .widget h2 {
background: #4e5563 none repeat scroll 0 0;
color: #fff;
font-family: "Lucida Grande",sans-serif;
margin: 0 0 15px;
overflow: hidden;
padding: 10px;
text-transform: uppercase;
width: 70%;
}
#footerblog .widget h2::before {
border-left: 75px solid buttonshadow;
border-top: 37px solid white;
content: "";
position: absolute;
right: 0;
top: 0;
width: 0;
}
#footerblog .widget h2 span{font-family:'PT Sans', sans-serif;font-weight:normal;padding-bottom:4px;position:absolute}
#footerblog .cat-box-title{background:none}
#footerblog .cat-box-title h2{color:#fff !important; padding: 0px 40px;background: $(maincolor);color: #fff !important;padding: 0px 26px !important;background: $(maincolor);height: 30px;line-height: 26px;margin-top: 11px;}
#footerblog .cat-box-title h2 a{color:#fff !important; font:normal normal 13px 'Open Sans' !important; text-transform:none}
#footerblog .section {margin-bottom:0 !important}
#footerblog .cat-box-title {background: transparent !important;}
.cat-box-title h2 {color: #5E5E5E;float: left;margin-right: 10px;font-size: 15px;font-family: 'Oswald', sans-serif;text-transform: uppercase;}
.menu-foot li{float:left;display:inline}
ul.menu-foot li a {padding: 0px 10px;color: #aaa;border-right: 1px solid #222; font:normal normal 13px 'PT Sans'}
.footme {
background: inactiveborder none repeat scroll 0 0;
box-sizing: border-box;
padding: 60px 26px;
}
.footme {
color:#888 !important;
}
.footme a {
color: #888 !important;
}
.footer-4c .footer-widgets-box{width:23%}
.footer-widgets-box{float:left;margin-right:2.4%}
.footer-1c .footer-widgets-box,.narrow-wide-2c #footer-second,.wide-narrow-2c #footer-second,.footer-2c #footer-second,.footer-3c #footer-third,.footer-4c #footer-fourth,.wide-right-3c #footer-third,.wide-left-3c #footer-third{margin-right:0}
#footer-fourth{float:right}
.footer-4c .footer-widgets-box{width:23%}
#footerblog .section{margin-bottom:0 !important}
#footerblog .section{margin-bottom:0 !important}
.item-snippet{font-family:raleway;font-size:11px;}
.footer-final{background:#4e5563 none repeat scroll 0 0;color:#444;height:45px;line-height:45px;margin:0 auto;width:auto;}
.footer-final a{color:#fafafa;}
.alignleft{color:#dddddd;float:left;font:12px/45px "Open Sans";padding-left:50px;}
.alignright{color:#dddddd;float:right;font:12px/45px "Open Sans";padding-right:50px;}
.footme .label-size a:hover{background:$(maincolor)}
.footme .label-size a{background:#777;opacity:0.7;color:white !important;font-family:'Open Sans Condensed',Arial,Helvetica,sans-serif;font-weight:600;-moz-transition:.4s ease-in-out;-webkit-transition:.4s ease-in-out;transition:.4s ease-in-out}
.label-size a{border-bottom:0 none;border-image:none;border-left:0 none;border-top:0 none;color:#666;float:left;font-size:11px;margin:0 5px 5px 0;padding:7px 10px;text-decoration:none;text-transform:uppercase}
.flickr-widget .flickr_badge_image{float:left;margin:8px}
.flickr-widget .flickr_badge_image img{opacity:1;padding:2px;width:50px;height:50px;box-shadow:0 0 2px #B2B2B2;-moz-box-shadow:0 0 2px #b2b2b2;-webkit-box-shadow:0 0 2px #B2B2B2}
.flickr-widget .flickr_badge_image a:hover img{opacity:0.6}
.flickr_badge_image {display: inline-block;vertical-align: top;margin: 0 7px 7px 0;max-width: 69px;max-height: 71px;border: 0;}
.widget ul{margin:0; padding:0}
/*==///////////////////////////////////////////
// Footer Widget
/////////////////////////////////////////==*//
.footme .PopularPosts img{width:72px; height:72px}
.footme .PopularPosts .item-title a{color:#888 !important; font:normal normal 13px 'Open Sans'}
.PopularPosts .item-title {padding-bottom: 0.5em;}
.footme .PopularPosts .item-thumbnail img{box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; width:72px; height:72px; border:1px solid #777;}
.footme .PopularPosts .widget-content ul li {
list-style: outside none none;
padding: 8px 0;
}
.PopularPosts img{padding:0; margin:0}
/*contactform*/
.contact-form-widget{font:normal normal 13px 'Open Sans'; color:#777}
.contact-form-name, .contact-form-email, .contact-form-email-message{max-width:100%; border:none; background:#999}
.contact-form-button-submit {margin-top:10px; background:$(maincolor)!important; border:none !important}
/*==///////////////////////////////////////////
// SlideRight
/////////////////////////////////////////==*/
#side-right{display:none}
.hr-short {height: 20px;line-height: 20px;margin: 30px 0;float: none;}
.hr {clear: both;display: block;width: 100%;height: 25px;line-height: 25px;position: relative;margin: 30px 0;float: left;}
.hr-inner-style {border-radius: 20px;height: 9px;width: 9px;border-width: 2px;border-style: solid;display: block;position: absolute;margin-top: -5px; border-color:#e1e1e1; background:#fff}
.hr-inner {left: 0%;margin-left: 0%;background: #dadada;width: 100%;height: 1px;display: block; margin:20px 0px}
#side-right .FollowByEmail h2.title{font:normal normal 13px 'Open Sans' Arial; color:#666}
#side-right h2.title{padding:10px 0px}
#side-right .widget h2{font:normal normal 13px 'Open Sans' Arial; color:#666}
.FollowByEmail .follow-by-email-inner{background:#4e5563 none repeat scroll 0 0;color:#fff;padding:25px 14px 30px 15px;position:relative;}
.follow-by-email-inner::before{content:" Join us to get latest updates, subscribe here for free ";font-size:14px;font-weight:400;padding-bottom:10px;}
.FollowByEmail .follow-by-email-inner .follow-by-email-submit{background:#c1c1c1 none repeat scroll 0 0;border-radius:0;color:#fff;cursor:pointer;font-size:15px;height:42px;line-height:42px;margin:0 -6px 0 0;transition:all 0.2s ease 0s;width:80px;z-index:0;}
.FollowByEmail .follow-by-email-inner .follow-by-email-address{background:#fff none repeat scroll 0 0;border:0 none;border-radius:0;color:#666;font-size:14px;height:42px;line-height:42px;margin:0;padding:0 0 0 15px;position:relative;transition:all 0.2s ease 0s;width:100%;}
#side-right .hr-inner{width:100%}
.morecontent{display:none}
#side-right .item-title a{color:#666; font:normal normal 12px 'Open Sans'}
#side-right .item-snippet {color:#888; font:normal normal 12px 'Open Sans'}
#side-right .popular-posts ul{list-style:none}
#side-right .PopularPosts img {
border-radius: 54%;
height: 100px;
margin-right: 10px;
width: 100px;
}
/*==///////////////////////////////////////////
// Post Body Heading
/////////////////////////////////////////==*/
.post-body h2{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:#fafafa none repeat scroll 0 0;border-color:whitesmoke;border-image:none;border-style:none none none solid;border-width:0 0 0 15px;box-sizing:border-box;color:#777;font-family:raleway,lato,"Open Sans",sans-serif !important;font-size:20px;font-weight:400;height:50px !important;line-height:40px;margin:10px 0 15px;outline:0 none;overflow:hidden;padding:5px 20px;text-align:left;text-decoration:none;vertical-align:baseline;width:100%;}
.post-body h3{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:#fafafa none repeat scroll 0 0;border-color:whitesmoke;border-image:none;border-style:none none none solid;border-width:0 0 0 15px;box-sizing:border-box;color:#777;font-family:raleway,lato,"Open Sans",sans-serif !important;font-size:18px;font-weight:400;height:50px !important;line-height:40px;margin:10px 0 15px;outline:0 none;overflow:hidden;padding:5px 20px;text-align:left;text-decoration:none;vertical-align:baseline;width:100%;}
.post-body h4{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:#fafafa none repeat scroll 0 0;border-color:whitesmoke;border-image:none;border-style:none none none solid;border-width:0 0 0 15px;box-sizing:border-box;color:#777;font-family:raleway,lato,"Open Sans",sans-serif !important;font-size:14px;font-weight:400;height:50px !important;line-height:40px;margin:10px 0 15px;outline:0 none;overflow:hidden;padding:5px 20px;text-align:left;text-decoration:none;vertical-align:baseline;width:100%;}
/*==///////////////////////////////////////////
// Accordine
/////////////////////////////////////////==*/
.ac-container label {height: 30px !important;line-height: 21px !important;font-size: 12px !important;font-family: 'Open Sans','Arial Narrow',Arial,sans-serif !important;padding: 5px 20px;position: relative;z-index: 20;display: block;height: 30px;cursor: pointer;color: #777;text-shadow: 1px 1px 1px rgba(255,255,255,0.8);line-height: 33px;font-size: 19px;background: #fff;background: -moz-linear-gradient(top,#fff 1%,#eaeaea 100%);background: -webkit-gradient(linear,left top,left bottom,color-stop(1%,#fff),color-stop(100%,#eaeaea));background: -webkit-linear-gradient(top,#fff 1%,#eaeaea 100%);background: -o-linear-gradient(top,#fff 1%,#eaeaea 100%);background: -ms-linear-gradient(top,#fff 1%,#eaeaea 100%);background: linear-gradient(top,#fff 1%,#eaeaea 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff',endColorstr='#eaeaea',GradientType=0 );box-shadow: 0 0 0 1px rgba(155,155,155,0.3),1px 0 0 rgba(255,255,255,0.9) inset,0 2px 2px rgba(0,0,0,0.1);font-size: 12px;height: 30px;line-height: 20px;}
.ac-container{width:100%;margin:10px auto 30px auto;text-align:left}
.ac-container label:hover{background:#fff}
.ac-container input:checked + label,.ac-container input:checked + label:hover{background:#f1f2f3 ;color:#666;text-shadow:0 1px 1px rgba(255,255,255,0.6);box-shadow:0 0 0 1px rgba(155,155,155,0.3),0 2px 2px rgba(0,0,0,0.1); height: 30px;
line-height: 21px;
font-size: 13px;}
.ac-container label:hover:after,.ac-container input:checked + label:hover:after{content:'';position:absolute;width:24px;height:24px;right:13px;top:7px;background:transparent url(../images/arrow_down.png) no-repeat center center}
.ac-container input:checked + label:hover:after{background-image:url(../images/arrow_up.png)}
.ac-container input{display:none}
.ac-container article{background:rgba(255,255,255,0.5);margin-top:-1px;overflow:hidden;height:0;position:relative;z-index:10;-webkit-transition:height 0.3s ease-in-out,box-shadow 0.6s linear;-moz-transition:height 0.3s ease-in-out,box-shadow 0.6s linear;-o-transition:height 0.3s ease-in-out,box-shadow 0.6s linear;-ms-transition:height 0.3s ease-in-out,box-shadow 0.6s linear;transition:height 0.3s ease-in-out,box-shadow 0.6s linear}
.ac-container article p{font-style:normal;color:#777;line-height:23px;font-size:10px;padding:20px;text-shadow:1px 1px 1px rgba(255,255,255,0.8); font:normal normal 12px 'Open Sans'}
.ac-container input:checked ~ article{-webkit-transition:height 0.5s ease-in-out,box-shadow 0.1s linear;-moz-transition:height 0.5s ease-in-out,box-shadow 0.1s linear;-o-transition:height 0.5s ease-in-out,box-shadow 0.1s linear;-ms-transition:height 0.5s ease-in-out,box-shadow 0.1s linear;transition:height 0.5s ease-in-out,box-shadow 0.1s linear;box-shadow:0 0 0 1px rgba(155,155,155,0.3)}
.ac-container input:checked ~ article.ac-small{height:140px}
.ac-container input:checked ~ article.ac-medium{height:180px}
.ac-container input:checked ~ article.ac-large{height:230px}
/*==///////////////////////////////////////////
// Author Profile
/////////////////////////////////////////==*/
.author-profile ul.profile-link{list-style:none; display:inline-block; margin-top:15px}
.author-profile ul.profile-link li{dipslay:inline; float:left;}
.author-profile ul.profile-link li a{display:block; width:16px; height:16px; background:url(http://1.bp.blogspot.com/-lK1lZbytR80/Utj9DfwdZwI/AAAAAAAABAs/kqbPqLYODYE/s1600/09_img-icon2.png); margin-right:10px; opacity:0.7}
.author-profile ul.profile-link li a.ptwitter{background-position:21px 1px}
.author-profile ul.profile-link li a.pfacebook{height:14px;}
.author-profile ul.profile-link li a.pgplus{background-position: 69px;width: 20px;}
.author-profile ul.profile-link li a.plink{background-position: 43px;}
.author-profile ul.profile-link li a.ptwitter:hover, ul.profile-link li a.pfacebook:hover, ul.profile-link li a.pgplus:hover, .author-profile ul.profile-link li a.plink:hover {opacity:1}
.author-profile .author-profile img{padding-right:10px!important}
.author-profile ul.profile-link li:first-child{background:transparent !important}
.author-profile .authorimg img{width:100px;}
.author-profile img{border:none !important}
.author-profile .g-profile{font:normal 600 14px 'Open Sans'; color:#666}
.author-profile .authordes{font:normal normal 13px 'Open Sans' Arial; color:#777}
/*==///////////////////////////////////////////
// Label Style
/////////////////////////////////////////==*/
.labelpost a{font:normal normal 12px 'Open Sans' Arial 'Source Sans Pro'; color:#666}
.labelpost a:first-child{color:#555}
/*cmposts*/
.comments-content{padding:10px 20px 10px 0px;}
#comments{ font:normal normal 13px 'Open Sans' Arial 'Source Sans Pro'; color:#666}
#comments .datetime{font-size:12px; color:#999; float:right}
#comment-actions a:first-child{color:#333}
.numbercm .title-sep-container {display: table-cell;vertical-align: middle;width: 100%;position: relative;height: 6px;}
.numbercm .title-sep {display: block;border-top: 1px solid #e7e6e6;border-bottom: 1px solid #e7e6e6;width: 100%;position: relative;height: 6px;}
.numbercm>h4{float:left; display:table-cell; line-height: 40px;vertical-align: middle;white-space: pre;padding: 0px 15px 0px 0px; font-weight:400}
.numbercm{height:40px; line-height:40px; display:table}
.comment-replies .comment-block {background: #f7f8f9;padding:15px 10px 5px 10px}
comments .comment-block, .comments .comments-content .comment-replies {margin-left: 60px;}
.comments .comments-content .comment-header, .comments .comments-content .comment-content {margin: 0 0 0px;padding: 10px; border-bottom: 1px solid #f1f1f1; background:#fff}
.thread-count a{text-indent:-99999px;color: transparent;}
.comment-actions {float:right}
.comments-content .comment-content{background:#fff}
.comment-actions a{padding:3px 5px; font-size:11px; color:#888}
.comments .comment-block{overflow: hidden;}
span.blog-admin{display: inline-block;padding: 5px 0px;}
.comments .continue, #comment-post-message{display:none}
/*==///////////////////////////////////////////
// Lebel Right Sidebar
/////////////////////////////////////////==*/
#side-right .widget{font-family:'Open Sans'}
#side-right .Label ul{list-style:none}
#side-right .Label ul li{font:normal normal 12px 'Open Sans' Arial; color:#888; border-bottom:1px solid #dadada; padding:10px 0px}
#side-right .Label ul li:before{content:"+ "}
/*==///////////////////////////////////////////
// Responsive Elements
/////////////////////////////////////////==*/
#side-right .PopularPosts .widget-content ul li{padding:5px 0px}
.PopularPosts .widget-content ul li{padding:0px; list-style:none}
.mb{display:none}
/*Responsive start*/
@media only screen and ( max-width:1040px ){
.search-right {
margin-left: 30px;
}
ul.menu-secondary {
margin-right: 30px !important;
}
.container{width:910px}
.jms-content{margin-left:64px}
.step p{text-shadow:none}
.slider-top .container{width:93%}
.footer-4c > .cat-box-title {max-width:910px !important}
.footer-final{width:100%; padding:0px 35px 0px 35px}
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3{margin-left:25%}
.post-thumnail79 ul.profile-link{left:4%}
}
@media only screen and (max-width:985px){
nav.main_menu >ul >li >a{padding:0 12px 0}
.hleft{padding-left:26px}
.container{width:100%}
.paddingrc {padding: 15px 28px 25px 28px !important;}
#blogme{max-width:100%; padding: 15px 28px 25px 28px !important;}
.footer-4c .cat-box-title{padding:0px 27px !important;}
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3{margin-left:24%; margin-top:18%}
.post-thumnail79 {width: 55%;}
.post-content {width: 45%;}
}
@media only screen and (max-width:900px){
.search-right {
margin-left: -20px;
}
.post-body img{height:100% !important;width:100% !important;}
}
@media only screen and (max-width:860px){
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3{margin-left:20%}
.jms-wrapper{height:390px}
}
@media only screen and (max-width:810px){
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3{margin-left:19%}
.jms-wrapper{height:370px}
}
@media only screen and (max-width:790px){
.search-right {display: none;}
#nav-trigger {top: -38px !important;}
#header-inner a img{margin:0 auto}
.hleft{width:100%; height:50px}
.none {display:block !important}
.hright{width:100%}
ul#menu-main{float:left}
nav.main_menu{float:left; padding-left:30px}
.jms-wrapper{height:350px}
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3{margin-left:15%; margin-top:23%}
.post-thumnail79{width:100%;padding:0}
a.thumb79{border:none}
.post-content{width:100%}
.post-thumnail79:hover ul.profile-link {z-index: 100;top: 27%;left: 23%;}
.post-thumnail79 ul.profile-link{left:23%}
}
@media only screen and (max-width:690px){
.post-thumnail79:hover ul.profile-link{left:24%;top:26%}
.jms-wrapper{height:320px}
}
@media only screen and (max-width:670px){
.main_menu{display:none}
.mb{display:block; float:left; width:90%; margin:0 auto; padding-top:20px}
.mb .selectnav{ margin-left:28px; }
.selectnav {display: block!important;width: 100%;margin: 0 auto;margin-top: 8px;border-radius: 2px;border:1px solid #dadada;height: 35px;font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;font-weight: 600;text-transform: uppercase}
.selectnav > option {font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;font-weight: 600 !important;text-transform: uppercase;background: #777;border: none;}
.search-right{display:none;width:40%}
.post-thumnail79 ul.profile-link, .post-thumnail79:hover ul.profile-link{left:20%}
ul.profile-link li:first-child{display:none}
.plook-first div.info1, .plook-first div.info2, .plook-first div.info3 {
margin-left: 19%;margin-top: 28%;}
.recent-comment-body{height:220px}
}
@media only screen and (max-width:550px){
ul.menu-secondary { margin-right: 0 !important;}
#nav-trigger {float: inherit !important;}
.post-left{width:100%}