universal 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,84 +1,17 @@
1
- form {
2
- margin-bottom: 20px;
3
- }
4
-
5
- .label {
6
- font-family: "Roboto", Helvetica, Arial, sans-serif;
7
- font-weight: normal;
8
- text-transform: uppercase;
9
- letter-spacing: 0.08em;
10
- }
11
-
12
- label {
13
- font-weight: normal;
14
- }
15
-
16
- label > span {
17
- float: left;
18
- }
19
-
20
- .field {
21
- -webkit-box-shadow: none;
22
- box-shadow: none;
23
- border-radius: 0;
24
- }
25
-
26
- .field:focus {
27
- border-color: #467fbf;
28
- outline: 0;
29
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);
30
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);
31
- }
32
-
33
- .field.StripeElement--focus {
34
- border-color: #F99A52;
35
- }
36
-
37
- button {
38
- color: #467fbf;
39
- background-color: #ffffff;
40
- border-color: #467fbf;
41
- }
42
-
43
- button:focus {
44
- }
45
-
46
- button:active {
47
- background: #467fbf;
48
- color: #ffffff;
49
- border-color: #467fbf;
50
- }
51
-
52
- .outcome {
53
- float: left;
54
- width: 100%;
55
- padding-top: 8px;
56
- min-height: 20px;
57
- text-align: center;
58
- }
59
-
60
- .success, .error {
61
- display: none;
62
- font-size: 13px;
63
- }
64
-
65
- .success.visible, .error.visible {
66
- display: inline;
67
- }
68
-
69
- .error {
70
- color: #E4584C;
71
- }
72
-
73
- .success {
74
- color: #F8B563;
75
- }
76
-
77
- .success .token {
78
- font-weight: 500;
79
- font-size: 13px;
80
- }
81
-
82
- .no-padding {
83
- padding: 0;
84
- }
1
+ form{margin-bottom:20px;}
2
+ .label{font-family:"Roboto", Helvetica, Arial, sans-serif;font-weight:normal;text-transform:uppercase;letter-spacing:0.08em;}
3
+ label{font-weight:normal;}
4
+ label > span{float:left;}
5
+ .field{-webkit-box-shadow:none;box-shadow:none;border-radius:0;}
6
+ .field:focus{border-color:#467fbf;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);}
7
+ .field.StripeElement--focus{border-color:#F99A52;}
8
+ button{color:#467fbf;background-color:#ffffff;border-color:#467fbf;}
9
+ button:focus{}
10
+ button:active{background:#467fbf;color:#ffffff;border-color:#467fbf;}
11
+ .outcome{float:left;width:100%;padding-top:8px;min-height:20px;text-align:center;}
12
+ .success, .error{display:none;font-size:13px;}
13
+ .success.visible, .error.visible{display:inline;}
14
+ .error{color:#E4584C;}
15
+ .success{color:#F8B563;}
16
+ .success .token{font-weight:500;font-size:13px;}
17
+ .no-padding{padding:0;}
@@ -1,71 +1,12 @@
1
- /*
2
- * Core Owl Carousel CSS File
3
- * v1.3.2
4
- */
5
-
6
- /* clearfix */
7
- .owl-carousel .owl-wrapper:after {
8
- content: ".";
9
- display: block;
10
- clear: both;
11
- visibility: hidden;
12
- line-height: 0;
13
- height: 0;
14
- }
15
- /* display none until init */
16
- .owl-carousel{
17
- display: none;
18
- position: relative;
19
- width: 100%;
20
- -ms-touch-action: pan-y;
21
- }
22
- .owl-carousel .owl-wrapper{
23
- display: none;
24
- position: relative;
25
- -webkit-transform: translate3d(0px, 0px, 0px);
26
- }
27
- .owl-carousel .owl-wrapper-outer{
28
- overflow: hidden;
29
- position: relative;
30
- width: 100%;
31
- }
32
- .owl-carousel .owl-wrapper-outer.autoHeight{
33
- -webkit-transition: height 500ms ease-in-out;
34
- -moz-transition: height 500ms ease-in-out;
35
- -ms-transition: height 500ms ease-in-out;
36
- -o-transition: height 500ms ease-in-out;
37
- transition: height 500ms ease-in-out;
38
- }
39
-
40
- .owl-carousel .owl-item{
41
- float: left;
42
- }
43
- .owl-controls .owl-page,
44
- .owl-controls .owl-buttons div{
45
- cursor: pointer;
46
- }
47
- .owl-controls {
48
- -webkit-user-select: none;
49
- -khtml-user-select: none;
50
- -moz-user-select: none;
51
- -ms-user-select: none;
52
- user-select: none;
53
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
54
- }
55
-
56
- /* mouse grab icon */
57
- .grabbing {
58
- cursor:url(grabbing.png) 8 8, move;
59
- }
60
-
61
- /* fix */
62
- .owl-carousel .owl-wrapper,
63
- .owl-carousel .owl-item{
64
- -webkit-backface-visibility: hidden;
65
- -moz-backface-visibility: hidden;
66
- -ms-backface-visibility: hidden;
67
- -webkit-transform: translate3d(0,0,0);
68
- -moz-transform: translate3d(0,0,0);
69
- -ms-transform: translate3d(0,0,0);
70
- }
71
-
1
+ .owl-carousel .owl-wrapper:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
2
+ .owl-carousel{display:none;position:relative;width:100%;-ms-touch-action:pan-y;}
3
+ .owl-carousel .owl-wrapper{display:none;position:relative;-webkit-transform:translate3d(0px, 0px, 0px);}
4
+ .owl-carousel .owl-wrapper-outer{overflow:hidden;position:relative;width:100%;}
5
+ .owl-carousel .owl-wrapper-outer.autoHeight{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out;}
6
+ .owl-carousel .owl-item{float:left;}
7
+ .owl-controls .owl-page,
8
+ .owl-controls .owl-buttons div{cursor:pointer;}
9
+ .owl-controls{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
10
+ .grabbing{cursor:url(grabbing.png) 8 8, move;}
11
+ .owl-carousel .owl-wrapper,
12
+ .owl-carousel .owl-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);}
@@ -1,69 +1,9 @@
1
- /*
2
- * Owl Carousel Owl Demo Theme
3
- * v1.3.2
4
- */
5
-
6
- .owl-theme .owl-controls{
7
- margin-top: 10px;
8
- text-align: center;
9
- }
10
-
11
- /* Styling Next and Prev buttons */
12
-
13
- .owl-theme .owl-controls .owl-buttons div{
14
- display: inline-block;
15
- zoom: 1;
16
- *display: inline;/*IE7 life-saver */
17
- }
18
- /* Clickable class fix problem with hover on touch devices */
19
- /* Use it for non-touch hover action */
20
- .owl-theme .owl-controls.clickable .owl-buttons div:hover{
21
- filter: Alpha(Opacity=100);/*IE7 fix*/
22
- opacity: 1;
23
- text-decoration: none;
24
- }
25
-
26
- /* Styling Pagination*/
27
-
28
- .owl-theme .owl-controls .owl-page{
29
- display: inline-block;
30
- zoom: 1;
31
- *display: inline;/*IE7 life-saver */
32
- }
33
- .owl-theme .owl-controls .owl-page span{
34
- display: block;
35
- width: 12px;
36
- height: 12px;
37
- margin: 5px 7px;
38
- filter: Alpha(Opacity=50);/*IE7 fix*/
39
- opacity: 0.5;
40
- -webkit-border-radius: 20px;
41
- -moz-border-radius: 20px;
42
- border-radius: 20px;
43
- background: #869791;
44
- }
45
-
46
- .owl-theme .owl-controls .owl-page.active span,
47
- .owl-theme .owl-controls.clickable .owl-page:hover span{
48
- filter: Alpha(Opacity=100);/*IE7 fix*/
49
- opacity: 1;
50
- }
51
-
52
- /* If PaginationNumbers is true */
53
-
54
- .owl-theme .owl-controls .owl-page span.owl-numbers{
55
- height: auto;
56
- width: auto;
57
- color: #FFF;
58
- padding: 2px 10px;
59
- font-size: 12px;
60
- -webkit-border-radius: 30px;
61
- -moz-border-radius: 30px;
62
- border-radius: 30px;
63
- }
64
-
65
- /* preloading images */
66
- .owl-item.loading{
67
- min-height: 150px;
68
- background: url(AjaxLoader.gif) no-repeat center center
69
- }
1
+ .owl-theme .owl-controls{margin-top:10px;text-align:center;}
2
+ .owl-theme .owl-controls .owl-buttons div{display:inline-block;zoom:1;*display:inline;}
3
+ .owl-theme .owl-controls.clickable .owl-buttons div:hover{filter:Alpha(Opacity=100);opacity:1;text-decoration:none;}
4
+ .owl-theme .owl-controls .owl-page{display:inline-block;zoom:1;*display:inline;}
5
+ .owl-theme .owl-controls .owl-page span{display:block;width:12px;height:12px;margin:5px 7px;filter:Alpha(Opacity=50);opacity:0.5;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background:#869791;}
6
+ .owl-theme .owl-controls .owl-page.active span,
7
+ .owl-theme .owl-controls.clickable .owl-page:hover span{filter:Alpha(Opacity=100);opacity:1;}
8
+ .owl-theme .owl-controls .owl-page span.owl-numbers{height:auto;width:auto;color:#FFF;padding:2px 10px;font-size:12px;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;}
9
+ .owl-item.loading{min-height:150px;background:url(AjaxLoader.gif) no-repeat center center}
@@ -3,569 +3,159 @@
3
3
  .navbar:before,
4
4
  .navbar:after,
5
5
  .navbar-header:before,
6
- .navbar-header:after {
7
- content: " ";
8
- display: table;
9
- }
6
+ .navbar-header:after{content:" ";display:table;}
10
7
  .clearfix:after,
11
8
  .navbar:after,
12
- .navbar-header:after {
13
- clear: both;
14
- }
15
- .center-block {
16
- display: block;
17
- margin-left: auto;
18
- margin-right: auto;
19
- }
20
- .pull-right {
21
- float: right !important;
22
- }
23
- .pull-left {
24
- float: left !important;
25
- }
26
- .hide {
27
- display: none !important;
28
- }
29
- .show {
30
- display: block !important;
31
- }
32
- .invisible {
33
- visibility: hidden;
34
- }
35
- .text-hide {
36
- font: 0/0 a;
37
- color: transparent;
38
- text-shadow: none;
39
- background-color: transparent;
40
- border: 0;
41
- }
42
- .hidden {
43
- display: none !important;
44
- visibility: hidden !important;
45
- }
46
- .affix {
47
- position: fixed;
48
- -webkit-transform: translate3d(0, 0, 0);
49
- transform: translate3d(0, 0, 0);
50
- }
51
- /* general styles */
9
+ .navbar-header:after{clear:both;}
10
+ .center-block{display:block;margin-left:auto;margin-right:auto;}
11
+ .pull-right{float:right !important;}
12
+ .pull-left{float:left !important;}
13
+ .hide{display:none !important;}
14
+ .show{display:block !important;}
15
+ .invisible{visibility:hidden;}
16
+ .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
17
+ .hidden{display:none !important;visibility:hidden !important;}
18
+ .affix{position:fixed;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}
52
19
  a,
53
- button {
54
- -webkit-transition: all 0.2s ease-out;
55
- -moz-transition: all 0.2s ease-out;
56
- transition: all 0.2s ease-out;
57
- }
20
+ button{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
58
21
  a i.fa,
59
- button i.fa {
60
- margin: 0 5px;
61
- }
62
- .clickable {
63
- cursor: pointer !important;
64
- }
65
- .required {
66
- color: #467fbf;
67
- }
68
- .accent {
69
- color: #467fbf;
70
- }
71
- .text-uppercase {
72
- text-transform: uppercase;
73
- letter-spacing: 0.08em;
74
- }
75
- @media (max-width: 991px) {
76
- .text-center-sm {
77
- text-align: center;
78
- }
79
- }
80
- p.lead {
81
- margin-bottom: 40px;
82
- }
22
+ button i.fa{margin:0 5px;}
23
+ .clickable{cursor:pointer !important;}
24
+ .required{color:#467fbf;}
25
+ .accent{color:#467fbf;}
26
+ .text-uppercase{text-transform:uppercase;letter-spacing:0.08em;}
27
+ @media (max-width:991px){.text-center-sm{text-align:center;}
28
+ }
29
+ p.lead{margin-bottom:40px;}
83
30
  section,
84
- div.section {
85
- margin-bottom: 40px;
86
- }
87
- .no-mb {
88
- margin-bottom: 0 !important;
89
- }
90
- .mb-small {
91
- margin-bottom: 20px !important;
92
- }
93
- .heading {
94
- margin-bottom: 40px;
95
- }
31
+ div.section{margin-bottom:40px;}
32
+ .no-mb{margin-bottom:0 !important;}
33
+ .mb-small{margin-bottom:20px !important;}
34
+ .heading{margin-bottom:40px;}
96
35
  .heading h1,
97
36
  .heading h2,
98
37
  .heading h3,
99
38
  .heading h4,
100
- .heading h5 {
101
- display: inline-block;
102
- border-bottom: solid 5px #467fbf;
103
- line-height: 1.1;
104
- margin-bottom: 0;
105
- padding-bottom: 10px;
106
- vertical-align: middle;
107
- text-transform: uppercase;
108
- letter-spacing: 0.06em;
109
- }
39
+ .heading h5{display:inline-block;border-bottom:solid 5px #467fbf;line-height:1.1;margin-bottom:0;padding-bottom:10px;vertical-align:middle;text-transform:uppercase;letter-spacing:0.06em;}
110
40
  .heading h1 i.fa,
111
41
  .heading h2 i.fa,
112
42
  .heading h3 i.fa,
113
43
  .heading h4 i.fa,
114
- .heading h5 i.fa {
115
- display: inline-block;
116
- background: #467fbf;
117
- width: 30px;
118
- height: 30px;
119
- vertical-align: middle;
120
- text-align: center;
121
- color: #fff;
122
- font-size: 12px;
123
- line-height: 30px;
124
- border-radius: 15px;
125
- }
126
- .icon {
127
- display: inline-block;
128
- width: 80px;
129
- height: 80px;
130
- color: #fff;
131
- line-height: 80px;
132
- border-radius: 40px;
133
- border: solid 1px #fff;
134
- font-size: 20px;
135
- }
136
- .icon.icon-lg {
137
- font-size: 30px;
138
- border-width: 2px;
139
- }
140
- .ul-icons {
141
- padding-left: 10px;
142
- }
143
- .ul-icons li {
144
- list-style-type: none;
145
- line-height: 20px;
146
- margin-bottom: 20px;
147
- }
148
- .ul-icons li i {
149
- width: 20px;
150
- height: 20px;
151
- background: #467fbf;
152
- color: #fff;
153
- text-align: center;
154
- border-radius: 10px;
155
- line-height: 20px;
156
- margin-right: 10px;
157
- }
158
- ul.list-style-none {
159
- list-style: none;
160
- }
44
+ .heading h5 i.fa{display:inline-block;background:#467fbf;width:30px;height:30px;vertical-align:middle;text-align:center;color:#fff;font-size:12px;line-height:30px;border-radius:15px;}
45
+ .icon{display:inline-block;width:80px;height:80px;color:#fff;line-height:80px;border-radius:40px;border:solid 1px #fff;font-size:20px;}
46
+ .icon.icon-lg{font-size:30px;border-width:2px;}
47
+ .ul-icons{padding-left:10px;}
48
+ .ul-icons li{list-style-type:none;line-height:20px;margin-bottom:20px;}
49
+ .ul-icons li i{width:20px;height:20px;background:#467fbf;color:#fff;text-align:center;border-radius:10px;line-height:20px;margin-right:10px;}
50
+ ul.list-style-none{list-style:none;}
161
51
  #text-page h1,
162
52
  #text-page h2,
163
- #text-page h3 {
164
- font-weight: 700;
165
- }
166
- #error-page {
167
- text-align: center;
168
- margin-top: 40px;
169
- margin-bottom: 100px;
170
- }
171
- #error-page h4 {
172
- margin-bottom: 40px;
173
- }
174
- #error-page p.buttons {
175
- margin-top: 40px;
176
- }
177
- .pages-listing .item {
178
- text-align: center;
179
- }
180
- .pages-listing .item h3 {
181
- font-size: 18px;
182
- text-transform: uppercase;
183
- margin-bottom: 20px;
184
- letter-spacing: 0.08em;
185
- }
186
- .pages-listing .item h3 a {
187
- color: #555555;
188
- }
189
- .pages-listing .item .text {
190
- margin-bottom: 20px;
191
- }
192
- .pages-listing .item .text p {
193
- color: #999999;
194
- font-size: 12px;
195
- margin-bottom: 20px;
196
- }
197
- .banner {
198
- margin-bottom: 30px;
199
- text-align: center;
200
- }
201
- .banner img {
202
- margin: 0 auto;
203
- }
204
- .banner a:hover img {
205
- opacity: 0.8;
206
- filter: alpha(opacity=80);
207
- -webkit-transition: all 0.2s ease-out;
208
- -moz-transition: all 0.2s ease-out;
209
- transition: all 0.2s ease-out;
210
- }
211
- .pages {
212
- text-align: center;
213
- }
214
- .pages .loadMore {
215
- text-align: center;
216
- }
217
- .pages .pagination {
218
- text-align: center;
219
- }
220
- .features-buttons button {
221
- margin-bottom: 20px;
222
- }
223
- @media (min-width: 1300px) {
224
- body.boxed {
225
- background: url(http://subtlepatterns.com/patterns/subtle_zebra_3d.png);
226
- }
227
- body.boxed #all {
228
- position: relative;
229
- background: #fff;
230
- width: 1200px;
231
- margin: 0 auto;
232
- overflow: hidden;
233
- -webkit-box-shadow: 0 0 5px #cccccc;
234
- box-shadow: 0 0 5px #cccccc;
235
- }
236
- }
237
- #top {
238
- background: #555555;
239
- color: #eeeeee;
240
- padding: 10px 0;
241
- }
242
- #top p {
243
- margin: 0;
244
- font-size: 12px;
245
- }
246
- #top .social {
247
- float: right;
248
- text-align: right;
249
- }
250
- #top .social a {
251
- color: #999999;
252
- display: inline-block;
253
- width: 24px;
254
- height: 24px;
255
- border-radius: 12px;
256
- line-height: 20px;
257
- font-size: 12px;
258
- text-align: center;
259
- vertical-align: bottom;
260
- }
261
- #top .social a:hover {
262
- color: #fff;
263
- }
264
- #top .social a:hover.linkedin {
265
- background-color: #0e76a8;
266
- }
267
- #top .social a:hover.facebook {
268
- background-color: #4460ae;
269
- }
270
- #top .social a:hover.gplus {
271
- background-color: #c21f25;
272
- }
273
- #top .social a:hover.twitter {
274
- background-color: #3cf;
275
- }
276
- #top .social a:hover.instagram {
277
- background-color: #cd4378;
278
- }
279
- #top .social a:hover.email {
280
- background-color: #4a7f45;
281
- }
282
- #top .login {
283
- float: right;
284
- }
285
- #top .login a {
286
- font-size: 12px;
287
- color: #eeeeee;
288
- margin-right: 15px;
289
- text-decoration: none;
290
- text-transform: uppercase;
291
- font-weight: 700;
292
- letter-spacing: 0.10em;
293
- }
294
- @media (max-width: 767px) {
295
- #top .login {
296
- float: left;
297
- }
298
- }
299
- #top.light {
300
- background: #fff;
301
- color: #999999;
302
- border-bottom: solid 1px #eeeeee;
303
- }
304
- #top.light .login a {
305
- color: #555555;
306
- }
307
- .navbar {
308
- border: none;
309
- }
310
- .navbar ul.nav > li > a {
311
- text-transform: uppercase;
312
- text-decoration: underline;
313
- font-weight: bold;
314
- letter-spacing: 0.08em;
315
- border-top: solid 5px transparent;
316
- }
317
- .navbar ul.nav > li > a:hover {
318
- border-top: solid 5px #467fbf;
319
- }
53
+ #text-page h3{font-weight:700;}
54
+ #error-page{text-align:center;margin-top:40px;margin-bottom:100px;}
55
+ #error-page h4{margin-bottom:40px;}
56
+ #error-page p.buttons{margin-top:40px;}
57
+ .pages-listing .item{text-align:center;}
58
+ .pages-listing .item h3{font-size:18px;text-transform:uppercase;margin-bottom:20px;letter-spacing:0.08em;}
59
+ .pages-listing .item h3 a{color:#555555;}
60
+ .pages-listing .item .text{margin-bottom:20px;}
61
+ .pages-listing .item .text p{color:#999999;font-size:12px;margin-bottom:20px;}
62
+ .banner{margin-bottom:30px;text-align:center;}
63
+ .banner img{margin:0 auto;}
64
+ .banner a:hover img{opacity:0.8;filter:alpha(opacity=80);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
65
+ .pages{text-align:center;}
66
+ .pages .loadMore{text-align:center;}
67
+ .pages .pagination{text-align:center;}
68
+ .features-buttons button{margin-bottom:20px;}
69
+ @media (min-width:1300px){body.boxed{background:url(http://subtlepatterns.com/patterns/subtle_zebra_3d.png);}
70
+ body.boxed #all{position:relative;background:#fff;width:1200px;margin:0 auto;overflow:hidden;-webkit-box-shadow:0 0 5px #cccccc;box-shadow:0 0 5px #cccccc;}
71
+ }
72
+ #top{background:#555555;color:#eeeeee;padding:10px 0;}
73
+ #top p{margin:0;font-size:12px;}
74
+ #top .social{float:right;text-align:right;}
75
+ #top .social a{color:#999999;display:inline-block;width:24px;height:24px;border-radius:12px;line-height:20px;font-size:12px;text-align:center;vertical-align:bottom;}
76
+ #top .social a:hover{color:#fff;}
77
+ #top .social a:hover.linkedin{background-color:#0e76a8;}
78
+ #top .social a:hover.facebook{background-color:#4460ae;}
79
+ #top .social a:hover.gplus{background-color:#c21f25;}
80
+ #top .social a:hover.twitter{background-color:#3cf;}
81
+ #top .social a:hover.instagram{background-color:#cd4378;}
82
+ #top .social a:hover.email{background-color:#4a7f45;}
83
+ #top .login{float:right;}
84
+ #top .login a{font-size:12px;color:#eeeeee;margin-right:15px;text-decoration:none;text-transform:uppercase;font-weight:700;letter-spacing:0.10em;}
85
+ @media (max-width:767px){#top .login{float:left;}
86
+ }
87
+ #top.light{background:#fff;color:#999999;border-bottom:solid 1px #eeeeee;}
88
+ #top.light .login a{color:#555555;}
89
+ .navbar{border:none;}
90
+ .navbar ul.nav > li > a{text-transform:uppercase;text-decoration:underline;font-weight:bold;letter-spacing:0.08em;border-top:solid 5px transparent;}
91
+ .navbar ul.nav > li > a:hover{border-top:solid 5px #467fbf;}
320
92
  .navbar ul.nav > li.active > a,
321
- .navbar ul.nav > li.open > a {
322
- text-decoration: none !important;
323
- border-top: solid 5px #294d76;
324
- }
325
- @media (max-width: 768px) {
326
- .navbar ul.nav > li.active > a,
327
- .navbar ul.nav > li.open > a {
328
- border-top-color: transparent;
329
- }
330
- .navbar ul.nav > li > a:hover {
331
- border-top-color: transparent;
332
- }
333
- }
334
- .navbar.navbar-light ul.nav > li.active > a {
335
- border-top: solid 5px #294d76;
336
- background: #fff !important;
337
- color: #555555 !important;
338
- }
339
- .navbar.navbar-light ul.nav > li.active > a:hover {
340
- border-top: solid 5px #294d76;
93
+ .navbar ul.nav > li.open > a{text-decoration:none !important;border-top:solid 5px #294d76;}
94
+ @media (max-width:768px){.navbar ul.nav > li.active > a,
95
+ .navbar ul.nav > li.open > a{border-top-color:transparent;}
96
+ .navbar ul.nav > li > a:hover{border-top-color:transparent;}
341
97
  }
98
+ .navbar.navbar-light ul.nav > li.active > a{border-top:solid 5px #294d76;background:#fff !important;color:#555555 !important;}
99
+ .navbar.navbar-light ul.nav > li.active > a:hover{border-top:solid 5px #294d76;}
342
100
  .navbar.navbar-light ul.nav > li > a:hover,
343
101
  .navbar.navbar-light ul.nav > li.open > a:hover,
344
102
  .navbar.navbar-light ul.nav > li > a:focus,
345
- .navbar.navbar-light ul.nav > li.open > a:focus {
346
- border-top: solid 5px #467fbf;
347
- background: #fff !important;
348
- color: #555555 !important;
349
- }
350
- .navbar ul.dropdown-menu {
351
- margin: 0;
352
- padding: 0;
353
- }
354
- .navbar ul.dropdown-menu li {
355
- list-style-type: none;
356
- border-bottom: solid 1px #eeeeee;
357
- text-transform: uppercase;
358
- letter-spacing: 0.08em;
359
- padding: 4px 0;
360
- }
361
- .navbar ul.dropdown-menu li a {
362
- position: relative;
363
- color: #999999;
364
- font-size: 12px;
365
- display: block;
366
- -webkit-transition: all 0.2s ease-out;
367
- -moz-transition: all 0.2s ease-out;
368
- transition: all 0.2s ease-out;
369
- left: 0;
370
- }
371
- .navbar ul.dropdown-menu li a:hover {
372
- color: #467fbf;
373
- text-decoration: none;
374
- background: none;
375
- left: 2px;
376
- -webkit-transition: all 0.2s ease-out;
377
- -moz-transition: all 0.2s ease-out;
378
- transition: all 0.2s ease-out;
379
- }
380
- @media (max-width: 767px) {
381
- .navbar ul.dropdown-menu li a:hover {
382
- left: 0;
383
- }
384
- }
385
- .navbar .yamm-content h3 {
386
- font-size: 18px;
387
- text-transform: uppercase;
388
- padding-bottom: 10px;
389
- margin-top: 5px;
390
- border-bottom: dotted 1px #555555;
391
- letter-spacing: 0.08em;
392
- }
393
- @media (max-width: 767px) {
394
- .navbar .yamm-content h3 {
395
- font-size: 14px;
396
- }
397
- }
398
- .navbar .yamm-content h5 {
399
- text-transform: uppercase;
400
- padding-bottom: 10px;
401
- border-bottom: dotted 1px #555555;
402
- letter-spacing: 0.08em;
403
- }
404
- .navbar .yamm-content ul {
405
- margin: 0;
406
- padding: 0;
407
- }
408
- .navbar .yamm-content ul li {
409
- list-style-type: none;
410
- border-bottom: solid 1px #eeeeee;
411
- text-transform: uppercase;
412
- padding: 4px 0;
413
- }
414
- .navbar .yamm-content ul li a {
415
- position: relative;
416
- color: #999999;
417
- font-size: 12px;
418
- display: block;
419
- -webkit-transition: all 0.2s ease-out;
420
- -moz-transition: all 0.2s ease-out;
421
- transition: all 0.2s ease-out;
422
- }
423
- .navbar .yamm-content ul li a:hover {
424
- color: #467fbf;
425
- text-decoration: none;
426
- padding-left: 2px;
427
- }
428
- .navbar .yamm-content .banner {
429
- margin-bottom: 10px;
430
- }
431
- .navbar .yamm-fw .dropdown-menu {
432
- padding: 0;
433
- }
434
- .navbar .navbar-buttons {
435
- float: right;
436
- }
103
+ .navbar.navbar-light ul.nav > li.open > a:focus{border-top:solid 5px #467fbf;background:#fff !important;color:#555555 !important;}
104
+ .navbar ul.dropdown-menu{margin:0;padding:0;}
105
+ .navbar ul.dropdown-menu li{list-style-type:none;border-bottom:solid 1px #eeeeee;text-transform:uppercase;letter-spacing:0.08em;padding:4px 0;}
106
+ .navbar ul.dropdown-menu li a{position:relative;color:#999999;font-size:12px;display:block;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;left:0;}
107
+ .navbar ul.dropdown-menu li a:hover{color:#467fbf;text-decoration:none;background:none;left:2px;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
108
+ @media (max-width:767px){.navbar ul.dropdown-menu li a:hover{left:0;}
109
+ }
110
+ .navbar .yamm-content h3{font-size:18px;text-transform:uppercase;padding-bottom:10px;margin-top:5px;border-bottom:dotted 1px #555555;letter-spacing:0.08em;}
111
+ @media (max-width:767px){.navbar .yamm-content h3{font-size:14px;}
112
+ }
113
+ .navbar .yamm-content h5{text-transform:uppercase;padding-bottom:10px;border-bottom:dotted 1px #555555;letter-spacing:0.08em;}
114
+ .navbar .yamm-content ul{margin:0;padding:0;}
115
+ .navbar .yamm-content ul li{list-style-type:none;border-bottom:solid 1px #eeeeee;text-transform:uppercase;padding:4px 0;}
116
+ .navbar .yamm-content ul li a{position:relative;color:#999999;font-size:12px;display:block;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
117
+ .navbar .yamm-content ul li a:hover{color:#467fbf;text-decoration:none;padding-left:2px;}
118
+ .navbar .yamm-content .banner{margin-bottom:10px;}
119
+ .navbar .yamm-fw .dropdown-menu{padding:0;}
120
+ .navbar .navbar-buttons{float:right;}
437
121
  .navbar .navbar-buttons button,
438
122
  .navbar .navbar-buttons a.btn,
439
- .navbar .navbar-buttons .btn-default.navbar-toggle {
440
- margin-top: 11px;
441
- margin-bottom: 11px;
442
- margin-left: 0;
443
- margin-right: 5px;
444
- }
123
+ .navbar .navbar-buttons .btn-default.navbar-toggle{margin-top:11px;margin-bottom:11px;margin-left:0;margin-right:5px;}
445
124
  .navbar .btn-default,
446
- .navbar .btn-default.navbar-toggle {
447
- color: #999999;
448
- background-color: #fff;
449
- margin-left: 7px;
450
- margin-right: 0;
451
- }
125
+ .navbar .btn-default.navbar-toggle{color:#999999;background-color:#fff;margin-left:7px;margin-right:0;}
452
126
  .navbar .btn-default:hover,
453
127
  .navbar .btn-default.navbar-toggle:hover,
454
128
  .navbar .btn-default:focus,
455
- .navbar .btn-default.navbar-toggle:focus {
456
- background-color: #fff;
457
- border-color: #467fbf;
458
- color: #467fbf;
459
- }
460
- .navbar #search {
461
- clear: both;
462
- border-top: solid 1px #467fbf;
463
- text-align: right;
464
- }
465
- .navbar #search form {
466
- float: right;
467
- }
468
- .navbar #search form .input-group {
469
- width: 500px;
470
- }
471
- @media (max-width: 768px) {
472
- .navbar #search form .input-group {
473
- width: 100%;
474
- }
475
- }
476
- .navbar #basket-overview a {
477
- margin-left: 7px;
478
- }
479
- .navbar-affixed-top {
480
- top: -32px;
481
- }
482
- .navbar-affixed-top.affix-top {
483
- -webkit-transition: all 0.5s ease-out;
484
- -moz-transition: all 0.5s ease-out;
485
- transition: all 0.5s ease-out;
486
- }
487
- .navbar-affixed-top.affix {
488
- position: fixed;
489
- width: 100%;
490
- top: 0;
491
- z-index: 1000;
492
- -webkit-box-shadow: 0 0 5px #cccccc;
493
- box-shadow: 0 0 5px #cccccc;
494
- -webkit-transition: all 0.5s ease-out;
495
- -moz-transition: all 0.5s ease-out;
496
- transition: all 0.5s ease-out;
497
- }
498
- body.boxed .navbar-affixed-top.affix {
499
- position: static;
500
- }
501
- #login-modal {
502
- overflow: hidden;
503
- }
504
- #login-modal .modal-header h4 {
505
- text-transform: uppercase;
506
- }
507
- #login-modal form {
508
- margin-bottom: 20px;
509
- }
510
- #login-modal a {
511
- color: #467fbf;
512
- }
513
- #login-modal p {
514
- font-weight: 300;
515
- margin-bottom: 20px;
516
- font-size: 13px;
517
- }
518
- /* buttons */
519
- .btn {
520
- font-weight: 700;
521
- font-family: "Roboto", Helvetica, Arial, sans-serif;
522
- text-transform: uppercase;
523
- letter-spacing: 0.08em;
524
- padding: 6px 12px;
525
- font-size: 13px;
526
- line-height: 1.42857143;
527
- border-radius: 0;
528
- }
529
- .input-group .btn {
530
- font-size: 14px;
531
- }
532
- .btn-lg {
533
- padding: 10px 16px;
534
- font-size: 14px;
535
- line-height: 1.33;
536
- border-radius: 0;
537
- }
538
- .btn-sm {
539
- padding: 5px 10px;
540
- font-size: 12px;
541
- line-height: 1.5;
542
- border-radius: 0;
543
- }
544
- .btn-xs {
545
- padding: 1px 5px;
546
- font-size: 12px;
547
- line-height: 1.5;
548
- border-radius: 0;
549
- }
550
- .btn-template-main {
551
- color: #467fbf;
552
- background-color: #ffffff;
553
- border-color: #467fbf;
554
- }
129
+ .navbar .btn-default.navbar-toggle:focus{background-color:#fff;border-color:#467fbf;color:#467fbf;}
130
+ .navbar #search{clear:both;border-top:solid 1px #467fbf;text-align:right;}
131
+ .navbar #search form{float:right;}
132
+ .navbar #search form .input-group{width:500px;}
133
+ @media (max-width:768px){.navbar #search form .input-group{width:100%;}
134
+ }
135
+ .navbar #basket-overview a{margin-left:7px;}
136
+ .navbar-affixed-top{top:-32px;}
137
+ .navbar-affixed-top.affix-top{-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;transition:all 0.5s ease-out;}
138
+ .navbar-affixed-top.affix{position:fixed;width:100%;top:0;z-index:1000;-webkit-box-shadow:0 0 5px #cccccc;box-shadow:0 0 5px #cccccc;-webkit-transition:all 0.5s ease-out;-moz-transition:all 0.5s ease-out;transition:all 0.5s ease-out;}
139
+ body.boxed .navbar-affixed-top.affix{position:static;}
140
+ #login-modal{overflow:hidden;}
141
+ #login-modal .modal-header h4{text-transform:uppercase;}
142
+ #login-modal form{margin-bottom:20px;}
143
+ #login-modal a{color:#467fbf;}
144
+ #login-modal p{font-weight:300;margin-bottom:20px;font-size:13px;}
145
+ .btn{font-weight:700;font-family:"Roboto", Helvetica, Arial, sans-serif;text-transform:uppercase;letter-spacing:0.08em;padding:6px 12px;font-size:13px;line-height:1.42857143;border-radius:0;}
146
+ .input-group .btn{font-size:14px;}
147
+ .btn-lg{padding:10px 16px;font-size:14px;line-height:1.33;border-radius:0;}
148
+ .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0;}
149
+ .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0;}
150
+ .btn-template-main{color:#467fbf;background-color:#ffffff;border-color:#467fbf;}
555
151
  .btn-template-main:hover,
556
152
  .btn-template-main:focus,
557
153
  .btn-template-main:active,
558
154
  .btn-template-main.active,
559
- .open > .dropdown-toggle.btn-template-main {
560
- color: #467fbf;
561
- background-color: #e6e6e6;
562
- border-color: #336194;
563
- }
155
+ .open > .dropdown-toggle.btn-template-main{color:#467fbf;background-color:#e6e6e6;border-color:#336194;}
564
156
  .btn-template-main:active,
565
157
  .btn-template-main.active,
566
- .open > .dropdown-toggle.btn-template-main {
567
- background-image: none;
568
- }
158
+ .open > .dropdown-toggle.btn-template-main{background-image:none;}
569
159
  .btn-template-main.disabled,
570
160
  .btn-template-main[disabled],
571
161
  fieldset[disabled] .btn-template-main,
@@ -580,41 +170,21 @@ fieldset[disabled] .btn-template-main:focus,
580
170
  fieldset[disabled] .btn-template-main:active,
581
171
  .btn-template-main.disabled.active,
582
172
  .btn-template-main[disabled].active,
583
- fieldset[disabled] .btn-template-main.active {
584
- background-color: #ffffff;
585
- border-color: #467fbf;
586
- }
587
- .btn-template-main .badge {
588
- color: #ffffff;
589
- background-color: #467fbf;
590
- }
173
+ fieldset[disabled] .btn-template-main.active{background-color:#ffffff;border-color:#467fbf;}
174
+ .btn-template-main .badge{color:#ffffff;background-color:#467fbf;}
591
175
  .btn-template-main:hover,
592
176
  .btn-template-main:focus,
593
177
  .btn-template-main:active,
594
- .btn-template-main.active {
595
- background: #467fbf;
596
- color: #ffffff;
597
- border-color: #467fbf;
598
- }
599
- .btn-template-transparent-primary {
600
- color: #ffffff;
601
- background-color: transparent;
602
- border-color: #ffffff;
603
- }
178
+ .btn-template-main.active{background:#467fbf;color:#ffffff;border-color:#467fbf;}
179
+ .btn-template-transparent-primary{color:#ffffff;background-color:transparent;border-color:#ffffff;}
604
180
  .btn-template-transparent-primary:hover,
605
181
  .btn-template-transparent-primary:focus,
606
182
  .btn-template-transparent-primary:active,
607
183
  .btn-template-transparent-primary.active,
608
- .open > .dropdown-toggle.btn-template-transparent-primary {
609
- color: #ffffff;
610
- background-color: rgba(0, 0, 0, 0);
611
- border-color: #e0e0e0;
612
- }
184
+ .open > .dropdown-toggle.btn-template-transparent-primary{color:#ffffff;background-color:rgba(0, 0, 0, 0);border-color:#e0e0e0;}
613
185
  .btn-template-transparent-primary:active,
614
186
  .btn-template-transparent-primary.active,
615
- .open > .dropdown-toggle.btn-template-transparent-primary {
616
- background-image: none;
617
- }
187
+ .open > .dropdown-toggle.btn-template-transparent-primary{background-image:none;}
618
188
  .btn-template-transparent-primary.disabled,
619
189
  .btn-template-transparent-primary[disabled],
620
190
  fieldset[disabled] .btn-template-transparent-primary,
@@ -629,41 +199,21 @@ fieldset[disabled] .btn-template-transparent-primary:focus,
629
199
  fieldset[disabled] .btn-template-transparent-primary:active,
630
200
  .btn-template-transparent-primary.disabled.active,
631
201
  .btn-template-transparent-primary[disabled].active,
632
- fieldset[disabled] .btn-template-transparent-primary.active {
633
- background-color: transparent;
634
- border-color: #ffffff;
635
- }
636
- .btn-template-transparent-primary .badge {
637
- color: transparent;
638
- background-color: #ffffff;
639
- }
202
+ fieldset[disabled] .btn-template-transparent-primary.active{background-color:transparent;border-color:#ffffff;}
203
+ .btn-template-transparent-primary .badge{color:transparent;background-color:#ffffff;}
640
204
  .btn-template-transparent-primary:hover,
641
205
  .btn-template-transparent-primary:focus,
642
206
  .btn-template-transparent-primary:active,
643
- .btn-template-transparent-primary.active {
644
- background: #fff;
645
- color: #467fbf;
646
- border-color: #fff;
647
- }
648
- .btn-template-transparent-black {
649
- color: #ffffff;
650
- background-color: transparent;
651
- border-color: #ffffff;
652
- }
207
+ .btn-template-transparent-primary.active{background:#fff;color:#467fbf;border-color:#fff;}
208
+ .btn-template-transparent-black{color:#ffffff;background-color:transparent;border-color:#ffffff;}
653
209
  .btn-template-transparent-black:hover,
654
210
  .btn-template-transparent-black:focus,
655
211
  .btn-template-transparent-black:active,
656
212
  .btn-template-transparent-black.active,
657
- .open > .dropdown-toggle.btn-template-transparent-black {
658
- color: #ffffff;
659
- background-color: rgba(0, 0, 0, 0);
660
- border-color: #e0e0e0;
661
- }
213
+ .open > .dropdown-toggle.btn-template-transparent-black{color:#ffffff;background-color:rgba(0, 0, 0, 0);border-color:#e0e0e0;}
662
214
  .btn-template-transparent-black:active,
663
215
  .btn-template-transparent-black.active,
664
- .open > .dropdown-toggle.btn-template-transparent-black {
665
- background-image: none;
666
- }
216
+ .open > .dropdown-toggle.btn-template-transparent-black{background-image:none;}
667
217
  .btn-template-transparent-black.disabled,
668
218
  .btn-template-transparent-black[disabled],
669
219
  fieldset[disabled] .btn-template-transparent-black,
@@ -678,41 +228,21 @@ fieldset[disabled] .btn-template-transparent-black:focus,
678
228
  fieldset[disabled] .btn-template-transparent-black:active,
679
229
  .btn-template-transparent-black.disabled.active,
680
230
  .btn-template-transparent-black[disabled].active,
681
- fieldset[disabled] .btn-template-transparent-black.active {
682
- background-color: transparent;
683
- border-color: #ffffff;
684
- }
685
- .btn-template-transparent-black .badge {
686
- color: transparent;
687
- background-color: #ffffff;
688
- }
231
+ fieldset[disabled] .btn-template-transparent-black.active{background-color:transparent;border-color:#ffffff;}
232
+ .btn-template-transparent-black .badge{color:transparent;background-color:#ffffff;}
689
233
  .btn-template-transparent-black:hover,
690
234
  .btn-template-transparent-black:focus,
691
235
  .btn-template-transparent-black:active,
692
- .btn-template-transparent-black.active {
693
- background: #fff;
694
- color: #000;
695
- border-color: #fff;
696
- }
697
- .btn-template-primary {
698
- color: #ffffff;
699
- background-color: #467fbf;
700
- border-color: #467fbf;
701
- }
236
+ .btn-template-transparent-black.active{background:#fff;color:#000;border-color:#fff;}
237
+ .btn-template-primary{color:#ffffff;background-color:#467fbf;border-color:#467fbf;}
702
238
  .btn-template-primary:hover,
703
239
  .btn-template-primary:focus,
704
240
  .btn-template-primary:active,
705
241
  .btn-template-primary.active,
706
- .open > .dropdown-toggle.btn-template-primary {
707
- color: #ffffff;
708
- background-color: #36669c;
709
- border-color: #336194;
710
- }
242
+ .open > .dropdown-toggle.btn-template-primary{color:#ffffff;background-color:#36669c;border-color:#336194;}
711
243
  .btn-template-primary:active,
712
244
  .btn-template-primary.active,
713
- .open > .dropdown-toggle.btn-template-primary {
714
- background-image: none;
715
- }
245
+ .open > .dropdown-toggle.btn-template-primary{background-image:none;}
716
246
  .btn-template-primary.disabled,
717
247
  .btn-template-primary[disabled],
718
248
  fieldset[disabled] .btn-template-primary,
@@ -727,2642 +257,763 @@ fieldset[disabled] .btn-template-primary:focus,
727
257
  fieldset[disabled] .btn-template-primary:active,
728
258
  .btn-template-primary.disabled.active,
729
259
  .btn-template-primary[disabled].active,
730
- fieldset[disabled] .btn-template-primary.active {
731
- background-color: #467fbf;
732
- border-color: #467fbf;
733
- }
734
- .btn-template-primary .badge {
735
- color: #467fbf;
736
- background-color: #ffffff;
737
- }
738
- #intro {
739
- background: url('../img/home.jpg') no-repeat center top;
740
- -webkit-background-size: cover;
741
- -moz-background-size: cover;
742
- -o-background-size: cover;
743
- background-size: cover;
744
- }
745
- #intro .item {
746
- font-family: "Roboto", Helvetica, Arial, sans-serif;
747
- height: 100%;
748
- }
749
- #intro .item h1 {
750
- text-transform: uppercase;
751
- font-size: 50px;
752
- color: #fff;
753
- margin-bottom: 40px;
754
- letter-spacing: 0.08em;
755
- }
756
- @media (max-width: 991px) {
757
- #intro .item h1 {
758
- font-size: 40px;
759
- }
760
- }
761
- @media (max-width: 767px) {
762
- #intro .item h1 {
763
- font-size: 25px;
764
- }
765
- }
766
- #intro .item h3 {
767
- color: #fff;
768
- margin-bottom: 40px;
260
+ fieldset[disabled] .btn-template-primary.active{background-color:#467fbf;border-color:#467fbf;}
261
+ .btn-template-primary .badge{color:#467fbf;background-color:#ffffff;}
262
+ #intro{background:url('../img/home.jpg') no-repeat center top;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;}
263
+ #intro .item{font-family:"Roboto", Helvetica, Arial, sans-serif;height:100%;}
264
+ #intro .item h1{text-transform:uppercase;font-size:50px;color:#fff;margin-bottom:40px;letter-spacing:0.08em;}
265
+ @media (max-width:991px){#intro .item h1{font-size:40px;}
769
266
  }
770
- @media (max-width: 767px) {
771
- #intro .item h3 {
772
- font-size: 15px;
773
- margin-bottom: 20px;
774
- }
267
+ @media (max-width:767px){#intro .item h1{font-size:25px;}
775
268
  }
776
- #intro .item .btn {
777
- text-transform: none;
269
+ #intro .item h3{color:#fff;margin-bottom:40px;}
270
+ @media (max-width:767px){#intro .item h3{font-size:15px;margin-bottom:20px;}
778
271
  }
779
- @media (max-width: 991px) {
780
- #intro .item .btn {
781
- font-size: 14px;
782
- }
272
+ #intro .item .btn{text-transform:none;}
273
+ @media (max-width:991px){#intro .item .btn{font-size:14px;}
783
274
  }
784
- @media (max-width: 991px) {
785
- #intro .item .carousel-caption {
786
- left: 10%;
787
- right: 10%;
788
- }
275
+ @media (max-width:991px){#intro .item .carousel-caption{left:10%;right:10%;}
789
276
  }
790
277
  #intro .container,
791
- #intro .row {
792
- height: 100%;
793
- position: relative;
794
- }
795
- .jumbotron {
796
- padding: 30px;
797
- margin-bottom: 0;
798
- position: relative;
799
- background: url('../img/photogrid.jpg') center center repeat;
800
- background-size: cover;
801
- -webkit-transition: all 0.2s ease-out;
802
- -moz-transition: all 0.2s ease-out;
803
- transition: all 0.2s ease-out;
804
- }
805
- .jumbotron .dark-mask {
806
- position: absolute;
807
- top: 0;
808
- left: 0;
809
- width: 100%;
810
- height: 100%;
811
- background: #467fbf;
812
- opacity: 0.9;
813
- filter: alpha(opacity=90);
814
- }
278
+ #intro .row{height:100%;position:relative;}
279
+ .jumbotron{padding:30px;margin-bottom:0;position:relative;background:url('../img/photogrid.jpg') center center repeat;background-size:cover;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
280
+ .jumbotron .dark-mask{position:absolute;top:0;left:0;width:100%;height:100%;background:#467fbf;opacity:0.9;filter:alpha(opacity=90);}
815
281
  .jumbotron h1,
816
282
  .jumbotron h2,
817
283
  .jumbotron h3,
818
284
  .jumbotron p,
819
- .jumbotron ul {
820
- color: #fff;
821
- }
285
+ .jumbotron ul{color:#fff;}
822
286
  .jumbotron h1,
823
287
  .jumbotron h2,
824
- .jumbotron h3 {
825
- color: #ffffff;
826
- text-transform: uppercase;
827
- letter-spacing: 0.08em;
828
- }
829
- .jumbotron p {
830
- margin-bottom: 20px;
831
- font-size: 21px;
832
- font-weight: 400;
833
- }
834
- .jumbotron p.text-uppercase {
835
- font-weight: 700;
836
- }
837
- .jumbotron > hr {
838
- border-top-color: #d5d5d5;
839
- }
840
- .container .jumbotron {
841
- border-radius: 0;
842
- }
843
- .jumbotron .container {
844
- max-width: 100%;
845
- z-index: 2;
846
- }
847
- @media screen and (min-width: 768px) {
848
- .jumbotron {
849
- padding-top: 48px;
850
- padding-bottom: 48px;
851
- }
852
- .container .jumbotron {
853
- padding-left: 60px;
854
- padding-right: 60px;
855
- }
856
- .jumbotron h1,
857
- .jumbotron .h1 {
858
- font-size: 46px;
859
- }
860
- }
861
- #categoryMenu h3 {
862
- padding: 20px;
863
- background: #f7f7f7;
864
- margin: 0;
865
- border-bottom: solid 1px #eeeeee;
866
- text-transform: uppercase;
867
- letter-spacing: 0.08em;
868
- }
869
- .panel.sidebar-menu h3 {
870
- padding: 5px 0;
871
- margin: 0;
872
- }
873
- .panel.sidebar-menu {
874
- background: #fff;
875
- margin: 0 0 20px;
876
- -webkit-box-sizing: border-box;
877
- -moz-box-sizing: border-box;
878
- box-sizing: border-box;
879
- }
880
- .panel.sidebar-menu .panel-heading {
881
- text-transform: uppercase;
882
- margin-bottom: 10px;
883
- background: none;
884
- padding: 0;
885
- letter-spacing: 0.08em;
886
- border-bottom: none;
288
+ .jumbotron h3{color:#ffffff;text-transform:uppercase;letter-spacing:0.08em;}
289
+ .jumbotron p{margin-bottom:20px;font-size:21px;font-weight:400;}
290
+ .jumbotron p.text-uppercase{font-weight:700;}
291
+ .jumbotron > hr{border-top-color:#d5d5d5;}
292
+ .container .jumbotron{border-radius:0;}
293
+ .jumbotron .container{max-width:100%;z-index:2;}
294
+ @media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px;}
295
+ .container .jumbotron{padding-left:60px;padding-right:60px;}
296
+ .jumbotron h1,
297
+ .jumbotron .h1{font-size:46px;}
887
298
  }
299
+ #categoryMenu h3{padding:20px;background:#f7f7f7;margin:0;border-bottom:solid 1px #eeeeee;text-transform:uppercase;letter-spacing:0.08em;}
300
+ .panel.sidebar-menu h3{padding:5px 0;margin:0;}
301
+ .panel.sidebar-menu{background:#fff;margin:0 0 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
302
+ .panel.sidebar-menu .panel-heading{text-transform:uppercase;margin-bottom:10px;background:none;padding:0;letter-spacing:0.08em;border-bottom:none;}
888
303
  .panel.sidebar-menu .panel-heading h1,
889
304
  .panel.sidebar-menu .panel-heading h2,
890
305
  .panel.sidebar-menu .panel-heading h3,
891
306
  .panel.sidebar-menu .panel-heading h4,
892
- .panel.sidebar-menu .panel-heading h5 {
893
- display: inline-block;
894
- border-bottom: solid 5px #467fbf;
895
- line-height: 1.1;
896
- margin-bottom: 0;
897
- padding-bottom: 10px;
898
- }
899
- .panel.sidebar-menu .panel-heading .btn.btn-danger {
900
- color: #fff;
901
- margin-top: 5px;
902
- }
903
- .panel.sidebar-menu .panel-body {
904
- padding: 0;
905
- }
906
- .panel.sidebar-menu .panel-body span.colour {
907
- display: inline-block;
908
- width: 15px;
909
- height: 15px;
910
- border: solid 1px #555555;
911
- vertical-align: top;
912
- margin-top: 2px;
913
- margin-left: 5px;
914
- }
915
- .panel.sidebar-menu .panel-body span.colour.white {
916
- background: #fff;
917
- }
918
- .panel.sidebar-menu .panel-body span.colour.red {
919
- background: red;
920
- }
921
- .panel.sidebar-menu .panel-body span.colour.green {
922
- background: green;
923
- }
924
- .panel.sidebar-menu .panel-body span.colour.blue {
925
- background: blue;
926
- }
927
- .panel.sidebar-menu .panel-body span.colour.yellow {
928
- background: yellow;
929
- }
930
- .panel.sidebar-menu .panel-body label {
931
- color: #999999;
932
- font-size: 12px;
933
- }
934
- .panel.sidebar-menu .panel-body label:hover {
935
- color: #555555;
936
- }
937
- .panel.sidebar-menu ul.nav.category-menu {
938
- margin-bottom: 20px;
939
- text-transform: uppercase;
940
- font-weight: 700;
941
- letter-spacing: 0.08em;
942
- }
943
- .panel.sidebar-menu ul.nav.category-menu li a {
944
- font-family: "Roboto", Helvetica, Arial, sans-serif;
945
- }
946
- .panel.sidebar-menu ul.nav ul {
947
- list-style: none;
948
- padding-left: 0;
949
- }
950
- .panel.sidebar-menu ul.nav ul li {
951
- display: block;
952
- }
953
- .panel.sidebar-menu ul.nav ul li a {
954
- position: relative;
955
- font-family: "Times New Roman", Times, serif;
956
- font-weight: normal;
957
- text-transform: none !important;
958
- display: block;
959
- padding: 10px 15px;
960
- padding-left: 30px;
961
- font-size: 12px;
962
- color: #999999;
963
- }
307
+ .panel.sidebar-menu .panel-heading h5{display:inline-block;border-bottom:solid 5px #467fbf;line-height:1.1;margin-bottom:0;padding-bottom:10px;}
308
+ .panel.sidebar-menu .panel-heading .btn.btn-danger{color:#fff;margin-top:5px;}
309
+ .panel.sidebar-menu .panel-body{padding:0;}
310
+ .panel.sidebar-menu .panel-body span.colour{display:inline-block;width:15px;height:15px;border:solid 1px #555555;vertical-align:top;margin-top:2px;margin-left:5px;}
311
+ .panel.sidebar-menu .panel-body span.colour.white{background:#fff;}
312
+ .panel.sidebar-menu .panel-body span.colour.red{background:red;}
313
+ .panel.sidebar-menu .panel-body span.colour.green{background:green;}
314
+ .panel.sidebar-menu .panel-body span.colour.blue{background:blue;}
315
+ .panel.sidebar-menu .panel-body span.colour.yellow{background:yellow;}
316
+ .panel.sidebar-menu .panel-body label{color:#999999;font-size:12px;}
317
+ .panel.sidebar-menu .panel-body label:hover{color:#555555;}
318
+ .panel.sidebar-menu ul.nav.category-menu{margin-bottom:20px;text-transform:uppercase;font-weight:700;letter-spacing:0.08em;}
319
+ .panel.sidebar-menu ul.nav.category-menu li a{font-family:"Roboto", Helvetica, Arial, sans-serif;}
320
+ .panel.sidebar-menu ul.nav ul{list-style:none;padding-left:0;}
321
+ .panel.sidebar-menu ul.nav ul li{display:block;}
322
+ .panel.sidebar-menu ul.nav ul li a{position:relative;font-family:"Times New Roman", Times, serif;font-weight:normal;text-transform:none !important;display:block;padding:10px 15px;padding-left:30px;font-size:12px;color:#999999;}
964
323
  .panel.sidebar-menu ul.nav ul li a:hover,
965
- .panel.sidebar-menu ul.nav ul li a:focus {
966
- text-decoration: none;
967
- background-color: #eeeeee;
968
- }
969
- .panel.sidebar-menu ul.tag-cloud {
970
- list-style: none;
971
- padding-left: 0;
972
- }
973
- .panel.sidebar-menu ul.tag-cloud li {
974
- display: inline-block;
975
- }
976
- .panel.sidebar-menu ul.tag-cloud li a {
977
- display: inline-block;
978
- padding: 5px;
979
- border: solid 1px #eeeeee;
980
- border-radius: 0;
981
- color: #467fbf;
982
- margin: 5px 5px 5px 0;
983
- text-transform: uppercase;
984
- letter-spacing: 0.08em;
985
- font-weight: 700;
986
- font-size: 12px;
987
- }
988
- .panel.sidebar-menu ul.tag-cloud li a:hover {
989
- color: #467fbf;
990
- text-decoration: none;
991
- border-color: #467fbf;
992
- }
324
+ .panel.sidebar-menu ul.nav ul li a:focus{text-decoration:none;background-color:#eeeeee;}
325
+ .panel.sidebar-menu ul.tag-cloud{list-style:none;padding-left:0;}
326
+ .panel.sidebar-menu ul.tag-cloud li{display:inline-block;}
327
+ .panel.sidebar-menu ul.tag-cloud li a{display:inline-block;padding:5px;border:solid 1px #eeeeee;border-radius:0;color:#467fbf;margin:5px 5px 5px 0;text-transform:uppercase;letter-spacing:0.08em;font-weight:700;font-size:12px;}
328
+ .panel.sidebar-menu ul.tag-cloud li a:hover{color:#467fbf;text-decoration:none;border-color:#467fbf;}
993
329
  .panel.sidebar-menu ul.popular,
994
- .panel.sidebar-menu ul.recent {
995
- list-style: none;
996
- padding-left: 0;
997
- padding: 20px 0;
998
- }
330
+ .panel.sidebar-menu ul.recent{list-style:none;padding-left:0;padding:20px 0;}
999
331
  .panel.sidebar-menu ul.popular li,
1000
- .panel.sidebar-menu ul.recent li {
1001
- margin-bottom: 10px;
1002
- padding: 5px 0;
1003
- border-bottom: dotted 1px #eeeeee;
1004
- }
332
+ .panel.sidebar-menu ul.recent li{margin-bottom:10px;padding:5px 0;border-bottom:dotted 1px #eeeeee;}
1005
333
  .panel.sidebar-menu ul.popular li:before,
1006
334
  .panel.sidebar-menu ul.recent li:before,
1007
335
  .panel.sidebar-menu ul.popular li:after,
1008
- .panel.sidebar-menu ul.recent li:after {
1009
- content: " ";
1010
- display: table;
1011
- }
336
+ .panel.sidebar-menu ul.recent li:after{content:" ";display:table;}
1012
337
  .panel.sidebar-menu ul.popular li:after,
1013
- .panel.sidebar-menu ul.recent li:after {
1014
- clear: both;
1015
- }
338
+ .panel.sidebar-menu ul.recent li:after{clear:both;}
1016
339
  .panel.sidebar-menu ul.popular li:before,
1017
340
  .panel.sidebar-menu ul.recent li:before,
1018
341
  .panel.sidebar-menu ul.popular li:after,
1019
- .panel.sidebar-menu ul.recent li:after {
1020
- content: " ";
1021
- display: table;
1022
- }
342
+ .panel.sidebar-menu ul.recent li:after{content:" ";display:table;}
1023
343
  .panel.sidebar-menu ul.popular li:after,
1024
- .panel.sidebar-menu ul.recent li:after {
1025
- clear: both;
1026
- }
344
+ .panel.sidebar-menu ul.recent li:after{clear:both;}
1027
345
  .panel.sidebar-menu ul.popular li img,
1028
- .panel.sidebar-menu ul.recent li img {
1029
- width: 50px;
1030
- margin-right: 10px;
1031
- }
346
+ .panel.sidebar-menu ul.recent li img{width:50px;margin-right:10px;}
1032
347
  .panel.sidebar-menu ul.popular li h5,
1033
- .panel.sidebar-menu ul.recent li h5 {
1034
- margin: 0 0 10px;
1035
- }
348
+ .panel.sidebar-menu ul.recent li h5{margin:0 0 10px;}
1036
349
  .panel.sidebar-menu ul.popular li h5 a,
1037
- .panel.sidebar-menu ul.recent li h5 a {
1038
- font-weight: normal;
1039
- }
350
+ .panel.sidebar-menu ul.recent li h5 a{font-weight:normal;}
1040
351
  .panel.sidebar-menu ul.popular li p.date,
1041
- .panel.sidebar-menu ul.recent li p.date {
1042
- float: right;
1043
- font-size: 12px;
1044
- color: #999999;
1045
- }
352
+ .panel.sidebar-menu ul.recent li p.date{float:right;font-size:12px;color:#999999;}
1046
353
  .panel.sidebar-menu ul.popular li:last-child,
1047
- .panel.sidebar-menu ul.recent li:last-child {
1048
- border-bottom: none;
1049
- }
1050
- .panel.sidebar-menu .text-widget {
1051
- font-size: 12px;
1052
- }
1053
- .panel.sidebar-menu.with-icons ul.nav li a:after {
1054
- font-family: 'FontAwesome';
1055
- content: "\f105";
1056
- position: relative;
1057
- top: 0;
1058
- float: right;
1059
- }
1060
- /* ribbons for product sales etc. */
1061
- .ribbon {
1062
- position: absolute;
1063
- top: 50px;
1064
- padding-left: 51px;
1065
- font-weight: 700;
1066
- letter-spacing: 0.08em;
1067
- }
1068
- .ribbon .ribbon-background {
1069
- position: absolute;
1070
- top: 0;
1071
- right: 0;
1072
- }
1073
- .ribbon .theribbon {
1074
- position: relative;
1075
- width: 80px;
1076
- padding: 6px 20px 6px 20px;
1077
- margin: 30px 10px 10px -71px;
1078
- color: #fff;
1079
- background-color: #467fbf;
1080
- font-family: "Roboto", Helvetica, Arial, sans-serif;
1081
- }
354
+ .panel.sidebar-menu ul.recent li:last-child{border-bottom:none;}
355
+ .panel.sidebar-menu .text-widget{font-size:12px;}
356
+ .panel.sidebar-menu.with-icons ul.nav li a:after{font-family:'FontAwesome';content:"\f105";position:relative;top:0;float:right;}
357
+ .ribbon{position:absolute;top:50px;padding-left:51px;font-weight:700;letter-spacing:0.08em;}
358
+ .ribbon .ribbon-background{position:absolute;top:0;right:0;}
359
+ .ribbon .theribbon{position:relative;width:80px;padding:6px 20px 6px 20px;margin:30px 10px 10px -71px;color:#fff;background-color:#467fbf;font-family:"Roboto", Helvetica, Arial, sans-serif;}
1082
360
  .ribbon .theribbon:before,
1083
- .ribbon .theribbon:after {
1084
- content: ' ';
1085
- position: absolute;
1086
- width: 0;
1087
- height: 0;
1088
- }
1089
- .ribbon .theribbon:after {
1090
- left: 0px;
1091
- top: 100%;
1092
- border-width: 5px 10px;
1093
- border-style: solid;
1094
- border-color: #000000 #000000 transparent transparent;
1095
- }
1096
- .ribbon.sale {
1097
- top: 0;
1098
- }
1099
- .ribbon.new {
1100
- top: 50px;
1101
- }
1102
- .ribbon.new .theribbon {
1103
- background-color: #5bc0de;
1104
- text-shadow: 0px 1px 2px #bbb;
1105
- }
1106
- .ribbon.new .theribbon:after {
1107
- border-color: #2390b0 #2390b0 transparent transparent;
1108
- }
1109
- .ribbon.gift {
1110
- top: 100px;
1111
- }
1112
- .ribbon.gift .theribbon {
1113
- background-color: #5cb85c;
1114
- text-shadow: 0px 1px 2px #bbb;
1115
- }
1116
- .ribbon.gift .theribbon:after {
1117
- border-color: #357935 #357935 transparent transparent;
1118
- }
361
+ .ribbon .theribbon:after{content:' ';position:absolute;width:0;height:0;}
362
+ .ribbon .theribbon:after{left:0px;top:100%;border-width:5px 10px;border-style:solid;border-color:#000000 #000000 transparent transparent;}
363
+ .ribbon.sale{top:0;}
364
+ .ribbon.new{top:50px;}
365
+ .ribbon.new .theribbon{background-color:#5bc0de;text-shadow:0px 1px 2px #bbb;}
366
+ .ribbon.new .theribbon:after{border-color:#2390b0 #2390b0 transparent transparent;}
367
+ .ribbon.gift{top:100px;}
368
+ .ribbon.gift .theribbon{background-color:#5cb85c;text-shadow:0px 1px 2px #bbb;}
369
+ .ribbon.gift .theribbon:after{border-color:#357935 #357935 transparent transparent;}
1119
370
  .owl-carousel .owl-controls .owl-page.active span,
1120
371
  .owl-theme .owl-controls .owl-page.active span,
1121
372
  .owl-carousel .owl-controls.clickable .owl-page:hover span,
1122
- .owl-theme .owl-controls.clickable .owl-page:hover span {
1123
- background: #467fbf;
1124
- }
373
+ .owl-theme .owl-controls.clickable .owl-page:hover span{background:#467fbf;}
1125
374
  .owl-carousel .owl-controls .owl-buttons,
1126
- .owl-theme .owl-controls .owl-buttons {
1127
- position: absolute;
1128
- top: 5px;
1129
- right: 0;
1130
- }
375
+ .owl-theme .owl-controls .owl-buttons{position:absolute;top:5px;right:0;}
1131
376
  .owl-carousel .owl-controls .owl-buttons div,
1132
- .owl-theme .owl-controls .owl-buttons div {
1133
- width: 26px;
1134
- height: 26px;
1135
- line-height: 25px;
1136
- margin: 0 5px 0 0;
1137
- font-size: 18px;
1138
- color: #467fbf;
1139
- padding: 0;
1140
- background: #fff;
1141
- border-radius: 13px;
1142
- vertical-align: middle;
1143
- text-align: center;
1144
- opacity: 1;
1145
- filter: alpha(opacity=100);
1146
- }
1147
- .home-carousel {
1148
- position: relative;
1149
- background: url('../img/photogrid.jpg') center center repeat;
1150
- background-size: cover;
1151
- -webkit-transition: all 0.2s ease-out;
1152
- -moz-transition: all 0.2s ease-out;
1153
- transition: all 0.2s ease-out;
377
+ .owl-theme .owl-controls .owl-buttons div{width:26px;height:26px;line-height:25px;margin:0 5px 0 0;font-size:18px;color:#467fbf;padding:0;background:#fff;border-radius:13px;vertical-align:middle;text-align:center;opacity:1;filter:alpha(opacity=100);}
378
+ .home-carousel{position:relative;background:url('../img/photogrid.jpg') center center repeat;background-size:cover;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
379
+ .home-carousel .dark-mask{position:absolute;top:0;left:0;width:100%;height:100%;background:#467fbf;opacity:0.9;filter:alpha(opacity=90);}
380
+ .home-carousel .owl-carousel{padding-top:60px;padding-bottom:20px;}
381
+ .home-carousel .owl-theme .owl-controls .owl-page span{background:#666;}
382
+ .home-carousel .owl-theme .owl-controls .owl-page.active span{background:#fff;}
383
+ .home-carousel .owl-theme .owl-controls .owl-page:hover span{background:#fff;}
384
+ @media (max-width:767px){.home-carousel{text-align:center !important;}
1154
385
  }
1155
- .home-carousel .dark-mask {
1156
- position: absolute;
1157
- top: 0;
1158
- left: 0;
1159
- width: 100%;
1160
- height: 100%;
1161
- background: #467fbf;
1162
- opacity: 0.9;
1163
- filter: alpha(opacity=90);
1164
- }
1165
- .home-carousel .owl-carousel {
1166
- padding-top: 60px;
1167
- padding-bottom: 20px;
1168
- }
1169
- .home-carousel .owl-theme .owl-controls .owl-page span {
1170
- background: #666;
1171
- }
1172
- .home-carousel .owl-theme .owl-controls .owl-page.active span {
1173
- background: #fff;
1174
- }
1175
- .home-carousel .owl-theme .owl-controls .owl-page:hover span {
1176
- background: #fff;
1177
- }
1178
- @media (max-width: 767px) {
1179
- .home-carousel {
1180
- text-align: center !important;
1181
- }
1182
- }
1183
- @media (min-width: 992px) {
1184
- .home-carousel .right {
1185
- text-align: right;
1186
- }
386
+ @media (min-width:992px){.home-carousel .right{text-align:right;}
1187
387
  }
1188
388
  .home-carousel h1,
1189
389
  .home-carousel h2,
1190
390
  .home-carousel h3,
1191
391
  .home-carousel p,
1192
- .home-carousel ul {
1193
- color: #fff;
1194
- }
1195
- .home-carousel h1 {
1196
- font-weight: 700;
1197
- text-transform: uppercase;
1198
- font-size: 46px;
1199
- letter-spacing: 0.08em;
1200
- }
1201
- @media (max-width: 991px) {
1202
- .home-carousel h1 {
1203
- font-size: 36px;
1204
- }
1205
- }
1206
- .home-carousel h2 {
1207
- font-weight: 700;
1208
- text-transform: uppercase;
1209
- font-size: 40px;
1210
- letter-spacing: 0.08em;
392
+ .home-carousel ul{color:#fff;}
393
+ .home-carousel h1{font-weight:700;text-transform:uppercase;font-size:46px;letter-spacing:0.08em;}
394
+ @media (max-width:991px){.home-carousel h1{font-size:36px;}
1211
395
  }
396
+ .home-carousel h2{font-weight:700;text-transform:uppercase;font-size:40px;letter-spacing:0.08em;}
1212
397
  .home-carousel ul,
1213
- .home-carousel p {
1214
- font-size: 18px;
1215
- font-weight: 700;
1216
- padding: 0;
1217
- text-transform: uppercase;
1218
- letter-spacing: 0.10em;
1219
- }
1220
- @media (max-width: 991px) {
1221
- .home-carousel ul,
1222
- .home-carousel p {
1223
- font-size: 14px;
1224
- }
1225
- }
1226
- .home-carousel ul li {
1227
- margin-bottom: 10px;
1228
- }
1229
- .customers {
1230
- padding: 0;
1231
- margin-bottom: 40px;
1232
- }
1233
- .customers .item {
1234
- list-style-type: none;
1235
- text-align: center;
1236
- margin: 0 20px;
1237
- }
1238
- .customers .item img {
1239
- display: inline-block;
1240
- filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
1241
- /* Firefox 10+, Firefox on Android */
1242
- filter: gray;
1243
- /* IE6-9 */
1244
- -webkit-filter: grayscale(100%);
1245
- /* Chrome 19+, Safari 6+, Safari 6+ iOS */
1246
- -webkit-transition: all 0.2s ease-out;
1247
- -moz-transition: all 0.2s ease-out;
1248
- transition: all 0.2s ease-out;
1249
- }
1250
- .customers .item img:hover {
1251
- max-width: auto;
1252
- filter: none;
1253
- -webkit-filter: none;
1254
- }
1255
- .testimonials {
1256
- padding: 0;
1257
- margin-bottom: 40px;
1258
- }
1259
- .testimonials .item {
1260
- list-style-type: none;
1261
- margin: 0 5px;
1262
- background: #fff;
1263
- padding-bottom: 60px;
1264
- -webkit-box-sizing: border-box;
1265
- -moz-box-sizing: border-box;
1266
- box-sizing: border-box;
1267
- }
1268
- .testimonials .item .testimonial {
1269
- position: relative;
1270
- padding: 20px;
1271
- }
398
+ .home-carousel p{font-size:18px;font-weight:700;padding:0;text-transform:uppercase;letter-spacing:0.10em;}
399
+ @media (max-width:991px){.home-carousel ul,
400
+ .home-carousel p{font-size:14px;}
401
+ }
402
+ .home-carousel ul li{margin-bottom:10px;}
403
+ .customers{padding:0;margin-bottom:40px;}
404
+ .customers .item{list-style-type:none;text-align:center;margin:0 20px;}
405
+ .customers .item img{display:inline-block;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");filter:gray;-webkit-filter:grayscale(100%);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
406
+ .customers .item img:hover{max-width:auto;filter:none;-webkit-filter:none;}
407
+ .testimonials{padding:0;margin-bottom:40px;}
408
+ .testimonials .item{list-style-type:none;margin:0 5px;background:#fff;padding-bottom:60px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
409
+ .testimonials .item .testimonial{position:relative;padding:20px;}
1272
410
  .testimonials .item .testimonial:before,
1273
- .testimonials .item .testimonial:after {
1274
- content: " ";
1275
- display: table;
1276
- }
1277
- .testimonials .item .testimonial:after {
1278
- clear: both;
1279
- }
411
+ .testimonials .item .testimonial:after{content:" ";display:table;}
412
+ .testimonials .item .testimonial:after{clear:both;}
1280
413
  .testimonials .item .testimonial:before,
1281
- .testimonials .item .testimonial:after {
1282
- content: " ";
1283
- display: table;
1284
- }
1285
- .testimonials .item .testimonial:after {
1286
- clear: both;
1287
- }
1288
- .testimonials .item .testimonial .text {
1289
- color: #999999;
1290
- margin-bottom: 40px;
1291
- }
1292
- .testimonials .item .testimonial .bottom {
1293
- position: absolute;
1294
- left: 0;
1295
- bottom: 0;
1296
- width: 100%;
1297
- -webkit-box-sizing: border-box;
1298
- -moz-box-sizing: border-box;
1299
- box-sizing: border-box;
1300
- padding: 20px;
1301
- height: 50px;
1302
- }
1303
- .testimonials .item .testimonial .bottom .icon {
1304
- color: #467fbf;
1305
- font-size: 30px;
1306
- float: left;
1307
- width: 20%;
1308
- }
1309
- .testimonials .item .testimonial .name-picture {
1310
- float: right;
1311
- width: 80%;
1312
- text-align: right;
1313
- }
1314
- .testimonials .item .testimonial .name-picture h5 {
1315
- font-size: 14px;
1316
- text-transform: uppercase;
1317
- letter-spacing: 0.08em;
1318
- }
1319
- .testimonials .item .testimonial .name-picture p {
1320
- color: #999999;
1321
- margin: 0;
1322
- font-size: 12px;
1323
- }
1324
- .testimonials .item .testimonial .name-picture img {
1325
- float: right;
1326
- width: 60px;
1327
- border-radius: 30px;
1328
- margin-left: 10px;
1329
- }
1330
- .team-member {
1331
- text-align: center;
1332
- margin-bottom: 40px;
1333
- }
1334
- .team-member h3 {
1335
- font-size: 18px;
1336
- text-transform: uppercase;
1337
- margin-bottom: 5px;
1338
- letter-spacing: 0.08em;
1339
- }
1340
- .team-member h3 a {
1341
- color: #555555;
1342
- }
1343
- .team-member p.role {
1344
- color: #999999;
1345
- font-size: 12px;
1346
- text-transform: uppercase;
1347
- letter-spacing: 0.06em;
1348
- }
1349
- .team-member .social {
1350
- margin-bottom: 20px;
1351
- }
1352
- .team-member .social a {
1353
- margin: 0 10px 0 0;
1354
- color: #fff;
1355
- display: inline-block;
1356
- width: 26px;
1357
- height: 26px;
1358
- border-radius: 13px;
1359
- line-height: 26px;
1360
- font-size: 15px;
1361
- text-align: center;
1362
- -webkit-transition: all 0.2s ease-out;
1363
- -moz-transition: all 0.2s ease-out;
1364
- transition: all 0.2s ease-out;
1365
- vertical-align: bottom;
1366
- }
1367
- .team-member .social a i {
1368
- vertical-align: bottom;
1369
- line-height: 26px;
1370
- }
1371
- .team-member .social a.linkedin {
1372
- background-color: #0e76a8;
1373
- }
1374
- .team-member .social a.facebook {
1375
- background-color: #4460ae;
1376
- }
1377
- .team-member .social a.gplus {
1378
- background-color: #c21f25;
1379
- }
1380
- .team-member .social a.twitter {
1381
- background-color: #3cf;
1382
- }
1383
- .team-member .social a.instagram {
1384
- background-color: #cd4378;
1385
- }
1386
- .team-member .social a.email {
1387
- background-color: #4a7f45;
1388
- }
1389
- .team-member .text p {
1390
- color: #999999;
1391
- font-size: 12px;
1392
- }
414
+ .testimonials .item .testimonial:after{content:" ";display:table;}
415
+ .testimonials .item .testimonial:after{clear:both;}
416
+ .testimonials .item .testimonial .text{color:#999999;margin-bottom:40px;}
417
+ .testimonials .item .testimonial .bottom{position:absolute;left:0;bottom:0;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:20px;height:50px;}
418
+ .testimonials .item .testimonial .bottom .icon{color:#467fbf;font-size:30px;float:left;width:20%;}
419
+ .testimonials .item .testimonial .name-picture{float:right;width:80%;text-align:right;}
420
+ .testimonials .item .testimonial .name-picture h5{font-size:14px;text-transform:uppercase;letter-spacing:0.08em;}
421
+ .testimonials .item .testimonial .name-picture p{color:#999999;margin:0;font-size:12px;}
422
+ .testimonials .item .testimonial .name-picture img{float:right;width:60px;border-radius:30px;margin-left:10px;}
423
+ .team-member{text-align:center;margin-bottom:40px;}
424
+ .team-member h3{font-size:18px;text-transform:uppercase;margin-bottom:5px;letter-spacing:0.08em;}
425
+ .team-member h3 a{color:#555555;}
426
+ .team-member p.role{color:#999999;font-size:12px;text-transform:uppercase;letter-spacing:0.06em;}
427
+ .team-member .social{margin-bottom:20px;}
428
+ .team-member .social a{margin:0 10px 0 0;color:#fff;display:inline-block;width:26px;height:26px;border-radius:13px;line-height:26px;font-size:15px;text-align:center;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;vertical-align:bottom;}
429
+ .team-member .social a i{vertical-align:bottom;line-height:26px;}
430
+ .team-member .social a.linkedin{background-color:#0e76a8;}
431
+ .team-member .social a.facebook{background-color:#4460ae;}
432
+ .team-member .social a.gplus{background-color:#c21f25;}
433
+ .team-member .social a.twitter{background-color:#3cf;}
434
+ .team-member .social a.instagram{background-color:#cd4378;}
435
+ .team-member .social a.email{background-color:#4a7f45;}
436
+ .team-member .text p{color:#999999;font-size:12px;}
1393
437
  .team-member .social,
1394
- .team-member-detail .social {
1395
- margin-bottom: 20px;
1396
- }
438
+ .team-member-detail .social{margin-bottom:20px;}
1397
439
  .team-member .social a,
1398
- .team-member-detail .social a {
1399
- margin: 0 10px 0 0;
1400
- color: #fff;
1401
- display: inline-block;
1402
- width: 26px;
1403
- height: 26px;
1404
- border-radius: 13px;
1405
- line-height: 26px;
1406
- font-size: 15px;
1407
- text-align: center;
1408
- -webkit-transition: all 0.2s ease-out;
1409
- -moz-transition: all 0.2s ease-out;
1410
- transition: all 0.2s ease-out;
1411
- vertical-align: bottom;
1412
- }
440
+ .team-member-detail .social a{margin:0 10px 0 0;color:#fff;display:inline-block;width:26px;height:26px;border-radius:13px;line-height:26px;font-size:15px;text-align:center;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;vertical-align:bottom;}
1413
441
  .team-member .social a i,
1414
- .team-member-detail .social a i {
1415
- vertical-align: bottom;
1416
- line-height: 26px;
1417
- }
442
+ .team-member-detail .social a i{vertical-align:bottom;line-height:26px;}
1418
443
  .team-member .social a.linkedin,
1419
- .team-member-detail .social a.linkedin {
1420
- background-color: #0e76a8;
1421
- }
444
+ .team-member-detail .social a.linkedin{background-color:#0e76a8;}
1422
445
  .team-member .social a.facebook,
1423
- .team-member-detail .social a.facebook {
1424
- background-color: #4460ae;
1425
- }
446
+ .team-member-detail .social a.facebook{background-color:#4460ae;}
1426
447
  .team-member .social a.gplus,
1427
- .team-member-detail .social a.gplus {
1428
- background-color: #c21f25;
1429
- }
448
+ .team-member-detail .social a.gplus{background-color:#c21f25;}
1430
449
  .team-member .social a.twitter,
1431
- .team-member-detail .social a.twitter {
1432
- background-color: #3cf;
1433
- }
450
+ .team-member-detail .social a.twitter{background-color:#3cf;}
1434
451
  .team-member .social a.instagram,
1435
- .team-member-detail .social a.instagram {
1436
- background-color: #cd4378;
1437
- }
452
+ .team-member-detail .social a.instagram{background-color:#cd4378;}
1438
453
  .team-member .social a.email,
1439
- .team-member-detail .social a.email {
1440
- background-color: #4a7f45;
1441
- }
1442
- .box-simple {
1443
- text-align: center;
1444
- margin-bottom: 40px;
1445
- }
1446
- .box-simple .icon {
1447
- color: #467fbf;
1448
- border-color: #467fbf;
1449
- -webkit-transition: all 0.2s ease-out;
1450
- -moz-transition: all 0.2s ease-out;
1451
- transition: all 0.2s ease-out;
1452
- }
1453
- .box-simple h3 {
1454
- font-weight: normal;
1455
- font-size: 18px;
1456
- text-transform: uppercase;
1457
- line-height: 1.5;
1458
- color: #555555;
1459
- font-weight: 800;
1460
- letter-spacing: 0.08em;
1461
- }
1462
- .box-simple h3 a {
1463
- color: #555555;
1464
- }
1465
- .box-simple p {
1466
- color: #999999;
1467
- }
1468
- .box-simple:hover .icon {
1469
- -webkit-transform: scale(1.1, 1.1);
1470
- -ms-transform: scale(1.1, 1.1);
1471
- -o-transform: scale(1.1, 1.1);
1472
- transform: scale(1.1, 1.1);
1473
- }
1474
- .box-simple:hover .icon i {
1475
- -webkit-transform: scale(1, 1);
1476
- -ms-transform: scale(1, 1);
1477
- -o-transform: scale(1, 1);
1478
- transform: scale(1, 1);
1479
- }
1480
- .box-simple.box-white {
1481
- padding: 20px;
1482
- border: dotted 1px #999999;
1483
- }
1484
- .box-simple.box-white .icon {
1485
- color: #555555;
1486
- border-color: transparent;
1487
- font-size: 70px;
1488
- }
1489
- .box-simple.box-dark {
1490
- padding: 20px;
1491
- border: dotted 1px #999999;
1492
- background: #555555;
1493
- color: #fff;
1494
- }
1495
- .box-simple.box-dark .icon {
1496
- color: #f7f7f7;
1497
- border-color: transparent;
1498
- font-size: 70px;
1499
- }
1500
- .box-simple.box-dark h3 {
1501
- color: #fff;
1502
- }
1503
- .box-simple.box-dark h3 a {
1504
- color: #fff;
1505
- }
1506
- .box-simple.box-dark p {
1507
- color: #fff;
1508
- }
1509
- .box-image {
1510
- position: relative;
1511
- overflow: hidden;
1512
- text-align: center;
1513
- margin: 15px 0;
1514
- }
1515
- .box-image .bg {
1516
- position: absolute;
1517
- top: auto;
1518
- bottom: 0;
1519
- width: 100%;
1520
- height: 100%;
1521
- opacity: 0;
1522
- filter: alpha(opacity=0);
1523
- background: #467fbf;
1524
- }
1525
- .box-image .name {
1526
- position: absolute;
1527
- width: 100%;
1528
- height: 50%;
1529
- bottom: 0;
1530
- -webkit-transform: translate(0, 100%);
1531
- -ms-transform: translate(0, 100%);
1532
- -o-transform: translate(0, 100%);
1533
- transform: translate(0, 100%);
1534
- -webkit-transition: all 0.2s ease-out;
1535
- -moz-transition: all 0.2s ease-out;
1536
- transition: all 0.2s ease-out;
1537
- color: #fff;
1538
- padding: 0 20px;
1539
- }
1540
- .box-image .name h3 {
1541
- color: #fff;
1542
- text-transform: uppercase;
1543
- font-size: 18px;
1544
- letter-spacing: 0.08em;
1545
- }
1546
- .box-image .name h3 a {
1547
- color: #fff;
1548
- text-decoration: none;
1549
- }
1550
- .box-image .text {
1551
- position: absolute;
1552
- width: 100%;
1553
- height: 50%;
1554
- top: 0;
1555
- -webkit-transform: translate(0, -150%);
1556
- -ms-transform: translate(0, -150%);
1557
- -o-transform: translate(0, -150%);
1558
- transform: translate(0, -150%);
1559
- -webkit-transition: all 0.2s ease-out;
1560
- -moz-transition: all 0.2s ease-out;
1561
- transition: all 0.2s ease-out;
1562
- color: #fff;
1563
- padding: 0 20px;
1564
- }
1565
- .box-image:hover .bg {
1566
- opacity: 0.7;
1567
- filter: alpha(opacity=70);
1568
- }
1569
- .box-image:hover .name {
1570
- position: absolute;
1571
- -webkit-transform: translate(0, -75%);
1572
- -ms-transform: translate(0, -75%);
1573
- -o-transform: translate(0, -75%);
1574
- transform: translate(0, -75%);
1575
- }
1576
- .box-image:hover .text {
1577
- position: absolute;
1578
- -webkit-transform: translate(0, 100%);
1579
- -ms-transform: translate(0, 100%);
1580
- -o-transform: translate(0, 100%);
1581
- transform: translate(0, 100%);
1582
- }
1583
- .box-image-text {
1584
- position: relative;
1585
- overflow: hidden;
1586
- text-align: center;
1587
- margin: 15px 0;
1588
- }
1589
- .box-image-text .top {
1590
- position: relative;
1591
- margin-bottom: 10px;
1592
- }
1593
- .box-image-text .top .bg {
1594
- position: absolute;
1595
- top: auto;
1596
- bottom: 0;
1597
- width: 100%;
1598
- height: 100%;
1599
- opacity: 0;
1600
- filter: alpha(opacity=0);
1601
- background: #467fbf;
1602
- }
1603
- .box-image-text .top .name {
1604
- position: absolute;
1605
- width: 100%;
1606
- height: 50%;
1607
- bottom: 0;
1608
- -webkit-transform: translate(0, 100%);
1609
- -ms-transform: translate(0, 100%);
1610
- -o-transform: translate(0, 100%);
1611
- transform: translate(0, 100%);
1612
- -webkit-transition: all 0.2s ease-out;
1613
- -moz-transition: all 0.2s ease-out;
1614
- transition: all 0.2s ease-out;
1615
- color: #fff;
1616
- padding: 0 20px;
1617
- }
1618
- .box-image-text .top .name h3 {
1619
- color: #fff;
1620
- text-transform: uppercase;
1621
- font-size: 18px;
1622
- letter-spacing: 0.08em;
1623
- }
1624
- .box-image-text .top .name h3 a {
1625
- color: #fff;
1626
- text-decoration: none;
1627
- }
1628
- .box-image-text .top .text {
1629
- position: absolute;
1630
- width: 100%;
1631
- height: 50%;
1632
- top: 0;
1633
- -webkit-transform: translate(0, -150%);
1634
- -ms-transform: translate(0, -150%);
1635
- -o-transform: translate(0, -150%);
1636
- transform: translate(0, -150%);
1637
- -webkit-transition: all 0.2s ease-out;
1638
- -moz-transition: all 0.2s ease-out;
1639
- transition: all 0.2s ease-out;
1640
- color: #fff;
1641
- padding: 0 20px;
1642
- }
454
+ .team-member-detail .social a.email{background-color:#4a7f45;}
455
+ .box-simple{text-align:center;margin-bottom:40px;}
456
+ .box-simple .icon{color:#467fbf;border-color:#467fbf;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
457
+ .box-simple h3{font-weight:normal;font-size:18px;text-transform:uppercase;line-height:1.5;color:#555555;font-weight:800;letter-spacing:0.08em;}
458
+ .box-simple h3 a{color:#555555;}
459
+ .box-simple p{color:#999999;}
460
+ .box-simple:hover .icon{-webkit-transform:scale(1.1, 1.1);-ms-transform:scale(1.1, 1.1);-o-transform:scale(1.1, 1.1);transform:scale(1.1, 1.1);}
461
+ .box-simple:hover .icon i{-webkit-transform:scale(1, 1);-ms-transform:scale(1, 1);-o-transform:scale(1, 1);transform:scale(1, 1);}
462
+ .box-simple.box-white{padding:20px;border:dotted 1px #999999;}
463
+ .box-simple.box-white .icon{color:#555555;border-color:transparent;font-size:70px;}
464
+ .box-simple.box-dark{padding:20px;border:dotted 1px #999999;background:#555555;color:#fff;}
465
+ .box-simple.box-dark .icon{color:#f7f7f7;border-color:transparent;font-size:70px;}
466
+ .box-simple.box-dark h3{color:#fff;}
467
+ .box-simple.box-dark h3 a{color:#fff;}
468
+ .box-simple.box-dark p{color:#fff;}
469
+ .box-image{position:relative;overflow:hidden;text-align:center;margin:15px 0;}
470
+ .box-image .bg{position:absolute;top:auto;bottom:0;width:100%;height:100%;opacity:0;filter:alpha(opacity=0);background:#467fbf;}
471
+ .box-image .name{position:absolute;width:100%;height:50%;bottom:0;-webkit-transform:translate(0, 100%);-ms-transform:translate(0, 100%);-o-transform:translate(0, 100%);transform:translate(0, 100%);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;color:#fff;padding:0 20px;}
472
+ .box-image .name h3{color:#fff;text-transform:uppercase;font-size:18px;letter-spacing:0.08em;}
473
+ .box-image .name h3 a{color:#fff;text-decoration:none;}
474
+ .box-image .text{position:absolute;width:100%;height:50%;top:0;-webkit-transform:translate(0, -150%);-ms-transform:translate(0, -150%);-o-transform:translate(0, -150%);transform:translate(0, -150%);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;color:#fff;padding:0 20px;}
475
+ .box-image:hover .bg{opacity:0.7;filter:alpha(opacity=70);}
476
+ .box-image:hover .name{position:absolute;-webkit-transform:translate(0, -75%);-ms-transform:translate(0, -75%);-o-transform:translate(0, -75%);transform:translate(0, -75%);}
477
+ .box-image:hover .text{position:absolute;-webkit-transform:translate(0, 100%);-ms-transform:translate(0, 100%);-o-transform:translate(0, 100%);transform:translate(0, 100%);}
478
+ .box-image-text{position:relative;overflow:hidden;text-align:center;margin:15px 0;}
479
+ .box-image-text .top{position:relative;margin-bottom:10px;}
480
+ .box-image-text .top .bg{position:absolute;top:auto;bottom:0;width:100%;height:100%;opacity:0;filter:alpha(opacity=0);background:#467fbf;}
481
+ .box-image-text .top .name{position:absolute;width:100%;height:50%;bottom:0;-webkit-transform:translate(0, 100%);-ms-transform:translate(0, 100%);-o-transform:translate(0, 100%);transform:translate(0, 100%);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;color:#fff;padding:0 20px;}
482
+ .box-image-text .top .name h3{color:#fff;text-transform:uppercase;font-size:18px;letter-spacing:0.08em;}
483
+ .box-image-text .top .name h3 a{color:#fff;text-decoration:none;}
484
+ .box-image-text .top .text{position:absolute;width:100%;height:50%;top:0;-webkit-transform:translate(0, -150%);-ms-transform:translate(0, -150%);-o-transform:translate(0, -150%);transform:translate(0, -150%);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;color:#fff;padding:0 20px;}
1643
485
  .box-image-text .content h3,
1644
- .box-image-text .content h4 {
1645
- text-transform: uppercase;
1646
- line-height: 1.5;
1647
- color: #555555;
1648
- font-weight: 800;
1649
- letter-spacing: 0.08em;
1650
- }
1651
- .box-image-text .content p {
1652
- color: #999999;
1653
- }
1654
- .box-image-text:hover .bg {
1655
- opacity: 0.7;
1656
- filter: alpha(opacity=70);
1657
- }
1658
- .box-image-text:hover .name {
1659
- position: absolute;
1660
- -webkit-transform: translate(0, -75%);
1661
- -ms-transform: translate(0, -75%);
1662
- -o-transform: translate(0, -75%);
1663
- transform: translate(0, -75%);
1664
- }
1665
- .box-image-text:hover .text {
1666
- position: absolute;
1667
- -webkit-transform: translate(0, 100%);
1668
- -ms-transform: translate(0, 100%);
1669
- -o-transform: translate(0, 100%);
1670
- transform: translate(0, 100%);
1671
- }
1672
- /* universal box */
1673
- .box {
1674
- background: #fff;
1675
- margin: 0 0 30px;
1676
- border: solid 1px #ccc;
1677
- -webkit-box-sizing: border-box;
1678
- -moz-box-sizing: border-box;
1679
- box-sizing: border-box;
1680
- padding: 20px 0;
1681
- border-left: none;
1682
- border-right: none;
1683
- }
1684
- .box .box-header {
1685
- background: #f7f7f7;
1686
- margin: -20px 0 20px;
1687
- padding: 20px;
1688
- border-bottom: solid 1px #eeeeee;
1689
- text-transform: uppercase;
1690
- letter-spacing: 0.08em;
1691
- }
486
+ .box-image-text .content h4{text-transform:uppercase;line-height:1.5;color:#555555;font-weight:800;letter-spacing:0.08em;}
487
+ .box-image-text .content p{color:#999999;}
488
+ .box-image-text:hover .bg{opacity:0.7;filter:alpha(opacity=70);}
489
+ .box-image-text:hover .name{position:absolute;-webkit-transform:translate(0, -75%);-ms-transform:translate(0, -75%);-o-transform:translate(0, -75%);transform:translate(0, -75%);}
490
+ .box-image-text:hover .text{position:absolute;-webkit-transform:translate(0, 100%);-ms-transform:translate(0, 100%);-o-transform:translate(0, 100%);transform:translate(0, 100%);}
491
+ .box{background:#fff;margin:0 0 30px;border:solid 1px #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:20px 0;border-left:none;border-right:none;}
492
+ .box .box-header{background:#f7f7f7;margin:-20px 0 20px;padding:20px;border-bottom:solid 1px #eeeeee;text-transform:uppercase;letter-spacing:0.08em;}
1692
493
  .box .box-header:before,
1693
- .box .box-header:after {
1694
- content: " ";
1695
- display: table;
1696
- }
1697
- .box .box-header:after {
1698
- clear: both;
1699
- }
494
+ .box .box-header:after{content:" ";display:table;}
495
+ .box .box-header:after{clear:both;}
1700
496
  .box .box-header:before,
1701
- .box .box-header:after {
1702
- content: " ";
1703
- display: table;
1704
- }
1705
- .box .box-header:after {
1706
- clear: both;
1707
- }
1708
- .box .box-footer {
1709
- background: #f7f7f7;
1710
- margin: 30px 0 -20px;
1711
- padding: 20px;
1712
- border-top: solid 1px #eeeeee;
1713
- }
497
+ .box .box-header:after{content:" ";display:table;}
498
+ .box .box-header:after{clear:both;}
499
+ .box .box-footer{background:#f7f7f7;margin:30px 0 -20px;padding:20px;border-top:solid 1px #eeeeee;}
1714
500
  .box .box-footer:before,
1715
- .box .box-footer:after {
1716
- content: " ";
1717
- display: table;
1718
- }
1719
- .box .box-footer:after {
1720
- clear: both;
1721
- }
501
+ .box .box-footer:after{content:" ";display:table;}
502
+ .box .box-footer:after{clear:both;}
1722
503
  .box .box-footer:before,
1723
- .box .box-footer:after {
1724
- content: " ";
1725
- display: table;
1726
- }
1727
- .box .box-footer:after {
1728
- clear: both;
1729
- }
1730
- @media (max-width: 991px) {
1731
- .box .box-footer .btn {
1732
- margin-bottom: 20px;
1733
- }
1734
- }
1735
- .box.no-border {
1736
- border: none;
1737
- }
1738
- #heading-breadcrumbs {
1739
- background: url('../img/texture-bw.png') center center repeat;
1740
- padding: 20px 0;
1741
- margin-bottom: 40px;
1742
- }
1743
- #heading-breadcrumbs.no-mb {
1744
- margin-bottom: 0;
1745
- }
1746
- #heading-breadcrumbs h1 {
1747
- color: #333333;
1748
- text-transform: uppercase;
1749
- font-size: 30px;
1750
- font-weight: 700;
1751
- letter-spacing: 0.08em;
1752
- }
1753
- @media (max-width: 991px) {
1754
- #heading-breadcrumbs h1 {
1755
- text-align: center;
1756
- }
1757
- }
1758
- #heading-breadcrumbs ul.breadcrumb {
1759
- margin-top: 5px;
1760
- margin-bottom: 0;
1761
- }
1762
- .bar {
1763
- position: relative;
1764
- background: #467fbf;
1765
- padding: 60px 0;
1766
- }
1767
- .bar.background-pentagon {
1768
- background: url('../img/texture-bw.png') center center repeat;
1769
- border-top: solid 1px #999999;
1770
- border-bottom: solid 1px #999999;
1771
- }
1772
- .bar.background-gray {
1773
- background: #eeeeee;
1774
- }
1775
- .bar.background-gray-dark {
1776
- background: #555555;
1777
- }
1778
- .bar.background-white {
1779
- background: #fff;
1780
- }
1781
- .bar.background-image-fixed-1 {
1782
- background: url('../img/fixed-background-1.jpg') center top no-repeat;
1783
- background-attachment: fixed;
1784
- background-size: cover;
1785
- }
1786
- .bar.background-image-fixed-2 {
1787
- background: url('../img/fixed-background-2.jpg') center top no-repeat;
1788
- background-attachment: fixed;
1789
- background-size: cover;
1790
- }
504
+ .box .box-footer:after{content:" ";display:table;}
505
+ .box .box-footer:after{clear:both;}
506
+ @media (max-width:991px){.box .box-footer .btn{margin-bottom:20px;}
507
+ }
508
+ .box.no-border{border:none;}
509
+ #heading-breadcrumbs{background:url('../img/texture-bw.png') center center repeat;padding:20px 0;margin-bottom:40px;}
510
+ #heading-breadcrumbs.no-mb{margin-bottom:0;}
511
+ #heading-breadcrumbs h1{color:#333333;text-transform:uppercase;font-size:30px;font-weight:700;letter-spacing:0.08em;}
512
+ @media (max-width:991px){#heading-breadcrumbs h1{text-align:center;}
513
+ }
514
+ #heading-breadcrumbs ul.breadcrumb{margin-top:5px;margin-bottom:0;}
515
+ .bar{position:relative;background:#467fbf;padding:60px 0;}
516
+ .bar.background-pentagon{background:url('../img/texture-bw.png') center center repeat;border-top:solid 1px #999999;border-bottom:solid 1px #999999;}
517
+ .bar.background-gray{background:#eeeeee;}
518
+ .bar.background-gray-dark{background:#555555;}
519
+ .bar.background-white{background:#fff;}
520
+ .bar.background-image-fixed-1{background:url('../img/fixed-background-1.jpg') center top no-repeat;background-attachment:fixed;background-size:cover;}
521
+ .bar.background-image-fixed-2{background:url('../img/fixed-background-2.jpg') center top no-repeat;background-attachment:fixed;background-size:cover;}
1791
522
  .bar.color-white h1,
1792
523
  .bar.color-white h2,
1793
524
  .bar.color-white h3,
1794
525
  .bar.color-white h4,
1795
526
  .bar.color-white h5,
1796
527
  .bar.color-white h6,
1797
- .bar.color-white p {
1798
- color: #fff;
1799
- }
1800
- .bar.padding-big {
1801
- padding: 50px 0;
1802
- }
1803
- .bar.padding-horizontal {
1804
- padding-left: 30px;
1805
- padding-right: 30px;
1806
- }
1807
- .bar.margin-vertical {
1808
- margin-top: 20px;
1809
- margin-bottom: 20px;
1810
- }
1811
- .bar .dark-mask {
1812
- position: absolute;
1813
- top: 0;
1814
- left: 0;
1815
- width: 100%;
1816
- height: 100%;
1817
- background: #000;
1818
- opacity: 0.3;
1819
- filter: alpha(opacity=30);
1820
- }
1821
- .portfolio.no-space {
1822
- padding: 0 15px;
1823
- }
1824
- .portfolio.no-space .box-image {
1825
- margin: 0 -15px;
1826
- }
1827
- .portfolio-project .project-more h4 {
1828
- color: #555555;
1829
- text-transform: uppercase;
1830
- margin-bottom: 0;
1831
- text-align: left;
1832
- font-size: 14px;
1833
- letter-spacing: 0.08em;
1834
- }
1835
- .portfolio-project .project-more p {
1836
- color: #999999;
1837
- padding: 10px 0;
1838
- margin-bottom: 20px;
1839
- text-align: left;
1840
- }
1841
- .portfolio-showcase {
1842
- margin: 15px 0 60px;
1843
- }
1844
- .portfolio-showcase h3 a {
1845
- text-transform: uppercase;
1846
- line-height: 1.5;
1847
- letter-spacing: 0.08em;
1848
- }
1849
- .portfolio-showcase p.lead {
1850
- color: #555555;
1851
- margin-bottom: 20px;
1852
- }
1853
- .portfolio-showcase p {
1854
- color: #999999;
1855
- }
1856
- .portfolio-showcase p.buttons {
1857
- margin-top: 40px;
1858
- }
1859
- .see-more {
1860
- text-align: center;
1861
- margin-top: 20px;
1862
- padding-top: 20px;
1863
- }
1864
- .see-more p {
1865
- font-size: 28px;
1866
- font-weight: 100;
1867
- margin-bottom: 20px;
1868
- }
1869
- .showcase .item {
1870
- text-align: center;
1871
- }
1872
- .showcase .item .icon {
1873
- display: inline-block;
1874
- width: 50px;
1875
- height: 50px;
1876
- color: #555555;
1877
- line-height: 50px;
1878
- border-radius: 25px;
1879
- border: solid 1px #555555;
1880
- }
1881
- .showcase .item h4 {
1882
- color: #555555;
1883
- text-transform: uppercase;
1884
- letter-spacing: 0.08em;
1885
- line-height: 1.5;
1886
- font-size: 16px;
1887
- }
1888
- .showcase .item h4 span {
1889
- font-weight: bold;
1890
- font-size: 51px;
1891
- }
1892
- .packages .package {
1893
- background: #fff;
1894
- margin-top: 25px;
1895
- margin-bottom: 20px;
1896
- padding-bottom: 15px;
1897
- text-align: center;
1898
- border: solid 1px #467fbf;
1899
- overflow: hidden;
1900
- }
1901
- .packages .package .package-header {
1902
- height: 57px;
1903
- color: #fff;
1904
- line-height: 57px;
1905
- background: #467fbf;
1906
- }
1907
- .packages .package .package-header h5 {
1908
- color: #fff;
1909
- text-transform: uppercase;
1910
- font-weight: bold;
1911
- line-height: 57px;
1912
- margin: 0;
1913
- letter-spacing: 0.08em;
1914
- }
1915
- .packages .package .package-header.light-gray {
1916
- background: #eeeeee;
1917
- }
1918
- .packages .package .package-header.light-gray h5 {
1919
- color: #555555;
1920
- }
1921
- .packages .package .price {
1922
- line-height: 120px;
1923
- height: 100px;
1924
- color: #fff;
1925
- font-weight: 400;
1926
- }
1927
- .packages .package .price h4 {
1928
- display: inline;
1929
- font-size: 50px;
1930
- line-height: normal;
1931
- margin-bottom: 0;
1932
- }
1933
- .packages .package .price .period {
1934
- line-height: normal;
1935
- color: #999999;
1936
- }
1937
- .packages .package ul {
1938
- padding: 0;
1939
- }
1940
- .packages .package ul li {
1941
- list-style-type: none;
1942
- padding-top: 10px;
1943
- padding-bottom: 10px;
1944
- width: 80%;
1945
- margin: auto;
1946
- border-bottom: 1px dotted #ccc;
1947
- }
1948
- .packages .package ul li:last-child {
1949
- border-bottom: 0;
1950
- }
1951
- .packages .package ul li i {
1952
- font-size: 13px;
1953
- margin-right: 5px;
1954
- }
1955
- .packages .best-value .package {
1956
- margin-top: 0;
1957
- padding-bottom: 40px;
1958
- }
1959
- .packages .best-value .package .package-header {
1960
- height: 72px;
1961
- padding-top: 17px;
1962
- height: 82px !important;
1963
- }
1964
- .packages .best-value .package .package-header h5 {
1965
- font-weight: bold;
1966
- line-height: 29px;
1967
- text-transform: uppercase;
1968
- letter-spacing: 0.08em;
1969
- }
1970
- .packages .best-value .package .package-header .meta-text {
1971
- font-size: 13px;
1972
- line-height: 15px;
1973
- }
1974
- #map {
1975
- height: 300px;
1976
- }
1977
- #map.with-border {
1978
- border-top: solid 1px #467fbf;
1979
- border-bottom: solid 1px #467fbf;
1980
- }
528
+ .bar.color-white p{color:#fff;}
529
+ .bar.padding-big{padding:50px 0;}
530
+ .bar.padding-horizontal{padding-left:30px;padding-right:30px;}
531
+ .bar.margin-vertical{margin-top:20px;margin-bottom:20px;}
532
+ .bar .dark-mask{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.3;filter:alpha(opacity=30);}
533
+ .portfolio.no-space{padding:0 15px;}
534
+ .portfolio.no-space .box-image{margin:0 -15px;}
535
+ .portfolio-project .project-more h4{color:#555555;text-transform:uppercase;margin-bottom:0;text-align:left;font-size:14px;letter-spacing:0.08em;}
536
+ .portfolio-project .project-more p{color:#999999;padding:10px 0;margin-bottom:20px;text-align:left;}
537
+ .portfolio-showcase{margin:15px 0 60px;}
538
+ .portfolio-showcase h3 a{text-transform:uppercase;line-height:1.5;letter-spacing:0.08em;}
539
+ .portfolio-showcase p.lead{color:#555555;margin-bottom:20px;}
540
+ .portfolio-showcase p{color:#999999;}
541
+ .portfolio-showcase p.buttons{margin-top:40px;}
542
+ .see-more{text-align:center;margin-top:20px;padding-top:20px;}
543
+ .see-more p{font-size:28px;font-weight:100;margin-bottom:20px;}
544
+ .showcase .item{text-align:center;}
545
+ .showcase .item .icon{display:inline-block;width:50px;height:50px;color:#555555;line-height:50px;border-radius:25px;border:solid 1px #555555;}
546
+ .showcase .item h4{color:#555555;text-transform:uppercase;letter-spacing:0.08em;line-height:1.5;font-size:16px;}
547
+ .showcase .item h4 span{font-weight:bold;font-size:51px;}
548
+ .packages .package{background:#fff;margin-top:25px;margin-bottom:20px;padding-bottom:15px;text-align:center;border:solid 1px #467fbf;overflow:hidden;}
549
+ .packages .package .package-header{height:57px;color:#fff;line-height:57px;background:#467fbf;}
550
+ .packages .package .package-header h5{color:#fff;text-transform:uppercase;font-weight:bold;line-height:57px;margin:0;letter-spacing:0.08em;}
551
+ .packages .package .package-header.light-gray{background:#eeeeee;}
552
+ .packages .package .package-header.light-gray h5{color:#555555;}
553
+ .packages .package .price{line-height:120px;height:100px;color:#fff;font-weight:400;}
554
+ .packages .package .price h4{display:inline;font-size:50px;line-height:normal;margin-bottom:0;}
555
+ .packages .package .price .period{line-height:normal;color:#999999;}
556
+ .packages .package ul{padding:0;}
557
+ .packages .package ul li{list-style-type:none;padding-top:10px;padding-bottom:10px;width:80%;margin:auto;border-bottom:1px dotted #ccc;}
558
+ .packages .package ul li:last-child{border-bottom:0;}
559
+ .packages .package ul li i{font-size:13px;margin-right:5px;}
560
+ .packages .best-value .package{margin-top:0;padding-bottom:40px;}
561
+ .packages .best-value .package .package-header{height:72px;padding-top:17px;height:82px !important;}
562
+ .packages .best-value .package .package-header h5{font-weight:bold;line-height:29px;text-transform:uppercase;letter-spacing:0.08em;}
563
+ .packages .best-value .package .package-header .meta-text{font-size:13px;line-height:15px;}
564
+ #map{height:300px;}
565
+ #map.with-border{border-top:solid 1px #467fbf;border-bottom:solid 1px #467fbf;}
1981
566
  #blog-listing-big .post,
1982
- #blog-homepage .post {
1983
- margin-bottom: 60px;
1984
- }
567
+ #blog-homepage .post{margin-bottom:60px;}
1985
568
  #blog-listing-big .post h2,
1986
569
  #blog-homepage .post h2,
1987
570
  #blog-listing-big .post h4,
1988
- #blog-homepage .post h4 {
1989
- text-transform: uppercase;
1990
- letter-spacing: 0.08em;
1991
- }
571
+ #blog-homepage .post h4{text-transform:uppercase;letter-spacing:0.08em;}
1992
572
  #blog-listing-big .post h2 a,
1993
573
  #blog-homepage .post h2 a,
1994
574
  #blog-listing-big .post h4 a,
1995
- #blog-homepage .post h4 a {
1996
- color: #555555;
1997
- }
575
+ #blog-homepage .post h4 a{color:#555555;}
1998
576
  #blog-listing-big .post h2 a:hover,
1999
577
  #blog-homepage .post h2 a:hover,
2000
578
  #blog-listing-big .post h4 a:hover,
2001
- #blog-homepage .post h4 a:hover {
2002
- color: #467fbf;
2003
- }
579
+ #blog-homepage .post h4 a:hover{color:#467fbf;}
2004
580
  #blog-listing-big .post .author-category,
2005
- #blog-homepage .post .author-category {
2006
- color: #999999;
2007
- text-transform: uppercase;
2008
- font-weight: 300;
2009
- letter-spacing: 0.08em;
2010
- }
581
+ #blog-homepage .post .author-category{color:#999999;text-transform:uppercase;font-weight:300;letter-spacing:0.08em;}
2011
582
  #blog-listing-big .post .author-category a,
2012
- #blog-homepage .post .author-category a {
2013
- font-weight: 500;
2014
- }
583
+ #blog-homepage .post .author-category a{font-weight:500;}
2015
584
  #blog-listing-big .post .date-comments a,
2016
- #blog-homepage .post .date-comments a {
2017
- color: #999999;
2018
- margin-right: 20px;
2019
- }
585
+ #blog-homepage .post .date-comments a{color:#999999;margin-right:20px;}
2020
586
  #blog-listing-big .post .date-comments a:hover,
2021
- #blog-homepage .post .date-comments a:hover {
2022
- color: #467fbf;
2023
- }
2024
- @media (min-width: 768px) {
2025
- #blog-listing-big .post .date-comments,
2026
- #blog-homepage .post .date-comments {
2027
- text-align: right;
2028
- }
587
+ #blog-homepage .post .date-comments a:hover{color:#467fbf;}
588
+ @media (min-width:768px){#blog-listing-big .post .date-comments,
589
+ #blog-homepage .post .date-comments{text-align:right;}
2029
590
  }
2030
591
  #blog-listing-big .post .intro,
2031
- #blog-homepage .post .intro {
2032
- text-align: left;
2033
- }
592
+ #blog-homepage .post .intro{text-align:left;}
2034
593
  #blog-listing-big .post .image,
2035
- #blog-homepage .post .image {
2036
- margin-bottom: 10px;
2037
- overflow: hidden;
2038
- }
594
+ #blog-homepage .post .image{margin-bottom:10px;overflow:hidden;}
2039
595
  #blog-listing-big .post .image img,
2040
- #blog-homepage .post .image img {
2041
- -webkit-transition: all 0.2s ease-out;
2042
- -moz-transition: all 0.2s ease-out;
2043
- transition: all 0.2s ease-out;
2044
- }
2045
- @media (max-width: 767px) {
2046
- #blog-listing-big .post .image img.img-responsive,
2047
- #blog-homepage .post .image img.img-responsive {
2048
- min-width: 100%;
2049
- }
596
+ #blog-homepage .post .image img{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
597
+ @media (max-width:767px){#blog-listing-big .post .image img.img-responsive,
598
+ #blog-homepage .post .image img.img-responsive{min-width:100%;}
2050
599
  }
2051
600
  #blog-listing-big .post .video,
2052
- #blog-homepage .post .video {
2053
- margin-bottom: 10px;
2054
- }
601
+ #blog-homepage .post .video{margin-bottom:10px;}
2055
602
  #blog-listing-big .post .read-more,
2056
- #blog-homepage .post .read-more {
2057
- text-align: right;
2058
- }
2059
- #blog-listing-medium .post {
2060
- margin-bottom: 60px;
2061
- }
2062
- #blog-listing-medium .post h2 {
2063
- text-transform: uppercase;
2064
- margin: 0 0 10px;
2065
- font-size: 24px;
2066
- letter-spacing: 0.08em;
2067
- }
2068
- #blog-listing-medium .post h2 a {
2069
- color: #555555;
2070
- }
2071
- #blog-listing-medium .post h2 a:hover {
2072
- color: #467fbf;
2073
- }
2074
- #blog-listing-medium .post .author-category {
2075
- float: left;
2076
- color: #999999;
2077
- text-transform: uppercase;
2078
- font-weight: 300;
2079
- font-size: 12px;
2080
- letter-spacing: 0.08em;
2081
- }
2082
- #blog-listing-medium .post .author-category a {
2083
- font-weight: 500;
2084
- }
2085
- #blog-listing-medium .post .date-comments {
2086
- float: right;
2087
- font-size: 12px;
2088
- }
2089
- #blog-listing-medium .post .date-comments a {
2090
- color: #999999;
2091
- margin-right: 20px;
2092
- }
2093
- #blog-listing-medium .post .date-comments a:hover {
2094
- color: #467fbf;
2095
- }
2096
- @media (min-width: 768px) {
2097
- #blog-listing-medium .post .date-comments {
2098
- text-align: right;
2099
- }
2100
- }
2101
- #blog-listing-medium .post .intro {
2102
- text-align: left;
2103
- }
603
+ #blog-homepage .post .read-more{text-align:right;}
604
+ #blog-listing-medium .post{margin-bottom:60px;}
605
+ #blog-listing-medium .post h2{text-transform:uppercase;margin:0 0 10px;font-size:24px;letter-spacing:0.08em;}
606
+ #blog-listing-medium .post h2 a{color:#555555;}
607
+ #blog-listing-medium .post h2 a:hover{color:#467fbf;}
608
+ #blog-listing-medium .post .author-category{float:left;color:#999999;text-transform:uppercase;font-weight:300;font-size:12px;letter-spacing:0.08em;}
609
+ #blog-listing-medium .post .author-category a{font-weight:500;}
610
+ #blog-listing-medium .post .date-comments{float:right;font-size:12px;}
611
+ #blog-listing-medium .post .date-comments a{color:#999999;margin-right:20px;}
612
+ #blog-listing-medium .post .date-comments a:hover{color:#467fbf;}
613
+ @media (min-width:768px){#blog-listing-medium .post .date-comments{text-align:right;}
614
+ }
615
+ #blog-listing-medium .post .intro{text-align:left;}
2104
616
  #blog-listing-medium .post .clearfix:before,
2105
617
  #blog-listing-medium .post .clearfix:after,
2106
618
  #blog-listing-medium .post .navbar:before,
2107
619
  #blog-listing-medium .post .navbar:after,
2108
620
  #blog-listing-medium .post .navbar-header:before,
2109
- #blog-listing-medium .post .navbar-header:after {
2110
- content: " ";
2111
- display: table;
2112
- }
621
+ #blog-listing-medium .post .navbar-header:after{content:" ";display:table;}
2113
622
  #blog-listing-medium .post .clearfix:after,
2114
623
  #blog-listing-medium .post .navbar:after,
2115
- #blog-listing-medium .post .navbar-header:after {
2116
- clear: both;
2117
- }
624
+ #blog-listing-medium .post .navbar-header:after{clear:both;}
2118
625
  #blog-listing-medium .post .clearfix:before,
2119
626
  #blog-listing-medium .post .clearfix:after,
2120
627
  #blog-listing-medium .post .navbar:before,
2121
628
  #blog-listing-medium .post .navbar:after,
2122
629
  #blog-listing-medium .post .navbar-header:before,
2123
- #blog-listing-medium .post .navbar-header:after {
2124
- content: " ";
2125
- display: table;
2126
- }
630
+ #blog-listing-medium .post .navbar-header:after{content:" ";display:table;}
2127
631
  #blog-listing-medium .post .clearfix:after,
2128
632
  #blog-listing-medium .post .navbar:after,
2129
- #blog-listing-medium .post .navbar-header:after {
2130
- clear: both;
2131
- }
2132
- #blog-listing-medium .post .image {
2133
- margin-bottom: 10px;
2134
- overflow: hidden;
2135
- }
2136
- #blog-listing-medium .post .image img {
2137
- -webkit-transition: all 0.2s ease-out;
2138
- -moz-transition: all 0.2s ease-out;
2139
- transition: all 0.2s ease-out;
2140
- }
2141
- @media (max-width: 767px) {
2142
- #blog-listing-medium .post .image img.img-responsive {
2143
- min-width: 100%;
2144
- }
2145
- }
2146
- #blog-listing-medium .post .video {
2147
- margin-bottom: 10px;
2148
- }
2149
- #blog-listing-medium .post .read-more {
2150
- text-align: right;
2151
- }
2152
- .box-image-text.blog .author-category {
2153
- color: #999999;
2154
- text-transform: uppercase;
2155
- letter-spacing: 0.08em;
2156
- font-weight: 300;
2157
- font-size: 12px;
2158
- }
2159
- .box-image-text.blog .author-category a {
2160
- font-weight: 500;
2161
- }
2162
- .box-image-text.blog .intro {
2163
- text-align: left;
2164
- margin-bottom: 20px;
2165
- }
2166
- #blog-homepage .post {
2167
- margin-bottom: 30px;
2168
- }
633
+ #blog-listing-medium .post .navbar-header:after{clear:both;}
634
+ #blog-listing-medium .post .image{margin-bottom:10px;overflow:hidden;}
635
+ #blog-listing-medium .post .image img{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
636
+ @media (max-width:767px){#blog-listing-medium .post .image img.img-responsive{min-width:100%;}
637
+ }
638
+ #blog-listing-medium .post .video{margin-bottom:10px;}
639
+ #blog-listing-medium .post .read-more{text-align:right;}
640
+ .box-image-text.blog .author-category{color:#999999;text-transform:uppercase;letter-spacing:0.08em;font-weight:300;font-size:12px;}
641
+ .box-image-text.blog .author-category a{font-weight:500;}
642
+ .box-image-text.blog .intro{text-align:left;margin-bottom:20px;}
643
+ #blog-homepage .post{margin-bottom:30px;}
2169
644
  #blog-homepage .post h2,
2170
645
  #blog-homepage .post h4,
2171
646
  #blog-homepage .post .author-category,
2172
- #blog-homepage .post .read-more {
2173
- text-align: center;
2174
- }
2175
- #blog-homepage .post .read-more {
2176
- margin-top: 20px;
2177
- }
2178
- #blog-post #post-content {
2179
- margin-bottom: 20px;
2180
- }
2181
- #blog-post .comment {
2182
- margin-bottom: 25px;
2183
- }
647
+ #blog-homepage .post .read-more{text-align:center;}
648
+ #blog-homepage .post .read-more{margin-top:20px;}
649
+ #blog-post #post-content{margin-bottom:20px;}
650
+ #blog-post .comment{margin-bottom:25px;}
2184
651
  #blog-post .comment:before,
2185
- #blog-post .comment:after {
2186
- content: " ";
2187
- display: table;
2188
- }
2189
- #blog-post .comment:after {
2190
- clear: both;
2191
- }
652
+ #blog-post .comment:after{content:" ";display:table;}
653
+ #blog-post .comment:after{clear:both;}
2192
654
  #blog-post .comment:before,
2193
- #blog-post .comment:after {
2194
- content: " ";
2195
- display: table;
2196
- }
2197
- #blog-post .comment:after {
2198
- clear: both;
2199
- }
2200
- #blog-post .comment .posted {
2201
- color: #999999;
2202
- font-size: 12px;
2203
- }
2204
- #blog-post .comment .reply {
2205
- font-family: "Roboto", Helvetica, Arial, sans-serif;
2206
- }
2207
- #blog-post .comment.last {
2208
- margin-bottom: 0;
2209
- }
655
+ #blog-post .comment:after{content:" ";display:table;}
656
+ #blog-post .comment:after{clear:both;}
657
+ #blog-post .comment .posted{color:#999999;font-size:12px;}
658
+ #blog-post .comment .reply{font-family:"Roboto", Helvetica, Arial, sans-serif;}
659
+ #blog-post .comment.last{margin-bottom:0;}
2210
660
  #blog-post #comments,
2211
- #blog-post #comment-form {
2212
- padding: 20px 0;
2213
- margin-top: 20px;
2214
- border-top: solid 1px #eeeeee;
2215
- }
661
+ #blog-post #comment-form{padding:20px 0;margin-top:20px;border-top:solid 1px #eeeeee;}
2216
662
  #blog-post #comments:before,
2217
663
  #blog-post #comment-form:before,
2218
664
  #blog-post #comments:after,
2219
- #blog-post #comment-form:after {
2220
- content: " ";
2221
- display: table;
2222
- }
665
+ #blog-post #comment-form:after{content:" ";display:table;}
2223
666
  #blog-post #comments:after,
2224
- #blog-post #comment-form:after {
2225
- clear: both;
2226
- }
667
+ #blog-post #comment-form:after{clear:both;}
2227
668
  #blog-post #comments:before,
2228
669
  #blog-post #comment-form:before,
2229
670
  #blog-post #comments:after,
2230
- #blog-post #comment-form:after {
2231
- content: " ";
2232
- display: table;
2233
- }
671
+ #blog-post #comment-form:after{content:" ";display:table;}
2234
672
  #blog-post #comments:after,
2235
- #blog-post #comment-form:after {
2236
- clear: both;
2237
- }
673
+ #blog-post #comment-form:after{clear:both;}
2238
674
  #blog-post #comments h4,
2239
- #blog-post #comment-form h4 {
2240
- margin-bottom: 20px;
2241
- }
2242
- #blog-post #comment-form {
2243
- margin-bottom: 20px;
2244
- }
2245
- .product {
2246
- background: #fff;
2247
- border-bottom: solid 1px #e6e6e6;
2248
- -webkit-box-sizing: border-box;
2249
- -moz-box-sizing: border-box;
2250
- box-sizing: border-box;
2251
- margin-bottom: 60px;
2252
- overflow: hidden;
2253
- text-align: center;
2254
- }
2255
- .product .image {
2256
- overflow: hidden;
2257
- }
2258
- .product .image img {
2259
- -webkit-transition: all 0.2s ease-out;
2260
- -moz-transition: all 0.2s ease-out;
2261
- transition: all 0.2s ease-out;
2262
- }
2263
- @media (max-width: 767px) {
2264
- .product .image img.img-responsive {
2265
- min-width: 100%;
2266
- }
2267
- }
2268
- .product .text {
2269
- padding: 10px;
2270
- }
2271
- .product .text h3 {
2272
- font-size: 14px;
2273
- font-weight: 700;
2274
- height: 39.6px;
2275
- text-transform: uppercase;
2276
- letter-spacing: 0.08em;
2277
- }
2278
- .product .text h3 a {
2279
- color: #555555;
2280
- }
2281
- .product .text h3 a:hover {
2282
- text-decoration: none;
2283
- }
2284
- .product .text p.price {
2285
- font-size: 18px;
2286
- }
2287
- .product .text p.price del {
2288
- color: #999999;
2289
- }
2290
- .product .buttons {
2291
- clear: both;
2292
- position: absolute;
2293
- display: none;
2294
- bottom: 0;
2295
- -webkit-box-sizing: border-box;
2296
- -moz-box-sizing: border-box;
2297
- box-sizing: border-box;
2298
- width: 100%;
2299
- border: solid 1px transparent;
2300
- padding: 20px;
2301
- background: rgba(255, 255, 255, 0.9);
2302
- -webkit-transition: all 0.2s ease-out;
2303
- -moz-transition: all 0.2s ease-out;
2304
- transition: all 0.2s ease-out;
2305
- text-align: center;
2306
- }
2307
- .product .buttons .btn {
2308
- margin-bottom: 20px;
2309
- }
2310
- .product:hover {
2311
- border-bottom: solid 1px #808080;
2312
- top: 0;
2313
- }
2314
- .product:hover .buttons {
2315
- clear: both;
2316
- position: absolute;
2317
- top: 0;
2318
- background: rgba(255, 255, 255, 0.5);
2319
- }
2320
- .product:hover .image img {
2321
- -webkit-transform: scale(1.1, 1.1);
2322
- -ms-transform: scale(1.1, 1.1);
2323
- -o-transform: scale(1.1, 1.1);
2324
- transform: scale(1.1, 1.1);
2325
- }
2326
- .goToDescription {
2327
- font-size: 12px;
2328
- text-align: center;
2329
- margin-bottom: 40px;
2330
- }
2331
- .goToDescription a {
2332
- color: #999999;
2333
- text-decoration: underline;
2334
- }
2335
- #productMain {
2336
- margin-bottom: 30px;
2337
- }
2338
- #productMain .sizes {
2339
- text-align: center;
2340
- }
2341
- #productMain .sizes h3 {
2342
- font-weight: 700;
2343
- letter-spacing: 0.08em;
2344
- text-transform: uppercase;
2345
- margin-bottom: 40px;
2346
- }
2347
- #productMain .sizes a {
2348
- display: inline-block;
2349
- width: 40px;
2350
- height: 40px;
2351
- border-radius: 40px;
2352
- background: #ccc;
2353
- line-height: 40px;
2354
- color: #555555;
2355
- text-align: center;
2356
- text-decoration: none;
2357
- font-family: "Roboto", Helvetica, Arial, sans-serif;
2358
- }
675
+ #blog-post #comment-form h4{margin-bottom:20px;}
676
+ #blog-post #comment-form{margin-bottom:20px;}
677
+ .product{background:#fff;border-bottom:solid 1px #e6e6e6;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:60px;overflow:hidden;text-align:center;}
678
+ .product .image{overflow:hidden;}
679
+ .product .image img{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
680
+ @media (max-width:767px){.product .image img.img-responsive{min-width:100%;}
681
+ }
682
+ .product .text{padding:10px;}
683
+ .product .text h3{font-size:14px;font-weight:700;height:39.6px;text-transform:uppercase;letter-spacing:0.08em;}
684
+ .product .text h3 a{color:#555555;}
685
+ .product .text h3 a:hover{text-decoration:none;}
686
+ .product .text p.price{font-size:18px;}
687
+ .product .text p.price del{color:#999999;}
688
+ .product .buttons{clear:both;position:absolute;display:none;bottom:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border:solid 1px transparent;padding:20px;background:rgba(255, 255, 255, 0.9);-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;text-align:center;}
689
+ .product .buttons .btn{margin-bottom:20px;}
690
+ .product:hover{border-bottom:solid 1px #808080;top:0;}
691
+ .product:hover .buttons{clear:both;position:absolute;top:0;background:rgba(255, 255, 255, 0.5);}
692
+ .product:hover .image img{-webkit-transform:scale(1.1, 1.1);-ms-transform:scale(1.1, 1.1);-o-transform:scale(1.1, 1.1);transform:scale(1.1, 1.1);}
693
+ .goToDescription{font-size:12px;text-align:center;margin-bottom:40px;}
694
+ .goToDescription a{color:#999999;text-decoration:underline;}
695
+ #productMain{margin-bottom:30px;}
696
+ #productMain .sizes{text-align:center;}
697
+ #productMain .sizes h3{font-weight:700;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:40px;}
698
+ #productMain .sizes a{display:inline-block;width:40px;height:40px;border-radius:40px;background:#ccc;line-height:40px;color:#555555;text-align:center;text-decoration:none;font-family:"Roboto", Helvetica, Arial, sans-serif;}
2359
699
  #productMain .sizes a.active,
2360
- #productMain .sizes a:hover {
2361
- background: #467fbf;
2362
- color: #fff;
2363
- }
2364
- #productMain .sizes input {
2365
- display: none;
2366
- }
2367
- #productMain .price {
2368
- font-size: 40px;
2369
- text-align: center;
2370
- margin-top: 40px;
2371
- margin-bottom: 40px;
2372
- }
2373
- #thumbs a {
2374
- display: block;
2375
- border: solid 1px transparent;
2376
- }
2377
- #thumbs a.active {
2378
- border-color: #467fbf;
2379
- }
2380
- #product-social {
2381
- text-align: center;
2382
- }
2383
- #product-social h4 {
2384
- font-weight: 300;
2385
- margin-bottom: 10px;
2386
- }
2387
- #product-social p {
2388
- line-height: 26px;
2389
- }
2390
- #product-social p a {
2391
- margin: 0 10px 0 0;
2392
- color: #fff;
2393
- display: inline-block;
2394
- width: 26px;
2395
- height: 26px;
2396
- border-radius: 13px;
2397
- line-height: 26px;
2398
- font-size: 15px;
2399
- text-align: center;
2400
- -webkit-transition: all 0.2s ease-out;
2401
- -moz-transition: all 0.2s ease-out;
2402
- transition: all 0.2s ease-out;
2403
- vertical-align: bottom;
2404
- }
2405
- #product-social p a i {
2406
- vertical-align: bottom;
2407
- line-height: 26px;
2408
- }
2409
- #product-social p a.linkedin {
2410
- background-color: #0e76a8;
2411
- }
2412
- #product-social p a.facebook {
2413
- background-color: #4460ae;
2414
- }
2415
- #product-social p a.gplus {
2416
- background-color: #c21f25;
2417
- }
2418
- #product-social p a.twitter {
2419
- background-color: #3cf;
2420
- }
2421
- #product-social p a.instagram {
2422
- background-color: #cd4378;
2423
- }
2424
- #product-social p a.email {
2425
- background-color: #4a7f45;
2426
- }
2427
- @media (max-width: 991px) {
2428
- #product-social {
2429
- text-align: center;
2430
- }
2431
- }
2432
- #checkout .nav {
2433
- margin-bottom: 20px;
2434
- border-bottom: solid 1px #467fbf;
2435
- }
2436
- #checkout .nav li {
2437
- height: 100%;
2438
- }
2439
- #checkout .nav li a {
2440
- display: block;
2441
- height: 100%;
2442
- }
2443
- #order-summary table {
2444
- margin-top: 20px;
2445
- }
2446
- #order-summary table td {
2447
- color: #999999;
2448
- }
700
+ #productMain .sizes a:hover{background:#467fbf;color:#fff;}
701
+ #productMain .sizes input{display:none;}
702
+ #productMain .price{font-size:40px;text-align:center;margin-top:40px;margin-bottom:40px;}
703
+ #thumbs a{display:block;border:solid 1px transparent;}
704
+ #thumbs a.active{border-color:#467fbf;}
705
+ #product-social{text-align:center;}
706
+ #product-social h4{font-weight:300;margin-bottom:10px;}
707
+ #product-social p{line-height:26px;}
708
+ #product-social p a{margin:0 10px 0 0;color:#fff;display:inline-block;width:26px;height:26px;border-radius:13px;line-height:26px;font-size:15px;text-align:center;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;vertical-align:bottom;}
709
+ #product-social p a i{vertical-align:bottom;line-height:26px;}
710
+ #product-social p a.linkedin{background-color:#0e76a8;}
711
+ #product-social p a.facebook{background-color:#4460ae;}
712
+ #product-social p a.gplus{background-color:#c21f25;}
713
+ #product-social p a.twitter{background-color:#3cf;}
714
+ #product-social p a.instagram{background-color:#cd4378;}
715
+ #product-social p a.email{background-color:#4a7f45;}
716
+ @media (max-width:991px){#product-social{text-align:center;}
717
+ }
718
+ #checkout .nav{margin-bottom:20px;border-bottom:solid 1px #467fbf;}
719
+ #checkout .nav li{height:100%;}
720
+ #checkout .nav li a{display:block;height:100%;}
721
+ #order-summary table{margin-top:20px;}
722
+ #order-summary table td{color:#999999;}
2449
723
  #order-summary table tr.total td,
2450
- #order-summary table tr.total th {
2451
- font-size: 18px;
2452
- color: #555555;
2453
- font-weight: 700;
2454
- }
724
+ #order-summary table tr.total th{font-size:18px;color:#555555;font-weight:700;}
2455
725
  #checkout .table tbody tr td,
2456
726
  #basket .table tbody tr td,
2457
- #customer-order .table tbody tr td {
2458
- vertical-align: middle;
2459
- }
727
+ #customer-order .table tbody tr td{vertical-align:middle;}
2460
728
  #checkout .table tbody tr td input,
2461
729
  #basket .table tbody tr td input,
2462
- #customer-order .table tbody tr td input {
2463
- width: 50px;
2464
- text-align: right;
2465
- }
730
+ #customer-order .table tbody tr td input{width:50px;text-align:right;}
2466
731
  #checkout .table tbody tr td img,
2467
732
  #basket .table tbody tr td img,
2468
- #customer-order .table tbody tr td img {
2469
- width: 50px;
2470
- }
733
+ #customer-order .table tbody tr td img{width:50px;}
2471
734
  #checkout .table tfoot,
2472
735
  #basket .table tfoot,
2473
- #customer-order .table tfoot {
2474
- font-size: 18px;
2475
- }
736
+ #customer-order .table tfoot{font-size:18px;}
2476
737
  .shipping-method h4,
2477
- .payment-method h4 {
2478
- text-transform: uppercase;
2479
- letter-spacing: 0.08em;
2480
- }
738
+ .payment-method h4{text-transform:uppercase;letter-spacing:0.08em;}
2481
739
  #customer-orders table tr th,
2482
- #customer-orders table tr td {
2483
- vertical-align: baseline;
2484
- }
2485
- #customer-order .table tfoot th {
2486
- font-size: 18px;
2487
- font-weight: 300;
2488
- }
2489
- #customer-order .addresses {
2490
- text-align: right;
2491
- margin-bottom: 30px;
2492
- }
2493
- #customer-order .addresses p {
2494
- font-size: 18px;
2495
- font-weight: 300;
2496
- }
2497
- #customer-account {
2498
- margin-bottom: 30px;
2499
- }
2500
- #get-it {
2501
- background: #467fbf;
2502
- padding: 50px 0 30px;
2503
- color: #fff;
2504
- text-align: center;
2505
- }
740
+ #customer-orders table tr td{vertical-align:baseline;}
741
+ #customer-order .table tfoot th{font-size:18px;font-weight:300;}
742
+ #customer-order .addresses{text-align:right;margin-bottom:30px;}
743
+ #customer-order .addresses p{font-size:18px;font-weight:300;}
744
+ #customer-account{margin-bottom:30px;}
745
+ #get-it{background:#467fbf;padding:50px 0 30px;color:#fff;text-align:center;}
2506
746
  #get-it h1,
2507
747
  #get-it h2,
2508
748
  #get-it h3,
2509
749
  #get-it h4,
2510
750
  #get-it h5,
2511
- #get-it h6 {
2512
- color: #fff;
2513
- text-transform: uppercase;
2514
- letter-spacing: 0.08em;
2515
- margin: 0 0 20px;
2516
- }
2517
- #get-it p {
2518
- margin: 0 0 20px;
2519
- }
2520
- #footer {
2521
- background: #555555;
2522
- padding: 50px 0;
2523
- color: #999999;
2524
- }
751
+ #get-it h6{color:#fff;text-transform:uppercase;letter-spacing:0.08em;margin:0 0 20px;}
752
+ #get-it p{margin:0 0 20px;}
753
+ #footer{background:#555555;padding:50px 0;color:#999999;}
2525
754
  #footer h1,
2526
755
  #footer h2,
2527
756
  #footer h3,
2528
757
  #footer h4,
2529
758
  #footer h5,
2530
- #footer h6 {
2531
- color: #eeeeee;
2532
- }
2533
- #footer h4 {
2534
- font-size: 14px;
2535
- font-weight: 800;
2536
- text-transform: uppercase;
2537
- letter-spacing: 0.08em;
2538
- }
2539
- #footer ul {
2540
- padding-left: 0;
2541
- list-style: none;
2542
- }
2543
- #footer ul a {
2544
- color: #999999;
2545
- }
2546
- #footer ul a:hover {
2547
- color: #467fbf;
2548
- text-decoration: none;
2549
- }
2550
- #footer .photostream div {
2551
- float: left;
2552
- display: block;
2553
- -webkit-box-sizing: border-box;
2554
- -moz-box-sizing: border-box;
2555
- box-sizing: border-box;
2556
- width: 33%;
2557
- padding: 7.5px;
2558
- overflow: hidden;
2559
- }
2560
- #footer .photostream div a {
2561
- border: solid 1 px #eeeeee;
2562
- }
2563
- #footer .photostream div img {
2564
- -webkit-transition: all 0.2s ease-out;
2565
- -moz-transition: all 0.2s ease-out;
2566
- transition: all 0.2s ease-out;
2567
- }
2568
- #footer .photostream div:hover img {
2569
- -webkit-transform: scale(1.1, 1.1);
2570
- -ms-transform: scale(1.1, 1.1);
2571
- -o-transform: scale(1.1, 1.1);
2572
- transform: scale(1.1, 1.1);
2573
- }
2574
- #footer .blog-entries .item {
2575
- clear: both;
2576
- padding: 5px 0;
2577
- margin-bottom: 10px;
2578
- border-bottom: solid 1px #555555;
2579
- }
2580
- #footer .blog-entries .item .image {
2581
- float: left;
2582
- width: 15%;
2583
- margin-right: 10px;
2584
- }
2585
- #footer .blog-entries .item .name {
2586
- width: 75%;
2587
- margin-left: 10px;
2588
- display: table-cell;
2589
- vertical-align: middle;
2590
- }
2591
- #footer .blog-entries .item .name h5 {
2592
- margin: 0;
2593
- text-transform: uppercase;
2594
- letter-spacing: 0.08em;
2595
- font-size: 12px;
2596
- }
2597
- #footer .blog-entries .item .name h5 a {
2598
- color: #eeeeee;
2599
- }
2600
- #footer .blog-entries .item .text {
2601
- width: 100%;
2602
- clear: both;
2603
- }
2604
- #footer .blog-entries .item:last-child {
2605
- border-bottom: none;
2606
- margin-bottom: 0;
2607
- }
2608
- #footer .social a {
2609
- color: #555555;
2610
- font-size: 25px;
2611
- margin: 0 10px 0 0;
2612
- }
2613
- #footer .social a:hover {
2614
- color: #467fbf;
2615
- }
2616
- #copyright {
2617
- background: #333;
2618
- color: #ccc;
2619
- padding: 50px 0;
2620
- font-size: 12px;
2621
- line-height: 28px;
2622
- }
2623
- #copyright p {
2624
- margin: 0;
2625
- }
2626
- @media (max-width: 991px) {
2627
- #copyright p {
2628
- float: none !important;
2629
- text-align: center;
2630
- margin-bottom: 10px;
2631
- }
2632
- }
2633
- [data-animate] {
2634
- opacity: 0;
2635
- filter: alpha(opacity=0);
2636
- }
2637
- #style-switch-button {
2638
- position: fixed;
2639
- top: 100px;
2640
- left: 0px;
2641
- border-radius: 0;
2642
- }
2643
- #style-switch {
2644
- -webkit-box-sizing: border-box;
2645
- -moz-box-sizing: border-box;
2646
- box-sizing: border-box;
2647
- width: 300px;
2648
- padding: 20px;
2649
- position: fixed;
2650
- top: 140px;
2651
- left: 0;
2652
- background: #fff;
2653
- border: solid 1px #eeeeee;
2654
- }
2655
- @media (max-width: 991px) {
2656
- #style-switch-button {
2657
- display: none;
2658
- }
2659
- #style-switch {
2660
- display: none;
2661
- }
2662
- }
2663
- /* Original Boostrap template overwrite */
2664
- /* breadcrumbs */
2665
- .breadcrumb {
2666
- font-family: "Roboto", Helvetica, Arial, sans-serif;
2667
- text-transform: uppercase;
2668
- background-color: none;
2669
- letter-spacing: 0.08em;
2670
- }
2671
- /* nav */
2672
- .nav > li > a {
2673
- padding: 10px 15px;
2674
- }
759
+ #footer h6{color:#eeeeee;}
760
+ #footer h4{font-size:14px;font-weight:800;text-transform:uppercase;letter-spacing:0.08em;}
761
+ #footer ul{padding-left:0;list-style:none;}
762
+ #footer ul a{color:#999999;}
763
+ #footer ul a:hover{color:#467fbf;text-decoration:none;}
764
+ #footer .photostream div{float:left;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:33%;padding:7.5px;overflow:hidden;}
765
+ #footer .photostream div a{border:solid 1 px #eeeeee;}
766
+ #footer .photostream div img{-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;transition:all 0.2s ease-out;}
767
+ #footer .photostream div:hover img{-webkit-transform:scale(1.1, 1.1);-ms-transform:scale(1.1, 1.1);-o-transform:scale(1.1, 1.1);transform:scale(1.1, 1.1);}
768
+ #footer .blog-entries .item{clear:both;padding:5px 0;margin-bottom:10px;border-bottom:solid 1px #555555;}
769
+ #footer .blog-entries .item .image{float:left;width:15%;margin-right:10px;}
770
+ #footer .blog-entries .item .name{width:75%;margin-left:10px;display:table-cell;vertical-align:middle;}
771
+ #footer .blog-entries .item .name h5{margin:0;text-transform:uppercase;letter-spacing:0.08em;font-size:12px;}
772
+ #footer .blog-entries .item .name h5 a{color:#eeeeee;}
773
+ #footer .blog-entries .item .text{width:100%;clear:both;}
774
+ #footer .blog-entries .item:last-child{border-bottom:none;margin-bottom:0;}
775
+ #footer .social a{color:#555555;font-size:25px;margin:0 10px 0 0;}
776
+ #footer .social a:hover{color:#467fbf;}
777
+ #copyright{background:#333;color:#ccc;padding:50px 0;font-size:12px;line-height:28px;}
778
+ #copyright p{margin:0;}
779
+ @media (max-width:991px){#copyright p{float:none !important;text-align:center;margin-bottom:10px;}
780
+ }
781
+ [data-animate]{opacity:0;filter:alpha(opacity=0);}
782
+ #style-switch-button{position:fixed;top:100px;left:0px;border-radius:0;}
783
+ #style-switch{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:300px;padding:20px;position:fixed;top:140px;left:0;background:#fff;border:solid 1px #eeeeee;}
784
+ @media (max-width:991px){#style-switch-button{display:none;}
785
+ #style-switch{display:none;}
786
+ }
787
+ .breadcrumb{font-family:"Roboto", Helvetica, Arial, sans-serif;text-transform:uppercase;background-color:none;letter-spacing:0.08em;}
788
+ .nav > li > a{padding:10px 15px;}
2675
789
  .nav > li > a:hover,
2676
- .nav > li > a:focus {
2677
- background-color: #eeeeee;
2678
- }
2679
- .nav > li.disabled > a {
2680
- color: #999999;
2681
- }
790
+ .nav > li > a:focus{background-color:#eeeeee;}
791
+ .nav > li.disabled > a{color:#999999;}
2682
792
  .nav > li.disabled > a:hover,
2683
- .nav > li.disabled > a:focus {
2684
- color: #999999;
2685
- }
793
+ .nav > li.disabled > a:focus{color:#999999;}
2686
794
  .nav .open > a,
2687
795
  .nav .open > a:hover,
2688
- .nav .open > a:focus {
2689
- background-color: #eeeeee;
2690
- border-color: #467fbf;
2691
- }
2692
- .nav-tabs {
2693
- border-bottom: 1px solid #467fbf;
2694
- }
2695
- .nav-tabs > li {
2696
- float: left;
2697
- margin-bottom: -1px;
2698
- }
2699
- .nav-tabs > li > a {
2700
- margin-right: 2px;
2701
- line-height: 1.42857143;
2702
- border: 1px solid transparent;
2703
- border-radius: 0 0 0 0;
2704
- }
2705
- .nav-tabs > li > a:hover {
2706
- border-color: #eeeeee #eeeeee #467fbf;
2707
- }
796
+ .nav .open > a:focus{background-color:#eeeeee;border-color:#467fbf;}
797
+ .nav-tabs{border-bottom:1px solid #467fbf;}
798
+ .nav-tabs > li{float:left;margin-bottom:-1px;}
799
+ .nav-tabs > li > a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:0 0 0 0;}
800
+ .nav-tabs > li > a:hover{border-color:#eeeeee #eeeeee #467fbf;}
2708
801
  .nav-tabs > li.active > a,
2709
802
  .nav-tabs > li.active > a:hover,
2710
- .nav-tabs > li.active > a:focus {
2711
- color: #555555;
2712
- background-color: #ffffff;
2713
- border: 1px solid #467fbf;
2714
- border-bottom-color: transparent;
2715
- cursor: default;
2716
- }
2717
- .nav-tabs.nav-justified {
2718
- width: 100%;
2719
- border-bottom: solid 1px #467fbf;
2720
- border-bottom: 0;
2721
- }
2722
- .nav-tabs.nav-justified > li {
2723
- float: none;
2724
- }
2725
- .nav-tabs.nav-justified > li > a {
2726
- text-align: center;
2727
- /*margin-bottom: 5px;*/
2728
- }
2729
- .nav-tabs.nav-justified > .dropdown .dropdown-menu {
2730
- top: auto;
2731
- left: auto;
2732
- }
2733
- .nav-tabs.nav-justified > li > a {
2734
- margin-right: 0;
2735
- border-radius: 0;
2736
- }
803
+ .nav-tabs > li.active > a:focus{color:#555555;background-color:#ffffff;border:1px solid #467fbf;border-bottom-color:transparent;cursor:default;}
804
+ .nav-tabs.nav-justified{width:100%;border-bottom:solid 1px #467fbf;border-bottom:0;}
805
+ .nav-tabs.nav-justified > li{float:none;}
806
+ .nav-tabs.nav-justified > li > a{text-align:center;}
807
+ .nav-tabs.nav-justified > .dropdown .dropdown-menu{top:auto;left:auto;}
808
+ .nav-tabs.nav-justified > li > a{margin-right:0;border-radius:0;}
2737
809
  .nav-tabs.nav-justified > .active > a,
2738
810
  .nav-tabs.nav-justified > .active > a:hover,
2739
- .nav-tabs.nav-justified > .active > a:focus {
2740
- border: 1px solid #467fbf;
2741
- }
2742
- @media (min-width: 768px) {
2743
- .nav-tabs.nav-justified > li > a {
2744
- border-bottom: 1px solid #467fbf;
2745
- border-radius: 0 0 0 0;
2746
- }
2747
- .nav-tabs.nav-justified > .active > a,
2748
- .nav-tabs.nav-justified > .active > a:hover,
2749
- .nav-tabs.nav-justified > .active > a:focus {
2750
- border-bottom-color: #ffffff;
2751
- }
2752
- }
2753
- .nav-pills > li {
2754
- float: left;
2755
- }
2756
- .nav-pills > li > a {
2757
- border-radius: 0;
2758
- }
2759
- .nav-pills > li + li {
2760
- margin-left: 2px;
811
+ .nav-tabs.nav-justified > .active > a:focus{border:1px solid #467fbf;}
812
+ @media (min-width:768px){.nav-tabs.nav-justified > li > a{border-bottom:1px solid #467fbf;border-radius:0 0 0 0;}
813
+ .nav-tabs.nav-justified > .active > a,
814
+ .nav-tabs.nav-justified > .active > a:hover,
815
+ .nav-tabs.nav-justified > .active > a:focus{border-bottom-color:#ffffff;}
2761
816
  }
817
+ .nav-pills > li{float:left;}
818
+ .nav-pills > li > a{border-radius:0;}
819
+ .nav-pills > li + li{margin-left:2px;}
2762
820
  .nav-pills > li.active > a,
2763
821
  .nav-pills > li.active > a:hover,
2764
- .nav-pills > li.active > a:focus {
2765
- color: #ffffff;
2766
- background-color: #467fbf;
2767
- }
2768
- .nav-stacked > li {
2769
- float: none;
2770
- }
2771
- .nav-stacked > li + li {
2772
- margin-top: 2px;
2773
- margin-left: 0;
2774
- }
2775
- .nav-justified {
2776
- width: 100%;
2777
- border-bottom: solid 1px #467fbf;
2778
- }
2779
- .nav-justified > li {
2780
- float: none;
2781
- }
2782
- .nav-justified > li > a {
2783
- text-align: center;
2784
- /*margin-bottom: 5px;*/
2785
- }
2786
- .nav-justified > .dropdown .dropdown-menu {
2787
- top: auto;
2788
- left: auto;
2789
- }
2790
- .nav-tabs-justified {
2791
- border-bottom: 0;
2792
- }
2793
- .nav-tabs-justified > li > a {
2794
- margin-right: 0;
2795
- border-radius: 0;
2796
- }
822
+ .nav-pills > li.active > a:focus{color:#ffffff;background-color:#467fbf;}
823
+ .nav-stacked > li{float:none;}
824
+ .nav-stacked > li + li{margin-top:2px;margin-left:0;}
825
+ .nav-justified{width:100%;border-bottom:solid 1px #467fbf;}
826
+ .nav-justified > li{float:none;}
827
+ .nav-justified > li > a{text-align:center;}
828
+ .nav-justified > .dropdown .dropdown-menu{top:auto;left:auto;}
829
+ .nav-tabs-justified{border-bottom:0;}
830
+ .nav-tabs-justified > li > a{margin-right:0;border-radius:0;}
2797
831
  .nav-tabs-justified > .active > a,
2798
832
  .nav-tabs-justified > .active > a:hover,
2799
- .nav-tabs-justified > .active > a:focus {
2800
- border: 1px solid #467fbf;
2801
- }
2802
- @media (min-width: 768px) {
2803
- .nav-tabs-justified > li > a {
2804
- border-bottom: 1px solid #467fbf;
2805
- border-radius: 0 0 0 0;
2806
- }
2807
- .nav-tabs-justified > .active > a,
2808
- .nav-tabs-justified > .active > a:hover,
2809
- .nav-tabs-justified > .active > a:focus {
2810
- border-bottom-color: #ffffff;
2811
- }
2812
- }
2813
- .tab-content {
2814
- padding: 15px;
2815
- border: solid 1px #ddd;
2816
- border-top: none;
2817
- }
2818
- /* navbar */
2819
- .navbar {
2820
- position: relative;
2821
- min-height: 62px;
2822
- margin-bottom: 0;
2823
- border-bottom: 1px solid transparent;
2824
- }
2825
- @media (min-width: 768px) {
2826
- .navbar {
2827
- border-radius: 0px;
2828
- }
2829
- }
2830
- @media (min-width: 768px) {
2831
- .navbar-header {
2832
- float: left;
2833
- }
833
+ .nav-tabs-justified > .active > a:focus{border:1px solid #467fbf;}
834
+ @media (min-width:768px){.nav-tabs-justified > li > a{border-bottom:1px solid #467fbf;border-radius:0 0 0 0;}
835
+ .nav-tabs-justified > .active > a,
836
+ .nav-tabs-justified > .active > a:hover,
837
+ .nav-tabs-justified > .active > a:focus{border-bottom-color:#ffffff;}
2834
838
  }
2835
- .navbar-collapse {
2836
- overflow-x: visible;
2837
- padding-right: 15px;
2838
- padding-left: 15px;
839
+ .tab-content{padding:15px;border:solid 1px #ddd;border-top:none;}
840
+ .navbar{position:relative;min-height:62px;margin-bottom:0;border-bottom:1px solid transparent;}
841
+ @media (min-width:768px){.navbar{border-radius:0px;}
2839
842
  }
2840
- .navbar-collapse.in {
2841
- overflow-y: auto;
843
+ @media (min-width:768px){.navbar-header{float:left;}
2842
844
  }
2843
- @media (min-width: 768px) {
2844
- .navbar-collapse {
2845
- width: auto;
2846
- border-top: 0;
2847
- box-shadow: none;
2848
- }
2849
- .navbar-collapse.collapse {
2850
- display: block !important;
2851
- height: auto !important;
2852
- padding-bottom: 0;
2853
- overflow: visible !important;
2854
- }
2855
- .navbar-collapse.in {
2856
- overflow-y: visible;
2857
- }
2858
- .navbar-fixed-top .navbar-collapse,
2859
- .navbar-static-top .navbar-collapse,
2860
- .navbar-fixed-bottom .navbar-collapse {
2861
- padding-left: 0;
2862
- padding-right: 0;
2863
- }
845
+ .navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;}
846
+ .navbar-collapse.in{overflow-y:auto;}
847
+ @media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none;}
848
+ .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important;}
849
+ .navbar-collapse.in{overflow-y:visible;}
850
+ .navbar-fixed-top .navbar-collapse,
851
+ .navbar-static-top .navbar-collapse,
852
+ .navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0;}
2864
853
  }
2865
854
  .navbar-fixed-top .navbar-collapse,
2866
855
  .navbar-affixed-top .navbar-collapse,
2867
- .navbar-fixed-bottom .navbar-collapse {
2868
- max-height: 340px;
2869
- }
2870
- @media (max-width: 480px) and (orientation: landscape) {
2871
- .navbar-fixed-top .navbar-collapse,
2872
- .navbar-affixed-top .navbar-collapse,
2873
- .navbar-fixed-bottom .navbar-collapse {
2874
- max-height: 200px;
2875
- }
856
+ .navbar-fixed-bottom .navbar-collapse{max-height:340px;}
857
+ @media (max-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,
858
+ .navbar-affixed-top .navbar-collapse,
859
+ .navbar-fixed-bottom .navbar-collapse{max-height:200px;}
2876
860
  }
2877
861
  .container > .navbar-header,
2878
862
  .container-fluid > .navbar-header,
2879
863
  .container > .navbar-collapse,
2880
- .container-fluid > .navbar-collapse {
2881
- margin-right: -15px;
2882
- margin-left: -15px;
2883
- }
2884
- @media (min-width: 768px) {
2885
- .container > .navbar-header,
2886
- .container-fluid > .navbar-header,
2887
- .container > .navbar-collapse,
2888
- .container-fluid > .navbar-collapse {
2889
- margin-right: 0;
2890
- margin-left: 0;
2891
- }
2892
- }
2893
- .navbar-static-top {
2894
- z-index: 1000;
2895
- border-width: 0 0 1px;
864
+ .container-fluid > .navbar-collapse{margin-right:-15px;margin-left:-15px;}
865
+ @media (min-width:768px){.container > .navbar-header,
866
+ .container-fluid > .navbar-header,
867
+ .container > .navbar-collapse,
868
+ .container-fluid > .navbar-collapse{margin-right:0;margin-left:0;}
2896
869
  }
2897
- @media (min-width: 768px) {
2898
- .navbar-static-top {
2899
- border-radius: 0;
2900
- }
870
+ .navbar-static-top{z-index:1000;border-width:0 0 1px;}
871
+ @media (min-width:768px){.navbar-static-top{border-radius:0;}
2901
872
  }
2902
873
  .navbar-fixed-top,
2903
- .navbar-fixed-bottom {
2904
- position: fixed;
2905
- right: 0;
2906
- left: 0;
2907
- z-index: 1030;
2908
- -webkit-transform: translate3d(0, 0, 0);
2909
- transform: translate3d(0, 0, 0);
2910
- }
2911
- @media (min-width: 768px) {
2912
- .navbar-fixed-top,
2913
- .navbar-fixed-bottom {
2914
- border-radius: 0;
2915
- }
2916
- }
2917
- .navbar-fixed-top {
2918
- top: 0;
2919
- border-width: 0 0 1px;
2920
- }
2921
- .navbar-fixed-bottom {
2922
- bottom: 0;
2923
- margin-bottom: 0;
2924
- border-width: 1px 0 0;
2925
- }
2926
- .navbar-brand {
2927
- float: left;
2928
- padding: 10px 15px;
2929
- font-size: 18px;
2930
- line-height: 20px;
2931
- height: 62px;
874
+ .navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}
875
+ @media (min-width:768px){.navbar-fixed-top,
876
+ .navbar-fixed-bottom{border-radius:0;}
2932
877
  }
878
+ .navbar-fixed-top{top:0;border-width:0 0 1px;}
879
+ .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0;}
880
+ .navbar-brand{float:left;padding:10px 15px;font-size:18px;line-height:20px;height:62px;}
2933
881
  .navbar-brand:hover,
2934
- .navbar-brand:focus {
2935
- text-decoration: none;
2936
- }
2937
- @media (min-width: 768px) {
2938
- .navbar > .container .navbar-brand,
2939
- .navbar > .container-fluid .navbar-brand {
2940
- margin-left: -15px;
2941
- }
2942
- }
2943
- .navbar-toggle {
2944
- position: relative;
2945
- float: right;
2946
- margin-right: 15px;
2947
- padding: 9px 10px;
2948
- margin-top: 14px;
2949
- margin-bottom: 14px;
2950
- background-color: transparent;
2951
- background-image: none;
2952
- border: 1px solid transparent;
2953
- border-radius: 0;
2954
- }
2955
- .navbar-toggle:focus {
2956
- outline: 0;
2957
- }
2958
- .navbar-nav {
2959
- margin: 10.5px -15px;
2960
- }
2961
- .navbar-nav > li > a {
2962
- padding-top: 10px;
2963
- padding-bottom: 10px;
2964
- line-height: 20px;
2965
- }
2966
- @media (max-width: 767px) {
2967
- .navbar-nav .open .dropdown-menu > li > a,
2968
- .navbar-nav .open .dropdown-menu .dropdown-header {
2969
- padding: 5px 15px 5px 25px;
2970
- }
2971
- .navbar-nav .open .dropdown-menu > li > a {
2972
- line-height: 20px;
2973
- }
2974
- .navbar-nav .open .dropdown-menu > li > a:hover,
2975
- .navbar-nav .open .dropdown-menu > li > a:focus {
2976
- background-image: none;
2977
- }
2978
- }
2979
- @media (min-width: 768px) {
2980
- .navbar-nav {
2981
- float: left;
2982
- margin: 0;
2983
- }
2984
- .navbar-nav > li {
2985
- float: left;
2986
- }
2987
- .navbar-nav > li > a {
2988
- padding-top: 21px;
2989
- padding-bottom: 21px;
2990
- }
2991
- .navbar-nav.navbar-right:last-child {
2992
- margin-right: -15px;
2993
- }
2994
- }
2995
- @media (min-width: 768px) {
2996
- .navbar-left {
2997
- float: left !important;
2998
- }
2999
- .navbar-right {
3000
- float: right !important;
3001
- }
3002
- }
3003
- .navbar-form {
3004
- margin-left: -15px;
3005
- margin-right: -15px;
3006
- padding: 10px 15px;
3007
- border-top: 1px solid transparent;
3008
- border-bottom: 1px solid transparent;
3009
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3010
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3011
- margin-top: 14px;
3012
- margin-bottom: 14px;
3013
- }
3014
- @media (max-width: 767px) {
3015
- .navbar-form .form-group {
3016
- margin-bottom: 5px;
3017
- }
3018
- }
3019
- @media (min-width: 768px) {
3020
- .navbar-form {
3021
- width: auto;
3022
- border: 0;
3023
- margin-left: 0;
3024
- margin-right: 0;
3025
- padding-top: 0;
3026
- padding-bottom: 0;
3027
- -webkit-box-shadow: none;
3028
- box-shadow: none;
3029
- }
3030
- .navbar-form.navbar-right:last-child {
3031
- margin-right: -15px;
3032
- }
3033
- }
3034
- .navbar-nav > li > .dropdown-menu {
3035
- margin-top: 0;
3036
- border-top-right-radius: 0;
3037
- border-top-left-radius: 0;
3038
- }
3039
- .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3040
- border-bottom-right-radius: 0;
3041
- border-bottom-left-radius: 0;
3042
- }
3043
- .navbar-btn {
3044
- margin-top: 14px;
3045
- margin-bottom: 14px;
3046
- }
3047
- .navbar-btn.btn-sm {
3048
- margin-top: 16px;
3049
- margin-bottom: 16px;
3050
- }
3051
- .navbar-btn.btn-xs {
3052
- margin-top: 20px;
3053
- margin-bottom: 20px;
3054
- }
3055
- .navbar-text {
3056
- margin-top: 21px;
3057
- margin-bottom: 21px;
3058
- }
3059
- @media (min-width: 768px) {
3060
- .navbar-text {
3061
- float: left;
3062
- margin-left: 15px;
3063
- margin-right: 15px;
3064
- }
3065
- .navbar-text.navbar-right:last-child {
3066
- margin-right: 0;
3067
- }
3068
- }
3069
- .navbar-default {
3070
- background-color: #ffffff;
3071
- border-color: #cccccc;
3072
- border-bottom: none;
3073
- }
3074
- .navbar-default .navbar-brand {
3075
- color: #555555;
3076
- }
882
+ .navbar-brand:focus{text-decoration:none;}
883
+ @media (min-width:768px){.navbar > .container .navbar-brand,
884
+ .navbar > .container-fluid .navbar-brand{margin-left:-15px;}
885
+ }
886
+ .navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:14px;margin-bottom:14px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0;}
887
+ .navbar-toggle:focus{outline:0;}
888
+ .navbar-nav{margin:10.5px -15px;}
889
+ .navbar-nav > li > a{padding-top:10px;padding-bottom:10px;line-height:20px;}
890
+ @media (max-width:767px){.navbar-nav .open .dropdown-menu > li > a,
891
+ .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px;}
892
+ .navbar-nav .open .dropdown-menu > li > a{line-height:20px;}
893
+ .navbar-nav .open .dropdown-menu > li > a:hover,
894
+ .navbar-nav .open .dropdown-menu > li > a:focus{background-image:none;}
895
+ }
896
+ @media (min-width:768px){.navbar-nav{float:left;margin:0;}
897
+ .navbar-nav > li{float:left;}
898
+ .navbar-nav > li > a{padding-top:21px;padding-bottom:21px;}
899
+ .navbar-nav.navbar-right:last-child{margin-right:-15px;}
900
+ }
901
+ @media (min-width:768px){.navbar-left{float:left !important;}
902
+ .navbar-right{float:right !important;}
903
+ }
904
+ .navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);margin-top:14px;margin-bottom:14px;}
905
+ @media (max-width:767px){.navbar-form .form-group{margin-bottom:5px;}
906
+ }
907
+ @media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none;}
908
+ .navbar-form.navbar-right:last-child{margin-right:-15px;}
909
+ }
910
+ .navbar-nav > li > .dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0;}
911
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0;}
912
+ .navbar-btn{margin-top:14px;margin-bottom:14px;}
913
+ .navbar-btn.btn-sm{margin-top:16px;margin-bottom:16px;}
914
+ .navbar-btn.btn-xs{margin-top:20px;margin-bottom:20px;}
915
+ .navbar-text{margin-top:21px;margin-bottom:21px;}
916
+ @media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px;}
917
+ .navbar-text.navbar-right:last-child{margin-right:0;}
918
+ }
919
+ .navbar-default{background-color:#ffffff;border-color:#cccccc;border-bottom:none;}
920
+ .navbar-default .navbar-brand{color:#555555;}
3077
921
  .navbar-default .navbar-brand:hover,
3078
- .navbar-default .navbar-brand:focus {
3079
- color: #3b3b3b;
3080
- background-color: transparent;
3081
- }
3082
- .navbar-default .navbar-text {
3083
- color: #777777;
3084
- }
3085
- .navbar-default .navbar-nav > li > a {
3086
- color: #555555;
3087
- }
922
+ .navbar-default .navbar-brand:focus{color:#3b3b3b;background-color:transparent;}
923
+ .navbar-default .navbar-text{color:#777777;}
924
+ .navbar-default .navbar-nav > li > a{color:#555555;}
3088
925
  .navbar-default .navbar-nav > li > a:hover,
3089
- .navbar-default .navbar-nav > li > a:focus {
3090
- color: #555555;
3091
- background-color: #92b3d9;
3092
- }
926
+ .navbar-default .navbar-nav > li > a:focus{color:#555555;background-color:#92b3d9;}
3093
927
  .navbar-default .navbar-nav > .active > a,
3094
928
  .navbar-default .navbar-nav > .active > a:hover,
3095
- .navbar-default .navbar-nav > .active > a:focus {
3096
- color: #ffffff;
3097
- background-color: #467fbf;
3098
- }
929
+ .navbar-default .navbar-nav > .active > a:focus{color:#ffffff;background-color:#467fbf;}
3099
930
  .navbar-default .navbar-nav > .disabled > a,
3100
931
  .navbar-default .navbar-nav > .disabled > a:hover,
3101
- .navbar-default .navbar-nav > .disabled > a:focus {
3102
- color: #cccccc;
3103
- background-color: transparent;
3104
- }
3105
- .navbar-default .navbar-toggle {
3106
- border-color: #dddddd;
3107
- }
932
+ .navbar-default .navbar-nav > .disabled > a:focus{color:#cccccc;background-color:transparent;}
933
+ .navbar-default .navbar-toggle{border-color:#dddddd;}
3108
934
  .navbar-default .navbar-toggle:hover,
3109
- .navbar-default .navbar-toggle:focus {
3110
- background-color: #467fbf;
3111
- }
3112
- .navbar-default .navbar-toggle .icon-bar {
3113
- background-color: #888888;
3114
- }
935
+ .navbar-default .navbar-toggle:focus{background-color:#467fbf;}
936
+ .navbar-default .navbar-toggle .icon-bar{background-color:#888888;}
3115
937
  .navbar-default .navbar-collapse,
3116
- .navbar-default .navbar-form {
3117
- border-color: #cccccc;
3118
- }
938
+ .navbar-default .navbar-form{border-color:#cccccc;}
3119
939
  .navbar-default .navbar-nav > .open > a,
3120
940
  .navbar-default .navbar-nav > .open > a:hover,
3121
- .navbar-default .navbar-nav > .open > a:focus {
3122
- background-color: #467fbf;
3123
- color: #ffffff;
3124
- }
3125
- @media (max-width: 767px) {
3126
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3127
- color: #555555;
3128
- }
3129
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3130
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3131
- color: #467fbf;
3132
- }
3133
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
3134
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
3135
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
3136
- color: #ffffff;
3137
- background-color: #467fbf;
3138
- }
3139
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
3140
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
3141
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
3142
- color: #cccccc;
3143
- background-color: transparent;
3144
- }
3145
- }
3146
- .navbar-default .navbar-link {
3147
- color: #555555;
3148
- }
3149
- .navbar-default .navbar-link:hover {
3150
- color: #555555;
3151
- }
3152
- .navbar-default .btn-link {
3153
- color: #555555;
3154
- }
941
+ .navbar-default .navbar-nav > .open > a:focus{background-color:#467fbf;color:#ffffff;}
942
+ @media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu > li > a{color:#555555;}
943
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
944
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{color:#467fbf;}
945
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
946
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
947
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus{color:#ffffff;background-color:#467fbf;}
948
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
949
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
950
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus{color:#cccccc;background-color:transparent;}
951
+ }
952
+ .navbar-default .navbar-link{color:#555555;}
953
+ .navbar-default .navbar-link:hover{color:#555555;}
954
+ .navbar-default .btn-link{color:#555555;}
3155
955
  .navbar-default .btn-link:hover,
3156
- .navbar-default .btn-link:focus {
3157
- color: #555555;
3158
- }
956
+ .navbar-default .btn-link:focus{color:#555555;}
3159
957
  .navbar-default .btn-link[disabled]:hover,
3160
958
  fieldset[disabled] .navbar-default .btn-link:hover,
3161
959
  .navbar-default .btn-link[disabled]:focus,
3162
- fieldset[disabled] .navbar-default .btn-link:focus {
3163
- color: #cccccc;
3164
- }
3165
- /* scaffolding */
3166
- body {
3167
- font-family: "Roboto", Helvetica, Arial, sans-serif;
3168
- font-size: 14px;
3169
- line-height: 1.42857143;
3170
- color: #555555;
3171
- }
3172
- a {
3173
- color: #467fbf;
3174
- text-decoration: none;
3175
- }
960
+ fieldset[disabled] .navbar-default .btn-link:focus{color:#cccccc;}
961
+ body{font-family:"Roboto", Helvetica, Arial, sans-serif;font-size:14px;line-height:1.42857143;color:#555555;}
962
+ a{color:#467fbf;text-decoration:none;}
3176
963
  a:hover,
3177
- a:focus {
3178
- color: #2f5a89;
3179
- text-decoration: underline;
3180
- }
3181
- a:focus {
3182
- outline: thin dotted;
3183
- outline: 5px auto -webkit-focus-ring-color;
3184
- outline-offset: -2px;
3185
- }
3186
- .img-rounded {
3187
- border-radius: 0;
3188
- }
3189
- hr {
3190
- margin-top: 20px;
3191
- margin-bottom: 20px;
3192
- border: 0;
3193
- border-top: 1px solid #eeeeee;
3194
- }
3195
- /* breadcrumbs */
3196
- .breadcrumb {
3197
- padding: 20px 0;
3198
- margin-bottom: 20px;
3199
- background-color: transparent;
3200
- border-radius: 0;
3201
- text-align: right;
3202
- }
3203
- .breadcrumb > li + li:before {
3204
- content: ">\00a0";
3205
- color: #555555;
3206
- }
3207
- .breadcrumb > .active {
3208
- color: #999999;
3209
- }
3210
- @media (max-width: 991px) {
3211
- .breadcrumb {
3212
- padding: 20px 0;
3213
- text-align: center;
3214
- }
3215
- }
3216
- /* dropdowns */
3217
- .dropdown-menu {
3218
- z-index: 1000;
3219
- font-size: 14px;
3220
- background-color: #ffffff;
3221
- border: 1px solid #cccccc;
3222
- border: 1px solid rgba(0, 0, 0, 0.15);
3223
- border-radius: 0;
3224
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3225
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3226
- }
3227
- .dropdown-menu.pull-right {
3228
- right: 0;
3229
- left: auto;
3230
- }
3231
- .dropdown-menu .divider {
3232
- height: 1px;
3233
- margin: 9px 0;
3234
- overflow: hidden;
3235
- background-color: #e5e5e5;
3236
- }
3237
- .dropdown-menu > li > a {
3238
- padding: 5px 20px;
3239
- line-height: 1.42857143;
3240
- color: #333333;
3241
- white-space: nowrap;
3242
- }
3243
- /* labels */
3244
- .label {
3245
- font-family: "Roboto", Helvetica, Arial, sans-serif;
3246
- font-weight: normal;
3247
- text-transform: uppercase;
3248
- letter-spacing: 0.08em;
3249
- }
3250
- /* forms.less */
3251
- label {
3252
- font-weight: normal;
3253
- }
3254
- .form-control {
3255
- -webkit-box-shadow: none;
3256
- box-shadow: none;
3257
- border-radius: 0;
3258
- }
3259
- .form-control:focus {
3260
- border-color: #467fbf;
3261
- outline: 0;
3262
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);
3263
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);
3264
- }
3265
- .form-group {
3266
- margin-bottom: 20px;
3267
- }
3268
- /* pager*/
3269
- .pager {
3270
- margin: 20px 0;
3271
- border-top: solid 1px #eeeeee;
3272
- padding-top: 20px;
3273
- text-transform: uppercase;
3274
- letter-spacing: 0.08em;
3275
- font-family: "Roboto", Helvetica, Arial, sans-serif;
3276
- }
3277
- .pager li {
3278
- display: inline;
3279
- }
964
+ a:focus{color:#2f5a89;text-decoration:underline;}
965
+ a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
966
+ .img-rounded{border-radius:0;}
967
+ hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eeeeee;}
968
+ .breadcrumb{padding:20px 0;margin-bottom:20px;background-color:transparent;border-radius:0;text-align:right;}
969
+ .breadcrumb > li + li:before{content:">\00a0";color:#555555;}
970
+ .breadcrumb > .active{color:#999999;}
971
+ @media (max-width:991px){.breadcrumb{padding:20px 0;text-align:center;}
972
+ }
973
+ .dropdown-menu{z-index:1000;font-size:14px;background-color:#ffffff;border:1px solid #cccccc;border:1px solid rgba(0, 0, 0, 0.15);border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);}
974
+ .dropdown-menu.pull-right{right:0;left:auto;}
975
+ .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5;}
976
+ .dropdown-menu > li > a{padding:5px 20px;line-height:1.42857143;color:#333333;white-space:nowrap;}
977
+ .label{font-family:"Roboto", Helvetica, Arial, sans-serif;font-weight:normal;text-transform:uppercase;letter-spacing:0.08em;}
978
+ label{font-weight:normal;}
979
+ .form-control{-webkit-box-shadow:none;box-shadow:none;border-radius:0;}
980
+ .form-control:focus{border-color:#467fbf;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);}
981
+ .form-group{margin-bottom:20px;}
982
+ .pager{margin:20px 0;border-top:solid 1px #eeeeee;padding-top:20px;text-transform:uppercase;letter-spacing:0.08em;font-family:"Roboto", Helvetica, Arial, sans-serif;}
983
+ .pager li{display:inline;}
3280
984
  .pager li > a,
3281
- .pager li > span {
3282
- background-color: #ffffff;
3283
- border: 1px solid #467fbf;
3284
- border-radius: 0;
3285
- }
985
+ .pager li > span{background-color:#ffffff;border:1px solid #467fbf;border-radius:0;}
3286
986
  .pager li > a:hover,
3287
- .pager li > a:focus {
3288
- text-decoration: none;
3289
- color: #fff;
3290
- background-color: #467fbf;
3291
- }
987
+ .pager li > a:focus{text-decoration:none;color:#fff;background-color:#467fbf;}
3292
988
  .pager .disabled > a,
3293
989
  .pager .disabled > a:hover,
3294
990
  .pager .disabled > a:focus,
3295
- .pager .disabled > span {
3296
- color: #999999;
3297
- background-color: #ffffff;
3298
- border-color: #ddd;
3299
- }
3300
- /* pagination */
3301
- .pagination {
3302
- margin: 20px 0;
3303
- font-family: "Roboto", Helvetica, Arial, sans-serif;
3304
- border-radius: 0;
3305
- }
991
+ .pager .disabled > span{color:#999999;background-color:#ffffff;border-color:#ddd;}
992
+ .pagination{margin:20px 0;font-family:"Roboto", Helvetica, Arial, sans-serif;border-radius:0;}
3306
993
  .pagination > li > a,
3307
- .pagination > li > span {
3308
- padding: 6px 12px;
3309
- line-height: 1.42857143;
3310
- text-decoration: none;
3311
- color: #467fbf;
3312
- background-color: #ffffff;
3313
- border: 1px solid #dddddd;
3314
- }
994
+ .pagination > li > span{padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#467fbf;background-color:#ffffff;border:1px solid #dddddd;}
3315
995
  .pagination > li > a:hover,
3316
996
  .pagination > li > span:hover,
3317
997
  .pagination > li > a:focus,
3318
- .pagination > li > span:focus {
3319
- color: #467fbf;
3320
- background-color: #b8cee6;
3321
- border-color: #dddddd;
3322
- }
998
+ .pagination > li > span:focus{color:#467fbf;background-color:#b8cee6;border-color:#dddddd;}
3323
999
  .pagination > .active > a,
3324
1000
  .pagination > .active > span,
3325
1001
  .pagination > .active > a:hover,
3326
1002
  .pagination > .active > span:hover,
3327
1003
  .pagination > .active > a:focus,
3328
- .pagination > .active > span:focus {
3329
- z-index: 2;
3330
- color: #ffffff;
3331
- background-color: #467fbf;
3332
- border-color: #467fbf;
3333
- }
1004
+ .pagination > .active > span:focus{z-index:2;color:#ffffff;background-color:#467fbf;border-color:#467fbf;}
3334
1005
  .pagination > .disabled > span,
3335
1006
  .pagination > .disabled > span:hover,
3336
1007
  .pagination > .disabled > span:focus,
3337
1008
  .pagination > .disabled > a,
3338
1009
  .pagination > .disabled > a:hover,
3339
- .pagination > .disabled > a:focus {
3340
- color: #999999;
3341
- background-color: #ffffff;
3342
- border-color: #dddddd;
3343
- }
3344
- /* responsive utilities */
3345
- @media (max-width: 767px) {
3346
- .text-center-xs {
3347
- text-align: center !important;
3348
- }
3349
- .text-center-xs img {
3350
- display: block;
3351
- margin-left: auto;
3352
- margin-right: auto;
3353
- }
1010
+ .pagination > .disabled > a:focus{color:#999999;background-color:#ffffff;border-color:#dddddd;}
1011
+ @media (max-width:767px){.text-center-xs{text-align:center !important;}
1012
+ .text-center-xs img{display:block;margin-left:auto;margin-right:auto;}
3354
1013
  }
3355
- @media (min-width: 768px) and (max-width: 991px) {
3356
- .text-center-sm {
3357
- text-align: center !important;
3358
- }
3359
- .text-center-sm img {
3360
- display: block;
3361
- margin-left: auto;
3362
- margin-right: auto;
3363
- }
1014
+ @media (min-width:768px) and (max-width:991px){.text-center-sm{text-align:center !important;}
1015
+ .text-center-sm img{display:block;margin-left:auto;margin-right:auto;}
3364
1016
  }
3365
- /* type */
3366
1017
  h1,
3367
1018
  h2,
3368
1019
  h3,
@@ -3374,197 +1025,63 @@ h6,
3374
1025
  .h3,
3375
1026
  .h4,
3376
1027
  .h5,
3377
- .h6 {
3378
- font-family: "Roboto", Helvetica, Arial, sans-serif;
3379
- font-weight: 900;
3380
- line-height: 1.1;
3381
- color: #333333;
3382
- }
1028
+ .h6{font-family:"Roboto", Helvetica, Arial, sans-serif;font-weight:900;line-height:1.1;color:#333333;}
3383
1029
  h1,
3384
1030
  .h1,
3385
1031
  h2,
3386
1032
  .h2,
3387
1033
  h3,
3388
- .h3 {
3389
- margin-top: 20px;
3390
- margin-bottom: 20px;
3391
- }
3392
- p {
3393
- margin: 0 0 10px;
3394
- }
3395
- .lead {
3396
- margin-bottom: 20px;
3397
- font-size: 18px;
3398
- }
3399
- @media (min-width: 768px) {
3400
- .lead {
3401
- font-size: 21px;
3402
- }
3403
- }
3404
- .text-small {
3405
- font-size: 12px;
3406
- }
3407
- .text-large {
3408
- font-size: 18px;
3409
- }
3410
- .text-italic {
3411
- font-style: italic;
3412
- }
3413
- .text-primary {
3414
- color: #467fbf;
3415
- }
3416
- a.text-primary:hover {
3417
- color: #36669c;
3418
- }
3419
- .bg-primary {
3420
- color: #fff;
3421
- background-color: #467fbf;
3422
- }
3423
- a.bg-primary:hover {
3424
- background-color: #36669c;
3425
- }
1034
+ .h3{margin-top:20px;margin-bottom:20px;}
1035
+ p{margin:0 0 10px;}
1036
+ .lead{margin-bottom:20px;font-size:18px;}
1037
+ @media (min-width:768px){.lead{font-size:21px;}
1038
+ }
1039
+ .text-small{font-size:12px;}
1040
+ .text-large{font-size:18px;}
1041
+ .text-italic{font-style:italic;}
1042
+ .text-primary{color:#467fbf;}
1043
+ a.text-primary:hover{color:#36669c;}
1044
+ .bg-primary{color:#fff;background-color:#467fbf;}
1045
+ a.bg-primary:hover{background-color:#36669c;}
3426
1046
  abbr[title],
3427
- abbr[data-original-title] {
3428
- border-bottom: 1px dotted #999999;
3429
- }
3430
- blockquote {
3431
- padding: 10px 20px;
3432
- margin: 0 0 20px;
3433
- font-size: 14px;
3434
- border-left: 5px solid #467fbf;
3435
- }
1047
+ abbr[data-original-title]{border-bottom:1px dotted #999999;}
1048
+ blockquote{padding:10px 20px;margin:0 0 20px;font-size:14px;border-left:5px solid #467fbf;}
3436
1049
  blockquote footer,
3437
1050
  blockquote small,
3438
- blockquote .small {
3439
- display: block;
3440
- font-size: 80%;
3441
- line-height: 1.42857143;
3442
- color: #999999;
3443
- }
1051
+ blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999999;}
3444
1052
  blockquote footer:before,
3445
1053
  blockquote small:before,
3446
- blockquote .small:before {
3447
- content: '\2014 \00A0';
3448
- }
1054
+ blockquote .small:before{content:'\2014 \00A0';}
3449
1055
  .blockquote-reverse,
3450
- blockquote.pull-right {
3451
- border-right: 5px solid #467fbf;
3452
- }
3453
- address {
3454
- margin-bottom: 20px;
3455
- line-height: 1.42857143;
3456
- }
3457
- .panel {
3458
- margin-bottom: 20px;
3459
- background-color: #ffffff;
3460
- border: 1px solid transparent;
3461
- border-radius: 0;
3462
- -webkit-box-shadow: 0 0 0;
3463
- box-shadow: 0 0 0;
3464
- }
3465
- .panel-heading {
3466
- border-top-right-radius: 0;
3467
- border-top-left-radius: 0;
3468
- text-transform: uppercase;
3469
- letter-spacing: 0.08em;
3470
- padding: 15px 15px;
3471
- }
3472
- .progress {
3473
- overflow: hidden;
3474
- height: 20px;
3475
- margin-bottom: 20px;
3476
- background-color: #f5f5f5;
3477
- border-radius: 0;
3478
- -webkit-box-shadow: none;
3479
- box-shadow: none;
3480
- }
3481
- .panel-group {
3482
- margin-bottom: 20px;
3483
- }
3484
- .panel-group .panel {
3485
- margin-bottom: 0;
3486
- border-radius: 0;
3487
- overflow: hidden;
3488
- }
3489
- .panel-group .panel + .panel {
3490
- margin-top: 5px;
3491
- }
3492
- .panel-group.accordion .panel {
3493
- border-color: #ccc;
3494
- }
3495
- .panel-primary {
3496
- border-color: #467fbf;
3497
- }
3498
- .panel-primary > .panel-heading {
3499
- color: #ffffff;
3500
- background-color: #467fbf;
3501
- border-color: #467fbf;
3502
- }
3503
- .panel-primary > .panel-heading + .panel-collapse > .panel-body {
3504
- border-top-color: #467fbf;
3505
- }
3506
- .panel-primary > .panel-heading .badge {
3507
- color: #467fbf;
3508
- background-color: #ffffff;
3509
- }
3510
- .panel-primary > .panel-footer + .panel-collapse > .panel-body {
3511
- border-bottom-color: #467fbf;
3512
- }
3513
- .panel-primary .panel-title {
3514
- font-weight: 300;
3515
- }
3516
- .panel-primary .panel-title a:hover {
3517
- color: #fff;
3518
- text-decoration: none;
3519
- }
1056
+ blockquote.pull-right{border-right:5px solid #467fbf;}
1057
+ address{margin-bottom:20px;line-height:1.42857143;}
1058
+ .panel{margin-bottom:20px;background-color:#ffffff;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 0 0;box-shadow:0 0 0;}
1059
+ .panel-heading{border-top-right-radius:0;border-top-left-radius:0;text-transform:uppercase;letter-spacing:0.08em;padding:15px 15px;}
1060
+ .progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:0;-webkit-box-shadow:none;box-shadow:none;}
1061
+ .panel-group{margin-bottom:20px;}
1062
+ .panel-group .panel{margin-bottom:0;border-radius:0;overflow:hidden;}
1063
+ .panel-group .panel + .panel{margin-top:5px;}
1064
+ .panel-group.accordion .panel{border-color:#ccc;}
1065
+ .panel-primary{border-color:#467fbf;}
1066
+ .panel-primary > .panel-heading{color:#ffffff;background-color:#467fbf;border-color:#467fbf;}
1067
+ .panel-primary > .panel-heading + .panel-collapse > .panel-body{border-top-color:#467fbf;}
1068
+ .panel-primary > .panel-heading .badge{color:#467fbf;background-color:#ffffff;}
1069
+ .panel-primary > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#467fbf;}
1070
+ .panel-primary .panel-title{font-weight:300;}
1071
+ .panel-primary .panel-title a:hover{color:#fff;text-decoration:none;}
3520
1072
  a.badge:hover,
3521
- a.badge:focus {
3522
- color: #ffffff;
3523
- text-decoration: none;
3524
- cursor: pointer;
3525
- }
1073
+ a.badge:focus{color:#ffffff;text-decoration:none;cursor:pointer;}
3526
1074
  a.list-group-item.active > .badge,
3527
- .nav-pills > .active > a > .badge {
3528
- color: #467fbf;
3529
- background-color: #ffffff;
3530
- }
3531
- .nav-pills > li > a > .badge {
3532
- margin-left: 3px;
3533
- }
3534
- .progress-bar-primary {
3535
- background-color: #467fbf;
3536
- }
3537
- .progress-striped .progress-bar-primary {
3538
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3539
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3540
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3541
- }
3542
- /*!
3543
- * Yamm!3 - Yet another megamenu for Bootstrap 3
3544
- * http://geedmo.github.com/yamm3
3545
- *
3546
- * @geedmo - Licensed under the MIT license
3547
- */
1075
+ .nav-pills > .active > a > .badge{color:#467fbf;background-color:#ffffff;}
1076
+ .nav-pills > li > a > .badge{margin-left:3px;}
1077
+ .progress-bar-primary{background-color:#467fbf;}
1078
+ .progress-striped .progress-bar-primary{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);}
3548
1079
  .yamm .nav,
3549
1080
  .yamm .collapse,
3550
1081
  .yamm .dropup.use-yamm,
3551
- .yamm .dropdown.use-yamm {
3552
- position: static;
3553
- }
3554
- .yamm .container {
3555
- position: relative;
3556
- }
3557
- .yamm .dropdown-menu {
3558
- left: auto;
3559
- }
3560
- .yamm .nav.navbar-right .dropdown-menu {
3561
- left: auto;
3562
- right: 0;
3563
- }
3564
- .yamm .yamm-content {
3565
- padding: 20px 30px;
3566
- }
3567
- .yamm .dropdown.yamm-fw .dropdown-menu {
3568
- left: 15px;
3569
- right: 15px;
3570
- }
1082
+ .yamm .dropdown.use-yamm{position:static;}
1083
+ .yamm .container{position:relative;}
1084
+ .yamm .dropdown-menu{left:auto;}
1085
+ .yamm .nav.navbar-right .dropdown-menu{left:auto;right:0;}
1086
+ .yamm .yamm-content{padding:20px 30px;}
1087
+ .yamm .dropdown.yamm-fw .dropdown-menu{left:15px;right:15px;}