-
Notifications
You must be signed in to change notification settings - Fork 0
/
fonts.css
2227 lines (2213 loc) · 129 KB
/
fonts.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@font-face {
font-family: 'Lato-Medium';
src: url('../fonts/lato-medium.eot');
src: url('../fonts/lato-medium.woff') format('woff'),
url('../fonts/lato-medium.ttf') format('truetype'),
url('../fonts/lato-medium.svg') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'fontello';
src: url('../fonts/fontello.eot');
src: url('../fonts/fontello.eot') format('embedded-opentype'),
url('../fonts/fontello.woff2') format('woff2'),
url('../fonts/fontello.woff') format('woff'),
url('../fonts/fontello.ttf') format('truetype'),
url('../fonts/fontello.svg') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'fontello';
src: url('../fonts/fontello.svg') format('svg');
}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "fontello";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-glass:before { content: '\e800'; } /* 'î €' */
.icon-music:before { content: '\e801'; } /* 'î ' */
.icon-search:before { content: '\e802'; } /* 'î ‚' */
.icon-mail:before { content: '\e803'; } /* 'î ƒ' */
.icon-mail-alt:before { content: '\e804'; } /* 'î „' */
.icon-mail-squared:before { content: '\e805'; } /* 'î …' */
.icon-heart:before { content: '\e806'; } /* 'î †' */
.icon-heart-empty:before { content: '\e807'; } /* 'î ‡' */
.icon-star:before { content: '\e808'; } /* 'î ˆ' */
.icon-star-empty:before { content: '\e809'; } /* 'î ‰' */
.icon-star-half:before { content: '\e80a'; } /* 'î Š' */
.icon-star-half-alt:before { content: '\e80b'; } /* 'î ‹' */
.icon-user:before { content: '\e80c'; } /* 'î Œ' */
.icon-user-plus:before { content: '\e80d'; } /* 'î ' */
.icon-user-times:before { content: '\e80e'; } /* 'î Ž' */
.icon-users:before { content: '\e80f'; } /* 'î ' */
.icon-male:before { content: '\e810'; } /* 'î ' */
.icon-female:before { content: '\e811'; } /* 'î ‘' */
.icon-child:before { content: '\e812'; } /* 'î ’' */
.icon-user-secret:before { content: '\e813'; } /* 'î “' */
.icon-video:before { content: '\e814'; } /* 'î ”' */
.icon-videocam:before { content: '\e815'; } /* 'î •' */
.icon-picture:before { content: '\e816'; } /* 'î –' */
.icon-camera:before { content: '\e817'; } /* 'î —' */
.icon-camera-alt:before { content: '\e818'; } /* 'î ˜' */
.icon-th-large:before { content: '\e819'; } /* 'î ™' */
.icon-th:before { content: '\e81a'; } /* 'î š' */
.icon-th-list:before { content: '\e81b'; } /* 'î ›' */
.icon-ok:before { content: '\e81c'; } /* 'î œ' */
.icon-ok-circled:before { content: '\e81d'; } /* 'î ' */
.icon-ok-circled2:before { content: '\e81e'; } /* 'î ž' */
.icon-ok-squared:before { content: '\e81f'; } /* 'î Ÿ' */
.icon-cancel:before { content: '\e820'; } /* 'î ' */
.icon-cancel-circled:before { content: '\e821'; } /* 'î ¡' */
.icon-cancel-circled2:before { content: '\e822'; } /* 'î ¢' */
.icon-plus:before { content: '\e823'; } /* 'î £' */
.icon-plus-circled:before { content: '\e824'; } /* 'î ¤' */
.icon-plus-squared:before { content: '\e825'; } /* 'î ¥' */
.icon-plus-squared-alt:before { content: '\e826'; } /* 'î ¦' */
.icon-minus:before { content: '\e827'; } /* 'î §' */
.icon-minus-circled:before { content: '\e828'; } /* 'î ¨' */
.icon-minus-squared:before { content: '\e829'; } /* 'î ©' */
.icon-minus-squared-alt:before { content: '\e82a'; } /* 'î ª' */
.icon-help:before { content: '\e82b'; } /* 'î «' */
.icon-help-circled:before { content: '\e82c'; } /* 'î ¬' */
.icon-info-circled:before { content: '\e82d'; } /* 'î ' */
.icon-info:before { content: '\e82e'; } /* 'î ®' */
.icon-home:before { content: '\e82f'; } /* 'î ¯' */
.icon-link:before { content: '\e830'; } /* 'î °' */
.icon-unlink:before { content: '\e831'; } /* 'î ±' */
.icon-link-ext:before { content: '\e832'; } /* 'î ²' */
.icon-link-ext-alt:before { content: '\e833'; } /* 'î ³' */
.icon-attach:before { content: '\e834'; } /* 'î ´' */
.icon-lock:before { content: '\e835'; } /* 'î µ' */
.icon-lock-open:before { content: '\e836'; } /* 'î ¶' */
.icon-lock-open-alt:before { content: '\e837'; } /* 'î ·' */
.icon-pin:before { content: '\e838'; } /* 'î ¸' */
.icon-eye:before { content: '\e839'; } /* 'î ¹' */
.icon-eye-off:before { content: '\e83a'; } /* 'î º' */
.icon-tag:before { content: '\e83b'; } /* 'î »' */
.icon-tags:before { content: '\e83c'; } /* 'î ¼' */
.icon-bookmark:before { content: '\e83d'; } /* 'î ½' */
.icon-bookmark-empty:before { content: '\e83e'; } /* 'î ¾' */
.icon-flag:before { content: '\e83f'; } /* 'î ¿' */
.icon-flag-empty:before { content: '\e840'; } /* 'î¡€' */
.icon-flag-checkered:before { content: '\e841'; } /* 'î¡' */
.icon-thumbs-up:before { content: '\e842'; } /* 'î¡‚' */
.icon-thumbs-down:before { content: '\e843'; } /* '' */
.icon-thumbs-up-alt:before { content: '\e844'; } /* 'î¡„' */
.icon-thumbs-down-alt:before { content: '\e845'; } /* 'î¡…' */
.icon-download:before { content: '\e846'; } /* '' */
.icon-upload:before { content: '\e847'; } /* '' */
.icon-download-cloud:before { content: '\e848'; } /* '' */
.icon-upload-cloud:before { content: '\e849'; } /* '' */
.icon-reply:before { content: '\e84a'; } /* 'î¡Š' */
.icon-reply-all:before { content: '\e84b'; } /* 'î¡‹' */
.icon-forward:before { content: '\e84c'; } /* '' */
.icon-quote-left:before { content: '\e84d'; } /* 'î¡' */
.icon-quote-right:before { content: '\e84e'; } /* 'î¡Ž' */
.icon-code:before { content: '\e84f'; } /* 'î¡' */
.icon-export:before { content: '\e850'; } /* 'î¡' */
.icon-export-alt:before { content: '\e851'; } /* 'î¡‘' */
.icon-share:before { content: '\e852'; } /* 'î¡’' */
.icon-share-squared:before { content: '\e853'; } /* 'î¡“' */
.icon-pencil:before { content: '\e854'; } /* 'î¡”' */
.icon-pencil-squared:before { content: '\e855'; } /* 'î¡•' */
.icon-edit:before { content: '\e856'; } /* 'î¡–' */
.icon-print:before { content: '\e857'; } /* 'î¡—' */
.icon-retweet:before { content: '\e858'; } /* '' */
.icon-keyboard:before { content: '\e859'; } /* 'î¡™' */
.icon-gamepad:before { content: '\e85a'; } /* 'î¡š' */
.icon-comment:before { content: '\e85b'; } /* 'î¡›' */
.icon-chat:before { content: '\e85c'; } /* '' */
.icon-comment-empty:before { content: '\e85d'; } /* 'î¡' */
.icon-chat-empty:before { content: '\e85e'; } /* 'î¡ž' */
.icon-bell:before { content: '\e85f'; } /* 'î¡Ÿ' */
.icon-bell-alt:before { content: '\e860'; } /* 'î¡ ' */
.icon-bell-off:before { content: '\e861'; } /* 'î¡¡' */
.icon-bell-off-empty:before { content: '\e862'; } /* 'î¡¢' */
.icon-attention-alt:before { content: '\e863'; } /* 'î¡£' */
.icon-attention:before { content: '\e864'; } /* '' */
.icon-attention-circled:before { content: '\e865'; } /* 'î¡¥' */
.icon-location:before { content: '\e866'; } /* '' */
.icon-direction:before { content: '\e867'; } /* '' */
.icon-compass:before { content: '\e868'; } /* '' */
.icon-trash:before { content: '\e869'; } /* 'î¡©' */
.icon-trash-empty:before { content: '\e86a'; } /* '' */
.icon-doc:before { content: '\e86b'; } /* 'î¡«' */
.icon-docs:before { content: '\e86c'; } /* '' */
.icon-doc-text:before { content: '\e86d'; } /* 'î¡' */
.icon-doc-inv:before { content: '\e86e'; } /* 'î¡®' */
.icon-doc-text-inv:before { content: '\e86f'; } /* '' */
.icon-file-pdf:before { content: '\e870'; } /* 'î¡°' */
.icon-file-word:before { content: '\e871'; } /* '' */
.icon-file-excel:before { content: '\e872'; } /* '' */
.icon-file-powerpoint:before { content: '\e873'; } /* '' */
.icon-file-image:before { content: '\e874'; } /* 'î¡´' */
.icon-file-archive:before { content: '\e875'; } /* '' */
.icon-file-audio:before { content: '\e876'; } /* '' */
.icon-file-video:before { content: '\e877'; } /* 'î¡·' */
.icon-file-code:before { content: '\e878'; } /* '' */
.icon-folder:before { content: '\e879'; } /* '' */
.icon-folder-open:before { content: '\e87a'; } /* '' */
.icon-folder-empty:before { content: '\e87b'; } /* 'î¡»' */
.icon-folder-open-empty:before { content: '\e87c'; } /* '' */
.icon-box:before { content: '\e87d'; } /* '' */
.icon-rss:before { content: '\e87e'; } /* '' */
.icon-rss-squared:before { content: '\e87f'; } /* 'î¡¿' */
.icon-phone:before { content: '\e880'; } /* '' */
.icon-phone-squared:before { content: '\e881'; } /* 'î¢' */
.icon-fax:before { content: '\e882'; } /* '' */
.icon-menu:before { content: '\e883'; } /* '' */
.icon-cog:before { content: '\e884'; } /* '' */
.icon-cog-alt:before { content: '\e885'; } /* '' */
.icon-wrench:before { content: '\e886'; } /* '' */
.icon-sliders:before { content: '\e887'; } /* '' */
.icon-basket:before { content: '\e888'; } /* '' */
.icon-cart-plus:before { content: '\e889'; } /* '' */
.icon-cart-arrow-down:before { content: '\e88a'; } /* '' */
.icon-calendar:before { content: '\e88b'; } /* '' */
.icon-calendar-empty:before { content: '\e88c'; } /* '' */
.icon-login:before { content: '\e88d'; } /* 'î¢' */
.icon-logout:before { content: '\e88e'; } /* '' */
.icon-mic:before { content: '\e88f'; } /* 'î¢' */
.icon-mute:before { content: '\e890'; } /* 'î¢' */
.icon-volume-off:before { content: '\e891'; } /* '' */
.icon-volume-down:before { content: '\e892'; } /* '' */
.icon-volume-up:before { content: '\e893'; } /* '' */
.icon-headphones:before { content: '\e894'; } /* '' */
.icon-clock:before { content: '\e895'; } /* '' */
.icon-lightbulb:before { content: '\e896'; } /* '' */
.icon-block:before { content: '\e897'; } /* '' */
.icon-resize-full:before { content: '\e898'; } /* '' */
.icon-resize-full-alt:before { content: '\e899'; } /* '' */
.icon-resize-small:before { content: '\e89a'; } /* '' */
.icon-resize-vertical:before { content: '\e89b'; } /* '' */
.icon-resize-horizontal:before { content: '\e89c'; } /* '' */
.icon-move:before { content: '\e89d'; } /* 'î¢' */
.icon-zoom-in:before { content: '\e89e'; } /* '' */
.icon-zoom-out:before { content: '\e89f'; } /* '' */
.icon-down-circled2:before { content: '\e8a0'; } /* 'î¢ ' */
.icon-up-circled2:before { content: '\e8a1'; } /* '' */
.icon-left-circled2:before { content: '\e8a2'; } /* '' */
.icon-right-circled2:before { content: '\e8a3'; } /* '' */
.icon-down-dir:before { content: '\e8a4'; } /* '' */
.icon-up-dir:before { content: '\e8a5'; } /* '' */
.icon-left-dir:before { content: '\e8a6'; } /* '' */
.icon-right-dir:before { content: '\e8a7'; } /* '' */
.icon-down-open:before { content: '\e8a8'; } /* '' */
.icon-left-open:before { content: '\e8a9'; } /* '' */
.icon-right-open:before { content: '\e8aa'; } /* '' */
.icon-up-open:before { content: '\e8ab'; } /* '' */
.icon-angle-left:before { content: '\e8ac'; } /* '' */
.icon-angle-right:before { content: '\e8ad'; } /* 'î¢' */
.icon-angle-up:before { content: '\e8ae'; } /* '' */
.icon-angle-down:before { content: '\e8af'; } /* '' */
.icon-angle-circled-left:before { content: '\e8b0'; } /* '' */
.icon-angle-circled-right:before { content: '\e8b1'; } /* '' */
.icon-angle-circled-up:before { content: '\e8b2'; } /* '' */
.icon-angle-circled-down:before { content: '\e8b3'; } /* '' */
.icon-angle-double-left:before { content: '\e8b4'; } /* '' */
.icon-angle-double-right:before { content: '\e8b5'; } /* '' */
.icon-angle-double-up:before { content: '\e8b6'; } /* '' */
.icon-angle-double-down:before { content: '\e8b7'; } /* '' */
.icon-down:before { content: '\e8b8'; } /* '' */
.icon-left:before { content: '\e8b9'; } /* '' */
.icon-right:before { content: '\e8ba'; } /* '' */
.icon-up:before { content: '\e8bb'; } /* '' */
.icon-down-big:before { content: '\e8bc'; } /* '' */
.icon-left-big:before { content: '\e8bd'; } /* '' */
.icon-right-big:before { content: '\e8be'; } /* '' */
.icon-up-big:before { content: '\e8bf'; } /* '' */
.icon-right-hand:before { content: '\e8c0'; } /* '' */
.icon-left-hand:before { content: '\e8c1'; } /* 'î£' */
.icon-up-hand:before { content: '\e8c2'; } /* '' */
.icon-down-hand:before { content: '\e8c3'; } /* '' */
.icon-left-circled:before { content: '\e8c4'; } /* '' */
.icon-right-circled:before { content: '\e8c5'; } /* '' */
.icon-up-circled:before { content: '\e8c6'; } /* '' */
.icon-down-circled:before { content: '\e8c7'; } /* '' */
.icon-cw:before { content: '\e8c8'; } /* '' */
.icon-ccw:before { content: '\e8c9'; } /* '' */
.icon-arrows-cw:before { content: '\e8ca'; } /* '' */
.icon-level-up:before { content: '\e8cb'; } /* '' */
.icon-level-down:before { content: '\e8cc'; } /* '' */
.icon-shuffle:before { content: '\e8cd'; } /* 'î£' */
.icon-exchange:before { content: '\e8ce'; } /* '' */
.icon-history:before { content: '\e8cf'; } /* 'î£' */
.icon-expand:before { content: '\e8d0'; } /* 'î£' */
.icon-collapse:before { content: '\e8d1'; } /* '' */
.icon-expand-right:before { content: '\e8d2'; } /* '' */
.icon-collapse-left:before { content: '\e8d3'; } /* '' */
.icon-play:before { content: '\e8d4'; } /* '' */
.icon-play-circled:before { content: '\e8d5'; } /* '' */
.icon-play-circled2:before { content: '\e8d6'; } /* '' */
.icon-stop:before { content: '\e8d7'; } /* '' */
.icon-pause:before { content: '\e8d8'; } /* '' */
.icon-to-end:before { content: '\e8d9'; } /* '' */
.icon-to-end-alt:before { content: '\e8da'; } /* '' */
.icon-to-start:before { content: '\e8db'; } /* '' */
.icon-to-start-alt:before { content: '\e8dc'; } /* '' */
.icon-fast-fw:before { content: '\e8dd'; } /* 'î£' */
.icon-fast-bw:before { content: '\e8de'; } /* '' */
.icon-eject:before { content: '\e8df'; } /* '' */
.icon-target:before { content: '\e8e0'; } /* 'î£ ' */
.icon-signal:before { content: '\e8e1'; } /* '' */
.icon-wifi:before { content: '\e8e2'; } /* '' */
.icon-award:before { content: '\e8e3'; } /* '' */
.icon-desktop:before { content: '\e8e4'; } /* '' */
.icon-laptop:before { content: '\e8e5'; } /* '' */
.icon-tablet:before { content: '\e8e6'; } /* '' */
.icon-mobile:before { content: '\e8e7'; } /* '' */
.icon-inbox:before { content: '\e8e8'; } /* '' */
.icon-globe:before { content: '\e8e9'; } /* '' */
.icon-sun:before { content: '\e8ea'; } /* '' */
.icon-cloud:before { content: '\e8eb'; } /* '' */
.icon-flash:before { content: '\e8ec'; } /* '' */
.icon-moon:before { content: '\e8ed'; } /* 'î£' */
.icon-umbrella:before { content: '\e8ee'; } /* '' */
.icon-flight:before { content: '\e8ef'; } /* '' */
.icon-fighter-jet:before { content: '\e8f0'; } /* '' */
.icon-paper-plane:before { content: '\e8f1'; } /* '' */
.icon-paper-plane-empty:before { content: '\e8f2'; } /* '' */
.icon-space-shuttle:before { content: '\e8f3'; } /* '' */
.icon-leaf:before { content: '\e8f4'; } /* '' */
.icon-font:before { content: '\e8f5'; } /* '' */
.icon-bold:before { content: '\e8f6'; } /* '' */
.icon-medium:before { content: '\e8f7'; } /* '' */
.icon-italic:before { content: '\e8f8'; } /* '' */
.icon-header:before { content: '\e8f9'; } /* '' */
.icon-paragraph:before { content: '\e8fa'; } /* '' */
.icon-text-height:before { content: '\e8fb'; } /* '' */
.icon-text-width:before { content: '\e8fc'; } /* '' */
.icon-align-left:before { content: '\e8fd'; } /* '' */
.icon-align-center:before { content: '\e8fe'; } /* '' */
.icon-align-right:before { content: '\e8ff'; } /* '' */
.icon-align-justify:before { content: '\e900'; } /* '' */
.icon-list:before { content: '\e901'; } /* 'î¤' */
.icon-indent-left:before { content: '\e902'; } /* '' */
.icon-indent-right:before { content: '\e903'; } /* '' */
.icon-list-bullet:before { content: '\e904'; } /* '' */
.icon-list-numbered:before { content: '\e905'; } /* '' */
.icon-strike:before { content: '\e906'; } /* '' */
.icon-underline:before { content: '\e907'; } /* '' */
.icon-superscript:before { content: '\e908'; } /* '' */
.icon-subscript:before { content: '\e909'; } /* '' */
.icon-table:before { content: '\e90a'; } /* '' */
.icon-columns:before { content: '\e90b'; } /* '' */
.icon-crop:before { content: '\e90c'; } /* '' */
.icon-scissors:before { content: '\e90d'; } /* 'î¤' */
.icon-paste:before { content: '\e90e'; } /* '' */
.icon-briefcase:before { content: '\e90f'; } /* 'î¤' */
.icon-suitcase:before { content: '\e910'; } /* 'î¤' */
.icon-ellipsis:before { content: '\e911'; } /* '' */
.icon-ellipsis-vert:before { content: '\e912'; } /* '' */
.icon-off:before { content: '\e913'; } /* '' */
.icon-road:before { content: '\e914'; } /* '' */
.icon-list-alt:before { content: '\e915'; } /* '' */
.icon-qrcode:before { content: '\e916'; } /* '' */
.icon-barcode:before { content: '\e917'; } /* '' */
.icon-book:before { content: '\e918'; } /* '' */
.icon-ajust:before { content: '\e919'; } /* '' */
.icon-tint:before { content: '\e91a'; } /* '' */
.icon-toggle-off:before { content: '\e91b'; } /* '' */
.icon-toggle-on:before { content: '\e91c'; } /* '' */
.icon-check:before { content: '\e91d'; } /* 'î¤' */
.icon-check-empty:before { content: '\e91e'; } /* '' */
.icon-circle:before { content: '\e91f'; } /* '' */
.icon-circle-empty:before { content: '\e920'; } /* 'î¤ ' */
.icon-circle-thin:before { content: '\e921'; } /* '' */
.icon-circle-notch:before { content: '\e922'; } /* '' */
.icon-dot-circled:before { content: '\e923'; } /* '' */
.icon-asterisk:before { content: '\e924'; } /* '' */
.icon-gift:before { content: '\e925'; } /* '' */
.icon-fire:before { content: '\e926'; } /* '' */
.icon-magnet:before { content: '\e927'; } /* '' */
.icon-chart-bar:before { content: '\e928'; } /* '' */
.icon-chart-area:before { content: '\e929'; } /* '' */
.icon-chart-pie:before { content: '\e92a'; } /* '' */
.icon-chart-line:before { content: '\e92b'; } /* '' */
.icon-ticket:before { content: '\e92c'; } /* '' */
.icon-credit-card:before { content: '\e92d'; } /* 'î¤' */
.icon-floppy:before { content: '\e92e'; } /* '' */
.icon-megaphone:before { content: '\e92f'; } /* '' */
.icon-hdd:before { content: '\e930'; } /* '' */
.icon-key:before { content: '\e931'; } /* '' */
.icon-fork:before { content: '\e932'; } /* '' */
.icon-rocket:before { content: '\e933'; } /* '' */
.icon-bug:before { content: '\e934'; } /* '' */
.icon-certificate:before { content: '\e935'; } /* '' */
.icon-tasks:before { content: '\e936'; } /* '' */
.icon-filter:before { content: '\e937'; } /* '' */
.icon-beaker:before { content: '\e938'; } /* '' */
.icon-magic:before { content: '\e939'; } /* '' */
.icon-cab:before { content: '\e93a'; } /* '' */
.icon-taxi:before { content: '\e93b'; } /* '' */
.icon-truck:before { content: '\e93c'; } /* '' */
.icon-bus:before { content: '\e93d'; } /* '' */
.icon-bicycle:before { content: '\e93e'; } /* '' */
.icon-motorcycle:before { content: '\e93f'; } /* '' */
.icon-train:before { content: '\e940'; } /* '' */
.icon-subway:before { content: '\e941'; } /* 'î¥' */
.icon-ship:before { content: '\e942'; } /* '' */
.icon-money:before { content: '\e943'; } /* '' */
.icon-euro:before { content: '\e944'; } /* '' */
.icon-pound:before { content: '\e945'; } /* '' */
.icon-dollar:before { content: '\e946'; } /* '' */
.icon-rupee:before { content: '\e947'; } /* '' */
.icon-yen:before { content: '\e948'; } /* '' */
.icon-rouble:before { content: '\e949'; } /* '' */
.icon-shekel:before { content: '\e94a'; } /* '' */
.icon-try:before { content: '\e94b'; } /* '' */
.icon-won:before { content: '\e94c'; } /* '' */
.icon-bitcoin:before { content: '\e94d'; } /* 'î¥' */
.icon-viacoin:before { content: '\e94e'; } /* '' */
.icon-sort:before { content: '\e94f'; } /* 'î¥' */
.icon-sort-down:before { content: '\e950'; } /* 'î¥' */
.icon-sort-up:before { content: '\e951'; } /* '' */
.icon-sort-alt-up:before { content: '\e952'; } /* '' */
.icon-sort-alt-down:before { content: '\e953'; } /* '' */
.icon-sort-name-up:before { content: '\e954'; } /* '' */
.icon-sort-name-down:before { content: '\e955'; } /* '' */
.icon-sort-number-up:before { content: '\e956'; } /* '' */
.icon-sort-number-down:before { content: '\e957'; } /* '' */
.icon-hammer:before { content: '\e958'; } /* '' */
.icon-gauge:before { content: '\e959'; } /* '' */
.icon-sitemap:before { content: '\e95a'; } /* '' */
.icon-spinner:before { content: '\e95b'; } /* '' */
.icon-coffee:before { content: '\e95c'; } /* '' */
.icon-food:before { content: '\e95d'; } /* 'î¥' */
.icon-beer:before { content: '\e95e'; } /* '' */
.icon-user-md:before { content: '\e95f'; } /* '' */
.icon-stethoscope:before { content: '\e960'; } /* 'î¥ ' */
.icon-heartbeat:before { content: '\e961'; } /* '' */
.icon-ambulance:before { content: '\e962'; } /* '' */
.icon-medkit:before { content: '\e963'; } /* '' */
.icon-h-sigh:before { content: '\e964'; } /* '' */
.icon-bed:before { content: '\e965'; } /* '' */
.icon-hospital:before { content: '\e966'; } /* '' */
.icon-building:before { content: '\e967'; } /* '' */
.icon-building-filled:before { content: '\e968'; } /* '' */
.icon-bank:before { content: '\e969'; } /* '' */
.icon-smile:before { content: '\e96a'; } /* '' */
.icon-frown:before { content: '\e96b'; } /* '' */
.icon-meh:before { content: '\e96c'; } /* '' */
.icon-anchor:before { content: '\e96d'; } /* 'î¥' */
.icon-terminal:before { content: '\e96e'; } /* '' */
.icon-eraser:before { content: '\e96f'; } /* '' */
.icon-puzzle:before { content: '\e970'; } /* '' */
.icon-shield:before { content: '\e971'; } /* '' */
.icon-extinguisher:before { content: '\e972'; } /* '' */
.icon-bullseye:before { content: '\e973'; } /* '' */
.icon-wheelchair:before { content: '\e974'; } /* '' */
.icon-language:before { content: '\e975'; } /* '' */
.icon-graduation-cap:before { content: '\e976'; } /* '' */
.icon-paw:before { content: '\e977'; } /* '' */
.icon-spoon:before { content: '\e978'; } /* '' */
.icon-cube:before { content: '\e979'; } /* '' */
.icon-cubes:before { content: '\e97a'; } /* '' */
.icon-recycle:before { content: '\e97b'; } /* '' */
.icon-tree:before { content: '\e97c'; } /* '' */
.icon-database:before { content: '\e97d'; } /* '' */
.icon-server:before { content: '\e97e'; } /* '' */
.icon-lifebuoy:before { content: '\e97f'; } /* '' */
.icon-rebel:before { content: '\e980'; } /* '' */
.icon-empire:before { content: '\e981'; } /* 'î¦' */
.icon-bomb:before { content: '\e982'; } /* '' */
.icon-soccer-ball:before { content: '\e983'; } /* '' */
.icon-tty:before { content: '\e984'; } /* '' */
.icon-binoculars:before { content: '\e985'; } /* '' */
.icon-plug:before { content: '\e986'; } /* '' */
.icon-newspaper:before { content: '\e987'; } /* '' */
.icon-calc:before { content: '\e988'; } /* '' */
.icon-copyright:before { content: '\e989'; } /* '' */
.icon-at:before { content: '\e98a'; } /* '' */
.icon-eyedropper:before { content: '\e98b'; } /* '' */
.icon-brush:before { content: '\e98c'; } /* '' */
.icon-birthday:before { content: '\e98d'; } /* 'î¦' */
.icon-diamond:before { content: '\e98e'; } /* '' */
.icon-street-view:before { content: '\e98f'; } /* 'î¦' */
.icon-venus:before { content: '\e990'; } /* 'î¦' */
.icon-mars:before { content: '\e991'; } /* '' */
.icon-mercury:before { content: '\e992'; } /* '' */
.icon-transgender:before { content: '\e993'; } /* '' */
.icon-transgender-alt:before { content: '\e994'; } /* '' */
.icon-venus-double:before { content: '\e995'; } /* '' */
.icon-mars-double:before { content: '\e996'; } /* '' */
.icon-venus-mars:before { content: '\e997'; } /* '' */
.icon-mars-stroke:before { content: '\e998'; } /* '' */
.icon-mars-stroke-v:before { content: '\e999'; } /* '' */
.icon-mars-stroke-h:before { content: '\e99a'; } /* '' */
.icon-neuter:before { content: '\e99b'; } /* '' */
.icon-cc-visa:before { content: '\e99c'; } /* '' */
.icon-cc-mastercard:before { content: '\e99d'; } /* 'î¦' */
.icon-cc-discover:before { content: '\e99e'; } /* '' */
.icon-cc-amex:before { content: '\e99f'; } /* '' */
.icon-cc-paypal:before { content: '\e9a0'; } /* 'î¦ ' */
.icon-cc-stripe:before { content: '\e9a1'; } /* '' */
.icon-adn:before { content: '\e9a2'; } /* '' */
.icon-android:before { content: '\e9a3'; } /* '' */
.icon-angellist:before { content: '\e9a4'; } /* '' */
.icon-apple:before { content: '\e9a5'; } /* '' */
.icon-behance:before { content: '\e9a6'; } /* '' */
.icon-behance-squared:before { content: '\e9a7'; } /* '' */
.icon-bitbucket:before { content: '\e9a8'; } /* '' */
.icon-bitbucket-squared:before { content: '\e9a9'; } /* '' */
.icon-buysellads:before { content: '\e9aa'; } /* '' */
.icon-cc:before { content: '\e9ab'; } /* '' */
.icon-codeopen:before { content: '\e9ac'; } /* '' */
.icon-connectdevelop:before { content: '\e9ad'; } /* 'î¦' */
.icon-css3:before { content: '\e9ae'; } /* '' */
.icon-dashcube:before { content: '\e9af'; } /* '' */
.icon-delicious:before { content: '\e9b0'; } /* '' */
.icon-deviantart:before { content: '\e9b1'; } /* '' */
.icon-digg:before { content: '\e9b2'; } /* '' */
.icon-dribbble:before { content: '\e9b3'; } /* '' */
.icon-dropbox:before { content: '\e9b4'; } /* '' */
.icon-drupal:before { content: '\e9b5'; } /* '' */
.icon-facebook:before { content: '\e9b6'; } /* '' */
.icon-facebook-squared:before { content: '\e9b7'; } /* '' */
.icon-facebook-official:before { content: '\e9b8'; } /* '' */
.icon-flickr:before { content: '\e9b9'; } /* '' */
.icon-forumbee:before { content: '\e9ba'; } /* '' */
.icon-foursquare:before { content: '\e9bb'; } /* '' */
.icon-git-squared:before { content: '\e9bc'; } /* '' */
.icon-git:before { content: '\e9bd'; } /* '' */
.icon-github:before { content: '\e9be'; } /* '' */
.icon-github-squared:before { content: '\e9bf'; } /* '' */
.icon-github-circled:before { content: '\e9c0'; } /* '' */
.icon-gittip:before { content: '\e9c1'; } /* 'î§' */
.icon-google:before { content: '\e9c2'; } /* '' */
.icon-gplus:before { content: '\e9c3'; } /* '' */
.icon-gplus-squared:before { content: '\e9c4'; } /* '' */
.icon-gwallet:before { content: '\e9c5'; } /* '' */
.icon-hacker-news:before { content: '\e9c6'; } /* '' */
.icon-html5:before { content: '\e9c7'; } /* '' */
.icon-instagram:before { content: '\e9c8'; } /* '' */
.icon-ioxhost:before { content: '\e9c9'; } /* '' */
.icon-joomla:before { content: '\e9ca'; } /* '' */
.icon-jsfiddle:before { content: '\e9cb'; } /* '' */
.icon-lastfm:before { content: '\e9cc'; } /* '' */
.icon-lastfm-squared:before { content: '\e9cd'; } /* 'î§' */
.icon-leanpub:before { content: '\e9ce'; } /* '' */
.icon-linkedin-squared:before { content: '\e9cf'; } /* 'î§' */
.icon-linux:before { content: '\e9d0'; } /* 'î§' */
.icon-linkedin:before { content: '\e9d1'; } /* '' */
.icon-maxcdn:before { content: '\e9d2'; } /* '' */
.icon-meanpath:before { content: '\e9d3'; } /* '' */
.icon-openid:before { content: '\e9d4'; } /* '' */
.icon-pagelines:before { content: '\e9d5'; } /* '' */
.icon-paypal:before { content: '\e9d6'; } /* '' */
.icon-pied-piper-squared:before { content: '\e9d7'; } /* '' */
.icon-pied-piper-alt:before { content: '\e9d8'; } /* '' */
.icon-pinterest:before { content: '\e9d9'; } /* '' */
.icon-pinterest-circled:before { content: '\e9da'; } /* '' */
.icon-pinterest-squared:before { content: '\e9db'; } /* '' */
.icon-qq:before { content: '\e9dc'; } /* '' */
.icon-reddit:before { content: '\e9dd'; } /* 'î§' */
.icon-reddit-squared:before { content: '\e9de'; } /* '' */
.icon-renren:before { content: '\e9df'; } /* '' */
.icon-sellsy:before { content: '\e9e0'; } /* 'î§ ' */
.icon-shirtsinbulk:before { content: '\e9e1'; } /* '' */
.icon-simplybuilt:before { content: '\e9e2'; } /* '' */
.icon-skyatlas:before { content: '\e9e3'; } /* '' */
.icon-skype:before { content: '\e9e4'; } /* '' */
.icon-slack:before { content: '\e9e5'; } /* '' */
.icon-slideshare:before { content: '\e9e6'; } /* '' */
.icon-soundcloud:before { content: '\e9e7'; } /* '' */
.icon-spotify:before { content: '\e9e8'; } /* '' */
.icon-stackexchange:before { content: '\e9e9'; } /* '' */
.icon-stackoverflow:before { content: '\e9ea'; } /* '' */
.icon-steam:before { content: '\e9eb'; } /* '' */
.icon-steam-squared:before { content: '\e9ec'; } /* '' */
.icon-stumbleupon:before { content: '\e9ed'; } /* 'î§' */
.icon-stumbleupon-circled:before { content: '\e9ee'; } /* '' */
.icon-tencent-weibo:before { content: '\e9ef'; } /* '' */
.icon-trello:before { content: '\e9f0'; } /* '' */
.icon-tumblr:before { content: '\e9f1'; } /* '' */
.icon-tumblr-squared:before { content: '\e9f2'; } /* '' */
.icon-twitch:before { content: '\e9f3'; } /* '' */
.icon-twitter-squared:before { content: '\e9f4'; } /* '' */
.icon-twitter:before { content: '\e9f5'; } /* '' */
.icon-vimeo-squared:before { content: '\e9f6'; } /* '' */
.icon-vine:before { content: '\e9f7'; } /* '' */
.icon-vkontakte:before { content: '\e9f8'; } /* '' */
.icon-whatsapp:before { content: '\e9f9'; } /* '' */
.icon-wechat:before { content: '\e9fa'; } /* '' */
.icon-weibo:before { content: '\e9fb'; } /* '' */
.icon-windows:before { content: '\e9fc'; } /* '' */
.icon-wordpress:before { content: '\e9fd'; } /* '' */
.icon-xing:before { content: '\e9fe'; } /* '' */
.icon-xing-squared:before { content: '\e9ff'; } /* '' */
.icon-yelp:before { content: '\ea00'; } /* '' */
.icon-youtube:before { content: '\ea01'; } /* 'î¨' */
.icon-yahoo:before { content: '\ea02'; } /* '' */
.icon-youtube-squared:before { content: '\ea03'; } /* '' */
.icon-youtube-play:before { content: '\ea04'; } /* '' */
.icon-blank:before { content: '\ea05'; } /* '' */
.icon-lemon:before { content: '\ea06'; } /* '' */
.icon-note:before { content: '\ea07'; } /* '' */
.icon-note-beamed:before { content: '\ea08'; } /* '' */
.icon-music-1:before { content: '\ea09'; } /* '' */
.icon-search-1:before { content: '\ea0a'; } /* '' */
.icon-flashlight:before { content: '\ea0b'; } /* '' */
.icon-mail-1:before { content: '\ea0c'; } /* '' */
.icon-heart-1:before { content: '\ea0d'; } /* 'î¨' */
.icon-heart-empty-1:before { content: '\ea0e'; } /* '' */
.icon-star-1:before { content: '\ea0f'; } /* 'î¨' */
.icon-star-empty-1:before { content: '\ea10'; } /* 'î¨' */
.icon-user-1:before { content: '\ea11'; } /* '' */
.icon-users-1:before { content: '\ea12'; } /* '' */
.icon-user-add:before { content: '\ea13'; } /* '' */
.icon-video-1:before { content: '\ea14'; } /* '' */
.icon-picture-1:before { content: '\ea15'; } /* '' */
.icon-camera-1:before { content: '\ea16'; } /* '' */
.icon-layout:before { content: '\ea17'; } /* '' */
.icon-menu-1:before { content: '\ea18'; } /* '' */
.icon-check-1:before { content: '\ea19'; } /* '' */
.icon-cancel-1:before { content: '\ea1a'; } /* '' */
.icon-cancel-circled-1:before { content: '\ea1b'; } /* '' */
.icon-cancel-squared:before { content: '\ea1c'; } /* '' */
.icon-plus-1:before { content: '\ea1d'; } /* 'î¨' */
.icon-plus-circled-1:before { content: '\ea1e'; } /* '' */
.icon-plus-squared-1:before { content: '\ea1f'; } /* '' */
.icon-minus-1:before { content: '\ea20'; } /* 'î¨ ' */
.icon-minus-circled-1:before { content: '\ea21'; } /* '' */
.icon-minus-squared-1:before { content: '\ea22'; } /* '' */
.icon-help-1:before { content: '\ea23'; } /* '' */
.icon-help-circled-1:before { content: '\ea24'; } /* '' */
.icon-info-1:before { content: '\ea25'; } /* '' */
.icon-info-circled-1:before { content: '\ea26'; } /* '' */
.icon-back:before { content: '\ea27'; } /* '' */
.icon-home-1:before { content: '\ea28'; } /* '' */
.icon-link-1:before { content: '\ea29'; } /* '' */
.icon-attach-1:before { content: '\ea2a'; } /* '' */
.icon-lock-1:before { content: '\ea2b'; } /* '' */
.icon-lock-open-1:before { content: '\ea2c'; } /* '' */
.icon-eye-1:before { content: '\ea2d'; } /* 'î¨' */
.icon-tag-1:before { content: '\ea2e'; } /* '' */
.icon-bookmark-1:before { content: '\ea2f'; } /* '' */
.icon-bookmarks:before { content: '\ea30'; } /* '' */
.icon-flag-1:before { content: '\ea31'; } /* '' */
.icon-thumbs-up-1:before { content: '\ea32'; } /* '' */
.icon-thumbs-down-1:before { content: '\ea33'; } /* '' */
.icon-download-1:before { content: '\ea34'; } /* '' */
.icon-upload-1:before { content: '\ea35'; } /* '' */
.icon-upload-cloud-1:before { content: '\ea36'; } /* '' */
.icon-reply-1:before { content: '\ea37'; } /* '' */
.icon-reply-all-1:before { content: '\ea38'; } /* '' */
.icon-forward-1:before { content: '\ea39'; } /* '' */
.icon-quote:before { content: '\ea3a'; } /* '' */
.icon-code-1:before { content: '\ea3b'; } /* '' */
.icon-export-1:before { content: '\ea3c'; } /* '' */
.icon-pencil-1:before { content: '\ea3d'; } /* '' */
.icon-feather:before { content: '\ea3e'; } /* '' */
.icon-print-1:before { content: '\ea3f'; } /* '' */
.icon-retweet-1:before { content: '\ea40'; } /* 'î©€' */
.icon-keyboard-1:before { content: '\ea41'; } /* 'î©' */
.icon-comment-1:before { content: '\ea42'; } /* 'î©‚' */
.icon-chat-1:before { content: '\ea43'; } /* '' */
.icon-bell-1:before { content: '\ea44'; } /* 'î©„' */
.icon-attention-1:before { content: '\ea45'; } /* 'î©…' */
.icon-alert:before { content: '\ea46'; } /* '' */
.icon-vcard:before { content: '\ea47'; } /* '' */
.icon-address:before { content: '\ea48'; } /* '' */
.icon-location-1:before { content: '\ea49'; } /* '' */
.icon-map:before { content: '\ea4a'; } /* 'î©Š' */
.icon-direction-1:before { content: '\ea4b'; } /* 'î©‹' */
.icon-compass-1:before { content: '\ea4c'; } /* '' */
.icon-cup:before { content: '\ea4d'; } /* 'î©' */
.icon-trash-1:before { content: '\ea4e'; } /* 'î©Ž' */
.icon-doc-1:before { content: '\ea4f'; } /* 'î©' */
.icon-docs-1:before { content: '\ea50'; } /* 'î©' */
.icon-doc-landscape:before { content: '\ea51'; } /* 'î©‘' */
.icon-doc-text-1:before { content: '\ea52'; } /* 'î©’' */
.icon-doc-text-inv-1:before { content: '\ea53'; } /* 'î©“' */
.icon-newspaper-1:before { content: '\ea54'; } /* 'î©”' */
.icon-book-open:before { content: '\ea55'; } /* 'î©•' */
.icon-book-1:before { content: '\ea56'; } /* 'î©–' */
.icon-folder-1:before { content: '\ea57'; } /* 'î©—' */
.icon-archive:before { content: '\ea58'; } /* '' */
.icon-box-1:before { content: '\ea59'; } /* 'î©™' */
.icon-rss-1:before { content: '\ea5a'; } /* 'î©š' */
.icon-phone-1:before { content: '\ea5b'; } /* 'î©›' */
.icon-cog-1:before { content: '\ea5c'; } /* '' */
.icon-tools:before { content: '\ea5d'; } /* 'î©' */
.icon-share-1:before { content: '\ea5e'; } /* 'î©ž' */
.icon-shareable:before { content: '\ea5f'; } /* 'î©Ÿ' */
.icon-basket-1:before { content: '\ea60'; } /* 'î© ' */
.icon-bag:before { content: '\ea61'; } /* 'î©¡' */
.icon-calendar-1:before { content: '\ea62'; } /* 'î©¢' */
.icon-login-1:before { content: '\ea63'; } /* 'î©£' */
.icon-logout-1:before { content: '\ea64'; } /* '' */
.icon-mic-1:before { content: '\ea65'; } /* 'î©¥' */
.icon-mute-1:before { content: '\ea66'; } /* '' */
.icon-sound:before { content: '\ea67'; } /* '' */
.icon-volume:before { content: '\ea68'; } /* '' */
.icon-clock-1:before { content: '\ea69'; } /* 'î©©' */
.icon-hourglass:before { content: '\ea6a'; } /* '' */
.icon-lamp:before { content: '\ea6b'; } /* 'î©«' */
.icon-light-down:before { content: '\ea6c'; } /* '' */
.icon-light-up:before { content: '\ea6d'; } /* 'î©' */
.icon-adjust:before { content: '\ea6e'; } /* 'î©®' */
.icon-block-1:before { content: '\ea6f'; } /* '' */
.icon-resize-full-1:before { content: '\ea70'; } /* 'î©°' */
.icon-resize-small-1:before { content: '\ea71'; } /* '' */
.icon-popup:before { content: '\ea72'; } /* '' */
.icon-publish:before { content: '\ea73'; } /* '' */
.icon-window:before { content: '\ea74'; } /* 'î©´' */
.icon-arrow-combo:before { content: '\ea75'; } /* '' */
.icon-down-circled-1:before { content: '\ea76'; } /* '' */
.icon-left-circled-1:before { content: '\ea77'; } /* 'î©·' */
.icon-right-circled-1:before { content: '\ea78'; } /* '' */
.icon-up-circled-1:before { content: '\ea79'; } /* '' */
.icon-down-open-1:before { content: '\ea7a'; } /* '' */
.icon-left-open-1:before { content: '\ea7b'; } /* 'î©»' */
.icon-right-open-1:before { content: '\ea7c'; } /* '' */
.icon-up-open-1:before { content: '\ea7d'; } /* '' */
.icon-down-open-mini:before { content: '\ea7e'; } /* '' */
.icon-left-open-mini:before { content: '\ea7f'; } /* 'î©¿' */
.icon-right-open-mini:before { content: '\ea80'; } /* '' */
.icon-up-open-mini:before { content: '\ea81'; } /* 'îª' */
.icon-down-open-big:before { content: '\ea82'; } /* '' */
.icon-left-open-big:before { content: '\ea83'; } /* '' */
.icon-right-open-big:before { content: '\ea84'; } /* '' */
.icon-up-open-big:before { content: '\ea85'; } /* '' */
.icon-down-1:before { content: '\ea86'; } /* '' */
.icon-left-1:before { content: '\ea87'; } /* '' */
.icon-right-1:before { content: '\ea88'; } /* '' */
.icon-up-1:before { content: '\ea89'; } /* '' */
.icon-down-dir-1:before { content: '\ea8a'; } /* '' */
.icon-left-dir-1:before { content: '\ea8b'; } /* '' */
.icon-right-dir-1:before { content: '\ea8c'; } /* '' */
.icon-up-dir-1:before { content: '\ea8d'; } /* 'îª' */
.icon-down-bold:before { content: '\ea8e'; } /* '' */
.icon-left-bold:before { content: '\ea8f'; } /* 'îª' */
.icon-right-bold:before { content: '\ea90'; } /* 'îª' */
.icon-up-bold:before { content: '\ea91'; } /* '' */
.icon-down-thin:before { content: '\ea92'; } /* '' */
.icon-left-thin:before { content: '\ea93'; } /* '' */
.icon-right-thin:before { content: '\ea94'; } /* '' */
.icon-up-thin:before { content: '\ea95'; } /* '' */
.icon-ccw-1:before { content: '\ea96'; } /* '' */
.icon-cw-1:before { content: '\ea97'; } /* '' */
.icon-arrows-ccw:before { content: '\ea98'; } /* '' */
.icon-level-down-1:before { content: '\ea99'; } /* '' */
.icon-level-up-1:before { content: '\ea9a'; } /* '' */
.icon-shuffle-1:before { content: '\ea9b'; } /* '' */
.icon-loop:before { content: '\ea9c'; } /* '' */
.icon-switch:before { content: '\ea9d'; } /* 'îª' */
.icon-play-1:before { content: '\ea9e'; } /* '' */
.icon-stop-1:before { content: '\ea9f'; } /* '' */
.icon-pause-1:before { content: '\eaa0'; } /* 'îª ' */
.icon-record:before { content: '\eaa1'; } /* '' */
.icon-to-end-1:before { content: '\eaa2'; } /* '' */
.icon-to-start-1:before { content: '\eaa3'; } /* '' */
.icon-fast-forward:before { content: '\eaa4'; } /* '' */
.icon-fast-backward:before { content: '\eaa5'; } /* '' */
.icon-progress-0:before { content: '\eaa6'; } /* '' */
.icon-progress-1:before { content: '\eaa7'; } /* '' */
.icon-progress-2:before { content: '\eaa8'; } /* '' */
.icon-progress-3:before { content: '\eaa9'; } /* '' */
.icon-target-1:before { content: '\eaaa'; } /* '' */
.icon-palette:before { content: '\eaab'; } /* '' */
.icon-list-1:before { content: '\eaac'; } /* '' */
.icon-list-add:before { content: '\eaad'; } /* 'îª' */
.icon-signal-1:before { content: '\eaae'; } /* '' */
.icon-trophy:before { content: '\eaaf'; } /* '' */
.icon-battery:before { content: '\eab0'; } /* '' */
.icon-back-in-time:before { content: '\eab1'; } /* '' */
.icon-monitor:before { content: '\eab2'; } /* '' */
.icon-mobile-1:before { content: '\eab3'; } /* '' */
.icon-network:before { content: '\eab4'; } /* '' */
.icon-cd:before { content: '\eab5'; } /* '' */
.icon-inbox-1:before { content: '\eab6'; } /* '' */
.icon-install:before { content: '\eab7'; } /* '' */
.icon-globe-1:before { content: '\eab8'; } /* '' */
.icon-cloud-1:before { content: '\eab9'; } /* '' */
.icon-cloud-thunder:before { content: '\eaba'; } /* '' */
.icon-flash-1:before { content: '\eabb'; } /* '' */
.icon-moon-1:before { content: '\eabc'; } /* '' */
.icon-flight-1:before { content: '\eabd'; } /* '' */
.icon-paper-plane-1:before { content: '\eabe'; } /* '' */
.icon-leaf-1:before { content: '\eabf'; } /* '' */
.icon-lifebuoy-1:before { content: '\eac0'; } /* 'î«€' */
.icon-mouse:before { content: '\eac1'; } /* 'î«' */
.icon-briefcase-1:before { content: '\eac2'; } /* 'î«‚' */
.icon-suitcase-1:before { content: '\eac3'; } /* '' */
.icon-dot:before { content: '\eac4'; } /* 'î«„' */
.icon-dot-2:before { content: '\eac5'; } /* 'î«…' */
.icon-dot-3:before { content: '\eac6'; } /* '' */
.icon-brush-1:before { content: '\eac7'; } /* '' */
.icon-magnet-1:before { content: '\eac8'; } /* '' */
.icon-infinity:before { content: '\eac9'; } /* '' */
.icon-erase:before { content: '\eaca'; } /* 'î«Š' */
.icon-chart-pie-1:before { content: '\eacb'; } /* 'î«‹' */
.icon-chart-line-1:before { content: '\eacc'; } /* '' */
.icon-chart-bar-1:before { content: '\eacd'; } /* 'î«' */
.icon-chart-area-1:before { content: '\eace'; } /* 'î«Ž' */
.icon-tape:before { content: '\eacf'; } /* 'î«' */
.icon-graduation-cap-1:before { content: '\ead0'; } /* 'î«' */
.icon-language-1:before { content: '\ead1'; } /* 'î«‘' */
.icon-ticket-1:before { content: '\ead2'; } /* 'î«’' */
.icon-water:before { content: '\ead3'; } /* 'î«“' */
.icon-droplet:before { content: '\ead4'; } /* 'î«”' */
.icon-air:before { content: '\ead5'; } /* 'î«•' */
.icon-credit-card-1:before { content: '\ead6'; } /* 'î«–' */
.icon-floppy-1:before { content: '\ead7'; } /* 'î«—' */
.icon-clipboard:before { content: '\ead8'; } /* '' */
.icon-megaphone-1:before { content: '\ead9'; } /* 'î«™' */
.icon-database-1:before { content: '\eada'; } /* 'î«š' */
.icon-drive:before { content: '\eadb'; } /* 'î«›' */
.icon-bucket:before { content: '\eadc'; } /* '' */
.icon-thermometer:before { content: '\eadd'; } /* 'î«' */
.icon-key-1:before { content: '\eade'; } /* 'î«ž' */
.icon-flow-cascade:before { content: '\eadf'; } /* 'î«Ÿ' */
.icon-flow-branch:before { content: '\eae0'; } /* 'î« ' */
.icon-flow-tree:before { content: '\eae1'; } /* 'î«¡' */
.icon-flow-line:before { content: '\eae2'; } /* 'î«¢' */
.icon-flow-parallel:before { content: '\eae3'; } /* 'î«£' */
.icon-rocket-1:before { content: '\eae4'; } /* '' */
.icon-gauge-1:before { content: '\eae5'; } /* 'î«¥' */
.icon-traffic-cone:before { content: '\eae6'; } /* '' */
.icon-cc-1:before { content: '\eae7'; } /* '' */
.icon-cc-by:before { content: '\eae8'; } /* '' */
.icon-cc-nc:before { content: '\eae9'; } /* 'î«©' */
.icon-cc-nc-eu:before { content: '\eaea'; } /* '' */
.icon-cc-nc-jp:before { content: '\eaeb'; } /* 'î««' */
.icon-cc-sa:before { content: '\eaec'; } /* '' */
.icon-cc-nd:before { content: '\eaed'; } /* 'î«' */
.icon-cc-pd:before { content: '\eaee'; } /* 'î«®' */
.icon-cc-zero:before { content: '\eaef'; } /* '' */
.icon-cc-share:before { content: '\eaf0'; } /* 'î«°' */
.icon-cc-remix:before { content: '\eaf1'; } /* '' */
.icon-github-1:before { content: '\eaf2'; } /* '' */
.icon-github-circled-1:before { content: '\eaf3'; } /* '' */
.icon-flickr-1:before { content: '\eaf4'; } /* 'î«´' */
.icon-flickr-circled:before { content: '\eaf5'; } /* '' */
.icon-vimeo:before { content: '\eaf6'; } /* '' */
.icon-vimeo-circled:before { content: '\eaf7'; } /* 'î«·' */
.icon-twitter-1:before { content: '\eaf8'; } /* '' */
.icon-twitter-circled:before { content: '\eaf9'; } /* '' */
.icon-facebook-1:before { content: '\eafa'; } /* '' */
.icon-facebook-circled:before { content: '\eafb'; } /* 'î«»' */
.icon-facebook-squared-1:before { content: '\eafc'; } /* '' */
.icon-gplus-1:before { content: '\eafd'; } /* '' */
.icon-gplus-circled:before { content: '\eafe'; } /* '' */
.icon-pinterest-1:before { content: '\eaff'; } /* 'î«¿' */
.icon-pinterest-circled-1:before { content: '\eb00'; } /* '' */
.icon-tumblr-1:before { content: '\eb01'; } /* 'î¬' */
.icon-tumblr-circled:before { content: '\eb02'; } /* '' */
.icon-linkedin-1:before { content: '\eb03'; } /* '' */
.icon-linkedin-circled:before { content: '\eb04'; } /* '' */
.icon-dribbble-1:before { content: '\eb05'; } /* '' */
.icon-dribbble-circled:before { content: '\eb06'; } /* '' */
.icon-stumbleupon-1:before { content: '\eb07'; } /* '' */
.icon-stumbleupon-circled-1:before { content: '\eb08'; } /* '' */
.icon-lastfm-1:before { content: '\eb09'; } /* '' */
.icon-lastfm-circled:before { content: '\eb0a'; } /* '' */
.icon-rdio:before { content: '\eb0b'; } /* '' */
.icon-rdio-circled:before { content: '\eb0c'; } /* '' */
.icon-spotify-1:before { content: '\eb0d'; } /* 'î¬' */
.icon-spotify-circled:before { content: '\eb0e'; } /* '' */
.icon-qq-1:before { content: '\eb0f'; } /* 'î¬' */
.icon-instagram-1:before { content: '\eb10'; } /* 'î¬' */
.icon-dropbox-1:before { content: '\eb11'; } /* '' */
.icon-evernote:before { content: '\eb12'; } /* '' */
.icon-flattr:before { content: '\eb13'; } /* '' */
.icon-skype-1:before { content: '\eb14'; } /* '' */
.icon-skype-circled:before { content: '\eb15'; } /* '' */
.icon-renren-1:before { content: '\eb16'; } /* '' */
.icon-sina-weibo:before { content: '\eb17'; } /* '' */
.icon-paypal-1:before { content: '\eb18'; } /* '' */
.icon-picasa:before { content: '\eb19'; } /* '' */
.icon-soundcloud-1:before { content: '\eb1a'; } /* '' */
.icon-mixi:before { content: '\eb1b'; } /* '' */
.icon-behance-1:before { content: '\eb1c'; } /* '' */
.icon-google-circles:before { content: '\eb1d'; } /* 'î¬' */
.icon-vkontakte-1:before { content: '\eb1e'; } /* '' */
.icon-music-outline:before { content: '\eb1f'; } /* '' */
.icon-music-2:before { content: '\eb20'; } /* 'î¬ ' */
.icon-search-outline:before { content: '\eb21'; } /* '' */
.icon-search-2:before { content: '\eb22'; } /* '' */
.icon-mail-2:before { content: '\eb23'; } /* '' */
.icon-heart-2:before { content: '\eb24'; } /* '' */
.icon-heart-filled:before { content: '\eb25'; } /* '' */
.icon-star-2:before { content: '\eb26'; } /* '' */
.icon-star-filled:before { content: '\eb27'; } /* '' */
.icon-user-outline:before { content: '\eb28'; } /* '' */
.icon-user-2:before { content: '\eb29'; } /* '' */
.icon-users-outline:before { content: '\eb2a'; } /* '' */
.icon-users-2:before { content: '\eb2b'; } /* '' */
.icon-user-add-outline:before { content: '\eb2c'; } /* '' */
.icon-user-add-1:before { content: '\eb2d'; } /* 'î¬' */
.icon-user-delete-outline:before { content: '\eb2e'; } /* '' */
.icon-user-delete:before { content: '\eb2f'; } /* '' */
.icon-video-2:before { content: '\eb30'; } /* '' */
.icon-videocam-outline:before { content: '\eb31'; } /* '' */
.icon-videocam-1:before { content: '\eb32'; } /* '' */
.icon-picture-outline:before { content: '\eb33'; } /* '' */
.icon-picture-2:before { content: '\eb34'; } /* '' */
.icon-camera-outline:before { content: '\eb35'; } /* '' */
.icon-camera-2:before { content: '\eb36'; } /* '' */
.icon-th-outline:before { content: '\eb37'; } /* '' */
.icon-th-1:before { content: '\eb38'; } /* '' */
.icon-th-large-outline:before { content: '\eb39'; } /* '' */
.icon-th-large-1:before { content: '\eb3a'; } /* '' */
.icon-th-list-outline:before { content: '\eb3b'; } /* '' */
.icon-th-list-1:before { content: '\eb3c'; } /* '' */
.icon-ok-outline:before { content: '\eb3d'; } /* '' */
.icon-ok-1:before { content: '\eb3e'; } /* '' */
.icon-cancel-outline:before { content: '\eb3f'; } /* '' */
.icon-cancel-2:before { content: '\eb40'; } /* 'î€' */
.icon-cancel-alt:before { content: '\eb41'; } /* 'î' */
.icon-cancel-alt-filled:before { content: '\eb42'; } /* 'î‚' */
.icon-cancel-circled-outline:before { content: '\eb43'; } /* 'îƒ' */
.icon-cancel-circled-2:before { content: '\eb44'; } /* 'î„' */
.icon-plus-outline:before { content: '\eb45'; } /* 'î…' */
.icon-plus-2:before { content: '\eb46'; } /* 'î†' */
.icon-minus-outline:before { content: '\eb47'; } /* 'î‡' */
.icon-minus-2:before { content: '\eb48'; } /* 'îˆ' */
.icon-divide-outline:before { content: '\eb49'; } /* 'î‰' */
.icon-divide:before { content: '\eb4a'; } /* 'îŠ' */
.icon-eq-outline:before { content: '\eb4b'; } /* 'î‹' */
.icon-eq:before { content: '\eb4c'; } /* 'îŒ' */
.icon-info-outline:before { content: '\eb4d'; } /* 'î' */
.icon-info-2:before { content: '\eb4e'; } /* 'îŽ' */
.icon-home-outline:before { content: '\eb4f'; } /* 'î' */
.icon-home-2:before { content: '\eb50'; } /* 'î' */
.icon-link-outline:before { content: '\eb51'; } /* 'î‘' */
.icon-link-2:before { content: '\eb52'; } /* 'î’' */
.icon-attach-outline:before { content: '\eb53'; } /* 'î“' */
.icon-attach-2:before { content: '\eb54'; } /* 'î”' */
.icon-lock-2:before { content: '\eb55'; } /* 'î•' */
.icon-lock-filled:before { content: '\eb56'; } /* 'î–' */
.icon-lock-open-2:before { content: '\eb57'; } /* 'î—' */
.icon-lock-open-filled:before { content: '\eb58'; } /* 'î˜' */
.icon-pin-outline:before { content: '\eb59'; } /* 'î™' */
.icon-pin-1:before { content: '\eb5a'; } /* 'îš' */
.icon-eye-outline:before { content: '\eb5b'; } /* 'î›' */
.icon-eye-2:before { content: '\eb5c'; } /* 'îœ' */
.icon-tag-2:before { content: '\eb5d'; } /* 'î' */
.icon-tags-1:before { content: '\eb5e'; } /* 'îž' */
.icon-bookmark-2:before { content: '\eb5f'; } /* 'îŸ' */
.icon-flag-2:before { content: '\eb60'; } /* 'î ' */
.icon-flag-filled:before { content: '\eb61'; } /* 'î¡' */
.icon-thumbs-up-2:before { content: '\eb62'; } /* 'î¢' */
.icon-thumbs-down-2:before { content: '\eb63'; } /* 'î£' */
.icon-download-outline:before { content: '\eb64'; } /* 'î¤' */
.icon-download-2:before { content: '\eb65'; } /* 'î¥' */
.icon-upload-outline:before { content: '\eb66'; } /* 'î¦' */
.icon-upload-2:before { content: '\eb67'; } /* 'î§' */
.icon-upload-cloud-outline:before { content: '\eb68'; } /* 'î¨' */
.icon-upload-cloud-2:before { content: '\eb69'; } /* 'î©' */
.icon-reply-outline:before { content: '\eb6a'; } /* 'îª' */
.icon-reply-2:before { content: '\eb6b'; } /* 'î«' */
.icon-forward-outline:before { content: '\eb6c'; } /* 'î¬' */
.icon-forward-2:before { content: '\eb6d'; } /* 'î' */
.icon-code-outline:before { content: '\eb6e'; } /* 'î®' */
.icon-code-2:before { content: '\eb6f'; } /* 'î¯' */
.icon-export-outline:before { content: '\eb70'; } /* 'î°' */
.icon-export-2:before { content: '\eb71'; } /* 'î±' */
.icon-pencil-2:before { content: '\eb72'; } /* 'î²' */
.icon-pen:before { content: '\eb73'; } /* 'î³' */
.icon-feather-1:before { content: '\eb74'; } /* 'î´' */
.icon-edit-1:before { content: '\eb75'; } /* 'îµ' */
.icon-print-2:before { content: '\eb76'; } /* 'î¶' */
.icon-comment-2:before { content: '\eb77'; } /* 'î·' */
.icon-chat-2:before { content: '\eb78'; } /* 'î¸' */
.icon-chat-alt:before { content: '\eb79'; } /* 'î¹' */
.icon-bell-2:before { content: '\eb7a'; } /* 'îº' */
.icon-attention-2:before { content: '\eb7b'; } /* 'î»' */
.icon-attention-filled:before { content: '\eb7c'; } /* 'î¼' */
.icon-warning-empty:before { content: '\eb7d'; } /* 'î½' */
.icon-warning:before { content: '\eb7e'; } /* 'î¾' */
.icon-contacts:before { content: '\eb7f'; } /* 'î¿' */
.icon-vcard-1:before { content: '\eb80'; } /* '' */
.icon-address-1:before { content: '\eb81'; } /* 'î®' */
.icon-location-outline:before { content: '\eb82'; } /* '' */
.icon-location-2:before { content: '\eb83'; } /* '' */
.icon-map-1:before { content: '\eb84'; } /* '' */
.icon-direction-outline:before { content: '\eb85'; } /* 'î®…' */
.icon-direction-2:before { content: '\eb86'; } /* '' */
.icon-compass-2:before { content: '\eb87'; } /* '' */
.icon-trash-2:before { content: '\eb88'; } /* '' */
.icon-doc-2:before { content: '\eb89'; } /* '' */
.icon-doc-text-2:before { content: '\eb8a'; } /* '' */
.icon-doc-add:before { content: '\eb8b'; } /* '' */
.icon-doc-remove:before { content: '\eb8c'; } /* '' */
.icon-news:before { content: '\eb8d'; } /* 'î®' */
.icon-folder-2:before { content: '\eb8e'; } /* '' */
.icon-folder-add:before { content: '\eb8f'; } /* 'î®' */
.icon-folder-delete:before { content: '\eb90'; } /* 'î®' */
.icon-archive-1:before { content: '\eb91'; } /* '' */
.icon-box-2:before { content: '\eb92'; } /* 'î®’' */
.icon-rss-outline:before { content: '\eb93'; } /* '' */
.icon-rss-2:before { content: '\eb94'; } /* 'î®”' */
.icon-phone-outline:before { content: '\eb95'; } /* '' */
.icon-phone-2:before { content: '\eb96'; } /* 'î®–' */
.icon-menu-outline:before { content: '\eb97'; } /* 'î®—' */
.icon-menu-2:before { content: '\eb98'; } /* '' */
.icon-cog-outline:before { content: '\eb99'; } /* 'î®™' */
.icon-cog-2:before { content: '\eb9a'; } /* '' */
.icon-wrench-outline:before { content: '\eb9b'; } /* 'î®›' */
.icon-wrench-1:before { content: '\eb9c'; } /* '' */
.icon-basket-2:before { content: '\eb9d'; } /* 'î®' */
.icon-calendar-outlilne:before { content: '\eb9e'; } /* '' */
.icon-calendar-2:before { content: '\eb9f'; } /* '' */
.icon-mic-outline:before { content: '\eba0'; } /* 'î® ' */