rails_admin_image_manager 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +125 -0
  4. data/Rakefile +36 -0
  5. data/app/assets/config/rails_admin_image_manager_manifest.js +2 -0
  6. data/app/assets/fonts/FontAwesome.otf +0 -0
  7. data/app/assets/fonts/Simple-Line-Icons.eot +0 -0
  8. data/app/assets/fonts/Simple-Line-Icons.svg +1369 -0
  9. data/app/assets/fonts/Simple-Line-Icons.ttf +0 -0
  10. data/app/assets/fonts/Simple-Line-Icons.woff +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  12. data/app/assets/fonts/fontawesome-webfont.svg +2671 -0
  13. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  14. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  15. data/app/assets/fonts/fontawesome-webfont.woff2 +0 -0
  16. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  17. data/app/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  18. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  19. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  20. data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  21. data/app/assets/images/rails_admin_image_manager/image.png +0 -0
  22. data/app/assets/javascripts/rails_admin_image_manager/app-compiled.js.erb +34896 -0
  23. data/app/assets/javascripts/rails_admin_image_manager/app-vue.js +51 -0
  24. data/app/assets/javascripts/rails_admin_image_manager/application.js +17 -0
  25. data/app/assets/javascripts/rails_admin_image_manager/base.js.erb +62 -0
  26. data/app/assets/javascripts/rails_admin_image_manager/ckeditor_plugin.js.erb +58 -0
  27. data/app/assets/javascripts/rails_admin_image_manager/components/confirmationOverlay.vue +69 -0
  28. data/app/assets/javascripts/rails_admin_image_manager/components/imageInsertButton.vue +41 -0
  29. data/app/assets/javascripts/rails_admin_image_manager/components/imageInsertOverlay.vue +92 -0
  30. data/app/assets/javascripts/rails_admin_image_manager/components/imageListing.vue +167 -0
  31. data/app/assets/javascripts/rails_admin_image_manager/components/imageShow.vue +112 -0
  32. data/app/assets/javascripts/rails_admin_image_manager/components/imageTagSelector.vue +94 -0
  33. data/app/assets/javascripts/rails_admin_image_manager/components/imageUpload.vue +94 -0
  34. data/app/assets/javascripts/rails_admin_image_manager/components/listingFilter.vue +32 -0
  35. data/app/assets/javascripts/rails_admin_image_manager/components/notificationOverlay.vue +47 -0
  36. data/app/assets/javascripts/rails_admin_image_manager/components/progressOverlay.vue +37 -0
  37. data/app/assets/javascripts/rails_admin_image_manager/components/searchAutocomplete.vue +140 -0
  38. data/app/assets/javascripts/rails_admin_image_manager/editor/image_manager_picker.js.erb +41 -0
  39. data/app/assets/javascripts/rails_admin_image_manager/filters/index.js +7 -0
  40. data/app/assets/javascripts/rails_admin_image_manager/libs/helpers.js +13 -0
  41. data/app/assets/javascripts/rails_admin_image_manager/libs/lazyload.js +63 -0
  42. data/app/assets/javascripts/rails_admin_image_manager/router/index.js +55 -0
  43. data/app/assets/javascripts/rails_admin_image_manager/stores/ckeditor.js +25 -0
  44. data/app/assets/javascripts/rails_admin_image_manager/stores/index.js +16 -0
  45. data/app/assets/javascripts/rails_admin_image_manager/stores/medias.js +342 -0
  46. data/app/assets/javascripts/rails_admin_image_manager/stores/overlay.js +57 -0
  47. data/app/assets/javascripts/rails_admin_image_manager/stores/railsAdmin.js +28 -0
  48. data/app/assets/javascripts/rails_admin_image_manager/vendors/fuse.min.js +9 -0
  49. data/app/assets/javascripts/rails_admin_image_manager/vendors/oneui.min.js +8 -0
  50. data/app/assets/javascripts/rails_admin_image_manager/vendors/underscore.min.js +6 -0
  51. data/app/assets/stylesheets/rails_admin_image_manager/_font.scss +2845 -0
  52. data/app/assets/stylesheets/rails_admin_image_manager/application.css +16 -0
  53. data/app/assets/stylesheets/rails_admin_image_manager/global.css.erb +3723 -0
  54. data/app/assets/stylesheets/rails_admin_image_manager/global.sass +1 -0
  55. data/app/assets/stylesheets/rails_admin_image_manager/vendors/bootstrap.min.css +5 -0
  56. data/app/assets/stylesheets/rails_admin_image_manager/vendors/oneui.css +8865 -0
  57. data/app/controllers/rails_admin_image_manager/application_controller.rb +41 -0
  58. data/app/controllers/rails_admin_image_manager/home_controller.rb +8 -0
  59. data/app/controllers/rails_admin_image_manager/images_controller.rb +117 -0
  60. data/app/helpers/rails_admin_image_manager/application_helper.rb +4 -0
  61. data/app/jobs/rails_admin_image_manager/application_job.rb +4 -0
  62. data/app/models/rails_admin_image_manager/application_record.rb +5 -0
  63. data/app/models/rails_admin_image_manager/file.rb +78 -0
  64. data/app/models/rails_admin_image_manager/tag.rb +41 -0
  65. data/app/views/layouts/rails_admin_image_manager/application.html.erb +26 -0
  66. data/app/views/rails_admin/main/_form_image_manager_picker.html.erb +45 -0
  67. data/app/views/rails_admin_image_manager/images/index.html.erb +2 -0
  68. data/config/initializers/rails_admin/image_manager_file.rb +87 -0
  69. data/config/initializers/rails_admin/image_manager_tag.rb +22 -0
  70. data/config/locales/rails_admin_image_manager.en.yml +33 -0
  71. data/config/locales/rails_admin_image_manager.fr.yml +33 -0
  72. data/config/routes.rb +12 -0
  73. data/db/migrate/20170626000000_create_image_manager.rb +37 -0
  74. data/lib/dynamic_paperclip_patch.rb +92 -0
  75. data/lib/generators/rails_admin_image_manager/install/install_generator.rb +22 -0
  76. data/lib/paperclip_patch.rb +22 -0
  77. data/lib/rails_admin_image_manager.rb +46 -0
  78. data/lib/rails_admin_image_manager/engine.rb +36 -0
  79. data/lib/rails_admin_image_manager/has_managed_file.rb +47 -0
  80. data/lib/rails_admin_image_manager/rails_admin/config/fields/types/image_manager_picker.rb +49 -0
  81. data/lib/rails_admin_image_manager/version.rb +3 -0
  82. data/lib/tasks/rails_admin_image_manager_tasks.rake +4 -0
  83. metadata +253 -0
@@ -0,0 +1,16 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require rails_admin_image_manager/vendors/bootstrap.min.css
14
+ *= require rails_admin_image_manager/vendors/oneui.css
15
+ *= require rails_admin_image_manager/global.css
16
+ */
@@ -0,0 +1,3723 @@
1
+ /*!
2
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+ /* FONT PATH
6
+ * -------------------------- */
7
+ @font-face {
8
+ font-family: 'FontAwesome';
9
+ src: url("<%= font_path('fontawesome-webfont.eot?v=4.7.0') %>");
10
+ src: url("<%= font_path('fontawesome-webfont.eot?#iefix&v=4.7.0') %>") format("embedded-opentype"), url("<%= font_path('fontawesome-webfont.woff2?v=4.7.0') %>") format("woff2"), url("<%= font_path('fontawesome-webfont.woff?v=4.7.0') %>") format("woff"), url("<%= font_path('fontawesome-webfont.ttf?v=4.7.0') %>") format("truetype"), url("<%= font_path('fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') %>") format("svg");
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ }
14
+
15
+ .fa {
16
+ display: inline-block;
17
+ font: normal normal normal 14px/1 FontAwesome;
18
+ font-size: inherit;
19
+ text-rendering: auto;
20
+ -webkit-font-smoothing: antialiased;
21
+ -moz-osx-font-smoothing: grayscale;
22
+ }
23
+
24
+ /* makes the font 33% larger relative to the icon container */
25
+ .fa-lg {
26
+ font-size: 1.33333333em;
27
+ line-height: 0.75em;
28
+ vertical-align: -15%;
29
+ }
30
+
31
+ .fa-2x {
32
+ font-size: 2em;
33
+ }
34
+
35
+ .fa-3x {
36
+ font-size: 3em;
37
+ }
38
+
39
+ .fa-4x {
40
+ font-size: 4em;
41
+ }
42
+
43
+ .fa-5x {
44
+ font-size: 5em;
45
+ }
46
+
47
+ .fa-fw {
48
+ width: 1.28571429em;
49
+ text-align: center;
50
+ }
51
+
52
+ .fa-ul {
53
+ padding-left: 0;
54
+ margin-left: 2.14285714em;
55
+ list-style-type: none;
56
+ }
57
+
58
+ .fa-ul > li {
59
+ position: relative;
60
+ }
61
+
62
+ .fa-li {
63
+ position: absolute;
64
+ left: -2.14285714em;
65
+ width: 2.14285714em;
66
+ top: 0.14285714em;
67
+ text-align: center;
68
+ }
69
+
70
+ .fa-li.fa-lg {
71
+ left: -1.85714286em;
72
+ }
73
+
74
+ .fa-border {
75
+ padding: .2em .25em .15em;
76
+ border: solid 0.08em #eeeeee;
77
+ border-radius: .1em;
78
+ }
79
+
80
+ .fa-pull-left {
81
+ float: left;
82
+ }
83
+
84
+ .fa-pull-right {
85
+ float: right;
86
+ }
87
+
88
+ .fa.fa-pull-left {
89
+ margin-right: .3em;
90
+ }
91
+
92
+ .fa.fa-pull-right {
93
+ margin-left: .3em;
94
+ }
95
+
96
+ /* Deprecated as of 4.4.0 */
97
+ .pull-right {
98
+ float: right;
99
+ }
100
+
101
+ .pull-left {
102
+ float: left;
103
+ }
104
+
105
+ .fa.pull-left {
106
+ margin-right: .3em;
107
+ }
108
+
109
+ .fa.pull-right {
110
+ margin-left: .3em;
111
+ }
112
+
113
+ .fa-spin {
114
+ -webkit-animation: fa-spin 2s infinite linear;
115
+ animation: fa-spin 2s infinite linear;
116
+ }
117
+
118
+ .fa-pulse {
119
+ -webkit-animation: fa-spin 1s infinite steps(8);
120
+ animation: fa-spin 1s infinite steps(8);
121
+ }
122
+
123
+ @-webkit-keyframes fa-spin {
124
+ 0% {
125
+ -webkit-transform: rotate(0deg);
126
+ transform: rotate(0deg);
127
+ }
128
+ 100% {
129
+ -webkit-transform: rotate(359deg);
130
+ transform: rotate(359deg);
131
+ }
132
+ }
133
+
134
+ @keyframes fa-spin {
135
+ 0% {
136
+ -webkit-transform: rotate(0deg);
137
+ transform: rotate(0deg);
138
+ }
139
+ 100% {
140
+ -webkit-transform: rotate(359deg);
141
+ transform: rotate(359deg);
142
+ }
143
+ }
144
+
145
+ .fa-rotate-90 {
146
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
147
+ -webkit-transform: rotate(90deg);
148
+ -ms-transform: rotate(90deg);
149
+ transform: rotate(90deg);
150
+ }
151
+
152
+ .fa-rotate-180 {
153
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
154
+ -webkit-transform: rotate(180deg);
155
+ -ms-transform: rotate(180deg);
156
+ transform: rotate(180deg);
157
+ }
158
+
159
+ .fa-rotate-270 {
160
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
161
+ -webkit-transform: rotate(270deg);
162
+ -ms-transform: rotate(270deg);
163
+ transform: rotate(270deg);
164
+ }
165
+
166
+ .fa-flip-horizontal {
167
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
168
+ -webkit-transform: scale(-1, 1);
169
+ -ms-transform: scale(-1, 1);
170
+ transform: scale(-1, 1);
171
+ }
172
+
173
+ .fa-flip-vertical {
174
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
175
+ -webkit-transform: scale(1, -1);
176
+ -ms-transform: scale(1, -1);
177
+ transform: scale(1, -1);
178
+ }
179
+
180
+ :root .fa-rotate-90,
181
+ :root .fa-rotate-180,
182
+ :root .fa-rotate-270,
183
+ :root .fa-flip-horizontal,
184
+ :root .fa-flip-vertical {
185
+ -webkit-filter: none;
186
+ filter: none;
187
+ }
188
+
189
+ .fa-stack {
190
+ position: relative;
191
+ display: inline-block;
192
+ width: 2em;
193
+ height: 2em;
194
+ line-height: 2em;
195
+ vertical-align: middle;
196
+ }
197
+
198
+ .fa-stack-1x,
199
+ .fa-stack-2x {
200
+ position: absolute;
201
+ left: 0;
202
+ width: 100%;
203
+ text-align: center;
204
+ }
205
+
206
+ .fa-stack-1x {
207
+ line-height: inherit;
208
+ }
209
+
210
+ .fa-stack-2x {
211
+ font-size: 2em;
212
+ }
213
+
214
+ .fa-inverse {
215
+ color: #ffffff;
216
+ }
217
+
218
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
219
+ readers do not read off random characters that represent icons */
220
+ .fa-glass:before {
221
+ content: "\f000";
222
+ }
223
+
224
+ .fa-music:before {
225
+ content: "\f001";
226
+ }
227
+
228
+ .fa-search:before {
229
+ content: "\f002";
230
+ }
231
+
232
+ .fa-envelope-o:before {
233
+ content: "\f003";
234
+ }
235
+
236
+ .fa-heart:before {
237
+ content: "\f004";
238
+ }
239
+
240
+ .fa-star:before {
241
+ content: "\f005";
242
+ }
243
+
244
+ .fa-star-o:before {
245
+ content: "\f006";
246
+ }
247
+
248
+ .fa-user:before {
249
+ content: "\f007";
250
+ }
251
+
252
+ .fa-film:before {
253
+ content: "\f008";
254
+ }
255
+
256
+ .fa-th-large:before {
257
+ content: "\f009";
258
+ }
259
+
260
+ .fa-th:before {
261
+ content: "\f00a";
262
+ }
263
+
264
+ .fa-th-list:before {
265
+ content: "\f00b";
266
+ }
267
+
268
+ .fa-check:before {
269
+ content: "\f00c";
270
+ }
271
+
272
+ .fa-remove:before,
273
+ .fa-close:before,
274
+ .fa-times:before {
275
+ content: "\f00d";
276
+ }
277
+
278
+ .fa-search-plus:before {
279
+ content: "\f00e";
280
+ }
281
+
282
+ .fa-search-minus:before {
283
+ content: "\f010";
284
+ }
285
+
286
+ .fa-power-off:before {
287
+ content: "\f011";
288
+ }
289
+
290
+ .fa-signal:before {
291
+ content: "\f012";
292
+ }
293
+
294
+ .fa-gear:before,
295
+ .fa-cog:before {
296
+ content: "\f013";
297
+ }
298
+
299
+ .fa-trash-o:before {
300
+ content: "\f014";
301
+ }
302
+
303
+ .fa-home:before {
304
+ content: "\f015";
305
+ }
306
+
307
+ .fa-file-o:before {
308
+ content: "\f016";
309
+ }
310
+
311
+ .fa-clock-o:before {
312
+ content: "\f017";
313
+ }
314
+
315
+ .fa-road:before {
316
+ content: "\f018";
317
+ }
318
+
319
+ .fa-download:before {
320
+ content: "\f019";
321
+ }
322
+
323
+ .fa-arrow-circle-o-down:before {
324
+ content: "\f01a";
325
+ }
326
+
327
+ .fa-arrow-circle-o-up:before {
328
+ content: "\f01b";
329
+ }
330
+
331
+ .fa-inbox:before {
332
+ content: "\f01c";
333
+ }
334
+
335
+ .fa-play-circle-o:before {
336
+ content: "\f01d";
337
+ }
338
+
339
+ .fa-rotate-right:before,
340
+ .fa-repeat:before {
341
+ content: "\f01e";
342
+ }
343
+
344
+ .fa-refresh:before {
345
+ content: "\f021";
346
+ }
347
+
348
+ .fa-list-alt:before {
349
+ content: "\f022";
350
+ }
351
+
352
+ .fa-lock:before {
353
+ content: "\f023";
354
+ }
355
+
356
+ .fa-flag:before {
357
+ content: "\f024";
358
+ }
359
+
360
+ .fa-headphones:before {
361
+ content: "\f025";
362
+ }
363
+
364
+ .fa-volume-off:before {
365
+ content: "\f026";
366
+ }
367
+
368
+ .fa-volume-down:before {
369
+ content: "\f027";
370
+ }
371
+
372
+ .fa-volume-up:before {
373
+ content: "\f028";
374
+ }
375
+
376
+ .fa-qrcode:before {
377
+ content: "\f029";
378
+ }
379
+
380
+ .fa-barcode:before {
381
+ content: "\f02a";
382
+ }
383
+
384
+ .fa-tag:before {
385
+ content: "\f02b";
386
+ }
387
+
388
+ .fa-tags:before {
389
+ content: "\f02c";
390
+ }
391
+
392
+ .fa-book:before {
393
+ content: "\f02d";
394
+ }
395
+
396
+ .fa-bookmark:before {
397
+ content: "\f02e";
398
+ }
399
+
400
+ .fa-print:before {
401
+ content: "\f02f";
402
+ }
403
+
404
+ .fa-camera:before {
405
+ content: "\f030";
406
+ }
407
+
408
+ .fa-font:before {
409
+ content: "\f031";
410
+ }
411
+
412
+ .fa-bold:before {
413
+ content: "\f032";
414
+ }
415
+
416
+ .fa-italic:before {
417
+ content: "\f033";
418
+ }
419
+
420
+ .fa-text-height:before {
421
+ content: "\f034";
422
+ }
423
+
424
+ .fa-text-width:before {
425
+ content: "\f035";
426
+ }
427
+
428
+ .fa-align-left:before {
429
+ content: "\f036";
430
+ }
431
+
432
+ .fa-align-center:before {
433
+ content: "\f037";
434
+ }
435
+
436
+ .fa-align-right:before {
437
+ content: "\f038";
438
+ }
439
+
440
+ .fa-align-justify:before {
441
+ content: "\f039";
442
+ }
443
+
444
+ .fa-list:before {
445
+ content: "\f03a";
446
+ }
447
+
448
+ .fa-dedent:before,
449
+ .fa-outdent:before {
450
+ content: "\f03b";
451
+ }
452
+
453
+ .fa-indent:before {
454
+ content: "\f03c";
455
+ }
456
+
457
+ .fa-video-camera:before {
458
+ content: "\f03d";
459
+ }
460
+
461
+ .fa-photo:before,
462
+ .fa-image:before,
463
+ .fa-picture-o:before {
464
+ content: "\f03e";
465
+ }
466
+
467
+ .fa-pencil:before {
468
+ content: "\f040";
469
+ }
470
+
471
+ .fa-map-marker:before {
472
+ content: "\f041";
473
+ }
474
+
475
+ .fa-adjust:before {
476
+ content: "\f042";
477
+ }
478
+
479
+ .fa-tint:before {
480
+ content: "\f043";
481
+ }
482
+
483
+ .fa-edit:before,
484
+ .fa-pencil-square-o:before {
485
+ content: "\f044";
486
+ }
487
+
488
+ .fa-share-square-o:before {
489
+ content: "\f045";
490
+ }
491
+
492
+ .fa-check-square-o:before {
493
+ content: "\f046";
494
+ }
495
+
496
+ .fa-arrows:before {
497
+ content: "\f047";
498
+ }
499
+
500
+ .fa-step-backward:before {
501
+ content: "\f048";
502
+ }
503
+
504
+ .fa-fast-backward:before {
505
+ content: "\f049";
506
+ }
507
+
508
+ .fa-backward:before {
509
+ content: "\f04a";
510
+ }
511
+
512
+ .fa-play:before {
513
+ content: "\f04b";
514
+ }
515
+
516
+ .fa-pause:before {
517
+ content: "\f04c";
518
+ }
519
+
520
+ .fa-stop:before {
521
+ content: "\f04d";
522
+ }
523
+
524
+ .fa-forward:before {
525
+ content: "\f04e";
526
+ }
527
+
528
+ .fa-fast-forward:before {
529
+ content: "\f050";
530
+ }
531
+
532
+ .fa-step-forward:before {
533
+ content: "\f051";
534
+ }
535
+
536
+ .fa-eject:before {
537
+ content: "\f052";
538
+ }
539
+
540
+ .fa-chevron-left:before {
541
+ content: "\f053";
542
+ }
543
+
544
+ .fa-chevron-right:before {
545
+ content: "\f054";
546
+ }
547
+
548
+ .fa-plus-circle:before {
549
+ content: "\f055";
550
+ }
551
+
552
+ .fa-minus-circle:before {
553
+ content: "\f056";
554
+ }
555
+
556
+ .fa-times-circle:before {
557
+ content: "\f057";
558
+ }
559
+
560
+ .fa-check-circle:before {
561
+ content: "\f058";
562
+ }
563
+
564
+ .fa-question-circle:before {
565
+ content: "\f059";
566
+ }
567
+
568
+ .fa-info-circle:before {
569
+ content: "\f05a";
570
+ }
571
+
572
+ .fa-crosshairs:before {
573
+ content: "\f05b";
574
+ }
575
+
576
+ .fa-times-circle-o:before {
577
+ content: "\f05c";
578
+ }
579
+
580
+ .fa-check-circle-o:before {
581
+ content: "\f05d";
582
+ }
583
+
584
+ .fa-ban:before {
585
+ content: "\f05e";
586
+ }
587
+
588
+ .fa-arrow-left:before {
589
+ content: "\f060";
590
+ }
591
+
592
+ .fa-arrow-right:before {
593
+ content: "\f061";
594
+ }
595
+
596
+ .fa-arrow-up:before {
597
+ content: "\f062";
598
+ }
599
+
600
+ .fa-arrow-down:before {
601
+ content: "\f063";
602
+ }
603
+
604
+ .fa-mail-forward:before,
605
+ .fa-share:before {
606
+ content: "\f064";
607
+ }
608
+
609
+ .fa-expand:before {
610
+ content: "\f065";
611
+ }
612
+
613
+ .fa-compress:before {
614
+ content: "\f066";
615
+ }
616
+
617
+ .fa-plus:before {
618
+ content: "\f067";
619
+ }
620
+
621
+ .fa-minus:before {
622
+ content: "\f068";
623
+ }
624
+
625
+ .fa-asterisk:before {
626
+ content: "\f069";
627
+ }
628
+
629
+ .fa-exclamation-circle:before {
630
+ content: "\f06a";
631
+ }
632
+
633
+ .fa-gift:before {
634
+ content: "\f06b";
635
+ }
636
+
637
+ .fa-leaf:before {
638
+ content: "\f06c";
639
+ }
640
+
641
+ .fa-fire:before {
642
+ content: "\f06d";
643
+ }
644
+
645
+ .fa-eye:before {
646
+ content: "\f06e";
647
+ }
648
+
649
+ .fa-eye-slash:before {
650
+ content: "\f070";
651
+ }
652
+
653
+ .fa-warning:before,
654
+ .fa-exclamation-triangle:before {
655
+ content: "\f071";
656
+ }
657
+
658
+ .fa-plane:before {
659
+ content: "\f072";
660
+ }
661
+
662
+ .fa-calendar:before {
663
+ content: "\f073";
664
+ }
665
+
666
+ .fa-random:before {
667
+ content: "\f074";
668
+ }
669
+
670
+ .fa-comment:before {
671
+ content: "\f075";
672
+ }
673
+
674
+ .fa-magnet:before {
675
+ content: "\f076";
676
+ }
677
+
678
+ .fa-chevron-up:before {
679
+ content: "\f077";
680
+ }
681
+
682
+ .fa-chevron-down:before {
683
+ content: "\f078";
684
+ }
685
+
686
+ .fa-retweet:before {
687
+ content: "\f079";
688
+ }
689
+
690
+ .fa-shopping-cart:before {
691
+ content: "\f07a";
692
+ }
693
+
694
+ .fa-folder:before {
695
+ content: "\f07b";
696
+ }
697
+
698
+ .fa-folder-open:before {
699
+ content: "\f07c";
700
+ }
701
+
702
+ .fa-arrows-v:before {
703
+ content: "\f07d";
704
+ }
705
+
706
+ .fa-arrows-h:before {
707
+ content: "\f07e";
708
+ }
709
+
710
+ .fa-bar-chart-o:before,
711
+ .fa-bar-chart:before {
712
+ content: "\f080";
713
+ }
714
+
715
+ .fa-twitter-square:before {
716
+ content: "\f081";
717
+ }
718
+
719
+ .fa-facebook-square:before {
720
+ content: "\f082";
721
+ }
722
+
723
+ .fa-camera-retro:before {
724
+ content: "\f083";
725
+ }
726
+
727
+ .fa-key:before {
728
+ content: "\f084";
729
+ }
730
+
731
+ .fa-gears:before,
732
+ .fa-cogs:before {
733
+ content: "\f085";
734
+ }
735
+
736
+ .fa-comments:before {
737
+ content: "\f086";
738
+ }
739
+
740
+ .fa-thumbs-o-up:before {
741
+ content: "\f087";
742
+ }
743
+
744
+ .fa-thumbs-o-down:before {
745
+ content: "\f088";
746
+ }
747
+
748
+ .fa-star-half:before {
749
+ content: "\f089";
750
+ }
751
+
752
+ .fa-heart-o:before {
753
+ content: "\f08a";
754
+ }
755
+
756
+ .fa-sign-out:before {
757
+ content: "\f08b";
758
+ }
759
+
760
+ .fa-linkedin-square:before {
761
+ content: "\f08c";
762
+ }
763
+
764
+ .fa-thumb-tack:before {
765
+ content: "\f08d";
766
+ }
767
+
768
+ .fa-external-link:before {
769
+ content: "\f08e";
770
+ }
771
+
772
+ .fa-sign-in:before {
773
+ content: "\f090";
774
+ }
775
+
776
+ .fa-trophy:before {
777
+ content: "\f091";
778
+ }
779
+
780
+ .fa-github-square:before {
781
+ content: "\f092";
782
+ }
783
+
784
+ .fa-upload:before {
785
+ content: "\f093";
786
+ }
787
+
788
+ .fa-lemon-o:before {
789
+ content: "\f094";
790
+ }
791
+
792
+ .fa-phone:before {
793
+ content: "\f095";
794
+ }
795
+
796
+ .fa-square-o:before {
797
+ content: "\f096";
798
+ }
799
+
800
+ .fa-bookmark-o:before {
801
+ content: "\f097";
802
+ }
803
+
804
+ .fa-phone-square:before {
805
+ content: "\f098";
806
+ }
807
+
808
+ .fa-twitter:before {
809
+ content: "\f099";
810
+ }
811
+
812
+ .fa-facebook-f:before,
813
+ .fa-facebook:before {
814
+ content: "\f09a";
815
+ }
816
+
817
+ .fa-github:before {
818
+ content: "\f09b";
819
+ }
820
+
821
+ .fa-unlock:before {
822
+ content: "\f09c";
823
+ }
824
+
825
+ .fa-credit-card:before {
826
+ content: "\f09d";
827
+ }
828
+
829
+ .fa-feed:before,
830
+ .fa-rss:before {
831
+ content: "\f09e";
832
+ }
833
+
834
+ .fa-hdd-o:before {
835
+ content: "\f0a0";
836
+ }
837
+
838
+ .fa-bullhorn:before {
839
+ content: "\f0a1";
840
+ }
841
+
842
+ .fa-bell:before {
843
+ content: "\f0f3";
844
+ }
845
+
846
+ .fa-certificate:before {
847
+ content: "\f0a3";
848
+ }
849
+
850
+ .fa-hand-o-right:before {
851
+ content: "\f0a4";
852
+ }
853
+
854
+ .fa-hand-o-left:before {
855
+ content: "\f0a5";
856
+ }
857
+
858
+ .fa-hand-o-up:before {
859
+ content: "\f0a6";
860
+ }
861
+
862
+ .fa-hand-o-down:before {
863
+ content: "\f0a7";
864
+ }
865
+
866
+ .fa-arrow-circle-left:before {
867
+ content: "\f0a8";
868
+ }
869
+
870
+ .fa-arrow-circle-right:before {
871
+ content: "\f0a9";
872
+ }
873
+
874
+ .fa-arrow-circle-up:before {
875
+ content: "\f0aa";
876
+ }
877
+
878
+ .fa-arrow-circle-down:before {
879
+ content: "\f0ab";
880
+ }
881
+
882
+ .fa-globe:before {
883
+ content: "\f0ac";
884
+ }
885
+
886
+ .fa-wrench:before {
887
+ content: "\f0ad";
888
+ }
889
+
890
+ .fa-tasks:before {
891
+ content: "\f0ae";
892
+ }
893
+
894
+ .fa-filter:before {
895
+ content: "\f0b0";
896
+ }
897
+
898
+ .fa-briefcase:before {
899
+ content: "\f0b1";
900
+ }
901
+
902
+ .fa-arrows-alt:before {
903
+ content: "\f0b2";
904
+ }
905
+
906
+ .fa-group:before,
907
+ .fa-users:before {
908
+ content: "\f0c0";
909
+ }
910
+
911
+ .fa-chain:before,
912
+ .fa-link:before {
913
+ content: "\f0c1";
914
+ }
915
+
916
+ .fa-cloud:before {
917
+ content: "\f0c2";
918
+ }
919
+
920
+ .fa-flask:before {
921
+ content: "\f0c3";
922
+ }
923
+
924
+ .fa-cut:before,
925
+ .fa-scissors:before {
926
+ content: "\f0c4";
927
+ }
928
+
929
+ .fa-copy:before,
930
+ .fa-files-o:before {
931
+ content: "\f0c5";
932
+ }
933
+
934
+ .fa-paperclip:before {
935
+ content: "\f0c6";
936
+ }
937
+
938
+ .fa-save:before,
939
+ .fa-floppy-o:before {
940
+ content: "\f0c7";
941
+ }
942
+
943
+ .fa-square:before {
944
+ content: "\f0c8";
945
+ }
946
+
947
+ .fa-navicon:before,
948
+ .fa-reorder:before,
949
+ .fa-bars:before {
950
+ content: "\f0c9";
951
+ }
952
+
953
+ .fa-list-ul:before {
954
+ content: "\f0ca";
955
+ }
956
+
957
+ .fa-list-ol:before {
958
+ content: "\f0cb";
959
+ }
960
+
961
+ .fa-strikethrough:before {
962
+ content: "\f0cc";
963
+ }
964
+
965
+ .fa-underline:before {
966
+ content: "\f0cd";
967
+ }
968
+
969
+ .fa-table:before {
970
+ content: "\f0ce";
971
+ }
972
+
973
+ .fa-magic:before {
974
+ content: "\f0d0";
975
+ }
976
+
977
+ .fa-truck:before {
978
+ content: "\f0d1";
979
+ }
980
+
981
+ .fa-pinterest:before {
982
+ content: "\f0d2";
983
+ }
984
+
985
+ .fa-pinterest-square:before {
986
+ content: "\f0d3";
987
+ }
988
+
989
+ .fa-google-plus-square:before {
990
+ content: "\f0d4";
991
+ }
992
+
993
+ .fa-google-plus:before {
994
+ content: "\f0d5";
995
+ }
996
+
997
+ .fa-money:before {
998
+ content: "\f0d6";
999
+ }
1000
+
1001
+ .fa-caret-down:before {
1002
+ content: "\f0d7";
1003
+ }
1004
+
1005
+ .fa-caret-up:before {
1006
+ content: "\f0d8";
1007
+ }
1008
+
1009
+ .fa-caret-left:before {
1010
+ content: "\f0d9";
1011
+ }
1012
+
1013
+ .fa-caret-right:before {
1014
+ content: "\f0da";
1015
+ }
1016
+
1017
+ .fa-columns:before {
1018
+ content: "\f0db";
1019
+ }
1020
+
1021
+ .fa-unsorted:before,
1022
+ .fa-sort:before {
1023
+ content: "\f0dc";
1024
+ }
1025
+
1026
+ .fa-sort-down:before,
1027
+ .fa-sort-desc:before {
1028
+ content: "\f0dd";
1029
+ }
1030
+
1031
+ .fa-sort-up:before,
1032
+ .fa-sort-asc:before {
1033
+ content: "\f0de";
1034
+ }
1035
+
1036
+ .fa-envelope:before {
1037
+ content: "\f0e0";
1038
+ }
1039
+
1040
+ .fa-linkedin:before {
1041
+ content: "\f0e1";
1042
+ }
1043
+
1044
+ .fa-rotate-left:before,
1045
+ .fa-undo:before {
1046
+ content: "\f0e2";
1047
+ }
1048
+
1049
+ .fa-legal:before,
1050
+ .fa-gavel:before {
1051
+ content: "\f0e3";
1052
+ }
1053
+
1054
+ .fa-dashboard:before,
1055
+ .fa-tachometer:before {
1056
+ content: "\f0e4";
1057
+ }
1058
+
1059
+ .fa-comment-o:before {
1060
+ content: "\f0e5";
1061
+ }
1062
+
1063
+ .fa-comments-o:before {
1064
+ content: "\f0e6";
1065
+ }
1066
+
1067
+ .fa-flash:before,
1068
+ .fa-bolt:before {
1069
+ content: "\f0e7";
1070
+ }
1071
+
1072
+ .fa-sitemap:before {
1073
+ content: "\f0e8";
1074
+ }
1075
+
1076
+ .fa-umbrella:before {
1077
+ content: "\f0e9";
1078
+ }
1079
+
1080
+ .fa-paste:before,
1081
+ .fa-clipboard:before {
1082
+ content: "\f0ea";
1083
+ }
1084
+
1085
+ .fa-lightbulb-o:before {
1086
+ content: "\f0eb";
1087
+ }
1088
+
1089
+ .fa-exchange:before {
1090
+ content: "\f0ec";
1091
+ }
1092
+
1093
+ .fa-cloud-download:before {
1094
+ content: "\f0ed";
1095
+ }
1096
+
1097
+ .fa-cloud-upload:before {
1098
+ content: "\f0ee";
1099
+ }
1100
+
1101
+ .fa-user-md:before {
1102
+ content: "\f0f0";
1103
+ }
1104
+
1105
+ .fa-stethoscope:before {
1106
+ content: "\f0f1";
1107
+ }
1108
+
1109
+ .fa-suitcase:before {
1110
+ content: "\f0f2";
1111
+ }
1112
+
1113
+ .fa-bell-o:before {
1114
+ content: "\f0a2";
1115
+ }
1116
+
1117
+ .fa-coffee:before {
1118
+ content: "\f0f4";
1119
+ }
1120
+
1121
+ .fa-cutlery:before {
1122
+ content: "\f0f5";
1123
+ }
1124
+
1125
+ .fa-file-text-o:before {
1126
+ content: "\f0f6";
1127
+ }
1128
+
1129
+ .fa-building-o:before {
1130
+ content: "\f0f7";
1131
+ }
1132
+
1133
+ .fa-hospital-o:before {
1134
+ content: "\f0f8";
1135
+ }
1136
+
1137
+ .fa-ambulance:before {
1138
+ content: "\f0f9";
1139
+ }
1140
+
1141
+ .fa-medkit:before {
1142
+ content: "\f0fa";
1143
+ }
1144
+
1145
+ .fa-fighter-jet:before {
1146
+ content: "\f0fb";
1147
+ }
1148
+
1149
+ .fa-beer:before {
1150
+ content: "\f0fc";
1151
+ }
1152
+
1153
+ .fa-h-square:before {
1154
+ content: "\f0fd";
1155
+ }
1156
+
1157
+ .fa-plus-square:before {
1158
+ content: "\f0fe";
1159
+ }
1160
+
1161
+ .fa-angle-double-left:before {
1162
+ content: "\f100";
1163
+ }
1164
+
1165
+ .fa-angle-double-right:before {
1166
+ content: "\f101";
1167
+ }
1168
+
1169
+ .fa-angle-double-up:before {
1170
+ content: "\f102";
1171
+ }
1172
+
1173
+ .fa-angle-double-down:before {
1174
+ content: "\f103";
1175
+ }
1176
+
1177
+ .fa-angle-left:before {
1178
+ content: "\f104";
1179
+ }
1180
+
1181
+ .fa-angle-right:before {
1182
+ content: "\f105";
1183
+ }
1184
+
1185
+ .fa-angle-up:before {
1186
+ content: "\f106";
1187
+ }
1188
+
1189
+ .fa-angle-down:before {
1190
+ content: "\f107";
1191
+ }
1192
+
1193
+ .fa-desktop:before {
1194
+ content: "\f108";
1195
+ }
1196
+
1197
+ .fa-laptop:before {
1198
+ content: "\f109";
1199
+ }
1200
+
1201
+ .fa-tablet:before {
1202
+ content: "\f10a";
1203
+ }
1204
+
1205
+ .fa-mobile-phone:before,
1206
+ .fa-mobile:before {
1207
+ content: "\f10b";
1208
+ }
1209
+
1210
+ .fa-circle-o:before {
1211
+ content: "\f10c";
1212
+ }
1213
+
1214
+ .fa-quote-left:before {
1215
+ content: "\f10d";
1216
+ }
1217
+
1218
+ .fa-quote-right:before {
1219
+ content: "\f10e";
1220
+ }
1221
+
1222
+ .fa-spinner:before {
1223
+ content: "\f110";
1224
+ }
1225
+
1226
+ .fa-circle:before {
1227
+ content: "\f111";
1228
+ }
1229
+
1230
+ .fa-mail-reply:before,
1231
+ .fa-reply:before {
1232
+ content: "\f112";
1233
+ }
1234
+
1235
+ .fa-github-alt:before {
1236
+ content: "\f113";
1237
+ }
1238
+
1239
+ .fa-folder-o:before {
1240
+ content: "\f114";
1241
+ }
1242
+
1243
+ .fa-folder-open-o:before {
1244
+ content: "\f115";
1245
+ }
1246
+
1247
+ .fa-smile-o:before {
1248
+ content: "\f118";
1249
+ }
1250
+
1251
+ .fa-frown-o:before {
1252
+ content: "\f119";
1253
+ }
1254
+
1255
+ .fa-meh-o:before {
1256
+ content: "\f11a";
1257
+ }
1258
+
1259
+ .fa-gamepad:before {
1260
+ content: "\f11b";
1261
+ }
1262
+
1263
+ .fa-keyboard-o:before {
1264
+ content: "\f11c";
1265
+ }
1266
+
1267
+ .fa-flag-o:before {
1268
+ content: "\f11d";
1269
+ }
1270
+
1271
+ .fa-flag-checkered:before {
1272
+ content: "\f11e";
1273
+ }
1274
+
1275
+ .fa-terminal:before {
1276
+ content: "\f120";
1277
+ }
1278
+
1279
+ .fa-code:before {
1280
+ content: "\f121";
1281
+ }
1282
+
1283
+ .fa-mail-reply-all:before,
1284
+ .fa-reply-all:before {
1285
+ content: "\f122";
1286
+ }
1287
+
1288
+ .fa-star-half-empty:before,
1289
+ .fa-star-half-full:before,
1290
+ .fa-star-half-o:before {
1291
+ content: "\f123";
1292
+ }
1293
+
1294
+ .fa-location-arrow:before {
1295
+ content: "\f124";
1296
+ }
1297
+
1298
+ .fa-crop:before {
1299
+ content: "\f125";
1300
+ }
1301
+
1302
+ .fa-code-fork:before {
1303
+ content: "\f126";
1304
+ }
1305
+
1306
+ .fa-unlink:before,
1307
+ .fa-chain-broken:before {
1308
+ content: "\f127";
1309
+ }
1310
+
1311
+ .fa-question:before {
1312
+ content: "\f128";
1313
+ }
1314
+
1315
+ .fa-info:before {
1316
+ content: "\f129";
1317
+ }
1318
+
1319
+ .fa-exclamation:before {
1320
+ content: "\f12a";
1321
+ }
1322
+
1323
+ .fa-superscript:before {
1324
+ content: "\f12b";
1325
+ }
1326
+
1327
+ .fa-subscript:before {
1328
+ content: "\f12c";
1329
+ }
1330
+
1331
+ .fa-eraser:before {
1332
+ content: "\f12d";
1333
+ }
1334
+
1335
+ .fa-puzzle-piece:before {
1336
+ content: "\f12e";
1337
+ }
1338
+
1339
+ .fa-microphone:before {
1340
+ content: "\f130";
1341
+ }
1342
+
1343
+ .fa-microphone-slash:before {
1344
+ content: "\f131";
1345
+ }
1346
+
1347
+ .fa-shield:before {
1348
+ content: "\f132";
1349
+ }
1350
+
1351
+ .fa-calendar-o:before {
1352
+ content: "\f133";
1353
+ }
1354
+
1355
+ .fa-fire-extinguisher:before {
1356
+ content: "\f134";
1357
+ }
1358
+
1359
+ .fa-rocket:before {
1360
+ content: "\f135";
1361
+ }
1362
+
1363
+ .fa-maxcdn:before {
1364
+ content: "\f136";
1365
+ }
1366
+
1367
+ .fa-chevron-circle-left:before {
1368
+ content: "\f137";
1369
+ }
1370
+
1371
+ .fa-chevron-circle-right:before {
1372
+ content: "\f138";
1373
+ }
1374
+
1375
+ .fa-chevron-circle-up:before {
1376
+ content: "\f139";
1377
+ }
1378
+
1379
+ .fa-chevron-circle-down:before {
1380
+ content: "\f13a";
1381
+ }
1382
+
1383
+ .fa-html5:before {
1384
+ content: "\f13b";
1385
+ }
1386
+
1387
+ .fa-css3:before {
1388
+ content: "\f13c";
1389
+ }
1390
+
1391
+ .fa-anchor:before {
1392
+ content: "\f13d";
1393
+ }
1394
+
1395
+ .fa-unlock-alt:before {
1396
+ content: "\f13e";
1397
+ }
1398
+
1399
+ .fa-bullseye:before {
1400
+ content: "\f140";
1401
+ }
1402
+
1403
+ .fa-ellipsis-h:before {
1404
+ content: "\f141";
1405
+ }
1406
+
1407
+ .fa-ellipsis-v:before {
1408
+ content: "\f142";
1409
+ }
1410
+
1411
+ .fa-rss-square:before {
1412
+ content: "\f143";
1413
+ }
1414
+
1415
+ .fa-play-circle:before {
1416
+ content: "\f144";
1417
+ }
1418
+
1419
+ .fa-ticket:before {
1420
+ content: "\f145";
1421
+ }
1422
+
1423
+ .fa-minus-square:before {
1424
+ content: "\f146";
1425
+ }
1426
+
1427
+ .fa-minus-square-o:before {
1428
+ content: "\f147";
1429
+ }
1430
+
1431
+ .fa-level-up:before {
1432
+ content: "\f148";
1433
+ }
1434
+
1435
+ .fa-level-down:before {
1436
+ content: "\f149";
1437
+ }
1438
+
1439
+ .fa-check-square:before {
1440
+ content: "\f14a";
1441
+ }
1442
+
1443
+ .fa-pencil-square:before {
1444
+ content: "\f14b";
1445
+ }
1446
+
1447
+ .fa-external-link-square:before {
1448
+ content: "\f14c";
1449
+ }
1450
+
1451
+ .fa-share-square:before {
1452
+ content: "\f14d";
1453
+ }
1454
+
1455
+ .fa-compass:before {
1456
+ content: "\f14e";
1457
+ }
1458
+
1459
+ .fa-toggle-down:before,
1460
+ .fa-caret-square-o-down:before {
1461
+ content: "\f150";
1462
+ }
1463
+
1464
+ .fa-toggle-up:before,
1465
+ .fa-caret-square-o-up:before {
1466
+ content: "\f151";
1467
+ }
1468
+
1469
+ .fa-toggle-right:before,
1470
+ .fa-caret-square-o-right:before {
1471
+ content: "\f152";
1472
+ }
1473
+
1474
+ .fa-euro:before,
1475
+ .fa-eur:before {
1476
+ content: "\f153";
1477
+ }
1478
+
1479
+ .fa-gbp:before {
1480
+ content: "\f154";
1481
+ }
1482
+
1483
+ .fa-dollar:before,
1484
+ .fa-usd:before {
1485
+ content: "\f155";
1486
+ }
1487
+
1488
+ .fa-rupee:before,
1489
+ .fa-inr:before {
1490
+ content: "\f156";
1491
+ }
1492
+
1493
+ .fa-cny:before,
1494
+ .fa-rmb:before,
1495
+ .fa-yen:before,
1496
+ .fa-jpy:before {
1497
+ content: "\f157";
1498
+ }
1499
+
1500
+ .fa-ruble:before,
1501
+ .fa-rouble:before,
1502
+ .fa-rub:before {
1503
+ content: "\f158";
1504
+ }
1505
+
1506
+ .fa-won:before,
1507
+ .fa-krw:before {
1508
+ content: "\f159";
1509
+ }
1510
+
1511
+ .fa-bitcoin:before,
1512
+ .fa-btc:before {
1513
+ content: "\f15a";
1514
+ }
1515
+
1516
+ .fa-file:before {
1517
+ content: "\f15b";
1518
+ }
1519
+
1520
+ .fa-file-text:before {
1521
+ content: "\f15c";
1522
+ }
1523
+
1524
+ .fa-sort-alpha-asc:before {
1525
+ content: "\f15d";
1526
+ }
1527
+
1528
+ .fa-sort-alpha-desc:before {
1529
+ content: "\f15e";
1530
+ }
1531
+
1532
+ .fa-sort-amount-asc:before {
1533
+ content: "\f160";
1534
+ }
1535
+
1536
+ .fa-sort-amount-desc:before {
1537
+ content: "\f161";
1538
+ }
1539
+
1540
+ .fa-sort-numeric-asc:before {
1541
+ content: "\f162";
1542
+ }
1543
+
1544
+ .fa-sort-numeric-desc:before {
1545
+ content: "\f163";
1546
+ }
1547
+
1548
+ .fa-thumbs-up:before {
1549
+ content: "\f164";
1550
+ }
1551
+
1552
+ .fa-thumbs-down:before {
1553
+ content: "\f165";
1554
+ }
1555
+
1556
+ .fa-youtube-square:before {
1557
+ content: "\f166";
1558
+ }
1559
+
1560
+ .fa-youtube:before {
1561
+ content: "\f167";
1562
+ }
1563
+
1564
+ .fa-xing:before {
1565
+ content: "\f168";
1566
+ }
1567
+
1568
+ .fa-xing-square:before {
1569
+ content: "\f169";
1570
+ }
1571
+
1572
+ .fa-youtube-play:before {
1573
+ content: "\f16a";
1574
+ }
1575
+
1576
+ .fa-dropbox:before {
1577
+ content: "\f16b";
1578
+ }
1579
+
1580
+ .fa-stack-overflow:before {
1581
+ content: "\f16c";
1582
+ }
1583
+
1584
+ .fa-instagram:before {
1585
+ content: "\f16d";
1586
+ }
1587
+
1588
+ .fa-flickr:before {
1589
+ content: "\f16e";
1590
+ }
1591
+
1592
+ .fa-adn:before {
1593
+ content: "\f170";
1594
+ }
1595
+
1596
+ .fa-bitbucket:before {
1597
+ content: "\f171";
1598
+ }
1599
+
1600
+ .fa-bitbucket-square:before {
1601
+ content: "\f172";
1602
+ }
1603
+
1604
+ .fa-tumblr:before {
1605
+ content: "\f173";
1606
+ }
1607
+
1608
+ .fa-tumblr-square:before {
1609
+ content: "\f174";
1610
+ }
1611
+
1612
+ .fa-long-arrow-down:before {
1613
+ content: "\f175";
1614
+ }
1615
+
1616
+ .fa-long-arrow-up:before {
1617
+ content: "\f176";
1618
+ }
1619
+
1620
+ .fa-long-arrow-left:before {
1621
+ content: "\f177";
1622
+ }
1623
+
1624
+ .fa-long-arrow-right:before {
1625
+ content: "\f178";
1626
+ }
1627
+
1628
+ .fa-apple:before {
1629
+ content: "\f179";
1630
+ }
1631
+
1632
+ .fa-windows:before {
1633
+ content: "\f17a";
1634
+ }
1635
+
1636
+ .fa-android:before {
1637
+ content: "\f17b";
1638
+ }
1639
+
1640
+ .fa-linux:before {
1641
+ content: "\f17c";
1642
+ }
1643
+
1644
+ .fa-dribbble:before {
1645
+ content: "\f17d";
1646
+ }
1647
+
1648
+ .fa-skype:before {
1649
+ content: "\f17e";
1650
+ }
1651
+
1652
+ .fa-foursquare:before {
1653
+ content: "\f180";
1654
+ }
1655
+
1656
+ .fa-trello:before {
1657
+ content: "\f181";
1658
+ }
1659
+
1660
+ .fa-female:before {
1661
+ content: "\f182";
1662
+ }
1663
+
1664
+ .fa-male:before {
1665
+ content: "\f183";
1666
+ }
1667
+
1668
+ .fa-gittip:before,
1669
+ .fa-gratipay:before {
1670
+ content: "\f184";
1671
+ }
1672
+
1673
+ .fa-sun-o:before {
1674
+ content: "\f185";
1675
+ }
1676
+
1677
+ .fa-moon-o:before {
1678
+ content: "\f186";
1679
+ }
1680
+
1681
+ .fa-archive:before {
1682
+ content: "\f187";
1683
+ }
1684
+
1685
+ .fa-bug:before {
1686
+ content: "\f188";
1687
+ }
1688
+
1689
+ .fa-vk:before {
1690
+ content: "\f189";
1691
+ }
1692
+
1693
+ .fa-weibo:before {
1694
+ content: "\f18a";
1695
+ }
1696
+
1697
+ .fa-renren:before {
1698
+ content: "\f18b";
1699
+ }
1700
+
1701
+ .fa-pagelines:before {
1702
+ content: "\f18c";
1703
+ }
1704
+
1705
+ .fa-stack-exchange:before {
1706
+ content: "\f18d";
1707
+ }
1708
+
1709
+ .fa-arrow-circle-o-right:before {
1710
+ content: "\f18e";
1711
+ }
1712
+
1713
+ .fa-arrow-circle-o-left:before {
1714
+ content: "\f190";
1715
+ }
1716
+
1717
+ .fa-toggle-left:before,
1718
+ .fa-caret-square-o-left:before {
1719
+ content: "\f191";
1720
+ }
1721
+
1722
+ .fa-dot-circle-o:before {
1723
+ content: "\f192";
1724
+ }
1725
+
1726
+ .fa-wheelchair:before {
1727
+ content: "\f193";
1728
+ }
1729
+
1730
+ .fa-vimeo-square:before {
1731
+ content: "\f194";
1732
+ }
1733
+
1734
+ .fa-turkish-lira:before,
1735
+ .fa-try:before {
1736
+ content: "\f195";
1737
+ }
1738
+
1739
+ .fa-plus-square-o:before {
1740
+ content: "\f196";
1741
+ }
1742
+
1743
+ .fa-space-shuttle:before {
1744
+ content: "\f197";
1745
+ }
1746
+
1747
+ .fa-slack:before {
1748
+ content: "\f198";
1749
+ }
1750
+
1751
+ .fa-envelope-square:before {
1752
+ content: "\f199";
1753
+ }
1754
+
1755
+ .fa-wordpress:before {
1756
+ content: "\f19a";
1757
+ }
1758
+
1759
+ .fa-openid:before {
1760
+ content: "\f19b";
1761
+ }
1762
+
1763
+ .fa-institution:before,
1764
+ .fa-bank:before,
1765
+ .fa-university:before {
1766
+ content: "\f19c";
1767
+ }
1768
+
1769
+ .fa-mortar-board:before,
1770
+ .fa-graduation-cap:before {
1771
+ content: "\f19d";
1772
+ }
1773
+
1774
+ .fa-yahoo:before {
1775
+ content: "\f19e";
1776
+ }
1777
+
1778
+ .fa-google:before {
1779
+ content: "\f1a0";
1780
+ }
1781
+
1782
+ .fa-reddit:before {
1783
+ content: "\f1a1";
1784
+ }
1785
+
1786
+ .fa-reddit-square:before {
1787
+ content: "\f1a2";
1788
+ }
1789
+
1790
+ .fa-stumbleupon-circle:before {
1791
+ content: "\f1a3";
1792
+ }
1793
+
1794
+ .fa-stumbleupon:before {
1795
+ content: "\f1a4";
1796
+ }
1797
+
1798
+ .fa-delicious:before {
1799
+ content: "\f1a5";
1800
+ }
1801
+
1802
+ .fa-digg:before {
1803
+ content: "\f1a6";
1804
+ }
1805
+
1806
+ .fa-pied-piper-pp:before {
1807
+ content: "\f1a7";
1808
+ }
1809
+
1810
+ .fa-pied-piper-alt:before {
1811
+ content: "\f1a8";
1812
+ }
1813
+
1814
+ .fa-drupal:before {
1815
+ content: "\f1a9";
1816
+ }
1817
+
1818
+ .fa-joomla:before {
1819
+ content: "\f1aa";
1820
+ }
1821
+
1822
+ .fa-language:before {
1823
+ content: "\f1ab";
1824
+ }
1825
+
1826
+ .fa-fax:before {
1827
+ content: "\f1ac";
1828
+ }
1829
+
1830
+ .fa-building:before {
1831
+ content: "\f1ad";
1832
+ }
1833
+
1834
+ .fa-child:before {
1835
+ content: "\f1ae";
1836
+ }
1837
+
1838
+ .fa-paw:before {
1839
+ content: "\f1b0";
1840
+ }
1841
+
1842
+ .fa-spoon:before {
1843
+ content: "\f1b1";
1844
+ }
1845
+
1846
+ .fa-cube:before {
1847
+ content: "\f1b2";
1848
+ }
1849
+
1850
+ .fa-cubes:before {
1851
+ content: "\f1b3";
1852
+ }
1853
+
1854
+ .fa-behance:before {
1855
+ content: "\f1b4";
1856
+ }
1857
+
1858
+ .fa-behance-square:before {
1859
+ content: "\f1b5";
1860
+ }
1861
+
1862
+ .fa-steam:before {
1863
+ content: "\f1b6";
1864
+ }
1865
+
1866
+ .fa-steam-square:before {
1867
+ content: "\f1b7";
1868
+ }
1869
+
1870
+ .fa-recycle:before {
1871
+ content: "\f1b8";
1872
+ }
1873
+
1874
+ .fa-automobile:before,
1875
+ .fa-car:before {
1876
+ content: "\f1b9";
1877
+ }
1878
+
1879
+ .fa-cab:before,
1880
+ .fa-taxi:before {
1881
+ content: "\f1ba";
1882
+ }
1883
+
1884
+ .fa-tree:before {
1885
+ content: "\f1bb";
1886
+ }
1887
+
1888
+ .fa-spotify:before {
1889
+ content: "\f1bc";
1890
+ }
1891
+
1892
+ .fa-deviantart:before {
1893
+ content: "\f1bd";
1894
+ }
1895
+
1896
+ .fa-soundcloud:before {
1897
+ content: "\f1be";
1898
+ }
1899
+
1900
+ .fa-database:before {
1901
+ content: "\f1c0";
1902
+ }
1903
+
1904
+ .fa-file-pdf-o:before {
1905
+ content: "\f1c1";
1906
+ }
1907
+
1908
+ .fa-file-word-o:before {
1909
+ content: "\f1c2";
1910
+ }
1911
+
1912
+ .fa-file-excel-o:before {
1913
+ content: "\f1c3";
1914
+ }
1915
+
1916
+ .fa-file-powerpoint-o:before {
1917
+ content: "\f1c4";
1918
+ }
1919
+
1920
+ .fa-file-photo-o:before,
1921
+ .fa-file-picture-o:before,
1922
+ .fa-file-image-o:before {
1923
+ content: "\f1c5";
1924
+ }
1925
+
1926
+ .fa-file-zip-o:before,
1927
+ .fa-file-archive-o:before {
1928
+ content: "\f1c6";
1929
+ }
1930
+
1931
+ .fa-file-sound-o:before,
1932
+ .fa-file-audio-o:before {
1933
+ content: "\f1c7";
1934
+ }
1935
+
1936
+ .fa-file-movie-o:before,
1937
+ .fa-file-video-o:before {
1938
+ content: "\f1c8";
1939
+ }
1940
+
1941
+ .fa-file-code-o:before {
1942
+ content: "\f1c9";
1943
+ }
1944
+
1945
+ .fa-vine:before {
1946
+ content: "\f1ca";
1947
+ }
1948
+
1949
+ .fa-codepen:before {
1950
+ content: "\f1cb";
1951
+ }
1952
+
1953
+ .fa-jsfiddle:before {
1954
+ content: "\f1cc";
1955
+ }
1956
+
1957
+ .fa-life-bouy:before,
1958
+ .fa-life-buoy:before,
1959
+ .fa-life-saver:before,
1960
+ .fa-support:before,
1961
+ .fa-life-ring:before {
1962
+ content: "\f1cd";
1963
+ }
1964
+
1965
+ .fa-circle-o-notch:before {
1966
+ content: "\f1ce";
1967
+ }
1968
+
1969
+ .fa-ra:before,
1970
+ .fa-resistance:before,
1971
+ .fa-rebel:before {
1972
+ content: "\f1d0";
1973
+ }
1974
+
1975
+ .fa-ge:before,
1976
+ .fa-empire:before {
1977
+ content: "\f1d1";
1978
+ }
1979
+
1980
+ .fa-git-square:before {
1981
+ content: "\f1d2";
1982
+ }
1983
+
1984
+ .fa-git:before {
1985
+ content: "\f1d3";
1986
+ }
1987
+
1988
+ .fa-y-combinator-square:before,
1989
+ .fa-yc-square:before,
1990
+ .fa-hacker-news:before {
1991
+ content: "\f1d4";
1992
+ }
1993
+
1994
+ .fa-tencent-weibo:before {
1995
+ content: "\f1d5";
1996
+ }
1997
+
1998
+ .fa-qq:before {
1999
+ content: "\f1d6";
2000
+ }
2001
+
2002
+ .fa-wechat:before,
2003
+ .fa-weixin:before {
2004
+ content: "\f1d7";
2005
+ }
2006
+
2007
+ .fa-send:before,
2008
+ .fa-paper-plane:before {
2009
+ content: "\f1d8";
2010
+ }
2011
+
2012
+ .fa-send-o:before,
2013
+ .fa-paper-plane-o:before {
2014
+ content: "\f1d9";
2015
+ }
2016
+
2017
+ .fa-history:before {
2018
+ content: "\f1da";
2019
+ }
2020
+
2021
+ .fa-circle-thin:before {
2022
+ content: "\f1db";
2023
+ }
2024
+
2025
+ .fa-header:before {
2026
+ content: "\f1dc";
2027
+ }
2028
+
2029
+ .fa-paragraph:before {
2030
+ content: "\f1dd";
2031
+ }
2032
+
2033
+ .fa-sliders:before {
2034
+ content: "\f1de";
2035
+ }
2036
+
2037
+ .fa-share-alt:before {
2038
+ content: "\f1e0";
2039
+ }
2040
+
2041
+ .fa-share-alt-square:before {
2042
+ content: "\f1e1";
2043
+ }
2044
+
2045
+ .fa-bomb:before {
2046
+ content: "\f1e2";
2047
+ }
2048
+
2049
+ .fa-soccer-ball-o:before,
2050
+ .fa-futbol-o:before {
2051
+ content: "\f1e3";
2052
+ }
2053
+
2054
+ .fa-tty:before {
2055
+ content: "\f1e4";
2056
+ }
2057
+
2058
+ .fa-binoculars:before {
2059
+ content: "\f1e5";
2060
+ }
2061
+
2062
+ .fa-plug:before {
2063
+ content: "\f1e6";
2064
+ }
2065
+
2066
+ .fa-slideshare:before {
2067
+ content: "\f1e7";
2068
+ }
2069
+
2070
+ .fa-twitch:before {
2071
+ content: "\f1e8";
2072
+ }
2073
+
2074
+ .fa-yelp:before {
2075
+ content: "\f1e9";
2076
+ }
2077
+
2078
+ .fa-newspaper-o:before {
2079
+ content: "\f1ea";
2080
+ }
2081
+
2082
+ .fa-wifi:before {
2083
+ content: "\f1eb";
2084
+ }
2085
+
2086
+ .fa-calculator:before {
2087
+ content: "\f1ec";
2088
+ }
2089
+
2090
+ .fa-paypal:before {
2091
+ content: "\f1ed";
2092
+ }
2093
+
2094
+ .fa-google-wallet:before {
2095
+ content: "\f1ee";
2096
+ }
2097
+
2098
+ .fa-cc-visa:before {
2099
+ content: "\f1f0";
2100
+ }
2101
+
2102
+ .fa-cc-mastercard:before {
2103
+ content: "\f1f1";
2104
+ }
2105
+
2106
+ .fa-cc-discover:before {
2107
+ content: "\f1f2";
2108
+ }
2109
+
2110
+ .fa-cc-amex:before {
2111
+ content: "\f1f3";
2112
+ }
2113
+
2114
+ .fa-cc-paypal:before {
2115
+ content: "\f1f4";
2116
+ }
2117
+
2118
+ .fa-cc-stripe:before {
2119
+ content: "\f1f5";
2120
+ }
2121
+
2122
+ .fa-bell-slash:before {
2123
+ content: "\f1f6";
2124
+ }
2125
+
2126
+ .fa-bell-slash-o:before {
2127
+ content: "\f1f7";
2128
+ }
2129
+
2130
+ .fa-trash:before {
2131
+ content: "\f1f8";
2132
+ }
2133
+
2134
+ .fa-copyright:before {
2135
+ content: "\f1f9";
2136
+ }
2137
+
2138
+ .fa-at:before {
2139
+ content: "\f1fa";
2140
+ }
2141
+
2142
+ .fa-eyedropper:before {
2143
+ content: "\f1fb";
2144
+ }
2145
+
2146
+ .fa-paint-brush:before {
2147
+ content: "\f1fc";
2148
+ }
2149
+
2150
+ .fa-birthday-cake:before {
2151
+ content: "\f1fd";
2152
+ }
2153
+
2154
+ .fa-area-chart:before {
2155
+ content: "\f1fe";
2156
+ }
2157
+
2158
+ .fa-pie-chart:before {
2159
+ content: "\f200";
2160
+ }
2161
+
2162
+ .fa-line-chart:before {
2163
+ content: "\f201";
2164
+ }
2165
+
2166
+ .fa-lastfm:before {
2167
+ content: "\f202";
2168
+ }
2169
+
2170
+ .fa-lastfm-square:before {
2171
+ content: "\f203";
2172
+ }
2173
+
2174
+ .fa-toggle-off:before {
2175
+ content: "\f204";
2176
+ }
2177
+
2178
+ .fa-toggle-on:before {
2179
+ content: "\f205";
2180
+ }
2181
+
2182
+ .fa-bicycle:before {
2183
+ content: "\f206";
2184
+ }
2185
+
2186
+ .fa-bus:before {
2187
+ content: "\f207";
2188
+ }
2189
+
2190
+ .fa-ioxhost:before {
2191
+ content: "\f208";
2192
+ }
2193
+
2194
+ .fa-angellist:before {
2195
+ content: "\f209";
2196
+ }
2197
+
2198
+ .fa-cc:before {
2199
+ content: "\f20a";
2200
+ }
2201
+
2202
+ .fa-shekel:before,
2203
+ .fa-sheqel:before,
2204
+ .fa-ils:before {
2205
+ content: "\f20b";
2206
+ }
2207
+
2208
+ .fa-meanpath:before {
2209
+ content: "\f20c";
2210
+ }
2211
+
2212
+ .fa-buysellads:before {
2213
+ content: "\f20d";
2214
+ }
2215
+
2216
+ .fa-connectdevelop:before {
2217
+ content: "\f20e";
2218
+ }
2219
+
2220
+ .fa-dashcube:before {
2221
+ content: "\f210";
2222
+ }
2223
+
2224
+ .fa-forumbee:before {
2225
+ content: "\f211";
2226
+ }
2227
+
2228
+ .fa-leanpub:before {
2229
+ content: "\f212";
2230
+ }
2231
+
2232
+ .fa-sellsy:before {
2233
+ content: "\f213";
2234
+ }
2235
+
2236
+ .fa-shirtsinbulk:before {
2237
+ content: "\f214";
2238
+ }
2239
+
2240
+ .fa-simplybuilt:before {
2241
+ content: "\f215";
2242
+ }
2243
+
2244
+ .fa-skyatlas:before {
2245
+ content: "\f216";
2246
+ }
2247
+
2248
+ .fa-cart-plus:before {
2249
+ content: "\f217";
2250
+ }
2251
+
2252
+ .fa-cart-arrow-down:before {
2253
+ content: "\f218";
2254
+ }
2255
+
2256
+ .fa-diamond:before {
2257
+ content: "\f219";
2258
+ }
2259
+
2260
+ .fa-ship:before {
2261
+ content: "\f21a";
2262
+ }
2263
+
2264
+ .fa-user-secret:before {
2265
+ content: "\f21b";
2266
+ }
2267
+
2268
+ .fa-motorcycle:before {
2269
+ content: "\f21c";
2270
+ }
2271
+
2272
+ .fa-street-view:before {
2273
+ content: "\f21d";
2274
+ }
2275
+
2276
+ .fa-heartbeat:before {
2277
+ content: "\f21e";
2278
+ }
2279
+
2280
+ .fa-venus:before {
2281
+ content: "\f221";
2282
+ }
2283
+
2284
+ .fa-mars:before {
2285
+ content: "\f222";
2286
+ }
2287
+
2288
+ .fa-mercury:before {
2289
+ content: "\f223";
2290
+ }
2291
+
2292
+ .fa-intersex:before,
2293
+ .fa-transgender:before {
2294
+ content: "\f224";
2295
+ }
2296
+
2297
+ .fa-transgender-alt:before {
2298
+ content: "\f225";
2299
+ }
2300
+
2301
+ .fa-venus-double:before {
2302
+ content: "\f226";
2303
+ }
2304
+
2305
+ .fa-mars-double:before {
2306
+ content: "\f227";
2307
+ }
2308
+
2309
+ .fa-venus-mars:before {
2310
+ content: "\f228";
2311
+ }
2312
+
2313
+ .fa-mars-stroke:before {
2314
+ content: "\f229";
2315
+ }
2316
+
2317
+ .fa-mars-stroke-v:before {
2318
+ content: "\f22a";
2319
+ }
2320
+
2321
+ .fa-mars-stroke-h:before {
2322
+ content: "\f22b";
2323
+ }
2324
+
2325
+ .fa-neuter:before {
2326
+ content: "\f22c";
2327
+ }
2328
+
2329
+ .fa-genderless:before {
2330
+ content: "\f22d";
2331
+ }
2332
+
2333
+ .fa-facebook-official:before {
2334
+ content: "\f230";
2335
+ }
2336
+
2337
+ .fa-pinterest-p:before {
2338
+ content: "\f231";
2339
+ }
2340
+
2341
+ .fa-whatsapp:before {
2342
+ content: "\f232";
2343
+ }
2344
+
2345
+ .fa-server:before {
2346
+ content: "\f233";
2347
+ }
2348
+
2349
+ .fa-user-plus:before {
2350
+ content: "\f234";
2351
+ }
2352
+
2353
+ .fa-user-times:before {
2354
+ content: "\f235";
2355
+ }
2356
+
2357
+ .fa-hotel:before,
2358
+ .fa-bed:before {
2359
+ content: "\f236";
2360
+ }
2361
+
2362
+ .fa-viacoin:before {
2363
+ content: "\f237";
2364
+ }
2365
+
2366
+ .fa-train:before {
2367
+ content: "\f238";
2368
+ }
2369
+
2370
+ .fa-subway:before {
2371
+ content: "\f239";
2372
+ }
2373
+
2374
+ .fa-medium:before {
2375
+ content: "\f23a";
2376
+ }
2377
+
2378
+ .fa-yc:before,
2379
+ .fa-y-combinator:before {
2380
+ content: "\f23b";
2381
+ }
2382
+
2383
+ .fa-optin-monster:before {
2384
+ content: "\f23c";
2385
+ }
2386
+
2387
+ .fa-opencart:before {
2388
+ content: "\f23d";
2389
+ }
2390
+
2391
+ .fa-expeditedssl:before {
2392
+ content: "\f23e";
2393
+ }
2394
+
2395
+ .fa-battery-4:before,
2396
+ .fa-battery:before,
2397
+ .fa-battery-full:before {
2398
+ content: "\f240";
2399
+ }
2400
+
2401
+ .fa-battery-3:before,
2402
+ .fa-battery-three-quarters:before {
2403
+ content: "\f241";
2404
+ }
2405
+
2406
+ .fa-battery-2:before,
2407
+ .fa-battery-half:before {
2408
+ content: "\f242";
2409
+ }
2410
+
2411
+ .fa-battery-1:before,
2412
+ .fa-battery-quarter:before {
2413
+ content: "\f243";
2414
+ }
2415
+
2416
+ .fa-battery-0:before,
2417
+ .fa-battery-empty:before {
2418
+ content: "\f244";
2419
+ }
2420
+
2421
+ .fa-mouse-pointer:before {
2422
+ content: "\f245";
2423
+ }
2424
+
2425
+ .fa-i-cursor:before {
2426
+ content: "\f246";
2427
+ }
2428
+
2429
+ .fa-object-group:before {
2430
+ content: "\f247";
2431
+ }
2432
+
2433
+ .fa-object-ungroup:before {
2434
+ content: "\f248";
2435
+ }
2436
+
2437
+ .fa-sticky-note:before {
2438
+ content: "\f249";
2439
+ }
2440
+
2441
+ .fa-sticky-note-o:before {
2442
+ content: "\f24a";
2443
+ }
2444
+
2445
+ .fa-cc-jcb:before {
2446
+ content: "\f24b";
2447
+ }
2448
+
2449
+ .fa-cc-diners-club:before {
2450
+ content: "\f24c";
2451
+ }
2452
+
2453
+ .fa-clone:before {
2454
+ content: "\f24d";
2455
+ }
2456
+
2457
+ .fa-balance-scale:before {
2458
+ content: "\f24e";
2459
+ }
2460
+
2461
+ .fa-hourglass-o:before {
2462
+ content: "\f250";
2463
+ }
2464
+
2465
+ .fa-hourglass-1:before,
2466
+ .fa-hourglass-start:before {
2467
+ content: "\f251";
2468
+ }
2469
+
2470
+ .fa-hourglass-2:before,
2471
+ .fa-hourglass-half:before {
2472
+ content: "\f252";
2473
+ }
2474
+
2475
+ .fa-hourglass-3:before,
2476
+ .fa-hourglass-end:before {
2477
+ content: "\f253";
2478
+ }
2479
+
2480
+ .fa-hourglass:before {
2481
+ content: "\f254";
2482
+ }
2483
+
2484
+ .fa-hand-grab-o:before,
2485
+ .fa-hand-rock-o:before {
2486
+ content: "\f255";
2487
+ }
2488
+
2489
+ .fa-hand-stop-o:before,
2490
+ .fa-hand-paper-o:before {
2491
+ content: "\f256";
2492
+ }
2493
+
2494
+ .fa-hand-scissors-o:before {
2495
+ content: "\f257";
2496
+ }
2497
+
2498
+ .fa-hand-lizard-o:before {
2499
+ content: "\f258";
2500
+ }
2501
+
2502
+ .fa-hand-spock-o:before {
2503
+ content: "\f259";
2504
+ }
2505
+
2506
+ .fa-hand-pointer-o:before {
2507
+ content: "\f25a";
2508
+ }
2509
+
2510
+ .fa-hand-peace-o:before {
2511
+ content: "\f25b";
2512
+ }
2513
+
2514
+ .fa-trademark:before {
2515
+ content: "\f25c";
2516
+ }
2517
+
2518
+ .fa-registered:before {
2519
+ content: "\f25d";
2520
+ }
2521
+
2522
+ .fa-creative-commons:before {
2523
+ content: "\f25e";
2524
+ }
2525
+
2526
+ .fa-gg:before {
2527
+ content: "\f260";
2528
+ }
2529
+
2530
+ .fa-gg-circle:before {
2531
+ content: "\f261";
2532
+ }
2533
+
2534
+ .fa-tripadvisor:before {
2535
+ content: "\f262";
2536
+ }
2537
+
2538
+ .fa-odnoklassniki:before {
2539
+ content: "\f263";
2540
+ }
2541
+
2542
+ .fa-odnoklassniki-square:before {
2543
+ content: "\f264";
2544
+ }
2545
+
2546
+ .fa-get-pocket:before {
2547
+ content: "\f265";
2548
+ }
2549
+
2550
+ .fa-wikipedia-w:before {
2551
+ content: "\f266";
2552
+ }
2553
+
2554
+ .fa-safari:before {
2555
+ content: "\f267";
2556
+ }
2557
+
2558
+ .fa-chrome:before {
2559
+ content: "\f268";
2560
+ }
2561
+
2562
+ .fa-firefox:before {
2563
+ content: "\f269";
2564
+ }
2565
+
2566
+ .fa-opera:before {
2567
+ content: "\f26a";
2568
+ }
2569
+
2570
+ .fa-internet-explorer:before {
2571
+ content: "\f26b";
2572
+ }
2573
+
2574
+ .fa-tv:before,
2575
+ .fa-television:before {
2576
+ content: "\f26c";
2577
+ }
2578
+
2579
+ .fa-contao:before {
2580
+ content: "\f26d";
2581
+ }
2582
+
2583
+ .fa-500px:before {
2584
+ content: "\f26e";
2585
+ }
2586
+
2587
+ .fa-amazon:before {
2588
+ content: "\f270";
2589
+ }
2590
+
2591
+ .fa-calendar-plus-o:before {
2592
+ content: "\f271";
2593
+ }
2594
+
2595
+ .fa-calendar-minus-o:before {
2596
+ content: "\f272";
2597
+ }
2598
+
2599
+ .fa-calendar-times-o:before {
2600
+ content: "\f273";
2601
+ }
2602
+
2603
+ .fa-calendar-check-o:before {
2604
+ content: "\f274";
2605
+ }
2606
+
2607
+ .fa-industry:before {
2608
+ content: "\f275";
2609
+ }
2610
+
2611
+ .fa-map-pin:before {
2612
+ content: "\f276";
2613
+ }
2614
+
2615
+ .fa-map-signs:before {
2616
+ content: "\f277";
2617
+ }
2618
+
2619
+ .fa-map-o:before {
2620
+ content: "\f278";
2621
+ }
2622
+
2623
+ .fa-map:before {
2624
+ content: "\f279";
2625
+ }
2626
+
2627
+ .fa-commenting:before {
2628
+ content: "\f27a";
2629
+ }
2630
+
2631
+ .fa-commenting-o:before {
2632
+ content: "\f27b";
2633
+ }
2634
+
2635
+ .fa-houzz:before {
2636
+ content: "\f27c";
2637
+ }
2638
+
2639
+ .fa-vimeo:before {
2640
+ content: "\f27d";
2641
+ }
2642
+
2643
+ .fa-black-tie:before {
2644
+ content: "\f27e";
2645
+ }
2646
+
2647
+ .fa-fonticons:before {
2648
+ content: "\f280";
2649
+ }
2650
+
2651
+ .fa-reddit-alien:before {
2652
+ content: "\f281";
2653
+ }
2654
+
2655
+ .fa-edge:before {
2656
+ content: "\f282";
2657
+ }
2658
+
2659
+ .fa-credit-card-alt:before {
2660
+ content: "\f283";
2661
+ }
2662
+
2663
+ .fa-codiepie:before {
2664
+ content: "\f284";
2665
+ }
2666
+
2667
+ .fa-modx:before {
2668
+ content: "\f285";
2669
+ }
2670
+
2671
+ .fa-fort-awesome:before {
2672
+ content: "\f286";
2673
+ }
2674
+
2675
+ .fa-usb:before {
2676
+ content: "\f287";
2677
+ }
2678
+
2679
+ .fa-product-hunt:before {
2680
+ content: "\f288";
2681
+ }
2682
+
2683
+ .fa-mixcloud:before {
2684
+ content: "\f289";
2685
+ }
2686
+
2687
+ .fa-scribd:before {
2688
+ content: "\f28a";
2689
+ }
2690
+
2691
+ .fa-pause-circle:before {
2692
+ content: "\f28b";
2693
+ }
2694
+
2695
+ .fa-pause-circle-o:before {
2696
+ content: "\f28c";
2697
+ }
2698
+
2699
+ .fa-stop-circle:before {
2700
+ content: "\f28d";
2701
+ }
2702
+
2703
+ .fa-stop-circle-o:before {
2704
+ content: "\f28e";
2705
+ }
2706
+
2707
+ .fa-shopping-bag:before {
2708
+ content: "\f290";
2709
+ }
2710
+
2711
+ .fa-shopping-basket:before {
2712
+ content: "\f291";
2713
+ }
2714
+
2715
+ .fa-hashtag:before {
2716
+ content: "\f292";
2717
+ }
2718
+
2719
+ .fa-bluetooth:before {
2720
+ content: "\f293";
2721
+ }
2722
+
2723
+ .fa-bluetooth-b:before {
2724
+ content: "\f294";
2725
+ }
2726
+
2727
+ .fa-percent:before {
2728
+ content: "\f295";
2729
+ }
2730
+
2731
+ .fa-gitlab:before {
2732
+ content: "\f296";
2733
+ }
2734
+
2735
+ .fa-wpbeginner:before {
2736
+ content: "\f297";
2737
+ }
2738
+
2739
+ .fa-wpforms:before {
2740
+ content: "\f298";
2741
+ }
2742
+
2743
+ .fa-envira:before {
2744
+ content: "\f299";
2745
+ }
2746
+
2747
+ .fa-universal-access:before {
2748
+ content: "\f29a";
2749
+ }
2750
+
2751
+ .fa-wheelchair-alt:before {
2752
+ content: "\f29b";
2753
+ }
2754
+
2755
+ .fa-question-circle-o:before {
2756
+ content: "\f29c";
2757
+ }
2758
+
2759
+ .fa-blind:before {
2760
+ content: "\f29d";
2761
+ }
2762
+
2763
+ .fa-audio-description:before {
2764
+ content: "\f29e";
2765
+ }
2766
+
2767
+ .fa-volume-control-phone:before {
2768
+ content: "\f2a0";
2769
+ }
2770
+
2771
+ .fa-braille:before {
2772
+ content: "\f2a1";
2773
+ }
2774
+
2775
+ .fa-assistive-listening-systems:before {
2776
+ content: "\f2a2";
2777
+ }
2778
+
2779
+ .fa-asl-interpreting:before,
2780
+ .fa-american-sign-language-interpreting:before {
2781
+ content: "\f2a3";
2782
+ }
2783
+
2784
+ .fa-deafness:before,
2785
+ .fa-hard-of-hearing:before,
2786
+ .fa-deaf:before {
2787
+ content: "\f2a4";
2788
+ }
2789
+
2790
+ .fa-glide:before {
2791
+ content: "\f2a5";
2792
+ }
2793
+
2794
+ .fa-glide-g:before {
2795
+ content: "\f2a6";
2796
+ }
2797
+
2798
+ .fa-signing:before,
2799
+ .fa-sign-language:before {
2800
+ content: "\f2a7";
2801
+ }
2802
+
2803
+ .fa-low-vision:before {
2804
+ content: "\f2a8";
2805
+ }
2806
+
2807
+ .fa-viadeo:before {
2808
+ content: "\f2a9";
2809
+ }
2810
+
2811
+ .fa-viadeo-square:before {
2812
+ content: "\f2aa";
2813
+ }
2814
+
2815
+ .fa-snapchat:before {
2816
+ content: "\f2ab";
2817
+ }
2818
+
2819
+ .fa-snapchat-ghost:before {
2820
+ content: "\f2ac";
2821
+ }
2822
+
2823
+ .fa-snapchat-square:before {
2824
+ content: "\f2ad";
2825
+ }
2826
+
2827
+ .fa-pied-piper:before {
2828
+ content: "\f2ae";
2829
+ }
2830
+
2831
+ .fa-first-order:before {
2832
+ content: "\f2b0";
2833
+ }
2834
+
2835
+ .fa-yoast:before {
2836
+ content: "\f2b1";
2837
+ }
2838
+
2839
+ .fa-themeisle:before {
2840
+ content: "\f2b2";
2841
+ }
2842
+
2843
+ .fa-google-plus-circle:before,
2844
+ .fa-google-plus-official:before {
2845
+ content: "\f2b3";
2846
+ }
2847
+
2848
+ .fa-fa:before,
2849
+ .fa-font-awesome:before {
2850
+ content: "\f2b4";
2851
+ }
2852
+
2853
+ .fa-handshake-o:before {
2854
+ content: "\f2b5";
2855
+ }
2856
+
2857
+ .fa-envelope-open:before {
2858
+ content: "\f2b6";
2859
+ }
2860
+
2861
+ .fa-envelope-open-o:before {
2862
+ content: "\f2b7";
2863
+ }
2864
+
2865
+ .fa-linode:before {
2866
+ content: "\f2b8";
2867
+ }
2868
+
2869
+ .fa-address-book:before {
2870
+ content: "\f2b9";
2871
+ }
2872
+
2873
+ .fa-address-book-o:before {
2874
+ content: "\f2ba";
2875
+ }
2876
+
2877
+ .fa-vcard:before,
2878
+ .fa-address-card:before {
2879
+ content: "\f2bb";
2880
+ }
2881
+
2882
+ .fa-vcard-o:before,
2883
+ .fa-address-card-o:before {
2884
+ content: "\f2bc";
2885
+ }
2886
+
2887
+ .fa-user-circle:before {
2888
+ content: "\f2bd";
2889
+ }
2890
+
2891
+ .fa-user-circle-o:before {
2892
+ content: "\f2be";
2893
+ }
2894
+
2895
+ .fa-user-o:before {
2896
+ content: "\f2c0";
2897
+ }
2898
+
2899
+ .fa-id-badge:before {
2900
+ content: "\f2c1";
2901
+ }
2902
+
2903
+ .fa-drivers-license:before,
2904
+ .fa-id-card:before {
2905
+ content: "\f2c2";
2906
+ }
2907
+
2908
+ .fa-drivers-license-o:before,
2909
+ .fa-id-card-o:before {
2910
+ content: "\f2c3";
2911
+ }
2912
+
2913
+ .fa-quora:before {
2914
+ content: "\f2c4";
2915
+ }
2916
+
2917
+ .fa-free-code-camp:before {
2918
+ content: "\f2c5";
2919
+ }
2920
+
2921
+ .fa-telegram:before {
2922
+ content: "\f2c6";
2923
+ }
2924
+
2925
+ .fa-thermometer-4:before,
2926
+ .fa-thermometer:before,
2927
+ .fa-thermometer-full:before {
2928
+ content: "\f2c7";
2929
+ }
2930
+
2931
+ .fa-thermometer-3:before,
2932
+ .fa-thermometer-three-quarters:before {
2933
+ content: "\f2c8";
2934
+ }
2935
+
2936
+ .fa-thermometer-2:before,
2937
+ .fa-thermometer-half:before {
2938
+ content: "\f2c9";
2939
+ }
2940
+
2941
+ .fa-thermometer-1:before,
2942
+ .fa-thermometer-quarter:before {
2943
+ content: "\f2ca";
2944
+ }
2945
+
2946
+ .fa-thermometer-0:before,
2947
+ .fa-thermometer-empty:before {
2948
+ content: "\f2cb";
2949
+ }
2950
+
2951
+ .fa-shower:before {
2952
+ content: "\f2cc";
2953
+ }
2954
+
2955
+ .fa-bathtub:before,
2956
+ .fa-s15:before,
2957
+ .fa-bath:before {
2958
+ content: "\f2cd";
2959
+ }
2960
+
2961
+ .fa-podcast:before {
2962
+ content: "\f2ce";
2963
+ }
2964
+
2965
+ .fa-window-maximize:before {
2966
+ content: "\f2d0";
2967
+ }
2968
+
2969
+ .fa-window-minimize:before {
2970
+ content: "\f2d1";
2971
+ }
2972
+
2973
+ .fa-window-restore:before {
2974
+ content: "\f2d2";
2975
+ }
2976
+
2977
+ .fa-times-rectangle:before,
2978
+ .fa-window-close:before {
2979
+ content: "\f2d3";
2980
+ }
2981
+
2982
+ .fa-times-rectangle-o:before,
2983
+ .fa-window-close-o:before {
2984
+ content: "\f2d4";
2985
+ }
2986
+
2987
+ .fa-bandcamp:before {
2988
+ content: "\f2d5";
2989
+ }
2990
+
2991
+ .fa-grav:before {
2992
+ content: "\f2d6";
2993
+ }
2994
+
2995
+ .fa-etsy:before {
2996
+ content: "\f2d7";
2997
+ }
2998
+
2999
+ .fa-imdb:before {
3000
+ content: "\f2d8";
3001
+ }
3002
+
3003
+ .fa-ravelry:before {
3004
+ content: "\f2d9";
3005
+ }
3006
+
3007
+ .fa-eercast:before {
3008
+ content: "\f2da";
3009
+ }
3010
+
3011
+ .fa-microchip:before {
3012
+ content: "\f2db";
3013
+ }
3014
+
3015
+ .fa-snowflake-o:before {
3016
+ content: "\f2dc";
3017
+ }
3018
+
3019
+ .fa-superpowers:before {
3020
+ content: "\f2dd";
3021
+ }
3022
+
3023
+ .fa-wpexplorer:before {
3024
+ content: "\f2de";
3025
+ }
3026
+
3027
+ .fa-meetup:before {
3028
+ content: "\f2e0";
3029
+ }
3030
+
3031
+ .sr-only {
3032
+ position: absolute;
3033
+ width: 1px;
3034
+ height: 1px;
3035
+ padding: 0;
3036
+ margin: -1px;
3037
+ overflow: hidden;
3038
+ clip: rect(0, 0, 0, 0);
3039
+ border: 0;
3040
+ }
3041
+
3042
+ .sr-only-focusable:active,
3043
+ .sr-only-focusable:focus {
3044
+ position: static;
3045
+ width: auto;
3046
+ height: auto;
3047
+ margin: 0;
3048
+ overflow: visible;
3049
+ clip: auto;
3050
+ }
3051
+
3052
+ @font-face {
3053
+ font-family: Simple-Line-Icons;
3054
+ src: url(fonts/Simple-Line-Icons.eot);
3055
+ src: url(fonts/Simple-Line-Icons.eot?#iefix) format("embedded-opentype"), url(fonts/Simple-Line-Icons.woff) format("woff"), url(fonts/Simple-Line-Icons.ttf) format("truetype"), url(fonts/Simple-Line-Icons.svg#Simple-Line-Icons) format("svg");
3056
+ font-weight: 400;
3057
+ font-style: normal;
3058
+ }
3059
+
3060
+ .si {
3061
+ font-family: Simple-Line-Icons;
3062
+ speak: none;
3063
+ font-style: normal;
3064
+ font-weight: 400;
3065
+ font-variant: normal;
3066
+ text-transform: none;
3067
+ line-height: 1;
3068
+ -webkit-font-smoothing: antialiased;
3069
+ }
3070
+
3071
+ .btn .si {
3072
+ position: relative;
3073
+ bottom: -2px;
3074
+ display: inline-block;
3075
+ }
3076
+
3077
+ .si-user-female:before {
3078
+ content: "\e000";
3079
+ }
3080
+
3081
+ .si-user-follow:before {
3082
+ content: "\e002";
3083
+ }
3084
+
3085
+ .si-user-following:before {
3086
+ content: "\e003";
3087
+ }
3088
+
3089
+ .si-user-unfollow:before {
3090
+ content: "\e004";
3091
+ }
3092
+
3093
+ .si-trophy:before {
3094
+ content: "\e006";
3095
+ }
3096
+
3097
+ .si-screen-smartphone:before {
3098
+ content: "\e010";
3099
+ }
3100
+
3101
+ .si-screen-desktop:before {
3102
+ content: "\e011";
3103
+ }
3104
+
3105
+ .si-plane:before {
3106
+ content: "\e012";
3107
+ }
3108
+
3109
+ .si-notebook:before {
3110
+ content: "\e013";
3111
+ }
3112
+
3113
+ .si-moustache:before {
3114
+ content: "\e014";
3115
+ }
3116
+
3117
+ .si-mouse:before {
3118
+ content: "\e015";
3119
+ }
3120
+
3121
+ .si-magnet:before {
3122
+ content: "\e016";
3123
+ }
3124
+
3125
+ .si-energy:before {
3126
+ content: "\e020";
3127
+ }
3128
+
3129
+ .si-emoticon-smile:before {
3130
+ content: "\e021";
3131
+ }
3132
+
3133
+ .si-disc:before {
3134
+ content: "\e022";
3135
+ }
3136
+
3137
+ .si-cursor-move:before {
3138
+ content: "\e023";
3139
+ }
3140
+
3141
+ .si-crop:before {
3142
+ content: "\e024";
3143
+ }
3144
+
3145
+ .si-credit-card:before {
3146
+ content: "\e025";
3147
+ }
3148
+
3149
+ .si-chemistry:before {
3150
+ content: "\e026";
3151
+ }
3152
+
3153
+ .si-user:before {
3154
+ content: "\e005";
3155
+ }
3156
+
3157
+ .si-speedometer:before {
3158
+ content: "\e007";
3159
+ }
3160
+
3161
+ .si-social-youtube:before {
3162
+ content: "\e008";
3163
+ }
3164
+
3165
+ .si-social-twitter:before {
3166
+ content: "\e009";
3167
+ }
3168
+
3169
+ .si-social-tumblr:before {
3170
+ content: "\e00a";
3171
+ }
3172
+
3173
+ .si-social-facebook:before {
3174
+ content: "\e00b";
3175
+ }
3176
+
3177
+ .si-social-dropbox:before {
3178
+ content: "\e00c";
3179
+ }
3180
+
3181
+ .si-social-dribbble:before {
3182
+ content: "\e00d";
3183
+ }
3184
+
3185
+ .si-shield:before {
3186
+ content: "\e00e";
3187
+ }
3188
+
3189
+ .si-screen-tablet:before {
3190
+ content: "\e00f";
3191
+ }
3192
+
3193
+ .si-magic-wand:before {
3194
+ content: "\e017";
3195
+ }
3196
+
3197
+ .si-hourglass:before {
3198
+ content: "\e018";
3199
+ }
3200
+
3201
+ .si-graduation:before {
3202
+ content: "\e019";
3203
+ }
3204
+
3205
+ .si-ghost:before {
3206
+ content: "\e01a";
3207
+ }
3208
+
3209
+ .si-game-controller:before {
3210
+ content: "\e01b";
3211
+ }
3212
+
3213
+ .si-fire:before {
3214
+ content: "\e01c";
3215
+ }
3216
+
3217
+ .si-eyeglasses:before {
3218
+ content: "\e01d";
3219
+ }
3220
+
3221
+ .si-envelope-open:before {
3222
+ content: "\e01e";
3223
+ }
3224
+
3225
+ .si-envelope-letter:before {
3226
+ content: "\e01f";
3227
+ }
3228
+
3229
+ .si-bell:before {
3230
+ content: "\e027";
3231
+ }
3232
+
3233
+ .si-badge:before {
3234
+ content: "\e028";
3235
+ }
3236
+
3237
+ .si-anchor:before {
3238
+ content: "\e029";
3239
+ }
3240
+
3241
+ .si-wallet:before {
3242
+ content: "\e02a";
3243
+ }
3244
+
3245
+ .si-vector:before {
3246
+ content: "\e02b";
3247
+ }
3248
+
3249
+ .si-speech:before {
3250
+ content: "\e02c";
3251
+ }
3252
+
3253
+ .si-puzzle:before {
3254
+ content: "\e02d";
3255
+ }
3256
+
3257
+ .si-printer:before {
3258
+ content: "\e02e";
3259
+ }
3260
+
3261
+ .si-present:before {
3262
+ content: "\e02f";
3263
+ }
3264
+
3265
+ .si-playlist:before {
3266
+ content: "\e030";
3267
+ }
3268
+
3269
+ .si-pin:before {
3270
+ content: "\e031";
3271
+ }
3272
+
3273
+ .si-picture:before {
3274
+ content: "\e032";
3275
+ }
3276
+
3277
+ .si-map:before {
3278
+ content: "\e033";
3279
+ }
3280
+
3281
+ .si-layers:before {
3282
+ content: "\e034";
3283
+ }
3284
+
3285
+ .si-handbag:before {
3286
+ content: "\e035";
3287
+ }
3288
+
3289
+ .si-globe-alt:before {
3290
+ content: "\e036";
3291
+ }
3292
+
3293
+ .si-globe:before {
3294
+ content: "\e037";
3295
+ }
3296
+
3297
+ .si-frame:before {
3298
+ content: "\e038";
3299
+ }
3300
+
3301
+ .si-folder-alt:before {
3302
+ content: "\e039";
3303
+ }
3304
+
3305
+ .si-film:before {
3306
+ content: "\e03a";
3307
+ }
3308
+
3309
+ .si-feed:before {
3310
+ content: "\e03b";
3311
+ }
3312
+
3313
+ .si-earphones-alt:before {
3314
+ content: "\e03c";
3315
+ }
3316
+
3317
+ .si-earphones:before {
3318
+ content: "\e03d";
3319
+ }
3320
+
3321
+ .si-drop:before {
3322
+ content: "\e03e";
3323
+ }
3324
+
3325
+ .si-drawer:before {
3326
+ content: "\e03f";
3327
+ }
3328
+
3329
+ .si-docs:before {
3330
+ content: "\e040";
3331
+ }
3332
+
3333
+ .si-directions:before {
3334
+ content: "\e041";
3335
+ }
3336
+
3337
+ .si-direction:before {
3338
+ content: "\e042";
3339
+ }
3340
+
3341
+ .si-diamond:before {
3342
+ content: "\e043";
3343
+ }
3344
+
3345
+ .si-cup:before {
3346
+ content: "\e044";
3347
+ }
3348
+
3349
+ .si-compass:before {
3350
+ content: "\e045";
3351
+ }
3352
+
3353
+ .si-call-out:before {
3354
+ content: "\e046";
3355
+ }
3356
+
3357
+ .si-call-in:before {
3358
+ content: "\e047";
3359
+ }
3360
+
3361
+ .si-call-end:before {
3362
+ content: "\e048";
3363
+ }
3364
+
3365
+ .si-calculator:before {
3366
+ content: "\e049";
3367
+ }
3368
+
3369
+ .si-bubbles:before {
3370
+ content: "\e04a";
3371
+ }
3372
+
3373
+ .si-briefcase:before {
3374
+ content: "\e04b";
3375
+ }
3376
+
3377
+ .si-book-open:before {
3378
+ content: "\e04c";
3379
+ }
3380
+
3381
+ .si-basket-loaded:before {
3382
+ content: "\e04d";
3383
+ }
3384
+
3385
+ .si-basket:before {
3386
+ content: "\e04e";
3387
+ }
3388
+
3389
+ .si-bag:before {
3390
+ content: "\e04f";
3391
+ }
3392
+
3393
+ .si-action-undo:before {
3394
+ content: "\e050";
3395
+ }
3396
+
3397
+ .si-action-redo:before {
3398
+ content: "\e051";
3399
+ }
3400
+
3401
+ .si-wrench:before {
3402
+ content: "\e052";
3403
+ }
3404
+
3405
+ .si-umbrella:before {
3406
+ content: "\e053";
3407
+ }
3408
+
3409
+ .si-trash:before {
3410
+ content: "\e054";
3411
+ }
3412
+
3413
+ .si-tag:before {
3414
+ content: "\e055";
3415
+ }
3416
+
3417
+ .si-support:before {
3418
+ content: "\e056";
3419
+ }
3420
+
3421
+ .si-size-fullscreen:before {
3422
+ content: "\e057";
3423
+ }
3424
+
3425
+ .si-size-actual:before {
3426
+ content: "\e058";
3427
+ }
3428
+
3429
+ .si-shuffle:before {
3430
+ content: "\e059";
3431
+ }
3432
+
3433
+ .si-share-alt:before {
3434
+ content: "\e05a";
3435
+ }
3436
+
3437
+ .si-share:before {
3438
+ content: "\e05b";
3439
+ }
3440
+
3441
+ .si-rocket:before {
3442
+ content: "\e05c";
3443
+ }
3444
+
3445
+ .si-question:before {
3446
+ content: "\e05d";
3447
+ }
3448
+
3449
+ .si-pie-chart:before {
3450
+ content: "\e05e";
3451
+ }
3452
+
3453
+ .si-pencil:before {
3454
+ content: "\e05f";
3455
+ }
3456
+
3457
+ .si-note:before {
3458
+ content: "\e060";
3459
+ }
3460
+
3461
+ .si-music-tone-alt:before {
3462
+ content: "\e061";
3463
+ }
3464
+
3465
+ .si-music-tone:before {
3466
+ content: "\e062";
3467
+ }
3468
+
3469
+ .si-microphone:before {
3470
+ content: "\e063";
3471
+ }
3472
+
3473
+ .si-loop:before {
3474
+ content: "\e064";
3475
+ }
3476
+
3477
+ .si-logout:before {
3478
+ content: "\e065";
3479
+ }
3480
+
3481
+ .si-login:before {
3482
+ content: "\e066";
3483
+ }
3484
+
3485
+ .si-list:before {
3486
+ content: "\e067";
3487
+ }
3488
+
3489
+ .si-like:before {
3490
+ content: "\e068";
3491
+ }
3492
+
3493
+ .si-home:before {
3494
+ content: "\e069";
3495
+ }
3496
+
3497
+ .si-grid:before {
3498
+ content: "\e06a";
3499
+ }
3500
+
3501
+ .si-graph:before {
3502
+ content: "\e06b";
3503
+ }
3504
+
3505
+ .si-equalizer:before {
3506
+ content: "\e06c";
3507
+ }
3508
+
3509
+ .si-dislike:before {
3510
+ content: "\e06d";
3511
+ }
3512
+
3513
+ .si-cursor:before {
3514
+ content: "\e06e";
3515
+ }
3516
+
3517
+ .si-control-start:before {
3518
+ content: "\e06f";
3519
+ }
3520
+
3521
+ .si-control-rewind:before {
3522
+ content: "\e070";
3523
+ }
3524
+
3525
+ .si-control-play:before {
3526
+ content: "\e071";
3527
+ }
3528
+
3529
+ .si-control-pause:before {
3530
+ content: "\e072";
3531
+ }
3532
+
3533
+ .si-control-forward:before {
3534
+ content: "\e073";
3535
+ }
3536
+
3537
+ .si-control-end:before {
3538
+ content: "\e074";
3539
+ }
3540
+
3541
+ .si-calendar:before {
3542
+ content: "\e075";
3543
+ }
3544
+
3545
+ .si-bulb:before {
3546
+ content: "\e076";
3547
+ }
3548
+
3549
+ .si-bar-chart:before {
3550
+ content: "\e077";
3551
+ }
3552
+
3553
+ .si-arrow-up:before {
3554
+ content: "\e078";
3555
+ }
3556
+
3557
+ .si-arrow-right:before {
3558
+ content: "\e079";
3559
+ }
3560
+
3561
+ .si-arrow-left:before {
3562
+ content: "\e07a";
3563
+ }
3564
+
3565
+ .si-arrow-down:before {
3566
+ content: "\e07b";
3567
+ }
3568
+
3569
+ .si-ban:before {
3570
+ content: "\e07c";
3571
+ }
3572
+
3573
+ .si-bubble:before {
3574
+ content: "\e07d";
3575
+ }
3576
+
3577
+ .si-camcorder:before {
3578
+ content: "\e07e";
3579
+ }
3580
+
3581
+ .si-camera:before {
3582
+ content: "\e07f";
3583
+ }
3584
+
3585
+ .si-check:before {
3586
+ content: "\e080";
3587
+ }
3588
+
3589
+ .si-clock:before {
3590
+ content: "\e081";
3591
+ }
3592
+
3593
+ .si-close:before {
3594
+ content: "\e082";
3595
+ }
3596
+
3597
+ .si-cloud-download:before {
3598
+ content: "\e083";
3599
+ }
3600
+
3601
+ .si-cloud-upload:before {
3602
+ content: "\e084";
3603
+ }
3604
+
3605
+ .si-doc:before {
3606
+ content: "\e085";
3607
+ }
3608
+
3609
+ .si-envelope:before {
3610
+ content: "\e086";
3611
+ }
3612
+
3613
+ .si-eye:before {
3614
+ content: "\e087";
3615
+ }
3616
+
3617
+ .si-flag:before {
3618
+ content: "\e088";
3619
+ }
3620
+
3621
+ .si-folder:before {
3622
+ content: "\e089";
3623
+ }
3624
+
3625
+ .si-heart:before {
3626
+ content: "\e08a";
3627
+ }
3628
+
3629
+ .si-info:before {
3630
+ content: "\e08b";
3631
+ }
3632
+
3633
+ .si-key:before {
3634
+ content: "\e08c";
3635
+ }
3636
+
3637
+ .si-link:before {
3638
+ content: "\e08d";
3639
+ }
3640
+
3641
+ .si-lock:before {
3642
+ content: "\e08e";
3643
+ }
3644
+
3645
+ .si-lock-open:before {
3646
+ content: "\e08f";
3647
+ }
3648
+
3649
+ .si-magnifier:before {
3650
+ content: "\e090";
3651
+ }
3652
+
3653
+ .si-magnifier-add:before {
3654
+ content: "\e091";
3655
+ }
3656
+
3657
+ .si-magnifier-remove:before {
3658
+ content: "\e092";
3659
+ }
3660
+
3661
+ .si-paper-clip:before {
3662
+ content: "\e093";
3663
+ }
3664
+
3665
+ .si-paper-plane:before {
3666
+ content: "\e094";
3667
+ }
3668
+
3669
+ .si-plus:before {
3670
+ content: "\e095";
3671
+ }
3672
+
3673
+ .si-pointer:before {
3674
+ content: "\e096";
3675
+ }
3676
+
3677
+ .si-power:before {
3678
+ content: "\e097";
3679
+ }
3680
+
3681
+ .si-refresh:before {
3682
+ content: "\e098";
3683
+ }
3684
+
3685
+ .si-reload:before {
3686
+ content: "\e099";
3687
+ }
3688
+
3689
+ .si-settings:before {
3690
+ content: "\e09a";
3691
+ }
3692
+
3693
+ .si-star:before {
3694
+ content: "\e09b";
3695
+ }
3696
+
3697
+ .si-symbol-female:before {
3698
+ content: "\e09c";
3699
+ }
3700
+
3701
+ .si-symbol-male:before {
3702
+ content: "\e09d";
3703
+ }
3704
+
3705
+ .si-target:before {
3706
+ content: "\e09e";
3707
+ }
3708
+
3709
+ .si-volume-1:before {
3710
+ content: "\e09f";
3711
+ }
3712
+
3713
+ .si-volume-2:before {
3714
+ content: "\e0a0";
3715
+ }
3716
+
3717
+ .si-volume-off:before {
3718
+ content: "\e0a1";
3719
+ }
3720
+
3721
+ .si-users:before {
3722
+ content: "\e001";
3723
+ }