wedge 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/Gemfile +2 -0
- data/lib/roda/plugins/wedge.rb +15 -5
- data/lib/wedge/component.rb +40 -9
- data/lib/wedge/config.rb +2 -0
- data/lib/wedge/dom.rb +1 -0
- data/lib/wedge/events.rb +1 -1
- data/lib/wedge/html.rb +39 -0
- data/lib/wedge/middleware.rb +14 -12
- data/lib/wedge/plugins/uploader.rb +287 -0
- data/lib/wedge/require.rb +23 -35
- data/lib/wedge/version.rb +1 -1
- data/lib/wedge.rb +29 -18
- data/playground/Gruntfile.coffee +99 -0
- data/playground/app/app.rb +57 -0
- data/playground/app/components/index.rb +12 -0
- data/playground/app/components/layout.rb +38 -0
- data/playground/app/components/uploader.rb +32 -0
- data/playground/app/config/boot.rb +14 -0
- data/playground/app/config/variables.rb +16 -0
- data/{test/dummy → playground/backup}/components/bar.rb +0 -0
- data/{test/dummy → playground/backup}/components/base.rb +0 -0
- data/{test/dummy → playground/backup}/components/layout.rb +0 -0
- data/playground/backup/components/profile.rb +0 -0
- data/{test/dummy → playground/backup}/components/root.rb +12 -4
- data/{test/dummy → playground/backup}/forms/bar.rb +0 -0
- data/{test/dummy → playground/backup}/forms/foo.rb +0 -0
- data/playground/backup/html/layout.html +9 -0
- data/playground/bower.json +25 -0
- data/playground/config.ru +5 -0
- data/playground/package.json +19 -0
- data/playground/public/css/styles.css +2649 -0
- data/playground/public/css/styles.css.map +7 -0
- data/playground/public/includes/_head.html +9 -0
- data/playground/public/index.html +18 -0
- data/playground/public/uploader.html +33 -0
- data/playground/public/vendor/font-awesome/fonts/FontAwesome.otf +0 -0
- data/playground/public/vendor/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/playground/public/vendor/font-awesome/fonts/fontawesome-webfont.svg +565 -0
- data/playground/public/vendor/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/playground/public/vendor/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/playground/public/vendor/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/playground/public/vendor/jquery/jquery.js +9210 -0
- data/playground/public/vendor/normalize-css/normalize.css +424 -0
- data/playground/src/css/_uploader.scss +73 -0
- data/playground/src/css/_variables.scss +16 -0
- data/playground/src/css/addons/_buttons.scss +12 -0
- data/playground/src/css/styles.scss +14 -0
- data/playground/src/includes/_head.slim +12 -0
- data/playground/src/index.slim +6 -0
- data/playground/src/uploader.slim +13 -0
- data/wedge.gemspec +1 -1
- metadata +46 -23
- data/test/dummy/app.rb +0 -46
- data/test/dummy/config.ru +0 -6
@@ -0,0 +1,2649 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
@import url(../vendor/normalize-css/normalize.css);
|
3
|
+
/*!
|
4
|
+
* Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
|
5
|
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
6
|
+
*/
|
7
|
+
/* FONT PATH
|
8
|
+
* -------------------------- */
|
9
|
+
@font-face {
|
10
|
+
font-family: 'FontAwesome';
|
11
|
+
src: url("../vendor/font-awesome/fonts/fontawesome-webfont.eot?v=4.3.0");
|
12
|
+
src: url("../vendor/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../vendor/font-awesome/fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../vendor/font-awesome/fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../vendor/font-awesome/fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../vendor/font-awesome/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
|
13
|
+
font-weight: normal;
|
14
|
+
font-style: normal;
|
15
|
+
}
|
16
|
+
.fa {
|
17
|
+
display: inline-block;
|
18
|
+
font: normal normal normal 14px/1 FontAwesome;
|
19
|
+
font-size: inherit;
|
20
|
+
text-rendering: auto;
|
21
|
+
-webkit-font-smoothing: antialiased;
|
22
|
+
-moz-osx-font-smoothing: grayscale;
|
23
|
+
transform: translate(0, 0);
|
24
|
+
}
|
25
|
+
|
26
|
+
/* makes the font 33% larger relative to the icon container */
|
27
|
+
.fa-lg {
|
28
|
+
font-size: 1.33333em;
|
29
|
+
line-height: 0.75em;
|
30
|
+
vertical-align: -15%;
|
31
|
+
}
|
32
|
+
|
33
|
+
.fa-2x {
|
34
|
+
font-size: 2em;
|
35
|
+
}
|
36
|
+
|
37
|
+
.fa-3x {
|
38
|
+
font-size: 3em;
|
39
|
+
}
|
40
|
+
|
41
|
+
.fa-4x {
|
42
|
+
font-size: 4em;
|
43
|
+
}
|
44
|
+
|
45
|
+
.fa-5x {
|
46
|
+
font-size: 5em;
|
47
|
+
}
|
48
|
+
|
49
|
+
.fa-fw {
|
50
|
+
width: 1.28571em;
|
51
|
+
text-align: center;
|
52
|
+
}
|
53
|
+
|
54
|
+
.fa-ul {
|
55
|
+
padding-left: 0;
|
56
|
+
margin-left: 2.14286em;
|
57
|
+
list-style-type: none;
|
58
|
+
}
|
59
|
+
.fa-ul > li {
|
60
|
+
position: relative;
|
61
|
+
}
|
62
|
+
|
63
|
+
.fa-li {
|
64
|
+
position: absolute;
|
65
|
+
left: -2.14286em;
|
66
|
+
width: 2.14286em;
|
67
|
+
top: 0.14286em;
|
68
|
+
text-align: center;
|
69
|
+
}
|
70
|
+
.fa-li.fa-lg {
|
71
|
+
left: -1.85714em;
|
72
|
+
}
|
73
|
+
|
74
|
+
.fa-border {
|
75
|
+
padding: .2em .25em .15em;
|
76
|
+
border: solid 0.08em #eee;
|
77
|
+
border-radius: .1em;
|
78
|
+
}
|
79
|
+
|
80
|
+
.pull-right {
|
81
|
+
float: right;
|
82
|
+
}
|
83
|
+
|
84
|
+
.pull-left {
|
85
|
+
float: left;
|
86
|
+
}
|
87
|
+
|
88
|
+
.fa.pull-left {
|
89
|
+
margin-right: .3em;
|
90
|
+
}
|
91
|
+
.fa.pull-right {
|
92
|
+
margin-left: .3em;
|
93
|
+
}
|
94
|
+
|
95
|
+
.fa-spin {
|
96
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
97
|
+
animation: fa-spin 2s infinite linear;
|
98
|
+
}
|
99
|
+
|
100
|
+
.fa-pulse {
|
101
|
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
102
|
+
animation: fa-spin 1s infinite steps(8);
|
103
|
+
}
|
104
|
+
|
105
|
+
@-webkit-keyframes fa-spin {
|
106
|
+
0% {
|
107
|
+
-webkit-transform: rotate(0deg);
|
108
|
+
transform: rotate(0deg);
|
109
|
+
}
|
110
|
+
100% {
|
111
|
+
-webkit-transform: rotate(359deg);
|
112
|
+
transform: rotate(359deg);
|
113
|
+
}
|
114
|
+
}
|
115
|
+
@keyframes fa-spin {
|
116
|
+
0% {
|
117
|
+
-webkit-transform: rotate(0deg);
|
118
|
+
transform: rotate(0deg);
|
119
|
+
}
|
120
|
+
100% {
|
121
|
+
-webkit-transform: rotate(359deg);
|
122
|
+
transform: rotate(359deg);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
.fa-rotate-90 {
|
126
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
127
|
+
-webkit-transform: rotate(90deg);
|
128
|
+
-ms-transform: rotate(90deg);
|
129
|
+
transform: rotate(90deg);
|
130
|
+
}
|
131
|
+
|
132
|
+
.fa-rotate-180 {
|
133
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
134
|
+
-webkit-transform: rotate(180deg);
|
135
|
+
-ms-transform: rotate(180deg);
|
136
|
+
transform: rotate(180deg);
|
137
|
+
}
|
138
|
+
|
139
|
+
.fa-rotate-270 {
|
140
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
141
|
+
-webkit-transform: rotate(270deg);
|
142
|
+
-ms-transform: rotate(270deg);
|
143
|
+
transform: rotate(270deg);
|
144
|
+
}
|
145
|
+
|
146
|
+
.fa-flip-horizontal {
|
147
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
|
148
|
+
-webkit-transform: scale(-1, 1);
|
149
|
+
-ms-transform: scale(-1, 1);
|
150
|
+
transform: scale(-1, 1);
|
151
|
+
}
|
152
|
+
|
153
|
+
.fa-flip-vertical {
|
154
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
155
|
+
-webkit-transform: scale(1, -1);
|
156
|
+
-ms-transform: scale(1, -1);
|
157
|
+
transform: scale(1, -1);
|
158
|
+
}
|
159
|
+
|
160
|
+
:root .fa-rotate-90,
|
161
|
+
:root .fa-rotate-180,
|
162
|
+
:root .fa-rotate-270,
|
163
|
+
:root .fa-flip-horizontal,
|
164
|
+
:root .fa-flip-vertical {
|
165
|
+
filter: none;
|
166
|
+
}
|
167
|
+
|
168
|
+
.fa-stack {
|
169
|
+
position: relative;
|
170
|
+
display: inline-block;
|
171
|
+
width: 2em;
|
172
|
+
height: 2em;
|
173
|
+
line-height: 2em;
|
174
|
+
vertical-align: middle;
|
175
|
+
}
|
176
|
+
|
177
|
+
.fa-stack-1x, .fa-stack-2x {
|
178
|
+
position: absolute;
|
179
|
+
left: 0;
|
180
|
+
width: 100%;
|
181
|
+
text-align: center;
|
182
|
+
}
|
183
|
+
|
184
|
+
.fa-stack-1x {
|
185
|
+
line-height: inherit;
|
186
|
+
}
|
187
|
+
|
188
|
+
.fa-stack-2x {
|
189
|
+
font-size: 2em;
|
190
|
+
}
|
191
|
+
|
192
|
+
.fa-inverse {
|
193
|
+
color: #fff;
|
194
|
+
}
|
195
|
+
|
196
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
197
|
+
readers do not read off random characters that represent icons */
|
198
|
+
.fa-glass:before {
|
199
|
+
content: "";
|
200
|
+
}
|
201
|
+
|
202
|
+
.fa-music:before {
|
203
|
+
content: "";
|
204
|
+
}
|
205
|
+
|
206
|
+
.fa-search:before {
|
207
|
+
content: "";
|
208
|
+
}
|
209
|
+
|
210
|
+
.fa-envelope-o:before {
|
211
|
+
content: "";
|
212
|
+
}
|
213
|
+
|
214
|
+
.fa-heart:before {
|
215
|
+
content: "";
|
216
|
+
}
|
217
|
+
|
218
|
+
.fa-star:before {
|
219
|
+
content: "";
|
220
|
+
}
|
221
|
+
|
222
|
+
.fa-star-o:before {
|
223
|
+
content: "";
|
224
|
+
}
|
225
|
+
|
226
|
+
.fa-user:before {
|
227
|
+
content: "";
|
228
|
+
}
|
229
|
+
|
230
|
+
.fa-film:before {
|
231
|
+
content: "";
|
232
|
+
}
|
233
|
+
|
234
|
+
.fa-th-large:before {
|
235
|
+
content: "";
|
236
|
+
}
|
237
|
+
|
238
|
+
.fa-th:before {
|
239
|
+
content: "";
|
240
|
+
}
|
241
|
+
|
242
|
+
.fa-th-list:before {
|
243
|
+
content: "";
|
244
|
+
}
|
245
|
+
|
246
|
+
.fa-check:before {
|
247
|
+
content: "";
|
248
|
+
}
|
249
|
+
|
250
|
+
.fa-remove:before,
|
251
|
+
.fa-close:before,
|
252
|
+
.fa-times:before {
|
253
|
+
content: "";
|
254
|
+
}
|
255
|
+
|
256
|
+
.fa-search-plus:before {
|
257
|
+
content: "";
|
258
|
+
}
|
259
|
+
|
260
|
+
.fa-search-minus:before {
|
261
|
+
content: "";
|
262
|
+
}
|
263
|
+
|
264
|
+
.fa-power-off:before {
|
265
|
+
content: "";
|
266
|
+
}
|
267
|
+
|
268
|
+
.fa-signal:before {
|
269
|
+
content: "";
|
270
|
+
}
|
271
|
+
|
272
|
+
.fa-gear:before,
|
273
|
+
.fa-cog:before {
|
274
|
+
content: "";
|
275
|
+
}
|
276
|
+
|
277
|
+
.fa-trash-o:before {
|
278
|
+
content: "";
|
279
|
+
}
|
280
|
+
|
281
|
+
.fa-home:before {
|
282
|
+
content: "";
|
283
|
+
}
|
284
|
+
|
285
|
+
.fa-file-o:before {
|
286
|
+
content: "";
|
287
|
+
}
|
288
|
+
|
289
|
+
.fa-clock-o:before {
|
290
|
+
content: "";
|
291
|
+
}
|
292
|
+
|
293
|
+
.fa-road:before {
|
294
|
+
content: "";
|
295
|
+
}
|
296
|
+
|
297
|
+
.fa-download:before {
|
298
|
+
content: "";
|
299
|
+
}
|
300
|
+
|
301
|
+
.fa-arrow-circle-o-down:before {
|
302
|
+
content: "";
|
303
|
+
}
|
304
|
+
|
305
|
+
.fa-arrow-circle-o-up:before {
|
306
|
+
content: "";
|
307
|
+
}
|
308
|
+
|
309
|
+
.fa-inbox:before {
|
310
|
+
content: "";
|
311
|
+
}
|
312
|
+
|
313
|
+
.fa-play-circle-o:before {
|
314
|
+
content: "";
|
315
|
+
}
|
316
|
+
|
317
|
+
.fa-rotate-right:before,
|
318
|
+
.fa-repeat:before {
|
319
|
+
content: "";
|
320
|
+
}
|
321
|
+
|
322
|
+
.fa-refresh:before {
|
323
|
+
content: "";
|
324
|
+
}
|
325
|
+
|
326
|
+
.fa-list-alt:before {
|
327
|
+
content: "";
|
328
|
+
}
|
329
|
+
|
330
|
+
.fa-lock:before {
|
331
|
+
content: "";
|
332
|
+
}
|
333
|
+
|
334
|
+
.fa-flag:before {
|
335
|
+
content: "";
|
336
|
+
}
|
337
|
+
|
338
|
+
.fa-headphones:before {
|
339
|
+
content: "";
|
340
|
+
}
|
341
|
+
|
342
|
+
.fa-volume-off:before {
|
343
|
+
content: "";
|
344
|
+
}
|
345
|
+
|
346
|
+
.fa-volume-down:before {
|
347
|
+
content: "";
|
348
|
+
}
|
349
|
+
|
350
|
+
.fa-volume-up:before {
|
351
|
+
content: "";
|
352
|
+
}
|
353
|
+
|
354
|
+
.fa-qrcode:before {
|
355
|
+
content: "";
|
356
|
+
}
|
357
|
+
|
358
|
+
.fa-barcode:before {
|
359
|
+
content: "";
|
360
|
+
}
|
361
|
+
|
362
|
+
.fa-tag:before {
|
363
|
+
content: "";
|
364
|
+
}
|
365
|
+
|
366
|
+
.fa-tags:before {
|
367
|
+
content: "";
|
368
|
+
}
|
369
|
+
|
370
|
+
.fa-book:before {
|
371
|
+
content: "";
|
372
|
+
}
|
373
|
+
|
374
|
+
.fa-bookmark:before {
|
375
|
+
content: "";
|
376
|
+
}
|
377
|
+
|
378
|
+
.fa-print:before {
|
379
|
+
content: "";
|
380
|
+
}
|
381
|
+
|
382
|
+
.fa-camera:before {
|
383
|
+
content: "";
|
384
|
+
}
|
385
|
+
|
386
|
+
.fa-font:before {
|
387
|
+
content: "";
|
388
|
+
}
|
389
|
+
|
390
|
+
.fa-bold:before {
|
391
|
+
content: "";
|
392
|
+
}
|
393
|
+
|
394
|
+
.fa-italic:before {
|
395
|
+
content: "";
|
396
|
+
}
|
397
|
+
|
398
|
+
.fa-text-height:before {
|
399
|
+
content: "";
|
400
|
+
}
|
401
|
+
|
402
|
+
.fa-text-width:before {
|
403
|
+
content: "";
|
404
|
+
}
|
405
|
+
|
406
|
+
.fa-align-left:before {
|
407
|
+
content: "";
|
408
|
+
}
|
409
|
+
|
410
|
+
.fa-align-center:before {
|
411
|
+
content: "";
|
412
|
+
}
|
413
|
+
|
414
|
+
.fa-align-right:before {
|
415
|
+
content: "";
|
416
|
+
}
|
417
|
+
|
418
|
+
.fa-align-justify:before {
|
419
|
+
content: "";
|
420
|
+
}
|
421
|
+
|
422
|
+
.fa-list:before {
|
423
|
+
content: "";
|
424
|
+
}
|
425
|
+
|
426
|
+
.fa-dedent:before,
|
427
|
+
.fa-outdent:before {
|
428
|
+
content: "";
|
429
|
+
}
|
430
|
+
|
431
|
+
.fa-indent:before {
|
432
|
+
content: "";
|
433
|
+
}
|
434
|
+
|
435
|
+
.fa-video-camera:before {
|
436
|
+
content: "";
|
437
|
+
}
|
438
|
+
|
439
|
+
.fa-photo:before,
|
440
|
+
.fa-image:before,
|
441
|
+
.fa-picture-o:before {
|
442
|
+
content: "";
|
443
|
+
}
|
444
|
+
|
445
|
+
.fa-pencil:before {
|
446
|
+
content: "";
|
447
|
+
}
|
448
|
+
|
449
|
+
.fa-map-marker:before {
|
450
|
+
content: "";
|
451
|
+
}
|
452
|
+
|
453
|
+
.fa-adjust:before {
|
454
|
+
content: "";
|
455
|
+
}
|
456
|
+
|
457
|
+
.fa-tint:before {
|
458
|
+
content: "";
|
459
|
+
}
|
460
|
+
|
461
|
+
.fa-edit:before,
|
462
|
+
.fa-pencil-square-o:before {
|
463
|
+
content: "";
|
464
|
+
}
|
465
|
+
|
466
|
+
.fa-share-square-o:before {
|
467
|
+
content: "";
|
468
|
+
}
|
469
|
+
|
470
|
+
.fa-check-square-o:before {
|
471
|
+
content: "";
|
472
|
+
}
|
473
|
+
|
474
|
+
.fa-arrows:before {
|
475
|
+
content: "";
|
476
|
+
}
|
477
|
+
|
478
|
+
.fa-step-backward:before {
|
479
|
+
content: "";
|
480
|
+
}
|
481
|
+
|
482
|
+
.fa-fast-backward:before {
|
483
|
+
content: "";
|
484
|
+
}
|
485
|
+
|
486
|
+
.fa-backward:before {
|
487
|
+
content: "";
|
488
|
+
}
|
489
|
+
|
490
|
+
.fa-play:before {
|
491
|
+
content: "";
|
492
|
+
}
|
493
|
+
|
494
|
+
.fa-pause:before {
|
495
|
+
content: "";
|
496
|
+
}
|
497
|
+
|
498
|
+
.fa-stop:before {
|
499
|
+
content: "";
|
500
|
+
}
|
501
|
+
|
502
|
+
.fa-forward:before {
|
503
|
+
content: "";
|
504
|
+
}
|
505
|
+
|
506
|
+
.fa-fast-forward:before {
|
507
|
+
content: "";
|
508
|
+
}
|
509
|
+
|
510
|
+
.fa-step-forward:before {
|
511
|
+
content: "";
|
512
|
+
}
|
513
|
+
|
514
|
+
.fa-eject:before {
|
515
|
+
content: "";
|
516
|
+
}
|
517
|
+
|
518
|
+
.fa-chevron-left:before {
|
519
|
+
content: "";
|
520
|
+
}
|
521
|
+
|
522
|
+
.fa-chevron-right:before {
|
523
|
+
content: "";
|
524
|
+
}
|
525
|
+
|
526
|
+
.fa-plus-circle:before {
|
527
|
+
content: "";
|
528
|
+
}
|
529
|
+
|
530
|
+
.fa-minus-circle:before {
|
531
|
+
content: "";
|
532
|
+
}
|
533
|
+
|
534
|
+
.fa-times-circle:before {
|
535
|
+
content: "";
|
536
|
+
}
|
537
|
+
|
538
|
+
.fa-check-circle:before {
|
539
|
+
content: "";
|
540
|
+
}
|
541
|
+
|
542
|
+
.fa-question-circle:before {
|
543
|
+
content: "";
|
544
|
+
}
|
545
|
+
|
546
|
+
.fa-info-circle:before {
|
547
|
+
content: "";
|
548
|
+
}
|
549
|
+
|
550
|
+
.fa-crosshairs:before {
|
551
|
+
content: "";
|
552
|
+
}
|
553
|
+
|
554
|
+
.fa-times-circle-o:before {
|
555
|
+
content: "";
|
556
|
+
}
|
557
|
+
|
558
|
+
.fa-check-circle-o:before {
|
559
|
+
content: "";
|
560
|
+
}
|
561
|
+
|
562
|
+
.fa-ban:before {
|
563
|
+
content: "";
|
564
|
+
}
|
565
|
+
|
566
|
+
.fa-arrow-left:before {
|
567
|
+
content: "";
|
568
|
+
}
|
569
|
+
|
570
|
+
.fa-arrow-right:before {
|
571
|
+
content: "";
|
572
|
+
}
|
573
|
+
|
574
|
+
.fa-arrow-up:before {
|
575
|
+
content: "";
|
576
|
+
}
|
577
|
+
|
578
|
+
.fa-arrow-down:before {
|
579
|
+
content: "";
|
580
|
+
}
|
581
|
+
|
582
|
+
.fa-mail-forward:before,
|
583
|
+
.fa-share:before {
|
584
|
+
content: "";
|
585
|
+
}
|
586
|
+
|
587
|
+
.fa-expand:before {
|
588
|
+
content: "";
|
589
|
+
}
|
590
|
+
|
591
|
+
.fa-compress:before {
|
592
|
+
content: "";
|
593
|
+
}
|
594
|
+
|
595
|
+
.fa-plus:before {
|
596
|
+
content: "";
|
597
|
+
}
|
598
|
+
|
599
|
+
.fa-minus:before {
|
600
|
+
content: "";
|
601
|
+
}
|
602
|
+
|
603
|
+
.fa-asterisk:before {
|
604
|
+
content: "";
|
605
|
+
}
|
606
|
+
|
607
|
+
.fa-exclamation-circle:before {
|
608
|
+
content: "";
|
609
|
+
}
|
610
|
+
|
611
|
+
.fa-gift:before {
|
612
|
+
content: "";
|
613
|
+
}
|
614
|
+
|
615
|
+
.fa-leaf:before {
|
616
|
+
content: "";
|
617
|
+
}
|
618
|
+
|
619
|
+
.fa-fire:before {
|
620
|
+
content: "";
|
621
|
+
}
|
622
|
+
|
623
|
+
.fa-eye:before {
|
624
|
+
content: "";
|
625
|
+
}
|
626
|
+
|
627
|
+
.fa-eye-slash:before {
|
628
|
+
content: "";
|
629
|
+
}
|
630
|
+
|
631
|
+
.fa-warning:before,
|
632
|
+
.fa-exclamation-triangle:before {
|
633
|
+
content: "";
|
634
|
+
}
|
635
|
+
|
636
|
+
.fa-plane:before {
|
637
|
+
content: "";
|
638
|
+
}
|
639
|
+
|
640
|
+
.fa-calendar:before {
|
641
|
+
content: "";
|
642
|
+
}
|
643
|
+
|
644
|
+
.fa-random:before {
|
645
|
+
content: "";
|
646
|
+
}
|
647
|
+
|
648
|
+
.fa-comment:before {
|
649
|
+
content: "";
|
650
|
+
}
|
651
|
+
|
652
|
+
.fa-magnet:before {
|
653
|
+
content: "";
|
654
|
+
}
|
655
|
+
|
656
|
+
.fa-chevron-up:before {
|
657
|
+
content: "";
|
658
|
+
}
|
659
|
+
|
660
|
+
.fa-chevron-down:before {
|
661
|
+
content: "";
|
662
|
+
}
|
663
|
+
|
664
|
+
.fa-retweet:before {
|
665
|
+
content: "";
|
666
|
+
}
|
667
|
+
|
668
|
+
.fa-shopping-cart:before {
|
669
|
+
content: "";
|
670
|
+
}
|
671
|
+
|
672
|
+
.fa-folder:before {
|
673
|
+
content: "";
|
674
|
+
}
|
675
|
+
|
676
|
+
.fa-folder-open:before {
|
677
|
+
content: "";
|
678
|
+
}
|
679
|
+
|
680
|
+
.fa-arrows-v:before {
|
681
|
+
content: "";
|
682
|
+
}
|
683
|
+
|
684
|
+
.fa-arrows-h:before {
|
685
|
+
content: "";
|
686
|
+
}
|
687
|
+
|
688
|
+
.fa-bar-chart-o:before,
|
689
|
+
.fa-bar-chart:before {
|
690
|
+
content: "";
|
691
|
+
}
|
692
|
+
|
693
|
+
.fa-twitter-square:before {
|
694
|
+
content: "";
|
695
|
+
}
|
696
|
+
|
697
|
+
.fa-facebook-square:before {
|
698
|
+
content: "";
|
699
|
+
}
|
700
|
+
|
701
|
+
.fa-camera-retro:before {
|
702
|
+
content: "";
|
703
|
+
}
|
704
|
+
|
705
|
+
.fa-key:before {
|
706
|
+
content: "";
|
707
|
+
}
|
708
|
+
|
709
|
+
.fa-gears:before,
|
710
|
+
.fa-cogs:before {
|
711
|
+
content: "";
|
712
|
+
}
|
713
|
+
|
714
|
+
.fa-comments:before {
|
715
|
+
content: "";
|
716
|
+
}
|
717
|
+
|
718
|
+
.fa-thumbs-o-up:before {
|
719
|
+
content: "";
|
720
|
+
}
|
721
|
+
|
722
|
+
.fa-thumbs-o-down:before {
|
723
|
+
content: "";
|
724
|
+
}
|
725
|
+
|
726
|
+
.fa-star-half:before {
|
727
|
+
content: "";
|
728
|
+
}
|
729
|
+
|
730
|
+
.fa-heart-o:before {
|
731
|
+
content: "";
|
732
|
+
}
|
733
|
+
|
734
|
+
.fa-sign-out:before {
|
735
|
+
content: "";
|
736
|
+
}
|
737
|
+
|
738
|
+
.fa-linkedin-square:before {
|
739
|
+
content: "";
|
740
|
+
}
|
741
|
+
|
742
|
+
.fa-thumb-tack:before {
|
743
|
+
content: "";
|
744
|
+
}
|
745
|
+
|
746
|
+
.fa-external-link:before {
|
747
|
+
content: "";
|
748
|
+
}
|
749
|
+
|
750
|
+
.fa-sign-in:before {
|
751
|
+
content: "";
|
752
|
+
}
|
753
|
+
|
754
|
+
.fa-trophy:before {
|
755
|
+
content: "";
|
756
|
+
}
|
757
|
+
|
758
|
+
.fa-github-square:before {
|
759
|
+
content: "";
|
760
|
+
}
|
761
|
+
|
762
|
+
.fa-upload:before {
|
763
|
+
content: "";
|
764
|
+
}
|
765
|
+
|
766
|
+
.fa-lemon-o:before {
|
767
|
+
content: "";
|
768
|
+
}
|
769
|
+
|
770
|
+
.fa-phone:before {
|
771
|
+
content: "";
|
772
|
+
}
|
773
|
+
|
774
|
+
.fa-square-o:before {
|
775
|
+
content: "";
|
776
|
+
}
|
777
|
+
|
778
|
+
.fa-bookmark-o:before {
|
779
|
+
content: "";
|
780
|
+
}
|
781
|
+
|
782
|
+
.fa-phone-square:before {
|
783
|
+
content: "";
|
784
|
+
}
|
785
|
+
|
786
|
+
.fa-twitter:before {
|
787
|
+
content: "";
|
788
|
+
}
|
789
|
+
|
790
|
+
.fa-facebook-f:before,
|
791
|
+
.fa-facebook:before {
|
792
|
+
content: "";
|
793
|
+
}
|
794
|
+
|
795
|
+
.fa-github:before {
|
796
|
+
content: "";
|
797
|
+
}
|
798
|
+
|
799
|
+
.fa-unlock:before {
|
800
|
+
content: "";
|
801
|
+
}
|
802
|
+
|
803
|
+
.fa-credit-card:before {
|
804
|
+
content: "";
|
805
|
+
}
|
806
|
+
|
807
|
+
.fa-rss:before {
|
808
|
+
content: "";
|
809
|
+
}
|
810
|
+
|
811
|
+
.fa-hdd-o:before {
|
812
|
+
content: "";
|
813
|
+
}
|
814
|
+
|
815
|
+
.fa-bullhorn:before {
|
816
|
+
content: "";
|
817
|
+
}
|
818
|
+
|
819
|
+
.fa-bell:before {
|
820
|
+
content: "";
|
821
|
+
}
|
822
|
+
|
823
|
+
.fa-certificate:before {
|
824
|
+
content: "";
|
825
|
+
}
|
826
|
+
|
827
|
+
.fa-hand-o-right:before {
|
828
|
+
content: "";
|
829
|
+
}
|
830
|
+
|
831
|
+
.fa-hand-o-left:before {
|
832
|
+
content: "";
|
833
|
+
}
|
834
|
+
|
835
|
+
.fa-hand-o-up:before {
|
836
|
+
content: "";
|
837
|
+
}
|
838
|
+
|
839
|
+
.fa-hand-o-down:before {
|
840
|
+
content: "";
|
841
|
+
}
|
842
|
+
|
843
|
+
.fa-arrow-circle-left:before {
|
844
|
+
content: "";
|
845
|
+
}
|
846
|
+
|
847
|
+
.fa-arrow-circle-right:before {
|
848
|
+
content: "";
|
849
|
+
}
|
850
|
+
|
851
|
+
.fa-arrow-circle-up:before {
|
852
|
+
content: "";
|
853
|
+
}
|
854
|
+
|
855
|
+
.fa-arrow-circle-down:before {
|
856
|
+
content: "";
|
857
|
+
}
|
858
|
+
|
859
|
+
.fa-globe:before {
|
860
|
+
content: "";
|
861
|
+
}
|
862
|
+
|
863
|
+
.fa-wrench:before {
|
864
|
+
content: "";
|
865
|
+
}
|
866
|
+
|
867
|
+
.fa-tasks:before {
|
868
|
+
content: "";
|
869
|
+
}
|
870
|
+
|
871
|
+
.fa-filter:before {
|
872
|
+
content: "";
|
873
|
+
}
|
874
|
+
|
875
|
+
.fa-briefcase:before {
|
876
|
+
content: "";
|
877
|
+
}
|
878
|
+
|
879
|
+
.fa-arrows-alt:before {
|
880
|
+
content: "";
|
881
|
+
}
|
882
|
+
|
883
|
+
.fa-group:before,
|
884
|
+
.fa-users:before {
|
885
|
+
content: "";
|
886
|
+
}
|
887
|
+
|
888
|
+
.fa-chain:before,
|
889
|
+
.fa-link:before {
|
890
|
+
content: "";
|
891
|
+
}
|
892
|
+
|
893
|
+
.fa-cloud:before {
|
894
|
+
content: "";
|
895
|
+
}
|
896
|
+
|
897
|
+
.fa-flask:before {
|
898
|
+
content: "";
|
899
|
+
}
|
900
|
+
|
901
|
+
.fa-cut:before,
|
902
|
+
.fa-scissors:before {
|
903
|
+
content: "";
|
904
|
+
}
|
905
|
+
|
906
|
+
.fa-copy:before,
|
907
|
+
.fa-files-o:before {
|
908
|
+
content: "";
|
909
|
+
}
|
910
|
+
|
911
|
+
.fa-paperclip:before {
|
912
|
+
content: "";
|
913
|
+
}
|
914
|
+
|
915
|
+
.fa-save:before,
|
916
|
+
.fa-floppy-o:before {
|
917
|
+
content: "";
|
918
|
+
}
|
919
|
+
|
920
|
+
.fa-square:before {
|
921
|
+
content: "";
|
922
|
+
}
|
923
|
+
|
924
|
+
.fa-navicon:before,
|
925
|
+
.fa-reorder:before,
|
926
|
+
.fa-bars:before {
|
927
|
+
content: "";
|
928
|
+
}
|
929
|
+
|
930
|
+
.fa-list-ul:before {
|
931
|
+
content: "";
|
932
|
+
}
|
933
|
+
|
934
|
+
.fa-list-ol:before {
|
935
|
+
content: "";
|
936
|
+
}
|
937
|
+
|
938
|
+
.fa-strikethrough:before {
|
939
|
+
content: "";
|
940
|
+
}
|
941
|
+
|
942
|
+
.fa-underline:before {
|
943
|
+
content: "";
|
944
|
+
}
|
945
|
+
|
946
|
+
.fa-table:before {
|
947
|
+
content: "";
|
948
|
+
}
|
949
|
+
|
950
|
+
.fa-magic:before {
|
951
|
+
content: "";
|
952
|
+
}
|
953
|
+
|
954
|
+
.fa-truck:before {
|
955
|
+
content: "";
|
956
|
+
}
|
957
|
+
|
958
|
+
.fa-pinterest:before {
|
959
|
+
content: "";
|
960
|
+
}
|
961
|
+
|
962
|
+
.fa-pinterest-square:before {
|
963
|
+
content: "";
|
964
|
+
}
|
965
|
+
|
966
|
+
.fa-google-plus-square:before {
|
967
|
+
content: "";
|
968
|
+
}
|
969
|
+
|
970
|
+
.fa-google-plus:before {
|
971
|
+
content: "";
|
972
|
+
}
|
973
|
+
|
974
|
+
.fa-money:before {
|
975
|
+
content: "";
|
976
|
+
}
|
977
|
+
|
978
|
+
.fa-caret-down:before {
|
979
|
+
content: "";
|
980
|
+
}
|
981
|
+
|
982
|
+
.fa-caret-up:before {
|
983
|
+
content: "";
|
984
|
+
}
|
985
|
+
|
986
|
+
.fa-caret-left:before {
|
987
|
+
content: "";
|
988
|
+
}
|
989
|
+
|
990
|
+
.fa-caret-right:before {
|
991
|
+
content: "";
|
992
|
+
}
|
993
|
+
|
994
|
+
.fa-columns:before {
|
995
|
+
content: "";
|
996
|
+
}
|
997
|
+
|
998
|
+
.fa-unsorted:before,
|
999
|
+
.fa-sort:before {
|
1000
|
+
content: "";
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.fa-sort-down:before,
|
1004
|
+
.fa-sort-desc:before {
|
1005
|
+
content: "";
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.fa-sort-up:before,
|
1009
|
+
.fa-sort-asc:before {
|
1010
|
+
content: "";
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
.fa-envelope:before {
|
1014
|
+
content: "";
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
.fa-linkedin:before {
|
1018
|
+
content: "";
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.fa-rotate-left:before,
|
1022
|
+
.fa-undo:before {
|
1023
|
+
content: "";
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
.fa-legal:before,
|
1027
|
+
.fa-gavel:before {
|
1028
|
+
content: "";
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
.fa-dashboard:before,
|
1032
|
+
.fa-tachometer:before {
|
1033
|
+
content: "";
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
.fa-comment-o:before {
|
1037
|
+
content: "";
|
1038
|
+
}
|
1039
|
+
|
1040
|
+
.fa-comments-o:before {
|
1041
|
+
content: "";
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
.fa-flash:before,
|
1045
|
+
.fa-bolt:before {
|
1046
|
+
content: "";
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.fa-sitemap:before {
|
1050
|
+
content: "";
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
.fa-umbrella:before {
|
1054
|
+
content: "";
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.fa-paste:before,
|
1058
|
+
.fa-clipboard:before {
|
1059
|
+
content: "";
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
.fa-lightbulb-o:before {
|
1063
|
+
content: "";
|
1064
|
+
}
|
1065
|
+
|
1066
|
+
.fa-exchange:before {
|
1067
|
+
content: "";
|
1068
|
+
}
|
1069
|
+
|
1070
|
+
.fa-cloud-download:before {
|
1071
|
+
content: "";
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
.fa-cloud-upload:before {
|
1075
|
+
content: "";
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.fa-user-md:before {
|
1079
|
+
content: "";
|
1080
|
+
}
|
1081
|
+
|
1082
|
+
.fa-stethoscope:before {
|
1083
|
+
content: "";
|
1084
|
+
}
|
1085
|
+
|
1086
|
+
.fa-suitcase:before {
|
1087
|
+
content: "";
|
1088
|
+
}
|
1089
|
+
|
1090
|
+
.fa-bell-o:before {
|
1091
|
+
content: "";
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
.fa-coffee:before {
|
1095
|
+
content: "";
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
.fa-cutlery:before {
|
1099
|
+
content: "";
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
.fa-file-text-o:before {
|
1103
|
+
content: "";
|
1104
|
+
}
|
1105
|
+
|
1106
|
+
.fa-building-o:before {
|
1107
|
+
content: "";
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
.fa-hospital-o:before {
|
1111
|
+
content: "";
|
1112
|
+
}
|
1113
|
+
|
1114
|
+
.fa-ambulance:before {
|
1115
|
+
content: "";
|
1116
|
+
}
|
1117
|
+
|
1118
|
+
.fa-medkit:before {
|
1119
|
+
content: "";
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
.fa-fighter-jet:before {
|
1123
|
+
content: "";
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
.fa-beer:before {
|
1127
|
+
content: "";
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
.fa-h-square:before {
|
1131
|
+
content: "";
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
.fa-plus-square:before {
|
1135
|
+
content: "";
|
1136
|
+
}
|
1137
|
+
|
1138
|
+
.fa-angle-double-left:before {
|
1139
|
+
content: "";
|
1140
|
+
}
|
1141
|
+
|
1142
|
+
.fa-angle-double-right:before {
|
1143
|
+
content: "";
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
.fa-angle-double-up:before {
|
1147
|
+
content: "";
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
.fa-angle-double-down:before {
|
1151
|
+
content: "";
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
.fa-angle-left:before {
|
1155
|
+
content: "";
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
.fa-angle-right:before {
|
1159
|
+
content: "";
|
1160
|
+
}
|
1161
|
+
|
1162
|
+
.fa-angle-up:before {
|
1163
|
+
content: "";
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
.fa-angle-down:before {
|
1167
|
+
content: "";
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
.fa-desktop:before {
|
1171
|
+
content: "";
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
.fa-laptop:before {
|
1175
|
+
content: "";
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
.fa-tablet:before {
|
1179
|
+
content: "";
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
.fa-mobile-phone:before,
|
1183
|
+
.fa-mobile:before {
|
1184
|
+
content: "";
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.fa-circle-o:before {
|
1188
|
+
content: "";
|
1189
|
+
}
|
1190
|
+
|
1191
|
+
.fa-quote-left:before {
|
1192
|
+
content: "";
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
.fa-quote-right:before {
|
1196
|
+
content: "";
|
1197
|
+
}
|
1198
|
+
|
1199
|
+
.fa-spinner:before {
|
1200
|
+
content: "";
|
1201
|
+
}
|
1202
|
+
|
1203
|
+
.fa-circle:before {
|
1204
|
+
content: "";
|
1205
|
+
}
|
1206
|
+
|
1207
|
+
.fa-mail-reply:before,
|
1208
|
+
.fa-reply:before {
|
1209
|
+
content: "";
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
.fa-github-alt:before {
|
1213
|
+
content: "";
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.fa-folder-o:before {
|
1217
|
+
content: "";
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
.fa-folder-open-o:before {
|
1221
|
+
content: "";
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.fa-smile-o:before {
|
1225
|
+
content: "";
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
.fa-frown-o:before {
|
1229
|
+
content: "";
|
1230
|
+
}
|
1231
|
+
|
1232
|
+
.fa-meh-o:before {
|
1233
|
+
content: "";
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
.fa-gamepad:before {
|
1237
|
+
content: "";
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
.fa-keyboard-o:before {
|
1241
|
+
content: "";
|
1242
|
+
}
|
1243
|
+
|
1244
|
+
.fa-flag-o:before {
|
1245
|
+
content: "";
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
.fa-flag-checkered:before {
|
1249
|
+
content: "";
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
.fa-terminal:before {
|
1253
|
+
content: "";
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
.fa-code:before {
|
1257
|
+
content: "";
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
.fa-mail-reply-all:before,
|
1261
|
+
.fa-reply-all:before {
|
1262
|
+
content: "";
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.fa-star-half-empty:before,
|
1266
|
+
.fa-star-half-full:before,
|
1267
|
+
.fa-star-half-o:before {
|
1268
|
+
content: "";
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
.fa-location-arrow:before {
|
1272
|
+
content: "";
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
.fa-crop:before {
|
1276
|
+
content: "";
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.fa-code-fork:before {
|
1280
|
+
content: "";
|
1281
|
+
}
|
1282
|
+
|
1283
|
+
.fa-unlink:before,
|
1284
|
+
.fa-chain-broken:before {
|
1285
|
+
content: "";
|
1286
|
+
}
|
1287
|
+
|
1288
|
+
.fa-question:before {
|
1289
|
+
content: "";
|
1290
|
+
}
|
1291
|
+
|
1292
|
+
.fa-info:before {
|
1293
|
+
content: "";
|
1294
|
+
}
|
1295
|
+
|
1296
|
+
.fa-exclamation:before {
|
1297
|
+
content: "";
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
.fa-superscript:before {
|
1301
|
+
content: "";
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
.fa-subscript:before {
|
1305
|
+
content: "";
|
1306
|
+
}
|
1307
|
+
|
1308
|
+
.fa-eraser:before {
|
1309
|
+
content: "";
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
.fa-puzzle-piece:before {
|
1313
|
+
content: "";
|
1314
|
+
}
|
1315
|
+
|
1316
|
+
.fa-microphone:before {
|
1317
|
+
content: "";
|
1318
|
+
}
|
1319
|
+
|
1320
|
+
.fa-microphone-slash:before {
|
1321
|
+
content: "";
|
1322
|
+
}
|
1323
|
+
|
1324
|
+
.fa-shield:before {
|
1325
|
+
content: "";
|
1326
|
+
}
|
1327
|
+
|
1328
|
+
.fa-calendar-o:before {
|
1329
|
+
content: "";
|
1330
|
+
}
|
1331
|
+
|
1332
|
+
.fa-fire-extinguisher:before {
|
1333
|
+
content: "";
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
.fa-rocket:before {
|
1337
|
+
content: "";
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.fa-maxcdn:before {
|
1341
|
+
content: "";
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
.fa-chevron-circle-left:before {
|
1345
|
+
content: "";
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
.fa-chevron-circle-right:before {
|
1349
|
+
content: "";
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
.fa-chevron-circle-up:before {
|
1353
|
+
content: "";
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
.fa-chevron-circle-down:before {
|
1357
|
+
content: "";
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
.fa-html5:before {
|
1361
|
+
content: "";
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
.fa-css3:before {
|
1365
|
+
content: "";
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
.fa-anchor:before {
|
1369
|
+
content: "";
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
.fa-unlock-alt:before {
|
1373
|
+
content: "";
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
.fa-bullseye:before {
|
1377
|
+
content: "";
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
.fa-ellipsis-h:before {
|
1381
|
+
content: "";
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
.fa-ellipsis-v:before {
|
1385
|
+
content: "";
|
1386
|
+
}
|
1387
|
+
|
1388
|
+
.fa-rss-square:before {
|
1389
|
+
content: "";
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
.fa-play-circle:before {
|
1393
|
+
content: "";
|
1394
|
+
}
|
1395
|
+
|
1396
|
+
.fa-ticket:before {
|
1397
|
+
content: "";
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
.fa-minus-square:before {
|
1401
|
+
content: "";
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
.fa-minus-square-o:before {
|
1405
|
+
content: "";
|
1406
|
+
}
|
1407
|
+
|
1408
|
+
.fa-level-up:before {
|
1409
|
+
content: "";
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
.fa-level-down:before {
|
1413
|
+
content: "";
|
1414
|
+
}
|
1415
|
+
|
1416
|
+
.fa-check-square:before {
|
1417
|
+
content: "";
|
1418
|
+
}
|
1419
|
+
|
1420
|
+
.fa-pencil-square:before {
|
1421
|
+
content: "";
|
1422
|
+
}
|
1423
|
+
|
1424
|
+
.fa-external-link-square:before {
|
1425
|
+
content: "";
|
1426
|
+
}
|
1427
|
+
|
1428
|
+
.fa-share-square:before {
|
1429
|
+
content: "";
|
1430
|
+
}
|
1431
|
+
|
1432
|
+
.fa-compass:before {
|
1433
|
+
content: "";
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
.fa-toggle-down:before,
|
1437
|
+
.fa-caret-square-o-down:before {
|
1438
|
+
content: "";
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
.fa-toggle-up:before,
|
1442
|
+
.fa-caret-square-o-up:before {
|
1443
|
+
content: "";
|
1444
|
+
}
|
1445
|
+
|
1446
|
+
.fa-toggle-right:before,
|
1447
|
+
.fa-caret-square-o-right:before {
|
1448
|
+
content: "";
|
1449
|
+
}
|
1450
|
+
|
1451
|
+
.fa-euro:before,
|
1452
|
+
.fa-eur:before {
|
1453
|
+
content: "";
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
.fa-gbp:before {
|
1457
|
+
content: "";
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
.fa-dollar:before,
|
1461
|
+
.fa-usd:before {
|
1462
|
+
content: "";
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
.fa-rupee:before,
|
1466
|
+
.fa-inr:before {
|
1467
|
+
content: "";
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
.fa-cny:before,
|
1471
|
+
.fa-rmb:before,
|
1472
|
+
.fa-yen:before,
|
1473
|
+
.fa-jpy:before {
|
1474
|
+
content: "";
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
.fa-ruble:before,
|
1478
|
+
.fa-rouble:before,
|
1479
|
+
.fa-rub:before {
|
1480
|
+
content: "";
|
1481
|
+
}
|
1482
|
+
|
1483
|
+
.fa-won:before,
|
1484
|
+
.fa-krw:before {
|
1485
|
+
content: "";
|
1486
|
+
}
|
1487
|
+
|
1488
|
+
.fa-bitcoin:before,
|
1489
|
+
.fa-btc:before {
|
1490
|
+
content: "";
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
.fa-file:before {
|
1494
|
+
content: "";
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
.fa-file-text:before {
|
1498
|
+
content: "";
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
.fa-sort-alpha-asc:before {
|
1502
|
+
content: "";
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
.fa-sort-alpha-desc:before {
|
1506
|
+
content: "";
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
.fa-sort-amount-asc:before {
|
1510
|
+
content: "";
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
.fa-sort-amount-desc:before {
|
1514
|
+
content: "";
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
.fa-sort-numeric-asc:before {
|
1518
|
+
content: "";
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
.fa-sort-numeric-desc:before {
|
1522
|
+
content: "";
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
.fa-thumbs-up:before {
|
1526
|
+
content: "";
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
.fa-thumbs-down:before {
|
1530
|
+
content: "";
|
1531
|
+
}
|
1532
|
+
|
1533
|
+
.fa-youtube-square:before {
|
1534
|
+
content: "";
|
1535
|
+
}
|
1536
|
+
|
1537
|
+
.fa-youtube:before {
|
1538
|
+
content: "";
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
.fa-xing:before {
|
1542
|
+
content: "";
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
.fa-xing-square:before {
|
1546
|
+
content: "";
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
.fa-youtube-play:before {
|
1550
|
+
content: "";
|
1551
|
+
}
|
1552
|
+
|
1553
|
+
.fa-dropbox:before {
|
1554
|
+
content: "";
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
.fa-stack-overflow:before {
|
1558
|
+
content: "";
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
.fa-instagram:before {
|
1562
|
+
content: "";
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.fa-flickr:before {
|
1566
|
+
content: "";
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
.fa-adn:before {
|
1570
|
+
content: "";
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
.fa-bitbucket:before {
|
1574
|
+
content: "";
|
1575
|
+
}
|
1576
|
+
|
1577
|
+
.fa-bitbucket-square:before {
|
1578
|
+
content: "";
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
.fa-tumblr:before {
|
1582
|
+
content: "";
|
1583
|
+
}
|
1584
|
+
|
1585
|
+
.fa-tumblr-square:before {
|
1586
|
+
content: "";
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
.fa-long-arrow-down:before {
|
1590
|
+
content: "";
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
.fa-long-arrow-up:before {
|
1594
|
+
content: "";
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
.fa-long-arrow-left:before {
|
1598
|
+
content: "";
|
1599
|
+
}
|
1600
|
+
|
1601
|
+
.fa-long-arrow-right:before {
|
1602
|
+
content: "";
|
1603
|
+
}
|
1604
|
+
|
1605
|
+
.fa-apple:before {
|
1606
|
+
content: "";
|
1607
|
+
}
|
1608
|
+
|
1609
|
+
.fa-windows:before {
|
1610
|
+
content: "";
|
1611
|
+
}
|
1612
|
+
|
1613
|
+
.fa-android:before {
|
1614
|
+
content: "";
|
1615
|
+
}
|
1616
|
+
|
1617
|
+
.fa-linux:before {
|
1618
|
+
content: "";
|
1619
|
+
}
|
1620
|
+
|
1621
|
+
.fa-dribbble:before {
|
1622
|
+
content: "";
|
1623
|
+
}
|
1624
|
+
|
1625
|
+
.fa-skype:before {
|
1626
|
+
content: "";
|
1627
|
+
}
|
1628
|
+
|
1629
|
+
.fa-foursquare:before {
|
1630
|
+
content: "";
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
.fa-trello:before {
|
1634
|
+
content: "";
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
.fa-female:before {
|
1638
|
+
content: "";
|
1639
|
+
}
|
1640
|
+
|
1641
|
+
.fa-male:before {
|
1642
|
+
content: "";
|
1643
|
+
}
|
1644
|
+
|
1645
|
+
.fa-gittip:before,
|
1646
|
+
.fa-gratipay:before {
|
1647
|
+
content: "";
|
1648
|
+
}
|
1649
|
+
|
1650
|
+
.fa-sun-o:before {
|
1651
|
+
content: "";
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
.fa-moon-o:before {
|
1655
|
+
content: "";
|
1656
|
+
}
|
1657
|
+
|
1658
|
+
.fa-archive:before {
|
1659
|
+
content: "";
|
1660
|
+
}
|
1661
|
+
|
1662
|
+
.fa-bug:before {
|
1663
|
+
content: "";
|
1664
|
+
}
|
1665
|
+
|
1666
|
+
.fa-vk:before {
|
1667
|
+
content: "";
|
1668
|
+
}
|
1669
|
+
|
1670
|
+
.fa-weibo:before {
|
1671
|
+
content: "";
|
1672
|
+
}
|
1673
|
+
|
1674
|
+
.fa-renren:before {
|
1675
|
+
content: "";
|
1676
|
+
}
|
1677
|
+
|
1678
|
+
.fa-pagelines:before {
|
1679
|
+
content: "";
|
1680
|
+
}
|
1681
|
+
|
1682
|
+
.fa-stack-exchange:before {
|
1683
|
+
content: "";
|
1684
|
+
}
|
1685
|
+
|
1686
|
+
.fa-arrow-circle-o-right:before {
|
1687
|
+
content: "";
|
1688
|
+
}
|
1689
|
+
|
1690
|
+
.fa-arrow-circle-o-left:before {
|
1691
|
+
content: "";
|
1692
|
+
}
|
1693
|
+
|
1694
|
+
.fa-toggle-left:before,
|
1695
|
+
.fa-caret-square-o-left:before {
|
1696
|
+
content: "";
|
1697
|
+
}
|
1698
|
+
|
1699
|
+
.fa-dot-circle-o:before {
|
1700
|
+
content: "";
|
1701
|
+
}
|
1702
|
+
|
1703
|
+
.fa-wheelchair:before {
|
1704
|
+
content: "";
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
.fa-vimeo-square:before {
|
1708
|
+
content: "";
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
.fa-turkish-lira:before,
|
1712
|
+
.fa-try:before {
|
1713
|
+
content: "";
|
1714
|
+
}
|
1715
|
+
|
1716
|
+
.fa-plus-square-o:before {
|
1717
|
+
content: "";
|
1718
|
+
}
|
1719
|
+
|
1720
|
+
.fa-space-shuttle:before {
|
1721
|
+
content: "";
|
1722
|
+
}
|
1723
|
+
|
1724
|
+
.fa-slack:before {
|
1725
|
+
content: "";
|
1726
|
+
}
|
1727
|
+
|
1728
|
+
.fa-envelope-square:before {
|
1729
|
+
content: "";
|
1730
|
+
}
|
1731
|
+
|
1732
|
+
.fa-wordpress:before {
|
1733
|
+
content: "";
|
1734
|
+
}
|
1735
|
+
|
1736
|
+
.fa-openid:before {
|
1737
|
+
content: "";
|
1738
|
+
}
|
1739
|
+
|
1740
|
+
.fa-institution:before,
|
1741
|
+
.fa-bank:before,
|
1742
|
+
.fa-university:before {
|
1743
|
+
content: "";
|
1744
|
+
}
|
1745
|
+
|
1746
|
+
.fa-mortar-board:before,
|
1747
|
+
.fa-graduation-cap:before {
|
1748
|
+
content: "";
|
1749
|
+
}
|
1750
|
+
|
1751
|
+
.fa-yahoo:before {
|
1752
|
+
content: "";
|
1753
|
+
}
|
1754
|
+
|
1755
|
+
.fa-google:before {
|
1756
|
+
content: "";
|
1757
|
+
}
|
1758
|
+
|
1759
|
+
.fa-reddit:before {
|
1760
|
+
content: "";
|
1761
|
+
}
|
1762
|
+
|
1763
|
+
.fa-reddit-square:before {
|
1764
|
+
content: "";
|
1765
|
+
}
|
1766
|
+
|
1767
|
+
.fa-stumbleupon-circle:before {
|
1768
|
+
content: "";
|
1769
|
+
}
|
1770
|
+
|
1771
|
+
.fa-stumbleupon:before {
|
1772
|
+
content: "";
|
1773
|
+
}
|
1774
|
+
|
1775
|
+
.fa-delicious:before {
|
1776
|
+
content: "";
|
1777
|
+
}
|
1778
|
+
|
1779
|
+
.fa-digg:before {
|
1780
|
+
content: "";
|
1781
|
+
}
|
1782
|
+
|
1783
|
+
.fa-pied-piper:before {
|
1784
|
+
content: "";
|
1785
|
+
}
|
1786
|
+
|
1787
|
+
.fa-pied-piper-alt:before {
|
1788
|
+
content: "";
|
1789
|
+
}
|
1790
|
+
|
1791
|
+
.fa-drupal:before {
|
1792
|
+
content: "";
|
1793
|
+
}
|
1794
|
+
|
1795
|
+
.fa-joomla:before {
|
1796
|
+
content: "";
|
1797
|
+
}
|
1798
|
+
|
1799
|
+
.fa-language:before {
|
1800
|
+
content: "";
|
1801
|
+
}
|
1802
|
+
|
1803
|
+
.fa-fax:before {
|
1804
|
+
content: "";
|
1805
|
+
}
|
1806
|
+
|
1807
|
+
.fa-building:before {
|
1808
|
+
content: "";
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
.fa-child:before {
|
1812
|
+
content: "";
|
1813
|
+
}
|
1814
|
+
|
1815
|
+
.fa-paw:before {
|
1816
|
+
content: "";
|
1817
|
+
}
|
1818
|
+
|
1819
|
+
.fa-spoon:before {
|
1820
|
+
content: "";
|
1821
|
+
}
|
1822
|
+
|
1823
|
+
.fa-cube:before {
|
1824
|
+
content: "";
|
1825
|
+
}
|
1826
|
+
|
1827
|
+
.fa-cubes:before {
|
1828
|
+
content: "";
|
1829
|
+
}
|
1830
|
+
|
1831
|
+
.fa-behance:before {
|
1832
|
+
content: "";
|
1833
|
+
}
|
1834
|
+
|
1835
|
+
.fa-behance-square:before {
|
1836
|
+
content: "";
|
1837
|
+
}
|
1838
|
+
|
1839
|
+
.fa-steam:before {
|
1840
|
+
content: "";
|
1841
|
+
}
|
1842
|
+
|
1843
|
+
.fa-steam-square:before {
|
1844
|
+
content: "";
|
1845
|
+
}
|
1846
|
+
|
1847
|
+
.fa-recycle:before {
|
1848
|
+
content: "";
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
.fa-automobile:before,
|
1852
|
+
.fa-car:before {
|
1853
|
+
content: "";
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
.fa-cab:before,
|
1857
|
+
.fa-taxi:before {
|
1858
|
+
content: "";
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
.fa-tree:before {
|
1862
|
+
content: "";
|
1863
|
+
}
|
1864
|
+
|
1865
|
+
.fa-spotify:before {
|
1866
|
+
content: "";
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
.fa-deviantart:before {
|
1870
|
+
content: "";
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
.fa-soundcloud:before {
|
1874
|
+
content: "";
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
.fa-database:before {
|
1878
|
+
content: "";
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
.fa-file-pdf-o:before {
|
1882
|
+
content: "";
|
1883
|
+
}
|
1884
|
+
|
1885
|
+
.fa-file-word-o:before {
|
1886
|
+
content: "";
|
1887
|
+
}
|
1888
|
+
|
1889
|
+
.fa-file-excel-o:before {
|
1890
|
+
content: "";
|
1891
|
+
}
|
1892
|
+
|
1893
|
+
.fa-file-powerpoint-o:before {
|
1894
|
+
content: "";
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
.fa-file-photo-o:before,
|
1898
|
+
.fa-file-picture-o:before,
|
1899
|
+
.fa-file-image-o:before {
|
1900
|
+
content: "";
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
.fa-file-zip-o:before,
|
1904
|
+
.fa-file-archive-o:before {
|
1905
|
+
content: "";
|
1906
|
+
}
|
1907
|
+
|
1908
|
+
.fa-file-sound-o:before,
|
1909
|
+
.fa-file-audio-o:before {
|
1910
|
+
content: "";
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
.fa-file-movie-o:before,
|
1914
|
+
.fa-file-video-o:before {
|
1915
|
+
content: "";
|
1916
|
+
}
|
1917
|
+
|
1918
|
+
.fa-file-code-o:before {
|
1919
|
+
content: "";
|
1920
|
+
}
|
1921
|
+
|
1922
|
+
.fa-vine:before {
|
1923
|
+
content: "";
|
1924
|
+
}
|
1925
|
+
|
1926
|
+
.fa-codepen:before {
|
1927
|
+
content: "";
|
1928
|
+
}
|
1929
|
+
|
1930
|
+
.fa-jsfiddle:before {
|
1931
|
+
content: "";
|
1932
|
+
}
|
1933
|
+
|
1934
|
+
.fa-life-bouy:before,
|
1935
|
+
.fa-life-buoy:before,
|
1936
|
+
.fa-life-saver:before,
|
1937
|
+
.fa-support:before,
|
1938
|
+
.fa-life-ring:before {
|
1939
|
+
content: "";
|
1940
|
+
}
|
1941
|
+
|
1942
|
+
.fa-circle-o-notch:before {
|
1943
|
+
content: "";
|
1944
|
+
}
|
1945
|
+
|
1946
|
+
.fa-ra:before,
|
1947
|
+
.fa-rebel:before {
|
1948
|
+
content: "";
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
.fa-ge:before,
|
1952
|
+
.fa-empire:before {
|
1953
|
+
content: "";
|
1954
|
+
}
|
1955
|
+
|
1956
|
+
.fa-git-square:before {
|
1957
|
+
content: "";
|
1958
|
+
}
|
1959
|
+
|
1960
|
+
.fa-git:before {
|
1961
|
+
content: "";
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
.fa-hacker-news:before {
|
1965
|
+
content: "";
|
1966
|
+
}
|
1967
|
+
|
1968
|
+
.fa-tencent-weibo:before {
|
1969
|
+
content: "";
|
1970
|
+
}
|
1971
|
+
|
1972
|
+
.fa-qq:before {
|
1973
|
+
content: "";
|
1974
|
+
}
|
1975
|
+
|
1976
|
+
.fa-wechat:before,
|
1977
|
+
.fa-weixin:before {
|
1978
|
+
content: "";
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
.fa-send:before,
|
1982
|
+
.fa-paper-plane:before {
|
1983
|
+
content: "";
|
1984
|
+
}
|
1985
|
+
|
1986
|
+
.fa-send-o:before,
|
1987
|
+
.fa-paper-plane-o:before {
|
1988
|
+
content: "";
|
1989
|
+
}
|
1990
|
+
|
1991
|
+
.fa-history:before {
|
1992
|
+
content: "";
|
1993
|
+
}
|
1994
|
+
|
1995
|
+
.fa-genderless:before,
|
1996
|
+
.fa-circle-thin:before {
|
1997
|
+
content: "";
|
1998
|
+
}
|
1999
|
+
|
2000
|
+
.fa-header:before {
|
2001
|
+
content: "";
|
2002
|
+
}
|
2003
|
+
|
2004
|
+
.fa-paragraph:before {
|
2005
|
+
content: "";
|
2006
|
+
}
|
2007
|
+
|
2008
|
+
.fa-sliders:before {
|
2009
|
+
content: "";
|
2010
|
+
}
|
2011
|
+
|
2012
|
+
.fa-share-alt:before {
|
2013
|
+
content: "";
|
2014
|
+
}
|
2015
|
+
|
2016
|
+
.fa-share-alt-square:before {
|
2017
|
+
content: "";
|
2018
|
+
}
|
2019
|
+
|
2020
|
+
.fa-bomb:before {
|
2021
|
+
content: "";
|
2022
|
+
}
|
2023
|
+
|
2024
|
+
.fa-soccer-ball-o:before,
|
2025
|
+
.fa-futbol-o:before {
|
2026
|
+
content: "";
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.fa-tty:before {
|
2030
|
+
content: "";
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
.fa-binoculars:before {
|
2034
|
+
content: "";
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
.fa-plug:before {
|
2038
|
+
content: "";
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
.fa-slideshare:before {
|
2042
|
+
content: "";
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
.fa-twitch:before {
|
2046
|
+
content: "";
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
.fa-yelp:before {
|
2050
|
+
content: "";
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
.fa-newspaper-o:before {
|
2054
|
+
content: "";
|
2055
|
+
}
|
2056
|
+
|
2057
|
+
.fa-wifi:before {
|
2058
|
+
content: "";
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
.fa-calculator:before {
|
2062
|
+
content: "";
|
2063
|
+
}
|
2064
|
+
|
2065
|
+
.fa-paypal:before {
|
2066
|
+
content: "";
|
2067
|
+
}
|
2068
|
+
|
2069
|
+
.fa-google-wallet:before {
|
2070
|
+
content: "";
|
2071
|
+
}
|
2072
|
+
|
2073
|
+
.fa-cc-visa:before {
|
2074
|
+
content: "";
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
.fa-cc-mastercard:before {
|
2078
|
+
content: "";
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
.fa-cc-discover:before {
|
2082
|
+
content: "";
|
2083
|
+
}
|
2084
|
+
|
2085
|
+
.fa-cc-amex:before {
|
2086
|
+
content: "";
|
2087
|
+
}
|
2088
|
+
|
2089
|
+
.fa-cc-paypal:before {
|
2090
|
+
content: "";
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
.fa-cc-stripe:before {
|
2094
|
+
content: "";
|
2095
|
+
}
|
2096
|
+
|
2097
|
+
.fa-bell-slash:before {
|
2098
|
+
content: "";
|
2099
|
+
}
|
2100
|
+
|
2101
|
+
.fa-bell-slash-o:before {
|
2102
|
+
content: "";
|
2103
|
+
}
|
2104
|
+
|
2105
|
+
.fa-trash:before {
|
2106
|
+
content: "";
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
.fa-copyright:before {
|
2110
|
+
content: "";
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
.fa-at:before {
|
2114
|
+
content: "";
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
.fa-eyedropper:before {
|
2118
|
+
content: "";
|
2119
|
+
}
|
2120
|
+
|
2121
|
+
.fa-paint-brush:before {
|
2122
|
+
content: "";
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
.fa-birthday-cake:before {
|
2126
|
+
content: "";
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
.fa-area-chart:before {
|
2130
|
+
content: "";
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
.fa-pie-chart:before {
|
2134
|
+
content: "";
|
2135
|
+
}
|
2136
|
+
|
2137
|
+
.fa-line-chart:before {
|
2138
|
+
content: "";
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
.fa-lastfm:before {
|
2142
|
+
content: "";
|
2143
|
+
}
|
2144
|
+
|
2145
|
+
.fa-lastfm-square:before {
|
2146
|
+
content: "";
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
.fa-toggle-off:before {
|
2150
|
+
content: "";
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
.fa-toggle-on:before {
|
2154
|
+
content: "";
|
2155
|
+
}
|
2156
|
+
|
2157
|
+
.fa-bicycle:before {
|
2158
|
+
content: "";
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
.fa-bus:before {
|
2162
|
+
content: "";
|
2163
|
+
}
|
2164
|
+
|
2165
|
+
.fa-ioxhost:before {
|
2166
|
+
content: "";
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
.fa-angellist:before {
|
2170
|
+
content: "";
|
2171
|
+
}
|
2172
|
+
|
2173
|
+
.fa-cc:before {
|
2174
|
+
content: "";
|
2175
|
+
}
|
2176
|
+
|
2177
|
+
.fa-shekel:before,
|
2178
|
+
.fa-sheqel:before,
|
2179
|
+
.fa-ils:before {
|
2180
|
+
content: "";
|
2181
|
+
}
|
2182
|
+
|
2183
|
+
.fa-meanpath:before {
|
2184
|
+
content: "";
|
2185
|
+
}
|
2186
|
+
|
2187
|
+
.fa-buysellads:before {
|
2188
|
+
content: "";
|
2189
|
+
}
|
2190
|
+
|
2191
|
+
.fa-connectdevelop:before {
|
2192
|
+
content: "";
|
2193
|
+
}
|
2194
|
+
|
2195
|
+
.fa-dashcube:before {
|
2196
|
+
content: "";
|
2197
|
+
}
|
2198
|
+
|
2199
|
+
.fa-forumbee:before {
|
2200
|
+
content: "";
|
2201
|
+
}
|
2202
|
+
|
2203
|
+
.fa-leanpub:before {
|
2204
|
+
content: "";
|
2205
|
+
}
|
2206
|
+
|
2207
|
+
.fa-sellsy:before {
|
2208
|
+
content: "";
|
2209
|
+
}
|
2210
|
+
|
2211
|
+
.fa-shirtsinbulk:before {
|
2212
|
+
content: "";
|
2213
|
+
}
|
2214
|
+
|
2215
|
+
.fa-simplybuilt:before {
|
2216
|
+
content: "";
|
2217
|
+
}
|
2218
|
+
|
2219
|
+
.fa-skyatlas:before {
|
2220
|
+
content: "";
|
2221
|
+
}
|
2222
|
+
|
2223
|
+
.fa-cart-plus:before {
|
2224
|
+
content: "";
|
2225
|
+
}
|
2226
|
+
|
2227
|
+
.fa-cart-arrow-down:before {
|
2228
|
+
content: "";
|
2229
|
+
}
|
2230
|
+
|
2231
|
+
.fa-diamond:before {
|
2232
|
+
content: "";
|
2233
|
+
}
|
2234
|
+
|
2235
|
+
.fa-ship:before {
|
2236
|
+
content: "";
|
2237
|
+
}
|
2238
|
+
|
2239
|
+
.fa-user-secret:before {
|
2240
|
+
content: "";
|
2241
|
+
}
|
2242
|
+
|
2243
|
+
.fa-motorcycle:before {
|
2244
|
+
content: "";
|
2245
|
+
}
|
2246
|
+
|
2247
|
+
.fa-street-view:before {
|
2248
|
+
content: "";
|
2249
|
+
}
|
2250
|
+
|
2251
|
+
.fa-heartbeat:before {
|
2252
|
+
content: "";
|
2253
|
+
}
|
2254
|
+
|
2255
|
+
.fa-venus:before {
|
2256
|
+
content: "";
|
2257
|
+
}
|
2258
|
+
|
2259
|
+
.fa-mars:before {
|
2260
|
+
content: "";
|
2261
|
+
}
|
2262
|
+
|
2263
|
+
.fa-mercury:before {
|
2264
|
+
content: "";
|
2265
|
+
}
|
2266
|
+
|
2267
|
+
.fa-transgender:before {
|
2268
|
+
content: "";
|
2269
|
+
}
|
2270
|
+
|
2271
|
+
.fa-transgender-alt:before {
|
2272
|
+
content: "";
|
2273
|
+
}
|
2274
|
+
|
2275
|
+
.fa-venus-double:before {
|
2276
|
+
content: "";
|
2277
|
+
}
|
2278
|
+
|
2279
|
+
.fa-mars-double:before {
|
2280
|
+
content: "";
|
2281
|
+
}
|
2282
|
+
|
2283
|
+
.fa-venus-mars:before {
|
2284
|
+
content: "";
|
2285
|
+
}
|
2286
|
+
|
2287
|
+
.fa-mars-stroke:before {
|
2288
|
+
content: "";
|
2289
|
+
}
|
2290
|
+
|
2291
|
+
.fa-mars-stroke-v:before {
|
2292
|
+
content: "";
|
2293
|
+
}
|
2294
|
+
|
2295
|
+
.fa-mars-stroke-h:before {
|
2296
|
+
content: "";
|
2297
|
+
}
|
2298
|
+
|
2299
|
+
.fa-neuter:before {
|
2300
|
+
content: "";
|
2301
|
+
}
|
2302
|
+
|
2303
|
+
.fa-facebook-official:before {
|
2304
|
+
content: "";
|
2305
|
+
}
|
2306
|
+
|
2307
|
+
.fa-pinterest-p:before {
|
2308
|
+
content: "";
|
2309
|
+
}
|
2310
|
+
|
2311
|
+
.fa-whatsapp:before {
|
2312
|
+
content: "";
|
2313
|
+
}
|
2314
|
+
|
2315
|
+
.fa-server:before {
|
2316
|
+
content: "";
|
2317
|
+
}
|
2318
|
+
|
2319
|
+
.fa-user-plus:before {
|
2320
|
+
content: "";
|
2321
|
+
}
|
2322
|
+
|
2323
|
+
.fa-user-times:before {
|
2324
|
+
content: "";
|
2325
|
+
}
|
2326
|
+
|
2327
|
+
.fa-hotel:before,
|
2328
|
+
.fa-bed:before {
|
2329
|
+
content: "";
|
2330
|
+
}
|
2331
|
+
|
2332
|
+
.fa-viacoin:before {
|
2333
|
+
content: "";
|
2334
|
+
}
|
2335
|
+
|
2336
|
+
.fa-train:before {
|
2337
|
+
content: "";
|
2338
|
+
}
|
2339
|
+
|
2340
|
+
.fa-subway:before {
|
2341
|
+
content: "";
|
2342
|
+
}
|
2343
|
+
|
2344
|
+
.fa-medium:before {
|
2345
|
+
content: "";
|
2346
|
+
}
|
2347
|
+
|
2348
|
+
html {
|
2349
|
+
box-sizing: border-box;
|
2350
|
+
}
|
2351
|
+
|
2352
|
+
*, *::after, *::before {
|
2353
|
+
box-sizing: inherit;
|
2354
|
+
}
|
2355
|
+
|
2356
|
+
button, input[type="button"], input[type="reset"], input[type="submit"],
|
2357
|
+
button {
|
2358
|
+
-webkit-appearance: none;
|
2359
|
+
-moz-appearance: none;
|
2360
|
+
-ms-appearance: none;
|
2361
|
+
-o-appearance: none;
|
2362
|
+
appearance: none;
|
2363
|
+
-webkit-font-smoothing: antialiased;
|
2364
|
+
background-color: #477dca;
|
2365
|
+
border-radius: 3px;
|
2366
|
+
border: none;
|
2367
|
+
color: #fff;
|
2368
|
+
cursor: pointer;
|
2369
|
+
display: inline-block;
|
2370
|
+
font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2371
|
+
font-size: 1em;
|
2372
|
+
font-weight: 600;
|
2373
|
+
line-height: 1;
|
2374
|
+
padding: 0.75em 1em;
|
2375
|
+
text-decoration: none;
|
2376
|
+
user-select: none;
|
2377
|
+
vertical-align: middle;
|
2378
|
+
white-space: nowrap;
|
2379
|
+
}
|
2380
|
+
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus,
|
2381
|
+
button:hover,
|
2382
|
+
button:focus {
|
2383
|
+
background-color: #2c5999;
|
2384
|
+
color: #fff;
|
2385
|
+
}
|
2386
|
+
button:disabled, input[type="button"]:disabled, input[type="reset"]:disabled, input[type="submit"]:disabled,
|
2387
|
+
button:disabled {
|
2388
|
+
cursor: not-allowed;
|
2389
|
+
opacity: 0.5;
|
2390
|
+
}
|
2391
|
+
|
2392
|
+
fieldset {
|
2393
|
+
background-color: #f7f7f7;
|
2394
|
+
border: 1px solid #ddd;
|
2395
|
+
margin: 0 0 0.75em;
|
2396
|
+
padding: 1.5em;
|
2397
|
+
}
|
2398
|
+
|
2399
|
+
input,
|
2400
|
+
label,
|
2401
|
+
select {
|
2402
|
+
display: block;
|
2403
|
+
font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2404
|
+
font-size: 1em;
|
2405
|
+
}
|
2406
|
+
|
2407
|
+
label {
|
2408
|
+
font-weight: 600;
|
2409
|
+
margin-bottom: 0.375em;
|
2410
|
+
}
|
2411
|
+
label.required::after {
|
2412
|
+
content: "*";
|
2413
|
+
}
|
2414
|
+
label abbr {
|
2415
|
+
display: none;
|
2416
|
+
}
|
2417
|
+
|
2418
|
+
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], textarea,
|
2419
|
+
select[multiple=multiple],
|
2420
|
+
textarea {
|
2421
|
+
background-color: #fff;
|
2422
|
+
border: 1px solid #ddd;
|
2423
|
+
border-radius: 3px;
|
2424
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
|
2425
|
+
box-sizing: border-box;
|
2426
|
+
font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2427
|
+
font-size: 1em;
|
2428
|
+
margin-bottom: 0.75em;
|
2429
|
+
padding: 0.5em;
|
2430
|
+
transition: border-color;
|
2431
|
+
width: 100%;
|
2432
|
+
}
|
2433
|
+
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, textarea:hover,
|
2434
|
+
select[multiple=multiple]:hover,
|
2435
|
+
textarea:hover {
|
2436
|
+
border-color: #c4c4c4;
|
2437
|
+
}
|
2438
|
+
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, textarea:focus,
|
2439
|
+
select[multiple=multiple]:focus,
|
2440
|
+
textarea:focus {
|
2441
|
+
border-color: #477dca;
|
2442
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(55, 112, 192, 0.7);
|
2443
|
+
outline: none;
|
2444
|
+
}
|
2445
|
+
|
2446
|
+
textarea {
|
2447
|
+
resize: vertical;
|
2448
|
+
}
|
2449
|
+
|
2450
|
+
input[type="search"] {
|
2451
|
+
-webkit-appearance: none;
|
2452
|
+
-moz-appearance: none;
|
2453
|
+
-ms-appearance: none;
|
2454
|
+
-o-appearance: none;
|
2455
|
+
appearance: none;
|
2456
|
+
}
|
2457
|
+
|
2458
|
+
input[type="checkbox"],
|
2459
|
+
input[type="radio"] {
|
2460
|
+
display: inline;
|
2461
|
+
margin-right: 0.375em;
|
2462
|
+
}
|
2463
|
+
|
2464
|
+
input[type="file"] {
|
2465
|
+
padding-bottom: 0.75em;
|
2466
|
+
width: 100%;
|
2467
|
+
}
|
2468
|
+
|
2469
|
+
select {
|
2470
|
+
margin-bottom: 1.5em;
|
2471
|
+
max-width: 100%;
|
2472
|
+
width: auto;
|
2473
|
+
}
|
2474
|
+
|
2475
|
+
ul,
|
2476
|
+
ol {
|
2477
|
+
list-style-type: none;
|
2478
|
+
margin: 0;
|
2479
|
+
padding: 0;
|
2480
|
+
}
|
2481
|
+
dl {
|
2482
|
+
margin-bottom: 0.75em;
|
2483
|
+
}
|
2484
|
+
dl dt {
|
2485
|
+
font-weight: bold;
|
2486
|
+
margin-top: 0.75em;
|
2487
|
+
}
|
2488
|
+
dl dd {
|
2489
|
+
margin: 0;
|
2490
|
+
}
|
2491
|
+
|
2492
|
+
table {
|
2493
|
+
-webkit-font-feature-settings: "kern", "liga", "tnum";
|
2494
|
+
-moz-font-feature-settings: "kern", "liga", "tnum";
|
2495
|
+
-ms-font-feature-settings: "kern", "liga", "tnum";
|
2496
|
+
font-feature-settings: "kern", "liga", "tnum";
|
2497
|
+
border-collapse: collapse;
|
2498
|
+
margin: 0.75em 0;
|
2499
|
+
table-layout: fixed;
|
2500
|
+
width: 100%;
|
2501
|
+
}
|
2502
|
+
|
2503
|
+
th {
|
2504
|
+
border-bottom: 1px solid #b7b7b7;
|
2505
|
+
font-weight: 600;
|
2506
|
+
padding: 0.75em 0;
|
2507
|
+
text-align: left;
|
2508
|
+
}
|
2509
|
+
|
2510
|
+
td {
|
2511
|
+
border-bottom: 1px solid #ddd;
|
2512
|
+
padding: 0.75em 0;
|
2513
|
+
}
|
2514
|
+
|
2515
|
+
tr,
|
2516
|
+
td,
|
2517
|
+
th {
|
2518
|
+
vertical-align: middle;
|
2519
|
+
}
|
2520
|
+
|
2521
|
+
body {
|
2522
|
+
-webkit-font-feature-settings: "kern", "liga", "pnum";
|
2523
|
+
-moz-font-feature-settings: "kern", "liga", "pnum";
|
2524
|
+
-ms-font-feature-settings: "kern", "liga", "pnum";
|
2525
|
+
font-feature-settings: "kern", "liga", "pnum";
|
2526
|
+
-webkit-font-smoothing: antialiased;
|
2527
|
+
color: #333;
|
2528
|
+
font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2529
|
+
font-size: 1em;
|
2530
|
+
line-height: 1.5;
|
2531
|
+
}
|
2532
|
+
|
2533
|
+
h1,
|
2534
|
+
h2,
|
2535
|
+
h3,
|
2536
|
+
h4,
|
2537
|
+
h5,
|
2538
|
+
h6 {
|
2539
|
+
font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
|
2540
|
+
font-size: 1em;
|
2541
|
+
line-height: 1.2;
|
2542
|
+
margin: 0 0 0.75em;
|
2543
|
+
}
|
2544
|
+
|
2545
|
+
p {
|
2546
|
+
margin: 0 0 0.75em;
|
2547
|
+
}
|
2548
|
+
|
2549
|
+
a {
|
2550
|
+
color: #477dca;
|
2551
|
+
text-decoration: none;
|
2552
|
+
transition: color 0.1s linear;
|
2553
|
+
}
|
2554
|
+
a:active, a:focus, a:hover {
|
2555
|
+
color: #2c5999;
|
2556
|
+
}
|
2557
|
+
a:active, a:focus {
|
2558
|
+
outline: none;
|
2559
|
+
}
|
2560
|
+
|
2561
|
+
hr {
|
2562
|
+
border-bottom: 1px solid #ddd;
|
2563
|
+
border-left: none;
|
2564
|
+
border-right: none;
|
2565
|
+
border-top: none;
|
2566
|
+
margin: 1.5em 0;
|
2567
|
+
}
|
2568
|
+
|
2569
|
+
img,
|
2570
|
+
picture {
|
2571
|
+
margin: 0;
|
2572
|
+
max-width: 100%;
|
2573
|
+
}
|
2574
|
+
|
2575
|
+
button, input[type="button"], input[type="reset"], input[type="submit"], .qq-upload-button {
|
2576
|
+
background-color: #477DCA;
|
2577
|
+
}
|
2578
|
+
|
2579
|
+
button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus,
|
2580
|
+
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .qq-upload-button:focus, .qq-upload-button:hover {
|
2581
|
+
background-color: #1C4887;
|
2582
|
+
}
|
2583
|
+
|
2584
|
+
button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active, .qq-upload-button:active {
|
2585
|
+
background-color: #153769;
|
2586
|
+
}
|
2587
|
+
|
2588
|
+
.side-image {
|
2589
|
+
background: #F9F9F9;
|
2590
|
+
display: block;
|
2591
|
+
}
|
2592
|
+
@media screen and (min-width: 53.75em) {
|
2593
|
+
.side-image {
|
2594
|
+
display: table;
|
2595
|
+
width: 100%;
|
2596
|
+
table-layout: fixed;
|
2597
|
+
}
|
2598
|
+
}
|
2599
|
+
.side-image .images-wrapper {
|
2600
|
+
background: url("https:\a//raw.githubusercontent.com/thoughtbot/refills/master/source/images/mountains.png");
|
2601
|
+
background: url("https:\a//raw.githubusercontent.com/thoughtbot/refills/master/source/images/mountains.png");
|
2602
|
+
background-size: cover;
|
2603
|
+
border-bottom: 1px solid rgba(38, 74, 38, 0.2);
|
2604
|
+
display: block;
|
2605
|
+
min-height: 12em;
|
2606
|
+
padding: 3em;
|
2607
|
+
}
|
2608
|
+
@media screen and (min-width: 53.75em) {
|
2609
|
+
.side-image .images-wrapper {
|
2610
|
+
display: table-cell;
|
2611
|
+
width: 33.33333%;
|
2612
|
+
background-position: bottom;
|
2613
|
+
background-size: cover;
|
2614
|
+
border-right: 1px solid rgba(38, 74, 38, 0.2);
|
2615
|
+
}
|
2616
|
+
}
|
2617
|
+
.side-image .side-image-content {
|
2618
|
+
display: table-cell;
|
2619
|
+
width: 100%;
|
2620
|
+
padding: 1em 1em 4em 1em;
|
2621
|
+
}
|
2622
|
+
@media screen and (min-width: 53.75em) {
|
2623
|
+
.side-image .side-image-content {
|
2624
|
+
display: table-cell;
|
2625
|
+
width: 66.66667%;
|
2626
|
+
padding: 4em 4em 8em 4em;
|
2627
|
+
}
|
2628
|
+
}
|
2629
|
+
.side-image .side-image-content h1 {
|
2630
|
+
margin-bottom: 0.9em;
|
2631
|
+
}
|
2632
|
+
.side-image .side-image-content h4 {
|
2633
|
+
background: #BBB;
|
2634
|
+
color: white;
|
2635
|
+
display: inline-block;
|
2636
|
+
font-size: 0.75em;
|
2637
|
+
font-weight: 800;
|
2638
|
+
margin-bottom: 1.3em;
|
2639
|
+
padding: 3px 8px;
|
2640
|
+
text-transform: uppercase;
|
2641
|
+
}
|
2642
|
+
.side-image .side-image-content p {
|
2643
|
+
color: #333;
|
2644
|
+
line-height: 1.5;
|
2645
|
+
margin-bottom: 3em;
|
2646
|
+
}
|
2647
|
+
.side-image .side-image-content button {
|
2648
|
+
padding: 0.7em 1em;
|
2649
|
+
}
|