font-awesome-rails-sass 4.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1571 @@
1
+ /*!
2
+ * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+ /* FONT PATH
6
+ * -------------------------- */
7
+ //= depend_on_asset "fontawesome-webfont.eot"
8
+ //= depend_on_asset "fontawesome-webfont.woff"
9
+ //= depend_on_asset "fontawesome-webfont.svg"
10
+ //= depend_on_asset "fontawesome-webfont.ttf"
11
+ //= depend_on_asset "fontawesome-webfont.woff"
12
+ @font-face {
13
+ font-family: 'FontAwesome';
14
+ src: font-url('fontawesome-webfont.eot');
15
+ src: font-url('fontawesome-webfont.eot') format('embedded-opentype'), font-url('fontawesome-webfont.woff') format('woff'), font-url('fontawesome-webfont.ttf') format('truetype'), font-url('fontawesome-webfont.svg#fontawesomeregular') format('svg');
16
+ font-weight: normal;
17
+ font-style: normal;
18
+ }
19
+ .fa {
20
+ display: inline-block;
21
+ font-family: FontAwesome;
22
+ font-style: normal;
23
+ font-weight: normal;
24
+ line-height: 1;
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+ }
28
+ /* makes the font 33% larger relative to the icon container */
29
+ .fa-lg {
30
+ font-size: 1.33333333em;
31
+ line-height: 0.75em;
32
+ vertical-align: -15%;
33
+ }
34
+ .fa-2x {
35
+ font-size: 2em;
36
+ }
37
+ .fa-3x {
38
+ font-size: 3em;
39
+ }
40
+ .fa-4x {
41
+ font-size: 4em;
42
+ }
43
+ .fa-5x {
44
+ font-size: 5em;
45
+ }
46
+ .fa-fw {
47
+ width: 1.28571429em;
48
+ text-align: center;
49
+ }
50
+ .fa-ul {
51
+ padding-left: 0;
52
+ margin-left: 2.14285714em;
53
+ list-style-type: none;
54
+ }
55
+ .fa-ul > li {
56
+ position: relative;
57
+ }
58
+ .fa-li {
59
+ position: absolute;
60
+ left: -2.14285714em;
61
+ width: 2.14285714em;
62
+ top: 0.14285714em;
63
+ text-align: center;
64
+ }
65
+ .fa-li.fa-lg {
66
+ left: -1.85714286em;
67
+ }
68
+ .fa-border {
69
+ padding: .2em .25em .15em;
70
+ border: solid 0.08em #eeeeee;
71
+ border-radius: .1em;
72
+ }
73
+ .pull-right {
74
+ float: right;
75
+ }
76
+ .pull-left {
77
+ float: left;
78
+ }
79
+ .fa.pull-left {
80
+ margin-right: .3em;
81
+ }
82
+ .fa.pull-right {
83
+ margin-left: .3em;
84
+ }
85
+ .fa-spin {
86
+ -webkit-animation: spin 2s infinite linear;
87
+ -moz-animation: spin 2s infinite linear;
88
+ -o-animation: spin 2s infinite linear;
89
+ animation: spin 2s infinite linear;
90
+ }
91
+ @-moz-keyframes spin {
92
+ 0% {
93
+ -moz-transform: rotate(0deg);
94
+ }
95
+ 100% {
96
+ -moz-transform: rotate(359deg);
97
+ }
98
+ }
99
+ @-webkit-keyframes spin {
100
+ 0% {
101
+ -webkit-transform: rotate(0deg);
102
+ }
103
+ 100% {
104
+ -webkit-transform: rotate(359deg);
105
+ }
106
+ }
107
+ @-o-keyframes spin {
108
+ 0% {
109
+ -o-transform: rotate(0deg);
110
+ }
111
+ 100% {
112
+ -o-transform: rotate(359deg);
113
+ }
114
+ }
115
+ @keyframes 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
+ -moz-transform: rotate(90deg);
129
+ -ms-transform: rotate(90deg);
130
+ -o-transform: rotate(90deg);
131
+ transform: rotate(90deg);
132
+ }
133
+ .fa-rotate-180 {
134
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
135
+ -webkit-transform: rotate(180deg);
136
+ -moz-transform: rotate(180deg);
137
+ -ms-transform: rotate(180deg);
138
+ -o-transform: rotate(180deg);
139
+ transform: rotate(180deg);
140
+ }
141
+ .fa-rotate-270 {
142
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
143
+ -webkit-transform: rotate(270deg);
144
+ -moz-transform: rotate(270deg);
145
+ -ms-transform: rotate(270deg);
146
+ -o-transform: rotate(270deg);
147
+ transform: rotate(270deg);
148
+ }
149
+ .fa-flip-horizontal {
150
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
151
+ -webkit-transform: scale(-1, 1);
152
+ -moz-transform: scale(-1, 1);
153
+ -ms-transform: scale(-1, 1);
154
+ -o-transform: scale(-1, 1);
155
+ transform: scale(-1, 1);
156
+ }
157
+ .fa-flip-vertical {
158
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
159
+ -webkit-transform: scale(1, -1);
160
+ -moz-transform: scale(1, -1);
161
+ -ms-transform: scale(1, -1);
162
+ -o-transform: scale(1, -1);
163
+ transform: scale(1, -1);
164
+ }
165
+ .fa-stack {
166
+ position: relative;
167
+ display: inline-block;
168
+ width: 2em;
169
+ height: 2em;
170
+ line-height: 2em;
171
+ vertical-align: middle;
172
+ }
173
+ .fa-stack-1x,
174
+ .fa-stack-2x {
175
+ position: absolute;
176
+ left: 0;
177
+ width: 100%;
178
+ text-align: center;
179
+ }
180
+ .fa-stack-1x {
181
+ line-height: inherit;
182
+ }
183
+ .fa-stack-2x {
184
+ font-size: 2em;
185
+ }
186
+ .fa-inverse {
187
+ color: #ffffff;
188
+ }
189
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
190
+ readers do not read off random characters that represent icons */
191
+ .fa-glass:before {
192
+ content: "\f000";
193
+ }
194
+ .fa-music:before {
195
+ content: "\f001";
196
+ }
197
+ .fa-search:before {
198
+ content: "\f002";
199
+ }
200
+ .fa-envelope-o:before {
201
+ content: "\f003";
202
+ }
203
+ .fa-heart:before {
204
+ content: "\f004";
205
+ }
206
+ .fa-star:before {
207
+ content: "\f005";
208
+ }
209
+ .fa-star-o:before {
210
+ content: "\f006";
211
+ }
212
+ .fa-user:before {
213
+ content: "\f007";
214
+ }
215
+ .fa-film:before {
216
+ content: "\f008";
217
+ }
218
+ .fa-th-large:before {
219
+ content: "\f009";
220
+ }
221
+ .fa-th:before {
222
+ content: "\f00a";
223
+ }
224
+ .fa-th-list:before {
225
+ content: "\f00b";
226
+ }
227
+ .fa-check:before {
228
+ content: "\f00c";
229
+ }
230
+ .fa-times:before {
231
+ content: "\f00d";
232
+ }
233
+ .fa-search-plus:before {
234
+ content: "\f00e";
235
+ }
236
+ .fa-search-minus:before {
237
+ content: "\f010";
238
+ }
239
+ .fa-power-off:before {
240
+ content: "\f011";
241
+ }
242
+ .fa-signal:before {
243
+ content: "\f012";
244
+ }
245
+ .fa-gear:before,
246
+ .fa-cog:before {
247
+ content: "\f013";
248
+ }
249
+ .fa-trash-o:before {
250
+ content: "\f014";
251
+ }
252
+ .fa-home:before {
253
+ content: "\f015";
254
+ }
255
+ .fa-file-o:before {
256
+ content: "\f016";
257
+ }
258
+ .fa-clock-o:before {
259
+ content: "\f017";
260
+ }
261
+ .fa-road:before {
262
+ content: "\f018";
263
+ }
264
+ .fa-download:before {
265
+ content: "\f019";
266
+ }
267
+ .fa-arrow-circle-o-down:before {
268
+ content: "\f01a";
269
+ }
270
+ .fa-arrow-circle-o-up:before {
271
+ content: "\f01b";
272
+ }
273
+ .fa-inbox:before {
274
+ content: "\f01c";
275
+ }
276
+ .fa-play-circle-o:before {
277
+ content: "\f01d";
278
+ }
279
+ .fa-rotate-right:before,
280
+ .fa-repeat:before {
281
+ content: "\f01e";
282
+ }
283
+ .fa-refresh:before {
284
+ content: "\f021";
285
+ }
286
+ .fa-list-alt:before {
287
+ content: "\f022";
288
+ }
289
+ .fa-lock:before {
290
+ content: "\f023";
291
+ }
292
+ .fa-flag:before {
293
+ content: "\f024";
294
+ }
295
+ .fa-headphones:before {
296
+ content: "\f025";
297
+ }
298
+ .fa-volume-off:before {
299
+ content: "\f026";
300
+ }
301
+ .fa-volume-down:before {
302
+ content: "\f027";
303
+ }
304
+ .fa-volume-up:before {
305
+ content: "\f028";
306
+ }
307
+ .fa-qrcode:before {
308
+ content: "\f029";
309
+ }
310
+ .fa-barcode:before {
311
+ content: "\f02a";
312
+ }
313
+ .fa-tag:before {
314
+ content: "\f02b";
315
+ }
316
+ .fa-tags:before {
317
+ content: "\f02c";
318
+ }
319
+ .fa-book:before {
320
+ content: "\f02d";
321
+ }
322
+ .fa-bookmark:before {
323
+ content: "\f02e";
324
+ }
325
+ .fa-print:before {
326
+ content: "\f02f";
327
+ }
328
+ .fa-camera:before {
329
+ content: "\f030";
330
+ }
331
+ .fa-font:before {
332
+ content: "\f031";
333
+ }
334
+ .fa-bold:before {
335
+ content: "\f032";
336
+ }
337
+ .fa-italic:before {
338
+ content: "\f033";
339
+ }
340
+ .fa-text-height:before {
341
+ content: "\f034";
342
+ }
343
+ .fa-text-width:before {
344
+ content: "\f035";
345
+ }
346
+ .fa-align-left:before {
347
+ content: "\f036";
348
+ }
349
+ .fa-align-center:before {
350
+ content: "\f037";
351
+ }
352
+ .fa-align-right:before {
353
+ content: "\f038";
354
+ }
355
+ .fa-align-justify:before {
356
+ content: "\f039";
357
+ }
358
+ .fa-list:before {
359
+ content: "\f03a";
360
+ }
361
+ .fa-dedent:before,
362
+ .fa-outdent:before {
363
+ content: "\f03b";
364
+ }
365
+ .fa-indent:before {
366
+ content: "\f03c";
367
+ }
368
+ .fa-video-camera:before {
369
+ content: "\f03d";
370
+ }
371
+ .fa-photo:before,
372
+ .fa-image:before,
373
+ .fa-picture-o:before {
374
+ content: "\f03e";
375
+ }
376
+ .fa-pencil:before {
377
+ content: "\f040";
378
+ }
379
+ .fa-map-marker:before {
380
+ content: "\f041";
381
+ }
382
+ .fa-adjust:before {
383
+ content: "\f042";
384
+ }
385
+ .fa-tint:before {
386
+ content: "\f043";
387
+ }
388
+ .fa-edit:before,
389
+ .fa-pencil-square-o:before {
390
+ content: "\f044";
391
+ }
392
+ .fa-share-square-o:before {
393
+ content: "\f045";
394
+ }
395
+ .fa-check-square-o:before {
396
+ content: "\f046";
397
+ }
398
+ .fa-arrows:before {
399
+ content: "\f047";
400
+ }
401
+ .fa-step-backward:before {
402
+ content: "\f048";
403
+ }
404
+ .fa-fast-backward:before {
405
+ content: "\f049";
406
+ }
407
+ .fa-backward:before {
408
+ content: "\f04a";
409
+ }
410
+ .fa-play:before {
411
+ content: "\f04b";
412
+ }
413
+ .fa-pause:before {
414
+ content: "\f04c";
415
+ }
416
+ .fa-stop:before {
417
+ content: "\f04d";
418
+ }
419
+ .fa-forward:before {
420
+ content: "\f04e";
421
+ }
422
+ .fa-fast-forward:before {
423
+ content: "\f050";
424
+ }
425
+ .fa-step-forward:before {
426
+ content: "\f051";
427
+ }
428
+ .fa-eject:before {
429
+ content: "\f052";
430
+ }
431
+ .fa-chevron-left:before {
432
+ content: "\f053";
433
+ }
434
+ .fa-chevron-right:before {
435
+ content: "\f054";
436
+ }
437
+ .fa-plus-circle:before {
438
+ content: "\f055";
439
+ }
440
+ .fa-minus-circle:before {
441
+ content: "\f056";
442
+ }
443
+ .fa-times-circle:before {
444
+ content: "\f057";
445
+ }
446
+ .fa-check-circle:before {
447
+ content: "\f058";
448
+ }
449
+ .fa-question-circle:before {
450
+ content: "\f059";
451
+ }
452
+ .fa-info-circle:before {
453
+ content: "\f05a";
454
+ }
455
+ .fa-crosshairs:before {
456
+ content: "\f05b";
457
+ }
458
+ .fa-times-circle-o:before {
459
+ content: "\f05c";
460
+ }
461
+ .fa-check-circle-o:before {
462
+ content: "\f05d";
463
+ }
464
+ .fa-ban:before {
465
+ content: "\f05e";
466
+ }
467
+ .fa-arrow-left:before {
468
+ content: "\f060";
469
+ }
470
+ .fa-arrow-right:before {
471
+ content: "\f061";
472
+ }
473
+ .fa-arrow-up:before {
474
+ content: "\f062";
475
+ }
476
+ .fa-arrow-down:before {
477
+ content: "\f063";
478
+ }
479
+ .fa-mail-forward:before,
480
+ .fa-share:before {
481
+ content: "\f064";
482
+ }
483
+ .fa-expand:before {
484
+ content: "\f065";
485
+ }
486
+ .fa-compress:before {
487
+ content: "\f066";
488
+ }
489
+ .fa-plus:before {
490
+ content: "\f067";
491
+ }
492
+ .fa-minus:before {
493
+ content: "\f068";
494
+ }
495
+ .fa-asterisk:before {
496
+ content: "\f069";
497
+ }
498
+ .fa-exclamation-circle:before {
499
+ content: "\f06a";
500
+ }
501
+ .fa-gift:before {
502
+ content: "\f06b";
503
+ }
504
+ .fa-leaf:before {
505
+ content: "\f06c";
506
+ }
507
+ .fa-fire:before {
508
+ content: "\f06d";
509
+ }
510
+ .fa-eye:before {
511
+ content: "\f06e";
512
+ }
513
+ .fa-eye-slash:before {
514
+ content: "\f070";
515
+ }
516
+ .fa-warning:before,
517
+ .fa-exclamation-triangle:before {
518
+ content: "\f071";
519
+ }
520
+ .fa-plane:before {
521
+ content: "\f072";
522
+ }
523
+ .fa-calendar:before {
524
+ content: "\f073";
525
+ }
526
+ .fa-random:before {
527
+ content: "\f074";
528
+ }
529
+ .fa-comment:before {
530
+ content: "\f075";
531
+ }
532
+ .fa-magnet:before {
533
+ content: "\f076";
534
+ }
535
+ .fa-chevron-up:before {
536
+ content: "\f077";
537
+ }
538
+ .fa-chevron-down:before {
539
+ content: "\f078";
540
+ }
541
+ .fa-retweet:before {
542
+ content: "\f079";
543
+ }
544
+ .fa-shopping-cart:before {
545
+ content: "\f07a";
546
+ }
547
+ .fa-folder:before {
548
+ content: "\f07b";
549
+ }
550
+ .fa-folder-open:before {
551
+ content: "\f07c";
552
+ }
553
+ .fa-arrows-v:before {
554
+ content: "\f07d";
555
+ }
556
+ .fa-arrows-h:before {
557
+ content: "\f07e";
558
+ }
559
+ .fa-bar-chart-o:before {
560
+ content: "\f080";
561
+ }
562
+ .fa-twitter-square:before {
563
+ content: "\f081";
564
+ }
565
+ .fa-facebook-square:before {
566
+ content: "\f082";
567
+ }
568
+ .fa-camera-retro:before {
569
+ content: "\f083";
570
+ }
571
+ .fa-key:before {
572
+ content: "\f084";
573
+ }
574
+ .fa-gears:before,
575
+ .fa-cogs:before {
576
+ content: "\f085";
577
+ }
578
+ .fa-comments:before {
579
+ content: "\f086";
580
+ }
581
+ .fa-thumbs-o-up:before {
582
+ content: "\f087";
583
+ }
584
+ .fa-thumbs-o-down:before {
585
+ content: "\f088";
586
+ }
587
+ .fa-star-half:before {
588
+ content: "\f089";
589
+ }
590
+ .fa-heart-o:before {
591
+ content: "\f08a";
592
+ }
593
+ .fa-sign-out:before {
594
+ content: "\f08b";
595
+ }
596
+ .fa-linkedin-square:before {
597
+ content: "\f08c";
598
+ }
599
+ .fa-thumb-tack:before {
600
+ content: "\f08d";
601
+ }
602
+ .fa-external-link:before {
603
+ content: "\f08e";
604
+ }
605
+ .fa-sign-in:before {
606
+ content: "\f090";
607
+ }
608
+ .fa-trophy:before {
609
+ content: "\f091";
610
+ }
611
+ .fa-github-square:before {
612
+ content: "\f092";
613
+ }
614
+ .fa-upload:before {
615
+ content: "\f093";
616
+ }
617
+ .fa-lemon-o:before {
618
+ content: "\f094";
619
+ }
620
+ .fa-phone:before {
621
+ content: "\f095";
622
+ }
623
+ .fa-square-o:before {
624
+ content: "\f096";
625
+ }
626
+ .fa-bookmark-o:before {
627
+ content: "\f097";
628
+ }
629
+ .fa-phone-square:before {
630
+ content: "\f098";
631
+ }
632
+ .fa-twitter:before {
633
+ content: "\f099";
634
+ }
635
+ .fa-facebook:before {
636
+ content: "\f09a";
637
+ }
638
+ .fa-github:before {
639
+ content: "\f09b";
640
+ }
641
+ .fa-unlock:before {
642
+ content: "\f09c";
643
+ }
644
+ .fa-credit-card:before {
645
+ content: "\f09d";
646
+ }
647
+ .fa-rss:before {
648
+ content: "\f09e";
649
+ }
650
+ .fa-hdd-o:before {
651
+ content: "\f0a0";
652
+ }
653
+ .fa-bullhorn:before {
654
+ content: "\f0a1";
655
+ }
656
+ .fa-bell:before {
657
+ content: "\f0f3";
658
+ }
659
+ .fa-certificate:before {
660
+ content: "\f0a3";
661
+ }
662
+ .fa-hand-o-right:before {
663
+ content: "\f0a4";
664
+ }
665
+ .fa-hand-o-left:before {
666
+ content: "\f0a5";
667
+ }
668
+ .fa-hand-o-up:before {
669
+ content: "\f0a6";
670
+ }
671
+ .fa-hand-o-down:before {
672
+ content: "\f0a7";
673
+ }
674
+ .fa-arrow-circle-left:before {
675
+ content: "\f0a8";
676
+ }
677
+ .fa-arrow-circle-right:before {
678
+ content: "\f0a9";
679
+ }
680
+ .fa-arrow-circle-up:before {
681
+ content: "\f0aa";
682
+ }
683
+ .fa-arrow-circle-down:before {
684
+ content: "\f0ab";
685
+ }
686
+ .fa-globe:before {
687
+ content: "\f0ac";
688
+ }
689
+ .fa-wrench:before {
690
+ content: "\f0ad";
691
+ }
692
+ .fa-tasks:before {
693
+ content: "\f0ae";
694
+ }
695
+ .fa-filter:before {
696
+ content: "\f0b0";
697
+ }
698
+ .fa-briefcase:before {
699
+ content: "\f0b1";
700
+ }
701
+ .fa-arrows-alt:before {
702
+ content: "\f0b2";
703
+ }
704
+ .fa-group:before,
705
+ .fa-users:before {
706
+ content: "\f0c0";
707
+ }
708
+ .fa-chain:before,
709
+ .fa-link:before {
710
+ content: "\f0c1";
711
+ }
712
+ .fa-cloud:before {
713
+ content: "\f0c2";
714
+ }
715
+ .fa-flask:before {
716
+ content: "\f0c3";
717
+ }
718
+ .fa-cut:before,
719
+ .fa-scissors:before {
720
+ content: "\f0c4";
721
+ }
722
+ .fa-copy:before,
723
+ .fa-files-o:before {
724
+ content: "\f0c5";
725
+ }
726
+ .fa-paperclip:before {
727
+ content: "\f0c6";
728
+ }
729
+ .fa-save:before,
730
+ .fa-floppy-o:before {
731
+ content: "\f0c7";
732
+ }
733
+ .fa-square:before {
734
+ content: "\f0c8";
735
+ }
736
+ .fa-navicon:before,
737
+ .fa-reorder:before,
738
+ .fa-bars:before {
739
+ content: "\f0c9";
740
+ }
741
+ .fa-list-ul:before {
742
+ content: "\f0ca";
743
+ }
744
+ .fa-list-ol:before {
745
+ content: "\f0cb";
746
+ }
747
+ .fa-strikethrough:before {
748
+ content: "\f0cc";
749
+ }
750
+ .fa-underline:before {
751
+ content: "\f0cd";
752
+ }
753
+ .fa-table:before {
754
+ content: "\f0ce";
755
+ }
756
+ .fa-magic:before {
757
+ content: "\f0d0";
758
+ }
759
+ .fa-truck:before {
760
+ content: "\f0d1";
761
+ }
762
+ .fa-pinterest:before {
763
+ content: "\f0d2";
764
+ }
765
+ .fa-pinterest-square:before {
766
+ content: "\f0d3";
767
+ }
768
+ .fa-google-plus-square:before {
769
+ content: "\f0d4";
770
+ }
771
+ .fa-google-plus:before {
772
+ content: "\f0d5";
773
+ }
774
+ .fa-money:before {
775
+ content: "\f0d6";
776
+ }
777
+ .fa-caret-down:before {
778
+ content: "\f0d7";
779
+ }
780
+ .fa-caret-up:before {
781
+ content: "\f0d8";
782
+ }
783
+ .fa-caret-left:before {
784
+ content: "\f0d9";
785
+ }
786
+ .fa-caret-right:before {
787
+ content: "\f0da";
788
+ }
789
+ .fa-columns:before {
790
+ content: "\f0db";
791
+ }
792
+ .fa-unsorted:before,
793
+ .fa-sort:before {
794
+ content: "\f0dc";
795
+ }
796
+ .fa-sort-down:before,
797
+ .fa-sort-desc:before {
798
+ content: "\f0dd";
799
+ }
800
+ .fa-sort-up:before,
801
+ .fa-sort-asc:before {
802
+ content: "\f0de";
803
+ }
804
+ .fa-envelope:before {
805
+ content: "\f0e0";
806
+ }
807
+ .fa-linkedin:before {
808
+ content: "\f0e1";
809
+ }
810
+ .fa-rotate-left:before,
811
+ .fa-undo:before {
812
+ content: "\f0e2";
813
+ }
814
+ .fa-legal:before,
815
+ .fa-gavel:before {
816
+ content: "\f0e3";
817
+ }
818
+ .fa-dashboard:before,
819
+ .fa-tachometer:before {
820
+ content: "\f0e4";
821
+ }
822
+ .fa-comment-o:before {
823
+ content: "\f0e5";
824
+ }
825
+ .fa-comments-o:before {
826
+ content: "\f0e6";
827
+ }
828
+ .fa-flash:before,
829
+ .fa-bolt:before {
830
+ content: "\f0e7";
831
+ }
832
+ .fa-sitemap:before {
833
+ content: "\f0e8";
834
+ }
835
+ .fa-umbrella:before {
836
+ content: "\f0e9";
837
+ }
838
+ .fa-paste:before,
839
+ .fa-clipboard:before {
840
+ content: "\f0ea";
841
+ }
842
+ .fa-lightbulb-o:before {
843
+ content: "\f0eb";
844
+ }
845
+ .fa-exchange:before {
846
+ content: "\f0ec";
847
+ }
848
+ .fa-cloud-download:before {
849
+ content: "\f0ed";
850
+ }
851
+ .fa-cloud-upload:before {
852
+ content: "\f0ee";
853
+ }
854
+ .fa-user-md:before {
855
+ content: "\f0f0";
856
+ }
857
+ .fa-stethoscope:before {
858
+ content: "\f0f1";
859
+ }
860
+ .fa-suitcase:before {
861
+ content: "\f0f2";
862
+ }
863
+ .fa-bell-o:before {
864
+ content: "\f0a2";
865
+ }
866
+ .fa-coffee:before {
867
+ content: "\f0f4";
868
+ }
869
+ .fa-cutlery:before {
870
+ content: "\f0f5";
871
+ }
872
+ .fa-file-text-o:before {
873
+ content: "\f0f6";
874
+ }
875
+ .fa-building-o:before {
876
+ content: "\f0f7";
877
+ }
878
+ .fa-hospital-o:before {
879
+ content: "\f0f8";
880
+ }
881
+ .fa-ambulance:before {
882
+ content: "\f0f9";
883
+ }
884
+ .fa-medkit:before {
885
+ content: "\f0fa";
886
+ }
887
+ .fa-fighter-jet:before {
888
+ content: "\f0fb";
889
+ }
890
+ .fa-beer:before {
891
+ content: "\f0fc";
892
+ }
893
+ .fa-h-square:before {
894
+ content: "\f0fd";
895
+ }
896
+ .fa-plus-square:before {
897
+ content: "\f0fe";
898
+ }
899
+ .fa-angle-double-left:before {
900
+ content: "\f100";
901
+ }
902
+ .fa-angle-double-right:before {
903
+ content: "\f101";
904
+ }
905
+ .fa-angle-double-up:before {
906
+ content: "\f102";
907
+ }
908
+ .fa-angle-double-down:before {
909
+ content: "\f103";
910
+ }
911
+ .fa-angle-left:before {
912
+ content: "\f104";
913
+ }
914
+ .fa-angle-right:before {
915
+ content: "\f105";
916
+ }
917
+ .fa-angle-up:before {
918
+ content: "\f106";
919
+ }
920
+ .fa-angle-down:before {
921
+ content: "\f107";
922
+ }
923
+ .fa-desktop:before {
924
+ content: "\f108";
925
+ }
926
+ .fa-laptop:before {
927
+ content: "\f109";
928
+ }
929
+ .fa-tablet:before {
930
+ content: "\f10a";
931
+ }
932
+ .fa-mobile-phone:before,
933
+ .fa-mobile:before {
934
+ content: "\f10b";
935
+ }
936
+ .fa-circle-o:before {
937
+ content: "\f10c";
938
+ }
939
+ .fa-quote-left:before {
940
+ content: "\f10d";
941
+ }
942
+ .fa-quote-right:before {
943
+ content: "\f10e";
944
+ }
945
+ .fa-spinner:before {
946
+ content: "\f110";
947
+ }
948
+ .fa-circle:before {
949
+ content: "\f111";
950
+ }
951
+ .fa-mail-reply:before,
952
+ .fa-reply:before {
953
+ content: "\f112";
954
+ }
955
+ .fa-github-alt:before {
956
+ content: "\f113";
957
+ }
958
+ .fa-folder-o:before {
959
+ content: "\f114";
960
+ }
961
+ .fa-folder-open-o:before {
962
+ content: "\f115";
963
+ }
964
+ .fa-smile-o:before {
965
+ content: "\f118";
966
+ }
967
+ .fa-frown-o:before {
968
+ content: "\f119";
969
+ }
970
+ .fa-meh-o:before {
971
+ content: "\f11a";
972
+ }
973
+ .fa-gamepad:before {
974
+ content: "\f11b";
975
+ }
976
+ .fa-keyboard-o:before {
977
+ content: "\f11c";
978
+ }
979
+ .fa-flag-o:before {
980
+ content: "\f11d";
981
+ }
982
+ .fa-flag-checkered:before {
983
+ content: "\f11e";
984
+ }
985
+ .fa-terminal:before {
986
+ content: "\f120";
987
+ }
988
+ .fa-code:before {
989
+ content: "\f121";
990
+ }
991
+ .fa-mail-reply-all:before,
992
+ .fa-reply-all:before {
993
+ content: "\f122";
994
+ }
995
+ .fa-star-half-empty:before,
996
+ .fa-star-half-full:before,
997
+ .fa-star-half-o:before {
998
+ content: "\f123";
999
+ }
1000
+ .fa-location-arrow:before {
1001
+ content: "\f124";
1002
+ }
1003
+ .fa-crop:before {
1004
+ content: "\f125";
1005
+ }
1006
+ .fa-code-fork:before {
1007
+ content: "\f126";
1008
+ }
1009
+ .fa-unlink:before,
1010
+ .fa-chain-broken:before {
1011
+ content: "\f127";
1012
+ }
1013
+ .fa-question:before {
1014
+ content: "\f128";
1015
+ }
1016
+ .fa-info:before {
1017
+ content: "\f129";
1018
+ }
1019
+ .fa-exclamation:before {
1020
+ content: "\f12a";
1021
+ }
1022
+ .fa-superscript:before {
1023
+ content: "\f12b";
1024
+ }
1025
+ .fa-subscript:before {
1026
+ content: "\f12c";
1027
+ }
1028
+ .fa-eraser:before {
1029
+ content: "\f12d";
1030
+ }
1031
+ .fa-puzzle-piece:before {
1032
+ content: "\f12e";
1033
+ }
1034
+ .fa-microphone:before {
1035
+ content: "\f130";
1036
+ }
1037
+ .fa-microphone-slash:before {
1038
+ content: "\f131";
1039
+ }
1040
+ .fa-shield:before {
1041
+ content: "\f132";
1042
+ }
1043
+ .fa-calendar-o:before {
1044
+ content: "\f133";
1045
+ }
1046
+ .fa-fire-extinguisher:before {
1047
+ content: "\f134";
1048
+ }
1049
+ .fa-rocket:before {
1050
+ content: "\f135";
1051
+ }
1052
+ .fa-maxcdn:before {
1053
+ content: "\f136";
1054
+ }
1055
+ .fa-chevron-circle-left:before {
1056
+ content: "\f137";
1057
+ }
1058
+ .fa-chevron-circle-right:before {
1059
+ content: "\f138";
1060
+ }
1061
+ .fa-chevron-circle-up:before {
1062
+ content: "\f139";
1063
+ }
1064
+ .fa-chevron-circle-down:before {
1065
+ content: "\f13a";
1066
+ }
1067
+ .fa-html5:before {
1068
+ content: "\f13b";
1069
+ }
1070
+ .fa-css3:before {
1071
+ content: "\f13c";
1072
+ }
1073
+ .fa-anchor:before {
1074
+ content: "\f13d";
1075
+ }
1076
+ .fa-unlock-alt:before {
1077
+ content: "\f13e";
1078
+ }
1079
+ .fa-bullseye:before {
1080
+ content: "\f140";
1081
+ }
1082
+ .fa-ellipsis-h:before {
1083
+ content: "\f141";
1084
+ }
1085
+ .fa-ellipsis-v:before {
1086
+ content: "\f142";
1087
+ }
1088
+ .fa-rss-square:before {
1089
+ content: "\f143";
1090
+ }
1091
+ .fa-play-circle:before {
1092
+ content: "\f144";
1093
+ }
1094
+ .fa-ticket:before {
1095
+ content: "\f145";
1096
+ }
1097
+ .fa-minus-square:before {
1098
+ content: "\f146";
1099
+ }
1100
+ .fa-minus-square-o:before {
1101
+ content: "\f147";
1102
+ }
1103
+ .fa-level-up:before {
1104
+ content: "\f148";
1105
+ }
1106
+ .fa-level-down:before {
1107
+ content: "\f149";
1108
+ }
1109
+ .fa-check-square:before {
1110
+ content: "\f14a";
1111
+ }
1112
+ .fa-pencil-square:before {
1113
+ content: "\f14b";
1114
+ }
1115
+ .fa-external-link-square:before {
1116
+ content: "\f14c";
1117
+ }
1118
+ .fa-share-square:before {
1119
+ content: "\f14d";
1120
+ }
1121
+ .fa-compass:before {
1122
+ content: "\f14e";
1123
+ }
1124
+ .fa-toggle-down:before,
1125
+ .fa-caret-square-o-down:before {
1126
+ content: "\f150";
1127
+ }
1128
+ .fa-toggle-up:before,
1129
+ .fa-caret-square-o-up:before {
1130
+ content: "\f151";
1131
+ }
1132
+ .fa-toggle-right:before,
1133
+ .fa-caret-square-o-right:before {
1134
+ content: "\f152";
1135
+ }
1136
+ .fa-euro:before,
1137
+ .fa-eur:before {
1138
+ content: "\f153";
1139
+ }
1140
+ .fa-gbp:before {
1141
+ content: "\f154";
1142
+ }
1143
+ .fa-dollar:before,
1144
+ .fa-usd:before {
1145
+ content: "\f155";
1146
+ }
1147
+ .fa-rupee:before,
1148
+ .fa-inr:before {
1149
+ content: "\f156";
1150
+ }
1151
+ .fa-cny:before,
1152
+ .fa-rmb:before,
1153
+ .fa-yen:before,
1154
+ .fa-jpy:before {
1155
+ content: "\f157";
1156
+ }
1157
+ .fa-ruble:before,
1158
+ .fa-rouble:before,
1159
+ .fa-rub:before {
1160
+ content: "\f158";
1161
+ }
1162
+ .fa-won:before,
1163
+ .fa-krw:before {
1164
+ content: "\f159";
1165
+ }
1166
+ .fa-bitcoin:before,
1167
+ .fa-btc:before {
1168
+ content: "\f15a";
1169
+ }
1170
+ .fa-file:before {
1171
+ content: "\f15b";
1172
+ }
1173
+ .fa-file-text:before {
1174
+ content: "\f15c";
1175
+ }
1176
+ .fa-sort-alpha-asc:before {
1177
+ content: "\f15d";
1178
+ }
1179
+ .fa-sort-alpha-desc:before {
1180
+ content: "\f15e";
1181
+ }
1182
+ .fa-sort-amount-asc:before {
1183
+ content: "\f160";
1184
+ }
1185
+ .fa-sort-amount-desc:before {
1186
+ content: "\f161";
1187
+ }
1188
+ .fa-sort-numeric-asc:before {
1189
+ content: "\f162";
1190
+ }
1191
+ .fa-sort-numeric-desc:before {
1192
+ content: "\f163";
1193
+ }
1194
+ .fa-thumbs-up:before {
1195
+ content: "\f164";
1196
+ }
1197
+ .fa-thumbs-down:before {
1198
+ content: "\f165";
1199
+ }
1200
+ .fa-youtube-square:before {
1201
+ content: "\f166";
1202
+ }
1203
+ .fa-youtube:before {
1204
+ content: "\f167";
1205
+ }
1206
+ .fa-xing:before {
1207
+ content: "\f168";
1208
+ }
1209
+ .fa-xing-square:before {
1210
+ content: "\f169";
1211
+ }
1212
+ .fa-youtube-play:before {
1213
+ content: "\f16a";
1214
+ }
1215
+ .fa-dropbox:before {
1216
+ content: "\f16b";
1217
+ }
1218
+ .fa-stack-overflow:before {
1219
+ content: "\f16c";
1220
+ }
1221
+ .fa-instagram:before {
1222
+ content: "\f16d";
1223
+ }
1224
+ .fa-flickr:before {
1225
+ content: "\f16e";
1226
+ }
1227
+ .fa-adn:before {
1228
+ content: "\f170";
1229
+ }
1230
+ .fa-bitbucket:before {
1231
+ content: "\f171";
1232
+ }
1233
+ .fa-bitbucket-square:before {
1234
+ content: "\f172";
1235
+ }
1236
+ .fa-tumblr:before {
1237
+ content: "\f173";
1238
+ }
1239
+ .fa-tumblr-square:before {
1240
+ content: "\f174";
1241
+ }
1242
+ .fa-long-arrow-down:before {
1243
+ content: "\f175";
1244
+ }
1245
+ .fa-long-arrow-up:before {
1246
+ content: "\f176";
1247
+ }
1248
+ .fa-long-arrow-left:before {
1249
+ content: "\f177";
1250
+ }
1251
+ .fa-long-arrow-right:before {
1252
+ content: "\f178";
1253
+ }
1254
+ .fa-apple:before {
1255
+ content: "\f179";
1256
+ }
1257
+ .fa-windows:before {
1258
+ content: "\f17a";
1259
+ }
1260
+ .fa-android:before {
1261
+ content: "\f17b";
1262
+ }
1263
+ .fa-linux:before {
1264
+ content: "\f17c";
1265
+ }
1266
+ .fa-dribbble:before {
1267
+ content: "\f17d";
1268
+ }
1269
+ .fa-skype:before {
1270
+ content: "\f17e";
1271
+ }
1272
+ .fa-foursquare:before {
1273
+ content: "\f180";
1274
+ }
1275
+ .fa-trello:before {
1276
+ content: "\f181";
1277
+ }
1278
+ .fa-female:before {
1279
+ content: "\f182";
1280
+ }
1281
+ .fa-male:before {
1282
+ content: "\f183";
1283
+ }
1284
+ .fa-gittip:before {
1285
+ content: "\f184";
1286
+ }
1287
+ .fa-sun-o:before {
1288
+ content: "\f185";
1289
+ }
1290
+ .fa-moon-o:before {
1291
+ content: "\f186";
1292
+ }
1293
+ .fa-archive:before {
1294
+ content: "\f187";
1295
+ }
1296
+ .fa-bug:before {
1297
+ content: "\f188";
1298
+ }
1299
+ .fa-vk:before {
1300
+ content: "\f189";
1301
+ }
1302
+ .fa-weibo:before {
1303
+ content: "\f18a";
1304
+ }
1305
+ .fa-renren:before {
1306
+ content: "\f18b";
1307
+ }
1308
+ .fa-pagelines:before {
1309
+ content: "\f18c";
1310
+ }
1311
+ .fa-stack-exchange:before {
1312
+ content: "\f18d";
1313
+ }
1314
+ .fa-arrow-circle-o-right:before {
1315
+ content: "\f18e";
1316
+ }
1317
+ .fa-arrow-circle-o-left:before {
1318
+ content: "\f190";
1319
+ }
1320
+ .fa-toggle-left:before,
1321
+ .fa-caret-square-o-left:before {
1322
+ content: "\f191";
1323
+ }
1324
+ .fa-dot-circle-o:before {
1325
+ content: "\f192";
1326
+ }
1327
+ .fa-wheelchair:before {
1328
+ content: "\f193";
1329
+ }
1330
+ .fa-vimeo-square:before {
1331
+ content: "\f194";
1332
+ }
1333
+ .fa-turkish-lira:before,
1334
+ .fa-try:before {
1335
+ content: "\f195";
1336
+ }
1337
+ .fa-plus-square-o:before {
1338
+ content: "\f196";
1339
+ }
1340
+ .fa-space-shuttle:before {
1341
+ content: "\f197";
1342
+ }
1343
+ .fa-slack:before {
1344
+ content: "\f198";
1345
+ }
1346
+ .fa-envelope-square:before {
1347
+ content: "\f199";
1348
+ }
1349
+ .fa-wordpress:before {
1350
+ content: "\f19a";
1351
+ }
1352
+ .fa-openid:before {
1353
+ content: "\f19b";
1354
+ }
1355
+ .fa-institution:before,
1356
+ .fa-bank:before,
1357
+ .fa-university:before {
1358
+ content: "\f19c";
1359
+ }
1360
+ .fa-mortar-board:before,
1361
+ .fa-graduation-cap:before {
1362
+ content: "\f19d";
1363
+ }
1364
+ .fa-yahoo:before {
1365
+ content: "\f19e";
1366
+ }
1367
+ .fa-google:before {
1368
+ content: "\f1a0";
1369
+ }
1370
+ .fa-reddit:before {
1371
+ content: "\f1a1";
1372
+ }
1373
+ .fa-reddit-square:before {
1374
+ content: "\f1a2";
1375
+ }
1376
+ .fa-stumbleupon-circle:before {
1377
+ content: "\f1a3";
1378
+ }
1379
+ .fa-stumbleupon:before {
1380
+ content: "\f1a4";
1381
+ }
1382
+ .fa-delicious:before {
1383
+ content: "\f1a5";
1384
+ }
1385
+ .fa-digg:before {
1386
+ content: "\f1a6";
1387
+ }
1388
+ .fa-pied-piper-square:before,
1389
+ .fa-pied-piper:before {
1390
+ content: "\f1a7";
1391
+ }
1392
+ .fa-pied-piper-alt:before {
1393
+ content: "\f1a8";
1394
+ }
1395
+ .fa-drupal:before {
1396
+ content: "\f1a9";
1397
+ }
1398
+ .fa-joomla:before {
1399
+ content: "\f1aa";
1400
+ }
1401
+ .fa-language:before {
1402
+ content: "\f1ab";
1403
+ }
1404
+ .fa-fax:before {
1405
+ content: "\f1ac";
1406
+ }
1407
+ .fa-building:before {
1408
+ content: "\f1ad";
1409
+ }
1410
+ .fa-child:before {
1411
+ content: "\f1ae";
1412
+ }
1413
+ .fa-paw:before {
1414
+ content: "\f1b0";
1415
+ }
1416
+ .fa-spoon:before {
1417
+ content: "\f1b1";
1418
+ }
1419
+ .fa-cube:before {
1420
+ content: "\f1b2";
1421
+ }
1422
+ .fa-cubes:before {
1423
+ content: "\f1b3";
1424
+ }
1425
+ .fa-behance:before {
1426
+ content: "\f1b4";
1427
+ }
1428
+ .fa-behance-square:before {
1429
+ content: "\f1b5";
1430
+ }
1431
+ .fa-steam:before {
1432
+ content: "\f1b6";
1433
+ }
1434
+ .fa-steam-square:before {
1435
+ content: "\f1b7";
1436
+ }
1437
+ .fa-recycle:before {
1438
+ content: "\f1b8";
1439
+ }
1440
+ .fa-automobile:before,
1441
+ .fa-car:before {
1442
+ content: "\f1b9";
1443
+ }
1444
+ .fa-cab:before,
1445
+ .fa-taxi:before {
1446
+ content: "\f1ba";
1447
+ }
1448
+ .fa-tree:before {
1449
+ content: "\f1bb";
1450
+ }
1451
+ .fa-spotify:before {
1452
+ content: "\f1bc";
1453
+ }
1454
+ .fa-deviantart:before {
1455
+ content: "\f1bd";
1456
+ }
1457
+ .fa-soundcloud:before {
1458
+ content: "\f1be";
1459
+ }
1460
+ .fa-database:before {
1461
+ content: "\f1c0";
1462
+ }
1463
+ .fa-file-pdf-o:before {
1464
+ content: "\f1c1";
1465
+ }
1466
+ .fa-file-word-o:before {
1467
+ content: "\f1c2";
1468
+ }
1469
+ .fa-file-excel-o:before {
1470
+ content: "\f1c3";
1471
+ }
1472
+ .fa-file-powerpoint-o:before {
1473
+ content: "\f1c4";
1474
+ }
1475
+ .fa-file-photo-o:before,
1476
+ .fa-file-picture-o:before,
1477
+ .fa-file-image-o:before {
1478
+ content: "\f1c5";
1479
+ }
1480
+ .fa-file-zip-o:before,
1481
+ .fa-file-archive-o:before {
1482
+ content: "\f1c6";
1483
+ }
1484
+ .fa-file-sound-o:before,
1485
+ .fa-file-audio-o:before {
1486
+ content: "\f1c7";
1487
+ }
1488
+ .fa-file-movie-o:before,
1489
+ .fa-file-video-o:before {
1490
+ content: "\f1c8";
1491
+ }
1492
+ .fa-file-code-o:before {
1493
+ content: "\f1c9";
1494
+ }
1495
+ .fa-vine:before {
1496
+ content: "\f1ca";
1497
+ }
1498
+ .fa-codepen:before {
1499
+ content: "\f1cb";
1500
+ }
1501
+ .fa-jsfiddle:before {
1502
+ content: "\f1cc";
1503
+ }
1504
+ .fa-life-bouy:before,
1505
+ .fa-life-saver:before,
1506
+ .fa-support:before,
1507
+ .fa-life-ring:before {
1508
+ content: "\f1cd";
1509
+ }
1510
+ .fa-circle-o-notch:before {
1511
+ content: "\f1ce";
1512
+ }
1513
+ .fa-ra:before,
1514
+ .fa-rebel:before {
1515
+ content: "\f1d0";
1516
+ }
1517
+ .fa-ge:before,
1518
+ .fa-empire:before {
1519
+ content: "\f1d1";
1520
+ }
1521
+ .fa-git-square:before {
1522
+ content: "\f1d2";
1523
+ }
1524
+ .fa-git:before {
1525
+ content: "\f1d3";
1526
+ }
1527
+ .fa-hacker-news:before {
1528
+ content: "\f1d4";
1529
+ }
1530
+ .fa-tencent-weibo:before {
1531
+ content: "\f1d5";
1532
+ }
1533
+ .fa-qq:before {
1534
+ content: "\f1d6";
1535
+ }
1536
+ .fa-wechat:before,
1537
+ .fa-weixin:before {
1538
+ content: "\f1d7";
1539
+ }
1540
+ .fa-send:before,
1541
+ .fa-paper-plane:before {
1542
+ content: "\f1d8";
1543
+ }
1544
+ .fa-send-o:before,
1545
+ .fa-paper-plane-o:before {
1546
+ content: "\f1d9";
1547
+ }
1548
+ .fa-history:before {
1549
+ content: "\f1da";
1550
+ }
1551
+ .fa-circle-thin:before {
1552
+ content: "\f1db";
1553
+ }
1554
+ .fa-header:before {
1555
+ content: "\f1dc";
1556
+ }
1557
+ .fa-paragraph:before {
1558
+ content: "\f1dd";
1559
+ }
1560
+ .fa-sliders:before {
1561
+ content: "\f1de";
1562
+ }
1563
+ .fa-share-alt:before {
1564
+ content: "\f1e0";
1565
+ }
1566
+ .fa-share-alt-square:before {
1567
+ content: "\f1e1";
1568
+ }
1569
+ .fa-bomb:before {
1570
+ content: "\f1e2";
1571
+ }