cambium 0.2.2 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/cambium.gemspec +25 -23
  3. data/lib/cambium/version.rb +1 -1
  4. data/lib/generators/cambium/helpers/_autoloader.rb +12 -0
  5. data/lib/generators/cambium/helpers/dependencies_helper.rb +58 -0
  6. data/lib/generators/cambium/helpers/generators_helper.rb +227 -0
  7. data/lib/generators/cambium/install/admin_generator.rb +68 -74
  8. data/lib/generators/cambium/install/app_generator.rb +86 -95
  9. data/lib/generators/cambium/install/config_generator.rb +98 -108
  10. data/lib/generators/cambium/install/utilities_generator.rb +2 -50
  11. data/lib/generators/cambium/model/image_generator.rb +67 -0
  12. data/lib/generators/cambium/model/page_generator.rb +131 -0
  13. data/lib/generators/cambium/model/post_generator.rb +71 -0
  14. data/lib/generators/cambium/model/tag_generator.rb +40 -0
  15. data/lib/generators/cambium/model/user_generator.rb +78 -0
  16. data/lib/generators/cambium/templates/Gemfile +43 -0
  17. data/lib/generators/cambium/templates/_partials/pages/admin_icon.rb +6 -0
  18. data/lib/generators/cambium/templates/app/assets/javascripts/admin/admin.js.coffee +3 -1
  19. data/lib/generators/cambium/templates/app/assets/javascripts/admin/models/image.js.coffee +14 -0
  20. data/lib/generators/cambium/templates/app/assets/javascripts/admin/models/tag.js.coffee +14 -0
  21. data/lib/generators/cambium/templates/app/assets/javascripts/admin/parser_rules/custom.js +552 -0
  22. data/lib/generators/cambium/templates/app/assets/javascripts/admin/routers/router.js.coffee +21 -0
  23. data/lib/generators/cambium/templates/app/assets/javascripts/admin/tag.jst.ejs +7 -0
  24. data/lib/generators/cambium/templates/app/assets/javascripts/admin/templates/image.jst.ejs +3 -0
  25. data/lib/generators/cambium/templates/app/assets/javascripts/admin/templates/post_tag.jst.ejs +1 -0
  26. data/lib/generators/cambium/templates/app/assets/javascripts/admin/views/image_upload.js.coffee +28 -0
  27. data/lib/generators/cambium/templates/app/assets/javascripts/admin/views/tags.js.coffee +158 -0
  28. data/lib/generators/cambium/templates/app/assets/javascripts/admin/views/wysiwyg.js.coffee +77 -0
  29. data/lib/generators/cambium/templates/app/controllers/admin/images_controller.rb +45 -0
  30. data/lib/generators/cambium/templates/app/controllers/admin/pages_controller.rb +42 -0
  31. data/lib/generators/cambium/templates/app/controllers/admin/posts_controller.rb +39 -0
  32. data/lib/generators/cambium/templates/app/controllers/admin/taggings_controller.rb +69 -0
  33. data/lib/generators/cambium/templates/app/controllers/admin/tags_controller.rb +11 -0
  34. data/lib/generators/cambium/templates/app/controllers/admin_controller.rb +11 -2
  35. data/lib/generators/cambium/templates/app/controllers/application_controller.rb +2 -2
  36. data/lib/generators/cambium/templates/app/controllers/images_controller.rb +45 -0
  37. data/lib/generators/cambium/templates/app/controllers/pages_controller.rb +12 -0
  38. data/lib/generators/cambium/templates/app/controllers/posts_controller.rb +11 -0
  39. data/lib/generators/cambium/templates/app/helpers/admin/pages_controller.rb +47 -0
  40. data/lib/generators/cambium/templates/app/helpers/admin_helper.rb +1 -1
  41. data/lib/generators/cambium/templates/app/models/concerns/image_cropper.rb +24 -0
  42. data/lib/generators/cambium/templates/app/models/concerns/publishable.rb +32 -4
  43. data/lib/generators/cambium/templates/app/models/concerns/slug.rb +4 -0
  44. data/lib/generators/cambium/templates/app/models/concerns/tags.rb +6 -1
  45. data/lib/generators/cambium/templates/app/models/image.rb +43 -0
  46. data/lib/generators/cambium/templates/app/models/page.rb +81 -0
  47. data/lib/generators/cambium/templates/app/models/post.rb +45 -0
  48. data/lib/generators/cambium/templates/app/models/tag.rb +33 -0
  49. data/lib/generators/cambium/templates/app/models/tagging.rb +20 -0
  50. data/lib/generators/cambium/templates/app/uploaders/image_uploader.rb +91 -0
  51. data/lib/generators/cambium/templates/app/views/admin/images/_image.html.erb +1 -0
  52. data/lib/generators/cambium/templates/app/views/admin/images/create.js.erb +7 -0
  53. data/lib/generators/cambium/templates/app/views/admin/images/index.json.jbuilder +4 -0
  54. data/lib/generators/cambium/templates/app/views/admin/pages/_form.html.erb +26 -0
  55. data/lib/generators/cambium/templates/app/views/admin/posts/_form.html.erb +40 -0
  56. data/lib/generators/cambium/templates/app/views/admin/shared/_insert_image.html.erb +12 -0
  57. data/lib/generators/cambium/templates/app/views/admin/shared/forms/_editor.html.erb +3 -3
  58. data/lib/generators/cambium/templates/app/views/admin/shared/forms/_form_page.html.erb +5 -1
  59. data/lib/generators/cambium/templates/app/views/home/index.html.erb +7 -0
  60. data/lib/generators/cambium/templates/app/views/page_templates/default.html.erb +2 -0
  61. data/lib/generators/cambium/templates/app/views/posts/_post.html.erb +4 -0
  62. data/lib/generators/cambium/templates/app/views/posts/index.html.erb +1 -0
  63. data/lib/generators/cambium/templates/app/views/posts/show.html.erb +10 -0
  64. data/lib/generators/cambium/templates/config/app_routes.rb +77 -0
  65. data/lib/generators/cambium/templates/config/routes.rb.erb +11 -2
  66. data/lib/generators/cambium/templates/db/migrate/create_pages.rb.erb +24 -0
  67. data/lib/generators/cambium/templates/db/migrate/create_posts.rb +19 -0
  68. data/lib/generators/cambium/templates/gitignore +1 -0
  69. metadata +52 -256
  70. data/lib/generators/cambium/install/users_generator.rb +0 -104
  71. data/lib/generators/cambium/templates/app/assets/stylesheets/admin/partials/_icons.scss +0 -5194
@@ -1,5194 +0,0 @@
1
- @font-face {
2
- font-family: 'IcoMoon';
3
- src: asset-url('IcoMoon.eot');
4
- src: asset-url('IcoMoon.eot?#iefix') format('embedded-opentype'),
5
- asset-url('IcoMoon.woff') format('woff'),
6
- asset-url('IcoMoon.ttf') format('truetype'),
7
- asset-url('IcoMoon.svg#IcoMoon') format('svg');
8
- font-weight: normal;
9
- font-style: normal;
10
- }
11
-
12
- [class^="icon-"], [class*=" icon-"] {
13
- font-family: 'IcoMoon';
14
- speak: none;
15
- font-style: normal;
16
- font-weight: normal;
17
- font-variant: normal;
18
- text-transform: none;
19
- line-height: 1;
20
-
21
- /* Better Font Rendering =========== */
22
- -webkit-font-smoothing: antialiased;
23
- -moz-osx-font-smoothing: grayscale;
24
- }
25
-
26
- .icon-home:before {
27
- content: "\e000";
28
- }
29
- .icon-home2:before {
30
- content: "\e001";
31
- }
32
- .icon-home3:before {
33
- content: "\e002";
34
- }
35
- .icon-home4:before {
36
- content: "\e003";
37
- }
38
- .icon-home5:before {
39
- content: "\e004";
40
- }
41
- .icon-home6:before {
42
- content: "\e005";
43
- }
44
- .icon-home7:before {
45
- content: "\e006";
46
- }
47
- .icon-home8:before {
48
- content: "\e007";
49
- }
50
- .icon-home9:before {
51
- content: "\e008";
52
- }
53
- .icon-home10:before {
54
- content: "\e009";
55
- }
56
- .icon-home11:before {
57
- content: "\e00a";
58
- }
59
- .icon-office:before {
60
- content: "\e00b";
61
- }
62
- .icon-newspaper:before {
63
- content: "\e00c";
64
- }
65
- .icon-pencil:before {
66
- content: "\e00d";
67
- }
68
- .icon-pencil2:before {
69
- content: "\e00e";
70
- }
71
- .icon-pencil3:before {
72
- content: "\e00f";
73
- }
74
- .icon-pencil4:before {
75
- content: "\e010";
76
- }
77
- .icon-pencil5:before {
78
- content: "\e011";
79
- }
80
- .icon-pencil6:before {
81
- content: "\e012";
82
- }
83
- .icon-quill:before {
84
- content: "\e013";
85
- }
86
- .icon-quill2:before {
87
- content: "\e014";
88
- }
89
- .icon-quill3:before {
90
- content: "\e015";
91
- }
92
- .icon-pen:before {
93
- content: "\e016";
94
- }
95
- .icon-pen2:before {
96
- content: "\e017";
97
- }
98
- .icon-pen3:before {
99
- content: "\e018";
100
- }
101
- .icon-pen4:before {
102
- content: "\e019";
103
- }
104
- .icon-pen5:before {
105
- content: "\e01a";
106
- }
107
- .icon-marker:before {
108
- content: "\e01b";
109
- }
110
- .icon-home12:before {
111
- content: "\e01c";
112
- }
113
- .icon-marker2:before {
114
- content: "\e01d";
115
- }
116
- .icon-blog:before {
117
- content: "\e01e";
118
- }
119
- .icon-blog2:before {
120
- content: "\e01f";
121
- }
122
- .icon-brush:before {
123
- content: "\e020";
124
- }
125
- .icon-palette:before {
126
- content: "\e021";
127
- }
128
- .icon-palette2:before {
129
- content: "\e022";
130
- }
131
- .icon-eyedropper:before {
132
- content: "\e023";
133
- }
134
- .icon-eyedropper2:before {
135
- content: "\e024";
136
- }
137
- .icon-droplet:before {
138
- content: "\e025";
139
- }
140
- .icon-droplet2:before {
141
- content: "\e026";
142
- }
143
- .icon-droplet3:before {
144
- content: "\e027";
145
- }
146
- .icon-droplet4:before {
147
- content: "\e028";
148
- }
149
- .icon-paint-format:before {
150
- content: "\e029";
151
- }
152
- .icon-paint-format2:before {
153
- content: "\e02a";
154
- }
155
- .icon-image:before {
156
- content: "\e02b";
157
- }
158
- .icon-image2:before {
159
- content: "\e02c";
160
- }
161
- .icon-image3:before {
162
- content: "\e02d";
163
- }
164
- .icon-images:before {
165
- content: "\e02e";
166
- }
167
- .icon-image4:before {
168
- content: "\e02f";
169
- }
170
- .icon-image5:before {
171
- content: "\e030";
172
- }
173
- .icon-image6:before {
174
- content: "\e031";
175
- }
176
- .icon-images2:before {
177
- content: "\e032";
178
- }
179
- .icon-image7:before {
180
- content: "\e033";
181
- }
182
- .icon-camera:before {
183
- content: "\e034";
184
- }
185
- .icon-camera2:before {
186
- content: "\e035";
187
- }
188
- .icon-camera3:before {
189
- content: "\e036";
190
- }
191
- .icon-camera4:before {
192
- content: "\e037";
193
- }
194
- .icon-music:before {
195
- content: "\e038";
196
- }
197
- .icon-music2:before {
198
- content: "\e039";
199
- }
200
- .icon-music3:before {
201
- content: "\e03a";
202
- }
203
- .icon-music4:before {
204
- content: "\e03b";
205
- }
206
- .icon-music5:before {
207
- content: "\e03c";
208
- }
209
- .icon-music6:before {
210
- content: "\e03d";
211
- }
212
- .icon-piano:before {
213
- content: "\e03e";
214
- }
215
- .icon-guitar:before {
216
- content: "\e03f";
217
- }
218
- .icon-headphones:before {
219
- content: "\e040";
220
- }
221
- .icon-headphones2:before {
222
- content: "\e041";
223
- }
224
- .icon-play:before {
225
- content: "\e042";
226
- }
227
- .icon-play2:before {
228
- content: "\e043";
229
- }
230
- .icon-movie:before {
231
- content: "\e044";
232
- }
233
- .icon-movie2:before {
234
- content: "\e045";
235
- }
236
- .icon-movie3:before {
237
- content: "\e046";
238
- }
239
- .icon-film:before {
240
- content: "\e047";
241
- }
242
- .icon-film2:before {
243
- content: "\e048";
244
- }
245
- .icon-film3:before {
246
- content: "\e049";
247
- }
248
- .icon-film4:before {
249
- content: "\e04a";
250
- }
251
- .icon-camera5:before {
252
- content: "\e04b";
253
- }
254
- .icon-camera6:before {
255
- content: "\e04c";
256
- }
257
- .icon-camera7:before {
258
- content: "\e04d";
259
- }
260
- .icon-camera8:before {
261
- content: "\e04e";
262
- }
263
- .icon-camera9:before {
264
- content: "\e04f";
265
- }
266
- .icon-dice:before {
267
- content: "\e050";
268
- }
269
- .icon-gamepad:before {
270
- content: "\e051";
271
- }
272
- .icon-gamepad2:before {
273
- content: "\e052";
274
- }
275
- .icon-gamepad3:before {
276
- content: "\e053";
277
- }
278
- .icon-pacman:before {
279
- content: "\e054";
280
- }
281
- .icon-spades:before {
282
- content: "\e055";
283
- }
284
- .icon-clubs:before {
285
- content: "\e056";
286
- }
287
- .icon-diamonds:before {
288
- content: "\e057";
289
- }
290
- .icon-king:before {
291
- content: "\e058";
292
- }
293
- .icon-queen:before {
294
- content: "\e059";
295
- }
296
- .icon-rock:before {
297
- content: "\e05a";
298
- }
299
- .icon-bishop:before {
300
- content: "\e05b";
301
- }
302
- .icon-knight:before {
303
- content: "\e05c";
304
- }
305
- .icon-pawn:before {
306
- content: "\e05d";
307
- }
308
- .icon-chess:before {
309
- content: "\e05e";
310
- }
311
- .icon-bullhorn:before {
312
- content: "\e05f";
313
- }
314
- .icon-megaphone:before {
315
- content: "\e060";
316
- }
317
- .icon-new:before {
318
- content: "\e061";
319
- }
320
- .icon-connection:before {
321
- content: "\e062";
322
- }
323
- .icon-connection2:before {
324
- content: "\e063";
325
- }
326
- .icon-podcast:before {
327
- content: "\e064";
328
- }
329
- .icon-radio:before {
330
- content: "\e065";
331
- }
332
- .icon-feed:before {
333
- content: "\e066";
334
- }
335
- .icon-connection3:before {
336
- content: "\e067";
337
- }
338
- .icon-radio2:before {
339
- content: "\e068";
340
- }
341
- .icon-podcast2:before {
342
- content: "\e069";
343
- }
344
- .icon-podcast3:before {
345
- content: "\e06a";
346
- }
347
- .icon-mic:before {
348
- content: "\e06b";
349
- }
350
- .icon-mic2:before {
351
- content: "\e06c";
352
- }
353
- .icon-mic3:before {
354
- content: "\e06d";
355
- }
356
- .icon-mic4:before {
357
- content: "\e06e";
358
- }
359
- .icon-mic5:before {
360
- content: "\e06f";
361
- }
362
- .icon-book:before {
363
- content: "\e070";
364
- }
365
- .icon-book2:before {
366
- content: "\e071";
367
- }
368
- .icon-books:before {
369
- content: "\e072";
370
- }
371
- .icon-reading:before {
372
- content: "\e073";
373
- }
374
- .icon-library:before {
375
- content: "\e074";
376
- }
377
- .icon-library2:before {
378
- content: "\e075";
379
- }
380
- .icon-graduation:before {
381
- content: "\e076";
382
- }
383
- .icon-file:before {
384
- content: "\e077";
385
- }
386
- .icon-profile:before {
387
- content: "\e078";
388
- }
389
- .icon-file2:before {
390
- content: "\e079";
391
- }
392
- .icon-file3:before {
393
- content: "\e07a";
394
- }
395
- .icon-file4:before {
396
- content: "\e07b";
397
- }
398
- .icon-file5:before {
399
- content: "\e07c";
400
- }
401
- .icon-file6:before {
402
- content: "\e07d";
403
- }
404
- .icon-files:before {
405
- content: "\e07e";
406
- }
407
- .icon-file-plus:before {
408
- content: "\e07f";
409
- }
410
- .icon-file-minus:before {
411
- content: "\e080";
412
- }
413
- .icon-file-download:before {
414
- content: "\e081";
415
- }
416
- .icon-file-upload:before {
417
- content: "\e082";
418
- }
419
- .icon-file-check:before {
420
- content: "\e083";
421
- }
422
- .icon-file-remove:before {
423
- content: "\e084";
424
- }
425
- .icon-file7:before {
426
- content: "\e085";
427
- }
428
- .icon-file8:before {
429
- content: "\e086";
430
- }
431
- .icon-file-plus2:before {
432
- content: "\e087";
433
- }
434
- .icon-file-minus2:before {
435
- content: "\e088";
436
- }
437
- .icon-file-download2:before {
438
- content: "\e089";
439
- }
440
- .icon-file-upload2:before {
441
- content: "\e08a";
442
- }
443
- .icon-file-check2:before {
444
- content: "\e08b";
445
- }
446
- .icon-file-remove2:before {
447
- content: "\e08c";
448
- }
449
- .icon-file9:before {
450
- content: "\e08d";
451
- }
452
- .icon-copy:before {
453
- content: "\e08e";
454
- }
455
- .icon-copy2:before {
456
- content: "\e08f";
457
- }
458
- .icon-copy3:before {
459
- content: "\e090";
460
- }
461
- .icon-copy4:before {
462
- content: "\e091";
463
- }
464
- .icon-paste:before {
465
- content: "\e092";
466
- }
467
- .icon-paste2:before {
468
- content: "\e093";
469
- }
470
- .icon-paste3:before {
471
- content: "\e094";
472
- }
473
- .icon-stack:before {
474
- content: "\e095";
475
- }
476
- .icon-stack2:before {
477
- content: "\e096";
478
- }
479
- .icon-stack3:before {
480
- content: "\e097";
481
- }
482
- .icon-folder:before {
483
- content: "\e098";
484
- }
485
- .icon-folder-download:before {
486
- content: "\e099";
487
- }
488
- .icon-folder-upload:before {
489
- content: "\e09a";
490
- }
491
- .icon-folder-plus:before {
492
- content: "\e09b";
493
- }
494
- .icon-folder-plus2:before {
495
- content: "\e09c";
496
- }
497
- .icon-folder-minus:before {
498
- content: "\e09d";
499
- }
500
- .icon-folder-minus2:before {
501
- content: "\e09e";
502
- }
503
- .icon-folder8:before {
504
- content: "\e09f";
505
- }
506
- .icon-folder-remove:before {
507
- content: "\e0a0";
508
- }
509
- .icon-folder2:before {
510
- content: "\e0a1";
511
- }
512
- .icon-folder-open:before {
513
- content: "\e0a2";
514
- }
515
- .icon-folder3:before {
516
- content: "\e0a3";
517
- }
518
- .icon-folder4:before {
519
- content: "\e0a4";
520
- }
521
- .icon-folder-plus3:before {
522
- content: "\e0a5";
523
- }
524
- .icon-folder-minus3:before {
525
- content: "\e0a6";
526
- }
527
- .icon-folder-plus4:before {
528
- content: "\e0a7";
529
- }
530
- .icon-folder-remove2:before {
531
- content: "\e0a8";
532
- }
533
- .icon-folder-download2:before {
534
- content: "\e0a9";
535
- }
536
- .icon-folder-upload2:before {
537
- content: "\e0aa";
538
- }
539
- .icon-folder-download3:before {
540
- content: "\e0ab";
541
- }
542
- .icon-folder-upload3:before {
543
- content: "\e0ac";
544
- }
545
- .icon-folder5:before {
546
- content: "\e0ad";
547
- }
548
- .icon-folder-open2:before {
549
- content: "\e0ae";
550
- }
551
- .icon-folder6:before {
552
- content: "\e0af";
553
- }
554
- .icon-folder-open3:before {
555
- content: "\e0b0";
556
- }
557
- .icon-certificate:before {
558
- content: "\e0b1";
559
- }
560
- .icon-cc:before {
561
- content: "\e0b2";
562
- }
563
- .icon-tag:before {
564
- content: "\e0b3";
565
- }
566
- .icon-tag2:before {
567
- content: "\e0b4";
568
- }
569
- .icon-tag3:before {
570
- content: "\e0b5";
571
- }
572
- .icon-tag4:before {
573
- content: "\e0b6";
574
- }
575
- .icon-tag5:before {
576
- content: "\e0b7";
577
- }
578
- .icon-tag6:before {
579
- content: "\e0b8";
580
- }
581
- .icon-tag7:before {
582
- content: "\e0b9";
583
- }
584
- .icon-tags:before {
585
- content: "\e0ba";
586
- }
587
- .icon-tags2:before {
588
- content: "\e0bb";
589
- }
590
- .icon-tag8:before {
591
- content: "\e0bc";
592
- }
593
- .icon-barcode:before {
594
- content: "\e0bd";
595
- }
596
- .icon-barcode2:before {
597
- content: "\e0be";
598
- }
599
- .icon-qrcode:before {
600
- content: "\e0bf";
601
- }
602
- .icon-ticket:before {
603
- content: "\e0c0";
604
- }
605
- .icon-cart:before {
606
- content: "\e0c1";
607
- }
608
- .icon-cart2:before {
609
- content: "\e0c2";
610
- }
611
- .icon-cart3:before {
612
- content: "\e0c3";
613
- }
614
- .icon-cart4:before {
615
- content: "\e0c4";
616
- }
617
- .icon-cart5:before {
618
- content: "\e0c5";
619
- }
620
- .icon-cart6:before {
621
- content: "\e0c6";
622
- }
623
- .icon-cart7:before {
624
- content: "\e0c7";
625
- }
626
- .icon-cart-plus:before {
627
- content: "\e0c8";
628
- }
629
- .icon-cart-minus:before {
630
- content: "\e0c9";
631
- }
632
- .icon-cart-add:before {
633
- content: "\e0ca";
634
- }
635
- .icon-cart-remove:before {
636
- content: "\e0cb";
637
- }
638
- .icon-cart-checkout:before {
639
- content: "\e0cc";
640
- }
641
- .icon-cart-remove2:before {
642
- content: "\e0cd";
643
- }
644
- .icon-basket:before {
645
- content: "\e0ce";
646
- }
647
- .icon-basket2:before {
648
- content: "\e0cf";
649
- }
650
- .icon-bag:before {
651
- content: "\e0d0";
652
- }
653
- .icon-bag2:before {
654
- content: "\e0d1";
655
- }
656
- .icon-bag3:before {
657
- content: "\e0d2";
658
- }
659
- .icon-coin:before {
660
- content: "\e0d3";
661
- }
662
- .icon-coins:before {
663
- content: "\e0d4";
664
- }
665
- .icon-credit:before {
666
- content: "\e0d5";
667
- }
668
- .icon-credit2:before {
669
- content: "\e0d6";
670
- }
671
- .icon-calculate:before {
672
- content: "\e0d7";
673
- }
674
- .icon-calculate2:before {
675
- content: "\e0d8";
676
- }
677
- .icon-support:before {
678
- content: "\e0d9";
679
- }
680
- .icon-phone:before {
681
- content: "\e0da";
682
- }
683
- .icon-phone2:before {
684
- content: "\e0db";
685
- }
686
- .icon-phone3:before {
687
- content: "\e0dc";
688
- }
689
- .icon-phone4:before {
690
- content: "\e0dd";
691
- }
692
- .icon-contact-add:before {
693
- content: "\e0de";
694
- }
695
- .icon-contact-remove:before {
696
- content: "\e0df";
697
- }
698
- .icon-contact-add2:before {
699
- content: "\e0e0";
700
- }
701
- .icon-contact-remove2:before {
702
- content: "\e0e1";
703
- }
704
- .icon-call-incoming:before {
705
- content: "\e0e2";
706
- }
707
- .icon-call-outgoing:before {
708
- content: "\e0e3";
709
- }
710
- .icon-phone5:before {
711
- content: "\e0e4";
712
- }
713
- .icon-phone6:before {
714
- content: "\e0e5";
715
- }
716
- .icon-phone-hang-up:before {
717
- content: "\e0e6";
718
- }
719
- .icon-phone-hang-up2:before {
720
- content: "\e0e7";
721
- }
722
- .icon-address-book:before {
723
- content: "\e0e8";
724
- }
725
- .icon-address-book2:before {
726
- content: "\e0e9";
727
- }
728
- .icon-notebook:before {
729
- content: "\e0ea";
730
- }
731
- .icon-envelope:before {
732
- content: "\e0eb";
733
- }
734
- .icon-envelope2:before {
735
- content: "\e0ec";
736
- }
737
- .icon-mail-send:before {
738
- content: "\e0ed";
739
- }
740
- .icon-envelope-opened:before {
741
- content: "\e0ee";
742
- }
743
- .icon-envelope3:before {
744
- content: "\e0ef";
745
- }
746
- .icon-pushpin:before {
747
- content: "\e0f0";
748
- }
749
- .icon-location:before {
750
- content: "\e0f1";
751
- }
752
- .icon-location2:before {
753
- content: "\e0f2";
754
- }
755
- .icon-location3:before {
756
- content: "\e0f3";
757
- }
758
- .icon-location4:before {
759
- content: "\e0f4";
760
- }
761
- .icon-location5:before {
762
- content: "\e0f5";
763
- }
764
- .icon-location6:before {
765
- content: "\e0f6";
766
- }
767
- .icon-location7:before {
768
- content: "\e0f7";
769
- }
770
- .icon-compass:before {
771
- content: "\e0f8";
772
- }
773
- .icon-compass2:before {
774
- content: "\e0f9";
775
- }
776
- .icon-map:before {
777
- content: "\e0fa";
778
- }
779
- .icon-map2:before {
780
- content: "\e0fb";
781
- }
782
- .icon-map3:before {
783
- content: "\e0fc";
784
- }
785
- .icon-map4:before {
786
- content: "\e0fd";
787
- }
788
- .icon-direction:before {
789
- content: "\e0fe";
790
- }
791
- .icon-history:before {
792
- content: "\e0ff";
793
- }
794
- .icon-history2:before {
795
- content: "\e100";
796
- }
797
- .icon-clock:before {
798
- content: "\e101";
799
- }
800
- .icon-clock2:before {
801
- content: "\e102";
802
- }
803
- .icon-clock3:before {
804
- content: "\e103";
805
- }
806
- .icon-clock4:before {
807
- content: "\e104";
808
- }
809
- .icon-watch:before {
810
- content: "\e105";
811
- }
812
- .icon-clock5:before {
813
- content: "\e106";
814
- }
815
- .icon-clock6:before {
816
- content: "\e107";
817
- }
818
- .icon-clock7:before {
819
- content: "\e108";
820
- }
821
- .icon-alarm:before {
822
- content: "\e109";
823
- }
824
- .icon-alarm2:before {
825
- content: "\e10a";
826
- }
827
- .icon-bell:before {
828
- content: "\e10b";
829
- }
830
- .icon-bell2:before {
831
- content: "\e10c";
832
- }
833
- .icon-alarm-plus:before {
834
- content: "\e10d";
835
- }
836
- .icon-alarm-minus:before {
837
- content: "\e10e";
838
- }
839
- .icon-alarm-check:before {
840
- content: "\e10f";
841
- }
842
- .icon-alarm-cancel:before {
843
- content: "\e110";
844
- }
845
- .icon-stopwatch:before {
846
- content: "\e111";
847
- }
848
- .icon-calendar:before {
849
- content: "\e112";
850
- }
851
- .icon-calendar2:before {
852
- content: "\e113";
853
- }
854
- .icon-calendar3:before {
855
- content: "\e114";
856
- }
857
- .icon-calendar4:before {
858
- content: "\e115";
859
- }
860
- .icon-calendar5:before {
861
- content: "\e116";
862
- }
863
- .icon-print:before {
864
- content: "\e117";
865
- }
866
- .icon-print2:before {
867
- content: "\e118";
868
- }
869
- .icon-print3:before {
870
- content: "\e119";
871
- }
872
- .icon-mouse:before {
873
- content: "\e11a";
874
- }
875
- .icon-mouse2:before {
876
- content: "\e11b";
877
- }
878
- .icon-mouse3:before {
879
- content: "\e11c";
880
- }
881
- .icon-mouse4:before {
882
- content: "\e11d";
883
- }
884
- .icon-keyboard:before {
885
- content: "\e11e";
886
- }
887
- .icon-keyboard2:before {
888
- content: "\e11f";
889
- }
890
- .icon-screen:before {
891
- content: "\e120";
892
- }
893
- .icon-screen2:before {
894
- content: "\e121";
895
- }
896
- .icon-screen3:before {
897
- content: "\e122";
898
- }
899
- .icon-screen4:before {
900
- content: "\e123";
901
- }
902
- .icon-laptop:before {
903
- content: "\e124";
904
- }
905
- .icon-mobile:before {
906
- content: "\e125";
907
- }
908
- .icon-mobile2:before {
909
- content: "\e126";
910
- }
911
- .icon-tablet:before {
912
- content: "\e127";
913
- }
914
- .icon-mobile3:before {
915
- content: "\e128";
916
- }
917
- .icon-tv:before {
918
- content: "\e129";
919
- }
920
- .icon-cabinet:before {
921
- content: "\e12a";
922
- }
923
- .icon-archive:before {
924
- content: "\e12b";
925
- }
926
- .icon-drawer:before {
927
- content: "\e12c";
928
- }
929
- .icon-drawer2:before {
930
- content: "\e12d";
931
- }
932
- .icon-drawer3:before {
933
- content: "\e12e";
934
- }
935
- .icon-box:before {
936
- content: "\e12f";
937
- }
938
- .icon-box-add:before {
939
- content: "\e130";
940
- }
941
- .icon-box-remove:before {
942
- content: "\e131";
943
- }
944
- .icon-download:before {
945
- content: "\e132";
946
- }
947
- .icon-upload:before {
948
- content: "\e133";
949
- }
950
- .icon-disk:before {
951
- content: "\e134";
952
- }
953
- .icon-cd:before {
954
- content: "\e135";
955
- }
956
- .icon-storage:before {
957
- content: "\e136";
958
- }
959
- .icon-storage2:before {
960
- content: "\e137";
961
- }
962
- .icon-database:before {
963
- content: "\e138";
964
- }
965
- .icon-database2:before {
966
- content: "\e139";
967
- }
968
- .icon-database3:before {
969
- content: "\e13a";
970
- }
971
- .icon-undo:before {
972
- content: "\e13b";
973
- }
974
- .icon-redo:before {
975
- content: "\e13c";
976
- }
977
- .icon-rotate:before {
978
- content: "\e13d";
979
- }
980
- .icon-rotate2:before {
981
- content: "\e13e";
982
- }
983
- .icon-flip:before {
984
- content: "\e13f";
985
- }
986
- .icon-flip2:before {
987
- content: "\e140";
988
- }
989
- .icon-unite:before {
990
- content: "\e141";
991
- }
992
- .icon-subtract:before {
993
- content: "\e142";
994
- }
995
- .icon-interset:before {
996
- content: "\e143";
997
- }
998
- .icon-exclude:before {
999
- content: "\e144";
1000
- }
1001
- .icon-align-left:before {
1002
- content: "\e145";
1003
- }
1004
- .icon-align-center-horizontal:before {
1005
- content: "\e146";
1006
- }
1007
- .icon-align-right:before {
1008
- content: "\e147";
1009
- }
1010
- .icon-align-top:before {
1011
- content: "\e148";
1012
- }
1013
- .icon-align-center-vertical:before {
1014
- content: "\e149";
1015
- }
1016
- .icon-align-bottom:before {
1017
- content: "\e14a";
1018
- }
1019
- .icon-undo2:before {
1020
- content: "\e14b";
1021
- }
1022
- .icon-redo2:before {
1023
- content: "\e14c";
1024
- }
1025
- .icon-forward:before {
1026
- content: "\e14d";
1027
- }
1028
- .icon-reply:before {
1029
- content: "\e14e";
1030
- }
1031
- .icon-reply2:before {
1032
- content: "\e14f";
1033
- }
1034
- .icon-bubble:before {
1035
- content: "\e150";
1036
- }
1037
- .icon-bubbles:before {
1038
- content: "\e151";
1039
- }
1040
- .icon-bubbles2:before {
1041
- content: "\e152";
1042
- }
1043
- .icon-bubble2:before {
1044
- content: "\e153";
1045
- }
1046
- .icon-bubbles3:before {
1047
- content: "\e154";
1048
- }
1049
- .icon-bubbles4:before {
1050
- content: "\e155";
1051
- }
1052
- .icon-bubble-notification:before {
1053
- content: "\e156";
1054
- }
1055
- .icon-bubbles5:before {
1056
- content: "\e157";
1057
- }
1058
- .icon-bubbles6:before {
1059
- content: "\e158";
1060
- }
1061
- .icon-bubble3:before {
1062
- content: "\e159";
1063
- }
1064
- .icon-bubble-dots:before {
1065
- content: "\e15a";
1066
- }
1067
- .icon-bubble4:before {
1068
- content: "\e15b";
1069
- }
1070
- .icon-bubble5:before {
1071
- content: "\e15c";
1072
- }
1073
- .icon-bubble-dots2:before {
1074
- content: "\e15d";
1075
- }
1076
- .icon-bubble6:before {
1077
- content: "\e15e";
1078
- }
1079
- .icon-bubble7:before {
1080
- content: "\e15f";
1081
- }
1082
- .icon-bubble8:before {
1083
- content: "\e160";
1084
- }
1085
- .icon-bubbles7:before {
1086
- content: "\e161";
1087
- }
1088
- .icon-bubble9:before {
1089
- content: "\e162";
1090
- }
1091
- .icon-bubbles8:before {
1092
- content: "\e163";
1093
- }
1094
- .icon-bubble10:before {
1095
- content: "\e164";
1096
- }
1097
- .icon-bubble-dots3:before {
1098
- content: "\e165";
1099
- }
1100
- .icon-bubble11:before {
1101
- content: "\e166";
1102
- }
1103
- .icon-bubble12:before {
1104
- content: "\e167";
1105
- }
1106
- .icon-bubble-dots4:before {
1107
- content: "\e168";
1108
- }
1109
- .icon-bubble13:before {
1110
- content: "\e169";
1111
- }
1112
- .icon-bubbles9:before {
1113
- content: "\e16a";
1114
- }
1115
- .icon-bubbles10:before {
1116
- content: "\e16b";
1117
- }
1118
- .icon-bubble-blocked:before {
1119
- content: "\e16c";
1120
- }
1121
- .icon-bubble-quote:before {
1122
- content: "\e16d";
1123
- }
1124
- .icon-bubble-user:before {
1125
- content: "\e16e";
1126
- }
1127
- .icon-bubble-check:before {
1128
- content: "\e16f";
1129
- }
1130
- .icon-bubble-video-chat:before {
1131
- content: "\e170";
1132
- }
1133
- .icon-bubble-link:before {
1134
- content: "\e171";
1135
- }
1136
- .icon-bubble-locked:before {
1137
- content: "\e172";
1138
- }
1139
- .icon-bubble-star:before {
1140
- content: "\e173";
1141
- }
1142
- .icon-bubble-heart:before {
1143
- content: "\e174";
1144
- }
1145
- .icon-bubble-paperclip:before {
1146
- content: "\e175";
1147
- }
1148
- .icon-bubble-cancel:before {
1149
- content: "\e176";
1150
- }
1151
- .icon-bubble-plus:before {
1152
- content: "\e177";
1153
- }
1154
- .icon-bubble-minus:before {
1155
- content: "\e178";
1156
- }
1157
- .icon-bubble-notification2:before {
1158
- content: "\e179";
1159
- }
1160
- .icon-bubble-trash:before {
1161
- content: "\e17a";
1162
- }
1163
- .icon-bubble-left:before {
1164
- content: "\e17b";
1165
- }
1166
- .icon-bubble-right:before {
1167
- content: "\e17c";
1168
- }
1169
- .icon-bubble-up:before {
1170
- content: "\e17d";
1171
- }
1172
- .icon-bubble-down:before {
1173
- content: "\e17e";
1174
- }
1175
- .icon-bubble-first:before {
1176
- content: "\e17f";
1177
- }
1178
- .icon-bubble-last:before {
1179
- content: "\e180";
1180
- }
1181
- .icon-bubble-replu:before {
1182
- content: "\e181";
1183
- }
1184
- .icon-bubble-forward:before {
1185
- content: "\e182";
1186
- }
1187
- .icon-bubble-reply:before {
1188
- content: "\e183";
1189
- }
1190
- .icon-bubble-forward2:before {
1191
- content: "\e184";
1192
- }
1193
- .icon-user:before {
1194
- content: "\e185";
1195
- }
1196
- .icon-users:before {
1197
- content: "\e186";
1198
- }
1199
- .icon-user-plus:before {
1200
- content: "\e187";
1201
- }
1202
- .icon-user-plus2:before {
1203
- content: "\e188";
1204
- }
1205
- .icon-user-minus:before {
1206
- content: "\e189";
1207
- }
1208
- .icon-user-minus2:before {
1209
- content: "\e18a";
1210
- }
1211
- .icon-user-cancel:before {
1212
- content: "\e18b";
1213
- }
1214
- .icon-user-block:before {
1215
- content: "\e18c";
1216
- }
1217
- .icon-users2:before {
1218
- content: "\e18d";
1219
- }
1220
- .icon-user2:before {
1221
- content: "\e18e";
1222
- }
1223
- .icon-users3:before {
1224
- content: "\e18f";
1225
- }
1226
- .icon-user-plus3:before {
1227
- content: "\e190";
1228
- }
1229
- .icon-user-minus3:before {
1230
- content: "\e191";
1231
- }
1232
- .icon-user-cancel2:before {
1233
- content: "\e192";
1234
- }
1235
- .icon-user-block2:before {
1236
- content: "\e193";
1237
- }
1238
- .icon-user3:before {
1239
- content: "\e194";
1240
- }
1241
- .icon-user4:before {
1242
- content: "\e195";
1243
- }
1244
- .icon-user5:before {
1245
- content: "\e196";
1246
- }
1247
- .icon-user6:before {
1248
- content: "\e197";
1249
- }
1250
- .icon-users4:before {
1251
- content: "\e198";
1252
- }
1253
- .icon-user7:before {
1254
- content: "\e199";
1255
- }
1256
- .icon-user8:before {
1257
- content: "\e19a";
1258
- }
1259
- .icon-users5:before {
1260
- content: "\e19b";
1261
- }
1262
- .icon-vcard:before {
1263
- content: "\e19c";
1264
- }
1265
- .icon-tshirt:before {
1266
- content: "\e19d";
1267
- }
1268
- .icon-hanger:before {
1269
- content: "\e19e";
1270
- }
1271
- .icon-quotes-left:before {
1272
- content: "\e19f";
1273
- }
1274
- .icon-quotes-right:before {
1275
- content: "\e1a0";
1276
- }
1277
- .icon-quotes-right2:before {
1278
- content: "\e1a1";
1279
- }
1280
- .icon-quotes-right3:before {
1281
- content: "\e1a2";
1282
- }
1283
- .icon-busy:before {
1284
- content: "\e1a3";
1285
- }
1286
- .icon-busy2:before {
1287
- content: "\e1a4";
1288
- }
1289
- .icon-busy3:before {
1290
- content: "\e1a5";
1291
- }
1292
- .icon-busy4:before {
1293
- content: "\e1a6";
1294
- }
1295
- .icon-spinner:before {
1296
- content: "\e1a7";
1297
- }
1298
- .icon-spinner2:before {
1299
- content: "\e1a8";
1300
- }
1301
- .icon-spinner3:before {
1302
- content: "\e1a9";
1303
- }
1304
- .icon-spinner4:before {
1305
- content: "\e1aa";
1306
- }
1307
- .icon-spinner5:before {
1308
- content: "\e1ab";
1309
- }
1310
- .icon-spinner6:before {
1311
- content: "\e1ac";
1312
- }
1313
- .icon-spinner7:before {
1314
- content: "\e1ad";
1315
- }
1316
- .icon-spinner8:before {
1317
- content: "\e1ae";
1318
- }
1319
- .icon-spinner9:before {
1320
- content: "\e1af";
1321
- }
1322
- .icon-spinner10:before {
1323
- content: "\e1b0";
1324
- }
1325
- .icon-spinner11:before {
1326
- content: "\e1b1";
1327
- }
1328
- .icon-spinner12:before {
1329
- content: "\e1b2";
1330
- }
1331
- .icon-microscope:before {
1332
- content: "\e1b3";
1333
- }
1334
- .icon-binoculars:before {
1335
- content: "\e1b4";
1336
- }
1337
- .icon-binoculars2:before {
1338
- content: "\e1b5";
1339
- }
1340
- .icon-search:before {
1341
- content: "\e1b6";
1342
- }
1343
- .icon-search2:before {
1344
- content: "\e1b7";
1345
- }
1346
- .icon-zoomin:before {
1347
- content: "\e1b8";
1348
- }
1349
- .icon-zoomout:before {
1350
- content: "\e1b9";
1351
- }
1352
- .icon-search3:before {
1353
- content: "\e1ba";
1354
- }
1355
- .icon-search4:before {
1356
- content: "\e1bb";
1357
- }
1358
- .icon-zoomin2:before {
1359
- content: "\e1bc";
1360
- }
1361
- .icon-zoomout2:before {
1362
- content: "\e1bd";
1363
- }
1364
- .icon-search5:before {
1365
- content: "\e1be";
1366
- }
1367
- .icon-expand:before {
1368
- content: "\e1bf";
1369
- }
1370
- .icon-contract:before {
1371
- content: "\e1c0";
1372
- }
1373
- .icon-scale-up:before {
1374
- content: "\e1c1";
1375
- }
1376
- .icon-scale-down:before {
1377
- content: "\e1c2";
1378
- }
1379
- .icon-expand2:before {
1380
- content: "\e1c3";
1381
- }
1382
- .icon-contract2:before {
1383
- content: "\e1c4";
1384
- }
1385
- .icon-scale-up2:before {
1386
- content: "\e1c5";
1387
- }
1388
- .icon-scale-down2:before {
1389
- content: "\e1c6";
1390
- }
1391
- .icon-fullscreen:before {
1392
- content: "\e1c7";
1393
- }
1394
- .icon-expand3:before {
1395
- content: "\e1c8";
1396
- }
1397
- .icon-contract3:before {
1398
- content: "\e1c9";
1399
- }
1400
- .icon-key:before {
1401
- content: "\e1ca";
1402
- }
1403
- .icon-key2:before {
1404
- content: "\e1cb";
1405
- }
1406
- .icon-key3:before {
1407
- content: "\e1cc";
1408
- }
1409
- .icon-key4:before {
1410
- content: "\e1cd";
1411
- }
1412
- .icon-key5:before {
1413
- content: "\e1ce";
1414
- }
1415
- .icon-keyhole:before {
1416
- content: "\e1cf";
1417
- }
1418
- .icon-lock:before {
1419
- content: "\e1d0";
1420
- }
1421
- .icon-lock2:before {
1422
- content: "\e1d1";
1423
- }
1424
- .icon-lock3:before {
1425
- content: "\e1d2";
1426
- }
1427
- .icon-lock4:before {
1428
- content: "\e1d3";
1429
- }
1430
- .icon-unlocked:before {
1431
- content: "\e1d4";
1432
- }
1433
- .icon-lock5:before {
1434
- content: "\e1d5";
1435
- }
1436
- .icon-unlocked2:before {
1437
- content: "\e1d6";
1438
- }
1439
- .icon-wrench:before {
1440
- content: "\e1d7";
1441
- }
1442
- .icon-wrench2:before {
1443
- content: "\e1d8";
1444
- }
1445
- .icon-wrench3:before {
1446
- content: "\e1d9";
1447
- }
1448
- .icon-wrench4:before {
1449
- content: "\e1da";
1450
- }
1451
- .icon-settings:before {
1452
- content: "\e1db";
1453
- }
1454
- .icon-equalizer:before {
1455
- content: "\e1dc";
1456
- }
1457
- .icon-equalizer2:before {
1458
- content: "\e1dd";
1459
- }
1460
- .icon-equalizer3:before {
1461
- content: "\e1de";
1462
- }
1463
- .icon-cog:before {
1464
- content: "\e1df";
1465
- }
1466
- .icon-cogs:before {
1467
- content: "\e1e0";
1468
- }
1469
- .icon-cog2:before {
1470
- content: "\e1e1";
1471
- }
1472
- .icon-cog3:before {
1473
- content: "\e1e2";
1474
- }
1475
- .icon-cog4:before {
1476
- content: "\e1e3";
1477
- }
1478
- .icon-cog5:before {
1479
- content: "\e1e4";
1480
- }
1481
- .icon-cog6:before {
1482
- content: "\e1e5";
1483
- }
1484
- .icon-cog7:before {
1485
- content: "\e1e6";
1486
- }
1487
- .icon-factory:before {
1488
- content: "\e1e7";
1489
- }
1490
- .icon-hammer:before {
1491
- content: "\e1e8";
1492
- }
1493
- .icon-tools:before {
1494
- content: "\e1e9";
1495
- }
1496
- .icon-screwdriver:before {
1497
- content: "\e1ea";
1498
- }
1499
- .icon-screwdriver2:before {
1500
- content: "\e1eb";
1501
- }
1502
- .icon-wand:before {
1503
- content: "\e1ec";
1504
- }
1505
- .icon-wand2:before {
1506
- content: "\e1ed";
1507
- }
1508
- .icon-health:before {
1509
- content: "\e1ee";
1510
- }
1511
- .icon-aid:before {
1512
- content: "\e1ef";
1513
- }
1514
- .icon-patch:before {
1515
- content: "\e1f0";
1516
- }
1517
- .icon-bug:before {
1518
- content: "\e1f1";
1519
- }
1520
- .icon-bug2:before {
1521
- content: "\e1f2";
1522
- }
1523
- .icon-inject:before {
1524
- content: "\e1f3";
1525
- }
1526
- .icon-inject2:before {
1527
- content: "\e1f4";
1528
- }
1529
- .icon-construction:before {
1530
- content: "\e1f5";
1531
- }
1532
- .icon-cone:before {
1533
- content: "\e1f6";
1534
- }
1535
- .icon-pie:before {
1536
- content: "\e1f7";
1537
- }
1538
- .icon-pie2:before {
1539
- content: "\e1f8";
1540
- }
1541
- .icon-pie3:before {
1542
- content: "\e1f9";
1543
- }
1544
- .icon-pie4:before {
1545
- content: "\e1fa";
1546
- }
1547
- .icon-pie5:before {
1548
- content: "\e1fb";
1549
- }
1550
- .icon-pie6:before {
1551
- content: "\e1fc";
1552
- }
1553
- .icon-pie7:before {
1554
- content: "\e1fd";
1555
- }
1556
- .icon-stats:before {
1557
- content: "\e1fe";
1558
- }
1559
- .icon-stats2:before {
1560
- content: "\e1ff";
1561
- }
1562
- .icon-stats3:before {
1563
- content: "\e200";
1564
- }
1565
- .icon-bars:before {
1566
- content: "\e201";
1567
- }
1568
- .icon-bars2:before {
1569
- content: "\e202";
1570
- }
1571
- .icon-bars3:before {
1572
- content: "\e203";
1573
- }
1574
- .icon-bars4:before {
1575
- content: "\e204";
1576
- }
1577
- .icon-bars5:before {
1578
- content: "\e205";
1579
- }
1580
- .icon-bars6:before {
1581
- content: "\e206";
1582
- }
1583
- .icon-stats-up:before {
1584
- content: "\e207";
1585
- }
1586
- .icon-stats-down:before {
1587
- content: "\e208";
1588
- }
1589
- .icon-stairs-down:before {
1590
- content: "\e209";
1591
- }
1592
- .icon-stairs-down2:before {
1593
- content: "\e20a";
1594
- }
1595
- .icon-chart:before {
1596
- content: "\e20b";
1597
- }
1598
- .icon-stairs:before {
1599
- content: "\e20c";
1600
- }
1601
- .icon-stairs2:before {
1602
- content: "\e20d";
1603
- }
1604
- .icon-ladder:before {
1605
- content: "\e20e";
1606
- }
1607
- .icon-cake:before {
1608
- content: "\e20f";
1609
- }
1610
- .icon-gift:before {
1611
- content: "\e210";
1612
- }
1613
- .icon-gift2:before {
1614
- content: "\e211";
1615
- }
1616
- .icon-balloon:before {
1617
- content: "\e212";
1618
- }
1619
- .icon-rating:before {
1620
- content: "\e213";
1621
- }
1622
- .icon-rating2:before {
1623
- content: "\e214";
1624
- }
1625
- .icon-rating3:before {
1626
- content: "\e215";
1627
- }
1628
- .icon-podium:before {
1629
- content: "\e216";
1630
- }
1631
- .icon-medal:before {
1632
- content: "\e217";
1633
- }
1634
- .icon-medal2:before {
1635
- content: "\e218";
1636
- }
1637
- .icon-medal3:before {
1638
- content: "\e219";
1639
- }
1640
- .icon-medal4:before {
1641
- content: "\e21a";
1642
- }
1643
- .icon-medal5:before {
1644
- content: "\e21b";
1645
- }
1646
- .icon-crown:before {
1647
- content: "\e21c";
1648
- }
1649
- .icon-trophy:before {
1650
- content: "\e21d";
1651
- }
1652
- .icon-trophy2:before {
1653
- content: "\e21e";
1654
- }
1655
- .icon-trophy-star:before {
1656
- content: "\e21f";
1657
- }
1658
- .icon-diamond:before {
1659
- content: "\e220";
1660
- }
1661
- .icon-diamond2:before {
1662
- content: "\e221";
1663
- }
1664
- .icon-glass:before {
1665
- content: "\e222";
1666
- }
1667
- .icon-glass2:before {
1668
- content: "\e223";
1669
- }
1670
- .icon-bottle:before {
1671
- content: "\e224";
1672
- }
1673
- .icon-bottle2:before {
1674
- content: "\e225";
1675
- }
1676
- .icon-mug:before {
1677
- content: "\e226";
1678
- }
1679
- .icon-food:before {
1680
- content: "\e227";
1681
- }
1682
- .icon-food2:before {
1683
- content: "\e228";
1684
- }
1685
- .icon-hamburger:before {
1686
- content: "\e229";
1687
- }
1688
- .icon-cup:before {
1689
- content: "\e22a";
1690
- }
1691
- .icon-cup2:before {
1692
- content: "\e22b";
1693
- }
1694
- .icon-leaf:before {
1695
- content: "\e22c";
1696
- }
1697
- .icon-leaf2:before {
1698
- content: "\e22d";
1699
- }
1700
- .icon-apple-fruit:before {
1701
- content: "\e22e";
1702
- }
1703
- .icon-tree:before {
1704
- content: "\e22f";
1705
- }
1706
- .icon-tree2:before {
1707
- content: "\e230";
1708
- }
1709
- .icon-paw:before {
1710
- content: "\e231";
1711
- }
1712
- .icon-steps:before {
1713
- content: "\e232";
1714
- }
1715
- .icon-flower:before {
1716
- content: "\e233";
1717
- }
1718
- .icon-rocket:before {
1719
- content: "\e234";
1720
- }
1721
- .icon-meter:before {
1722
- content: "\e235";
1723
- }
1724
- .icon-meter2:before {
1725
- content: "\e236";
1726
- }
1727
- .icon-meter-slow:before {
1728
- content: "\e237";
1729
- }
1730
- .icon-meter-medium:before {
1731
- content: "\e238";
1732
- }
1733
- .icon-meter-fast:before {
1734
- content: "\e239";
1735
- }
1736
- .icon-dashboard:before {
1737
- content: "\e23a";
1738
- }
1739
- .icon-hammer2:before {
1740
- content: "\e23b";
1741
- }
1742
- .icon-balance:before {
1743
- content: "\e23c";
1744
- }
1745
- .icon-bomb:before {
1746
- content: "\e23d";
1747
- }
1748
- .icon-fire:before {
1749
- content: "\e23e";
1750
- }
1751
- .icon-fire2:before {
1752
- content: "\e23f";
1753
- }
1754
- .icon-lab:before {
1755
- content: "\e240";
1756
- }
1757
- .icon-atom:before {
1758
- content: "\e241";
1759
- }
1760
- .icon-atom2:before {
1761
- content: "\e242";
1762
- }
1763
- .icon-magnet:before {
1764
- content: "\e243";
1765
- }
1766
- .icon-magnet2:before {
1767
- content: "\e244";
1768
- }
1769
- .icon-magnet3:before {
1770
- content: "\e245";
1771
- }
1772
- .icon-magnet4:before {
1773
- content: "\e246";
1774
- }
1775
- .icon-dumbbell:before {
1776
- content: "\e247";
1777
- }
1778
- .icon-skull:before {
1779
- content: "\e248";
1780
- }
1781
- .icon-skull2:before {
1782
- content: "\e249";
1783
- }
1784
- .icon-skull3:before {
1785
- content: "\e24a";
1786
- }
1787
- .icon-lamp:before {
1788
- content: "\e24b";
1789
- }
1790
- .icon-lamp2:before {
1791
- content: "\e24c";
1792
- }
1793
- .icon-lamp3:before {
1794
- content: "\e24d";
1795
- }
1796
- .icon-lamp4:before {
1797
- content: "\e24e";
1798
- }
1799
- .icon-remove:before {
1800
- content: "\e24f";
1801
- }
1802
- .icon-remove2:before {
1803
- content: "\e250";
1804
- }
1805
- .icon-remove3:before {
1806
- content: "\e251";
1807
- }
1808
- .icon-remove4:before {
1809
- content: "\e252";
1810
- }
1811
- .icon-remove5:before {
1812
- content: "\e253";
1813
- }
1814
- .icon-remove6:before {
1815
- content: "\e254";
1816
- }
1817
- .icon-remove7:before {
1818
- content: "\e255";
1819
- }
1820
- .icon-remove8:before {
1821
- content: "\e256";
1822
- }
1823
- .icon-briefcase:before {
1824
- content: "\e257";
1825
- }
1826
- .icon-briefcase2:before {
1827
- content: "\e258";
1828
- }
1829
- .icon-briefcase3:before {
1830
- content: "\e259";
1831
- }
1832
- .icon-airplane:before {
1833
- content: "\e25a";
1834
- }
1835
- .icon-airplane2:before {
1836
- content: "\e25b";
1837
- }
1838
- .icon-paperplane:before {
1839
- content: "\e25c";
1840
- }
1841
- .icon-car:before {
1842
- content: "\e25d";
1843
- }
1844
- .icon-gas-pump:before {
1845
- content: "\e25e";
1846
- }
1847
- .icon-bus:before {
1848
- content: "\e25f";
1849
- }
1850
- .icon-truck:before {
1851
- content: "\e260";
1852
- }
1853
- .icon-bike:before {
1854
- content: "\e261";
1855
- }
1856
- .icon-road:before {
1857
- content: "\e262";
1858
- }
1859
- .icon-train:before {
1860
- content: "\e263";
1861
- }
1862
- .icon-ship:before {
1863
- content: "\e264";
1864
- }
1865
- .icon-boat:before {
1866
- content: "\e265";
1867
- }
1868
- .icon-cube:before {
1869
- content: "\e266";
1870
- }
1871
- .icon-cube2:before {
1872
- content: "\e267";
1873
- }
1874
- .icon-cube3:before {
1875
- content: "\e268";
1876
- }
1877
- .icon-cube4:before {
1878
- content: "\e269";
1879
- }
1880
- .icon-pyramid:before {
1881
- content: "\e26a";
1882
- }
1883
- .icon-pyramid2:before {
1884
- content: "\e26b";
1885
- }
1886
- .icon-cylinder:before {
1887
- content: "\e26c";
1888
- }
1889
- .icon-package:before {
1890
- content: "\e26d";
1891
- }
1892
- .icon-puzzle:before {
1893
- content: "\e26e";
1894
- }
1895
- .icon-puzzle2:before {
1896
- content: "\e26f";
1897
- }
1898
- .icon-puzzle3:before {
1899
- content: "\e270";
1900
- }
1901
- .icon-puzzle4:before {
1902
- content: "\e271";
1903
- }
1904
- .icon-glasses:before {
1905
- content: "\e272";
1906
- }
1907
- .icon-glasses2:before {
1908
- content: "\e273";
1909
- }
1910
- .icon-glasses3:before {
1911
- content: "\e274";
1912
- }
1913
- .icon-sunglasses:before {
1914
- content: "\e275";
1915
- }
1916
- .icon-accessibility:before {
1917
- content: "\e276";
1918
- }
1919
- .icon-accessibility2:before {
1920
- content: "\e277";
1921
- }
1922
- .icon-brain:before {
1923
- content: "\e278";
1924
- }
1925
- .icon-target:before {
1926
- content: "\e279";
1927
- }
1928
- .icon-target2:before {
1929
- content: "\e27a";
1930
- }
1931
- .icon-target3:before {
1932
- content: "\e27b";
1933
- }
1934
- .icon-gun:before {
1935
- content: "\e27c";
1936
- }
1937
- .icon-gun-ban:before {
1938
- content: "\e27d";
1939
- }
1940
- .icon-shield:before {
1941
- content: "\e27e";
1942
- }
1943
- .icon-shield2:before {
1944
- content: "\e27f";
1945
- }
1946
- .icon-shield3:before {
1947
- content: "\e280";
1948
- }
1949
- .icon-shield4:before {
1950
- content: "\e281";
1951
- }
1952
- .icon-soccer:before {
1953
- content: "\e282";
1954
- }
1955
- .icon-football:before {
1956
- content: "\e283";
1957
- }
1958
- .icon-baseball:before {
1959
- content: "\e284";
1960
- }
1961
- .icon-basketball:before {
1962
- content: "\e285";
1963
- }
1964
- .icon-golf:before {
1965
- content: "\e286";
1966
- }
1967
- .icon-hockey:before {
1968
- content: "\e287";
1969
- }
1970
- .icon-racing:before {
1971
- content: "\e288";
1972
- }
1973
- .icon-eightball:before {
1974
- content: "\e289";
1975
- }
1976
- .icon-bowlingball:before {
1977
- content: "\e28a";
1978
- }
1979
- .icon-bowling:before {
1980
- content: "\e28b";
1981
- }
1982
- .icon-bowling2:before {
1983
- content: "\e28c";
1984
- }
1985
- .icon-lightning:before {
1986
- content: "\e28d";
1987
- }
1988
- .icon-power:before {
1989
- content: "\e28e";
1990
- }
1991
- .icon-power2:before {
1992
- content: "\e28f";
1993
- }
1994
- .icon-switch:before {
1995
- content: "\e290";
1996
- }
1997
- .icon-powercord:before {
1998
- content: "\e291";
1999
- }
2000
- .icon-cord:before {
2001
- content: "\e292";
2002
- }
2003
- .icon-socket:before {
2004
- content: "\e293";
2005
- }
2006
- .icon-clipboard:before {
2007
- content: "\e294";
2008
- }
2009
- .icon-clipboard2:before {
2010
- content: "\e295";
2011
- }
2012
- .icon-signup:before {
2013
- content: "\e296";
2014
- }
2015
- .icon-clipboard3:before {
2016
- content: "\e297";
2017
- }
2018
- .icon-clipboard4:before {
2019
- content: "\e298";
2020
- }
2021
- .icon-list:before {
2022
- content: "\e299";
2023
- }
2024
- .icon-list2:before {
2025
- content: "\e29a";
2026
- }
2027
- .icon-list3:before {
2028
- content: "\e29b";
2029
- }
2030
- .icon-numbered-list:before {
2031
- content: "\e29c";
2032
- }
2033
- .icon-list4:before {
2034
- content: "\e29d";
2035
- }
2036
- .icon-list5:before {
2037
- content: "\e29e";
2038
- }
2039
- .icon-playlist:before {
2040
- content: "\e29f";
2041
- }
2042
- .icon-grid:before {
2043
- content: "\e2a0";
2044
- }
2045
- .icon-grid2:before {
2046
- content: "\e2a1";
2047
- }
2048
- .icon-grid3:before {
2049
- content: "\e2a2";
2050
- }
2051
- .icon-grid4:before {
2052
- content: "\e2a3";
2053
- }
2054
- .icon-grid5:before {
2055
- content: "\e2a4";
2056
- }
2057
- .icon-grid6:before {
2058
- content: "\e2a5";
2059
- }
2060
- .icon-tree3:before {
2061
- content: "\e2a6";
2062
- }
2063
- .icon-tree4:before {
2064
- content: "\e2a7";
2065
- }
2066
- .icon-tree5:before {
2067
- content: "\e2a8";
2068
- }
2069
- .icon-menu:before {
2070
- content: "\e2a9";
2071
- }
2072
- .icon-menu2:before {
2073
- content: "\e2aa";
2074
- }
2075
- .icon-circle-small:before {
2076
- content: "\e2ab";
2077
- }
2078
- .icon-menu3:before {
2079
- content: "\e2ac";
2080
- }
2081
- .icon-menu4:before {
2082
- content: "\e2ad";
2083
- }
2084
- .icon-menu5:before {
2085
- content: "\e2ae";
2086
- }
2087
- .icon-menu6:before {
2088
- content: "\e2af";
2089
- }
2090
- .icon-menu7:before {
2091
- content: "\e2b0";
2092
- }
2093
- .icon-menu8:before {
2094
- content: "\e2b1";
2095
- }
2096
- .icon-menu9:before {
2097
- content: "\e2b2";
2098
- }
2099
- .icon-cloud:before {
2100
- content: "\e2b3";
2101
- }
2102
- .icon-cloud2:before {
2103
- content: "\e2b4";
2104
- }
2105
- .icon-cloud3:before {
2106
- content: "\e2b5";
2107
- }
2108
- .icon-cloud-download:before {
2109
- content: "\e2b6";
2110
- }
2111
- .icon-cloud-upload:before {
2112
- content: "\e2b7";
2113
- }
2114
- .icon-download2:before {
2115
- content: "\e2b8";
2116
- }
2117
- .icon-upload2:before {
2118
- content: "\e2b9";
2119
- }
2120
- .icon-download3:before {
2121
- content: "\e2ba";
2122
- }
2123
- .icon-upload3:before {
2124
- content: "\e2bb";
2125
- }
2126
- .icon-download4:before {
2127
- content: "\e2bc";
2128
- }
2129
- .icon-upload4:before {
2130
- content: "\e2bd";
2131
- }
2132
- .icon-download5:before {
2133
- content: "\e2be";
2134
- }
2135
- .icon-upload5:before {
2136
- content: "\e2bf";
2137
- }
2138
- .icon-download6:before {
2139
- content: "\e2c0";
2140
- }
2141
- .icon-upload6:before {
2142
- content: "\e2c1";
2143
- }
2144
- .icon-download7:before {
2145
- content: "\e2c2";
2146
- }
2147
- .icon-upload7:before {
2148
- content: "\e2c3";
2149
- }
2150
- .icon-globe:before {
2151
- content: "\e2c4";
2152
- }
2153
- .icon-globe2:before {
2154
- content: "\e2c5";
2155
- }
2156
- .icon-globe3:before {
2157
- content: "\e2c6";
2158
- }
2159
- .icon-earth:before {
2160
- content: "\e2c7";
2161
- }
2162
- .icon-network:before {
2163
- content: "\e2c8";
2164
- }
2165
- .icon-link:before {
2166
- content: "\e2c9";
2167
- }
2168
- .icon-link2:before {
2169
- content: "\e2ca";
2170
- }
2171
- .icon-link3:before {
2172
- content: "\e2cb";
2173
- }
2174
- .icon-link22:before {
2175
- content: "\e2cc";
2176
- }
2177
- .icon-link4:before {
2178
- content: "\e2cd";
2179
- }
2180
- .icon-link5:before {
2181
- content: "\e2ce";
2182
- }
2183
- .icon-link6:before {
2184
- content: "\e2cf";
2185
- }
2186
- .icon-anchor:before {
2187
- content: "\e2d0";
2188
- }
2189
- .icon-flag:before {
2190
- content: "\e2d1";
2191
- }
2192
- .icon-flag2:before {
2193
- content: "\e2d2";
2194
- }
2195
- .icon-flag3:before {
2196
- content: "\e2d3";
2197
- }
2198
- .icon-flag4:before {
2199
- content: "\e2d4";
2200
- }
2201
- .icon-flag5:before {
2202
- content: "\e2d5";
2203
- }
2204
- .icon-flag6:before {
2205
- content: "\e2d6";
2206
- }
2207
- .icon-attachment:before {
2208
- content: "\e2d7";
2209
- }
2210
- .icon-attachment2:before {
2211
- content: "\e2d8";
2212
- }
2213
- .icon-eye:before {
2214
- content: "\e2d9";
2215
- }
2216
- .icon-eye-blocked:before {
2217
- content: "\e2da";
2218
- }
2219
- .icon-eye2:before {
2220
- content: "\e2db";
2221
- }
2222
- .icon-eye3:before {
2223
- content: "\e2dc";
2224
- }
2225
- .icon-eye-blocked2:before {
2226
- content: "\e2dd";
2227
- }
2228
- .icon-eye4:before {
2229
- content: "\e2de";
2230
- }
2231
- .icon-eye5:before {
2232
- content: "\e2df";
2233
- }
2234
- .icon-eye6:before {
2235
- content: "\e2e0";
2236
- }
2237
- .icon-eye7:before {
2238
- content: "\e2e1";
2239
- }
2240
- .icon-eye8:before {
2241
- content: "\e2e2";
2242
- }
2243
- .icon-bookmark:before {
2244
- content: "\e2e3";
2245
- }
2246
- .icon-bookmark2:before {
2247
- content: "\e2e4";
2248
- }
2249
- .icon-bookmarks:before {
2250
- content: "\e2e5";
2251
- }
2252
- .icon-bookmark3:before {
2253
- content: "\e2e6";
2254
- }
2255
- .icon-spotlight:before {
2256
- content: "\e2e7";
2257
- }
2258
- .icon-starburst:before {
2259
- content: "\e2e8";
2260
- }
2261
- .icon-snowflake:before {
2262
- content: "\e2e9";
2263
- }
2264
- .icon-temperature:before {
2265
- content: "\e2ea";
2266
- }
2267
- .icon-temperature2:before {
2268
- content: "\e2eb";
2269
- }
2270
- .icon-weather-lightning:before {
2271
- content: "\e2ec";
2272
- }
2273
- .icon-weather-rain:before {
2274
- content: "\e2ed";
2275
- }
2276
- .icon-weather-snow:before {
2277
- content: "\e2ee";
2278
- }
2279
- .icon-windy:before {
2280
- content: "\e2ef";
2281
- }
2282
- .icon-fan:before {
2283
- content: "\e2f0";
2284
- }
2285
- .icon-umbrella:before {
2286
- content: "\e2f1";
2287
- }
2288
- .icon-sun:before {
2289
- content: "\e2f2";
2290
- }
2291
- .icon-sun2:before {
2292
- content: "\e2f3";
2293
- }
2294
- .icon-brightness-high:before {
2295
- content: "\e2f4";
2296
- }
2297
- .icon-brightness-medium:before {
2298
- content: "\e2f5";
2299
- }
2300
- .icon-brightness-low:before {
2301
- content: "\e2f6";
2302
- }
2303
- .icon-brightness-contrast:before {
2304
- content: "\e2f7";
2305
- }
2306
- .icon-contrast:before {
2307
- content: "\e2f8";
2308
- }
2309
- .icon-moon:before {
2310
- content: "\e2f9";
2311
- }
2312
- .icon-bed:before {
2313
- content: "\e2fa";
2314
- }
2315
- .icon-bed2:before {
2316
- content: "\e2fb";
2317
- }
2318
- .icon-star:before {
2319
- content: "\e2fc";
2320
- }
2321
- .icon-star2:before {
2322
- content: "\e2fd";
2323
- }
2324
- .icon-star3:before {
2325
- content: "\e2fe";
2326
- }
2327
- .icon-star4:before {
2328
- content: "\e2ff";
2329
- }
2330
- .icon-star5:before {
2331
- content: "\e300";
2332
- }
2333
- .icon-star6:before {
2334
- content: "\e301";
2335
- }
2336
- .icon-heart:before {
2337
- content: "\e302";
2338
- }
2339
- .icon-heart2:before {
2340
- content: "\e303";
2341
- }
2342
- .icon-heart3:before {
2343
- content: "\e304";
2344
- }
2345
- .icon-heart4:before {
2346
- content: "\e305";
2347
- }
2348
- .icon-heart-broken:before {
2349
- content: "\e306";
2350
- }
2351
- .icon-heart5:before {
2352
- content: "\e307";
2353
- }
2354
- .icon-heart6:before {
2355
- content: "\e308";
2356
- }
2357
- .icon-heart-broken2:before {
2358
- content: "\e309";
2359
- }
2360
- .icon-heart7:before {
2361
- content: "\e30a";
2362
- }
2363
- .icon-heart8:before {
2364
- content: "\e30b";
2365
- }
2366
- .icon-heart-broken3:before {
2367
- content: "\e30c";
2368
- }
2369
- .icon-lips:before {
2370
- content: "\e30d";
2371
- }
2372
- .icon-lips2:before {
2373
- content: "\e30e";
2374
- }
2375
- .icon-thumbs-up:before {
2376
- content: "\e30f";
2377
- }
2378
- .icon-thumbs-up2:before {
2379
- content: "\e310";
2380
- }
2381
- .icon-thumbs-down:before {
2382
- content: "\e311";
2383
- }
2384
- .icon-thumbs-down2:before {
2385
- content: "\e312";
2386
- }
2387
- .icon-thumbs-up3:before {
2388
- content: "\e313";
2389
- }
2390
- .icon-thumbs-up4:before {
2391
- content: "\e314";
2392
- }
2393
- .icon-thumbs-up5:before {
2394
- content: "\e315";
2395
- }
2396
- .icon-thumbs-up6:before {
2397
- content: "\e316";
2398
- }
2399
- .icon-people:before {
2400
- content: "\e317";
2401
- }
2402
- .icon-man:before {
2403
- content: "\e318";
2404
- }
2405
- .icon-male:before {
2406
- content: "\e319";
2407
- }
2408
- .icon-woman:before {
2409
- content: "\e31a";
2410
- }
2411
- .icon-female:before {
2412
- content: "\e31b";
2413
- }
2414
- .icon-peace:before {
2415
- content: "\e31c";
2416
- }
2417
- .icon-yin-yang:before {
2418
- content: "\e31d";
2419
- }
2420
- .icon-happy:before {
2421
- content: "\e31e";
2422
- }
2423
- .icon-happy2:before {
2424
- content: "\e31f";
2425
- }
2426
- .icon-smiley:before {
2427
- content: "\e320";
2428
- }
2429
- .icon-smiley2:before {
2430
- content: "\e321";
2431
- }
2432
- .icon-tongue:before {
2433
- content: "\e322";
2434
- }
2435
- .icon-tongue2:before {
2436
- content: "\e323";
2437
- }
2438
- .icon-sad:before {
2439
- content: "\e324";
2440
- }
2441
- .icon-sad2:before {
2442
- content: "\e325";
2443
- }
2444
- .icon-wink:before {
2445
- content: "\e326";
2446
- }
2447
- .icon-wink2:before {
2448
- content: "\e327";
2449
- }
2450
- .icon-grin:before {
2451
- content: "\e328";
2452
- }
2453
- .icon-grin2:before {
2454
- content: "\e329";
2455
- }
2456
- .icon-cool:before {
2457
- content: "\e32a";
2458
- }
2459
- .icon-cool2:before {
2460
- content: "\e32b";
2461
- }
2462
- .icon-angry:before {
2463
- content: "\e32c";
2464
- }
2465
- .icon-angry2:before {
2466
- content: "\e32d";
2467
- }
2468
- .icon-evil:before {
2469
- content: "\e32e";
2470
- }
2471
- .icon-evil2:before {
2472
- content: "\e32f";
2473
- }
2474
- .icon-shocked:before {
2475
- content: "\e330";
2476
- }
2477
- .icon-shocked2:before {
2478
- content: "\e331";
2479
- }
2480
- .icon-confused:before {
2481
- content: "\e332";
2482
- }
2483
- .icon-confused2:before {
2484
- content: "\e333";
2485
- }
2486
- .icon-neutral:before {
2487
- content: "\e334";
2488
- }
2489
- .icon-neutral2:before {
2490
- content: "\e335";
2491
- }
2492
- .icon-wondering:before {
2493
- content: "\e336";
2494
- }
2495
- .icon-wondering2:before {
2496
- content: "\e337";
2497
- }
2498
- .icon-cursor:before {
2499
- content: "\e338";
2500
- }
2501
- .icon-cursor2:before {
2502
- content: "\e339";
2503
- }
2504
- .icon-point-up:before {
2505
- content: "\e33a";
2506
- }
2507
- .icon-point-right:before {
2508
- content: "\e33b";
2509
- }
2510
- .icon-point-down:before {
2511
- content: "\e33c";
2512
- }
2513
- .icon-point-left:before {
2514
- content: "\e33d";
2515
- }
2516
- .icon-pointer:before {
2517
- content: "\e33e";
2518
- }
2519
- .icon-hand:before {
2520
- content: "\e33f";
2521
- }
2522
- .icon-stack-empty:before {
2523
- content: "\e340";
2524
- }
2525
- .icon-stack-plus:before {
2526
- content: "\e341";
2527
- }
2528
- .icon-stack-minus:before {
2529
- content: "\e342";
2530
- }
2531
- .icon-stack-star:before {
2532
- content: "\e343";
2533
- }
2534
- .icon-stack-picture:before {
2535
- content: "\e344";
2536
- }
2537
- .icon-stack-down:before {
2538
- content: "\e345";
2539
- }
2540
- .icon-stack-up:before {
2541
- content: "\e346";
2542
- }
2543
- .icon-stack-cancel:before {
2544
- content: "\e347";
2545
- }
2546
- .icon-stack-checkmark:before {
2547
- content: "\e348";
2548
- }
2549
- .icon-stack-list:before {
2550
- content: "\e349";
2551
- }
2552
- .icon-stack-clubs:before {
2553
- content: "\e34a";
2554
- }
2555
- .icon-stack-spades:before {
2556
- content: "\e34b";
2557
- }
2558
- .icon-stack-hearts:before {
2559
- content: "\e34c";
2560
- }
2561
- .icon-stack-diamonds:before {
2562
- content: "\e34d";
2563
- }
2564
- .icon-stack-user:before {
2565
- content: "\e34e";
2566
- }
2567
- .icon-stack4:before {
2568
- content: "\e34f";
2569
- }
2570
- .icon-stack-music:before {
2571
- content: "\e350";
2572
- }
2573
- .icon-stack-play:before {
2574
- content: "\e351";
2575
- }
2576
- .icon-move:before {
2577
- content: "\e352";
2578
- }
2579
- .icon-resize:before {
2580
- content: "\e353";
2581
- }
2582
- .icon-resize2:before {
2583
- content: "\e354";
2584
- }
2585
- .icon-warning:before {
2586
- content: "\e355";
2587
- }
2588
- .icon-warning2:before {
2589
- content: "\e356";
2590
- }
2591
- .icon-notification:before {
2592
- content: "\e357";
2593
- }
2594
- .icon-notification2:before {
2595
- content: "\e358";
2596
- }
2597
- .icon-question:before {
2598
- content: "\e359";
2599
- }
2600
- .icon-question2:before {
2601
- content: "\e35a";
2602
- }
2603
- .icon-question3:before {
2604
- content: "\e35b";
2605
- }
2606
- .icon-question4:before {
2607
- content: "\e35c";
2608
- }
2609
- .icon-question5:before {
2610
- content: "\e35d";
2611
- }
2612
- .icon-plus-circle:before {
2613
- content: "\e35e";
2614
- }
2615
- .icon-plus-circle2:before {
2616
- content: "\e35f";
2617
- }
2618
- .icon-minus-circle:before {
2619
- content: "\e360";
2620
- }
2621
- .icon-minus-circle2:before {
2622
- content: "\e361";
2623
- }
2624
- .icon-info:before {
2625
- content: "\e362";
2626
- }
2627
- .icon-info2:before {
2628
- content: "\e363";
2629
- }
2630
- .icon-blocked:before {
2631
- content: "\e364";
2632
- }
2633
- .icon-cancel-circle:before {
2634
- content: "\e365";
2635
- }
2636
- .icon-cancel-circle2:before {
2637
- content: "\e366";
2638
- }
2639
- .icon-checkmark-circle:before {
2640
- content: "\e367";
2641
- }
2642
- .icon-checkmark-circle2:before {
2643
- content: "\e368";
2644
- }
2645
- .icon-cancel:before {
2646
- content: "\e369";
2647
- }
2648
- .icon-spam:before {
2649
- content: "\e36a";
2650
- }
2651
- .icon-close:before {
2652
- content: "\e36b";
2653
- }
2654
- .icon-close2:before {
2655
- content: "\e36c";
2656
- }
2657
- .icon-close3:before {
2658
- content: "\e36d";
2659
- }
2660
- .icon-close4:before {
2661
- content: "\e36e";
2662
- }
2663
- .icon-close5:before {
2664
- content: "\e36f";
2665
- }
2666
- .icon-checkmark:before {
2667
- content: "\e370";
2668
- }
2669
- .icon-checkmark2:before {
2670
- content: "\e371";
2671
- }
2672
- .icon-checkmark3:before {
2673
- content: "\e372";
2674
- }
2675
- .icon-checkmark4:before {
2676
- content: "\e373";
2677
- }
2678
- .icon-spell-check:before {
2679
- content: "\e374";
2680
- }
2681
- .icon-minus:before {
2682
- content: "\e375";
2683
- }
2684
- .icon-plus:before {
2685
- content: "\e376";
2686
- }
2687
- .icon-minus2:before {
2688
- content: "\e377";
2689
- }
2690
- .icon-plus2:before {
2691
- content: "\e378";
2692
- }
2693
- .icon-enter:before {
2694
- content: "\e379";
2695
- }
2696
- .icon-exit:before {
2697
- content: "\e37a";
2698
- }
2699
- .icon-enter2:before {
2700
- content: "\e37b";
2701
- }
2702
- .icon-exit2:before {
2703
- content: "\e37c";
2704
- }
2705
- .icon-enter3:before {
2706
- content: "\e37d";
2707
- }
2708
- .icon-exit3:before {
2709
- content: "\e37e";
2710
- }
2711
- .icon-exit4:before {
2712
- content: "\e37f";
2713
- }
2714
- .icon-play3:before {
2715
- content: "\e380";
2716
- }
2717
- .icon-pause:before {
2718
- content: "\e381";
2719
- }
2720
- .icon-stop:before {
2721
- content: "\e382";
2722
- }
2723
- .icon-backward:before {
2724
- content: "\e383";
2725
- }
2726
- .icon-forward2:before {
2727
- content: "\e384";
2728
- }
2729
- .icon-play4:before {
2730
- content: "\e385";
2731
- }
2732
- .icon-pause2:before {
2733
- content: "\e386";
2734
- }
2735
- .icon-stop2:before {
2736
- content: "\e387";
2737
- }
2738
- .icon-backward2:before {
2739
- content: "\e388";
2740
- }
2741
- .icon-forward3:before {
2742
- content: "\e389";
2743
- }
2744
- .icon-first:before {
2745
- content: "\e38a";
2746
- }
2747
- .icon-last:before {
2748
- content: "\e38b";
2749
- }
2750
- .icon-previous:before {
2751
- content: "\e38c";
2752
- }
2753
- .icon-next:before {
2754
- content: "\e38d";
2755
- }
2756
- .icon-eject:before {
2757
- content: "\e38e";
2758
- }
2759
- .icon-volume-high:before {
2760
- content: "\e38f";
2761
- }
2762
- .icon-volume-medium:before {
2763
- content: "\e390";
2764
- }
2765
- .icon-volume-low:before {
2766
- content: "\e391";
2767
- }
2768
- .icon-volume-mute:before {
2769
- content: "\e392";
2770
- }
2771
- .icon-volume-mute2:before {
2772
- content: "\e393";
2773
- }
2774
- .icon-volume-increase:before {
2775
- content: "\e394";
2776
- }
2777
- .icon-volume-decrease:before {
2778
- content: "\e395";
2779
- }
2780
- .icon-volume-high2:before {
2781
- content: "\e396";
2782
- }
2783
- .icon-volume-medium2:before {
2784
- content: "\e397";
2785
- }
2786
- .icon-volume-low2:before {
2787
- content: "\e398";
2788
- }
2789
- .icon-volume-mute3:before {
2790
- content: "\e399";
2791
- }
2792
- .icon-volume-mute4:before {
2793
- content: "\e39a";
2794
- }
2795
- .icon-volume-increase2:before {
2796
- content: "\e39b";
2797
- }
2798
- .icon-volume-decrease2:before {
2799
- content: "\e39c";
2800
- }
2801
- .icon-volume5:before {
2802
- content: "\e39d";
2803
- }
2804
- .icon-volume4:before {
2805
- content: "\e39e";
2806
- }
2807
- .icon-volume3:before {
2808
- content: "\e39f";
2809
- }
2810
- .icon-volume2:before {
2811
- content: "\e3a0";
2812
- }
2813
- .icon-volume1:before {
2814
- content: "\e3a1";
2815
- }
2816
- .icon-volume0:before {
2817
- content: "\e3a2";
2818
- }
2819
- .icon-volume-mute5:before {
2820
- content: "\e3a3";
2821
- }
2822
- .icon-volume-mute6:before {
2823
- content: "\e3a4";
2824
- }
2825
- .icon-loop:before {
2826
- content: "\e3a5";
2827
- }
2828
- .icon-loop2:before {
2829
- content: "\e3a6";
2830
- }
2831
- .icon-loop3:before {
2832
- content: "\e3a7";
2833
- }
2834
- .icon-loop4:before {
2835
- content: "\e3a8";
2836
- }
2837
- .icon-loop5:before {
2838
- content: "\e3a9";
2839
- }
2840
- .icon-shuffle:before {
2841
- content: "\e3aa";
2842
- }
2843
- .icon-shuffle2:before {
2844
- content: "\e3ab";
2845
- }
2846
- .icon-wave:before {
2847
- content: "\e3ac";
2848
- }
2849
- .icon-wave2:before {
2850
- content: "\e3ad";
2851
- }
2852
- .icon-arrow-first:before {
2853
- content: "\e3ae";
2854
- }
2855
- .icon-arrow-right:before {
2856
- content: "\e3af";
2857
- }
2858
- .icon-arrow-up:before {
2859
- content: "\e3b0";
2860
- }
2861
- .icon-arrow-right2:before {
2862
- content: "\e3b1";
2863
- }
2864
- .icon-arrow-down:before {
2865
- content: "\e3b2";
2866
- }
2867
- .icon-arrow-left:before {
2868
- content: "\e3b3";
2869
- }
2870
- .icon-arrow-up2:before {
2871
- content: "\e3b4";
2872
- }
2873
- .icon-arrow-right3:before {
2874
- content: "\e3b5";
2875
- }
2876
- .icon-arrow-down2:before {
2877
- content: "\e3b6";
2878
- }
2879
- .icon-arrow-left2:before {
2880
- content: "\e3b7";
2881
- }
2882
- .icon-arrow-up-left:before {
2883
- content: "\e3b8";
2884
- }
2885
- .icon-arrow-up3:before {
2886
- content: "\e3b9";
2887
- }
2888
- .icon-arrow-up-right:before {
2889
- content: "\e3ba";
2890
- }
2891
- .icon-arrow-right4:before {
2892
- content: "\e3bb";
2893
- }
2894
- .icon-arrow-down-right:before {
2895
- content: "\e3bc";
2896
- }
2897
- .icon-arrow-down3:before {
2898
- content: "\e3bd";
2899
- }
2900
- .icon-arrow-down-left:before {
2901
- content: "\e3be";
2902
- }
2903
- .icon-arrow-left3:before {
2904
- content: "\e3bf";
2905
- }
2906
- .icon-arrow-up-left2:before {
2907
- content: "\e3c0";
2908
- }
2909
- .icon-arrow-up4:before {
2910
- content: "\e3c1";
2911
- }
2912
- .icon-arrow-up-right2:before {
2913
- content: "\e3c2";
2914
- }
2915
- .icon-arrow-right5:before {
2916
- content: "\e3c3";
2917
- }
2918
- .icon-arrow-down-right2:before {
2919
- content: "\e3c4";
2920
- }
2921
- .icon-arrow-down4:before {
2922
- content: "\e3c5";
2923
- }
2924
- .icon-arrow-down-left2:before {
2925
- content: "\e3c6";
2926
- }
2927
- .icon-arrow-left4:before {
2928
- content: "\e3c7";
2929
- }
2930
- .icon-arrow-up-left3:before {
2931
- content: "\e3c8";
2932
- }
2933
- .icon-arrow-up5:before {
2934
- content: "\e3c9";
2935
- }
2936
- .icon-arrow-up-right3:before {
2937
- content: "\e3ca";
2938
- }
2939
- .icon-arrow-right6:before {
2940
- content: "\e3cb";
2941
- }
2942
- .icon-arrow-down-right3:before {
2943
- content: "\e3cc";
2944
- }
2945
- .icon-arrow-down5:before {
2946
- content: "\e3cd";
2947
- }
2948
- .icon-arrow-down-left3:before {
2949
- content: "\e3ce";
2950
- }
2951
- .icon-arrow-left5:before {
2952
- content: "\e3cf";
2953
- }
2954
- .icon-arrow-up-left4:before {
2955
- content: "\e3d0";
2956
- }
2957
- .icon-arrow-up6:before {
2958
- content: "\e3d1";
2959
- }
2960
- .icon-arrow-up-right4:before {
2961
- content: "\e3d2";
2962
- }
2963
- .icon-arrow-right7:before {
2964
- content: "\e3d3";
2965
- }
2966
- .icon-arrow-down-right4:before {
2967
- content: "\e3d4";
2968
- }
2969
- .icon-arrow-down6:before {
2970
- content: "\e3d5";
2971
- }
2972
- .icon-arrow-down-left4:before {
2973
- content: "\e3d6";
2974
- }
2975
- .icon-arrow-left6:before {
2976
- content: "\e3d7";
2977
- }
2978
- .icon-arrow:before {
2979
- content: "\e3d8";
2980
- }
2981
- .icon-arrow2:before {
2982
- content: "\e3d9";
2983
- }
2984
- .icon-arrow3:before {
2985
- content: "\e3da";
2986
- }
2987
- .icon-arrow4:before {
2988
- content: "\e3db";
2989
- }
2990
- .icon-arrow5:before {
2991
- content: "\e3dc";
2992
- }
2993
- .icon-arrow6:before {
2994
- content: "\e3dd";
2995
- }
2996
- .icon-arrow7:before {
2997
- content: "\e3de";
2998
- }
2999
- .icon-arrow8:before {
3000
- content: "\e3df";
3001
- }
3002
- .icon-arrow-up-left5:before {
3003
- content: "\e3e0";
3004
- }
3005
- .icon-arrowsquare:before {
3006
- content: "\e3e1";
3007
- }
3008
- .icon-arrow-up-right5:before {
3009
- content: "\e3e2";
3010
- }
3011
- .icon-arrow-right8:before {
3012
- content: "\e3e3";
3013
- }
3014
- .icon-arrow-down-right5:before {
3015
- content: "\e3e4";
3016
- }
3017
- .icon-arrow-down7:before {
3018
- content: "\e3e5";
3019
- }
3020
- .icon-arrow-down-left5:before {
3021
- content: "\e3e6";
3022
- }
3023
- .icon-arrow-left7:before {
3024
- content: "\e3e7";
3025
- }
3026
- .icon-arrow-up7:before {
3027
- content: "\e3e8";
3028
- }
3029
- .icon-arrow-right9:before {
3030
- content: "\e3e9";
3031
- }
3032
- .icon-arrow-down8:before {
3033
- content: "\e3ea";
3034
- }
3035
- .icon-arrow-left8:before {
3036
- content: "\e3eb";
3037
- }
3038
- .icon-arrow-up8:before {
3039
- content: "\e3ec";
3040
- }
3041
- .icon-arrow-right10:before {
3042
- content: "\e3ed";
3043
- }
3044
- .icon-arrow-bottom:before {
3045
- content: "\e3ee";
3046
- }
3047
- .icon-arrow-left9:before {
3048
- content: "\e3ef";
3049
- }
3050
- .icon-arrow-up-left6:before {
3051
- content: "\e3f0";
3052
- }
3053
- .icon-arrow-up9:before {
3054
- content: "\e3f1";
3055
- }
3056
- .icon-arrow-up-right6:before {
3057
- content: "\e3f2";
3058
- }
3059
- .icon-arrow-right11:before {
3060
- content: "\e3f3";
3061
- }
3062
- .icon-arrow-down-right6:before {
3063
- content: "\e3f4";
3064
- }
3065
- .icon-arrow-down9:before {
3066
- content: "\e3f5";
3067
- }
3068
- .icon-arrow-down-left6:before {
3069
- content: "\e3f6";
3070
- }
3071
- .icon-arrow-left10:before {
3072
- content: "\e3f7";
3073
- }
3074
- .icon-arrow-up-left7:before {
3075
- content: "\e3f8";
3076
- }
3077
- .icon-arrow-up10:before {
3078
- content: "\e3f9";
3079
- }
3080
- .icon-arrow-up-right7:before {
3081
- content: "\e3fa";
3082
- }
3083
- .icon-arrow-right12:before {
3084
- content: "\e3fb";
3085
- }
3086
- .icon-arrow-down-right7:before {
3087
- content: "\e3fc";
3088
- }
3089
- .icon-arrow-down10:before {
3090
- content: "\e3fd";
3091
- }
3092
- .icon-arrow-down-left7:before {
3093
- content: "\e3fe";
3094
- }
3095
- .icon-arrow-left11:before {
3096
- content: "\e3ff";
3097
- }
3098
- .icon-arrow-up11:before {
3099
- content: "\e400";
3100
- }
3101
- .icon-arrow-right13:before {
3102
- content: "\e401";
3103
- }
3104
- .icon-arrow-down11:before {
3105
- content: "\e402";
3106
- }
3107
- .icon-arrow-left12:before {
3108
- content: "\e403";
3109
- }
3110
- .icon-arrow-up12:before {
3111
- content: "\e404";
3112
- }
3113
- .icon-arrow-right14:before {
3114
- content: "\e405";
3115
- }
3116
- .icon-arrow-down12:before {
3117
- content: "\e406";
3118
- }
3119
- .icon-arrow-left13:before {
3120
- content: "\e407";
3121
- }
3122
- .icon-arrow-up13:before {
3123
- content: "\e408";
3124
- }
3125
- .icon-arrow-right15:before {
3126
- content: "\e409";
3127
- }
3128
- .icon-arrow-down13:before {
3129
- content: "\e40a";
3130
- }
3131
- .icon-arrow-left14:before {
3132
- content: "\e40b";
3133
- }
3134
- .icon-arrow-up14:before {
3135
- content: "\e40c";
3136
- }
3137
- .icon-arrow-right16:before {
3138
- content: "\e40d";
3139
- }
3140
- .icon-arrow-down14:before {
3141
- content: "\e40e";
3142
- }
3143
- .icon-arrow-left15:before {
3144
- content: "\e40f";
3145
- }
3146
- .icon-arrow-up15:before {
3147
- content: "\e410";
3148
- }
3149
- .icon-arrow-right17:before {
3150
- content: "\e411";
3151
- }
3152
- .icon-arrow-down15:before {
3153
- content: "\e412";
3154
- }
3155
- .icon-arrow-left16:before {
3156
- content: "\e413";
3157
- }
3158
- .icon-arrow-up16:before {
3159
- content: "\e414";
3160
- }
3161
- .icon-arrow-right18:before {
3162
- content: "\e415";
3163
- }
3164
- .icon-arrow-down16:before {
3165
- content: "\e416";
3166
- }
3167
- .icon-arrow-left17:before {
3168
- content: "\e417";
3169
- }
3170
- .icon-menu10:before {
3171
- content: "\e418";
3172
- }
3173
- .icon-menu11:before {
3174
- content: "\e419";
3175
- }
3176
- .icon-menu-close:before {
3177
- content: "\e41a";
3178
- }
3179
- .icon-menu-close2:before {
3180
- content: "\e41b";
3181
- }
3182
- .icon-enter4:before {
3183
- content: "\e41c";
3184
- }
3185
- .icon-enter5:before {
3186
- content: "\e41d";
3187
- }
3188
- .icon-esc:before {
3189
- content: "\e41e";
3190
- }
3191
- .icon-backspace:before {
3192
- content: "\e41f";
3193
- }
3194
- .icon-backspace2:before {
3195
- content: "\e420";
3196
- }
3197
- .icon-backspace3:before {
3198
- content: "\e421";
3199
- }
3200
- .icon-tab:before {
3201
- content: "\e422";
3202
- }
3203
- .icon-transmission:before {
3204
- content: "\e423";
3205
- }
3206
- .icon-transmission2:before {
3207
- content: "\e424";
3208
- }
3209
- .icon-sort:before {
3210
- content: "\e425";
3211
- }
3212
- .icon-sort2:before {
3213
- content: "\e426";
3214
- }
3215
- .icon-key-keyboard:before {
3216
- content: "\e427";
3217
- }
3218
- .icon-key-A:before {
3219
- content: "\e428";
3220
- }
3221
- .icon-key-up:before {
3222
- content: "\e429";
3223
- }
3224
- .icon-key-right:before {
3225
- content: "\e42a";
3226
- }
3227
- .icon-key-down:before {
3228
- content: "\e42b";
3229
- }
3230
- .icon-key-left:before {
3231
- content: "\e42c";
3232
- }
3233
- .icon-command:before {
3234
- content: "\e42d";
3235
- }
3236
- .icon-checkbox-checked:before {
3237
- content: "\e42e";
3238
- }
3239
- .icon-checkbox-unchecked:before {
3240
- content: "\e42f";
3241
- }
3242
- .icon-square:before {
3243
- content: "\e430";
3244
- }
3245
- .icon-checkbox-partial:before {
3246
- content: "\e431";
3247
- }
3248
- .icon-checkbox:before {
3249
- content: "\e432";
3250
- }
3251
- .icon-checkbox-unchecked2:before {
3252
- content: "\e433";
3253
- }
3254
- .icon-checkbox-partial2:before {
3255
- content: "\e434";
3256
- }
3257
- .icon-checkbox-checked2:before {
3258
- content: "\e435";
3259
- }
3260
- .icon-checkbox-unchecked3:before {
3261
- content: "\e436";
3262
- }
3263
- .icon-checkbox-partial3:before {
3264
- content: "\e437";
3265
- }
3266
- .icon-radio-checked:before {
3267
- content: "\e438";
3268
- }
3269
- .icon-radio-unchecked:before {
3270
- content: "\e439";
3271
- }
3272
- .icon-circle:before {
3273
- content: "\e43a";
3274
- }
3275
- .icon-circle2:before {
3276
- content: "\e43b";
3277
- }
3278
- .icon-crop:before {
3279
- content: "\e43c";
3280
- }
3281
- .icon-crop2:before {
3282
- content: "\e43d";
3283
- }
3284
- .icon-vector:before {
3285
- content: "\e43e";
3286
- }
3287
- .icon-rulers:before {
3288
- content: "\e43f";
3289
- }
3290
- .icon-scissors:before {
3291
- content: "\e440";
3292
- }
3293
- .icon-scissors2:before {
3294
- content: "\e441";
3295
- }
3296
- .icon-scissors3:before {
3297
- content: "\e442";
3298
- }
3299
- .icon-filter:before {
3300
- content: "\e443";
3301
- }
3302
- .icon-filter2:before {
3303
- content: "\e444";
3304
- }
3305
- .icon-filter3:before {
3306
- content: "\e445";
3307
- }
3308
- .icon-filter4:before {
3309
- content: "\e446";
3310
- }
3311
- .icon-font:before {
3312
- content: "\e447";
3313
- }
3314
- .icon-font-size:before {
3315
- content: "\e448";
3316
- }
3317
- .icon-type:before {
3318
- content: "\e449";
3319
- }
3320
- .icon-text-height:before {
3321
- content: "\e44a";
3322
- }
3323
- .icon-text-width:before {
3324
- content: "\e44b";
3325
- }
3326
- .icon-height:before {
3327
- content: "\e44c";
3328
- }
3329
- .icon-width:before {
3330
- content: "\e44d";
3331
- }
3332
- .icon-bold:before {
3333
- content: "\e44e";
3334
- }
3335
- .icon-underline:before {
3336
- content: "\e44f";
3337
- }
3338
- .icon-italic:before {
3339
- content: "\e450";
3340
- }
3341
- .icon-strikethrough:before {
3342
- content: "\e451";
3343
- }
3344
- .icon-strikethrough2:before {
3345
- content: "\e452";
3346
- }
3347
- .icon-font-size2:before {
3348
- content: "\e453";
3349
- }
3350
- .icon-bold2:before {
3351
- content: "\e454";
3352
- }
3353
- .icon-underline2:before {
3354
- content: "\e455";
3355
- }
3356
- .icon-italic2:before {
3357
- content: "\e456";
3358
- }
3359
- .icon-strikethrough3:before {
3360
- content: "\e457";
3361
- }
3362
- .icon-omega:before {
3363
- content: "\e458";
3364
- }
3365
- .icon-sigma:before {
3366
- content: "\e459";
3367
- }
3368
- .icon-nbsp:before {
3369
- content: "\e45a";
3370
- }
3371
- .icon-page-break:before {
3372
- content: "\e45b";
3373
- }
3374
- .icon-page-break2:before {
3375
- content: "\e45c";
3376
- }
3377
- .icon-superscript:before {
3378
- content: "\e45d";
3379
- }
3380
- .icon-subscript:before {
3381
- content: "\e45e";
3382
- }
3383
- .icon-superscript2:before {
3384
- content: "\e45f";
3385
- }
3386
- .icon-subscript2:before {
3387
- content: "\e460";
3388
- }
3389
- .icon-text-color:before {
3390
- content: "\e461";
3391
- }
3392
- .icon-highlight:before {
3393
- content: "\e462";
3394
- }
3395
- .icon-pagebreak:before {
3396
- content: "\e463";
3397
- }
3398
- .icon-clear-formatting:before {
3399
- content: "\e464";
3400
- }
3401
- .icon-table:before {
3402
- content: "\e465";
3403
- }
3404
- .icon-table2:before {
3405
- content: "\e466";
3406
- }
3407
- .icon-insert-template:before {
3408
- content: "\e467";
3409
- }
3410
- .icon-pilcrow:before {
3411
- content: "\e468";
3412
- }
3413
- .icon-lefttoright:before {
3414
- content: "\e469";
3415
- }
3416
- .icon-righttoleft:before {
3417
- content: "\e46a";
3418
- }
3419
- .icon-paragraph-left:before {
3420
- content: "\e46b";
3421
- }
3422
- .icon-paragraph-center:before {
3423
- content: "\e46c";
3424
- }
3425
- .icon-paragraph-right:before {
3426
- content: "\e46d";
3427
- }
3428
- .icon-paragraph-justify:before {
3429
- content: "\e46e";
3430
- }
3431
- .icon-paragraph-left2:before {
3432
- content: "\e46f";
3433
- }
3434
- .icon-paragraph-center2:before {
3435
- content: "\e470";
3436
- }
3437
- .icon-paragraph-right2:before {
3438
- content: "\e471";
3439
- }
3440
- .icon-paragraph-justify2:before {
3441
- content: "\e472";
3442
- }
3443
- .icon-indent-increase:before {
3444
- content: "\e473";
3445
- }
3446
- .icon-indent-decrease:before {
3447
- content: "\e474";
3448
- }
3449
- .icon-paragraph-left3:before {
3450
- content: "\e475";
3451
- }
3452
- .icon-paragraph-center3:before {
3453
- content: "\e476";
3454
- }
3455
- .icon-paragraph-right3:before {
3456
- content: "\e477";
3457
- }
3458
- .icon-paragraph-justify3:before {
3459
- content: "\e478";
3460
- }
3461
- .icon-indent-increase2:before {
3462
- content: "\e479";
3463
- }
3464
- .icon-indent-decrease2:before {
3465
- content: "\e47a";
3466
- }
3467
- .icon-share:before {
3468
- content: "\e47b";
3469
- }
3470
- .icon-newtab:before {
3471
- content: "\e47c";
3472
- }
3473
- .icon-newtab2:before {
3474
- content: "\e47d";
3475
- }
3476
- .icon-popout:before {
3477
- content: "\e47e";
3478
- }
3479
- .icon-embed:before {
3480
- content: "\e47f";
3481
- }
3482
- .icon-code:before {
3483
- content: "\e480";
3484
- }
3485
- .icon-console:before {
3486
- content: "\e481";
3487
- }
3488
- .icon-sevensegment0:before {
3489
- content: "\e482";
3490
- }
3491
- .icon-sevensegment1:before {
3492
- content: "\e483";
3493
- }
3494
- .icon-sevensegment2:before {
3495
- content: "\e484";
3496
- }
3497
- .icon-sevensegment3:before {
3498
- content: "\e485";
3499
- }
3500
- .icon-sevensegment4:before {
3501
- content: "\e486";
3502
- }
3503
- .icon-sevensegment5:before {
3504
- content: "\e487";
3505
- }
3506
- .icon-sevensegment6:before {
3507
- content: "\e488";
3508
- }
3509
- .icon-sevensegment7:before {
3510
- content: "\e489";
3511
- }
3512
- .icon-sevensegment8:before {
3513
- content: "\e48a";
3514
- }
3515
- .icon-sevensegment9:before {
3516
- content: "\e48b";
3517
- }
3518
- .icon-share2:before {
3519
- content: "\e48c";
3520
- }
3521
- .icon-share3:before {
3522
- content: "\e48d";
3523
- }
3524
- .icon-mail:before {
3525
- content: "\e48e";
3526
- }
3527
- .icon-mail2:before {
3528
- content: "\e48f";
3529
- }
3530
- .icon-mail3:before {
3531
- content: "\e490";
3532
- }
3533
- .icon-mail4:before {
3534
- content: "\e491";
3535
- }
3536
- .icon-google:before {
3537
- content: "\e492";
3538
- }
3539
- .icon-googleplus:before {
3540
- content: "\e493";
3541
- }
3542
- .icon-googleplus2:before {
3543
- content: "\e494";
3544
- }
3545
- .icon-googleplus3:before {
3546
- content: "\e495";
3547
- }
3548
- .icon-googleplus4:before {
3549
- content: "\e496";
3550
- }
3551
- .icon-google-drive:before {
3552
- content: "\e497";
3553
- }
3554
- .icon-facebook:before {
3555
- content: "\e498";
3556
- }
3557
- .icon-facebook2:before {
3558
- content: "\e499";
3559
- }
3560
- .icon-facebook3:before {
3561
- content: "\e49a";
3562
- }
3563
- .icon-facebook4:before {
3564
- content: "\e49b";
3565
- }
3566
- .icon-instagram:before {
3567
- content: "\e49c";
3568
- }
3569
- .icon-twitter:before {
3570
- content: "\e49d";
3571
- }
3572
- .icon-twitter2:before {
3573
- content: "\e49e";
3574
- }
3575
- .icon-twitter3:before {
3576
- content: "\e49f";
3577
- }
3578
- .icon-feed2:before {
3579
- content: "\e4a0";
3580
- }
3581
- .icon-feed3:before {
3582
- content: "\e4a1";
3583
- }
3584
- .icon-feed4:before {
3585
- content: "\e4a2";
3586
- }
3587
- .icon-youtube:before {
3588
- content: "\e4a3";
3589
- }
3590
- .icon-youtube2:before {
3591
- content: "\e4a4";
3592
- }
3593
- .icon-vimeo:before {
3594
- content: "\e4a5";
3595
- }
3596
- .icon-vimeo2:before {
3597
- content: "\e4a6";
3598
- }
3599
- .icon-vimeo3:before {
3600
- content: "\e4a7";
3601
- }
3602
- .icon-lanyrd:before {
3603
- content: "\e4a8";
3604
- }
3605
- .icon-flickr:before {
3606
- content: "\e4a9";
3607
- }
3608
- .icon-flickr2:before {
3609
- content: "\e4aa";
3610
- }
3611
- .icon-flickr3:before {
3612
- content: "\e4ab";
3613
- }
3614
- .icon-flickr4:before {
3615
- content: "\e4ac";
3616
- }
3617
- .icon-picassa:before {
3618
- content: "\e4ad";
3619
- }
3620
- .icon-picassa2:before {
3621
- content: "\e4ae";
3622
- }
3623
- .icon-dribbble:before {
3624
- content: "\e4af";
3625
- }
3626
- .icon-dribbble2:before {
3627
- content: "\e4b0";
3628
- }
3629
- .icon-dribbble3:before {
3630
- content: "\e4b1";
3631
- }
3632
- .icon-forrst:before {
3633
- content: "\e4b2";
3634
- }
3635
- .icon-forrst2:before {
3636
- content: "\e4b3";
3637
- }
3638
- .icon-deviantart:before {
3639
- content: "\e4b4";
3640
- }
3641
- .icon-deviantart2:before {
3642
- content: "\e4b5";
3643
- }
3644
- .icon-steam:before {
3645
- content: "\e4b6";
3646
- }
3647
- .icon-steam2:before {
3648
- content: "\e4b7";
3649
- }
3650
- .icon-github:before {
3651
- content: "\e4b8";
3652
- }
3653
- .icon-github2:before {
3654
- content: "\e4b9";
3655
- }
3656
- .icon-github3:before {
3657
- content: "\e4ba";
3658
- }
3659
- .icon-github4:before {
3660
- content: "\e4bb";
3661
- }
3662
- .icon-github5:before {
3663
- content: "\e4bc";
3664
- }
3665
- .icon-wordpress:before {
3666
- content: "\e4bd";
3667
- }
3668
- .icon-wordpress2:before {
3669
- content: "\e4be";
3670
- }
3671
- .icon-joomla:before {
3672
- content: "\e4bf";
3673
- }
3674
- .icon-blogger:before {
3675
- content: "\e4c0";
3676
- }
3677
- .icon-blogger2:before {
3678
- content: "\e4c1";
3679
- }
3680
- .icon-tumblr:before {
3681
- content: "\e4c2";
3682
- }
3683
- .icon-tumblr2:before {
3684
- content: "\e4c3";
3685
- }
3686
- .icon-yahoo:before {
3687
- content: "\e4c4";
3688
- }
3689
- .icon-tux:before {
3690
- content: "\e4c5";
3691
- }
3692
- .icon-apple:before {
3693
- content: "\e4c6";
3694
- }
3695
- .icon-finder:before {
3696
- content: "\e4c7";
3697
- }
3698
- .icon-android:before {
3699
- content: "\e4c8";
3700
- }
3701
- .icon-windows:before {
3702
- content: "\e4c9";
3703
- }
3704
- .icon-windows8:before {
3705
- content: "\e4ca";
3706
- }
3707
- .icon-soundcloud:before {
3708
- content: "\e4cb";
3709
- }
3710
- .icon-soundcloud2:before {
3711
- content: "\e4cc";
3712
- }
3713
- .icon-skype:before {
3714
- content: "\e4cd";
3715
- }
3716
- .icon-reddit:before {
3717
- content: "\e4ce";
3718
- }
3719
- .icon-linkedin:before {
3720
- content: "\e4cf";
3721
- }
3722
- .icon-lastfm:before {
3723
- content: "\e4d0";
3724
- }
3725
- .icon-lastfm2:before {
3726
- content: "\e4d1";
3727
- }
3728
- .icon-delicious:before {
3729
- content: "\e4d2";
3730
- }
3731
- .icon-stumbleupon:before {
3732
- content: "\e4d3";
3733
- }
3734
- .icon-stumbleupon2:before {
3735
- content: "\e4d4";
3736
- }
3737
- .icon-stackoverflow:before {
3738
- content: "\e4d5";
3739
- }
3740
- .icon-pinterest:before {
3741
- content: "\e4d6";
3742
- }
3743
- .icon-pinterest2:before {
3744
- content: "\e4d7";
3745
- }
3746
- .icon-xing:before {
3747
- content: "\e4d8";
3748
- }
3749
- .icon-xing2:before {
3750
- content: "\e4d9";
3751
- }
3752
- .icon-flattr:before {
3753
- content: "\e4da";
3754
- }
3755
- .icon-foursquare:before {
3756
- content: "\e4db";
3757
- }
3758
- .icon-foursquare2:before {
3759
- content: "\e4dc";
3760
- }
3761
- .icon-paypal:before {
3762
- content: "\e4dd";
3763
- }
3764
- .icon-paypal2:before {
3765
- content: "\e4de";
3766
- }
3767
- .icon-paypal3:before {
3768
- content: "\e4df";
3769
- }
3770
- .icon-yelp:before {
3771
- content: "\e4e0";
3772
- }
3773
- .icon-libreoffice:before {
3774
- content: "\e4e1";
3775
- }
3776
- .icon-file-pdf:before {
3777
- content: "\e4e2";
3778
- }
3779
- .icon-file-openoffice:before {
3780
- content: "\e4e3";
3781
- }
3782
- .icon-file-word:before {
3783
- content: "\e4e4";
3784
- }
3785
- .icon-file-excel:before {
3786
- content: "\e4e5";
3787
- }
3788
- .icon-file-zip:before {
3789
- content: "\e4e6";
3790
- }
3791
- .icon-file-powerpoint:before {
3792
- content: "\e4e7";
3793
- }
3794
- .icon-file-xml:before {
3795
- content: "\e4e8";
3796
- }
3797
- .icon-file-css:before {
3798
- content: "\e4e9";
3799
- }
3800
- .icon-html5:before {
3801
- content: "\e4ea";
3802
- }
3803
- .icon-html52:before {
3804
- content: "\e4eb";
3805
- }
3806
- .icon-css3:before {
3807
- content: "\e4ec";
3808
- }
3809
- .icon-chrome:before {
3810
- content: "\e4ed";
3811
- }
3812
- .icon-firefox:before {
3813
- content: "\e4ee";
3814
- }
3815
- .icon-IE:before {
3816
- content: "\e4ef";
3817
- }
3818
- .icon-opera:before {
3819
- content: "\e4f0";
3820
- }
3821
- .icon-safari:before {
3822
- content: "\e4f1";
3823
- }
3824
- .icon-IcoMoon:before {
3825
- content: "\e4f2";
3826
- }
3827
- .icon-uniE6002:before {
3828
- content: "\eaf3";
3829
- }
3830
- .icon-uniE6012:before {
3831
- content: "\eaf4";
3832
- }
3833
- .icon-uniE6022:before {
3834
- content: "\eaf5";
3835
- }
3836
- .icon-uniE6032:before {
3837
- content: "\eaf6";
3838
- }
3839
- .icon-uniE6042:before {
3840
- content: "\eaf7";
3841
- }
3842
- .icon-uniE6052:before {
3843
- content: "\eaf8";
3844
- }
3845
- .icon-uniE6062:before {
3846
- content: "\eaf9";
3847
- }
3848
- .icon-uniE6072:before {
3849
- content: "\eafa";
3850
- }
3851
- .icon-uniE6082:before {
3852
- content: "\eafb";
3853
- }
3854
- .icon-uniE6092:before {
3855
- content: "\eafc";
3856
- }
3857
- .icon-uniE60A2:before {
3858
- content: "\eafd";
3859
- }
3860
- .icon-uniE60B2:before {
3861
- content: "\eafe";
3862
- }
3863
- .icon-uniE60C2:before {
3864
- content: "\eaff";
3865
- }
3866
- .icon-uniE60D2:before {
3867
- content: "\eb00";
3868
- }
3869
- .icon-uniE60E2:before {
3870
- content: "\eb01";
3871
- }
3872
- .icon-uniE60F2:before {
3873
- content: "\eb02";
3874
- }
3875
- .icon-uniE6102:before {
3876
- content: "\eb03";
3877
- }
3878
- .icon-uniE6112:before {
3879
- content: "\eb04";
3880
- }
3881
- .icon-uniE6122:before {
3882
- content: "\eb05";
3883
- }
3884
- .icon-uniE6132:before {
3885
- content: "\eb06";
3886
- }
3887
- .icon-uniE6142:before {
3888
- content: "\eb07";
3889
- }
3890
- .icon-uniE6152:before {
3891
- content: "\eb08";
3892
- }
3893
- .icon-uniE6162:before {
3894
- content: "\eb09";
3895
- }
3896
- .icon-uniE6172:before {
3897
- content: "\eb0a";
3898
- }
3899
- .icon-uniE6182:before {
3900
- content: "\eb0b";
3901
- }
3902
- .icon-uniE6192:before {
3903
- content: "\eb0c";
3904
- }
3905
- .icon-uniE61A2:before {
3906
- content: "\eb0d";
3907
- }
3908
- .icon-uniE61B2:before {
3909
- content: "\eb0e";
3910
- }
3911
- .icon-uniE61C2:before {
3912
- content: "\eb0f";
3913
- }
3914
- .icon-uniE61D2:before {
3915
- content: "\eb10";
3916
- }
3917
- .icon-uniE61E2:before {
3918
- content: "\eb11";
3919
- }
3920
- .icon-uniE61F2:before {
3921
- content: "\eb12";
3922
- }
3923
- .icon-uniE6202:before {
3924
- content: "\eb13";
3925
- }
3926
- .icon-uniE6212:before {
3927
- content: "\eb14";
3928
- }
3929
- .icon-uniE6222:before {
3930
- content: "\eb15";
3931
- }
3932
- .icon-uniE6232:before {
3933
- content: "\eb16";
3934
- }
3935
- .icon-uniE6242:before {
3936
- content: "\eb17";
3937
- }
3938
- .icon-uniE6252:before {
3939
- content: "\eb18";
3940
- }
3941
- .icon-uniE6262:before {
3942
- content: "\eb19";
3943
- }
3944
- .icon-uniE6272:before {
3945
- content: "\eb1a";
3946
- }
3947
- .icon-uniE6282:before {
3948
- content: "\eb1b";
3949
- }
3950
- .icon-uniE6292:before {
3951
- content: "\eb1c";
3952
- }
3953
- .icon-uniE62A2:before {
3954
- content: "\eb1d";
3955
- }
3956
- .icon-uniE62B2:before {
3957
- content: "\eb1e";
3958
- }
3959
- .icon-uniE62C2:before {
3960
- content: "\eb1f";
3961
- }
3962
- .icon-uniE62D2:before {
3963
- content: "\eb20";
3964
- }
3965
- .icon-uniE62E2:before {
3966
- content: "\eb21";
3967
- }
3968
- .icon-uniE62F2:before {
3969
- content: "\eb22";
3970
- }
3971
- .icon-uniE6302:before {
3972
- content: "\eb23";
3973
- }
3974
- .icon-uniE6312:before {
3975
- content: "\eb24";
3976
- }
3977
- .icon-uniE6322:before {
3978
- content: "\eb25";
3979
- }
3980
- .icon-uniE6332:before {
3981
- content: "\eb26";
3982
- }
3983
- .icon-uniE6342:before {
3984
- content: "\eb27";
3985
- }
3986
- .icon-uniE6352:before {
3987
- content: "\eb28";
3988
- }
3989
- .icon-uniE6362:before {
3990
- content: "\eb29";
3991
- }
3992
- .icon-uniE6372:before {
3993
- content: "\eb2a";
3994
- }
3995
- .icon-uniE6382:before {
3996
- content: "\eb2b";
3997
- }
3998
- .icon-uniE6392:before {
3999
- content: "\eb2c";
4000
- }
4001
- .icon-uniE63A2:before {
4002
- content: "\eb2d";
4003
- }
4004
- .icon-uniE63B2:before {
4005
- content: "\eb2e";
4006
- }
4007
- .icon-uniE63C2:before {
4008
- content: "\eb2f";
4009
- }
4010
- .icon-uniE63D2:before {
4011
- content: "\eb30";
4012
- }
4013
- .icon-uniE63E2:before {
4014
- content: "\eb31";
4015
- }
4016
- .icon-uniE63F2:before {
4017
- content: "\eb32";
4018
- }
4019
- .icon-uniE6402:before {
4020
- content: "\eb33";
4021
- }
4022
- .icon-uniE6412:before {
4023
- content: "\eb34";
4024
- }
4025
- .icon-uniE6422:before {
4026
- content: "\eb35";
4027
- }
4028
- .icon-uniE6432:before {
4029
- content: "\eb36";
4030
- }
4031
- .icon-uniE6442:before {
4032
- content: "\eb37";
4033
- }
4034
- .icon-uniE6452:before {
4035
- content: "\eb38";
4036
- }
4037
- .icon-uniE6462:before {
4038
- content: "\eb39";
4039
- }
4040
- .icon-uniE6472:before {
4041
- content: "\eb3a";
4042
- }
4043
- .icon-uniE6482:before {
4044
- content: "\eb3b";
4045
- }
4046
- .icon-uniE6492:before {
4047
- content: "\eb3c";
4048
- }
4049
- .icon-uniE64A2:before {
4050
- content: "\eb3d";
4051
- }
4052
- .icon-uniE64B2:before {
4053
- content: "\eb3e";
4054
- }
4055
- .icon-uniE64C2:before {
4056
- content: "\eb3f";
4057
- }
4058
- .icon-uniE64D2:before {
4059
- content: "\eb40";
4060
- }
4061
- .icon-uniE64E2:before {
4062
- content: "\eb41";
4063
- }
4064
- .icon-uniE64F2:before {
4065
- content: "\eb42";
4066
- }
4067
- .icon-uniE6502:before {
4068
- content: "\eb43";
4069
- }
4070
- .icon-uniE6512:before {
4071
- content: "\eb44";
4072
- }
4073
- .icon-uniE6522:before {
4074
- content: "\eb45";
4075
- }
4076
- .icon-uniE6532:before {
4077
- content: "\eb46";
4078
- }
4079
- .icon-uniE6542:before {
4080
- content: "\eb47";
4081
- }
4082
- .icon-uniE6552:before {
4083
- content: "\eb48";
4084
- }
4085
- .icon-uniE6562:before {
4086
- content: "\eb49";
4087
- }
4088
- .icon-uniE6572:before {
4089
- content: "\eb4a";
4090
- }
4091
- .icon-uniE6582:before {
4092
- content: "\eb4b";
4093
- }
4094
- .icon-uniE6592:before {
4095
- content: "\eb4c";
4096
- }
4097
- .icon-uniE65A2:before {
4098
- content: "\eb4d";
4099
- }
4100
- .icon-uniE65B2:before {
4101
- content: "\eb4e";
4102
- }
4103
- .icon-uniE65C2:before {
4104
- content: "\eb4f";
4105
- }
4106
- .icon-uniE65D2:before {
4107
- content: "\eb50";
4108
- }
4109
- .icon-uniE65E2:before {
4110
- content: "\eb51";
4111
- }
4112
- .icon-uniE65F2:before {
4113
- content: "\eb52";
4114
- }
4115
- .icon-uniE6602:before {
4116
- content: "\eb53";
4117
- }
4118
- .icon-uniE6612:before {
4119
- content: "\eb54";
4120
- }
4121
- .icon-uniE6622:before {
4122
- content: "\eb55";
4123
- }
4124
- .icon-uniE6632:before {
4125
- content: "\eb56";
4126
- }
4127
- .icon-uniE6642:before {
4128
- content: "\eb57";
4129
- }
4130
- .icon-uniE6652:before {
4131
- content: "\eb58";
4132
- }
4133
- .icon-uniE6662:before {
4134
- content: "\eb59";
4135
- }
4136
- .icon-uniE6672:before {
4137
- content: "\eb5a";
4138
- }
4139
- .icon-uniE6682:before {
4140
- content: "\eb5b";
4141
- }
4142
- .icon-uniE6692:before {
4143
- content: "\eb5c";
4144
- }
4145
- .icon-uniE66A2:before {
4146
- content: "\eb5d";
4147
- }
4148
- .icon-uniE66B2:before {
4149
- content: "\eb5e";
4150
- }
4151
- .icon-uniE66C2:before {
4152
- content: "\eb5f";
4153
- }
4154
- .icon-uniE66D2:before {
4155
- content: "\eb60";
4156
- }
4157
- .icon-uniE66E2:before {
4158
- content: "\eb61";
4159
- }
4160
- .icon-uniE66F2:before {
4161
- content: "\eb62";
4162
- }
4163
- .icon-uniE6702:before {
4164
- content: "\eb63";
4165
- }
4166
- .icon-uniE6712:before {
4167
- content: "\eb64";
4168
- }
4169
- .icon-uniE6722:before {
4170
- content: "\eb65";
4171
- }
4172
- .icon-uniE6732:before {
4173
- content: "\eb66";
4174
- }
4175
- .icon-uniE6742:before {
4176
- content: "\eb67";
4177
- }
4178
- .icon-uniE6752:before {
4179
- content: "\eb68";
4180
- }
4181
- .icon-uniE6762:before {
4182
- content: "\eb69";
4183
- }
4184
- .icon-uniE6772:before {
4185
- content: "\eb6a";
4186
- }
4187
- .icon-uniE6782:before {
4188
- content: "\eb6b";
4189
- }
4190
- .icon-uniE6792:before {
4191
- content: "\eb6c";
4192
- }
4193
- .icon-uniE67A2:before {
4194
- content: "\eb6d";
4195
- }
4196
- .icon-uniE67B2:before {
4197
- content: "\eb6e";
4198
- }
4199
- .icon-uniE67C2:before {
4200
- content: "\eb6f";
4201
- }
4202
- .icon-uniE67D2:before {
4203
- content: "\eb70";
4204
- }
4205
- .icon-uniE67E2:before {
4206
- content: "\eb71";
4207
- }
4208
- .icon-uniE67F2:before {
4209
- content: "\eb72";
4210
- }
4211
- .icon-uniE6802:before {
4212
- content: "\eb73";
4213
- }
4214
- .icon-uniE6812:before {
4215
- content: "\eb74";
4216
- }
4217
- .icon-uniE6822:before {
4218
- content: "\eb75";
4219
- }
4220
- .icon-uniE6832:before {
4221
- content: "\eb76";
4222
- }
4223
- .icon-uniE6842:before {
4224
- content: "\eb77";
4225
- }
4226
- .icon-uniE6852:before {
4227
- content: "\eb78";
4228
- }
4229
- .icon-uniE6862:before {
4230
- content: "\eb79";
4231
- }
4232
- .icon-uniE6872:before {
4233
- content: "\eb7a";
4234
- }
4235
- .icon-uniE6882:before {
4236
- content: "\eb7b";
4237
- }
4238
- .icon-uniE6892:before {
4239
- content: "\eb7c";
4240
- }
4241
- .icon-uniE68A2:before {
4242
- content: "\eb7d";
4243
- }
4244
- .icon-uniE68B2:before {
4245
- content: "\eb7e";
4246
- }
4247
- .icon-uniE68C2:before {
4248
- content: "\eb7f";
4249
- }
4250
- .icon-uniE68D2:before {
4251
- content: "\eb80";
4252
- }
4253
- .icon-uniE68E2:before {
4254
- content: "\eb81";
4255
- }
4256
- .icon-uniE68F2:before {
4257
- content: "\eb82";
4258
- }
4259
- .icon-uniE6902:before {
4260
- content: "\eb83";
4261
- }
4262
- .icon-uniE6912:before {
4263
- content: "\eb84";
4264
- }
4265
- .icon-uniE6922:before {
4266
- content: "\eb85";
4267
- }
4268
- .icon-uniE6932:before {
4269
- content: "\eb86";
4270
- }
4271
- .icon-uniE6942:before {
4272
- content: "\eb87";
4273
- }
4274
- .icon-uniE6952:before {
4275
- content: "\eb88";
4276
- }
4277
- .icon-uniE6962:before {
4278
- content: "\eb89";
4279
- }
4280
- .icon-uniE6972:before {
4281
- content: "\eb8a";
4282
- }
4283
- .icon-uniE6982:before {
4284
- content: "\eb8b";
4285
- }
4286
- .icon-uniE6992:before {
4287
- content: "\eb8c";
4288
- }
4289
- .icon-uniE69A2:before {
4290
- content: "\eb8d";
4291
- }
4292
- .icon-uniE69B2:before {
4293
- content: "\eb8e";
4294
- }
4295
- .icon-uniE69C2:before {
4296
- content: "\eb8f";
4297
- }
4298
- .icon-uniE69D2:before {
4299
- content: "\eb90";
4300
- }
4301
- .icon-uniE69E2:before {
4302
- content: "\eb91";
4303
- }
4304
- .icon-uniE69F2:before {
4305
- content: "\eb92";
4306
- }
4307
- .icon-uniE6A02:before {
4308
- content: "\eb93";
4309
- }
4310
- .icon-uniE6A12:before {
4311
- content: "\eb94";
4312
- }
4313
- .icon-uniE6A22:before {
4314
- content: "\eb95";
4315
- }
4316
- .icon-uniE6A32:before {
4317
- content: "\eb96";
4318
- }
4319
- .icon-uniE6A42:before {
4320
- content: "\eb97";
4321
- }
4322
- .icon-uniE6A52:before {
4323
- content: "\eb98";
4324
- }
4325
- .icon-uniE6A62:before {
4326
- content: "\eb99";
4327
- }
4328
- .icon-uniE6A72:before {
4329
- content: "\eb9a";
4330
- }
4331
- .icon-uniE6A82:before {
4332
- content: "\eb9b";
4333
- }
4334
- .icon-uniE6A92:before {
4335
- content: "\eb9c";
4336
- }
4337
- .icon-uniE6AA2:before {
4338
- content: "\eb9d";
4339
- }
4340
- .icon-uniE6AB2:before {
4341
- content: "\eb9e";
4342
- }
4343
- .icon-uniE6AC2:before {
4344
- content: "\eb9f";
4345
- }
4346
- .icon-uniE6AD2:before {
4347
- content: "\eba0";
4348
- }
4349
- .icon-uniE6AE2:before {
4350
- content: "\eba1";
4351
- }
4352
- .icon-uniE6AF2:before {
4353
- content: "\eba2";
4354
- }
4355
- .icon-uniE6B02:before {
4356
- content: "\eba3";
4357
- }
4358
- .icon-uniE6B12:before {
4359
- content: "\eba4";
4360
- }
4361
- .icon-uniE6B22:before {
4362
- content: "\eba5";
4363
- }
4364
- .icon-uniE6B32:before {
4365
- content: "\eba6";
4366
- }
4367
- .icon-uniE6B42:before {
4368
- content: "\eba7";
4369
- }
4370
- .icon-uniE6B52:before {
4371
- content: "\eba8";
4372
- }
4373
- .icon-uniE6B62:before {
4374
- content: "\eba9";
4375
- }
4376
- .icon-uniE6B72:before {
4377
- content: "\ebaa";
4378
- }
4379
- .icon-uniE6B82:before {
4380
- content: "\ebab";
4381
- }
4382
- .icon-uniE6B92:before {
4383
- content: "\ebac";
4384
- }
4385
- .icon-uniE6BA2:before {
4386
- content: "\ebad";
4387
- }
4388
- .icon-uniE6BB2:before {
4389
- content: "\ebae";
4390
- }
4391
- .icon-uniE6BC2:before {
4392
- content: "\ebaf";
4393
- }
4394
- .icon-uniE6BD2:before {
4395
- content: "\ebb0";
4396
- }
4397
- .icon-uniE6BE2:before {
4398
- content: "\ebb1";
4399
- }
4400
- .icon-uniE6BF2:before {
4401
- content: "\ebb2";
4402
- }
4403
- .icon-uniE6C02:before {
4404
- content: "\ebb3";
4405
- }
4406
- .icon-uniE6C12:before {
4407
- content: "\ebb4";
4408
- }
4409
- .icon-uniE6C22:before {
4410
- content: "\ebb5";
4411
- }
4412
- .icon-uniE6C32:before {
4413
- content: "\ebb6";
4414
- }
4415
- .icon-uniE6C42:before {
4416
- content: "\ebb7";
4417
- }
4418
- .icon-uniE6C52:before {
4419
- content: "\ebb8";
4420
- }
4421
- .icon-uniE6C62:before {
4422
- content: "\ebb9";
4423
- }
4424
- .icon-uniE6C72:before {
4425
- content: "\ebba";
4426
- }
4427
- .icon-uniE6C82:before {
4428
- content: "\ebbb";
4429
- }
4430
- .icon-uniE6C92:before {
4431
- content: "\ebbc";
4432
- }
4433
- .icon-uniE6CA2:before {
4434
- content: "\ebbd";
4435
- }
4436
- .icon-uniE6CB2:before {
4437
- content: "\ebbe";
4438
- }
4439
- .icon-uniE6CC2:before {
4440
- content: "\ebbf";
4441
- }
4442
- .icon-uniE6CD2:before {
4443
- content: "\ebc0";
4444
- }
4445
- .icon-uniE6CE2:before {
4446
- content: "\ebc1";
4447
- }
4448
- .icon-uniE6CF2:before {
4449
- content: "\ebc2";
4450
- }
4451
- .icon-uniE6D02:before {
4452
- content: "\ebc3";
4453
- }
4454
- .icon-uniE6D12:before {
4455
- content: "\ebc4";
4456
- }
4457
- .icon-uniE6D22:before {
4458
- content: "\ebc5";
4459
- }
4460
- .icon-uniE6D32:before {
4461
- content: "\ebc6";
4462
- }
4463
- .icon-uniE6D42:before {
4464
- content: "\ebc7";
4465
- }
4466
- .icon-uniE6D52:before {
4467
- content: "\ebc8";
4468
- }
4469
- .icon-uniE6D62:before {
4470
- content: "\ebc9";
4471
- }
4472
- .icon-uniE6D72:before {
4473
- content: "\ebca";
4474
- }
4475
- .icon-uniE6D82:before {
4476
- content: "\ebcb";
4477
- }
4478
- .icon-uniE6D92:before {
4479
- content: "\ebcc";
4480
- }
4481
- .icon-uniE6DA2:before {
4482
- content: "\ebcd";
4483
- }
4484
- .icon-uniE6DB2:before {
4485
- content: "\ebce";
4486
- }
4487
- .icon-uniE6DC2:before {
4488
- content: "\ebcf";
4489
- }
4490
- .icon-uniE6DD2:before {
4491
- content: "\ebd0";
4492
- }
4493
- .icon-uniE6DE2:before {
4494
- content: "\ebd1";
4495
- }
4496
- .icon-uniE6DF2:before {
4497
- content: "\ebd2";
4498
- }
4499
- .icon-uniE6E02:before {
4500
- content: "\ebd3";
4501
- }
4502
- .icon-uniE6E12:before {
4503
- content: "\ebd4";
4504
- }
4505
- .icon-uniE6E22:before {
4506
- content: "\ebd5";
4507
- }
4508
- .icon-uniE6E32:before {
4509
- content: "\ebd6";
4510
- }
4511
- .icon-uniE6E42:before {
4512
- content: "\ebd7";
4513
- }
4514
- .icon-uniE6E52:before {
4515
- content: "\ebd8";
4516
- }
4517
- .icon-uniE6E62:before {
4518
- content: "\ebd9";
4519
- }
4520
- .icon-uniE6E72:before {
4521
- content: "\ebda";
4522
- }
4523
- .icon-uniE6E82:before {
4524
- content: "\ebdb";
4525
- }
4526
- .icon-uniE6E92:before {
4527
- content: "\ebdc";
4528
- }
4529
- .icon-uniE6EA2:before {
4530
- content: "\ebdd";
4531
- }
4532
- .icon-uniE6EB2:before {
4533
- content: "\ebde";
4534
- }
4535
- .icon-uniE6EC2:before {
4536
- content: "\ebdf";
4537
- }
4538
- .icon-uniE6ED2:before {
4539
- content: "\ebe0";
4540
- }
4541
- .icon-uniE6EE2:before {
4542
- content: "\ebe1";
4543
- }
4544
- .icon-uniE6EF2:before {
4545
- content: "\ebe2";
4546
- }
4547
- .icon-uniE6F02:before {
4548
- content: "\ebe3";
4549
- }
4550
- .icon-uniE6F12:before {
4551
- content: "\ebe4";
4552
- }
4553
- .icon-uniE6F22:before {
4554
- content: "\ebe5";
4555
- }
4556
- .icon-uniE6F32:before {
4557
- content: "\ebe6";
4558
- }
4559
- .icon-uniE6F42:before {
4560
- content: "\ebe7";
4561
- }
4562
- .icon-uniE6F52:before {
4563
- content: "\ebe8";
4564
- }
4565
- .icon-uniE6F62:before {
4566
- content: "\ebe9";
4567
- }
4568
- .icon-uniE6F72:before {
4569
- content: "\ebea";
4570
- }
4571
- .icon-uniE6F82:before {
4572
- content: "\ebeb";
4573
- }
4574
- .icon-uniE6F92:before {
4575
- content: "\ebec";
4576
- }
4577
- .icon-uniE6FA2:before {
4578
- content: "\ebed";
4579
- }
4580
- .icon-uniE6FB2:before {
4581
- content: "\ebee";
4582
- }
4583
- .icon-uniE6FC2:before {
4584
- content: "\ebef";
4585
- }
4586
- .icon-uniE6FD2:before {
4587
- content: "\ebf0";
4588
- }
4589
- .icon-uniE6FE2:before {
4590
- content: "\ebf1";
4591
- }
4592
- .icon-uniE6FF2:before {
4593
- content: "\ebf2";
4594
- }
4595
- .icon-uniE7002:before {
4596
- content: "\ebf3";
4597
- }
4598
- .icon-uniE7012:before {
4599
- content: "\ebf4";
4600
- }
4601
- .icon-uniE7022:before {
4602
- content: "\ebf5";
4603
- }
4604
- .icon-uniE7032:before {
4605
- content: "\ebf6";
4606
- }
4607
- .icon-uniE7042:before {
4608
- content: "\ebf7";
4609
- }
4610
- .icon-uniE7052:before {
4611
- content: "\ebf8";
4612
- }
4613
- .icon-uniE7062:before {
4614
- content: "\ebf9";
4615
- }
4616
- .icon-uniE7072:before {
4617
- content: "\ebfa";
4618
- }
4619
- .icon-uniE7082:before {
4620
- content: "\ebfb";
4621
- }
4622
- .icon-uniE7092:before {
4623
- content: "\ebfc";
4624
- }
4625
- .icon-uniE70A2:before {
4626
- content: "\ebfd";
4627
- }
4628
- .icon-uniE70B2:before {
4629
- content: "\ebfe";
4630
- }
4631
- .icon-uniE70C2:before {
4632
- content: "\ebff";
4633
- }
4634
- .icon-uniE70D2:before {
4635
- content: "\ec00";
4636
- }
4637
- .icon-uniE70E2:before {
4638
- content: "\ec01";
4639
- }
4640
- .icon-uniE70F2:before {
4641
- content: "\ec02";
4642
- }
4643
- .icon-uniE7102:before {
4644
- content: "\ec03";
4645
- }
4646
- .icon-uniE7112:before {
4647
- content: "\ec04";
4648
- }
4649
- .icon-uniE7122:before {
4650
- content: "\ec05";
4651
- }
4652
- .icon-uniE7132:before {
4653
- content: "\ec06";
4654
- }
4655
- .icon-uniE7142:before {
4656
- content: "\ec07";
4657
- }
4658
- .icon-uniE7152:before {
4659
- content: "\ec08";
4660
- }
4661
- .icon-uniE7162:before {
4662
- content: "\ec09";
4663
- }
4664
- .icon-uniE7172:before {
4665
- content: "\ec0a";
4666
- }
4667
- .icon-uniE7182:before {
4668
- content: "\ec0b";
4669
- }
4670
- .icon-uniE7192:before {
4671
- content: "\ec0c";
4672
- }
4673
- .icon-uniE71A2:before {
4674
- content: "\ec0d";
4675
- }
4676
- .icon-uniE71B2:before {
4677
- content: "\ec0e";
4678
- }
4679
- .icon-uniE71C2:before {
4680
- content: "\ec0f";
4681
- }
4682
- .icon-uniE71D2:before {
4683
- content: "\ec10";
4684
- }
4685
- .icon-uniE71E2:before {
4686
- content: "\ec11";
4687
- }
4688
- .icon-uniE71F2:before {
4689
- content: "\ec12";
4690
- }
4691
- .icon-uniE7202:before {
4692
- content: "\ec13";
4693
- }
4694
- .icon-uniE7212:before {
4695
- content: "\ec14";
4696
- }
4697
- .icon-uniE7222:before {
4698
- content: "\ec15";
4699
- }
4700
- .icon-uniE7232:before {
4701
- content: "\ec16";
4702
- }
4703
- .icon-uniE7242:before {
4704
- content: "\ec17";
4705
- }
4706
- .icon-uniE7252:before {
4707
- content: "\ec18";
4708
- }
4709
- .icon-uniE7262:before {
4710
- content: "\ec19";
4711
- }
4712
- .icon-uniE7272:before {
4713
- content: "\ec1a";
4714
- }
4715
- .icon-uniE7282:before {
4716
- content: "\ec1b";
4717
- }
4718
- .icon-uniE7292:before {
4719
- content: "\ec1c";
4720
- }
4721
- .icon-uniE72A2:before {
4722
- content: "\ec1d";
4723
- }
4724
- .icon-uniE72B2:before {
4725
- content: "\ec1e";
4726
- }
4727
- .icon-uniE72C2:before {
4728
- content: "\ec1f";
4729
- }
4730
- .icon-uniE72D2:before {
4731
- content: "\ec20";
4732
- }
4733
- .icon-uniE72E2:before {
4734
- content: "\ec21";
4735
- }
4736
- .icon-uniE72F2:before {
4737
- content: "\ec22";
4738
- }
4739
- .icon-uniE7302:before {
4740
- content: "\ec23";
4741
- }
4742
- .icon-uniE7312:before {
4743
- content: "\ec24";
4744
- }
4745
- .icon-uniE7322:before {
4746
- content: "\ec25";
4747
- }
4748
- .icon-uniE7332:before {
4749
- content: "\ec26";
4750
- }
4751
- .icon-uniE7342:before {
4752
- content: "\ec27";
4753
- }
4754
- .icon-uniE7352:before {
4755
- content: "\ec28";
4756
- }
4757
- .icon-uniE7362:before {
4758
- content: "\ec29";
4759
- }
4760
- .icon-uniE7372:before {
4761
- content: "\ec2a";
4762
- }
4763
- .icon-uniE7382:before {
4764
- content: "\ec2b";
4765
- }
4766
- .icon-uniE7392:before {
4767
- content: "\ec2c";
4768
- }
4769
- .icon-uniE73A2:before {
4770
- content: "\ec2d";
4771
- }
4772
- .icon-uniE73B2:before {
4773
- content: "\ec2e";
4774
- }
4775
- .icon-uniE73C2:before {
4776
- content: "\ec2f";
4777
- }
4778
- .icon-uniE73D2:before {
4779
- content: "\ec30";
4780
- }
4781
- .icon-uniE73E2:before {
4782
- content: "\ec31";
4783
- }
4784
- .icon-uniE73F2:before {
4785
- content: "\ec32";
4786
- }
4787
- .icon-uniE7402:before {
4788
- content: "\ec33";
4789
- }
4790
- .icon-uniE7412:before {
4791
- content: "\ec34";
4792
- }
4793
- .icon-uniE7422:before {
4794
- content: "\ec35";
4795
- }
4796
- .icon-uniE7432:before {
4797
- content: "\ec36";
4798
- }
4799
- .icon-uniE7442:before {
4800
- content: "\ec37";
4801
- }
4802
- .icon-uniE7452:before {
4803
- content: "\ec38";
4804
- }
4805
- .icon-uniE7462:before {
4806
- content: "\ec39";
4807
- }
4808
- .icon-uniE7472:before {
4809
- content: "\ec3a";
4810
- }
4811
- .icon-uniE7482:before {
4812
- content: "\ec3b";
4813
- }
4814
- .icon-uniE7492:before {
4815
- content: "\ec3c";
4816
- }
4817
- .icon-uniE74A2:before {
4818
- content: "\ec3d";
4819
- }
4820
- .icon-uniE74B2:before {
4821
- content: "\ec3e";
4822
- }
4823
- .icon-uniE74C2:before {
4824
- content: "\ec3f";
4825
- }
4826
- .icon-uniE74D2:before {
4827
- content: "\ec40";
4828
- }
4829
- .icon-uniE74E2:before {
4830
- content: "\ec41";
4831
- }
4832
- .icon-uniE74F2:before {
4833
- content: "\ec42";
4834
- }
4835
- .icon-uniE7502:before {
4836
- content: "\ec43";
4837
- }
4838
- .icon-uniE7512:before {
4839
- content: "\ec44";
4840
- }
4841
- .icon-uniE7522:before {
4842
- content: "\ec45";
4843
- }
4844
- .icon-uniE7532:before {
4845
- content: "\ec46";
4846
- }
4847
- .icon-uniE7542:before {
4848
- content: "\ec47";
4849
- }
4850
- .icon-uniE7552:before {
4851
- content: "\ec48";
4852
- }
4853
- .icon-uniE7562:before {
4854
- content: "\ec49";
4855
- }
4856
- .icon-uniE7572:before {
4857
- content: "\ec4a";
4858
- }
4859
- .icon-uniE7582:before {
4860
- content: "\ec4b";
4861
- }
4862
- .icon-uniE7592:before {
4863
- content: "\ec4c";
4864
- }
4865
- .icon-uniE75A2:before {
4866
- content: "\ec4d";
4867
- }
4868
- .icon-uniE75B2:before {
4869
- content: "\ec4e";
4870
- }
4871
- .icon-uniE75C2:before {
4872
- content: "\ec4f";
4873
- }
4874
- .icon-uniE75D2:before {
4875
- content: "\ec50";
4876
- }
4877
- .icon-uniE75E2:before {
4878
- content: "\ec51";
4879
- }
4880
- .icon-uniE75F2:before {
4881
- content: "\ec52";
4882
- }
4883
- .icon-uniE7602:before {
4884
- content: "\ec53";
4885
- }
4886
- .icon-uniE7612:before {
4887
- content: "\ec54";
4888
- }
4889
- .icon-uniE7622:before {
4890
- content: "\ec55";
4891
- }
4892
- .icon-uniE7632:before {
4893
- content: "\ec56";
4894
- }
4895
- .icon-uniE7642:before {
4896
- content: "\ec57";
4897
- }
4898
- .icon-uniE7652:before {
4899
- content: "\ec58";
4900
- }
4901
- .icon-uniE7662:before {
4902
- content: "\ec59";
4903
- }
4904
- .icon-uniE7672:before {
4905
- content: "\ec5a";
4906
- }
4907
- .icon-uniE7682:before {
4908
- content: "\ec5b";
4909
- }
4910
- .icon-uniE7692:before {
4911
- content: "\ec5c";
4912
- }
4913
- .icon-uniE76A2:before {
4914
- content: "\ec5d";
4915
- }
4916
- .icon-uniE76B2:before {
4917
- content: "\ec5e";
4918
- }
4919
- .icon-uniE76C2:before {
4920
- content: "\ec5f";
4921
- }
4922
- .icon-uniE76D2:before {
4923
- content: "\ec60";
4924
- }
4925
- .icon-uniE76E2:before {
4926
- content: "\ec61";
4927
- }
4928
- .icon-uniE76F2:before {
4929
- content: "\ec62";
4930
- }
4931
- .icon-uniE7702:before {
4932
- content: "\ec63";
4933
- }
4934
- .icon-uniE7712:before {
4935
- content: "\ec64";
4936
- }
4937
- .icon-uniE7722:before {
4938
- content: "\ec65";
4939
- }
4940
- .icon-uniE7732:before {
4941
- content: "\ec66";
4942
- }
4943
- .icon-uniE7742:before {
4944
- content: "\ec67";
4945
- }
4946
- .icon-uniE7752:before {
4947
- content: "\ec68";
4948
- }
4949
- .icon-uniE7762:before {
4950
- content: "\ec69";
4951
- }
4952
- .icon-uniE7772:before {
4953
- content: "\ec6a";
4954
- }
4955
- .icon-uniE7782:before {
4956
- content: "\ec6b";
4957
- }
4958
- .icon-uniE7792:before {
4959
- content: "\ec6c";
4960
- }
4961
- .icon-uniE77A2:before {
4962
- content: "\ec6d";
4963
- }
4964
- .icon-uniE77B2:before {
4965
- content: "\ec6e";
4966
- }
4967
- .icon-uniE77C2:before {
4968
- content: "\ec6f";
4969
- }
4970
- .icon-uniE77D2:before {
4971
- content: "\ec70";
4972
- }
4973
- .icon-uniE77E2:before {
4974
- content: "\ec71";
4975
- }
4976
- .icon-uniE77F2:before {
4977
- content: "\ec72";
4978
- }
4979
- .icon-uniE7802:before {
4980
- content: "\ec73";
4981
- }
4982
- .icon-uniE7812:before {
4983
- content: "\ec74";
4984
- }
4985
- .icon-uniE7822:before {
4986
- content: "\ec75";
4987
- }
4988
- .icon-uniE7832:before {
4989
- content: "\ec76";
4990
- }
4991
- .icon-uniE7842:before {
4992
- content: "\ec77";
4993
- }
4994
- .icon-uniE7852:before {
4995
- content: "\ec78";
4996
- }
4997
- .icon-uniE7862:before {
4998
- content: "\ec79";
4999
- }
5000
- .icon-uniE7872:before {
5001
- content: "\ec7a";
5002
- }
5003
- .icon-uniE7882:before {
5004
- content: "\ec7b";
5005
- }
5006
- .icon-uniE7892:before {
5007
- content: "\ec7c";
5008
- }
5009
- .icon-uniE78A2:before {
5010
- content: "\ec7d";
5011
- }
5012
- .icon-uniE78B2:before {
5013
- content: "\ec7e";
5014
- }
5015
- .icon-uniE78C2:before {
5016
- content: "\ec7f";
5017
- }
5018
- .icon-uniE78D2:before {
5019
- content: "\ec80";
5020
- }
5021
- .icon-uniE78E2:before {
5022
- content: "\ec81";
5023
- }
5024
- .icon-uniE78F2:before {
5025
- content: "\ec82";
5026
- }
5027
- .icon-uniE7902:before {
5028
- content: "\ec83";
5029
- }
5030
- .icon-uniE7912:before {
5031
- content: "\ec84";
5032
- }
5033
- .icon-uniE7922:before {
5034
- content: "\ec85";
5035
- }
5036
- .icon-uniE7932:before {
5037
- content: "\ec86";
5038
- }
5039
- .icon-uniE7942:before {
5040
- content: "\ec87";
5041
- }
5042
- .icon-uniE7952:before {
5043
- content: "\ec88";
5044
- }
5045
- .icon-uniE7962:before {
5046
- content: "\ec89";
5047
- }
5048
- .icon-uniE7972:before {
5049
- content: "\ec8a";
5050
- }
5051
- .icon-uniE7982:before {
5052
- content: "\ec8b";
5053
- }
5054
- .icon-uniE7992:before {
5055
- content: "\ec8c";
5056
- }
5057
- .icon-uniE79A2:before {
5058
- content: "\ec8d";
5059
- }
5060
- .icon-uniE79B2:before {
5061
- content: "\ec8e";
5062
- }
5063
- .icon-uniE79C2:before {
5064
- content: "\ec8f";
5065
- }
5066
- .icon-uniE79D2:before {
5067
- content: "\ec90";
5068
- }
5069
- .icon-uniE79E2:before {
5070
- content: "\ec91";
5071
- }
5072
- .icon-uniE79F2:before {
5073
- content: "\ec92";
5074
- }
5075
- .icon-uniE7A02:before {
5076
- content: "\ec93";
5077
- }
5078
- .icon-uniE7A12:before {
5079
- content: "\ec94";
5080
- }
5081
- .icon-uniE7A22:before {
5082
- content: "\ec95";
5083
- }
5084
- .icon-uniE7A32:before {
5085
- content: "\ec96";
5086
- }
5087
- .icon-uniE7A42:before {
5088
- content: "\ec97";
5089
- }
5090
- .icon-uniE7A52:before {
5091
- content: "\ec98";
5092
- }
5093
- .icon-uniE7A62:before {
5094
- content: "\ec99";
5095
- }
5096
- .icon-uniE7A72:before {
5097
- content: "\ec9a";
5098
- }
5099
- .icon-uniE7A82:before {
5100
- content: "\ec9b";
5101
- }
5102
- .icon-uniE7A92:before {
5103
- content: "\ec9c";
5104
- }
5105
- .icon-uniE7AA2:before {
5106
- content: "\ec9d";
5107
- }
5108
- .icon-uniE7AB2:before {
5109
- content: "\ec9e";
5110
- }
5111
- .icon-uniE7AC2:before {
5112
- content: "\ec9f";
5113
- }
5114
- .icon-uniE7AD2:before {
5115
- content: "\eca0";
5116
- }
5117
- .icon-uniE7AE2:before {
5118
- content: "\eca1";
5119
- }
5120
- .icon-uniE7AF2:before {
5121
- content: "\eca2";
5122
- }
5123
- .icon-uniE7B02:before {
5124
- content: "\eca3";
5125
- }
5126
- .icon-uniE7B12:before {
5127
- content: "\eca4";
5128
- }
5129
- .icon-uniE7B22:before {
5130
- content: "\eca5";
5131
- }
5132
- .icon-uniE7B32:before {
5133
- content: "\eca6";
5134
- }
5135
- .icon-uniE7B42:before {
5136
- content: "\eca7";
5137
- }
5138
- .icon-uniE7B52:before {
5139
- content: "\eca8";
5140
- }
5141
- .icon-uniE7B62:before {
5142
- content: "\eca9";
5143
- }
5144
- .icon-uniE7B72:before {
5145
- content: "\ecaa";
5146
- }
5147
- .icon-uniE7B82:before {
5148
- content: "\ecab";
5149
- }
5150
- .icon-uniE7B92:before {
5151
- content: "\ecac";
5152
- }
5153
- .icon-uniE7BA2:before {
5154
- content: "\ecad";
5155
- }
5156
- .icon-uniE7BB2:before {
5157
- content: "\ecae";
5158
- }
5159
- .icon-uniE7BC2:before {
5160
- content: "\ecaf";
5161
- }
5162
- .icon-uniE7BD2:before {
5163
- content: "\ecb0";
5164
- }
5165
- .icon-uniE7BE2:before {
5166
- content: "\ecb1";
5167
- }
5168
- .icon-uniE7BF2:before {
5169
- content: "\ecb2";
5170
- }
5171
- .icon-uniE7C02:before {
5172
- content: "\ecb3";
5173
- }
5174
- .icon-uniE7C12:before {
5175
- content: "\ecb4";
5176
- }
5177
- .icon-uniE7C22:before {
5178
- content: "\ecb5";
5179
- }
5180
- .icon-streetcar:before {
5181
- content: "\ecb6";
5182
- }
5183
- .icon-skyline:before {
5184
- content: "\ecb7";
5185
- }
5186
- .icon-memorial-hall:before {
5187
- content: "\ecb8";
5188
- }
5189
- .icon-calendar6:before {
5190
- content: "\ecb9";
5191
- }
5192
- .icon-bed3:before {
5193
- content: "\ecba";
5194
- }