-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
2601 lines (2490 loc) · 56.6 KB
/
style.css
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
/*@ glFusion Equinox Theme 1.6.6 | https://www.glfusion.org
(c) 2016-2017 glFusion | GNU GPLv2 License */
/* ========================================================================
This should contain site wide styles that augment the UIKIT styles
You can override the uk-* styles or utilize the tm-* styles (theme specific)
set of styles.
========================================================================== */
/*
* UIKIT overrride when using a gradient style - remove the text shadow on tabs
*/
.uk-tab > li > a {
text-shadow: none;
}
.uk-nav-offcanvas>li>a:focus,
.uk-nav-offcanvas>li>a:hover {
text-shadow:none;
color:#fff;
}
.uk-form-controls input[type='checkbox'] {
margin-top:3px;
}
.uk-modal-page,
.uk-modal-page body {
overflow: hidden !important;
}
#admin-side-config h3 {
color:#fff;
}
/* Primary Styles
========================================================================== */
/* hides the player controls for hero video */
.tm-equinox-hero .mejs-controls {
display:none;
}
.tm-equinox-hero .mejs-overlay-loading {
display: none;
}
/* tm-content wraps the entire content area */
.tm-content {
background:none;
margin-top:0px;
}
/* tm-container is the primary wrapper for the content area. This excludes
* the header / footer (see tm-nav* and tm-footer* styles)
========================================================================== */
.tm-container {
}
.tm-container h1 {
font-size: 24px;
}
.tm-container h2 {
font-size: 20px;
margin: 0px 0px 10px;
}
.tm-container h3 {
font-size: 18px;
margin-top: 5px;
margin-bottom: 10px;
}
.tm-header {
background: #fff url("images/header-bg.png") repeat-x scroll 0% 0;
width: 100%;
height: 55px;
}
.tm-icon {
width:60px;
margin:0 auto;
text-align:center;
}
/* Modifier: `tm-icon-hover`
========================================================================== */
.tm-icon-hover {
color: #fff;
}
/*
* Hover
*/
.tm-icon-hover:hover {
color: #ccd6dd;
}
/* Navbar semantics
========================================================================== */
/* sets background and attributes for the navbar */
.tm-navbar {
border-radius:0;
/* padding: 6px 0px 6px; */
border: medium none;
/* background: #fff none repeat scroll 0% 0%; */
color:#000;
outline: none;
text-shadow:none;
padding: 1em 0 1em;
background-color: rgba(255, 255, 255, 0.8) !important;
}
/* Navbar brand
========================================================================== */
.tm-navbar-brand {
color: #000;
text-shadow:none;
font-weight:700;
}
.tm-navbar-brand:hover,
.tm-navbar-brand:focus,
.tm-navbar-brand a:active,
.tm-navbar-brand a:visited,
.tm-navbar-brand a:link {
color:#000!important;
text-shadow: none;
}
/* Navbar brand - Off Canvas
========================================================================== */
.tm-navbar-oc ul li ul {
background: transparent !important;
}
.tm-navbar-brand-oc {
max-width:90%;
}
.tm-navbar-brand-oc a { /* off canvas */
text-shadow:none;
color: #000;
}
.tm-navbar-brand-oc a:hover {
color: #000!important;
text-decoration:none;
}
/* Navbar toggle
========================================================================== */
.tm-navbar-toggle {
color: #000;
text-shadow: none;
}
.tm-navbar-toggle:hover,
.tm-navbar-toggle:focus {
color: #000!important;
}
/* Navbar UIKIT navigation (used by Login button / My Account dropdown)
========================================================================== */
/* overrides to the uk-navbar-nav > li > a style found in uikit*.css */
.tm-navbar-nav > li > a {
border: medium none;
border-radius: 3px;
font-size: 15px;
margin: 0;
text-shadow: none;
color: #000;
text-decoration: none;
}
/* the uk-nav-navbar and tm-nav-navbar styles are used on dropdowns */
.tm-nav-navbar > li > a {
color: #000;
text-decoration: none;
}
/* sets hover color for 2nd level drop down */
.tm-nav-navbar ul a:hover {
color: #000!important;
text-decoration: none;
}
/* sets color for first dropdown */
.tm-dropdown {
background: #fff none repeat scroll 0 0;
color:#000;
border-radius: 0 0 5px 5px ;
border: 0;
}
/* set color and background color fo top level hover */
.tm-navbar-nav > li:hover > a,
.tm-navbar-nav > li > a:focus,
.tm-navbar-nav > li > a:active,
.tm-navbar-nav > li.uk-open > a {
background-color: transparent;
color: #000!important;
outline: none;
background: #fff none repeat scroll 0 0;
}
/* - set background on dropdown - */
.tm-navbar ul li ul {
background: #fff;
}
/* set hover background for second level and below dropdown menus */
.tm-nav-navbar > li > a:focus,
.tm-nav-navbar > li > a:hover {
background:#fff;
text-shadow:none !important;
color: #000;
}
/* Right Block semantics
========================================================================== */
/*
* tm-navigation is the traditional old left blocks. In this theme
* this refers to the RIGHT blocks on the page.
*/
.tm-navigation { /* the old left blocks */
}
.tm-panel-navigation { /* left block panels */
}
/* Footer Block semantics
========================================================================== */
/*
* tm-container-extra is the traditional old right blocks. In this theme
* this refers to the FOOTER blocks on the page.
*/
.tm-container-extra { /* right blocks - which are the footer blocks in tihs theme */
}
.tm-container-extra h3 {
text-align:left;
}
/* Headlines - used by headlines autotag
========================================================================== */
.headlines p {
margin:0;
padding-bottom:5px;
}
/* Article semantics
========================================================================== */
.tm-article { /* article wrapper */
}
.tm-article-title {
line-height:28px;
margin-bottom: 10px !important;
font-weight:700;
}
/* remove comment below to make story subtitle italic */
.tm-italic{
font-style:italic;
}
.tm-article-footer {
}
.tm-featured-article { /* wrapper for featured story */
}
.tm-archived-article { /* wrapper for archived story */
}
/* Article Meta Data semantics
========================================================================== */
.tm-article-meta {
padding-left:0;
margin-left:0;
}
.tm-article-meta li {
display: inline;
list-style-type: none;
padding-right:5px;
padding-left:5px;
border-right: 1px solid #999999;
}
.tm-article-meta li:first-child {
padding-left:0;
}
.tm-article-meta li:last-child {
border:none;
}
p.tm-article-meta {
margin-top:0px;
}
.tm-meta-icon {
color:#999;
}
.tm-article-links a { /* used at the footer of story */
color: #0096d7;
}
.tm-article-links a, links a:hover {
text-decoration: none;
}
/* Comment semantics
========================================================================== */
.tm-comment { /* wrapper for each comment */
border-bottom: 1px solid #f5f5f5;
margin-bottom: 10px;
padding-bottom: 10px;
}
.tm-comment-header {
}
.tm-comment-avatar {
}
.tm-comment-title {
}
.tm-comment-meta {
}
.tm-comment-body {
}
.tm-comment:last-child {
border-bottom: medium none;
margin-bottom: 0;
padding-bottom: 0;
}
.tm-comment
.tm-comment-title,
.tm-comment .tm-comment-meta,
.tm-comment .tm-comment-body {
margin: 0;
}
.tm-comment .tm-comment-title {
font-size: 13px;
font-weight: 500;
line-height: 15px;
}
.tm-comment .tm-comment-body {
margin-top: 5px;
padding-left: 0;
}
.comment-edit { /* style for last edited by tag on comment */
font-style: italic;
padding-top:5px;
font-size:.8em;
}
/*
* tm-table is the class for all tables
*/
.tm-table {
}
/* block bottom in footer.thtml - right before rightblocks - controls the large footer */
#tm-block-bottom {
color:#888;
padding:15px 0 25px;
border-top:1px solid #000;
border-bottom:1px solid #323334;
background:#2D2E2F;
background:-moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 15px),
#2D2E2F;background:-webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 15px),
#2D2E2F;background:-o-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 15px),
#2D2E2F;box-shadow:0 -1px 0 #fff
}
#tm-block-bottom a:hover {
color:#CCC
}
#tm-block-bottom .module-title {
color:#CCC
}
#tm-block-bottom .uk-panel-title {
color: #ccc;
}
/* sets color for bottom block links */
#tm-block-bottom a {
color:#888;
}
/* bottom footer that holds navigation menu or copyright */
#tm-block-footer {
background: #252525;
border-top:1px solid #232425
}
/* admin nav bar */
.tm-admin-navbar {
}
/* responsive video styles */
.video {
height: 0;
padding-top: 25px;
padding-bottom: 67.5%;
margin-bottom: 10px;
position: relative;
overflow: hidden;
}
.video.widescreen {
padding-bottom: 56.34%;
}
.video.vimeo {
padding-top: 0;
}
.video embed, .video iframe, .video object, .video video {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
}
/* used for text based editors */
.texteditor {
width:100%;
font-family:courier new !important;
font-size:1.2em !important;
}
/* scroll widget */
#scroll-to-top {
display: none;
position: fixed;
text-align: center;
right: 10px;
bottom: 0;
line-height: 35px;
width: 35px;
height: 35px;
z-index: 999999;
color: #fff;
background: #009dd8;
overflow: hidden;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.05);
box-shadow: inset 0 0 1px rgba(255,255,255,0.05);
}
#scroll-to-top:hover {
background-color : #00aff2;
text-decoration : none;
}
#scroll-to-top i {
color : #fff;
}
/* tab slider widget overrides */
.tab-slider {
margin: 0 auto;
padding-bottom: 15px;
}
/* authentication buttons */
.login-social {
width: 200px;
margin: 5px;
position: relative;
padding-left: 44px;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-shadow: none;
}
.login-social-icon {
width: 50px;
line-height: 36px;
margin: 0;
padding: 4px !important;
text-shadow: none;
}
.login-social i {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 32px;
line-height: 30px;
text-align: center;
border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.login-facebook {
color: #fff;
background: #3b5998;
border-color: rgba(0, 0, 0, 0.2);
}
.login-facebook:hover,
.login-facebook:focus,
.login-facebook:active,
.login-facebook.active {
color: #fff;
background: #30487b;
border-color: rgba(0, 0, 0, 0.2);
}
.login-twitter {
color: #fff;
background: #55acee;
border-color: rgba(0, 0, 0, 0.2);
}
.login-twitter:hover,
.login-twitter:focus,
.login-twitter:active,
.login-twitter.active {
color: #fff;
background: #309aea;
border-color: rgba(0, 0, 0, 0.2);
}
.login-microsoft {
color: #fff;
background: #2672ec;
border-color: rgba(0, 0, 0, 0.2);
}
.login-microsoft:hover,
.login-microsoft:focus,
.login-microsoft:active,
.login-microsoft.active {
color: #fff;
background: #135ed6;
border-color: rgba(0, 0, 0, 0.2);
}
.uk-icon-microsoft:before {
content: "\f17a";
}
.login-linkedin {
color: #fff;
background: #007bb6;
border-color: rgba(0, 0, 0, 0.2);
}
.login-linkedin:hover,
.login-linkedin:focus,
.login-linkedin:active,
.login-linkedin.active {
color: #fff;
background: #005f8d;
border-color: rgba(0, 0, 0, 0.2);
}
.login-github {
color: #fff;
background: #444;
border-color: rgba(0, 0, 0, 0.2);
}
.login-github:hover,
.login-github:focus,
.login-github:active,
.login-github.active {
color: #fff;
background: #303030;
border-color: rgba(0, 0, 0, 0.2);
}
.login-google {
color: #fff;
background: #dd4b39;
border-color: rgba(0, 0, 0, 0.2);
}
.login-google:hover,
.login-google:focus,
.login-google:active,
.login-google.active {
color: #fff;
background: #ca3523;
border-color: rgba(0, 0, 0, 0.2);
}
.uk-icon-google:before {
content: "\f0d5";
}
/* social share */
.uk-button.uk-button-facebook,
.uk-icon-button.uk-button-facebook {
background-color: #3b5998;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-google-plus,
.uk-icon-button.uk-button-google-plus {
background-color: #dd4b39;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-twitter,
.uk-icon-button.uk-button-twitter {
background-color: #55acee;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-vk {
background-color: #537599;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-ok {
background-color: #f2720c;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-livejournal {
background-color: #000;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-mail-ru {
background-color: #168de2;
color: #f7aa21;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-linkedin,
.uk-icon-button.uk-button-linkedin,
.uk-button.uk-button-linkedin-square,
.uk-icon-button.uk-button-linkedin-square {
background-color: #0077b5;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-reddit,
.uk-icon-button.uk-button-reddit {
background-color: #0077b5;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-envelope {
background-color: #0077b5;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-print {
background-color: #0077b5;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-pinterest {
background-color: #dd4b39;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-pinterest-p,
.uk-icon-button.uk-button-pinterest-p {
background-color: #dd4b39;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-youtube,
.uk-icon-button.uk-button-youtube {
background-color: #000;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-button.uk-button-github,
.uk-icon-button.uk-button-github {
background-color: #323131;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-icon-button.uk-button-instagram {
background-color: #2E5E86;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-icon-button.uk-button-vimeo {
background-color: #1AB7EA;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-icon-button.uk-button-flickr {
background-color: #000;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-icon-button.uk-button-foursquare {
background-color: #F94877;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-icon-button.uk-button-yelp {
background-color: #DB292F;
color: #fff;
background-image: none;
text-shadow: none;
}
.uk-icon-button.uk-button-dribbble {
background-color: #C32361;
color: #fff;
background-image: none;
text-shadow: none;
}
/* Follow Me Button semantics
========================================================================== */
.tm-follow-icon {
border:none;
}
.tm-follow-icon:hover {
}
/* Follow Us Button semantics - used in footer block
========================================================================== */
.tm-follow {
color:#555;
}
.tm-follow:hover {
color:#00AFF2 !important;
}
/* CMS theme uses SmartMenus for horizontal cascading menus */
/* start sm-core-css.css */
/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
-------------------------------------------------------------------------------------------*/
.sm{position:relative;z-index:1000;}
.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right;}
.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0;}
.sm ul{display:none;}
.sm li,.sm a{position:relative;}
.sm a{display:block;}
.sm a.disabled{cursor:not-allowed;}
.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden;}
.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
/* end sm-core-css.css */
/* smart menus styles to integrate with uikit navbar */
.sm-uikit ul {
position: absolute;
width: 12em;
}
.sm-uikit li {
float: left;
}
.sm-uikit.sm-rtl li {
float: right;
}
.sm-uikit ul li, .sm-uikit.sm-rtl ul li, .sm-uikit.sm-vertical li {
float: none;
}
.sm-uikit a {
white-space: nowrap;
}
.sm-uikit ul a, .sm-uikit.sm-vertical a {
white-space: normal;
}
.sm-uikit .sm-nowrap > li > a, .sm-uikit .sm-nowrap > li > :not(ul) a {
white-space: nowrap;
}
.sm-uikit {
padding: 0 10px;
}
.sm-uikit a, .sm-uikit a:hover, .sm-uikit a:focus, .sm-uikit a:active, .sm-uikit a.highlighted {
padding: 0px 15px;
}
.sm-uikit a.disabled {
color: #bbbbbb;
}
.sm-uikit a.has-submenu {
padding-right: 24px;
}
.sm-uikit a span.sub-arrow {
position: absolute;
top: 50%;
left: auto;
overflow: hidden;
font: bold 16px/34px monospace !important;
text-align: center;
text-shadow: none;
margin-top: -2px;
right: 12px;
width: 0;
height: 0;
border-width: 4px;
border-style: solid dashed dashed dashed;
border-color: #000 transparent transparent transparent;
background: transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.sm-uikit a.highlighted span.sub-arrow:before {
display: none;
}
.sm-uikit li {
border-top: 0;
}
.sm-uikit > li > ul:after {
top: -16px;
left: 31px;
border-width: 8px;
/*border-color: transparent transparent #bbb transparent;*/
}
.sm-uikit ul {
/* uncomment if you want border around dropdown */
/* border: 1px solid #bbbbbb; */
padding: 5px 0;
-webkit-border-radius: 5px !important;
-moz-border-radius: 5px !important;
-ms-border-radius: 5px !important;
-o-border-radius: 5px !important;
border-radius: 5px !important;
-webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
}
/*attributes for the dropdown menus */
.sm-uikit ul a, .sm-uikit ul a:hover, .sm-uikit ul a:focus, .sm-uikit ul a:active, .sm-uikit ul a.highlighted {
border: 0 !important;
padding: 10px 20px;
}
.sm-uikit ul a.disabled {
background: transparent;
color: #cccccc;
}
.sm-uikit ul a.has-submenu {
padding-right: 20px;
}
.sm-uikit ul a span.sub-arrow {
right: 8px;
top: 50%;
margin-top: -5px;
border-width: 5px;
border-style: dashed dashed dashed solid;
border-color: transparent transparent transparent #fff;
}
.sm-uikit span.scroll-up,
.sm-uikit span.scroll-down {
position: absolute;
display: none;
visibility: hidden;
overflow: hidden;
background: white;
height: 20px;
}
.sm-uikit span.scroll-up:hover,
.sm-uikit span.scroll-down:hover {
background: #eeeeee;
}
.sm-uikit span.scroll-up:hover span.scroll-up-arrow, .sm-uikit span.scroll-up:hover span.scroll-down-arrow {
border-color: transparent transparent #444 transparent;
}
.sm-uikit span.scroll-down:hover span.scroll-down-arrow {
border-color: #444 transparent transparent transparent;
}
.sm-uikit span.scroll-up-arrow, .sm-uikit span.scroll-down-arrow {
position: absolute;
top: 0;
left: 50%;
margin-left: -6px;
width: 0;
height: 0;
overflow: hidden;
border-width: 6px;
border-style: dashed dashed solid dashed;
border-color: transparent transparent #555555 transparent;
}
.sm-uikit span.scroll-down-arrow {
top: 8px;
border-style: solid dashed dashed dashed;
border-color: #555555 transparent transparent transparent;
}
.sm-uikit.sm-rtl a.has-submenu {
padding-right: 12px;
padding-left: 24px;
}
.sm-uikit.sm-rtl a span.sub-arrow {
right: auto;
left: 12px;
}
.sm-uikit.sm-rtl.sm-vertical a.has-submenu {
padding: 10px 20px;
}
.sm-uikit.sm-rtl.sm-vertical a span.sub-arrow {
right: auto;
left: 8px;
border-style: dashed solid dashed dashed;
border-color: transparent #fff transparent transparent;
}
.sm-uikit.sm-rtl > li > ul:before {
left: auto;
right: 30px;
}
.sm-uikit.sm-rtl > li > ul:after {
left: auto;
right: 31px;
}
.sm-uikit.sm-rtl ul a.has-submenu {
padding: 10px 20px !important;
}
.sm-uikit.sm-rtl ul a span.sub-arrow {
right: auto;
left: 8px;
border-style: dashed solid dashed dashed;
border-color: transparent #fff transparent transparent;
}
.mega-menu {
color:#fff;
}
/* end sm-cms.css */
/* horizontal cascading menu CSS - left alignment is default */
.menu-horizontal-cascading,
.menu-horizontal-cascading * {
margin: 0;
padding: 0;
list-style: none;
}
/* general style for menu */
.menu-horizontal-cascading {
width: 100%;
height: auto;
z-index: 500;
background: #151515 url(images/menu/menu_bg.gif) repeat;
}
/* general link styles */
.menu-horizontal-cascading a {
text-decoration: none;
white-space: nowrap;
display: block;
float: left;
line-height: 2.2em;
font-weight: 700;
height: 2.2em;
font-size: 1em;
padding: 0 1.2em;
color: #ccc;
/*Top Menu Text*/
}
/* top level UL */
.menu-horizontal-cascading ul {
position: absolute;
top: -999em;
width: 14.74em;
}
/* top level li elements */
.menu-horizontal-cascading li {
list-style: none;
position: relative;
display: block;
margin: 0;
padding: 0;
float: left;
/*Top Menu alignment*/
}
/* second level UL elements */
.menu-horizontal-cascading ul ul {
border-left: 1px solid #333;
border-right: 1px solid #000;
}
/* second level LI elements */
.menu-horizontal-cascading li li {
background: none;
margin: 0;
position: relative;
float: none;
width: 100%;
background: #151515;
border-top: 1px solid #333333;
/*Sub Menu Highlight*/
border-bottom: 1px solid #000000;
/*Sub Menu Shadow*/
}
/* second level LI element href hover */
.menu-horizontal-cascading li li a:hover {
background: none;