-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfonts.css
1913 lines (1895 loc) · 70.9 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
/*** rt-icons-2 ***/
/**
* https://icomoon.io/
*/
@font-face {
font-family: 'rt-icons-2';
src:url('../fonts/rt-icons-2.eot?wz19bt');
src:url('../fonts/rt-icons-2.eot?#iefixwz19bt') format('embedded-opentype'),
url('../fonts/rt-icons-2.ttf?wz19bt') format('truetype'),
url('../fonts/rt-icons-2.woff?wz19bt') format('woff'),
url('../fonts/rt-icons-2.svg?wz19bt#rt-icons-2') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="rt-icon2-"], [class*=" rt-icon2-"] {
font-family: 'rt-icons-2' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.rt-icon2-mobile2:before{content:"\e000"}
.rt-icon2-laptop2:before{content:"\e001"}
.rt-icon2-desktop2:before{content:"\e002"}
.rt-icon2-tablet2:before{content:"\e003"}
.rt-icon2-phone2:before{content:"\e004"}
.rt-icon2-document:before{content:"\e005"}
.rt-icon2-calendar:before{content:"\e00d"}
.rt-icon2-picture:before{content:"\e00f"}
.rt-icon2-pictures:before{content:"\e010"}
.rt-icon2-video:before{content:"\e011"}
.rt-icon2-camera:before{content:"\e012"}
.rt-icon2-printer:before{content:"\e013"}
.rt-icon2-toolbox:before{content:"\e014"}
.rt-icon2-wallet:before{content:"\e016"}
.rt-icon2-gift:before{content:"\e017"}
.rt-icon2-hourglass:before{content:"\e01f"}
.rt-icon2-lock:before{content:"\e020"}
.rt-icon2-megaphone:before{content:"\e021"}
.rt-icon2-telescope:before{content:"\e02a"}
.rt-icon2-gears:before{content:"\e02b"}
.rt-icon2-key:before{content:"\e02c"}
.rt-icon2-attachment:before{content:"\e02e"}
.rt-icon2-pricetags:before{content:"\e02f"}
.rt-icon2-lightbulb:before{content:"\e030"}
.rt-icon2-layers:before{content:"\e031"}
.rt-icon2-pencil:before{content:"\e032"}
.rt-icon2-tools:before{content:"\e033"}
.rt-icon2-tools-2:before{content:"\e034"}
.rt-icon2-paintbrush:before{content:"\e036"}
.rt-icon2-magnifying-glass:before{content:"\e037"}
.rt-icon2-beaker:before{content:"\e03c"}
.rt-icon2-wine:before{content:"\e043"}
.rt-icon2-globe:before{content:"\e045"}
.rt-icon2-map-pin:before{content:"\e047"}
.rt-icon2-upload:before{content:"\e04c"}
.rt-icon2-download:before{content:"\e04d"}
.rt-icon2-global:before{content:"\e052"}
.rt-icon2-compass:before{content:"\e053"}
.rt-icon2-quote:before{content:"\e600"}
.rt-icon2-quote2:before{content:"\e601"}
.rt-icon2-tag:before{content:"\e602"}
.rt-icon2-link:before{content:"\e603"}
.rt-icon2-cabinet:before{content:"\e604"}
.rt-icon2-calendar2:before{content:"\e605"}
.rt-icon2-calendar3:before{content:"\e606"}
.rt-icon2-file:before{content:"\e607"}
.rt-icon2-phone3:before{content:"\e608"}
.rt-icon2-tablet3:before{content:"\e609"}
.rt-icon2-window:before{content:"\e60a"}
.rt-icon2-monitor:before{content:"\e60b"}
.rt-icon2-ipod:before{content:"\e60c"}
.rt-icon2-tv:before{content:"\e60d"}
.rt-icon2-film2:before{content:"\e60e"}
.rt-icon2-microphone:before{content:"\e60f"}
.rt-icon2-drink:before{content:"\e610"}
.rt-icon2-drink2:before{content:"\e611"}
.rt-icon2-drink3:before{content:"\e612"}
.rt-icon2-coffee2:before{content:"\e613"}
.rt-icon2-mug:before{content:"\e614"}
.rt-icon2-icecream:before{content:"\e615"}
.rt-icon2-cake2:before{content:"\e616"}
.rt-icon2-checkmark:before{content:"\e617"}
.rt-icon2-cancel:before{content:"\e618"}
.rt-icon2-plus:before{content:"\e619"}
.rt-icon2-minus:before{content:"\e61a"}
.rt-icon2-cog2:before{content:"\e61b"}
.rt-icon2-health:before{content:"\e61c"}
.rt-icon2-suitcase2:before{content:"\e61d"}
.rt-icon2-suitcase3:before{content:"\e61e"}
.rt-icon2-picture2:before{content:"\e61f"}
.rt-icon2-time:before{content:"\e620"}
.rt-icon2-checkmark2:before{content:"\e621"}
.rt-icon2-cancel2:before{content:"\e622"}
.rt-icon2-upload2:before{content:"\e623"}
.rt-icon2-location:before{content:"\e624"}
.rt-icon2-download2:before{content:"\e625"}
.rt-icon2-basket:before{content:"\e626"}
.rt-icon2-gamepad:before{content:"\e627"}
.rt-icon2-phone4:before{content:"\e628"}
.rt-icon2-image:before{content:"\e629"}
.rt-icon2-map:before{content:"\e62a"}
.rt-icon2-trashcan:before{content:"\e62b"}
.rt-icon2-graduate:before{content:"\e62c"}
.rt-icon2-lab:before{content:"\e62d"}
.rt-icon2-tie:before{content:"\e62e"}
.rt-icon2-football:before{content:"\e62f"}
.rt-icon2-eightball:before{content:"\e630"}
.rt-icon2-bowling:before{content:"\e631"}
.rt-icon2-bowlingpin:before{content:"\e632"}
.rt-icon2-baseball:before{content:"\e633"}
.rt-icon2-soccer:before{content:"\e634"}
.rt-icon2-3dglasses:before{content:"\e635"}
.rt-icon2-microwave:before{content:"\e636"}
.rt-icon2-refrigerator:before{content:"\e637"}
.rt-icon2-oven:before{content:"\e638"}
.rt-icon2-washingmachine:before{content:"\e639"}
.rt-icon2-mouse:before{content:"\e63a"}
.rt-icon2-medal:before{content:"\e63b"}
.rt-icon2-magnifier:before{content:"\e63c"}
.rt-icon2-stack:before{content:"\e63d"}
.rt-icon2-stack2:before{content:"\e63e"}
.rt-icon2-stack3:before{content:"\e63f"}
.rt-icon2-pil:before{content:"\e640"}
.rt-icon2-injection:before{content:"\e641"}
.rt-icon2-thermometer:before{content:"\e642"}
.rt-icon2-library:before{content:"\e643"}
.rt-icon2-auction:before{content:"\e644"}
.rt-icon2-justice:before{content:"\e645"}
.rt-icon2-pencil2:before{content:"\e646"}
.rt-icon2-male:before{content:"\e647"}
.rt-icon2-female:before{content:"\e648"}
.rt-icon2-pictures2:before{content:"\e649"}
.rt-icon2-compass2:before{content:"\e64a"}
.rt-icon2-clipboard:before{content:"\e64b"}
.rt-icon2-ruler:before{content:"\e64c"}
.rt-icon2-heart:before{content:"\e64d"}
.rt-icon2-cloud:before{content:"\e64e"}
.rt-icon2-star:before{content:"\e64f"}
.rt-icon2-tv2:before{content:"\e650"}
.rt-icon2-sound:before{content:"\e651"}
.rt-icon2-video2:before{content:"\e652"}
.rt-icon2-trash:before{content:"\e653"}
.rt-icon2-user:before{content:"\e654"}
.rt-icon2-key2:before{content:"\e655"}
.rt-icon2-search2:before{content:"\e656"}
.rt-icon2-settings:before{content:"\e657"}
.rt-icon2-camera2:before{content:"\e658"}
.rt-icon2-tag2:before{content:"\e659"}
.rt-icon2-lock2:before{content:"\e65a"}
.rt-icon2-bulb:before{content:"\e65b"}
.rt-icon2-pen:before{content:"\e65c"}
.rt-icon2-diamond2:before{content:"\e65d"}
.rt-icon2-display:before{content:"\e65e"}
.rt-icon2-location2:before{content:"\e65f"}
.rt-icon2-eye:before{content:"\e660"}
.rt-icon2-bubble:before{content:"\e661"}
.rt-icon2-stack4:before{content:"\e662"}
.rt-icon2-cup:before{content:"\e663"}
.rt-icon2-phone5:before{content:"\e664"}
.rt-icon2-news:before{content:"\e665"}
.rt-icon2-mail:before{content:"\e666"}
.rt-icon2-like:before{content:"\e667"}
.rt-icon2-photo:before{content:"\e668"}
.rt-icon2-note:before{content:"\e669"}
.rt-icon2-clock:before{content:"\e66a"}
.rt-icon2-paperplane:before{content:"\e66b"}
.rt-icon2-params:before{content:"\e66c"}
.rt-icon2-banknote:before{content:"\e66d"}
.rt-icon2-data:before{content:"\e66e"}
.rt-icon2-music:before{content:"\e66f"}
.rt-icon2-megaphone2:before{content:"\e670"}
.rt-icon2-study:before{content:"\e671"}
.rt-icon2-lab2:before{content:"\e672"}
.rt-icon2-food:before{content:"\e673"}
.rt-icon2-t-shirt:before{content:"\e674"}
.rt-icon2-fire:before{content:"\e675"}
.rt-icon2-clip:before{content:"\e676"}
.rt-icon2-shop:before{content:"\e677"}
.rt-icon2-calendar4:before{content:"\e678"}
.rt-icon2-wallet2:before{content:"\e679"}
.rt-icon2-vynil:before{content:"\e67a"}
.rt-icon2-truck:before{content:"\e67b"}
.rt-icon2-world:before{content:"\e67c"}
.rt-icon2-sun:before{content:"\e67d"}
.rt-icon2-moon:before{content:"\e67e"}
.rt-icon2-cloudy:before{content:"\e67f"}
.rt-icon2-lightning:before{content:"\e680"}
.rt-icon2-rainy:before{content:"\e681"}
.rt-icon2-rainy2:before{content:"\e682"}
.rt-icon2-snowy:before{content:"\e683"}
.rt-icon2-snowy2:before{content:"\e684"}
.rt-icon2-weather:before{content:"\e685"}
.rt-icon2-store:before{content:"\e686"}
.rt-icon2-out:before{content:"\e687"}
.rt-icon2-in:before{content:"\e688"}
.rt-icon2-in-alt:before{content:"\e689"}
.rt-icon2-home:before{content:"\e68a"}
.rt-icon2-lightbulb2:before{content:"\e68b"}
.rt-icon2-anchor:before{content:"\e68c"}
.rt-icon2-feather:before{content:"\e68d"}
.rt-icon2-expand:before{content:"\e68e"}
.rt-icon2-maximize:before{content:"\e68f"}
.rt-icon2-search3:before{content:"\e690"}
.rt-icon2-add:before{content:"\e691"}
.rt-icon2-subtract:before{content:"\e692"}
.rt-icon2-close2:before{content:"\e693"}
.rt-icon2-book:before{content:"\e694"}
.rt-icon2-spinner:before{content:"\e695"}
.rt-icon2-play:before{content:"\e696"}
.rt-icon2-stop:before{content:"\e697"}
.rt-icon2-pause:before{content:"\e698"}
.rt-icon2-forward:before{content:"\e699"}
.rt-icon2-rewind:before{content:"\e69a"}
.rt-icon2-sound2:before{content:"\e69b"}
.rt-icon2-sound-alt:before{content:"\e69c"}
.rt-icon2-soundoff:before{content:"\e69d"}
.rt-icon2-inbox:before{content:"\e69e"}
.rt-icon2-inbox-alt:before{content:"\e69f"}
.rt-icon2-envelope:before{content:"\e6a0"}
.rt-icon2-compose:before{content:"\e6a1"}
.rt-icon2-newspaper-alt:before{content:"\e6a2"}
.rt-icon2-calendar5:before{content:"\e6a3"}
.rt-icon2-hyperlink:before{content:"\e6a4"}
.rt-icon2-trash2:before{content:"\e6a5"}
.rt-icon2-menu:before{content:"\e6a6"}
.rt-icon2-gallery:before{content:"\e6a7"}
.rt-icon2-calculator:before{content:"\e6a8"}
.rt-icon2-clock2:before{content:"\e6a9"}
.rt-icon2-portfolio:before{content:"\e6aa"}
.rt-icon2-user2:before{content:"\e6ab"}
.rt-icon2-users:before{content:"\e6ac"}
.rt-icon2-heart2:before{content:"\e6ad"}
.rt-icon2-chat:before{content:"\e6ae"}
.rt-icon2-comments:before{content:"\e6af"}
.rt-icon2-screen:before{content:"\e6b0"}
.rt-icon2-iphone:before{content:"\e6b1"}
.rt-icon2-instagram:before{content:"\e6b2"}
.rt-icon2-pin-alt:before{content:"\e6b3"}
.rt-icon2-camera3:before{content:"\e6b4"}
.rt-icon2-chevron-down:before{content:"\f0a3"}
.rt-icon2-chevron-left:before{content:"\f0a4"}
.rt-icon2-chevron-right:before{content:"\f078"}
.rt-icon2-chevron-up:before{content:"\f0a2"}
.rt-icon2-quote3:before{content:"\f063"}
.rt-icon2-search4:before{content:"\f02e"}
.rt-icon2-triangle-down:before{content:"\f05b"}
.rt-icon2-triangle-left:before{content:"\f044"}
.rt-icon2-triangle-right:before{content:"\f05a"}
.rt-icon2-triangle-up:before{content:"\f0aa"}
.rt-icon2-file-empty:before{content:"\e924"}
.rt-icon2-files-empty:before{content:"\e925"}
.rt-icon2-file-text2:before{content:"\e926"}
.rt-icon2-file-picture:before{content:"\e927"}
.rt-icon2-file-music:before{content:"\e928"}
.rt-icon2-file-play:before{content:"\e929"}
.rt-icon2-file-video:before{content:"\e92a"}
.rt-icon2-file-zip:before{content:"\e92b"}
.rt-icon2-phone6:before{content:"\e942"}
.rt-icon2-quotes-left:before{content:"\e977"}
.rt-icon2-quotes-right:before{content:"\e978"}
.rt-icon2-spinner6:before{content:"\e97f"}
.rt-icon2-magnet:before{content:"\e9ab"}
.rt-icon2-google:before{content:"\ea87"}
.rt-icon2-google-plus:before{content:"\ea88"}
.rt-icon2-google-plus2:before{content:"\ea89"}
.rt-icon2-google-plus3:before{content:"\ea8a"}
.rt-icon2-google-drive:before{content:"\ea8b"}
.rt-icon2-facebook:before{content:"\ea8c"}
.rt-icon2-facebook2:before{content:"\ea8d"}
.rt-icon2-facebook3:before{content:"\ea8e"}
.rt-icon2-instagram2:before{content:"\ea90"}
.rt-icon2-twitter:before{content:"\ea91"}
.rt-icon2-twitter2:before{content:"\ea92"}
.rt-icon2-twitter3:before{content:"\ea93"}
.rt-icon2-feed2:before{content:"\ea94"}
.rt-icon2-feed3:before{content:"\ea95"}
.rt-icon2-feed4:before{content:"\ea96"}
.rt-icon2-youtube5:before{content:"\ea97"}
.rt-icon2-youtube2:before{content:"\ea98"}
.rt-icon2-youtube3:before{content:"\ea99"}
.rt-icon2-youtube4:before{content:"\ea9a"}
.rt-icon2-vimeo:before{content:"\ea9c"}
.rt-icon2-vimeo2:before{content:"\ea9d"}
.rt-icon2-vimeo3:before{content:"\ea9e"}
.rt-icon2-lanyrd:before{content:"\ea9f"}
.rt-icon2-flickr:before{content:"\eaa0"}
.rt-icon2-flickr2:before{content:"\eaa1"}
.rt-icon2-flickr3:before{content:"\eaa2"}
.rt-icon2-flickr4:before{content:"\eaa3"}
.rt-icon2-picassa:before{content:"\eaa4"}
.rt-icon2-picassa2:before{content:"\eaa5"}
.rt-icon2-dribbble:before{content:"\eaa6"}
.rt-icon2-dribbble2:before{content:"\eaa7"}
.rt-icon2-dribbble3:before{content:"\eaa8"}
.rt-icon2-dropbox:before{content:"\eaaf"}
.rt-icon2-github3:before{content:"\eab3"}
.rt-icon2-wordpress:before{content:"\eab6"}
.rt-icon2-wordpress2:before{content:"\eab7"}
.rt-icon2-joomla:before{content:"\eab8"}
.rt-icon2-blogger:before{content:"\eab9"}
.rt-icon2-blogger2:before{content:"\eaba"}
.rt-icon2-tumblr:before{content:"\eabb"}
.rt-icon2-tumblr2:before{content:"\eabc"}
.rt-icon2-apple:before{content:"\eabf"}
.rt-icon2-android:before{content:"\eac1"}
.rt-icon2-windows:before{content:"\eac2"}
.rt-icon2-windows8:before{content:"\eac3"}
.rt-icon2-skype:before{content:"\eac6"}
.rt-icon2-reddit:before{content:"\eac7"}
.rt-icon2-linkedin:before{content:"\eac8"}
.rt-icon2-linkedin2:before{content:"\eac9"}
.rt-icon2-lastfm:before{content:"\eaca"}
.rt-icon2-lastfm2:before{content:"\eacb"}
.rt-icon2-delicious:before{content:"\eacc"}
.rt-icon2-stumbleupon:before{content:"\eacd"}
.rt-icon2-stumbleupon2:before{content:"\eace"}
.rt-icon2-pinterest:before{content:"\ead0"}
.rt-icon2-pinterest2:before{content:"\ead1"}
.rt-icon2-html5:before{content:"\eadf"}
.rt-icon2-html52:before{content:"\eae0"}
.rt-icon2-css3:before{content:"\eae1"}
.rt-icon2-chrome:before{content:"\eae5"}
.rt-icon2-firefox:before{content:"\eae6"}
.rt-icon2-IE:before{content:"\eae7"}
.rt-icon2-opera:before{content:"\eae8"}
.rt-icon2-safari:before{content:"\eae9"}
.rt-icon2-times2:before{content:"\e6b5"}
.rt-icon2-tick:before{content:"\e6b6"}
.rt-icon2-plus2:before{content:"\e6b7"}
.rt-icon2-minus2:before{content:"\e6b8"}
.rt-icon2-equals:before{content:"\e6b9"}
.rt-icon2-divide:before{content:"\e6ba"}
.rt-icon2-chevron-right2:before{content:"\e6bb"}
.rt-icon2-chevron-left2:before{content:"\e6bc"}
.rt-icon2-arrow-right-thick:before{content:"\e6bd"}
.rt-icon2-arrow-left-thick:before{content:"\e6be"}
.rt-icon2-home2:before{content:"\e6bf"}
.rt-icon2-arrow-forward:before{content:"\e6c0"}
.rt-icon2-arrow-back:before{content:"\e6c1"}
.rt-icon2-link2:before{content:"\e6c2"}
.rt-icon2-image2:before{content:"\e6c3"}
.rt-icon2-delete-outline:before{content:"\e6c4"}
.rt-icon2-cloud-storage:before{content:"\e6c5"}
.rt-icon2-heart3:before{content:"\e6c6"}
.rt-icon2-attachment2:before{content:"\e6c7"}
.rt-icon2-media-pause:before{content:"\e6c8"}
.rt-icon2-group:before{content:"\e6c9"}
.rt-icon2-chart-pie:before{content:"\e6ca"}
.rt-icon2-chart-line:before{content:"\e6cb"}
.rt-icon2-chart-bar:before{content:"\e6cc"}
.rt-icon2-chart-area:before{content:"\e6cd"}
.rt-icon2-globe2:before{content:"\e6ce"}
.rt-icon2-eye2:before{content:"\e6cf"}
.rt-icon2-cog3:before{content:"\e6d0"}
.rt-icon2-camera4:before{content:"\e6d1"}
.rt-icon2-refresh:before{content:"\e6d2"}
.rt-icon2-info-large:before{content:"\e6d3"}
.rt-icon2-zoom:before{content:"\e6d4"}
.rt-icon2-zoom-out:before{content:"\e6d5"}
.rt-icon2-zoom-in:before{content:"\e6d6"}
.rt-icon2-sort-numerically:before{content:"\e6d7"}
.rt-icon2-sort-alphabetically:before{content:"\e6d8"}
.rt-icon2-input-checked:before{content:"\e6d9"}
.rt-icon2-calender:before{content:"\e6da"}
.rt-icon2-spanner:before{content:"\e6db"}
.rt-icon2-phone7:before{content:"\e6dc"}
.rt-icon2-media-rewind:before{content:"\e6dd"}
.rt-icon2-adjust-brightness:before{content:"\e6de"}
.rt-icon2-waves:before{content:"\e6df"}
.rt-icon2-social-twitter:before{content:"\e6e0"}
.rt-icon2-social-facebook:before{content:"\e6e1"}
.rt-icon2-social-dribbble:before{content:"\e6e2"}
.rt-icon2-media-stop:before{content:"\e6e3"}
.rt-icon2-media-record:before{content:"\e6e4"}
.rt-icon2-media-play:before{content:"\e6e5"}
.rt-icon2-media-fast-forward:before{content:"\e6e6"}
.rt-icon2-media-eject:before{content:"\e6e7"}
.rt-icon2-social-vimeo:before{content:"\e6e8"}
.rt-icon2-social-tumbler:before{content:"\e6e9"}
.rt-icon2-social-skype:before{content:"\e6ea"}
.rt-icon2-social-pinterest:before{content:"\e6eb"}
.rt-icon2-social-linkedin:before{content:"\e6ec"}
.rt-icon2-social-last-fm:before{content:"\e6ed"}
.rt-icon2-social-github:before{content:"\e6ee"}
.rt-icon2-social-flickr:before{content:"\e6ef"}
.rt-icon2-at:before{content:"\e6f0"}
.rt-icon2-times-outline:before{content:"\e6f1"}
.rt-icon2-plus-outline:before{content:"\e6f2"}
.rt-icon2-minus-outline:before{content:"\e6f3"}
.rt-icon2-tick-outline:before{content:"\e6f4"}
.rt-icon2-th-large-outline:before{content:"\e6f5"}
.rt-icon2-equals-outline:before{content:"\e6f6"}
.rt-icon2-divide-outline:before{content:"\e6f7"}
.rt-icon2-chevron-right-outline:before{content:"\e6f8"}
.rt-icon2-chevron-left-outline:before{content:"\e6f9"}
.rt-icon2-arrow-right-outline:before{content:"\e6fa"}
.rt-icon2-arrow-left-outline:before{content:"\e6fb"}
.rt-icon2-th-small-outline:before{content:"\e6fc"}
.rt-icon2-th-menu-outline:before{content:"\e6fd"}
.rt-icon2-th-list-outline:before{content:"\e6fe"}
.rt-icon2-home-outline:before{content:"\e6ff"}
.rt-icon2-arrow-up-outline:before{content:"\e700"}
.rt-icon2-arrow-forward-outline:before{content:"\e701"}
.rt-icon2-arrow-down-outline:before{content:"\e702"}
.rt-icon2-arrow-back-outline:before{content:"\e703"}
.rt-icon2-trash3:before{content:"\e704"}
.rt-icon2-rss-outline:before{content:"\e705"}
.rt-icon2-message:before{content:"\e706"}
.rt-icon2-location-outline:before{content:"\e707"}
.rt-icon2-link-outline:before{content:"\e708"}
.rt-icon2-image-outline:before{content:"\e709"}
.rt-icon2-export-outline:before{content:"\e70a"}
.rt-icon2-cross:before{content:"\e70b"}
.rt-icon2-wi-fi-outline:before{content:"\e70c"}
.rt-icon2-star-outline:before{content:"\e70d"}
.rt-icon2-media-pause-outline:before{content:"\e70e"}
.rt-icon2-mail2:before{content:"\e70f"}
.rt-icon2-heart-outline:before{content:"\e710"}
.rt-icon2-flash-outline:before{content:"\e711"}
.rt-icon2-cancel-outline:before{content:"\e712"}
.rt-icon2-arrow-move-outline:before{content:"\e713"}
.rt-icon2-watch:before{content:"\e714"}
.rt-icon2-warning-outline:before{content:"\e715"}
.rt-icon2-time2:before{content:"\e716"}
.rt-icon2-radar-outline:before{content:"\e717"}
.rt-icon2-lock-open-outline:before{content:"\e718"}
.rt-icon2-location-arrow-outline:before{content:"\e719"}
.rt-icon2-info-outline:before{content:"\e71a"}
.rt-icon2-backspace-outline:before{content:"\e71b"}
.rt-icon2-attachment-outline:before{content:"\e71c"}
.rt-icon2-user-outline:before{content:"\e71d"}
.rt-icon2-user-delete-outline:before{content:"\e71e"}
.rt-icon2-user-add-outline:before{content:"\e71f"}
.rt-icon2-lock-closed-outline:before{content:"\e720"}
.rt-icon2-group-outline:before{content:"\e721"}
.rt-icon2-chart-pie-outline:before{content:"\e722"}
.rt-icon2-chart-line-outline:before{content:"\e723"}
.rt-icon2-chart-bar-outline:before{content:"\e724"}
.rt-icon2-chart-area-outline:before{content:"\e725"}
.rt-icon2-video-outline:before{content:"\e726"}
.rt-icon2-point-of-interest-outline:before{content:"\e727"}
.rt-icon2-map2:before{content:"\e728"}
.rt-icon2-key-outline:before{content:"\e729"}
.rt-icon2-infinity-outline:before{content:"\e72a"}
.rt-icon2-globe-outline:before{content:"\e72b"}
.rt-icon2-eye-outline:before{content:"\e72c"}
.rt-icon2-cog-outline:before{content:"\e72d"}
.rt-icon2-camera-outline:before{content:"\e72e"}
.rt-icon2-support:before{content:"\e72f"}
.rt-icon2-scissors-outline:before{content:"\e730"}
.rt-icon2-refresh-outline:before{content:"\e731"}
.rt-icon2-info-large-outline:before{content:"\e732"}
.rt-icon2-download-outline:before{content:"\e733"}
.rt-icon2-battery-low:before{content:"\e734"}
.rt-icon2-zoom-outline:before{content:"\e735"}
.rt-icon2-zoom-out-outline:before{content:"\e736"}
.rt-icon2-zoom-in-outline:before{content:"\e737"}
.rt-icon2-tag3:before{content:"\e738"}
.rt-icon2-tabs-outline:before{content:"\e739"}
.rt-icon2-pin-outline:before{content:"\e73a"}
.rt-icon2-message-typing:before{content:"\e73b"}
.rt-icon2-directions:before{content:"\e73c"}
.rt-icon2-battery-full:before{content:"\e73d"}
.rt-icon2-battery-charge:before{content:"\e73e"}
.rt-icon2-pencil3:before{content:"\e73f"}
.rt-icon2-folder:before{content:"\e740"}
.rt-icon2-folder-delete:before{content:"\e741"}
.rt-icon2-folder-add:before{content:"\e742"}
.rt-icon2-edit:before{content:"\e743"}
.rt-icon2-document2:before{content:"\e744"}
.rt-icon2-document-delete:before{content:"\e745"}
.rt-icon2-document-add:before{content:"\e746"}
.rt-icon2-brush:before{content:"\e747"}
.rt-icon2-thumbs-up:before{content:"\e748"}
.rt-icon2-thumbs-down:before{content:"\e749"}
.rt-icon2-pen2:before{content:"\e74a"}
.rt-icon2-sort-numerically-outline:before{content:"\e74b"}
.rt-icon2-sort-alphabetically-outline:before{content:"\e74c"}
.rt-icon2-social-last-fm-circular:before{content:"\e74d"}
.rt-icon2-social-github-circular:before{content:"\e74e"}
.rt-icon2-compass3:before{content:"\e74f"}
.rt-icon2-code-outline:before{content:"\e750"}
.rt-icon2-calender-outline:before{content:"\e751"}
.rt-icon2-business-card:before{content:"\e752"}
.rt-icon2-arrow-up:before{content:"\e753"}
.rt-icon2-arrow-right:before{content:"\e754"}
.rt-icon2-arrow-left:before{content:"\e755"}
.rt-icon2-document-text:before{content:"\e756"}
.rt-icon2-clipboard2:before{content:"\e757"}
.rt-icon2-calculator2:before{content:"\e758"}
.rt-icon2-arrow-minimise-outline:before{content:"\e759"}
.rt-icon2-arrow-maximise-outline:before{content:"\e75a"}
.rt-icon2-arrow-down:before{content:"\e75b"}
.rt-icon2-gift2:before{content:"\e75c"}
.rt-icon2-film3:before{content:"\e75d"}
.rt-icon2-bell:before{content:"\e75e"}
.rt-icon2-anchor-outline:before{content:"\e75f"}
.rt-icon2-world-outline:before{content:"\e760"}
.rt-icon2-shopping-bag:before{content:"\e761"}
.rt-icon2-power-outline:before{content:"\e762"}
.rt-icon2-notes-outline:before{content:"\e763"}
.rt-icon2-device-tablet:before{content:"\e764"}
.rt-icon2-device-phone:before{content:"\e765"}
.rt-icon2-device-laptop:before{content:"\e766"}
.rt-icon2-device-desktop:before{content:"\e767"}
.rt-icon2-briefcase:before{content:"\e768"}
.rt-icon2-stopwatch:before{content:"\e769"}
.rt-icon2-spanner-outline:before{content:"\e76a"}
.rt-icon2-puzzle-outline:before{content:"\e76b"}
.rt-icon2-printer2:before{content:"\e76c"}
.rt-icon2-lightbulb3:before{content:"\e76d"}
.rt-icon2-flag-outline:before{content:"\e76e"}
.rt-icon2-contacts:before{content:"\e76f"}
.rt-icon2-weather-stormy:before{content:"\e770"}
.rt-icon2-weather-shower:before{content:"\e771"}
.rt-icon2-weather-partly-sunny:before{content:"\e772"}
.rt-icon2-weather-downpour:before{content:"\e773"}
.rt-icon2-weather-cloudy:before{content:"\e774"}
.rt-icon2-plane-outline:before{content:"\e775"}
.rt-icon2-phone-outline:before{content:"\e776"}
.rt-icon2-microphone-outline:before{content:"\e777"}
.rt-icon2-weather-windy:before{content:"\e778"}
.rt-icon2-weather-windy-cloudy:before{content:"\e779"}
.rt-icon2-weather-sunny:before{content:"\e77a"}
.rt-icon2-weather-snow:before{content:"\e77b"}
.rt-icon2-weather-night:before{content:"\e77c"}
.rt-icon2-media-stop-outline:before{content:"\e77d"}
.rt-icon2-media-rewind-outline:before{content:"\e77e"}
.rt-icon2-media-record-outline:before{content:"\e77f"}
.rt-icon2-media-play-outline:before{content:"\e780"}
.rt-icon2-media-fast-forward-outline:before{content:"\e781"}
.rt-icon2-media-eject-outline:before{content:"\e782"}
.rt-icon2-wine2:before{content:"\e783"}
.rt-icon2-waves-outline:before{content:"\e784"}
.rt-icon2-ticket:before{content:"\e785"}
.rt-icon2-tags2:before{content:"\e786"}
.rt-icon2-plug:before{content:"\e787"}
.rt-icon2-headphones:before{content:"\e788"}
.rt-icon2-credit-card:before{content:"\e789"}
.rt-icon2-coffee3:before{content:"\e78a"}
.rt-icon2-book2:before{content:"\e78b"}
.rt-icon2-beer:before{content:"\e78c"}
.rt-icon2-volume:before{content:"\e78d"}
.rt-icon2-volume-up:before{content:"\e78e"}
.rt-icon2-volume-mute:before{content:"\e78f"}
.rt-icon2-volume-down:before{content:"\e790"}
.rt-icon2-social-vimeo-circular:before{content:"\e791"}
.rt-icon2-social-twitter-circular:before{content:"\e792"}
.rt-icon2-social-pinterest-circular:before{content:"\e793"}
.rt-icon2-social-linkedin-circular:before{content:"\e794"}
.rt-icon2-social-facebook-circular:before{content:"\e795"}
.rt-icon2-social-dribbble-circular:before{content:"\e796"}
.rt-icon2-tree:before{content:"\e797"}
.rt-icon2-thermometer2:before{content:"\e798"}
.rt-icon2-social-tumbler-circular:before{content:"\e799"}
.rt-icon2-social-skype-outline:before{content:"\e79a"}
.rt-icon2-social-flickr-circular:before{content:"\e79b"}
.rt-icon2-social-at-circular:before{content:"\e79c"}
.rt-icon2-shopping-cart:before{content:"\e79d"}
.rt-icon2-messages:before{content:"\e79e"}
.rt-icon2-leaf:before{content:"\e79f"}
.rt-icon2-feather2:before{content:"\e7a0"}
.rt-icon2-keyboard_arrow_down:before{content:"\e10f"}
.rt-icon2-keyboard_arrow_left:before{content:"\e110"}
.rt-icon2-keyboard_arrow_right:before{content:"\e111"}
.rt-icon2-keyboard_arrow_up:before{content:"\e112"}
.rt-icon2-directions_bus:before{content:"\e1ca"}
.rt-icon2-directions_car:before{content:"\e1cb"}
.rt-icon2-directions_ferry:before{content:"\e1cc"}
.rt-icon2-directions_subway:before{content:"\e1cd"}
.rt-icon2-directions_railway:before{content:"\e1ce"}
.rt-icon2-directions_walk:before{content:"\e1d0"}
.rt-icon2-flight:before{content:"\e1d1"}
.rt-icon2-restaurant_menu:before{content:"\e1f9"}
.rt-icon2-wifi:before{content:"\e242"}
.rt-icon2-cake:before{content:"\e243"}
.rt-icon2-favorite_outline:before{content:"\e292"}
.rt-icon2-lock_open:before{content:"\e2ac"}
.rt-icon2-lock_outline:before{content:"\e2ad"}
.rt-icon2-perm_identity:before{content:"\e2ba"}
.rt-icon2-search:before{content:"\e2ca"}
.rt-icon2-eye3:before{content:"\e006"}
.rt-icon2-paper-clip:before{content:"\e007"}
.rt-icon2-mail3:before{content:"\e008"}
.rt-icon2-image3:before{content:"\e015"}
.rt-icon2-clock3:before{content:"\e018"}
.rt-icon2-watch2:before{content:"\e019"}
.rt-icon2-camera5:before{content:"\e01a"}
.rt-icon2-video3:before{content:"\e01b"}
.rt-icon2-monitor2:before{content:"\e022"}
.rt-icon2-cog4:before{content:"\e023"}
.rt-icon2-heart4:before{content:"\e024"}
.rt-icon2-layers2:before{content:"\e035"}
.rt-icon2-paper:before{content:"\e038"}
.rt-icon2-search5:before{content:"\e039"}
.rt-icon2-microphone2:before{content:"\e048"}
.rt-icon2-umbrella2:before{content:"\e060"}
.rt-icon2-moon2:before{content:"\e061"}
.rt-icon2-thermometer3:before{content:"\e062"}
.rt-icon2-drop:before{content:"\e063"}
.rt-icon2-sun2:before{content:"\e064"}
.rt-icon2-cloud2:before{content:"\e065"}
.rt-icon2-map3:before{content:"\e072"}
.rt-icon2-head:before{content:"\e074"}
.rt-icon2-briefcase2:before{content:"\e075"}
.rt-icon2-speech-bubble:before{content:"\e076"}
.rt-icon2-globe3:before{content:"\e078"}
.rt-icon2-tag4:before{content:"\e085"}
.rt-icon2-star2:before{content:"\e093"}
.rt-icon2-plus3:before{content:"\e114"}
.rt-icon2-minus3:before{content:"\e115"}
.rt-icon2-check2:before{content:"\e116"}
.rt-icon2-cross2:before{content:"\e117"}
.rt-icon2-help:before{content:"\e127"}
.rt-icon2-files:before{content:"\e7a1"}
.rt-icon2-file2:before{content:"\e7a2"}
.rt-icon2-browser:before{content:"\e7a3"}
.rt-icon2-wifi-full:before{content:"\e7a4"}
.rt-icon2-microphone3:before{content:"\e7a5"}
.rt-icon2-trashcan2:before{content:"\e7a6"}
.rt-icon2-search6:before{content:"\e7a7"}
.rt-icon2-calendar6:before{content:"\e7a8"}
.rt-icon2-heart5:before{content:"\e7a9"}
.rt-icon2-star3:before{content:"\e7aa"}
.rt-icon2-clock4:before{content:"\e7ab"}
.rt-icon2-users2:before{content:"\e7ac"}
.rt-icon2-user3:before{content:"\e7ad"}
.rt-icon2-creditcards:before{content:"\e7ae"}
.rt-icon2-calculator3:before{content:"\e7af"}
.rt-icon2-bag:before{content:"\e7b0"}
.rt-icon2-diamond3:before{content:"\e7b1"}
.rt-icon2-drink4:before{content:"\e7b2"}
.rt-icon2-shorts:before{content:"\e7b3"}
.rt-icon2-coffee4:before{content:"\e7b4"}
.rt-icon2-map4:before{content:"\e7b5"}
.rt-icon2-syringe:before{content:"\e7b6"}
.rt-icon2-pill:before{content:"\e7b7"}
.rt-icon2-lab3:before{content:"\e7b8"}
.rt-icon2-mug2:before{content:"\e7b9"}
.rt-icon2-chart:before{content:"\e7ba"}
.rt-icon2-pencil4:before{content:"\e7bb"}
.rt-icon2-envelope-o:before{content:"\f003"}
.rt-icon2-star-o:before{content:"\f006"}
.rt-icon2-film:before{content:"\f008"}
.rt-icon2-check:before{content:"\f00c"}
.rt-icon2-close:before{content:"\f00d"}
.rt-icon2-remove:before{content:"\f00d"}
.rt-icon2-times:before{content:"\f00d"}
.rt-icon2-cog:before{content:"\f013"}
.rt-icon2-gear:before{content:"\f013"}
.rt-icon2-trash-o:before{content:"\f014"}
.rt-icon2-file-o:before{content:"\f016"}
.rt-icon2-clock-o:before{content:"\f017"}
.rt-icon2-tags:before{content:"\f02c"}
.rt-icon2-thumbs-o-up:before{content:"\f087"}
.rt-icon2-thumbs-o-down:before{content:"\f088"}
.rt-icon2-heart-o:before{content:"\f08a"}
.rt-icon2-phone:before{content:"\f095"}
.rt-icon2-umbrella:before{content:"\f0e9"}
.rt-icon2-lightbulb-o:before{content:"\f0eb"}
.rt-icon2-user-md:before{content:"\f0f0"}
.rt-icon2-stethoscope:before{content:"\f0f1"}
.rt-icon2-suitcase:before{content:"\f0f2"}
.rt-icon2-coffee:before{content:"\f0f4"}
.rt-icon2-cutlery:before{content:"\f0f5"}
.rt-icon2-file-text-o:before{content:"\f0f6"}
.rt-icon2-building-o:before{content:"\f0f7"}
.rt-icon2-hospital-o:before{content:"\f0f8"}
.rt-icon2-ambulance:before{content:"\f0f9"}
.rt-icon2-medkit:before{content:"\f0fa"}
.rt-icon2-angle-left:before{content:"\f104"}
.rt-icon2-angle-right:before{content:"\f105"}
.rt-icon2-angle-up:before{content:"\f106"}
.rt-icon2-angle-down:before{content:"\f107"}
.rt-icon2-desktop:before{content:"\f108"}
.rt-icon2-laptop:before{content:"\f109"}
.rt-icon2-tablet:before{content:"\f10a"}
.rt-icon2-mobile:before{content:"\f10b"}
.rt-icon2-mobile-phone:before{content:"\f10b"}
.rt-icon2-quote-left:before{content:"\f10d"}
.rt-icon2-quote-right:before{content:"\f10e"}
.rt-icon2-youtube:before{content:"\f167"}
.rt-icon2-file-pdf-o:before{content:"\f1c1"}
.rt-icon2-file-word-o:before{content:"\f1c2"}
.rt-icon2-file-excel-o:before{content:"\f1c3"}
.rt-icon2-file-powerpoint-o:before{content:"\f1c4"}
.rt-icon2-file-image-o:before{content:"\f1c5"}
.rt-icon2-file-photo-o:before{content:"\f1c5"}
.rt-icon2-file-picture-o:before{content:"\f1c5"}
.rt-icon2-file-archive-o:before{content:"\f1c6"}
.rt-icon2-file-zip-o:before{content:"\f1c6"}
.rt-icon2-file-audio-o:before{content:"\f1c7"}
.rt-icon2-file-sound-o:before{content:"\f1c7"}
.rt-icon2-file-movie-o:before{content:"\f1c8"}
.rt-icon2-file-video-o:before{content:"\f1c8"}
.rt-icon2-file-code-o:before{content:"\f1c9"}
.rt-icon2-paper-plane-o:before{content:"\f1d9"}
.rt-icon2-send-o:before{content:"\f1d9"}
.rt-icon2-futbol-o:before{content:"\f1e3"}
.rt-icon2-soccer-ball-o:before{content:"\f1e3"}
.rt-icon2-birthday-cake:before{content:"\f1fd"}
.rt-icon2-diamond:before{content:"\f219"}
.rt-icon2-whatsapp:before{content:"\f232"}
.rt-icon2-chevron-down2:before{content:"\e7bc"}
.rt-icon2-chevron-left3:before{content:"\e7bd"}
.rt-icon2-chevron-right3:before{content:"\e7be"}
.rt-icon2-chevron-small-down:before{content:"\e7bf"}
.rt-icon2-chevron-small-left:before{content:"\e7c0"}
.rt-icon2-chevron-small-right:before{content:"\e7c1"}
.rt-icon2-chevron-small-up:before{content:"\e7c2"}
.rt-icon2-chevron-thin-down:before{content:"\e7c3"}
.rt-icon2-chevron-thin-left:before{content:"\e7c4"}
.rt-icon2-chevron-thin-right:before{content:"\e7c5"}
.rt-icon2-chevron-thin-up:before{content:"\e7c6"}
.rt-icon2-chevron-up2:before{content:"\e7c7"}
.rt-icon2-code:before{content:"\e7c8"}
.rt-icon2-light-bulb:before{content:"\e7c9"}
.rt-icon2-magnifying-glass2:before{content:"\e7ca"}
.rt-icon2-map5:before{content:"\e7cb"}
.rt-icon2-scissors:before{content:"\e7cc"}
.rt-icon2-tools2:before{content:"\e7cd"}
.rt-icon2-box:before{content:"\e7ce"}
.rt-icon2-write:before{content:"\e7cf"}
.rt-icon2-clock5:before{content:"\e7d0"}
.rt-icon2-search7:before{content:"\e7d1"}
.rt-icon2-trash4:before{content:"\e7d2"}
.rt-icon2-envelope2:before{content:"\e7d3"}
.rt-icon2-bubble2:before{content:"\e7d4"}
.rt-icon2-camera6:before{content:"\e7d5"}
.rt-icon2-image4:before{content:"\e7d6"}
.rt-icon2-tag5:before{content:"\e7d7"}
.rt-icon2-heart6:before{content:"\e7d8"}
.rt-icon2-video-camera:before{content:"\e7d9"}
.rt-icon2-cart:before{content:"\e7da"}
.rt-icon2-film4:before{content:"\e7db"}
.rt-icon2-home3:before{content:"\e7dc"}
/*** social icons ***/
/**
* http://www.socicon.com
*/
@font-face {
font-family: "socicon";
src:url("../fonts/socicon.eot");
src:url("../fonts/socicon.eot?#iefix") format("embedded-opentype"),
url("../fonts/socicon.woff") format("woff"),
url("../fonts/socicon.ttf") format("truetype"),
url("../fonts/socicon.svg#socicon") format("svg");
font-weight: normal;
font-style: normal;
}
.soc-modelmayhem:before{content:"\e000"}
.soc-mixcloud:before{content:"\e001"}
.soc-drupal:before{content:"\e002"}
.soc-swarm:before{content:"\e003"}
.soc-istock:before{content:"\e004"}
.soc-yammer:before{content:"\e005"}
.soc-ello:before{content:"\e006"}
.soc-stackoverflow:before{content:"\e007"}
.soc-persona:before{content:"\e008"}
.soc-triplej:before{content:"\e009"}
.soc-houzz:before{content:"\e00a"}
.soc-rss:before{content:"\e00b"}
.soc-paypal:before{content:"\e00c"}
.soc-odnoklassniki:before{content:"\e00d"}
.soc-airbnb:before{content:"\e00e"}
.soc-periscope:before{content:"\e00f"}
.soc-outlook:before{content:"\e010"}
.soc-coderwall:before{content:"\e011"}
.soc-tripadvisor:before{content:"\e012"}
.soc-appnet:before{content:"\e013"}
.soc-goodreads:before{content:"\e014"}
.soc-tripit:before{content:"\e015"}
.soc-lanyrd:before{content:"\e016"}
.soc-slideshare:before{content:"\e017"}
.soc-buffer:before{content:"\e018"}
.soc-disqus:before{content:"\e019"}
.soc-vkontakte:before{content:"\e01a"}
.soc-whatsapp:before{content:"\e01b"}
.soc-patreon:before{content:"\e01c"}
.soc-storehouse:before{content:"\e01d"}
.soc-pocket:before{content:"\e01e"}
.soc-mail:before{content:"\e01f"}
.soc-blogger:before{content:"\e020"}
.soc-technorati:before{content:"\e021"}
.soc-reddit:before{content:"\e022"}
.soc-dribbble:before{content:"\e023"}
.soc-stumbleupon:before{content:"\e024"}
.soc-digg:before{content:"\e025"}
.soc-envato:before{content:"\e026"}
.soc-behance:before{content:"\e027"}
.soc-delicious:before{content:"\e028"}
.soc-deviantart:before{content:"\e029"}
.soc-forrst:before{content:"\e02a"}
.soc-play:before{content:"\e02b"}
.soc-zerply:before{content:"\e02c"}
.soc-wikipedia:before{content:"\e02d"}
.soc-apple:before{content:"\e02e"}
.soc-flattr:before{content:"\e02f"}
.soc-github:before{content:"\e030"}
.soc-renren:before{content:"\e031"}
.soc-friendfeed:before{content:"\e032"}
.soc-newsvine:before{content:"\e033"}
.soc-identica:before{content:"\e034"}
.soc-bebo:before{content:"\e035"}
.soc-zynga:before{content:"\e036"}
.soc-steam:before{content:"\e037"}
.soc-xbox:before{content:"\e038"}
.soc-windows:before{content:"\e039"}
.soc-qq:before{content:"\e03a"}
.soc-douban:before{content:"\e03b"}
.soc-meetup:before{content:"\e03c"}
.soc-playstation:before{content:"\e03d"}
.soc-android:before{content:"\e03e"}
.soc-snapchat:before{content:"\e03f"}
.soc-twitter:before{content:"\e040"}
.soc-facebook:before{content:"\e041"}
.soc-googleplus:before{content:"\e042"}
.soc-pinterest:before{content:"\e043"}
.soc-foursquare:before{content:"\e044"}
.soc-yahoo:before{content:"\e045"}
.soc-skype:before{content:"\e046"}
.soc-yelp:before{content:"\e047"}
.soc-feedburner:before{content:"\e048"}
.soc-linkedin:before{content:"\e049"}
.soc-viadeo:before{content:"\e04a"}
.soc-xing:before{content:"\e04b"}
.soc-myspace:before{content:"\e04c"}
.soc-soundcloud:before{content:"\e04d"}
.soc-spotify:before{content:"\e04e"}
.soc-grooveshark:before{content:"\e04f"}
.soc-lastfm:before{content:"\e050"}
.soc-youtube:before{content:"\e051"}
.soc-vimeo:before{content:"\e052"}
.soc-dailymotion:before{content:"\e053"}
.soc-vine:before{content:"\e054"}
.soc-flickr:before{content:"\e055"}
.soc-500px:before{content:"\e056"}
.soc-wordpress:before{content:"\e058"}
.soc-tumblr:before{content:"\e059"}
.soc-twitch:before{content:"\e05a"}
.soc-8tracks:before{content:"\e05b"}
.soc-amazon:before{content:"\e05c"}
.soc-icq:before{content:"\e05d"}
.soc-smugmug:before{content:"\e05e"}
.soc-ravelry:before{content:"\e05f"}
.soc-weibo:before{content:"\e060"}
.soc-baidu:before{content:"\e061"}
.soc-angellist:before{content:"\e062"}
.soc-ebay:before{content:"\e063"}
.soc-imdb:before{content:"\e064"}
.soc-stayfriends:before{content:"\e065"}
.soc-residentadvisor:before{content:"\e066"}
.soc-google:before{content:"\e067"}
.soc-yandex:before{content:"\e068"}
.soc-sharethis:before{content:"\e069"}
.soc-bandcamp:before{content:"\e06a"}
.soc-itunes:before{content:"\e06b"}
.soc-deezer:before{content:"\e06c"}
.soc-telegram:before{content:"\e06e"}
.soc-openid:before{content:"\e06f"}
.soc-amplement:before{content:"\e070"}
.soc-viber:before{content:"\e071"}
.soc-zomato:before{content:"\e072"}
.soc-draugiem:before{content:"\e074"}
.soc-endomodo:before{content:"\e075"}
.soc-filmweb:before{content:"\e076"}
.soc-stackexchange:before{content:"\e077"}
.soc-wykop:before{content:"\e078"}
.soc-teamspeak:before{content:"\e079"}
.soc-teamviewer:before{content:"\e07a"}
.soc-ventrilo:before{content:"\e07b"}
.soc-younow:before{content:"\e07c"}
.soc-raidcall:before{content:"\e07d"}
.soc-mumble:before{content:"\e07e"}
.soc-medium:before{content:"\e06d"}
.soc-bebee:before{content:"\e07f"}
.soc-hitbox:before{content:"\e080"}
.soc-reverbnation:before{content:"\e081"}
.soc-formulr:before{content:"\e082"}
.soc-instagram:before{content:"\e057"}
.soc-battlenet:before{content:"\e083"}
.soc-chrome:before{content:"\e084"}
.soc-discord:before{content:"\e086"}
.soc-issuu:before{content:"\e087"}
.soc-macos:before{content:"\e088"}
.soc-firefox:before{content:"\e089"}
.soc-opera:before{content:"\e08d"}
.soc-keybase:before{content:"\e090"}
.soc-alliance:before{content:"\e091"}
.soc-livejournal:before{content:"\e092"}
.soc-googlephotos:before{content:"\e093"}
.soc-horde:before{content:"\e094"}
.soc-etsy:before{content:"\e095"}
.soc-zapier:before{content:"\e096"}
.soc-google-scholar:before{content:"\e097"}
.soc-researchgate:before{content:"\e098"}
.soc-wechat:before{content:"\e099"}
.soc-strava:before{content:"\e09a"}
.soc-line:before{content:"\e09b"}
.soc-lyft:before{content:"\e09c"}
.soc-uber:before{content:"\e09d"}
.soc-songkick:before{content:"\e09e"}
.soc-viewbug:before{content:"\e09f"}
.soc-googlegroups:before{content:"\e0a0"}
.soc-quora:before{content:"\e073"}
.soc-diablo:before{content:"\e085"}
.soc-blizzard:before{content:"\e0a1"}
.soc-hearthstone:before{content:"\e08b"}
.soc-heroes:before{content:"\e08a"}
.soc-overwatch:before{content:"\e08c"}
.soc-warcraft:before{content:"\e08e"}
.soc-starcraft:before{content:"\e08f"}
.soc-beam:before{content:"\e0a2"}
.soc-curse:before{content:"\e0a3"}
.soc-player:before{content:"\e0a4"}
.soc-streamjar:before{content:"\e0a5"}
.soc-nintendo:before{content:"\e0a6"}
.soc-hellocoton:before{content:"\e0a7"}
/*!
* Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('../fonts/fontawesome-webfont.eot?v=4.6.3');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),
url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),
url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),
url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),
url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-family: 'FontAwesome' !important;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-fw {
width: 1.28571429em;
text-align: center;
}
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none;
}
.fa-ul > li {
position: relative;
}
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: 0.14285714em;
text-align: center;
}
.fa-li.fa-lg {
left: -1.85714286em;
}