-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
1351 lines (1211 loc) · 72.2 KB
/
Copy pathstyle.css
File metadata and controls
1351 lines (1211 loc) · 72.2 KB
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
/*
Theme Name:Studio
Description:Studio - Studio Wordpress Theme
Version:1.1
Author:Premiumcoding
Theme URI:http://premiumcoding.com/
Author URI:http://premiumcoding.com/
License URI:http://premiumcoding.com/
Tags:black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, editor-style
*/
/* ***********************
--------------------------------------
-------------RESET---------------
--------------------------------------
*************************/
.test{display:none;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
article, aside, details, figcaption, figure, header, hgroup, menu, nav, section { display: block }
body p {text-shadow: 0 1px 0 #ffffff;}
nav ul { list-style: none }
blockquote, q { quotes: none }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; text-decoration: none;}
ins { color: #2a2b2c !important; text-decoration: none; }
mark { background-color: #ff9; color: #fff; font-style: italic; font-weight: bold; padding:2px;}
del { text-decoration: line-through }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle }
body, html { min-height: 100% }
body { }
select{padding: 5px; min-width: 150
px;}
body { font-size: small; letter-spacing: normal; line-height: 1.65em; }
select, input, textarea, button { font: 99% sans-serif }
input, select { padding: 5px; color: #4c4c4c; outline: none; background-color: #F8F8F8;border: 1px solid #e7e7e7; border-bottom: 1px solid #D9D9D9;}
pre, code, kbd, samp { font-family: monospace, sans-serif }
body, select,textarea { color: #999 }
h1, h2, h3, h4, h5, h6 { font-family: sans-serif;font-weight: normal; line-height: 110%; margin-bottom: 10px; color: #999 }
h1 { font-size: 26px }
h2 { font-size: 22px }
h3 { font-size: 20px }
h4 { font-size: 18px }
h5 { font-size: 16px }
h6 { font-size: 14px }
html { overflow-y: scroll }
a:hover, a:active { outline: none }
ul, ol { margin-left: 2em }
ol { list-style-type: decimal }
nav ul, nav li { margin: 0 }
small { font-size: 11px;font-weight:normal; }
strong, th { font-weight: bold }
td, td img { vertical-align: top }
sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }
pre { padding: 15px; white-space: pre; white-space: pre-wrap; white-space: pre-line; word-wrap: break-word; }
textarea { overflow: auto }
.ie6 legend, .ie7 legend { margin-left: -7px }
input[type="radio"] { vertical-align: text-bottom }
input[type="checkbox"] { }
.ie7 input[type="checkbox"] { vertical-align: baseline }
.ie6 input { vertical-align: text-bottom }
input[type=button], input[type=submit], button { cursor: pointer }
button, input, select, textarea { margin: 0 }
input:valid, textarea:valid { }
input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red; }
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd }
::-moz-selection { background: #666; color: #fff; text-shadow: none; }
a:link { -webkit-tap-highlight-color: #666 }
button { width: auto; overflow: visible; }
.ie7 img { -ms-interpolation-mode: bicubic }
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
.hidden { display: none; visibility: hidden; }
.visuallyhidden { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px); }
.invisible { visibility: hidden }
.clearfix:before, .clearfix:after { content: "?020"; display: block; height: 0; visibility: hidden; }
.clearfix:after { clear: both }
.clearfix { zoom: 1;display:block !important; }
html body div.clear, html body span.clear { background: none; border: 0; clear: both; display: block; float: none; font-size: 0; margin: 0; padding: 0; position: static; overflow: hidden; visibility: hidden; width: 0; height: 0; }
img.centered, img.aligncenter { display: block; margin: 0 auto; overflow: hidden; padding: 4px; }
img.alignright { padding: 4px; margin: 2px 0 2px 7px; display: inline; }
img.alignleft { padding: 4px; margin: 2px 7px 2px 0; display: inline; }
.alignright { float: right; }
.alignleft { float: left }
.center { text-align: center }
.aligncenter, div.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { border: 1px solid #ddd; text-align: center; background-color: #f3f3f3; padding-top: 4px; margin: 10px; }
.wp-caption img { margin: 0; padding: 0; border: 0 none; }
.wp-caption p.wp-caption-text { font-size: 11px; line-height: 1.65em; padding: 0 4px 5px; margin: 0; }
code { font-size: 12px; display: block; border: 1px solid #eee; padding: 10px; margin: 10px 0 0 0; background: #FCFCFC; }
.usercontent h1{margin:0; padding-left:0 !important;}
.sticky{}
.gallery-caption {}
.bypostauthor{}
#slider .images{opacity:0;}
#breadcrumb, #breadcrumb a {color:#fff;}
.button, .button:visited{padding:10px; color:#fff;}
.image img{display:none;}
.google-map-placeholder{border: 10px solid #1e1e20 !important;}
.pp_nav p {margin-top:-13px !important;}
/* ***********************
--------------------------------------
---------------MAIN-------------
--------------------------------------
*************************/
.wrap{width: 960px; margin: 0 auto; position:relative;}
.bodywrapOut {border-left: 5px solid #1e1e20; border-right: 5px solid #1e1e20; position: relative; display: inline-block;}
.bodywrapIn { border-left: 1px dashed #1e1e20; border-right: 1px dashed #1e1e20; margin: -10px 15px; padding: 0 40px 0 40px; display: inline-block;
-moz-border-image:url(images/innerDashedFrame.png) 1 1 round; /* Old Firefox */
-webkit-border-image:url(images/innerDashedFrame.png)1 1 round; /* Safari */
-o-border-image:url(images/innerDashedFrame.png) 1 1 round; /* Opera */
border-image:url(images/innerDashedFrame.png) 1 1 round;
}
header{adding: 0; width: 100%; display: block; text-align:center;}
#logo { position:relative; z-index: 9999; padding-top:90px;}
#main { }
#mainwrap { position: relative; width: 100%; margin: 0; padding: 0;}
/*sidebar header*/
.sidebarButton {cursor:pointer;position:fixed; height:60px; width:60px; right:-2px; top:47%; background:#ddd url(images/sidebar-button.png) 0px 0px;border-radius:3px;}
.sidebarwrap .sidebar{z-index:9;position: fixed; right:0; background:#fff;width:260px;top:3%;height:auto; }
/*social header*/
.iconrwrap {position:fixed;top:47%;}
.iconButton {cursor:pointer;position:fixed; height:60px; width:60px; left:-2px; background:#ddd url(images/sidebar-button-social.png);border-radius:3px;}
.iconrwrap .socialcategory{z-index:9;position: fixed; left:-5px; background:#fff;width:64px; display:none;margin-top:-100px; }
/* ***********************
--------------------------------------
------------TOP MENU---------
--------------------------------------
************************/
.pagenav {position:relative; margin:50px 0 0px 0px;display: inline-block;}
.menu, .menu * { margin: 0; padding: 0; list-style: none; }
.menu ul li { width: 100%; }
#menu-main-menu {display: inline-block;}
.respMenu {display:none;}
.menu li { float: left !important; position: relative; }
.menu li a { display: block; position: relative; text-decoration: none; }
#header ul.menu > li > a { height:40px; }
.menu li li {margin-left:0px; }
.menu > li a strong { display: block; letter-spacing: normal; font-size: 24px;text-transform:uppercase; padding-right:20px;padding-left:20px;font-weight:normal !important;}
.menu li a span { display: block; font-size: 20px; color:#2a2b2c!important; }
.menu li:last-child a span {display:none;}
.separatorMenu {position:relative;float:right;width:10px;margin:0 20px 0 10px}
.menu ul .separatorMenu{display:none !important;}
.menu ul { }
.menu li:hover a, .menu li.current a { color: #111; }
.menu li ul{position:absolute;display:none;}
.menu li ul { left: 0px; top: 39px; z-index: 99; width: 205px; z-index: 8; opacity:0.97;}
.menu li ul li a {background:none; border-right: none; border-left: none;padding-right: 0px; margin-right: 0px; }
.menu li li ul { top: -999em }
.menu li li:hover ul { left: 200px; top: 0; }
.menu li:hover ul li { padding-bottom: 0px;background:#fff; }
.menu li ul li { }
.menu li:hover ul li:last-child {border-bottom: none;}
.menu li ul li a { font-size: 16px;text-align:left; padding: 0px 0; margin: 0 15px;}
.menu li ul li:last-child a {border-bottom:none;}
.menu li:hover ul { -moz-box-shadow: 0 1px 10px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.2);
box-shadow: 0 1px 10px rgba(0,0,0,0.2); }
.menu li ul li:hover{background:#fcfbfb!important; }
/* ***********************
--------------------------------------
------------COLUMNS----------
--------------------------------------
*************************/
.full { display: inline; float: left; position: relative; margin-left: 0px; margin-right: 0px; }
.one_half { width: 48% }
.one_third { width: 30.66% }
.two_thirds { width: 65.33% }
.one_fourth { width: 22% ; }
.three_fourths { width: 74% }
.one_fifth { width: 16.8% }
.four_fifths { width: 79.2% }
.one_half, .one_third, .two_thirds, .one_fourth, .three_fourths, .one_fifth, .two_fifth, .three_fifths, .four_fifths { position: relative; margin: 0; margin-right: 3.75%; float: left; }
.one_half p, .one_third p, .two_thirds p, .one_fourth p, .three_fourths p, .one_fifth p, .two_fifth p, .three_fifths p, .four_fifths p {margin: 0 0 1.5em 0;}
.one_half.last, .one_third.last, .one_fourth.last, .one_fifth.last {margin-right:0%;}
/* ***********************
--------------------------------------
-----------PORTFOLIO---------
--------------------------------------
************************/
.portdesc{float:left;}
#remove {margin-left:40px; float:left; width:750px; margin:70px 0 35px 45px; padding:15px 0px 0px 0;background: url(images/crosspattern.png)}
#remove h2{padding-left:20px;font-size:14px !important;}
.catlink{ padding:10px 5px 9px 0; float:left; font-size: 18px;margin-right:10px;}
.portfolio { width: 750px; float:left;margin-left:45px; margin-bottom:90px; }
.portfolio.blog {padding: 10px 0px 20px 0px;}
#portfolio { width: 750px; padding: 30px 0;}
#portfolio #portitems { overflow: hidden; margin-top: 30px;}
#portfolio .title { margin: 0; padding: 20px; }
#remove a:last-child span.aftersortingword{display:none;}
#remove span{padding-left:10px;}
#remove h2 a:last-child span.aftersortingword {display:none;}
#remove a:last-child {background:none;}
/*portfolio 2 */
#portitems2 {overflow:visible !important;}
#portitems2 h2{position:relative; display:inline-block; margin-left:30px; padding:0 10px;}
#portitems2 .image{float:left; width:375px; height:375px;padding: 0; margin: 0;-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.3);
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.3);
box-shadow: 0 1px 10px rgba(0,0,0,0.3);}
#portitems2 .loading{background:url(images/loading.gif) no-repeat; height:60px; width:60px; margin:155px 0 0 155px; position:absolute; }
#portitems2 .recentdescription{float:left; width:49%;padding-left:1%;}
#portitems2 h3{width:90%; text-transform:none; font-weight:bold; position:relative;display: inline-block; margin:7px 0 0px 10px; font-size:14px !important; cursor:pointer; text-align:left; z-index:99; }
#portitems2 h3 a{position:relative; z-index;99;display:inline-block;}
#portitems2 .category a{text-transform:none; padding:0px 6px 0px 6px !important;
float:left;
margin-right:7px;
left: 0px;
top: 0px;
}
#portitems2 h3.category a {margin-top:-3px;font-size:12px;}
#portitems2 h3.category a:hover {opacity:0.75;filter:alpha(opacity=75);}
#portitems2 .recentdescription .description{padding:0px 0 0 10px;}
#portitems2 .image{padding:0px 0px 0px 0px;cursor:pointer; }
#portitems2 .one_half {margin:0 !important;width:375px !important;}
.opera #portitems2 a {line-height:10px;margin-right:50px;}
#portitems2 .overdefult{
display:block;
background: #1e1e20;
background-color: rgba(0,0,0,0);
opacity:0;
filter:alpha(opacity=0);
cursor:pointer;
position:absolute;
overflow: hidden;
z-index:999 !important;
width:375px;
height:375px;
}
#portitems2 .overdefult:hover {background-color: rgba(0,0,0,0.85);opacity:1;filter:alpha(opacity=75); height:375px; /* For IE8 and earlier */}
#portitems2 .overdefult:hover .overLowerDefault{opacity:1;filter:alpha(opacity=75);}
#portitems2 .overdefult:hover .overLowerDefaultBorder{opacity:0.5;filter:alpha(opacity=75);}
/*portfolio 2 end
/*portfolio 3*/
#portitems3 {overflow:visible !important;}
#portitems3 .loading{background:url(images/loading.gif) no-repeat; height:60px; width:60px; margin:95px 0 0 95px; position:absolute; }
.item3 {width: 250px;height:250px; float: left; margin: 0px}
.item3 .recentimage {width:250px; height:250px;-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.3);
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.3);
box-shadow: 0 1px 10px rgba(0,0,0,0.3);}
.item3 img {float:left; height: 250px; width:250px; padding: 0; margin: 0;}
.item3 .overdefult{
display:block;
background: #1e1e20;
background-color: rgba(0,0,0,0);
opacity:0;
filter:alpha(opacity=0);
cursor:pointer;
position:absolute;
z-index:99 !important;
width:250px;
height:250px;
}
.item3 .overdefult:hover {background-color: rgba(0,0,0,0.85);opacity:1;filter:alpha(opacity=75); /* For IE8 and earlier */}
.item3 .overdefult:hover .overLowerDefault{opacity:1;filter:alpha(opacity=75);}
.item3 .overdefult:hover .overLowerDefaultBorder{opacity:0.5;filter:alpha(opacity=75);}
.item3 h3{ font-size:20px!important;}
.item3 .image{height:230px;}
/*portfolio 3 end*/
/*portfolio 4 end*/
.item3 h3, .item3 h3 a{position:relative; display: inline-block; padding:0 10px;
margin-bottom:3px;
background:none !important;
}
.portfolio .item3 h3 {margin-top:5px;}
.item3 h3 a{padding:11px 0 0 4px;font-size:16px !important; text-transform:none; font-weight:bold;}
.item3 h4, .item2 h4{padding-top:4px; text-align:center;font-size:15px !important;text-transform:capitalize;font-style:italic;}
.item3 h4{font-size:12px !important; padding-top:0px;}
.portfolio .readmore{ width:127px; height:28px; padding:3px 0 0 0; margin:10px 2px 0 0; text-align:center}
.item3 .descriptionHomePort {padding:0 15px 15px 15px;}
.item3 .borderLine {padding:5px 10px 10px 0px;}
/*portfolio page*/
.projectdetails{float:left; padding-bottom: 20px;}
.projectdetails .linebreak{margin-left:20px;}
.projectdetails span {line-height:3em;}
.portcategories {padding-bottom: 25px; }
.portcategories a{text-transform:none; padding:0px 6px 0px 6px !important;float:left;color:#fff !important;font-weight:normal;margin-right:7px;margin-top:-5px}
.portcategories a:hover {opacity:0.75;filter:alpha(opacity=75);}
.projectdescription{float: left; margin-top:6px; }
.projectdescription h1{padding-top:15px !important; }
.projectdescription h2 {font-size: 56px !important;text-transform:none; padding-bottom:25px;}
.projectdescription .posttext{padding:20px 15px 5px 0px !important; float:left;margin-bottom:15px;}
.portsingle .portfolio h3, .projectdescription h3{position: relative; display: inline-block;z-index: 9; padding-right:10px;font-size:24px !important;}
.projectdescription .posttext img{max-width:100%;}
.projectdescription .titleborder{ top: 15px;width: 100%;position: relative;margin-bottom: 12px;}
.datecomment{float:left;}
.blogpost .projectdescription .socialsingle {padding:0;}
.portsingle .postcontent{margin-bottom:0; padding-bottom:0;}
.portsingle #portitems4{margin-top:5px;}
.blogpost .posted-date.port{cursor:text;}
.blogpost .author.port{cursor:text;}
.blogpost .postedin {}
/*end portfolio page*/
/*single page portfolio*/
.postcontent.port{background:none; border:none;margin-bottom:15px;}
.postcontent.port .posttext {margin-top:30px;}
.postcontent .projectdetails h1{padding:15px 0 8px 18px;line-height:1.2em;}
.postcontent .projectdescription h1{padding:20px 0 10px 18px; line-height:1.2em; line-height:1.2em;}
.showpostpostcontent .homesingleright h1 {margin-right:30px;}
.projectdetails .socialsingle {float:left; padding:18px 10px 12px 15px;}
.projectdescription .portnavigation{position:relative; float:left; width:100%;font-style:italic;margin:60px 0 80px 0; background: url(images/crosspattern.png);padding:10px 0 10px 0px}
.projectdescription .portnavigation .portprev{ float:right;position:relative; text-align: right; margin-right:20px;}
.projectdescription .portnavigation .portnext{ float:left;position:relative; text-align: left; margin-left:20px;}
.projectdescription .portnavigation .portnext:hover, .projectdescription .portnavigation .portprev:hover {text-decoration:underline;}
.blogsingleimage .nextbutton.port{width:20px; height:20px;right:20px;top:20px;}
.blogsingleimage .prevbutton.port{width:20px; height:20px; right:42px;top:20px;}
.blogsingleimage #slider { margin-top:0px !important;}
/*end single page portfolio*/
/* ***********************
--------------------------------------
------------CONTENT----------
--------------------------------------
*********************** */
.content { padding: 70px 43px 0px 45px; }
.content.blog {margin-bottom:10px;margin-top:0px;}
.content.pagesidebar {padding: 70px 43px 0px 45px;}
.image-gallery .loading{background:url(images/loading.gif) no-repeat; height:60px !important; margin:0px 0 0 0px!important}
.gallery p{margin:0;}
.content .entry{float:left; width:100%;margin-top:15px;}
/*single page*/
.postcontent{margin-bottom: 0px; padding-bottom:0px; height:auto !important; }
.postcontent.singledefult {margin-bottom: 25px;}
.postcontent h1{font-size:44px !important; text-transform:none;margin:0;margin-top:20px;width:90%;}
.posttext { margin-bottom: 0px; padding: 0;}
.posttext img:hover {opacity:0.85;filter:alpha(opacity=85);}
.sentry a:hover {text-decoration:underline;}
.tags{font-size:30px !important;width:100%; padding-top:30px;float:left; margin:0px 10px 0px 0px;font-weight:bold;border-top:1px solid #ddd;}
.tags a{font-weight:normal;text-transform:capitalize; }
.tags a:hover {text-decoration:underline;}
.socialsingle .tag{ float:left;}
.singledefult .socialsingle{padding:0px 0px 3px 15px; float: right;}
.gallery-single .socialsingle {margin-top:-5px; margin-left:7px; width:25px; height:25px;float:left; width:100% !important; padding:10px 0 10px 0px;}
.gallery-single .socialsingle a{margin-left:10px; width:25px; height:25px;float:left; }
/*end single page*/
/*404 page*/
.errorpage {margin:10px 0px 0px 0px;}
.errorpage .posttext {text-align:center;padding: 15px 65px 15px 67px;}
.errorpage .postcontent h2{line-height:1.2em; font-size:72px !important; text-align:center; padding: 20px 0 0 0;}
.errorpage .postcontent{background:none; margin-bottom:25px; padding-bottom:0;}
.errorpage .homeIcon{float:none;}
.errorpage .homeIcon a{margin:0 auto; }
/*end 404 page*/
/*page*/
.fullwidth .postcontent h1{line-height:1.2em; }
.page .socialsingle{padding:8px 10px 1px 0px;}
.pagesidebar .titleborder{margin-top:-21px; width:610px;}
.titleborderh{position:relative;display:inline-block; z-index:9;}
.pagesidebar .titleborderh{ padding-right:10px;}
.fullwidth .titleborder{margin-top:-21px;}
.fullwidth .titleborderh {padding-right:10px;}
/*end page*/
.content p {margin: 0 0 1.5em 0;}
.homeContent .content{padding: 20px 0 30px 0; border-bottom:2px solid #F0F0F0; }
#page-heading { margin: 0 auto; width: 960px;}
.pagefullslider .heading-text {margin-top:10px;}
.heading-text {padding: 9px 20px 0px 0; width: 600px; position: relative; margin-top:-5px;text-shadow: 0 0 0 transparent,white 0px 1px 0px; }
.heading-text h1 ,.contact .heading-text h1{margin-bottom: 0px !important; font-size: 38px !important; margin-top:8px; margin-left:9px !important;}
.page .heading-text h1 {margin-top:2px }
.contact h1{ margin-top:9px !important;}
.heading-text p { color: #6f6f6f; margin-top:0px;line-height: 1.65em; font-size:12px; margin-left:10px;}
.pagetitle { margin: 0; padding: 30px 0; font-size: 28px; }
.content blockquote { background: #fff url(images/quote.png) 15px 8px no-repeat; padding: 10px; margin-bottom:10px !important;border: 1px solid #eeeeee; padding:10px 20px 15px 105px; font-style: italic; margin: 0; float:left;}
.content .sentry blockquote, .content.fullwidth blockquote, .content.pagesidebar blockquote {background:none;border:none;padding:0px 20px 0px 25px;border-left:10px solid;margin:10px 0 40px 0 !important;}
.content form { margin: 20px 0 }
.content form label {padding: 3px 0px;}
.fullwidth { margin-bottom: 5px; }
.errorpage.fullwidth {margin-bottom: 30px;}
.fullwidth .thumblarge { margin-bottom: 20px }
.homeBox .image .loading{background: url(images/loading.gif) 111px 46px no-repeat; height:180px; width:100%; position:absolute; z-index:99;}
.homeBox {width: 100%; position:relative; float:left; display:block;margin:0px 40px 0px 40px; padding: 0px 0 10px 0;}
.homeBox h3 {font-size: 50px !important;}
.homeBox p {margin-top:5px;padding:0px 40px 0 20px;border-left:10px solid;}
.homeBox .one_third .recentimage .image{ width:280px; height:150px;background: #343434; border-radius:8px;margin-bottom:10px;z-index:9999; border:10px solid;overflow:hidden;}
.recentdescription h3 {text-transform:none; font-size:16px !important; font-weight:bold;}
.homeBox .recentdescription {margin-left:10px}
.homeBoxAll .homeBox .recentdescription {margin-left:0px}
.homenivo {margin-top:-30px !important}
.homenoslider, .homewrap {margin-top:0 !important}
.page .nivo{margin-top:0px;}
.noslider{margin-top:-12px;}
.home-no-slide{margin-top:-4px !important;}
/*INFO TEXT*/
.infotextwrap {position: relative; width:100%;; margin:0 auto;margin-top:40px;}
.infotextwrapnivo { height: 40px;}
.infotext {
position:relative;
margin-top:0px;
text-align:center;
margin:0 auto 0px auto;
width:100%;
padding:0 0 25px 0;
float:left;
}
.infotext h2{
font-size: 50px !important;
line-height: 120%;
margin-bottom:0px;
text-transform:none;
padding:20px 0px 20px 0px;
}
.infotext h2 span {color:#fff !important;}
/*INFO TEXT END*/
/*SEARCH*/
.menuSearchField{position:relative;float:right; }
.menuSearchField form div {
background-color: #F9F9F9;
font-size: 12px !important;
color:#D2D2D2;
font-style:italic;
border-bottom: 1px solid #DADADA;
padding: 6px 10px 16px 10px;
height: 9px;
margin:0px 0 0 10px;
}
.menuSearchField form div input {
line-height:14px;
height:14px;
border: none;
background-color: #F9F9F9;
color: #D2D2D2 !important;
padding: 0px 0px 0px 0px;
width:140px;
outline:none;
font-style:italic;
}
.menuSearchField form div input#searchsubmit {
display:none;
}
.menuSearchField form div input#keyword {outline:none;}
.menuSearchField form div input#searchsubmit:hover{opacity:0.75;filter:alpha(opacity=75); /* For IE8 and earlier */}
/*END SEARCH*/
/*START HOME BOX*/
.homeBox h2 {margin-bottom:15px;}
.homeBox .one_third {cursor:pointer;width:270px !important;margin-right:30px !important;padding:15px;padding-bottom:0px;border-radius:5px;}
.homeBox .one_third h2 a, .homeBox .one_third h3 a, .homeBox .one_third p{color:#fff !important;}
.homeBox .last{margin-right: 0 !important;}
.descriptionHomePort{ float:left; }
.homeBox img{ padding-right:7px; float:left;max-width: 25px;max-height: 25px;}
/*END HOME BOX*/
/*HOME RECENT*/
.homeRacent h2{position:relative; display:inline-block;padding-right:8px; }
.homeRacent .image .loading{position:absolute; background:url(images/loading.gif) no-repeat; height:60px; width:60px;margin:95px 0 0 95px; z-index:99;}
.homeRacent.post .loading{margin:25px 0 0 50px;}
.homeRacent {margin:0; width:100%;padding:0; float: left;margin:15px 0 60px 0px;}
.titleborder {background:url(images/mainLineSeparator.png); width:90%; height:9px;margin:0 0 60px 45px;}
.recentmore {float:right;}
.homeRecent{width:100%; margin-left:5px;}
.homeRecent ul {list-style:none;margin:0;margin-left:40px;}
.homeRacent .one_fourth { background:#fff; margin:5px 0 10px 0;border: 1px solid #eee;border-bottom:1px solid #ccc; margin-right: 1.05% ;width:230px;border-radius:5px;}
.homeRacent.portHome .one_fourth {width:230px;}
.homeRacent .one_fourth.last {margin-right:0% !important;}
.homeRacent .recentimage{width:250px; height:250px;
-moz-box-shadow: 0 1px 10px rgba(0,0,0,0.4);
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.4);
box-shadow: 0 1px 10px rgba(0,0,0,0.4);}
.homeRacent .one_third {margin:0px;width:250px;}
.homeRacent.post .recentimage{margin:0px; width:130px; height:80px; float:left;border: 1px solid #eee;}
.homeRacent.post .one_half {width:44%;background:#fff; margin:5px 30px 0px 0px;border: 1px solid #eee;border-radius:5px;padding:20px;}
.homeRacent.post .one_half p {margin:0;}
.homeRacent.post .one_half.last {margin-right:0px;}
.homeRacent.post .recentimage img {padding:4px;background:#2a2b2c;}
.homeRacent.post .recentdescription{float:left; width:70%;margin-top:1px;}
.homeRacent .recentdescription{float:left; width:100%;margin-left:0px;}
.homeRacent .recentdescription h3, .homeRacent .recentdescription .star-rating{margin-left:15px;}
.homeRacent .descriptionHomePort {margin:0;}
.homeRacent .recentdescription p {padding:35px 10px 0px 15px margin-bottom:0;}
.homeRacent .descriptionHomePort .descriptionHomePortText {padding:35px 10px 10px 15px;}
.homeRacent.post .recentdescription {margin-left: 6px;}
.homeRacent.post .recentdescription p{padding:5px 0 0 15px;margin:0;}
.homeRacent h3{text-transform:none; position:relative;display: inline-block; margin:25px 0 5px 15px; font-size:16px !important; font-weight:bold; cursor:pointer; text-align:left; z-index:99; }
.homeRacent.post h3{background:url(images/homePostIcon.png) no-repeat; width:32px; height:32px; margin:0px 0 10px 0px; width:100%;}
.homeRacent.post h3 a {padding:7px 0 0 40px;}
.homeRacent .portDate , .homeRacent .portTitle a, .homeRacent .portTitle ,
.item2 .portDate, .item2 .portTitle a, .item2 .portCategory,
.item3 .portDate, .item3 .portTitle a, .item3 .portCategory, .item3 .portTitle, .item2 .portTitle
{text-align:center; color:#fff; font-size:20px;}
.homeRacent .portTitle, .item3 .portTitle, .item2 .portTitle {margin-top:105px;text-transform:uppercase;}
.item2 .portTitle {margin-top:170px;}
.homeRacent .portIcon, .item2 .portIcon, .item3 .portIcon{background:url(images/eyeIcon.png) no-repeat; width: 34px; height:20px;text-align:center;margin-left:138px; }
.item2 .portIcon {margin-left:100px;}
.homeRacent h3 a{position:relative; z-index;99;display:inline-block;}
.homeRacent .recentmore{font-style:italic;font-weight:bold;}
.homeRacent .image{padding:0px 0px 0px 0px;cursor:pointer;}
.homeRacent .overdefult{
display:block;
background: #1e1e20;
background-color: rgba(0,0,0,0);
filter:alpha(opacity=0);
opacity:0;
cursor:pointer;
position:absolute;
overflow: hidden;
z-index:99 !important;
width:250px;
height:250px;
}
.homeRacent .one_half .overdefult {width:290px;}
.homeRacent.shopSidebar .one_half .overdefult {width: 290px !important;}
.homeRacent.post .overdefult{
padding:4px;
display:block;
filter:alpha(opacity=0); /* For IE8 and earlier */
background-color: rgba(0,0,0,0);
cursor:pointer;
position:absolute;
overflow: hidden;
z-index:99 !important;
width:130px;
height:80px !important;
border:none !important;
}
.homeRacent .overLowerDefaultBorder{
background:#fff;width:45px;
height:45px;border-radius:45px;margin:53px 0 0 118px;opacity:0;
filter:alpha(opacity=0); }
.homeRacent.post .overLowerDefaultBorder{
background:#fff;width:45px;
height:45px;border-radius:45px;margin:17px 0 0 43px;opacity:0;
filter:alpha(opacity=0); }
.homeRacent .overdefult:hover {background-color: rgba(0,0,0,0.85);opacity:1;filter:alpha(opacity=75); height:250px; /* For IE8 and earlier */}
.homeRacent .overdefult:hover .overLowerDefault{opacity:1;filter:alpha(opacity=50);}
.homeRacent .overdefult:hover .overLowerDefaultBorder{opacity:0.5;filter:alpha(opacity=50);}
/*HOME RECENT END*/
/*related posts*/
.relatedtitle{ position:relative; float: left; border-radius:5px; color:#2a2b2c; z-index:1; }
.titleborder.relatedb{width:600px;margin-left:-5px;}
.related{float:right;margin-bottom:30px; width: 86.5%;}
.related h3{position:absolute; display:inline-block;z-index:9; font-size: 16px !important; line-height: 24px; margin:0px 30px 10px 25px;padding:0 10px;}
.related h4{width:158px; font-size:13px !important; color:#5CBBE3 !important; text-align:center; text-transform:none !important; padding-top:0px;font-weight:bold;}
.relatedtitle h3 {color:#2a2b2c !important;font-size: 13px !important;padding: 22px 2px; text-align:center;text-transform:none;font-weight:bold;margin-bottom:0;width:60px;}
.related .one_third {width:158px; margin-right:22px;}
.related .one_third.last {margin-right:0px;}
.related .one_third .image img {background-color: #2a2b2c; font-size:12px !important;
padding: 6px;height:83px; width: 146px;}
.related .one_third:hover {color:#5CBBE3 !important;}
/*end related*/
#gallery-1 .gallery-item {width:auto !important; margin-top:0 !important; }
.gallery-icon img{width:70px; height:70px;}
.image-gallery, .gallery-item{float:left; padding:0px 0px 0px 0px; margin: 0px 0px 20px 0px;}
.image-gallery img{height:106px; width:106px; -moz-box-shadow: 0 1px 10px rgba(0,0,0,0.3);
-webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.3);
box-shadow: 0 1px 10px rgba(0,0,0,0.3);}
.image-gallery .over{display:block; cursor:pointer; position:absolute; z-index:99 !important; width:106px; height:106px; margin:0px 0 0 0px;
opacity:0;
filter:alpha(opacity=0); /* For IE8 and earlier */
background-color:#fff;
filter:alpha(opacity=0); /* For IE8 and earlier */
background-color: rgba(255,255,255,0);
}
.image-gallery .over:hover{opacity:1;
background-color:#000;filter:alpha(opacity=70); /* For IE8 and earlier */background-color: rgba(0,0,0,0.6);}
.gallery-content .gallery{display:none;}
.gallery-single{width:750px; float:left;margin-bottom:5px;margin-top:-20px;}
.homesingleright .gallery-single {margin-top:-14px;}
/* ***********************
--------------------------------------
---------------BLOG-------------
--------------------------------------
*************************/
audio {width: 750px;}
.audioPlayerWrap { margin-bottom:15px;}
.blogimage img,.audioPlayer,.image img{display:none;}
.blogsingleimage{width:750px; margin-bottom:10px;}
.projectdetails .blogsingleimage{width:750px; margin-bottom:10px; position: relative;}
.projectdetails .blogsingleimage img:hover {opacity:0.9;filter:alpha(opacity=90)}
.blogimage img, .posttext .blogsingleimage img, #slider-category .anythingSlider .anythingWindow, .projectdetails .blogsingleimage, .fullwidth img{-moz-box-shadow: 0 2px 10px rgba(0,0,0,0.35);
-webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.35);
box-shadow: 0 2px 10px rgba(0,0,0,0.35);}
.blogsingleimage p, .content blockquote p {margin:0 !important;}{margin:0 !important;}
.posttext .blogsingleimage{width:750px; margin-bottom:5px;}
.blogimage img:hover{opacity:0.7;filter:alpha(opacity=70); /* For IE8 and earlier */}
.socialsingle{float:left; padding:8px 10px 1px 15px; width:100%;}
.blogsingleimage .socialsingle a{margin-left:10px; width:25px; height:25px;float:left; }
.blogsingleimage iframe{width:730px !important; height:410px; padding:10px;background:#1e1e20;margin-bottom:0px;}
.posttext .blogsingleimage, .videoGallery {width: 750px;margin-bottom: 25px;}
.posttext .blogsingleimage img:hover {opacity:0.9;filter:alpha(opacity=90);}
.fullwidth .projectdescription .bottomborder{position:absolute; background: url(images/blogLowerBorder.png) no-repeat; width:600px; height:15px; margin-top:0px;}
.blogpostcategory .commentblog, .singledefult .commentblog{position: relative; width: 80px; top: -35px;}
.singledefult .sentry { float:left; width:100%;}
.blogpostcategory h2, .singledefult h2 {margin: 0px 35px 0px 0px; font-size:44px !important;width:90%;}
.posted-date a {color:#b4b3b3;font-style:italic;padding-bottom:10px;}
.squareHolder {float:right;width:61px; height:61px; background: url(images/crosspattern.png);text-align:center;margin-top:-48px;}
.comment-inside a {padding:0 10px 0 10px;color:#fff !important;}
.comment-inside:hover, .date-inside:hover {opacity:0.75;filter:alpha(opacity=75);}
.comment-inside{cursor:pointer;margin: 13px 0 0 12px;height:28px;width:38px;text-align:center;line-height:24px;font-size:24px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px; }
.comment-inside:after {
content:"";
margin-top:4px;
margin-left:20px;
border-width:9px 0px 9px 9px;
border-style:solid;
display:block;
width:0;
}
.blogpostcategory .posted-date {margin-bottom:15px;}
.blogpostcategory {position:relative; float:left;width:750px; margin-bottom: 0px; padding: 0; height:auto !important;}
.blogpostcategory .meta{margin:0px 0 10px 0px; width:100%; float:left;}
.blogpostcategory .blogimage:hover {opacity:1;filter:alpha(opacity=100);}
.blogpostcategory .overdefultlink:hover {opacity:1;filter:alpha(opacity=75);}
.blogpost .posted-date a:hover, .blogpost .author a:hover {opacity:0.85;filter:alpha(opacity=85);}
.blogpostcategory .authorblog, .singledefult .authorblog{float:left; padding-right:20px;font-size:14px;}
.blogpostcategory .categoryblog, .singledefult .categoryblog {font-size:14px;}
.blogpostcategory .blogmore{float:right;margin-bottom:70px;font-style:italic;}
.blogpostcategory .blogmore:hover {text-decoration:underline;}
.blogpostcategory iframe{width:730px !important; height:410px; padding:10px;background:#1e1e20;margin-bottom:0px;}
.blogpostcategory .socialsingle{float:left; padding:12px 10px 30px 0px;}
#slider-category .anythingSlider .anythingWindow { overflow: hidden; position: relative; max-width:100%; height: auto; }
#slider-category .slider-item IMG{ max-width:100%; height:auto;}
.socialsingle .addthis_toolbox{margin:0px !important;}
.socialsingle .addthis_toolbox a {padding-right:10px !important; float:left;}
.projectdescription .socialsingle .addthis_toolbox a {padding-right:4px !important; float:left;background:#000;width:40px;height:40px;line-height:40px;font-size:14px;text-align:center;margin-right:2px;color:#fff;}
.projectdescription .socialsingle .addthis_toolbox a:hover {background:#fff;color:#000;}
.singledefult .socialsingle .addthis_toolbox a {padding-right:0px !important;padding-left:10px !important; float:left;}
.blogpostcategory .loading{background:url(images/loading.gif) no-repeat; height:60px; width:60px; margin:110px auto;}
.audioPlayerWrap {width:100%; height:40px; padding-top:7px;}
.audioPlayerWrap .loading{background:url(images/loading.gif) no-repeat !important; height:40px; width:40px; margin:0 auto; }
/*blog slider*/
#slider-category .anythingSlider .anythingWindow { overflow: hidden; position: relative; width: 750px !important; height: 320px !important; }
#slider-category .slider-item IMG{ width:750px; height:320px;}
.slider-category .anythingSlider {margin-top:0 !important;}
.slider-category #slider{margin-top:0px;}
/*end blog*/
.editlink {margin-top:27px;}
.sentry p{padding-bottom:0; text-align:left;}
.blogpost h2 { margin-bottom: 5px }
.blogpost .datecomment { float:left; font-weight: bold; width: 100%; margin: 0;}
.blogpost .datecomment span {font-weight:normal;}
.blogpost .datecomment p {line-height:200%;margin-bottom:0;}
.blogpost .datecomment .link a{font-weight:bold;}
.blogpost .datecomment .link a:hover {text-decoration:underline;}
.blogpost .datecomment span {font-weight:normal;}
.blogpost .datecomment .posted-date {margin-top:0px;}
.blogpost .projectdescription .datecomment {padding:0px;line-height:26px;border-left:10px solid;padding-left:25px;}
.homewrap .image-gallery{margin: 9px 11px 2px 0px;}
.homewrap .gallery-single img{margin-top: 0px !important;}
.homewrap iframe{width:580px; height:300px; padding: 0px 10px 5px 0;margin-top:-5px;}
.homewrap .tags{padding:4px 0 6px 15px; margin-left:0;}
.homewrap .posttext img{max-width:580px;}
.homewrap .homesingleleft{float:left; width:320px; margin:30px 0 0 0; padding:15px 0 20px 0;border-bottom:1px solid #CFCFCF;}
.homewrap .homesingleright{float:right; width:600px; margin:30px 0 0 0;border-bottom:1px solid #CFCFCF;}
.homewrap .blogpost .datecomment { padding:15px 10px 0px 15px; line-height:3em;}
.homewrap .socialsingle { padding:20px 10px 15px 15px; margin:0 0 0 0px;}
.homewrap .posttext {padding: 0 15px 10px 15px;}
.homewrap .posttext img{margin-top:-5px;}
.homewrap #main{margin:0 auto; padding: 5px 0px 30px 0px;margin-bottom:8px;}
#showpost #main{margin:0 auto; padding: 18px 20px 0px 0px;}
.fullwidth h1{ }
.homesingleleft h1{ margin-bottom:18px !important; margin-left:15px; font-weight:bold;font-size:24px !important;}
.homesingleright h1{margin:10px 0 18px 0;}
.blogpost span.comments { float: right; padding: 0; }
.blogpost span.comments a { color: #aaa; padding: 0; text-decoration: none; }
.blogpost span.comments a:hover { color: #111 }
.blogpost .entry { clear: both; overflow: hidden; margin: 15px 0; }
.blogimg { background: url(images/blog.png) no-repeat 0 0px; width: 624px; height: 255px; margin: 10px 0 0 0; }
.blogimg img { width: 600px; height: 234px; margin: 3px 0 0 3px; border: none; padding: 4px; }
.postinfo { margin: 5px 0; float: right; font-size: 11px; }
.post-edit-link { margin: 10px 0; float: right; }
.blogpostsingle { margin: 25px 0 0 }
.feat { width: 300px; float: left; margin: 20px 30px 20px 0; }
/* ***********************
--------------------------------------
-----------COMMENTS--------
--------------------------------------
************************/
#reply-title{display:none !important;}
.titleborder.comment{width:100% }
h3#comments{z-index:9;text-align:center;color:#2a2b2c; text-transform:none;height:30px; }
.commentfield {position:relative;float:left;}
.commentlist > li:first-child > div{background:none;}
.commentfieldarea ,.contactbutton{float:left; width:100%;}
.content #comments { font-size: 54px !important; text-align:left; margin:80px 0 80px 0; }
.commentlist ul {margin-top:-70px ;}
.content ol.commentlist { margin: 0; padding: 0; margin:0px; clear: both; overflow: hidden; list-style: none; padding-top:0px;}
.content ol.commentlist li { display: block; margin: 0px 0 0 -20px; line-height: 1.65em;}
.content ol.commentlist li .comment-author .fn a{position:relative; font-style: normal; font-size:18px;text-transform:capitalize;font-weight:bold;}
.content ol.commentlist li .comment-author .fn a:hover{}
.content ol.commentlist li .comment-author .commentsDate{color:#a1a0a0; font-style:italic;}
.content ol.commentlist li .comment-author .commentsDate a {}
.content ol.commentlist li .comment-author .commentsDate a:hover {}
.content ol.commentlist li .comment-author .avatar {position:relative; margin: 25px 0 0 -25px;}
.content ol.commentlist li .comment-meta { font-size: 10px; float: right; }
.content ol.commentlist li .comment-meta a { color: #a7a7a7; text-decoration: none; }
.content ol.commentlist .commenttitle {float: left;}
.content ol.commentlist li p { padding: 0px 0 0 0px; line-height: 1.65em; margin-top: 0px; text-shadow: 0 0 0 transparent,white 0px 1px 0px;}
.commenttext {padding:10px 0 0 0px;}
.commenttext p {margin:0}
.content ol.commentlist li.odd { height: inherit; background: none !important; }
.content ol.commentlist li.even { height: inherit; background: none !important;}
#respond {float:left;;}
#respond #commentform { margin: 0; }
#respond #commentform label { margin-left: 0px; display: inline;}
#respond #commentform label small { color: #a0a0a0; }
#respond #commentform textarea, #respond #commentform input { padding: 5px; margin: 0 10px 10px 0;background-color: #F8F8F8; background-color: rgba(0,0,0,0.15);font-size:12px !important; border: 1px solid #bbb; }
#respond #commentform textarea:focus, #respond #commentform input:focus {color:#2a2b2c;outline: none; border: 1px solid #D9D9D9;}
#respond #commentform input { width: 100% }
#respond #commentform textarea { width: 100%; }
#commentform { margin:0; float:left;}
#commentform h3 { font-size: 54px !important; text-align:left; margin:60px 0 30px 0;text-transform:none;}
#commentform #respond #commentform { margin: 0; }
#commentform #respond #commentform label {margin-left: 0px; display: inline; }
#commentform #respond #commentform label email{ margin-top: -20px; display: inline; }
#commentform #respond #commentform label small, #contactform small { color: #a0a0a0; }
#commentform #respond #commentform textarea, #commentform #respond #commentform input {color:#2a2b2c;float:left; outline: none !important; padding: 5px; margin: 0 10px 10px 0; font-size:20px !important;
background-color: #fff; border: 1px solid #ddd; }
#commentform #respond #commentform textarea:focus, #commentform #respond #commentform input:focus, #contactform .commentfieldarea textarea:focus, #contactform .commentfield input:focus{color:#2a2b2c;outline: none; border: 1px solid #7e7e7e;}
#commentform #respond #commentform input { width: 50%;height:30px;}
#commentform #respond #commentform textarea { width: 100%;margin-top:20px;}
#commentform #respond #commentform small, #contactform small {font-size:24px;}
#commentform #respond #commentform input#submit, #respond #commentform input#submit {width:auto;height:auto;color: #fff;float: right; margin: 30px -10px 60px 10px; padding: 15px 50px 15px 50px; text-transform:none;
font-size:24px !important;border:none;}
#commentform #respond #commentform input#submit:hover, #respond #commentform input#submit:hover, #contactform .contactbutton .contact-button:hover {background:#2a2b2c;}
.content ol.commentlist li .reply a {float: right;margin-top:-38px;}
.content ol.commentlist li .reply a:hover {text-decoration:underline;}
.comment {position: relative; z-index: 1; list-style: none; display: block; padding: 0px 0 0 20px; }
.comment-body p{font-size:12px !important; color:#535252 !important; line-height:1.65em !important; }
.navigation, .commentnav { clear: both; width:100%; height:60px; background: url(images/crosspattern.png);margin-bottom:80px;}
.commentnav {background:none; margin-bottom:0px;height:0px;}
.commentnav .alignright, .commentnav .alignleft { width: 100%; }
.navigation a, .commentnav a { padding:20px; text-decoration: none;float:left;font-style:italic;}
.navigation a {margin:-10px 0 60px 0;}
.navigation .alignleft {margin-right:40px;}
.navigation a:hover, .comment-nav a:hover { text-decoration:underline; }
.fullwidth .thumblarge { margin-bottom: 20px }
.specificComment{float: left; height:auto; width: 750px;padding:15px 0px 0px 0px;margin: 0px 0px 20px 0;border-top:1px solid #ddd;}
.children .specificComment {margin-left:40px !important;max-width: 660px;}
.children .children .specificComment {margin-left:60px !important;max-width: 620px;}
.commentlist p{float:left;}
.commentlist .comment-author {margin-top:12px;}
.commentlist .avatar{background: #F8F8F8; margin: 15px 0 0px 0px;margin-right:20px; height:80px; width:80px;background: #EEECEC url(images/avatarBackground.png) no-repeat; float:left; }
.commentlist .avatar img{margin:5px; height:70px; width:70px;}
.commentlist .commenttext {float: left; width: 100%;}
/* ***********************
--------------------------------------
------------CONTACT FORM-----------
--------------------------------------
*************************/
#contactform, #contactform .commentfield input, #contactform .commentfieldarea textarea,.commentfield{width:99.5%;}
#contactform .commentfieldarea textarea, #contactform .commentfield input {color:#2a2b2c;float:left; outline: none !important; padding: 5px 5px; margin: 0 10px 10px 0; font-size:24px !important; background-color: #fff; border: 1px solid #ddd;}
#contactform .commentfield input {height:30px;}
#contactform .contactbutton .contact-button{cursor:pointer;width:auto;height:auto;color: #fff;float: left; margin: 30px 10px 90px 0; padding: 15px 50px 15px 50px; text-transform:none;font-size:24px !important;border:none;background:#1e1e20;}
#result{font-size:13px !important; color:#DC4D47; float:left;display:none;margin-bottom:15px;}
#resultsuccess{font-size:13px !important; color:#91B458 !important; float:left;display:none;margin-bottom:15px;}
.errorcontact{border: 1px solid #DC4D47 !important;}
/* ***********************
--------------------------------------
------------SIDEBAR-----------
--------------------------------------
*************************/
.sidebar {width: 250px;
font-size: 12px;
padding: 0 10px 0 0px;
float: right;
display:none;
border-left:1px solid #ddd;border-bottom:1px solid #ddd;
}
.widget { margin: 15px 0 0px 20px;padding: 0px;border: none; background: none; float: left; width: 100%;}
.widget:last-child {padding-bottom:15px;}
.widget h3{ margin:0; display: inline-block; padding: 0 8px 10px 0px !important; text-transform:none; font-weight:bold;}
.widget .titleborder { position: absolute; margin-top: -33px; width: 250px; height: 3px; z-index: -1;}
.widget p {color:#6f6f6f; font-size:12px; margin-bottom: 15px; line-height:1.65em; margin-top:-10px; }
.widget_login p {margin-top:0px;}
#footer .widget p { font-size:12px; margin-bottom: 15px; line-height:1.65em;text-shadow: none; margin-top:-10px; }
.widget ul {list-style: disc !important; margin: 0; padding: 0; }
.widget ul .children { padding: 0; margin: 0; }
#footer .widget{ border:none !important; margin:0; padding: 0 0 10px 0;background:none;}
.widget ul li {display: list-item;list-style-position:inside; float:none; padding: 0; margin: 0;}
#footer .widget ul li:hover { background: none;}
#footer .widget ul li {float:none; padding: 5px 0 10px 0; margin: 0; border-bottom: 1px dashed #808080; background: none; color:#fff !important;}
#footer .pmc_twitters ul li:last-child {border-bottom:none;}
#footer .widget .pagenav {float:left !important;}
.widget_rssfeed { font-size: 16px }
.widget_rssfeed ul li.rss { background: url(images/rssfeed.png) 0 0 no-repeat; padding: 6px 0 10px 38px; }
.widget_rssfeed ul li.email { background: url(images/mail.png) 0 0 no-repeat; padding: 6px 0 10px 38px; }
.widget_rssfeed ul li.twitter { background: url(images/twitter.png) 0 0 no-repeat; padding: 6px 0 10px 38px; }
.widget_search form, .widget_product_search form {height:55px;}
.widget_product_search label {display:none;}
.widget_search form div, .widget_product_search form div { background:none; border:none; font-size:12px !important; padding: 5px; height:25px; width:276px; }
.footer_widget .widget_search form div {background:none; border:none;width:200px;margin-top:0px;}
.widget_search form div input, .widget_product_search form div input { border: 0; background-color:#F8F8F8; padding: 5px; }
.widget_search form div input, .widget_product_search form div input {background:#ddd; background-color: rgba(150,150,150,0.2);}
.widget_search form div input:focus, .widget_product_search form div input:focus{background:#ddd; background-color: rgba(100,100,100,0.2);}
.footer_widget .widget_search form div input {background:#121212; background-color: rgba(0,0,0,0.2);}
.widget_product_search form div input {width:270px; height:25px; border:1px solid #aaa; }
#footer .widget_product_search form div input {width:195px;}
.widget_product_search {margin-bottom:45px;}
.footer_widget .widget_search form div input:focus, #footer .widget_product_search form div input {border:1px solid #444;background:#232323; background-color: rgba(0,0,0,0.3);}
.widget_search form div input#keyword, .widget_product_search form div input#keyword {outline:none; width: 220px; height:25px;margin-left:-5px;background-color: #fff; border: 1px solid #ddd;color: #2a2b2c; }
.footer_widget .widget_search form div input#keyword {outline:none; width: 208px; height:25px;margin-left:-5px;border:1px solid #444;color:#aaa; }
.widget_search form div input#keyword:focus, .widget_product_search form div input#keyword:focus{border:1px solid #aaa;}
.footer_widget .widget_search form div input#keyword {border:1px solid #444;}
.footer_widget .widget_search form div input#keyword:focus { border:1px solid #666; }
.widget_search form div input#keyword:focus form div, .widget_product_search form div input#keyword:focus form div{border: 1px solid #000; }
.widget_search form div input#searchsubmit, .widget_product_search form div input#searchsubmit{width:0px; height:0px; background:none;display:none;}
.widget .recentcomments { padding: 8px 20px; font-size:18px !important;}
.widget .racentW li img{float:left;}
/* ***********************
--------------------------------------
-----------WIDGETS---------
--------------------------------------
************************/
.footer_widget1, .footer_widget2, .footer_widget3{ width: 30%; position: relative; margin-right: 32px; padding: 30px 0 20px 0px; float: left; }
.footer_widget3 { padding: 30px 0 20px 0px; position: relative;float:right;}
.footer_widget3 {margin-right:0px;}
.footer_widget .widget ul { list-style: none; margin: 0; }
.footer_widget .widget del .amount, .footer_widget .widget .from{display:none;}
.footer_widget .widget ul li { padding: 5px 0px; margin: 0; border-bottom: 1px dashed #333; border-top: none; }
.footer_widget .widget ul li:last-child { border-bottom: none !important; }
.wttitle h4 { padding:0px 0 0px 105px !important; }
.wttitle a { font-weight:bold; line-height:18px !important;padding:0 0 10px 0px !important;letter-spacing: normal;}
.details1 { color: #999; font-size: 11px; margin: -9px 0 0 5px; }
.details2 { margin: -11px 0 0 20px; padding-left:85px;}
.details3 { float:right; font-style:italic;padding-top:5px; font-size:12px;}
.widgett { margin: 0px 0 15px 0; padding: 0; width: 250px; min-height: 55px;}
.category_posts .widgett { margin: 0px 0 20px 0; background: #fff;border: 1px solid #eee;}
.recent_posts .widgett { margin: 0px 0 20px 0; background: #fff;border: 1px solid #eee;}
.widgett li{padding:0 0 0 0 !important;}
.widgett a {display:inline !important; padding:0 !important; text-transform:none;}
.widgett .imgholder {width:95px; height:50px; float: left; margin: 0px 0px 0 0;
}
.widgett .imgholder img {width: 85px; height: 65px;margin: 0px 0px 0px 0px;}
.widgett .imgholder img:hover{opacity:0.75;filter:alpha(opacity=75);}
.footer_widget .widgett { margin: 5px 0 0px 0; padding: 0; width: 220px;}
.footer_widget .recent_posts li{border:none !important;}
.footer_widget .wttitle h3 { color:#aaa !important}
.category_posts2 { float: left; clear: both; overflow: hidden; }
.widget-pics { width: 83px; height: 83px; float: left; margin: 0 9px 9px 0; padding: 0; }
.widget-pics img { float: left; width: 75px; height: 75px; margin: 0; }
.footer_widget .widget-pics.category_posts2 { float: left; clear: both; }
.footer_widget .widget-pics { width: 83px; height: 83px; margin: 0 15px 15px 0; float: left; padding: 0; }
.footer_widget .widget-pics img { width: 75px; height: 75px; }
.footer_widget .pmc_twitters ul {margin-top:-15px !important;float:left !important;color:#aaa !important;}
.footer_widget .pmc_twitters li .twitterContent {margin:0px 0 0 10px !important;font-size: 12px !important; letter-spacing: normal;}
.footer_widget .pmc_twitters li {margin-bottom:0px !important; text-shadow:none !important;}
.footer_widget .pmc_twitters ul li:hover {color:#aaa !important;}
.footer_widget .wttitle a {font-size: 16px !important;line-height:22px !important;}
.footer_widget .widget_archive ul li, .footer_widget .widget_categories ul li{ padding:5px 5px 5px 25px !important; }
.widget_pages ul li, .widget_links ul li, .widget_rss ul li, .widget_recent_entries ul li , .widget_recent_comments ul li, .widget_meta ul li, .widget_nav_menu ul li{padding:5px 5px 5px 0px !important;}
.widget_categories a , .widget_archive a, .widget_pages a, .widget_links a, .widget_recent_entries a, .widget_recent_comments a, .widget_meta a, .widget_nav_menu a, .widget_rss a{
font-size:18px !important; font-weight:bold !important;}
#footer .widget_categories a , #footer .widget_archive a, #footer .widget_pages a, #footer .widget_links a, #footer .widget_recent_entries a, #footer
.widget_nav_menu ul {border:none !important;}
.widget_nav_menu ul li a {display:inline; padding:0px 0 0px 15px; margin:0!important;font-size:15px !important; }
.widget_nav_menu li ul li {display:none;}
.widget_nav_menu .menu {float:left;}
.rsswidget{font-size:12px;color:#6f6f6f !important;}
.widget_rss h3 a , .rsswidget h3{color: #25252C !important;
font-size: 18px !important;}
.widget_categories li , .widget_archive li, .widget_pages li, .widget_links li, .widget_rss li, .widget_recent_entries li, .widget_recent_comments li, .widget_meta li, .widget_nav_menu li{display:block; padding:5px 5px 0px 0px !important; color:#6f6f6f; }
.sidebar .widget_categories li ,.sidebar .widget_archive li,.sidebar .widget_pages li,.sidebar .widget_links li,.sidebar .widget_rss li,.sidebar .widget_recent_entries li,.sidebar .widget_recent_comments li,.sidebar .widget_meta li,.sidebar .widget_nav_menu li {width:250px; color:#1e1e20 !important;line-height:24px !important;}
.widget_categories li.current-cat {}
.comment_posts h3{ }
.comment_posts li{padding:10px 10px 10px 0px !important; margin-bottom:15px !important ;background-color:#F5F5F5; font-size:12px !important; border: 1px solid #dddcdc; border-bottom:1px solid #bbb;
width:270px; color:#6f6f6f;-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear; /* For IE8 and earlier */}
.footer_widget .comment_posts li{margin-bottom:10px !important ;background: url(images/commentBackground.png) no-repeat !important; width:220px; height:100px;color:#6f6f6f;-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear; /* For IE8 and earlier */}
.footer_widget .comment_posts ul li{padding:5px !important;}
.comment_posts li:hover{}
.widget_recent_comments a, .widget_rss a {background:none;padding-left:0px;}
.category_posts .details2, .recent_posts .details2 {font-size:16px !important;}
.widget .current_page_ancestor, .widget .current-menu-item {border-top:none !important;}
.textwidget img , .size-large{width: 85% !important;height: auto;}
.textwidget .wp-smiley{width:auto !important; height:auto;}
/* ***********************
--------------------------------------
--------------FOOTER----------
--------------------------------------
************************/
.socialfooter{float:right; margin-bottom:15px;}
.socialfooter .socialcategory {margin:-10px 0 0 0px;}
.socialfooter h3{margin-top:15px;}
.totop {position:fixed; right:5px; bottom:5px;z-index:99; }
.gototop {
background:#1e1e20;
height: 41px;
width: 41px;
z-index:9;
cursor:pointer; text-align:center;
overflow:hidden;
}
.arrowgototop{
background: url(images/goToTopArrow.png) no-repeat;
position: relative;
left:14px;
top:16px;
width: 24px;
height: 90px;