jekyll-webmaps-simple-theme 0.1.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2108 @@
1
+ /*!
2
+ * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+
6
+ @font-face {
7
+ font-family: 'FontAwesome';
8
+ src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
9
+ src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format("embedded-opentype"), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format("woff"), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format("truetype"), url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format("svg");
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ }
13
+
14
+
15
+ .fa {
16
+ display: inline-block;
17
+ font: normal normal normal 14px/1 FontAwesome;
18
+ font-size: inherit;
19
+ text-rendering: auto;
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ }
23
+
24
+ .fa-lg {
25
+ font-size: 1.33333333em;
26
+ line-height: .75em;
27
+ vertical-align: -15%;
28
+ }
29
+
30
+ .fa-2x {
31
+ font-size: 2em;
32
+ }
33
+
34
+ .fa-3x {
35
+ font-size: 3em;
36
+ }
37
+
38
+ .fa-4x {
39
+ font-size: 4em;
40
+ }
41
+
42
+ .fa-5x {
43
+ font-size: 5em;
44
+ }
45
+
46
+ .fa-fw {
47
+ width: 1.28571429em;
48
+ text-align: center;
49
+ }
50
+
51
+ .fa-ul {
52
+ padding-left: 0;
53
+ margin-left: 2.14285714em;
54
+ list-style-type: none;
55
+ > li {
56
+ position: relative;
57
+ }
58
+ }
59
+
60
+ .fa-li {
61
+ position: absolute;
62
+ left: -2.14285714em;
63
+ width: 2.14285714em;
64
+ top: .14285714em;
65
+ text-align: center;
66
+ &.fa-lg {
67
+ left: -1.85714286em;
68
+ }
69
+ }
70
+
71
+ .fa-border {
72
+ padding: .2em .25em .15em;
73
+ border: solid .08em #eee;
74
+ border-radius: .1em;
75
+ }
76
+
77
+ .pull-right {
78
+ float: right;
79
+ }
80
+
81
+ .pull-left {
82
+ float: left;
83
+ }
84
+
85
+ .fa {
86
+ &.pull-left {
87
+ margin-right: .3em;
88
+ }
89
+ &.pull-right {
90
+ margin-left: .3em;
91
+ }
92
+ }
93
+
94
+ .fa-spin {
95
+ -webkit-animation: fa-spin 2s infinite linear;
96
+ animation: fa-spin 2s infinite linear;
97
+ }
98
+
99
+ @-webkit-keyframes fa-spin {
100
+ 0% {
101
+ -webkit-transform: rotate(0deg);
102
+ transform: rotate(0deg);
103
+ }
104
+
105
+ 100% {
106
+ -webkit-transform: rotate(359deg);
107
+ transform: rotate(359deg);
108
+ }
109
+ }
110
+
111
+
112
+ @keyframes fa-spin {
113
+ 0% {
114
+ -webkit-transform: rotate(0deg);
115
+ transform: rotate(0deg);
116
+ }
117
+
118
+ 100% {
119
+ -webkit-transform: rotate(359deg);
120
+ transform: rotate(359deg);
121
+ }
122
+ }
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, mirror=1);
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, mirror=1);
155
+ -webkit-transform: scale(1, -1);
156
+ -ms-transform: scale(1, -1);
157
+ transform: scale(1, -1);
158
+ }
159
+
160
+ :root {
161
+ .fa-rotate-90, .fa-rotate-180, .fa-rotate-270, .fa-flip-horizontal, .fa-flip-vertical {
162
+ filter: none;
163
+ }
164
+ }
165
+
166
+ .fa-stack {
167
+ position: relative;
168
+ display: inline-block;
169
+ width: 2em;
170
+ height: 2em;
171
+ line-height: 2em;
172
+ vertical-align: middle;
173
+ }
174
+
175
+ .fa-stack-1x, .fa-stack-2x {
176
+ position: absolute;
177
+ left: 0;
178
+ width: 100%;
179
+ text-align: center;
180
+ }
181
+
182
+ .fa-stack-1x {
183
+ line-height: inherit;
184
+ }
185
+
186
+ .fa-stack-2x {
187
+ font-size: 2em;
188
+ }
189
+
190
+ .fa-inverse {
191
+ color: #fff;
192
+ }
193
+
194
+ .fa-glass:before {
195
+ content: "\f000";
196
+ }
197
+
198
+ .fa-music:before {
199
+ content: "\f001";
200
+ }
201
+
202
+ .fa-search:before {
203
+ content: "\f002";
204
+ }
205
+
206
+ .fa-envelope-o:before {
207
+ content: "\f003";
208
+ }
209
+
210
+ .fa-heart:before {
211
+ content: "\f004";
212
+ }
213
+
214
+ .fa-star:before {
215
+ content: "\f005";
216
+ }
217
+
218
+ .fa-star-o:before {
219
+ content: "\f006";
220
+ }
221
+
222
+ .fa-user:before {
223
+ content: "\f007";
224
+ }
225
+
226
+ .fa-film:before {
227
+ content: "\f008";
228
+ }
229
+
230
+ .fa-th-large:before {
231
+ content: "\f009";
232
+ }
233
+
234
+ .fa-th:before {
235
+ content: "\f00a";
236
+ }
237
+
238
+ .fa-th-list:before {
239
+ content: "\f00b";
240
+ }
241
+
242
+ .fa-check:before {
243
+ content: "\f00c";
244
+ }
245
+
246
+ .fa-remove:before, .fa-close:before, .fa-times:before {
247
+ content: "\f00d";
248
+ }
249
+
250
+ .fa-search-plus:before {
251
+ content: "\f00e";
252
+ }
253
+
254
+ .fa-search-minus:before {
255
+ content: "\f010";
256
+ }
257
+
258
+ .fa-power-off:before {
259
+ content: "\f011";
260
+ }
261
+
262
+ .fa-signal:before {
263
+ content: "\f012";
264
+ }
265
+
266
+ .fa-gear:before, .fa-cog:before {
267
+ content: "\f013";
268
+ }
269
+
270
+ .fa-trash-o:before {
271
+ content: "\f014";
272
+ }
273
+
274
+ .fa-home:before {
275
+ content: "\f015";
276
+ }
277
+
278
+ .fa-file-o:before {
279
+ content: "\f016";
280
+ }
281
+
282
+ .fa-clock-o:before {
283
+ content: "\f017";
284
+ }
285
+
286
+ .fa-road:before {
287
+ content: "\f018";
288
+ }
289
+
290
+ .fa-download:before {
291
+ content: "\f019";
292
+ }
293
+
294
+ .fa-arrow-circle-o-down:before {
295
+ content: "\f01a";
296
+ }
297
+
298
+ .fa-arrow-circle-o-up:before {
299
+ content: "\f01b";
300
+ }
301
+
302
+ .fa-inbox:before {
303
+ content: "\f01c";
304
+ }
305
+
306
+ .fa-play-circle-o:before {
307
+ content: "\f01d";
308
+ }
309
+
310
+ .fa-rotate-right:before, .fa-repeat:before {
311
+ content: "\f01e";
312
+ }
313
+
314
+ .fa-refresh:before {
315
+ content: "\f021";
316
+ }
317
+
318
+ .fa-list-alt:before {
319
+ content: "\f022";
320
+ }
321
+
322
+ .fa-lock:before {
323
+ content: "\f023";
324
+ }
325
+
326
+ .fa-flag:before {
327
+ content: "\f024";
328
+ }
329
+
330
+ .fa-headphones:before {
331
+ content: "\f025";
332
+ }
333
+
334
+ .fa-volume-off:before {
335
+ content: "\f026";
336
+ }
337
+
338
+ .fa-volume-down:before {
339
+ content: "\f027";
340
+ }
341
+
342
+ .fa-volume-up:before {
343
+ content: "\f028";
344
+ }
345
+
346
+ .fa-qrcode:before {
347
+ content: "\f029";
348
+ }
349
+
350
+ .fa-barcode:before {
351
+ content: "\f02a";
352
+ }
353
+
354
+ .fa-tag:before {
355
+ content: "\f02b";
356
+ }
357
+
358
+ .fa-tags:before {
359
+ content: "\f02c";
360
+ }
361
+
362
+ .fa-book:before {
363
+ content: "\f02d";
364
+ }
365
+
366
+ .fa-bookmark:before {
367
+ content: "\f02e";
368
+ }
369
+
370
+ .fa-print:before {
371
+ content: "\f02f";
372
+ }
373
+
374
+ .fa-camera:before {
375
+ content: "\f030";
376
+ }
377
+
378
+ .fa-font:before {
379
+ content: "\f031";
380
+ }
381
+
382
+ .fa-bold:before {
383
+ content: "\f032";
384
+ }
385
+
386
+ .fa-italic:before {
387
+ content: "\f033";
388
+ }
389
+
390
+ .fa-text-height:before {
391
+ content: "\f034";
392
+ }
393
+
394
+ .fa-text-width:before {
395
+ content: "\f035";
396
+ }
397
+
398
+ .fa-align-left:before {
399
+ content: "\f036";
400
+ }
401
+
402
+ .fa-align-center:before {
403
+ content: "\f037";
404
+ }
405
+
406
+ .fa-align-right:before {
407
+ content: "\f038";
408
+ }
409
+
410
+ .fa-align-justify:before {
411
+ content: "\f039";
412
+ }
413
+
414
+ .fa-list:before {
415
+ content: "\f03a";
416
+ }
417
+
418
+ .fa-dedent:before, .fa-outdent:before {
419
+ content: "\f03b";
420
+ }
421
+
422
+ .fa-indent:before {
423
+ content: "\f03c";
424
+ }
425
+
426
+ .fa-video-camera:before {
427
+ content: "\f03d";
428
+ }
429
+
430
+ .fa-photo:before, .fa-image:before, .fa-picture-o:before {
431
+ content: "\f03e";
432
+ }
433
+
434
+ .fa-pencil:before {
435
+ content: "\f040";
436
+ }
437
+
438
+ .fa-map-marker:before {
439
+ content: "\f041";
440
+ }
441
+
442
+ .fa-adjust:before {
443
+ content: "\f042";
444
+ }
445
+
446
+ .fa-tint:before {
447
+ content: "\f043";
448
+ }
449
+
450
+ .fa-edit:before, .fa-pencil-square-o:before {
451
+ content: "\f044";
452
+ }
453
+
454
+ .fa-share-square-o:before {
455
+ content: "\f045";
456
+ }
457
+
458
+ .fa-check-square-o:before {
459
+ content: "\f046";
460
+ }
461
+
462
+ .fa-arrows:before {
463
+ content: "\f047";
464
+ }
465
+
466
+ .fa-step-backward:before {
467
+ content: "\f048";
468
+ }
469
+
470
+ .fa-fast-backward:before {
471
+ content: "\f049";
472
+ }
473
+
474
+ .fa-backward:before {
475
+ content: "\f04a";
476
+ }
477
+
478
+ .fa-play:before {
479
+ content: "\f04b";
480
+ }
481
+
482
+ .fa-pause:before {
483
+ content: "\f04c";
484
+ }
485
+
486
+ .fa-stop:before {
487
+ content: "\f04d";
488
+ }
489
+
490
+ .fa-forward:before {
491
+ content: "\f04e";
492
+ }
493
+
494
+ .fa-fast-forward:before {
495
+ content: "\f050";
496
+ }
497
+
498
+ .fa-step-forward:before {
499
+ content: "\f051";
500
+ }
501
+
502
+ .fa-eject:before {
503
+ content: "\f052";
504
+ }
505
+
506
+ .fa-chevron-left:before {
507
+ content: "\f053";
508
+ }
509
+
510
+ .fa-chevron-right:before {
511
+ content: "\f054";
512
+ }
513
+
514
+ .fa-plus-circle:before {
515
+ content: "\f055";
516
+ }
517
+
518
+ .fa-minus-circle:before {
519
+ content: "\f056";
520
+ }
521
+
522
+ .fa-times-circle:before {
523
+ content: "\f057";
524
+ }
525
+
526
+ .fa-check-circle:before {
527
+ content: "\f058";
528
+ }
529
+
530
+ .fa-question-circle:before {
531
+ content: "\f059";
532
+ }
533
+
534
+ .fa-info-circle:before {
535
+ content: "\f05a";
536
+ }
537
+
538
+ .fa-crosshairs:before {
539
+ content: "\f05b";
540
+ }
541
+
542
+ .fa-times-circle-o:before {
543
+ content: "\f05c";
544
+ }
545
+
546
+ .fa-check-circle-o:before {
547
+ content: "\f05d";
548
+ }
549
+
550
+ .fa-ban:before {
551
+ content: "\f05e";
552
+ }
553
+
554
+ .fa-arrow-left:before {
555
+ content: "\f060";
556
+ }
557
+
558
+ .fa-arrow-right:before {
559
+ content: "\f061";
560
+ }
561
+
562
+ .fa-arrow-up:before {
563
+ content: "\f062";
564
+ }
565
+
566
+ .fa-arrow-down:before {
567
+ content: "\f063";
568
+ }
569
+
570
+ .fa-mail-forward:before, .fa-share:before {
571
+ content: "\f064";
572
+ }
573
+
574
+ .fa-expand:before {
575
+ content: "\f065";
576
+ }
577
+
578
+ .fa-compress:before {
579
+ content: "\f066";
580
+ }
581
+
582
+ .fa-plus:before {
583
+ content: "\f067";
584
+ }
585
+
586
+ .fa-minus:before {
587
+ content: "\f068";
588
+ }
589
+
590
+ .fa-asterisk:before {
591
+ content: "\f069";
592
+ }
593
+
594
+ .fa-exclamation-circle:before {
595
+ content: "\f06a";
596
+ }
597
+
598
+ .fa-gift:before {
599
+ content: "\f06b";
600
+ }
601
+
602
+ .fa-leaf:before {
603
+ content: "\f06c";
604
+ }
605
+
606
+ .fa-fire:before {
607
+ content: "\f06d";
608
+ }
609
+
610
+ .fa-eye:before {
611
+ content: "\f06e";
612
+ }
613
+
614
+ .fa-eye-slash:before {
615
+ content: "\f070";
616
+ }
617
+
618
+ .fa-warning:before, .fa-exclamation-triangle:before {
619
+ content: "\f071";
620
+ }
621
+
622
+ .fa-plane:before {
623
+ content: "\f072";
624
+ }
625
+
626
+ .fa-calendar:before {
627
+ content: "\f073";
628
+ }
629
+
630
+ .fa-random:before {
631
+ content: "\f074";
632
+ }
633
+
634
+ .fa-comment:before {
635
+ content: "\f075";
636
+ }
637
+
638
+ .fa-magnet:before {
639
+ content: "\f076";
640
+ }
641
+
642
+ .fa-chevron-up:before {
643
+ content: "\f077";
644
+ }
645
+
646
+ .fa-chevron-down:before {
647
+ content: "\f078";
648
+ }
649
+
650
+ .fa-retweet:before {
651
+ content: "\f079";
652
+ }
653
+
654
+ .fa-shopping-cart:before {
655
+ content: "\f07a";
656
+ }
657
+
658
+ .fa-folder:before {
659
+ content: "\f07b";
660
+ }
661
+
662
+ .fa-folder-open:before {
663
+ content: "\f07c";
664
+ }
665
+
666
+ .fa-arrows-v:before {
667
+ content: "\f07d";
668
+ }
669
+
670
+ .fa-arrows-h:before {
671
+ content: "\f07e";
672
+ }
673
+
674
+ .fa-bar-chart-o:before, .fa-bar-chart:before {
675
+ content: "\f080";
676
+ }
677
+
678
+ .fa-twitter-square:before {
679
+ content: "\f081";
680
+ }
681
+
682
+ .fa-facebook-square:before {
683
+ content: "\f082";
684
+ }
685
+
686
+ .fa-camera-retro:before {
687
+ content: "\f083";
688
+ }
689
+
690
+ .fa-key:before {
691
+ content: "\f084";
692
+ }
693
+
694
+ .fa-gears:before, .fa-cogs:before {
695
+ content: "\f085";
696
+ }
697
+
698
+ .fa-comments:before {
699
+ content: "\f086";
700
+ }
701
+
702
+ .fa-thumbs-o-up:before {
703
+ content: "\f087";
704
+ }
705
+
706
+ .fa-thumbs-o-down:before {
707
+ content: "\f088";
708
+ }
709
+
710
+ .fa-star-half:before {
711
+ content: "\f089";
712
+ }
713
+
714
+ .fa-heart-o:before {
715
+ content: "\f08a";
716
+ }
717
+
718
+ .fa-sign-out:before {
719
+ content: "\f08b";
720
+ }
721
+
722
+ .fa-linkedin-square:before {
723
+ content: "\f08c";
724
+ }
725
+
726
+ .fa-thumb-tack:before {
727
+ content: "\f08d";
728
+ }
729
+
730
+ .fa-external-link:before {
731
+ content: "\f08e";
732
+ }
733
+
734
+ .fa-sign-in:before {
735
+ content: "\f090";
736
+ }
737
+
738
+ .fa-trophy:before {
739
+ content: "\f091";
740
+ }
741
+
742
+ .fa-github-square:before {
743
+ content: "\f092";
744
+ }
745
+
746
+ .fa-upload:before {
747
+ content: "\f093";
748
+ }
749
+
750
+ .fa-lemon-o:before {
751
+ content: "\f094";
752
+ }
753
+
754
+ .fa-phone:before {
755
+ content: "\f095";
756
+ }
757
+
758
+ .fa-square-o:before {
759
+ content: "\f096";
760
+ }
761
+
762
+ .fa-bookmark-o:before {
763
+ content: "\f097";
764
+ }
765
+
766
+ .fa-phone-square:before {
767
+ content: "\f098";
768
+ }
769
+
770
+ .fa-twitter:before {
771
+ content: "\f099";
772
+ }
773
+
774
+ .fa-facebook:before {
775
+ content: "\f09a";
776
+ }
777
+
778
+ .fa-github:before {
779
+ content: "\f09b";
780
+ }
781
+
782
+ .fa-unlock:before {
783
+ content: "\f09c";
784
+ }
785
+
786
+ .fa-credit-card:before {
787
+ content: "\f09d";
788
+ }
789
+
790
+ .fa-rss:before {
791
+ content: "\f09e";
792
+ }
793
+
794
+ .fa-hdd-o:before {
795
+ content: "\f0a0";
796
+ }
797
+
798
+ .fa-bullhorn:before {
799
+ content: "\f0a1";
800
+ }
801
+
802
+ .fa-bell:before {
803
+ content: "\f0f3";
804
+ }
805
+
806
+ .fa-certificate:before {
807
+ content: "\f0a3";
808
+ }
809
+
810
+ .fa-hand-o-right:before {
811
+ content: "\f0a4";
812
+ }
813
+
814
+ .fa-hand-o-left:before {
815
+ content: "\f0a5";
816
+ }
817
+
818
+ .fa-hand-o-up:before {
819
+ content: "\f0a6";
820
+ }
821
+
822
+ .fa-hand-o-down:before {
823
+ content: "\f0a7";
824
+ }
825
+
826
+ .fa-arrow-circle-left:before {
827
+ content: "\f0a8";
828
+ }
829
+
830
+ .fa-arrow-circle-right:before {
831
+ content: "\f0a9";
832
+ }
833
+
834
+ .fa-arrow-circle-up:before {
835
+ content: "\f0aa";
836
+ }
837
+
838
+ .fa-arrow-circle-down:before {
839
+ content: "\f0ab";
840
+ }
841
+
842
+ .fa-globe:before {
843
+ content: "\f0ac";
844
+ }
845
+
846
+ .fa-wrench:before {
847
+ content: "\f0ad";
848
+ }
849
+
850
+ .fa-tasks:before {
851
+ content: "\f0ae";
852
+ }
853
+
854
+ .fa-filter:before {
855
+ content: "\f0b0";
856
+ }
857
+
858
+ .fa-briefcase:before {
859
+ content: "\f0b1";
860
+ }
861
+
862
+ .fa-arrows-alt:before {
863
+ content: "\f0b2";
864
+ }
865
+
866
+ .fa-group:before, .fa-users:before {
867
+ content: "\f0c0";
868
+ }
869
+
870
+ .fa-chain:before, .fa-link:before {
871
+ content: "\f0c1";
872
+ }
873
+
874
+ .fa-cloud:before {
875
+ content: "\f0c2";
876
+ }
877
+
878
+ .fa-flask:before {
879
+ content: "\f0c3";
880
+ }
881
+
882
+ .fa-cut:before, .fa-scissors:before {
883
+ content: "\f0c4";
884
+ }
885
+
886
+ .fa-copy:before, .fa-files-o:before {
887
+ content: "\f0c5";
888
+ }
889
+
890
+ .fa-paperclip:before {
891
+ content: "\f0c6";
892
+ }
893
+
894
+ .fa-save:before, .fa-floppy-o:before {
895
+ content: "\f0c7";
896
+ }
897
+
898
+ .fa-square:before {
899
+ content: "\f0c8";
900
+ }
901
+
902
+ .fa-navicon:before, .fa-reorder:before, .fa-bars:before {
903
+ content: "\f0c9";
904
+ }
905
+
906
+ .fa-list-ul:before {
907
+ content: "\f0ca";
908
+ }
909
+
910
+ .fa-list-ol:before {
911
+ content: "\f0cb";
912
+ }
913
+
914
+ .fa-strikethrough:before {
915
+ content: "\f0cc";
916
+ }
917
+
918
+ .fa-underline:before {
919
+ content: "\f0cd";
920
+ }
921
+
922
+ .fa-table:before {
923
+ content: "\f0ce";
924
+ }
925
+
926
+ .fa-magic:before {
927
+ content: "\f0d0";
928
+ }
929
+
930
+ .fa-truck:before {
931
+ content: "\f0d1";
932
+ }
933
+
934
+ .fa-pinterest:before {
935
+ content: "\f0d2";
936
+ }
937
+
938
+ .fa-pinterest-square:before {
939
+ content: "\f0d3";
940
+ }
941
+
942
+ .fa-google-plus-square:before {
943
+ content: "\f0d4";
944
+ }
945
+
946
+ .fa-google-plus:before {
947
+ content: "\f0d5";
948
+ }
949
+
950
+ .fa-money:before {
951
+ content: "\f0d6";
952
+ }
953
+
954
+ .fa-caret-down:before {
955
+ content: "\f0d7";
956
+ }
957
+
958
+ .fa-caret-up:before {
959
+ content: "\f0d8";
960
+ }
961
+
962
+ .fa-caret-left:before {
963
+ content: "\f0d9";
964
+ }
965
+
966
+ .fa-caret-right:before {
967
+ content: "\f0da";
968
+ }
969
+
970
+ .fa-columns:before {
971
+ content: "\f0db";
972
+ }
973
+
974
+ .fa-unsorted:before, .fa-sort:before {
975
+ content: "\f0dc";
976
+ }
977
+
978
+ .fa-sort-down:before, .fa-sort-desc:before {
979
+ content: "\f0dd";
980
+ }
981
+
982
+ .fa-sort-up:before, .fa-sort-asc:before {
983
+ content: "\f0de";
984
+ }
985
+
986
+ .fa-envelope:before {
987
+ content: "\f0e0";
988
+ }
989
+
990
+ .fa-linkedin:before {
991
+ content: "\f0e1";
992
+ }
993
+
994
+ .fa-rotate-left:before, .fa-undo:before {
995
+ content: "\f0e2";
996
+ }
997
+
998
+ .fa-legal:before, .fa-gavel:before {
999
+ content: "\f0e3";
1000
+ }
1001
+
1002
+ .fa-dashboard:before, .fa-tachometer:before {
1003
+ content: "\f0e4";
1004
+ }
1005
+
1006
+ .fa-comment-o:before {
1007
+ content: "\f0e5";
1008
+ }
1009
+
1010
+ .fa-comments-o:before {
1011
+ content: "\f0e6";
1012
+ }
1013
+
1014
+ .fa-flash:before, .fa-bolt:before {
1015
+ content: "\f0e7";
1016
+ }
1017
+
1018
+ .fa-sitemap:before {
1019
+ content: "\f0e8";
1020
+ }
1021
+
1022
+ .fa-umbrella:before {
1023
+ content: "\f0e9";
1024
+ }
1025
+
1026
+ .fa-paste:before, .fa-clipboard:before {
1027
+ content: "\f0ea";
1028
+ }
1029
+
1030
+ .fa-lightbulb-o:before {
1031
+ content: "\f0eb";
1032
+ }
1033
+
1034
+ .fa-exchange:before {
1035
+ content: "\f0ec";
1036
+ }
1037
+
1038
+ .fa-cloud-download:before {
1039
+ content: "\f0ed";
1040
+ }
1041
+
1042
+ .fa-cloud-upload:before {
1043
+ content: "\f0ee";
1044
+ }
1045
+
1046
+ .fa-user-md:before {
1047
+ content: "\f0f0";
1048
+ }
1049
+
1050
+ .fa-stethoscope:before {
1051
+ content: "\f0f1";
1052
+ }
1053
+
1054
+ .fa-suitcase:before {
1055
+ content: "\f0f2";
1056
+ }
1057
+
1058
+ .fa-bell-o:before {
1059
+ content: "\f0a2";
1060
+ }
1061
+
1062
+ .fa-coffee:before {
1063
+ content: "\f0f4";
1064
+ }
1065
+
1066
+ .fa-cutlery:before {
1067
+ content: "\f0f5";
1068
+ }
1069
+
1070
+ .fa-file-text-o:before {
1071
+ content: "\f0f6";
1072
+ }
1073
+
1074
+ .fa-building-o:before {
1075
+ content: "\f0f7";
1076
+ }
1077
+
1078
+ .fa-hospital-o:before {
1079
+ content: "\f0f8";
1080
+ }
1081
+
1082
+ .fa-ambulance:before {
1083
+ content: "\f0f9";
1084
+ }
1085
+
1086
+ .fa-medkit:before {
1087
+ content: "\f0fa";
1088
+ }
1089
+
1090
+ .fa-fighter-jet:before {
1091
+ content: "\f0fb";
1092
+ }
1093
+
1094
+ .fa-beer:before {
1095
+ content: "\f0fc";
1096
+ }
1097
+
1098
+ .fa-h-square:before {
1099
+ content: "\f0fd";
1100
+ }
1101
+
1102
+ .fa-plus-square:before {
1103
+ content: "\f0fe";
1104
+ }
1105
+
1106
+ .fa-angle-double-left:before {
1107
+ content: "\f100";
1108
+ }
1109
+
1110
+ .fa-angle-double-right:before {
1111
+ content: "\f101";
1112
+ }
1113
+
1114
+ .fa-angle-double-up:before {
1115
+ content: "\f102";
1116
+ }
1117
+
1118
+ .fa-angle-double-down:before {
1119
+ content: "\f103";
1120
+ }
1121
+
1122
+ .fa-angle-left:before {
1123
+ content: "\f104";
1124
+ }
1125
+
1126
+ .fa-angle-right:before {
1127
+ content: "\f105";
1128
+ }
1129
+
1130
+ .fa-angle-up:before {
1131
+ content: "\f106";
1132
+ }
1133
+
1134
+ .fa-angle-down:before {
1135
+ content: "\f107";
1136
+ }
1137
+
1138
+ .fa-desktop:before {
1139
+ content: "\f108";
1140
+ }
1141
+
1142
+ .fa-laptop:before {
1143
+ content: "\f109";
1144
+ }
1145
+
1146
+ .fa-tablet:before {
1147
+ content: "\f10a";
1148
+ }
1149
+
1150
+ .fa-mobile-phone:before, .fa-mobile:before {
1151
+ content: "\f10b";
1152
+ }
1153
+
1154
+ .fa-circle-o:before {
1155
+ content: "\f10c";
1156
+ }
1157
+
1158
+ .fa-quote-left:before {
1159
+ content: "\f10d";
1160
+ }
1161
+
1162
+ .fa-quote-right:before {
1163
+ content: "\f10e";
1164
+ }
1165
+
1166
+ .fa-spinner:before {
1167
+ content: "\f110";
1168
+ }
1169
+
1170
+ .fa-circle:before {
1171
+ content: "\f111";
1172
+ }
1173
+
1174
+ .fa-mail-reply:before, .fa-reply:before {
1175
+ content: "\f112";
1176
+ }
1177
+
1178
+ .fa-github-alt:before {
1179
+ content: "\f113";
1180
+ }
1181
+
1182
+ .fa-folder-o:before {
1183
+ content: "\f114";
1184
+ }
1185
+
1186
+ .fa-folder-open-o:before {
1187
+ content: "\f115";
1188
+ }
1189
+
1190
+ .fa-smile-o:before {
1191
+ content: "\f118";
1192
+ }
1193
+
1194
+ .fa-frown-o:before {
1195
+ content: "\f119";
1196
+ }
1197
+
1198
+ .fa-meh-o:before {
1199
+ content: "\f11a";
1200
+ }
1201
+
1202
+ .fa-gamepad:before {
1203
+ content: "\f11b";
1204
+ }
1205
+
1206
+ .fa-keyboard-o:before {
1207
+ content: "\f11c";
1208
+ }
1209
+
1210
+ .fa-flag-o:before {
1211
+ content: "\f11d";
1212
+ }
1213
+
1214
+ .fa-flag-checkered:before {
1215
+ content: "\f11e";
1216
+ }
1217
+
1218
+ .fa-terminal:before {
1219
+ content: "\f120";
1220
+ }
1221
+
1222
+ .fa-code:before {
1223
+ content: "\f121";
1224
+ }
1225
+
1226
+ .fa-mail-reply-all:before, .fa-reply-all:before {
1227
+ content: "\f122";
1228
+ }
1229
+
1230
+ .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
1231
+ content: "\f123";
1232
+ }
1233
+
1234
+ .fa-location-arrow:before {
1235
+ content: "\f124";
1236
+ }
1237
+
1238
+ .fa-crop:before {
1239
+ content: "\f125";
1240
+ }
1241
+
1242
+ .fa-code-fork:before {
1243
+ content: "\f126";
1244
+ }
1245
+
1246
+ .fa-unlink:before, .fa-chain-broken:before {
1247
+ content: "\f127";
1248
+ }
1249
+
1250
+ .fa-question:before {
1251
+ content: "\f128";
1252
+ }
1253
+
1254
+ .fa-info:before {
1255
+ content: "\f129";
1256
+ }
1257
+
1258
+ .fa-exclamation:before {
1259
+ content: "\f12a";
1260
+ }
1261
+
1262
+ .fa-superscript:before {
1263
+ content: "\f12b";
1264
+ }
1265
+
1266
+ .fa-subscript:before {
1267
+ content: "\f12c";
1268
+ }
1269
+
1270
+ .fa-eraser:before {
1271
+ content: "\f12d";
1272
+ }
1273
+
1274
+ .fa-puzzle-piece:before {
1275
+ content: "\f12e";
1276
+ }
1277
+
1278
+ .fa-microphone:before {
1279
+ content: "\f130";
1280
+ }
1281
+
1282
+ .fa-microphone-slash:before {
1283
+ content: "\f131";
1284
+ }
1285
+
1286
+ .fa-shield:before {
1287
+ content: "\f132";
1288
+ }
1289
+
1290
+ .fa-calendar-o:before {
1291
+ content: "\f133";
1292
+ }
1293
+
1294
+ .fa-fire-extinguisher:before {
1295
+ content: "\f134";
1296
+ }
1297
+
1298
+ .fa-rocket:before {
1299
+ content: "\f135";
1300
+ }
1301
+
1302
+ .fa-maxcdn:before {
1303
+ content: "\f136";
1304
+ }
1305
+
1306
+ .fa-chevron-circle-left:before {
1307
+ content: "\f137";
1308
+ }
1309
+
1310
+ .fa-chevron-circle-right:before {
1311
+ content: "\f138";
1312
+ }
1313
+
1314
+ .fa-chevron-circle-up:before {
1315
+ content: "\f139";
1316
+ }
1317
+
1318
+ .fa-chevron-circle-down:before {
1319
+ content: "\f13a";
1320
+ }
1321
+
1322
+ .fa-html5:before {
1323
+ content: "\f13b";
1324
+ }
1325
+
1326
+ .fa-css3:before {
1327
+ content: "\f13c";
1328
+ }
1329
+
1330
+ .fa-anchor:before {
1331
+ content: "\f13d";
1332
+ }
1333
+
1334
+ .fa-unlock-alt:before {
1335
+ content: "\f13e";
1336
+ }
1337
+
1338
+ .fa-bullseye:before {
1339
+ content: "\f140";
1340
+ }
1341
+
1342
+ .fa-ellipsis-h:before {
1343
+ content: "\f141";
1344
+ }
1345
+
1346
+ .fa-ellipsis-v:before {
1347
+ content: "\f142";
1348
+ }
1349
+
1350
+ .fa-rss-square:before {
1351
+ content: "\f143";
1352
+ }
1353
+
1354
+ .fa-play-circle:before {
1355
+ content: "\f144";
1356
+ }
1357
+
1358
+ .fa-ticket:before {
1359
+ content: "\f145";
1360
+ }
1361
+
1362
+ .fa-minus-square:before {
1363
+ content: "\f146";
1364
+ }
1365
+
1366
+ .fa-minus-square-o:before {
1367
+ content: "\f147";
1368
+ }
1369
+
1370
+ .fa-level-up:before {
1371
+ content: "\f148";
1372
+ }
1373
+
1374
+ .fa-level-down:before {
1375
+ content: "\f149";
1376
+ }
1377
+
1378
+ .fa-check-square:before {
1379
+ content: "\f14a";
1380
+ }
1381
+
1382
+ .fa-pencil-square:before {
1383
+ content: "\f14b";
1384
+ }
1385
+
1386
+ .fa-external-link-square:before {
1387
+ content: "\f14c";
1388
+ }
1389
+
1390
+ .fa-share-square:before {
1391
+ content: "\f14d";
1392
+ }
1393
+
1394
+ .fa-compass:before {
1395
+ content: "\f14e";
1396
+ }
1397
+
1398
+ .fa-toggle-down:before, .fa-caret-square-o-down:before {
1399
+ content: "\f150";
1400
+ }
1401
+
1402
+ .fa-toggle-up:before, .fa-caret-square-o-up:before {
1403
+ content: "\f151";
1404
+ }
1405
+
1406
+ .fa-toggle-right:before, .fa-caret-square-o-right:before {
1407
+ content: "\f152";
1408
+ }
1409
+
1410
+ .fa-euro:before, .fa-eur:before {
1411
+ content: "\f153";
1412
+ }
1413
+
1414
+ .fa-gbp:before {
1415
+ content: "\f154";
1416
+ }
1417
+
1418
+ .fa-dollar:before, .fa-usd:before {
1419
+ content: "\f155";
1420
+ }
1421
+
1422
+ .fa-rupee:before, .fa-inr:before {
1423
+ content: "\f156";
1424
+ }
1425
+
1426
+ .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
1427
+ content: "\f157";
1428
+ }
1429
+
1430
+ .fa-ruble:before, .fa-rouble:before, .fa-rub:before {
1431
+ content: "\f158";
1432
+ }
1433
+
1434
+ .fa-won:before, .fa-krw:before {
1435
+ content: "\f159";
1436
+ }
1437
+
1438
+ .fa-bitcoin:before, .fa-btc:before {
1439
+ content: "\f15a";
1440
+ }
1441
+
1442
+ .fa-file:before {
1443
+ content: "\f15b";
1444
+ }
1445
+
1446
+ .fa-file-text:before {
1447
+ content: "\f15c";
1448
+ }
1449
+
1450
+ .fa-sort-alpha-asc:before {
1451
+ content: "\f15d";
1452
+ }
1453
+
1454
+ .fa-sort-alpha-desc:before {
1455
+ content: "\f15e";
1456
+ }
1457
+
1458
+ .fa-sort-amount-asc:before {
1459
+ content: "\f160";
1460
+ }
1461
+
1462
+ .fa-sort-amount-desc:before {
1463
+ content: "\f161";
1464
+ }
1465
+
1466
+ .fa-sort-numeric-asc:before {
1467
+ content: "\f162";
1468
+ }
1469
+
1470
+ .fa-sort-numeric-desc:before {
1471
+ content: "\f163";
1472
+ }
1473
+
1474
+ .fa-thumbs-up:before {
1475
+ content: "\f164";
1476
+ }
1477
+
1478
+ .fa-thumbs-down:before {
1479
+ content: "\f165";
1480
+ }
1481
+
1482
+ .fa-youtube-square:before {
1483
+ content: "\f166";
1484
+ }
1485
+
1486
+ .fa-youtube:before {
1487
+ content: "\f167";
1488
+ }
1489
+
1490
+ .fa-xing:before {
1491
+ content: "\f168";
1492
+ }
1493
+
1494
+ .fa-xing-square:before {
1495
+ content: "\f169";
1496
+ }
1497
+
1498
+ .fa-youtube-play:before {
1499
+ content: "\f16a";
1500
+ }
1501
+
1502
+ .fa-dropbox:before {
1503
+ content: "\f16b";
1504
+ }
1505
+
1506
+ .fa-stack-overflow:before {
1507
+ content: "\f16c";
1508
+ }
1509
+
1510
+ .fa-instagram:before {
1511
+ content: "\f16d";
1512
+ }
1513
+
1514
+ .fa-flickr:before {
1515
+ content: "\f16e";
1516
+ }
1517
+
1518
+ .fa-adn:before {
1519
+ content: "\f170";
1520
+ }
1521
+
1522
+ .fa-bitbucket:before {
1523
+ content: "\f171";
1524
+ }
1525
+
1526
+ .fa-bitbucket-square:before {
1527
+ content: "\f172";
1528
+ }
1529
+
1530
+ .fa-tumblr:before {
1531
+ content: "\f173";
1532
+ }
1533
+
1534
+ .fa-tumblr-square:before {
1535
+ content: "\f174";
1536
+ }
1537
+
1538
+ .fa-long-arrow-down:before {
1539
+ content: "\f175";
1540
+ }
1541
+
1542
+ .fa-long-arrow-up:before {
1543
+ content: "\f176";
1544
+ }
1545
+
1546
+ .fa-long-arrow-left:before {
1547
+ content: "\f177";
1548
+ }
1549
+
1550
+ .fa-long-arrow-right:before {
1551
+ content: "\f178";
1552
+ }
1553
+
1554
+ .fa-apple:before {
1555
+ content: "\f179";
1556
+ }
1557
+
1558
+ .fa-windows:before {
1559
+ content: "\f17a";
1560
+ }
1561
+
1562
+ .fa-android:before {
1563
+ content: "\f17b";
1564
+ }
1565
+
1566
+ .fa-linux:before {
1567
+ content: "\f17c";
1568
+ }
1569
+
1570
+ .fa-dribbble:before {
1571
+ content: "\f17d";
1572
+ }
1573
+
1574
+ .fa-skype:before {
1575
+ content: "\f17e";
1576
+ }
1577
+
1578
+ .fa-foursquare:before {
1579
+ content: "\f180";
1580
+ }
1581
+
1582
+ .fa-trello:before {
1583
+ content: "\f181";
1584
+ }
1585
+
1586
+ .fa-female:before {
1587
+ content: "\f182";
1588
+ }
1589
+
1590
+ .fa-male:before {
1591
+ content: "\f183";
1592
+ }
1593
+
1594
+ .fa-gittip:before {
1595
+ content: "\f184";
1596
+ }
1597
+
1598
+ .fa-sun-o:before {
1599
+ content: "\f185";
1600
+ }
1601
+
1602
+ .fa-moon-o:before {
1603
+ content: "\f186";
1604
+ }
1605
+
1606
+ .fa-archive:before {
1607
+ content: "\f187";
1608
+ }
1609
+
1610
+ .fa-bug:before {
1611
+ content: "\f188";
1612
+ }
1613
+
1614
+ .fa-vk:before {
1615
+ content: "\f189";
1616
+ }
1617
+
1618
+ .fa-weibo:before {
1619
+ content: "\f18a";
1620
+ }
1621
+
1622
+ .fa-renren:before {
1623
+ content: "\f18b";
1624
+ }
1625
+
1626
+ .fa-pagelines:before {
1627
+ content: "\f18c";
1628
+ }
1629
+
1630
+ .fa-stack-exchange:before {
1631
+ content: "\f18d";
1632
+ }
1633
+
1634
+ .fa-arrow-circle-o-right:before {
1635
+ content: "\f18e";
1636
+ }
1637
+
1638
+ .fa-arrow-circle-o-left:before {
1639
+ content: "\f190";
1640
+ }
1641
+
1642
+ .fa-toggle-left:before, .fa-caret-square-o-left:before {
1643
+ content: "\f191";
1644
+ }
1645
+
1646
+ .fa-dot-circle-o:before {
1647
+ content: "\f192";
1648
+ }
1649
+
1650
+ .fa-wheelchair:before {
1651
+ content: "\f193";
1652
+ }
1653
+
1654
+ .fa-vimeo-square:before {
1655
+ content: "\f194";
1656
+ }
1657
+
1658
+ .fa-turkish-lira:before, .fa-try:before {
1659
+ content: "\f195";
1660
+ }
1661
+
1662
+ .fa-plus-square-o:before {
1663
+ content: "\f196";
1664
+ }
1665
+
1666
+ .fa-space-shuttle:before {
1667
+ content: "\f197";
1668
+ }
1669
+
1670
+ .fa-slack:before {
1671
+ content: "\f198";
1672
+ }
1673
+
1674
+ .fa-envelope-square:before {
1675
+ content: "\f199";
1676
+ }
1677
+
1678
+ .fa-wordpress:before {
1679
+ content: "\f19a";
1680
+ }
1681
+
1682
+ .fa-openid:before {
1683
+ content: "\f19b";
1684
+ }
1685
+
1686
+ .fa-institution:before, .fa-bank:before, .fa-university:before {
1687
+ content: "\f19c";
1688
+ }
1689
+
1690
+ .fa-mortar-board:before, .fa-graduation-cap:before {
1691
+ content: "\f19d";
1692
+ }
1693
+
1694
+ .fa-yahoo:before {
1695
+ content: "\f19e";
1696
+ }
1697
+
1698
+ .fa-google:before {
1699
+ content: "\f1a0";
1700
+ }
1701
+
1702
+ .fa-reddit:before {
1703
+ content: "\f1a1";
1704
+ }
1705
+
1706
+ .fa-reddit-square:before {
1707
+ content: "\f1a2";
1708
+ }
1709
+
1710
+ .fa-stumbleupon-circle:before {
1711
+ content: "\f1a3";
1712
+ }
1713
+
1714
+ .fa-stumbleupon:before {
1715
+ content: "\f1a4";
1716
+ }
1717
+
1718
+ .fa-delicious:before {
1719
+ content: "\f1a5";
1720
+ }
1721
+
1722
+ .fa-digg:before {
1723
+ content: "\f1a6";
1724
+ }
1725
+
1726
+ .fa-pied-piper:before {
1727
+ content: "\f1a7";
1728
+ }
1729
+
1730
+ .fa-pied-piper-alt:before {
1731
+ content: "\f1a8";
1732
+ }
1733
+
1734
+ .fa-drupal:before {
1735
+ content: "\f1a9";
1736
+ }
1737
+
1738
+ .fa-joomla:before {
1739
+ content: "\f1aa";
1740
+ }
1741
+
1742
+ .fa-language:before {
1743
+ content: "\f1ab";
1744
+ }
1745
+
1746
+ .fa-fax:before {
1747
+ content: "\f1ac";
1748
+ }
1749
+
1750
+ .fa-building:before {
1751
+ content: "\f1ad";
1752
+ }
1753
+
1754
+ .fa-child:before {
1755
+ content: "\f1ae";
1756
+ }
1757
+
1758
+ .fa-paw:before {
1759
+ content: "\f1b0";
1760
+ }
1761
+
1762
+ .fa-spoon:before {
1763
+ content: "\f1b1";
1764
+ }
1765
+
1766
+ .fa-cube:before {
1767
+ content: "\f1b2";
1768
+ }
1769
+
1770
+ .fa-cubes:before {
1771
+ content: "\f1b3";
1772
+ }
1773
+
1774
+ .fa-behance:before {
1775
+ content: "\f1b4";
1776
+ }
1777
+
1778
+ .fa-behance-square:before {
1779
+ content: "\f1b5";
1780
+ }
1781
+
1782
+ .fa-steam:before {
1783
+ content: "\f1b6";
1784
+ }
1785
+
1786
+ .fa-steam-square:before {
1787
+ content: "\f1b7";
1788
+ }
1789
+
1790
+ .fa-recycle:before {
1791
+ content: "\f1b8";
1792
+ }
1793
+
1794
+ .fa-automobile:before, .fa-car:before {
1795
+ content: "\f1b9";
1796
+ }
1797
+
1798
+ .fa-cab:before, .fa-taxi:before {
1799
+ content: "\f1ba";
1800
+ }
1801
+
1802
+ .fa-tree:before {
1803
+ content: "\f1bb";
1804
+ }
1805
+
1806
+ .fa-spotify:before {
1807
+ content: "\f1bc";
1808
+ }
1809
+
1810
+ .fa-deviantart:before {
1811
+ content: "\f1bd";
1812
+ }
1813
+
1814
+ .fa-soundcloud:before {
1815
+ content: "\f1be";
1816
+ }
1817
+
1818
+ .fa-database:before {
1819
+ content: "\f1c0";
1820
+ }
1821
+
1822
+ .fa-file-pdf-o:before {
1823
+ content: "\f1c1";
1824
+ }
1825
+
1826
+ .fa-file-word-o:before {
1827
+ content: "\f1c2";
1828
+ }
1829
+
1830
+ .fa-file-excel-o:before {
1831
+ content: "\f1c3";
1832
+ }
1833
+
1834
+ .fa-file-powerpoint-o:before {
1835
+ content: "\f1c4";
1836
+ }
1837
+
1838
+ .fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
1839
+ content: "\f1c5";
1840
+ }
1841
+
1842
+ .fa-file-zip-o:before, .fa-file-archive-o:before {
1843
+ content: "\f1c6";
1844
+ }
1845
+
1846
+ .fa-file-sound-o:before, .fa-file-audio-o:before {
1847
+ content: "\f1c7";
1848
+ }
1849
+
1850
+ .fa-file-movie-o:before, .fa-file-video-o:before {
1851
+ content: "\f1c8";
1852
+ }
1853
+
1854
+ .fa-file-code-o:before {
1855
+ content: "\f1c9";
1856
+ }
1857
+
1858
+ .fa-vine:before {
1859
+ content: "\f1ca";
1860
+ }
1861
+
1862
+ .fa-codepen:before {
1863
+ content: "\f1cb";
1864
+ }
1865
+
1866
+ .fa-jsfiddle:before {
1867
+ content: "\f1cc";
1868
+ }
1869
+
1870
+ .fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
1871
+ content: "\f1cd";
1872
+ }
1873
+
1874
+ .fa-circle-o-notch:before {
1875
+ content: "\f1ce";
1876
+ }
1877
+
1878
+ .fa-ra:before, .fa-rebel:before {
1879
+ content: "\f1d0";
1880
+ }
1881
+
1882
+ .fa-ge:before, .fa-empire:before {
1883
+ content: "\f1d1";
1884
+ }
1885
+
1886
+ .fa-git-square:before {
1887
+ content: "\f1d2";
1888
+ }
1889
+
1890
+ .fa-git:before {
1891
+ content: "\f1d3";
1892
+ }
1893
+
1894
+ .fa-hacker-news:before {
1895
+ content: "\f1d4";
1896
+ }
1897
+
1898
+ .fa-tencent-weibo:before {
1899
+ content: "\f1d5";
1900
+ }
1901
+
1902
+ .fa-qq:before {
1903
+ content: "\f1d6";
1904
+ }
1905
+
1906
+ .fa-wechat:before, .fa-weixin:before {
1907
+ content: "\f1d7";
1908
+ }
1909
+
1910
+ .fa-send:before, .fa-paper-plane:before {
1911
+ content: "\f1d8";
1912
+ }
1913
+
1914
+ .fa-send-o:before, .fa-paper-plane-o:before {
1915
+ content: "\f1d9";
1916
+ }
1917
+
1918
+ .fa-history:before {
1919
+ content: "\f1da";
1920
+ }
1921
+
1922
+ .fa-circle-thin:before {
1923
+ content: "\f1db";
1924
+ }
1925
+
1926
+ .fa-header:before {
1927
+ content: "\f1dc";
1928
+ }
1929
+
1930
+ .fa-paragraph:before {
1931
+ content: "\f1dd";
1932
+ }
1933
+
1934
+ .fa-sliders:before {
1935
+ content: "\f1de";
1936
+ }
1937
+
1938
+ .fa-share-alt:before {
1939
+ content: "\f1e0";
1940
+ }
1941
+
1942
+ .fa-share-alt-square:before {
1943
+ content: "\f1e1";
1944
+ }
1945
+
1946
+ .fa-bomb:before {
1947
+ content: "\f1e2";
1948
+ }
1949
+
1950
+ .fa-soccer-ball-o:before, .fa-futbol-o:before {
1951
+ content: "\f1e3";
1952
+ }
1953
+
1954
+ .fa-tty:before {
1955
+ content: "\f1e4";
1956
+ }
1957
+
1958
+ .fa-binoculars:before {
1959
+ content: "\f1e5";
1960
+ }
1961
+
1962
+ .fa-plug:before {
1963
+ content: "\f1e6";
1964
+ }
1965
+
1966
+ .fa-slideshare:before {
1967
+ content: "\f1e7";
1968
+ }
1969
+
1970
+ .fa-twitch:before {
1971
+ content: "\f1e8";
1972
+ }
1973
+
1974
+ .fa-yelp:before {
1975
+ content: "\f1e9";
1976
+ }
1977
+
1978
+ .fa-newspaper-o:before {
1979
+ content: "\f1ea";
1980
+ }
1981
+
1982
+ .fa-wifi:before {
1983
+ content: "\f1eb";
1984
+ }
1985
+
1986
+ .fa-calculator:before {
1987
+ content: "\f1ec";
1988
+ }
1989
+
1990
+ .fa-paypal:before {
1991
+ content: "\f1ed";
1992
+ }
1993
+
1994
+ .fa-google-wallet:before {
1995
+ content: "\f1ee";
1996
+ }
1997
+
1998
+ .fa-cc-visa:before {
1999
+ content: "\f1f0";
2000
+ }
2001
+
2002
+ .fa-cc-mastercard:before {
2003
+ content: "\f1f1";
2004
+ }
2005
+
2006
+ .fa-cc-discover:before {
2007
+ content: "\f1f2";
2008
+ }
2009
+
2010
+ .fa-cc-amex:before {
2011
+ content: "\f1f3";
2012
+ }
2013
+
2014
+ .fa-cc-paypal:before {
2015
+ content: "\f1f4";
2016
+ }
2017
+
2018
+ .fa-cc-stripe:before {
2019
+ content: "\f1f5";
2020
+ }
2021
+
2022
+ .fa-bell-slash:before {
2023
+ content: "\f1f6";
2024
+ }
2025
+
2026
+ .fa-bell-slash-o:before {
2027
+ content: "\f1f7";
2028
+ }
2029
+
2030
+ .fa-trash:before {
2031
+ content: "\f1f8";
2032
+ }
2033
+
2034
+ .fa-copyright:before {
2035
+ content: "\f1f9";
2036
+ }
2037
+
2038
+ .fa-at:before {
2039
+ content: "\f1fa";
2040
+ }
2041
+
2042
+ .fa-eyedropper:before {
2043
+ content: "\f1fb";
2044
+ }
2045
+
2046
+ .fa-paint-brush:before {
2047
+ content: "\f1fc";
2048
+ }
2049
+
2050
+ .fa-birthday-cake:before {
2051
+ content: "\f1fd";
2052
+ }
2053
+
2054
+ .fa-area-chart:before {
2055
+ content: "\f1fe";
2056
+ }
2057
+
2058
+ .fa-pie-chart:before {
2059
+ content: "\f200";
2060
+ }
2061
+
2062
+ .fa-line-chart:before {
2063
+ content: "\f201";
2064
+ }
2065
+
2066
+ .fa-lastfm:before {
2067
+ content: "\f202";
2068
+ }
2069
+
2070
+ .fa-lastfm-square:before {
2071
+ content: "\f203";
2072
+ }
2073
+
2074
+ .fa-toggle-off:before {
2075
+ content: "\f204";
2076
+ }
2077
+
2078
+ .fa-toggle-on:before {
2079
+ content: "\f205";
2080
+ }
2081
+
2082
+ .fa-bicycle:before {
2083
+ content: "\f206";
2084
+ }
2085
+
2086
+ .fa-bus:before {
2087
+ content: "\f207";
2088
+ }
2089
+
2090
+ .fa-ioxhost:before {
2091
+ content: "\f208";
2092
+ }
2093
+
2094
+ .fa-angellist:before {
2095
+ content: "\f209";
2096
+ }
2097
+
2098
+ .fa-cc:before {
2099
+ content: "\f20a";
2100
+ }
2101
+
2102
+ .fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
2103
+ content: "\f20b";
2104
+ }
2105
+
2106
+ .fa-meanpath:before {
2107
+ content: "\f20c";
2108
+ }