-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1954 lines (1951 loc) · 113 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title></title>
<style>
* { margin: 0; padding: 0; font-weight: normal; font-size: 1em; }
html { background: #e8e8e8; }
body { font-family: sans-serif; font-size: 9pt; }
.pack {
max-width: 900px; margin: 30px auto; padding: 20px;
background: white; border-radius: 2px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px rgba(0, 0, 0, 0.1); }
.icon {
margin: 0; height: 40px; line-height: 40px; width: 220px; display: inline-block; color: #999;
position: relative;
font-style: normal; }
.icon:before {
width: 40px; text-align: center;
margin-right: 4px; color: #444; }
.pack h3 {
font-size: 12pt; margin: -20px -20px 20px -20px; padding: 20px; border-bottom: solid 1px #ddd; color: #888; }
.pack h3 a {
color: #888; text-decoration: none; }
.pack h3 a:hover {
color: #222; }
</style>
<!-- START CSS -->
<style type='text/css'>
.el-briefcase:before, .el-bullhorn:before, .el-calendar:before, .el-calendar-sign:before, .el-cog:before, .el-cog-alt:before, .el-cogs:before, .el-comment:before, .el-error:before, .el-error-alt:before, .el-exclamation-sign:before, .el-eye-close:before, .el-flag-alt:before, .el-flickr:before, .el-folder:before, .el-folder-close:before, .el-globe-alt:before, .el-googleplus:before, .el-graph:before, .el-graph-alt:before, .el-idea-alt:before, .el-inbox:before, .el-inbox-alt:before, .el-inbox-box:before, .el-book:before, .el-bookmark:before, .el-bookmark-empty:before, .el-braille:before, .el-circle-arrow-right:before, .el-circle-arrow-up:before, .el-cloud:before, .el-cloud-alt:before, .el-edit:before, .el-eject:before, .el-envelope:before, .el-envelope-alt:before, .el-film:before, .el-filter:before, .el-fire:before, .el-flag:before, .el-github-text:before, .el-glass:before, .el-glasses:before, .el-globe:before, .el-heart-empty:before, .el-home:before, .el-home-alt:before, .el-idea:before, .el-address-book:before, .el-address-book-alt:before, .el-adjust:before, .el-adult:before, .el-align-center:before, .el-align-justify:before, .el-align-left:before, .el-align-right:before, .el-arrow-down:before, .el-arrow-left:before, .el-barcode:before, .el-behance:before, .el-bell:before, .el-blind:before, .el-blogger:before, .el-bold:before, .el-chevron-left:before, .el-chevron-right:before, .el-chevron-up:before, .el-child:before, .el-circle-arrow-down:before, .el-circle-arrow-left:before, .el-delicious:before, .el-deviantart:before, .el-digg:before, .el-download:before, .el-download-alt:before, .el-dribble:before, .el-file:before, .el-file-alt:before, .el-file-edit:before, .el-file-edit-alt:before, .el-file-new:before, .el-file-new-alt:before, .el-foursquare:before, .el-friendfeed:before, .el-friendfeed-rect:before, .el-fullscreen:before, .el-gift:before, .el-github:before, .el-hand-up:before, .el-hdd:before, .el-headphones:before, .el-hearing-impaired:before, .el-heart:before, .el-heart-alt:before, .el-arrow-right:before, .el-arrow-up:before, .el-asl:before, .el-asterisk:before, .el-backward:before, .el-ban-circle:before, .el-camera:before, .el-cc:before, .el-certificate:before, .el-check:before, .el-check-empty:before, .el-chevron-down:before, .el-comment-alt:before, .el-compass:before, .el-compass-alt:before, .el-credit-card:before, .el-css:before, .el-dashboard:before, .el-eye-open:before, .el-facebook:before, .el-facetime-video:before, .el-fast-backward:before, .el-fast-forward:before, .el-female:before, .el-folder-open:before, .el-folder-sign:before, .el-font:before, .el-fontsize:before, .el-forward:before, .el-forward-alt:before, .el-group:before, .el-group-alt:before, .el-guidedog:before, .el-hand-down:before, .el-hand-left:before, .el-hand-right:before, .el-indent-left:before, .el-indent-right:before, .el-info-sign:before, .el-instagram:before, .el-iphone-home:before, .el-italic:before, .el-key:before, .el-laptop:before, .el-laptop-alt:before, .el-leaf:before, .el-linkedin:before, .el-list:before, .el-list-alt:before, .el-lock:before, .el-lock-alt:before, .el-magnet:before, .el-male:before, .el-map-marker:before, .el-map-marker-alt:before, .el-mic:before, .el-mic-alt:before, .el-minus:before, .el-minus-sign:before, .el-move:before, .el-music:before, .el-network:before, .el-off:before, .el-ok:before, .el-ok-circle:before, .el-ok-sign:before, .el-paper-clip:before, .el-paper-clip-alt:before, .el-path:before, .el-pause:before, .el-pause-alt:before, .el-pencil:before, .el-pencil-alt:before, .el-person:before, .el-phone:before, .el-phone-alt:before, .el-photo:before, .el-photo-alt:before, .el-picasa:before, .el-picture:before, .el-pinterest:before, .el-plane:before, .el-play:before, .el-play-alt:before, .el-play-circle:before, .el-plus:before, .el-plus-sign:before, .el-print:before, .el-qrcode:before, .el-question:before, .el-question-sign:before, .el-quotes:before, .el-quotes-alt:before, .el-random:before, .el-record:before, .el-reddit:before, .el-refresh:before, .el-remove:before, .el-remove-circle:before, .el-remove-sign:before, .el-repeat:before, .el-repeat-alt:before, .el-resize-full:before, .el-resize-horizontal:before, .el-resize-small:before, .el-resize-vertical:before, .el-retweet:before, .el-reverse-alt:before, .el-road:before, .el-rss:before, .el-screen:before, .el-screen-alt:before, .el-screenshot:before, .el-search:before, .el-search-alt:before, .el-share:before, .el-share-alt:before, .el-shopping-cart:before, .el-shopping-cart-sign:before, .el-signal:before, .el-skype:before, .el-slideshare:before, .el-smiley:before, .el-smiley-alt:before, .el-speaker:before, .el-stackoverflow:before, .el-star:before, .el-star-alt:before, .el-star-empty:before, .el-step-backward:before, .el-step-forward:before, .el-stop:before, .el-stop-alt:before, .el-stumbleupon:before, .el-tag:before, .el-tags:before, .el-tasks:before, .el-text-height:before, .el-text-width:before, .el-th:before, .el-th-large:before, .el-th-list:before, .el-thumbs-down:before, .el-thumbs-up:before, .el-time:before, .el-time-alt:before, .el-tint:before, .el-torso:before, .el-trash:before, .el-trash-alt:before, .el-tumblr:before, .el-twitter:before, .el-universal-access:before, .el-unlock:before, .el-unlock-alt:before, .el-upload:before, .el-user:before, .el-video:before, .el-video-alt:before, .el-video-chat:before, .el-view-mode:before, .el-vimeo:before, .el-volume-down:before, .el-volume-off:before, .el-volume-up:before, .el-w3c:before, .el-warning-sign:before, .el-website:before, .el-website-alt:before, .el-wheelchair:before, .el-wordpress:before, .el-wrench:before, .el-wrench-alt:before, .el-youtube:before, .el-zoom-in:before, .el-zoom-out:before, .el-vkontakte:before { line-height: 1em; font-family: Elusive-Icons; font-weight: normal; font-style: normal; display: inline-block; text-decoration: none; vertical-align: middle; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; }
.el-briefcase:before { content: "\e10d"; }
.el-bullhorn:before { content: "\e10c"; }
.el-calendar:before { content: "\e10b"; }
.el-calendar-sign:before { content: "\e10a"; }
.el-cog:before { content: "\e109"; }
.el-cog-alt:before { content: "\e108"; }
.el-cogs:before { content: "\e107"; }
.el-comment:before { content: "\e106"; }
.el-error:before { content: "\e105"; }
.el-error-alt:before { content: "\e104"; }
.el-exclamation-sign:before { content: "\e103"; }
.el-eye-close:before { content: "\e102"; }
.el-flag-alt:before { content: "\e101"; }
.el-flickr:before { content: "\e100"; }
.el-folder:before { content: "\e0ff"; }
.el-folder-close:before { content: "\e0fe"; }
.el-globe-alt:before { content: "\e0fd"; }
.el-googleplus:before { content: "\e0fc"; }
.el-graph:before { content: "\e0fb"; }
.el-graph-alt:before { content: "\e0fa"; }
.el-idea-alt:before { content: "\e0f9"; }
.el-inbox:before { content: "\e0f8"; }
.el-inbox-alt:before { content: "\e0f7"; }
.el-inbox-box:before { content: "\e0f6"; }
.el-book:before { content: "\e0f5"; }
.el-bookmark:before { content: "\e0f4"; }
.el-bookmark-empty:before { content: "\e0f3"; }
.el-braille:before { content: "\e0f2"; }
.el-circle-arrow-right:before { content: "\e0f1"; }
.el-circle-arrow-up:before { content: "\e0f0"; }
.el-cloud:before { content: "\e0ef"; }
.el-cloud-alt:before { content: "\e0ee"; }
.el-edit:before { content: "\e0ed"; }
.el-eject:before { content: "\e0ec"; }
.el-envelope:before { content: "\e0eb"; }
.el-envelope-alt:before { content: "\e0ea"; }
.el-film:before { content: "\e0e9"; }
.el-filter:before { content: "\e0e8"; }
.el-fire:before { content: "\e0e7"; }
.el-flag:before { content: "\e0e6"; }
.el-github-text:before { content: "\e0e5"; }
.el-glass:before { content: "\e0e4"; }
.el-glasses:before { content: "\e0e3"; }
.el-globe:before { content: "\e0e2"; }
.el-heart-empty:before { content: "\e0e1"; }
.el-home:before { content: "\e0e0"; }
.el-home-alt:before { content: "\e0df"; }
.el-idea:before { content: "\e0de"; }
.el-address-book:before { content: "\e0dd"; }
.el-address-book-alt:before { content: "\e0dc"; }
.el-adjust:before { content: "\e0db"; }
.el-adult:before { content: "\e0da"; }
.el-align-center:before { content: "\e0d9"; }
.el-align-justify:before { content: "\e0d8"; }
.el-align-left:before { content: "\e0d7"; }
.el-align-right:before { content: "\e0d6"; }
.el-arrow-down:before { content: "\e0d5"; }
.el-arrow-left:before { content: "\e0d4"; }
.el-barcode:before { content: "\e0d3"; }
.el-behance:before { content: "\e0d2"; }
.el-bell:before { content: "\e0d1"; }
.el-blind:before { content: "\e0d0"; }
.el-blogger:before { content: "\e0cf"; }
.el-bold:before { content: "\e0ce"; }
.el-chevron-left:before { content: "\e0cd"; }
.el-chevron-right:before { content: "\e0cc"; }
.el-chevron-up:before { content: "\e0cb"; }
.el-child:before { content: "\e0ca"; }
.el-circle-arrow-down:before { content: "\e0c9"; }
.el-circle-arrow-left:before { content: "\e0c8"; }
.el-delicious:before { content: "\e0c7"; }
.el-deviantart:before { content: "\e0c6"; }
.el-digg:before { content: "\e0c5"; }
.el-download:before { content: "\e0c4"; }
.el-download-alt:before { content: "\e0c3"; }
.el-dribble:before { content: "\e0c2"; }
.el-file:before { content: "\e0c1"; }
.el-file-alt:before { content: "\e0c0"; }
.el-file-edit:before { content: "\e0bf"; }
.el-file-edit-alt:before { content: "\e0be"; }
.el-file-new:before { content: "\e0bd"; }
.el-file-new-alt:before { content: "\e0bc"; }
.el-foursquare:before { content: "\e0bb"; }
.el-friendfeed:before { content: "\e0ba"; }
.el-friendfeed-rect:before { content: "\e0b9"; }
.el-fullscreen:before { content: "\e0b8"; }
.el-gift:before { content: "\e0b7"; }
.el-github:before { content: "\e0b6"; }
.el-hand-up:before { content: "\e0b5"; }
.el-hdd:before { content: "\e0b4"; }
.el-headphones:before { content: "\e0b3"; }
.el-hearing-impaired:before { content: "\e0b2"; }
.el-heart:before { content: "\e0b1"; }
.el-heart-alt:before { content: "\e0b0"; }
.el-arrow-right:before { content: "\e0af"; }
.el-arrow-up:before { content: "\e0ae"; }
.el-asl:before { content: "\e0ad"; }
.el-asterisk:before { content: "\e0ac"; }
.el-backward:before { content: "\e0ab"; }
.el-ban-circle:before { content: "\e0aa"; }
.el-camera:before { content: "\e0a9"; }
.el-cc:before { content: "\e0a8"; }
.el-certificate:before { content: "\e0a7"; }
.el-check:before { content: "\e0a6"; }
.el-check-empty:before { content: "\e0a5"; }
.el-chevron-down:before { content: "\e0a4"; }
.el-comment-alt:before { content: "\e0a3"; }
.el-compass:before { content: "\e0a2"; }
.el-compass-alt:before { content: "\e0a1"; }
.el-credit-card:before { content: "\e0a0"; }
.el-css:before { content: "\e09f"; }
.el-dashboard:before { content: "\e09e"; }
.el-eye-open:before { content: "\e09d"; }
.el-facebook:before { content: "\e09c"; }
.el-facetime-video:before { content: "\e09b"; }
.el-fast-backward:before { content: "\e09a"; }
.el-fast-forward:before { content: "\e099"; }
.el-female:before { content: "\e098"; }
.el-folder-open:before { content: "\e097"; }
.el-folder-sign:before { content: "\e096"; }
.el-font:before { content: "\e095"; }
.el-fontsize:before { content: "\e094"; }
.el-forward:before { content: "\e093"; }
.el-forward-alt:before { content: "\e092"; }
.el-group:before { content: "\e091"; }
.el-group-alt:before { content: "\e090"; }
.el-guidedog:before { content: "\e08f"; }
.el-hand-down:before { content: "\e08e"; }
.el-hand-left:before { content: "\e08d"; }
.el-hand-right:before { content: "\e08c"; }
.el-indent-left:before { content: "\e08b"; }
.el-indent-right:before { content: "\e08a"; }
.el-info-sign:before { content: "\e089"; }
.el-instagram:before { content: "\e088"; }
.el-iphone-home:before { content: "\e087"; }
.el-italic:before { content: "\e086"; }
.el-key:before { content: "\e085"; }
.el-laptop:before { content: "\e084"; }
.el-laptop-alt:before { content: "\e083"; }
.el-leaf:before { content: "\e082"; }
.el-linkedin:before { content: "\e081"; }
.el-list:before { content: "\e080"; }
.el-list-alt:before { content: "\e07f"; }
.el-lock:before { content: "\e07e"; }
.el-lock-alt:before { content: "\e07d"; }
.el-magnet:before { content: "\e07c"; }
.el-male:before { content: "\e07b"; }
.el-map-marker:before { content: "\e07a"; }
.el-map-marker-alt:before { content: "\e079"; }
.el-mic:before { content: "\e078"; }
.el-mic-alt:before { content: "\e077"; }
.el-minus:before { content: "\e076"; }
.el-minus-sign:before { content: "\e075"; }
.el-move:before { content: "\e074"; }
.el-music:before { content: "\e073"; }
.el-network:before { content: "\e072"; }
.el-off:before { content: "\e071"; }
.el-ok:before { content: "\e070"; }
.el-ok-circle:before { content: "\e06f"; }
.el-ok-sign:before { content: "\e06e"; }
.el-paper-clip:before { content: "\e06d"; }
.el-paper-clip-alt:before { content: "\e06c"; }
.el-path:before { content: "\e06b"; }
.el-pause:before { content: "\e06a"; }
.el-pause-alt:before { content: "\e069"; }
.el-pencil:before { content: "\e068"; }
.el-pencil-alt:before { content: "\e067"; }
.el-person:before { content: "\e066"; }
.el-phone:before { content: "\e065"; }
.el-phone-alt:before { content: "\e064"; }
.el-photo:before { content: "\e063"; }
.el-photo-alt:before { content: "\e062"; }
.el-picasa:before { content: "\e061"; }
.el-picture:before { content: "\e060"; }
.el-pinterest:before { content: "\e05f"; }
.el-plane:before { content: "\e05e"; }
.el-play:before { content: "\e05d"; }
.el-play-alt:before { content: "\e05c"; }
.el-play-circle:before { content: "\e05b"; }
.el-plus:before { content: "\e05a"; }
.el-plus-sign:before { content: "\e059"; }
.el-print:before { content: "\e058"; }
.el-qrcode:before { content: "\e057"; }
.el-question:before { content: "\e056"; }
.el-question-sign:before { content: "\e055"; }
.el-quotes:before { content: "\e054"; }
.el-quotes-alt:before { content: "\e053"; }
.el-random:before { content: "\e052"; }
.el-record:before { content: "\e051"; }
.el-reddit:before { content: "\e050"; }
.el-refresh:before { content: "\e04f"; }
.el-remove:before { content: "\e04e"; }
.el-remove-circle:before { content: "\e04d"; }
.el-remove-sign:before { content: "\e04c"; }
.el-repeat:before { content: "\e04b"; }
.el-repeat-alt:before { content: "\e04a"; }
.el-resize-full:before { content: "\e049"; }
.el-resize-horizontal:before { content: "\e048"; }
.el-resize-small:before { content: "\e047"; }
.el-resize-vertical:before { content: "\e046"; }
.el-retweet:before { content: "\e045"; }
.el-reverse-alt:before { content: "\e044"; }
.el-road:before { content: "\e043"; }
.el-rss:before { content: "\e042"; }
.el-screen:before { content: "\e041"; }
.el-screen-alt:before { content: "\e040"; }
.el-screenshot:before { content: "\e03f"; }
.el-search:before { content: "\e03e"; }
.el-search-alt:before { content: "\e03d"; }
.el-share:before { content: "\e03c"; }
.el-share-alt:before { content: "\e03b"; }
.el-shopping-cart:before { content: "\e03a"; }
.el-shopping-cart-sign:before { content: "\e039"; }
.el-signal:before { content: "\e038"; }
.el-skype:before { content: "\e037"; }
.el-slideshare:before { content: "\e036"; }
.el-smiley:before { content: "\e035"; }
.el-smiley-alt:before { content: "\e034"; }
.el-speaker:before { content: "\e033"; }
.el-stackoverflow:before { content: "\e032"; }
.el-star:before { content: "\e031"; }
.el-star-alt:before { content: "\e030"; }
.el-star-empty:before { content: "\e02f"; }
.el-step-backward:before { content: "\e02e"; }
.el-step-forward:before { content: "\e02d"; }
.el-stop:before { content: "\e02c"; }
.el-stop-alt:before { content: "\e02b"; }
.el-stumbleupon:before { content: "\e02a"; }
.el-tag:before { content: "\e029"; }
.el-tags:before { content: "\e028"; }
.el-tasks:before { content: "\e027"; }
.el-text-height:before { content: "\e026"; }
.el-text-width:before { content: "\e025"; }
.el-th:before { content: "\e024"; }
.el-th-large:before { content: "\e023"; }
.el-th-list:before { content: "\e022"; }
.el-thumbs-down:before { content: "\e021"; }
.el-thumbs-up:before { content: "\e020"; }
.el-time:before { content: "\e01f"; }
.el-time-alt:before { content: "\e01e"; }
.el-tint:before { content: "\e01d"; }
.el-torso:before { content: "\e01c"; }
.el-trash:before { content: "\e01b"; }
.el-trash-alt:before { content: "\e01a"; }
.el-tumblr:before { content: "\e019"; }
.el-twitter:before { content: "\e018"; }
.el-universal-access:before { content: "\e017"; }
.el-unlock:before { content: "\e016"; }
.el-unlock-alt:before { content: "\e015"; }
.el-upload:before { content: "\e014"; }
.el-user:before { content: "\e013"; }
.el-video:before { content: "\e012"; }
.el-video-alt:before { content: "\e011"; }
.el-video-chat:before { content: "\e010"; }
.el-view-mode:before { content: "\e00f"; }
.el-vimeo:before { content: "\e00e"; }
.el-volume-down:before { content: "\e00d"; }
.el-volume-off:before { content: "\e00c"; }
.el-volume-up:before { content: "\e00b"; }
.el-w3c:before { content: "\e00a"; }
.el-warning-sign:before { content: "\e009"; }
.el-website:before { content: "\e008"; }
.el-website-alt:before { content: "\e007"; }
.el-wheelchair:before { content: "\e006"; }
.el-wordpress:before { content: "\e005"; }
.el-wrench:before { content: "\e004"; }
.el-wrench-alt:before { content: "\e003"; }
.el-youtube:before { content: "\e002"; }
.el-zoom-in:before { content: "\e001"; }
.el-zoom-out:before { content: "\e000"; }
.el-vkontakte:before { content: "\e10e"; }
@font-face { font-family: "Elusive-Icons"; src: url("http://aristath.github.com/elusive-iconfont/assets/elusive-font/font/Elusive-Icons.eot"); src: url("http://aristath.github.com/elusive-iconfont/assets/elusive-font/font/Elusive-Icons.eot?#iefix") format("embedded-opentype"), url("http://aristath.github.com/elusive-iconfont/assets/elusive-font/font/Elusive-Icons.svg#Elusive-Icons") format("svg"), url("http://aristath.github.com/elusive-iconfont/assets/elusive-font/font/Elusive-Icons.woff") format("woff"), url("http://aristath.github.com/elusive-iconfont/assets/elusive-font/font/Elusive-Icons.ttf") format("truetype"); font-weight: normal; font-style: normal; speak: none; }
#elusive .icon:before { font-size: 14px; }
.es-github:before, .es-c-github:before, .es-flickr:before, .es-c-flickr:before, .es-vimeo:before, .es-c-vimeo:before, .es-twitter:before, .es-c-twitter:before, .es-facebook:before, .es-c-facebook:before, .es-s-facebook:before, .es-google-plus:before, .es-c-google-plus:before, .es-pinterest:before, .es-c-pinterest:before, .es-tumblr:before, .es-c-tumblr:before, .es-linkedin:before, .es-c-linkedin:before, .es-dribbble:before, .es-c-dribbble:before, .es-stumbleupon:before, .es-c-stumbleupon:before, .es-lastfm:before, .es-c-lastfm:before, .es-rdio:before, .es-c-rdio:before, .es-spotify:before, .es-c-spotify:before, .es-qq:before, .es-instagram:before, .es-dropbox:before, .es-evernote:before, .es-flattr:before, .es-skype:before, .es-c-skype:before, .es-renren:before, .es-sina-weibo:before, .es-paypal:before, .es-picasa:before, .es-soundcloud:before, .es-mixi:before, .es-behance:before, .es-google-circles:before, .es-vk:before, .es-smashing:before { line-height: 1em; font-family: "entypo-social"; font-weight: normal; font-style: normal; display: inline-block; text-decoration: none; vertical-align: middle; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; }
.es-github:before { content: "\F300"; }
.es-c-github:before { content: "\F301"; }
.es-flickr:before { content: "\F303"; }
.es-c-flickr:before { content: "\F304"; }
.es-vimeo:before { content: "\F306"; }
.es-c-vimeo:before { content: "\F307"; }
.es-twitter:before { content: "\F309"; }
.es-c-twitter:before { content: "\F30A"; }
.es-facebook:before { content: "\F30C"; }
.es-c-facebook:before { content: "\F30D"; }
.es-s-facebook:before { content: "\F30E"; }
.es-google-plus:before { content: "\F30F"; }
.es-c-google-plus:before { content: "\F310"; }
.es-pinterest:before { content: "\F312"; }
.es-c-pinterest:before { content: "\F313"; }
.es-tumblr:before { content: "\F315"; }
.es-c-tumblr:before { content: "\F316"; }
.es-linkedin:before { content: "\F318"; }
.es-c-linkedin:before { content: "\F319"; }
.es-dribbble:before { content: "\F31B"; }
.es-c-dribbble:before { content: "\F31C"; }
.es-stumbleupon:before { content: "\F31E"; }
.es-c-stumbleupon:before { content: "\F31F"; }
.es-lastfm:before { content: "\F321"; }
.es-c-lastfm:before { content: "\F322"; }
.es-rdio:before { content: "\F324"; }
.es-c-rdio:before { content: "\F325"; }
.es-spotify:before { content: "\F327"; }
.es-c-spotify:before { content: "\F328"; }
.es-qq:before { content: "\F32A"; }
.es-instagram:before { content: "\F32D"; }
.es-dropbox:before { content: "\F330"; }
.es-evernote:before { content: "\F333"; }
.es-flattr:before { content: "\F336"; }
.es-skype:before { content: "\F339"; }
.es-c-skype:before { content: "\F33A"; }
.es-renren:before { content: "\F33C"; }
.es-sina-weibo:before { content: "\F33F"; }
.es-paypal:before { content: "\F342"; }
.es-picasa:before { content: "\F345"; }
.es-soundcloud:before { content: "\F348"; }
.es-mixi:before { content: "\F34B"; }
.es-behance:before { content: "\F34E"; }
.es-google-circles:before { content: "\F351"; }
.es-vk:before { content: "\F354"; }
.es-smashing:before { content: "\F357"; }
@font-face { font-family: "entypo-social"; src: url("http://www.entypo.com/css/entypo-social.eot"); src: url("http://www.entypo.com/css/entypo-social.eot?#iefix") format("embedded-opentype"), url("http://www.entypo.com/css/entypo-social.woff") format("woff"), url("http://www.entypo.com/css/entypo-social.ttf") format("truetype"), url("http://www.entypo.com/css/entypo-social.svg#entypo-social") format("svg"); font-weight: normal; font-style: normal; speak: none; }
#entypo-social .icon:before { font-size: 40px; }
.en-phone:before, .en-mobile:before, .en-mouse:before, .en-address:before, .en-mail:before, .en-paper-plane:before, .en-pencil:before, .en-feather:before, .en-attach:before, .en-inbox:before, .en-reply:before, .en-reply-all:before, .en-forward:before, .en-user:before, .en-users:before, .en-add-user:before, .en-vcard:before, .en-export:before, .en-location:before, .en-map:before, .en-compass:before, .en-direction:before, .en-hair-cross:before, .en-share:before, .en-shareable:before, .en-heart:before, .en-heart-empty:before, .en-star:before, .en-star-empty:before, .en-thumbs-up:before, .en-thumbs-down:before, .en-chat:before, .en-comment:before, .en-quote:before, .en-home:before, .en-popup:before, .en-search:before, .en-flashlight:before, .en-print:before, .en-bell:before, .en-link:before, .en-flag:before, .en-cog:before, .en-tools:before, .en-trophy:before, .en-tag:before, .en-camera:before, .en-megaphone:before, .en-moon:before, .en-palette:before, .en-leaf:before, .en-note:before, .en-beamed-note:before, .en-new:before, .en-graduation-cap:before, .en-book:before, .en-newspaper:before, .en-bag:before, .en-airplane:before, .en-lifebuoy:before, .en-eye:before, .en-clock:before, .en-mic:before, .en-calendar:before, .en-flash:before, .en-thunder-cloud:before, .en-droplet:before, .en-cd:before, .en-briefcase:before, .en-air:before, .en-hourglass:before, .en-gauge:before, .en-language:before, .en-network:before, .en-key:before, .en-battery:before, .en-bucket:before, .en-magnet:before, .en-drive:before, .en-cup:before, .en-rocket:before, .en-brush:before, .en-suitcase:before, .en-traffic-cone:before, .en-globe:before, .en-keyboard:before, .en-browser:before, .en-publish:before, .en-progress-3:before, .en-progress-2:before, .en-progress-1:before, .en-progress-0:before, .en-light-down:before, .en-light-up:before, .en-adjust:before, .en-code:before, .en-monitor:before, .en-infinity:before, .en-light-bulb:before, .en-credit-card:before, .en-database:before, .en-voicemail:before, .en-clipboard:before, .en-cart:before, .en-box:before, .en-ticket:before, .en-rss:before, .en-signal:before, .en-thermometer:before, .en-water:before, .en-sweden:before, .en-line-graph:before, .en-pie-chart:before, .en-bar-graph:before, .en-area-graph:before, .en-lock:before, .en-lock-open:before, .en-logout:before, .en-login:before, .en-check:before, .en-cross:before, .en-squared-minus:before, .en-squared-plus:before, .en-squared-cross:before, .en-circled-minus:before, .en-circled-plus:before, .en-circled-cross:before, .en-minus:before, .en-plus:before, .en-erase:before, .en-block:before, .en-info:before, .en-circled-info:before, .en-help:before, .en-circled-help:before, .en-warning:before, .en-cycle:before, .en-cw:before, .en-ccw:before, .en-shuffle:before, .en-back:before, .en-level-down:before, .en-retweet:before, .en-loop:before, .en-back-in-time:before, .en-level-up:before, .en-switch:before, .en-numbered-list:before, .en-add-to-list:before, .en-layout:before, .en-list:before, .en-text-doc:before, .en-text-doc-inverted:before, .en-doc:before, .en-docs:before, .en-landscape-doc:before, .en-picture:before, .en-video:before, .en-music:before, .en-folder:before, .en-archive:before, .en-trash:before, .en-upload:before, .en-download:before, .en-save:before, .en-install:before, .en-cloud:before, .en-upload-cloud:before, .en-bookmark:before, .en-bookmarks:before, .en-open-book:before, .en-play:before, .en-pause:before, .en-record:before, .en-stop:before, .en-ff:before, .en-fb:before, .en-to-start:before, .en-to-end:before, .en-resize-full:before, .en-resize-small:before, .en-volume:before, .en-sound:before, .en-mute:before, .en-flow-cascade:before, .en-flow-branch:before, .en-flow-tree:before, .en-flow-line:before, .en-flow-parallel:before, .en-left-bold:before, .en-down-bold:before, .en-up-bold:before, .en-right-bold:before, .en-left:before, .en-down:before, .en-up:before, .en-right:before, .en-circled-left:before, .en-circled-down:before, .en-circled-up:before, .en-circled-right:before, .en-triangle-left:before, .en-triangle-down:before, .en-triangle-up:before, .en-triangle-right:before, .en-chevron-left:before, .en-chevron-down:before, .en-chevron-up:before, .en-chevron-right:before, .en-chevron-small-left:before, .en-chevron-small-down:before, .en-chevron-small-up:before, .en-chevron-small-right:before, .en-chevron-thin-left:before, .en-chevron-thin-down:before, .en-chevron-thin-up:before, .en-chevron-thin-right:before, .en-left-thin:before, .en-down-thin:before, .en-up-thin:before, .en-right-thin:before, .en-arrow-combo:before, .en-three-dots:before, .en-two-dots:before, .en-dot:before, .en-cc:before, .en-cc-by:before, .en-cc-nc:before, .en-cc-nc-eu:before, .en-cc-nc-jp:before, .en-cc-sa:before, .en-cc-nd:before, .en-cc-pd:before, .en-cc-zero:before, .en-cc-share:before, .en-cc-remix:before, .en-db-logo:before, .en-db-shape:before { line-height: 1em; font-family: "entypo"; font-weight: normal; font-style: normal; display: inline-block; text-decoration: none; vertical-align: middle; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; }
.en-phone:before { content: "\1F4DE"; }
.en-mobile:before { content: "\1F4F1"; }
.en-mouse:before { content: "\E789"; }
.en-address:before { content: "\E723"; }
.en-mail:before { content: "\2709"; }
.en-paper-plane:before { content: "\1F53F"; }
.en-pencil:before { content: "\270E"; }
.en-feather:before { content: "\2712"; }
.en-attach:before { content: "\1F4CE"; }
.en-inbox:before { content: "\E777"; }
.en-reply:before { content: "\E712"; }
.en-reply-all:before { content: "\E713"; }
.en-forward:before { content: "\27A6"; }
.en-user:before { content: "\1F464"; }
.en-users:before { content: "\1F465"; }
.en-add-user:before { content: "\E700"; }
.en-vcard:before { content: "\E722"; }
.en-export:before { content: "\E715"; }
.en-location:before { content: "\E724"; }
.en-map:before { content: "\E727"; }
.en-compass:before { content: "\E728"; }
.en-direction:before { content: "\27A2"; }
.en-hair-cross:before { content: "\1F3AF"; }
.en-share:before { content: "\E73C"; }
.en-shareable:before { content: "\E73E"; }
.en-heart:before { content: "\2665"; }
.en-heart-empty:before { content: "\2661"; }
.en-star:before { content: "\2605"; }
.en-star-empty:before { content: "\2606"; }
.en-thumbs-up:before { content: "\1F44D"; }
.en-thumbs-down:before { content: "\1F44E"; }
.en-chat:before { content: "\E720"; }
.en-comment:before { content: "\E718"; }
.en-quote:before { content: "\275E"; }
.en-home:before { content: "\2302"; }
.en-popup:before { content: "\E74C"; }
.en-search:before { content: "\1F50D"; }
.en-flashlight:before { content: "\1F526"; }
.en-print:before { content: "\E716"; }
.en-bell:before { content: "\1F514"; }
.en-link:before { content: "\1F517"; }
.en-flag:before { content: "\2691"; }
.en-cog:before { content: "\2699"; }
.en-tools:before { content: "\2692"; }
.en-trophy:before { content: "\1F3C6"; }
.en-tag:before { content: "\E70C"; }
.en-camera:before { content: "\1F4F7"; }
.en-megaphone:before { content: "\1F4E3"; }
.en-moon:before { content: "\263D"; }
.en-palette:before { content: "\1F3A8"; }
.en-leaf:before { content: "\1F342"; }
.en-note:before { content: "\266A"; }
.en-beamed-note:before { content: "\266B"; }
.en-new:before { content: "\1F4A5"; }
.en-graduation-cap:before { content: "\1F393"; }
.en-book:before { content: "\1F4D5"; }
.en-newspaper:before { content: "\1F4F0"; }
.en-bag:before { content: "\1F45C"; }
.en-airplane:before { content: "\2708"; }
.en-lifebuoy:before { content: "\E788"; }
.en-eye:before { content: "\E70A"; }
.en-clock:before { content: "\1F554"; }
.en-mic:before { content: "\1F3A4"; }
.en-calendar:before { content: "\1F4C5"; }
.en-flash:before { content: "\26A1"; }
.en-thunder-cloud:before { content: "\26C8"; }
.en-droplet:before { content: "\1F4A7"; }
.en-cd:before { content: "\1F4BF"; }
.en-briefcase:before { content: "\1F4BC"; }
.en-air:before { content: "\1F4A8"; }
.en-hourglass:before { content: "\23F3"; }
.en-gauge:before { content: "\1F6C7"; }
.en-language:before { content: "\1F394"; }
.en-network:before { content: "\E776"; }
.en-key:before { content: "\1F511"; }
.en-battery:before { content: "\1F50B"; }
.en-bucket:before { content: "\1F4FE"; }
.en-magnet:before { content: "\E7A1"; }
.en-drive:before { content: "\1F4FD"; }
.en-cup:before { content: "\2615"; }
.en-rocket:before { content: "\1F680"; }
.en-brush:before { content: "\E79A"; }
.en-suitcase:before { content: "\1F6C6"; }
.en-traffic-cone:before { content: "\1F6C8"; }
.en-globe:before { content: "\1F30E"; }
.en-keyboard:before { content: "\2328"; }
.en-browser:before { content: "\E74E"; }
.en-publish:before { content: "\E74D"; }
.en-progress-3:before { content: "\E76B"; }
.en-progress-2:before { content: "\E76A"; }
.en-progress-1:before { content: "\E769"; }
.en-progress-0:before { content: "\E768"; }
.en-light-down:before { content: "\1F505"; }
.en-light-up:before { content: "\1F506"; }
.en-adjust:before { content: "\25D1"; }
.en-code:before { content: "\E714"; }
.en-monitor:before { content: "\1F4BB"; }
.en-infinity:before { content: "\221E"; }
.en-light-bulb:before { content: "\1F4A1"; }
.en-credit-card:before { content: "\1F4B3"; }
.en-database:before { content: "\1F4F8"; }
.en-voicemail:before { content: "\2707"; }
.en-clipboard:before { content: "\1F4CB"; }
.en-cart:before { content: "\E73D"; }
.en-box:before { content: "\1F4E6"; }
.en-ticket:before { content: "\1F3AB"; }
.en-rss:before { content: "\E73A"; }
.en-signal:before { content: "\1F4F6"; }
.en-thermometer:before { content: "\1F4FF"; }
.en-water:before { content: "\1F4A6"; }
.en-sweden:before { content: "\F601"; }
.en-line-graph:before { content: "\1F4C8"; }
.en-pie-chart:before { content: "\25F4"; }
.en-bar-graph:before { content: "\1F4CA"; }
.en-area-graph:before { content: "\1F53E"; }
.en-lock:before { content: "\1F512"; }
.en-lock-open:before { content: "\1F513"; }
.en-logout:before { content: "\E741"; }
.en-login:before { content: "\E740"; }
.en-check:before { content: "\2713"; }
.en-cross:before { content: "\274C"; }
.en-squared-minus:before { content: "\229F"; }
.en-squared-plus:before { content: "\229E"; }
.en-squared-cross:before { content: "\274E"; }
.en-circled-minus:before { content: "\2296"; }
.en-circled-plus:before { content: "\2295"; }
.en-circled-cross:before { content: "\2716"; }
.en-minus:before { content: "\2796"; }
.en-plus:before { content: "\2795"; }
.en-erase:before { content: "\232B"; }
.en-block:before { content: "\1F6AB"; }
.en-info:before { content: "\2139"; }
.en-circled-info:before { content: "\E705"; }
.en-help:before { content: "\2753"; }
.en-circled-help:before { content: "\E704"; }
.en-warning:before { content: "\26A0"; }
.en-cycle:before { content: "\1F504"; }
.en-cw:before { content: "\27F3"; }
.en-ccw:before { content: "\27F2"; }
.en-shuffle:before { content: "\1F500"; }
.en-back:before { content: "\1F519"; }
.en-level-down:before { content: "\21B3"; }
.en-retweet:before { content: "\E717"; }
.en-loop:before { content: "\1F501"; }
.en-back-in-time:before { content: "\E771"; }
.en-level-up:before { content: "\21B0"; }
.en-switch:before { content: "\21C6"; }
.en-numbered-list:before { content: "\E005"; }
.en-add-to-list:before { content: "\E003"; }
.en-layout:before { content: "\268F"; }
.en-list:before { content: "\2630"; }
.en-text-doc:before { content: "\1F4C4"; }
.en-text-doc-inverted:before { content: "\E731"; }
.en-doc:before { content: "\E730"; }
.en-docs:before { content: "\E736"; }
.en-landscape-doc:before { content: "\E737"; }
.en-picture:before { content: "\1F304"; }
.en-video:before { content: "\1F3AC"; }
.en-music:before { content: "\1F3B5"; }
.en-folder:before { content: "\1F4C1"; }
.en-archive:before { content: "\E800"; }
.en-trash:before { content: "\E729"; }
.en-upload:before { content: "\1F4E4"; }
.en-download:before { content: "\1F4E5"; }
.en-save:before { content: "\1F4BE"; }
.en-install:before { content: "\E778"; }
.en-cloud:before { content: "\2601"; }
.en-upload-cloud:before { content: "\E711"; }
.en-bookmark:before { content: "\1F516"; }
.en-bookmarks:before { content: "\1F4D1"; }
.en-open-book:before { content: "\1F4D6"; }
.en-play:before { content: "\25B6"; }
.en-pause:before { content: "\2016"; }
.en-record:before { content: "\25CF"; }
.en-stop:before { content: "\25A0"; }
.en-ff:before { content: "\23E9"; }
.en-fb:before { content: "\23EA"; }
.en-to-start:before { content: "\23EE"; }
.en-to-end:before { content: "\23ED"; }
.en-resize-full:before { content: "\E744"; }
.en-resize-small:before { content: "\E746"; }
.en-volume:before { content: "\23F7"; }
.en-sound:before { content: "\1F50A"; }
.en-mute:before { content: "\1F507"; }
.en-flow-cascade:before { content: "\1F568"; }
.en-flow-branch:before { content: "\1F569"; }
.en-flow-tree:before { content: "\1F56A"; }
.en-flow-line:before { content: "\1F56B"; }
.en-flow-parallel:before { content: "\1F56C"; }
.en-left-bold:before { content: "\E4AD"; }
.en-down-bold:before { content: "\E4B0"; }
.en-up-bold:before { content: "\E4AF"; }
.en-right-bold:before { content: "\E4AE"; }
.en-left:before { content: "\2B05"; }
.en-down:before { content: "\2B07"; }
.en-up:before { content: "\2B06"; }
.en-right:before { content: "\27A1"; }
.en-circled-left:before { content: "\E759"; }
.en-circled-down:before { content: "\E758"; }
.en-circled-up:before { content: "\E75B"; }
.en-circled-right:before { content: "\E75A"; }
.en-triangle-left:before { content: "\25C2"; }
.en-triangle-down:before { content: "\25BE"; }
.en-triangle-up:before { content: "\25B4"; }
.en-triangle-right:before { content: "\25B8"; }
.en-chevron-left:before { content: "\E75D"; }
.en-chevron-down:before { content: "\E75C"; }
.en-chevron-up:before { content: "\E75F"; }
.en-chevron-right:before { content: "\E75E"; }
.en-chevron-small-left:before { content: "\E761"; }
.en-chevron-small-down:before { content: "\E760"; }
.en-chevron-small-up:before { content: "\E763"; }
.en-chevron-small-right:before { content: "\E762"; }
.en-chevron-thin-left:before { content: "\E765"; }
.en-chevron-thin-down:before { content: "\E764"; }
.en-chevron-thin-up:before { content: "\E767"; }
.en-chevron-thin-right:before { content: "\E766"; }
.en-left-thin:before { content: "\2190"; }
.en-down-thin:before { content: "\2193"; }
.en-up-thin:before { content: "\2191"; }
.en-right-thin:before { content: "\2192"; }
.en-arrow-combo:before { content: "\E74F"; }
.en-three-dots:before { content: "\23F6"; }
.en-two-dots:before { content: "\23F5"; }
.en-dot:before { content: "\23F4"; }
.en-cc:before { content: "\1F545"; }
.en-cc-by:before { content: "\1F546"; }
.en-cc-nc:before { content: "\1F547"; }
.en-cc-nc-eu:before { content: "\1F548"; }
.en-cc-nc-jp:before { content: "\1F549"; }
.en-cc-sa:before { content: "\1F54A"; }
.en-cc-nd:before { content: "\1F54B"; }
.en-cc-pd:before { content: "\1F54C"; }
.en-cc-zero:before { content: "\1F54D"; }
.en-cc-share:before { content: "\1F54E"; }
.en-cc-remix:before { content: "\1F54F"; }
.en-db-logo:before { content: "\1F5F9"; }
.en-db-shape:before { content: "\1F5FA"; }
@font-face { font-family: "entypo"; src: url("http://www.entypo.com/css/entypo.eot"); src: url("http://www.entypo.com/css/entypo.eot?#iefix") format("embedded-opentype"), url("http://www.entypo.com/css/entypo.woff") format("woff"), url("http://www.entypo.com/css/entypo.ttf") format("truetype"), url("http://www.entypo.com/css/entypo.svg#entypo") format("svg"); font-weight: normal; font-style: normal; speak: none; }
#entypo .icon:before { font-size: 40px; }
.fa-glass:before, .fa-music:before, .fa-search:before, .fa-envelope:before, .fa-heart:before, .fa-star:before, .fa-star-empty:before, .fa-user:before, .fa-film:before, .fa-th-large:before, .fa-th:before, .fa-th-list:before, .fa-ok:before, .fa-remove:before, .fa-zoom-in:before, .fa-zoom-out:before, .fa-off:before, .fa-signal:before, .fa-cog:before, .fa-trash:before, .fa-home:before, .fa-file:before, .fa-time:before, .fa-road:before, .fa-download-alt:before, .fa-download:before, .fa-upload:before, .fa-inbox:before, .fa-play-circle:before, .fa-repeat:before, .fa-refresh:before, .fa-list-alt:before, .fa-lock:before, .fa-flag:before, .fa-headphones:before, .fa-volume-off:before, .fa-volume-down:before, .fa-volume-up:before, .fa-qrcode:before, .fa-barcode:before, .fa-tag:before, .fa-tags:before, .fa-book:before, .fa-bookmark:before, .fa-print:before, .fa-camera:before, .fa-font:before, .fa-bold:before, .fa-italic:before, .fa-text-height:before, .fa-text-width:before, .fa-align-left:before, .fa-align-center:before, .fa-align-right:before, .fa-align-justify:before, .fa-list:before, .fa-indent-left:before, .fa-indent-right:before, .fa-facetime-video:before, .fa-picture:before, .fa-pencil:before, .fa-map-marker:before, .fa-adjust:before, .fa-tint:before, .fa-edit:before, .fa-share:before, .fa-check:before, .fa-move:before, .fa-step-backward:before, .fa-fast-backward:before, .fa-backward:before, .fa-play:before, .fa-pause:before, .fa-stop:before, .fa-forward:before, .fa-fast-forward:before, .fa-step-forward:before, .fa-eject:before, .fa-chevron-left:before, .fa-chevron-right:before, .fa-plus-sign:before, .fa-minus-sign:before, .fa-remove-sign:before, .fa-ok-sign:before, .fa-question-sign:before, .fa-info-sign:before, .fa-screenshot:before, .fa-remove-circle:before, .fa-ok-circle:before, .fa-ban-circle:before, .fa-arrow-left:before, .fa-arrow-right:before, .fa-arrow-up:before, .fa-arrow-down:before, .fa-share-alt:before, .fa-resize-full:before, .fa-resize-small:before, .fa-plus:before, .fa-minus:before, .fa-asterisk:before, .fa-exclamation-sign:before, .fa-gift:before, .fa-leaf:before, .fa-fire:before, .fa-eye-open:before, .fa-eye-close:before, .fa-warning-sign:before, .fa-plane:before, .fa-calendar:before, .fa-random:before, .fa-comment:before, .fa-magnet:before, .fa-chevron-up:before, .fa-chevron-down:before, .fa-retweet:before, .fa-shopping-cart:before, .fa-folder-close:before, .fa-folder-open:before, .fa-resize-vertical:before, .fa-resize-horizontal:before, .fa-bar-chart:before, .fa-twitter-sign:before, .fa-facebook-sign:before, .fa-camera-retro:before, .fa-key:before, .fa-cogs:before, .fa-comments:before, .fa-thumbs-up:before, .fa-thumbs-down:before, .fa-star-half:before, .fa-heart-empty:before, .fa-signout:before, .fa-linkedin-sign:before, .fa-pushpin:before, .fa-external-link:before, .fa-signin:before, .fa-trophy:before, .fa-github-sign:before, .fa-upload-alt:before, .fa-lemon:before, .fa-phone:before, .fa-check-empty:before, .fa-bookmark-empty:before, .fa-phone-sign:before, .fa-twitter:before, .fa-facebook:before, .fa-github:before, .fa-unlock:before, .fa-credit-card:before, .fa-rss:before, .fa-hdd:before, .fa-bullhorn:before, .fa-bell:before, .fa-certificate:before, .fa-hand-right:before, .fa-hand-left:before, .fa-hand-up:before, .fa-hand-down:before, .fa-circle-arrow-left:before, .fa-circle-arrow-right:before, .fa-circle-arrow-up:before, .fa-circle-arrow-down:before, .fa-globe:before, .fa-wrench:before, .fa-tasks:before, .fa-filter:before, .fa-briefcase:before, .fa-fullscreen:before, .fa-group:before, .fa-link:before, .fa-cloud:before, .fa-beaker:before, .fa-cut:before, .fa-copy:before, .fa-paper-clip:before, .fa-save:before, .fa-sign-blank:before, .fa-reorder:before, .fa-list-ul:before, .fa-list-ol:before, .fa-strikethrough:before, .fa-underline:before, .fa-table:before, .fa-magic:before, .fa-truck:before, .fa-pinterest:before, .fa-pinterest-sign:before, .fa-google-plus-sign:before, .fa-google-plus:before, .fa-money:before, .fa-caret-down:before, .fa-caret-up:before, .fa-caret-left:before, .fa-caret-right:before, .fa-columns:before, .fa-sort:before, .fa-sort-down:before, .fa-sort-up:before, .fa-envelope-alt:before, .fa-linkedin:before, .fa-undo:before, .fa-legal:before, .fa-dashboard:before, .fa-comment-alt:before, .fa-comments-alt:before, .fa-bolt:before, .fa-sitemap:before, .fa-umbrella:before, .fa-paste:before, .fa-lightbulb:before, .fa-exchange:before, .fa-cloud-download:before, .fa-cloud-upload:before, .fa-user-md:before, .fa-stethoscope:before, .fa-suitcase:before, .fa-bell-alt:before, .fa-coffee:before, .fa-food:before, .fa-file-alt:before, .fa-building:before, .fa-hospital:before, .fa-ambulance:before, .fa-medkit:before, .fa-fighter-jet:before, .fa-beer:before, .fa-h-sign:before, .fa-plus-sign-alt:before, .fa-double-angle-left:before, .fa-double-angle-right:before, .fa-double-angle-up:before, .fa-double-angle-down:before, .fa-angle-left:before, .fa-angle-right:before, .fa-angle-up:before, .fa-angle-down:before, .fa-desktop:before, .fa-laptop:before, .fa-tablet:before, .fa-mobile-phone:before, .fa-circle-blank:before, .fa-quote-left:before, .fa-quote-right:before, .fa-spinner:before, .fa-circle:before, .fa-reply:before, .fa-github-alt:before, .fa-folder-close-alt:before, .fa-folder-open-alt:before { line-height: 1em; font-family: FontAwesome; font-weight: normal; font-style: normal; display: inline-block; text-decoration: none; vertical-align: middle; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; }
.fa-glass:before { content: "\f000"; }
.fa-music:before { content: "\f001"; }
.fa-search:before { content: "\f002"; }
.fa-envelope:before { content: "\f003"; }
.fa-heart:before { content: "\f004"; }
.fa-star:before { content: "\f005"; }
.fa-star-empty:before { content: "\f006"; }
.fa-user:before { content: "\f007"; }
.fa-film:before { content: "\f008"; }
.fa-th-large:before { content: "\f009"; }
.fa-th:before { content: "\f00a"; }
.fa-th-list:before { content: "\f00b"; }
.fa-ok:before { content: "\f00c"; }
.fa-remove:before { content: "\f00d"; }
.fa-zoom-in:before { content: "\f00e"; }
.fa-zoom-out:before { content: "\f010"; }
.fa-off:before { content: "\f011"; }
.fa-signal:before { content: "\f012"; }
.fa-cog:before { content: "\f013"; }
.fa-trash:before { content: "\f014"; }
.fa-home:before { content: "\f015"; }
.fa-file:before { content: "\f016"; }
.fa-time:before { content: "\f017"; }
.fa-road:before { content: "\f018"; }
.fa-download-alt:before { content: "\f019"; }
.fa-download:before { content: "\f01a"; }
.fa-upload:before { content: "\f01b"; }
.fa-inbox:before { content: "\f01c"; }
.fa-play-circle:before { content: "\f01d"; }
.fa-repeat:before { content: "\f01e"; }
.fa-refresh:before { content: "\f021"; }
.fa-list-alt:before { content: "\f022"; }
.fa-lock:before { content: "\f023"; }
.fa-flag:before { content: "\f024"; }
.fa-headphones:before { content: "\f025"; }
.fa-volume-off:before { content: "\f026"; }
.fa-volume-down:before { content: "\f027"; }
.fa-volume-up:before { content: "\f028"; }
.fa-qrcode:before { content: "\f029"; }
.fa-barcode:before { content: "\f02a"; }
.fa-tag:before { content: "\f02b"; }
.fa-tags:before { content: "\f02c"; }
.fa-book:before { content: "\f02d"; }
.fa-bookmark:before { content: "\f02e"; }
.fa-print:before { content: "\f02f"; }
.fa-camera:before { content: "\f030"; }
.fa-font:before { content: "\f031"; }
.fa-bold:before { content: "\f032"; }
.fa-italic:before { content: "\f033"; }
.fa-text-height:before { content: "\f034"; }
.fa-text-width:before { content: "\f035"; }
.fa-align-left:before { content: "\f036"; }
.fa-align-center:before { content: "\f037"; }
.fa-align-right:before { content: "\f038"; }
.fa-align-justify:before { content: "\f039"; }
.fa-list:before { content: "\f03a"; }
.fa-indent-left:before { content: "\f03b"; }
.fa-indent-right:before { content: "\f03c"; }
.fa-facetime-video:before { content: "\f03d"; }
.fa-picture:before { content: "\f03e"; }
.fa-pencil:before { content: "\f040"; }
.fa-map-marker:before { content: "\f041"; }
.fa-adjust:before { content: "\f042"; }
.fa-tint:before { content: "\f043"; }
.fa-edit:before { content: "\f044"; }
.fa-share:before { content: "\f045"; }
.fa-check:before { content: "\f046"; }
.fa-move:before { content: "\f047"; }
.fa-step-backward:before { content: "\f048"; }
.fa-fast-backward:before { content: "\f049"; }
.fa-backward:before { content: "\f04a"; }
.fa-play:before { content: "\f04b"; }
.fa-pause:before { content: "\f04c"; }
.fa-stop:before { content: "\f04d"; }
.fa-forward:before { content: "\f04e"; }
.fa-fast-forward:before { content: "\f050"; }
.fa-step-forward:before { content: "\f051"; }
.fa-eject:before { content: "\f052"; }
.fa-chevron-left:before { content: "\f053"; }
.fa-chevron-right:before { content: "\f054"; }
.fa-plus-sign:before { content: "\f055"; }
.fa-minus-sign:before { content: "\f056"; }
.fa-remove-sign:before { content: "\f057"; }
.fa-ok-sign:before { content: "\f058"; }
.fa-question-sign:before { content: "\f059"; }
.fa-info-sign:before { content: "\f05a"; }
.fa-screenshot:before { content: "\f05b"; }
.fa-remove-circle:before { content: "\f05c"; }
.fa-ok-circle:before { content: "\f05d"; }
.fa-ban-circle:before { content: "\f05e"; }
.fa-arrow-left:before { content: "\f060"; }
.fa-arrow-right:before { content: "\f061"; }
.fa-arrow-up:before { content: "\f062"; }
.fa-arrow-down:before { content: "\f063"; }
.fa-share-alt:before { content: "\f064"; }
.fa-resize-full:before { content: "\f065"; }
.fa-resize-small:before { content: "\f066"; }
.fa-plus:before { content: "\f067"; }
.fa-minus:before { content: "\f068"; }
.fa-asterisk:before { content: "\f069"; }
.fa-exclamation-sign:before { content: "\f06a"; }
.fa-gift:before { content: "\f06b"; }
.fa-leaf:before { content: "\f06c"; }
.fa-fire:before { content: "\f06d"; }
.fa-eye-open:before { content: "\f06e"; }
.fa-eye-close:before { content: "\f070"; }
.fa-warning-sign:before { content: "\f071"; }
.fa-plane:before { content: "\f072"; }
.fa-calendar:before { content: "\f073"; }
.fa-random:before { content: "\f074"; }
.fa-comment:before { content: "\f075"; }
.fa-magnet:before { content: "\f076"; }
.fa-chevron-up:before { content: "\f077"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-retweet:before { content: "\f079"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-folder-close:before { content: "\f07b"; }
.fa-folder-open:before { content: "\f07c"; }
.fa-resize-vertical:before { content: "\f07d"; }
.fa-resize-horizontal:before { content: "\f07e"; }
.fa-bar-chart:before { content: "\f080"; }
.fa-twitter-sign:before { content: "\f081"; }
.fa-facebook-sign:before { content: "\f082"; }
.fa-camera-retro:before { content: "\f083"; }
.fa-key:before { content: "\f084"; }
.fa-cogs:before { content: "\f085"; }
.fa-comments:before { content: "\f086"; }
.fa-thumbs-up:before { content: "\f087"; }
.fa-thumbs-down:before { content: "\f088"; }
.fa-star-half:before { content: "\f089"; }
.fa-heart-empty:before { content: "\f08a"; }
.fa-signout:before { content: "\f08b"; }
.fa-linkedin-sign:before { content: "\f08c"; }
.fa-pushpin:before { content: "\f08d"; }
.fa-external-link:before { content: "\f08e"; }
.fa-signin:before { content: "\f090"; }
.fa-trophy:before { content: "\f091"; }
.fa-github-sign:before { content: "\f092"; }
.fa-upload-alt:before { content: "\f093"; }
.fa-lemon:before { content: "\f094"; }
.fa-phone:before { content: "\f095"; }
.fa-check-empty:before { content: "\f096"; }
.fa-bookmark-empty:before { content: "\f097"; }
.fa-phone-sign:before { content: "\f098"; }
.fa-twitter:before { content: "\f099"; }
.fa-facebook:before { content: "\f09a"; }
.fa-github:before { content: "\f09b"; }
.fa-unlock:before { content: "\f09c"; }
.fa-credit-card:before { content: "\f09d"; }
.fa-rss:before { content: "\f09e"; }
.fa-hdd:before { content: "\f0a0"; }
.fa-bullhorn:before { content: "\f0a1"; }
.fa-bell:before { content: "\f0a2"; }
.fa-certificate:before { content: "\f0a3"; }
.fa-hand-right:before { content: "\f0a4"; }
.fa-hand-left:before { content: "\f0a5"; }
.fa-hand-up:before { content: "\f0a6"; }
.fa-hand-down:before { content: "\f0a7"; }
.fa-circle-arrow-left:before { content: "\f0a8"; }
.fa-circle-arrow-right:before { content: "\f0a9"; }
.fa-circle-arrow-up:before { content: "\f0aa"; }
.fa-circle-arrow-down:before { content: "\f0ab"; }
.fa-globe:before { content: "\f0ac"; }
.fa-wrench:before { content: "\f0ad"; }
.fa-tasks:before { content: "\f0ae"; }
.fa-filter:before { content: "\f0b0"; }
.fa-briefcase:before { content: "\f0b1"; }
.fa-fullscreen:before { content: "\f0b2"; }
.fa-group:before { content: "\f0c0"; }
.fa-link:before { content: "\f0c1"; }
.fa-cloud:before { content: "\f0c2"; }
.fa-beaker:before { content: "\f0c3"; }
.fa-cut:before { content: "\f0c4"; }
.fa-copy:before { content: "\f0c5"; }
.fa-paper-clip:before { content: "\f0c6"; }
.fa-save:before { content: "\f0c7"; }
.fa-sign-blank:before { content: "\f0c8"; }
.fa-reorder:before { content: "\f0c9"; }
.fa-list-ul:before { content: "\f0ca"; }
.fa-list-ol:before { content: "\f0cb"; }
.fa-strikethrough:before { content: "\f0cc"; }
.fa-underline:before { content: "\f0cd"; }
.fa-table:before { content: "\f0ce"; }
.fa-magic:before { content: "\f0d0"; }
.fa-truck:before { content: "\f0d1"; }
.fa-pinterest:before { content: "\f0d2"; }
.fa-pinterest-sign:before { content: "\f0d3"; }
.fa-google-plus-sign:before { content: "\f0d4"; }
.fa-google-plus:before { content: "\f0d5"; }
.fa-money:before { content: "\f0d6"; }
.fa-caret-down:before { content: "\f0d7"; }
.fa-caret-up:before { content: "\f0d8"; }
.fa-caret-left:before { content: "\f0d9"; }
.fa-caret-right:before { content: "\f0da"; }
.fa-columns:before { content: "\f0db"; }
.fa-sort:before { content: "\f0dc"; }
.fa-sort-down:before { content: "\f0dd"; }
.fa-sort-up:before { content: "\f0de"; }
.fa-envelope-alt:before { content: "\f0e0"; }
.fa-linkedin:before { content: "\f0e1"; }
.fa-undo:before { content: "\f0e2"; }
.fa-legal:before { content: "\f0e3"; }
.fa-dashboard:before { content: "\f0e4"; }
.fa-comment-alt:before { content: "\f0e5"; }
.fa-comments-alt:before { content: "\f0e6"; }
.fa-bolt:before { content: "\f0e7"; }
.fa-sitemap:before { content: "\f0e8"; }
.fa-umbrella:before { content: "\f0e9"; }
.fa-paste:before { content: "\f0ea"; }
.fa-lightbulb:before { content: "\f0eb"; }
.fa-exchange:before { content: "\f0ec"; }
.fa-cloud-download:before { content: "\f0ed"; }
.fa-cloud-upload:before { content: "\f0ee"; }
.fa-user-md:before { content: "\f0f0"; }
.fa-stethoscope:before { content: "\f0f1"; }
.fa-suitcase:before { content: "\f0f2"; }
.fa-bell-alt:before { content: "\f0f3"; }
.fa-coffee:before { content: "\f0f4"; }
.fa-food:before { content: "\f0f5"; }
.fa-file-alt:before { content: "\f0f6"; }
.fa-building:before { content: "\f0f7"; }
.fa-hospital:before { content: "\f0f8"; }
.fa-ambulance:before { content: "\f0f9"; }
.fa-medkit:before { content: "\f0fa"; }
.fa-fighter-jet:before { content: "\f0fb"; }
.fa-beer:before { content: "\f0fc"; }
.fa-h-sign:before { content: "\f0fd"; }
.fa-plus-sign-alt:before { content: "\f0fe"; }
.fa-double-angle-left:before { content: "\f100"; }
.fa-double-angle-right:before { content: "\f101"; }
.fa-double-angle-up:before { content: "\f102"; }
.fa-double-angle-down:before { content: "\f103"; }
.fa-angle-left:before { content: "\f104"; }
.fa-angle-right:before { content: "\f105"; }
.fa-angle-up:before { content: "\f106"; }
.fa-angle-down:before { content: "\f107"; }
.fa-desktop:before { content: "\f108"; }
.fa-laptop:before { content: "\f109"; }
.fa-tablet:before { content: "\f10a"; }
.fa-mobile-phone:before { content: "\f10b"; }
.fa-circle-blank:before { content: "\f10c"; }
.fa-quote-left:before { content: "\f10d"; }
.fa-quote-right:before { content: "\f10e"; }
.fa-spinner:before { content: "\f110"; }
.fa-circle:before { content: "\f111"; }
.fa-reply:before { content: "\f112"; }
.fa-github-alt:before { content: "\f113"; }
.fa-folder-close-alt:before { content: "\f114"; }
.fa-folder-open-alt:before { content: "\f115"; }
@font-face { font-family: "FontAwesome"; src: url("https://github.com/FortAwesome/Font-Awesome/raw/master/fonts/fontawesome-webfont.eot"); src: url("https://github.com/FortAwesome/Font-Awesome/raw/master/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("https://github.com/FortAwesome/Font-Awesome/raw/master/fonts/fontawesome-webfont.woff") format("woff"), url("https://github.com/FortAwesome/Font-Awesome/raw/master/fonts/fontawesome-webfont.ttf") format("truetype"); font-weight: normal; font-style: normal; speak: none; }
#font-awesome .icon:before { font-size: 14px; }
.fd-settings:before, .fd-heart:before, .fd-star:before, .fd-plus:before, .fd-minus:before, .fd-checkmark:before, .fd-remove:before, .fd-mail:before, .fd-calendar:before, .fd-page:before, .fd-tools:before, .fd-globe:before, .fd-home:before, .fd-quote:before, .fd-people:before, .fd-monitor:before, .fd-laptop:before, .fd-phone:before, .fd-cloud:before, .fd-error:before, .fd-right-arrow:before, .fd-left-arrow:before, .fd-up-arrow:before, .fd-down-arrow:before, .fd-trash:before, .fd-add-doc:before, .fd-edit:before, .fd-lock:before, .fd-unlock:before, .fd-refresh:before, .fd-paper-clip:before, .fd-video:before, .fd-photo:before, .fd-graph:before, .fd-idea:before, .fd-mic:before, .fd-cart:before, .fd-address-book:before, .fd-compass:before, .fd-flag:before, .fd-location:before, .fd-clock:before, .fd-folder:before, .fd-inbox:before, .fd-website:before, .fd-smiley:before, .fd-search:before { line-height: 1em; font-family: "GeneralFoundicons"; font-weight: normal; font-style: normal; display: inline-block; text-decoration: none; vertical-align: middle; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; }
.fd-settings:before { content: "\f000"; }
.fd-heart:before { content: "\f001"; }
.fd-star:before { content: "\f002"; }
.fd-plus:before { content: "\f003"; }
.fd-minus:before { content: "\f004"; }
.fd-checkmark:before { content: "\f005"; }
.fd-remove:before { content: "\f006"; }
.fd-mail:before { content: "\f007"; }
.fd-calendar:before { content: "\f008"; }
.fd-page:before { content: "\f009"; }
.fd-tools:before { content: "\f00a"; }
.fd-globe:before { content: "\f00b"; }
.fd-home:before { content: "\f00c"; }
.fd-quote:before { content: "\f00d"; }
.fd-people:before { content: "\f00e"; }
.fd-monitor:before { content: "\f00f"; }
.fd-laptop:before { content: "\f010"; }
.fd-phone:before { content: "\f011"; }
.fd-cloud:before { content: "\f012"; }
.fd-error:before { content: "\f013"; }
.fd-right-arrow:before { content: "\f014"; }
.fd-left-arrow:before { content: "\f015"; }
.fd-up-arrow:before { content: "\f016"; }
.fd-down-arrow:before { content: "\f017"; }
.fd-trash:before { content: "\f018"; }
.fd-add-doc:before { content: "\f019"; }
.fd-edit:before { content: "\f01a"; }
.fd-lock:before { content: "\f01b"; }
.fd-unlock:before { content: "\f01c"; }
.fd-refresh:before { content: "\f01d"; }
.fd-paper-clip:before { content: "\f01e"; }
.fd-video:before { content: "\f01f"; }
.fd-photo:before { content: "\f020"; }
.fd-graph:before { content: "\f021"; }
.fd-idea:before { content: "\f022"; }
.fd-mic:before { content: "\f023"; }
.fd-cart:before { content: "\f024"; }
.fd-address-book:before { content: "\f025"; }
.fd-compass:before { content: "\f026"; }
.fd-flag:before { content: "\f027"; }
.fd-location:before { content: "\f028"; }
.fd-clock:before { content: "\f029"; }
.fd-folder:before { content: "\f02a"; }
.fd-inbox:before { content: "\f02b"; }
.fd-website:before { content: "\f02c"; }
.fd-smiley:before { content: "\f02d"; }
.fd-search:before { content: "\f02e"; }
@font-face { font-family: "GeneralFoundicons"; src: url("https://github.com/zurb/foundation-icons/raw/master/foundation_icons_general/fonts/general_foundicons.eot"); src: url("https://github.com/zurb/foundation-icons/raw/master/foundation_icons_general/fonts/general_foundicons.eot?#iefix") format("embedded-opentype"), url("https://github.com/zurb/foundation-icons/raw/master/foundation_icons_general/fonts/general_foundicons.woff") format("woff"), url("https://github.com/zurb/foundation-icons/raw/master/foundation_icons_general/fonts/general_foundicons.ttf") format("truetype"); font-weight: normal; font-style: normal; speak: none; }
#foundicons-general .icon:before { font-size: 14px; }
.ti-location:before, .ti-phone:before, .ti-home:before, .ti-camera:before, .ti-left:before, .ti-right:before, .ti-up:before, .ti-down:before, .ti-refresh:before, .ti-sync:before, .ti-loop:before, .ti-repeat:before, .ti-shuffle:before, .ti-rss:before, .ti-cog:before, .ti-spanner:before, .ti-bar-chart:before, .ti-pie-chart:before, .ti-line-chart:before, .ti-views:before, .ti-zoom-in:before, .ti-zoom-out:before, .ti-export:before, .ti-user:before, .ti-group:before, .ti-microphone:before, .ti-globe:before, .ti-thumbs-up:before, .ti-thumbs-down:before, .ti-tag:before, .ti-tab:before, .ti-warning:before, .ti-tick:before, .ti-beta:before, .ti-unlock:before, .ti-lock:before, .ti-eject:before, .ti-move:before, .ti-expand:before, .ti-cancel:before, .ti-power:before, .ti-compass:before, .ti-radar:before, .ti-directions:before, .ti-pin:before, .ti-mute:before, .ti-volume:before, .ti-world:before, .ti-write:before, .ti-minus:before, .ti-equals:before, .ti-feed:before, .ti-battery-none:before, .ti-battery-low:before, .ti-battery-mid:before, .ti-battery-high:before, .ti-battery-power:before, .ti-plus:before, .ti-times:before, .ti-next:before, .ti-previous:before, .ti-edit:before, .ti-cut:before, .ti-anchor:before, .ti-bookmark:before, .ti-music:before, .ti-puzzle:before, .ti-archive:before, .ti-mobile:before, .ti-contrast:before, .ti-brightness:before, .ti-flag:before, .ti-info:before, .ti-unknown:before, .ti-chat:before, .ti-mail:before, .ti-message:before, .ti-delete:before, .ti-backspace:before, .ti-infinity:before, .ti-key:before, .ti-time:before, .ti-grid:before, .ti-list:before, .ti-heart:before, .ti-star:before, .ti-back:before, .ti-forward:before { line-height: 1em; font-family: "typicons"; font-weight: normal; font-style: normal; display: inline-block; text-decoration: none; vertical-align: middle; text-rendering: optimizeLegibility !important; -webkit-font-smoothing: antialiased !important; }
.ti-location:before { content: "A"; }
.ti-phone:before { content: "B"; }
.ti-home:before { content: "C"; }
.ti-camera:before { content: "D"; }
.ti-left:before { content: "E"; }
.ti-right:before { content: "F"; }
.ti-up:before { content: "G"; }
.ti-down:before { content: "H"; }
.ti-refresh:before { content: "I"; }
.ti-sync:before { content: "J"; }
.ti-loop:before { content: "K"; }
.ti-repeat:before { content: "L"; }
.ti-shuffle:before { content: "M"; }
.ti-rss:before { content: "N"; }
.ti-cog:before { content: "O"; }
.ti-spanner:before { content: "P"; }
.ti-bar-chart:before { content: "Q"; }
.ti-pie-chart:before { content: "R"; }
.ti-line-chart:before { content: "S"; }
.ti-views:before { content: "T"; }
.ti-zoom-in:before { content: "V"; }
.ti-zoom-out:before { content: "U"; }
.ti-export:before { content: "W"; }
.ti-user:before { content: "X"; }
.ti-group:before { content: "Y"; }
.ti-microphone:before { content: "Z"; }
.ti-globe:before { content: "a"; }
.ti-thumbs-up:before { content: "b"; }
.ti-thumbs-down:before { content: "c"; }
.ti-tag:before { content: "d"; }
.ti-tab:before { content: "e"; }
.ti-warning:before { content: "f"; }
.ti-tick:before { content: "g"; }
.ti-beta:before { content: "h"; }
.ti-unlock:before { content: "i"; }
.ti-lock:before { content: "j"; }
.ti-eject:before { content: "k"; }
.ti-move:before { content: "l"; }
.ti-expand:before { content: "m"; }
.ti-cancel:before { content: "n"; }
.ti-power:before { content: "o"; }
.ti-compass:before { content: "p"; }
.ti-radar:before { content: "q"; }
.ti-directions:before { content: "r"; }
.ti-pin:before { content: "s"; }
.ti-mute:before { content: "t"; }
.ti-volume:before { content: "u"; }
.ti-world:before { content: "v"; }
.ti-write:before { content: "w"; }
.ti-minus:before { content: "x"; }
.ti-equals:before { content: "y"; }
.ti-feed:before { content: "z"; }
.ti-battery-none:before { content: "0"; }
.ti-battery-low:before { content: "1"; }
.ti-battery-mid:before { content: "2"; }
.ti-battery-high:before { content: "3"; }
.ti-battery-power:before { content: "4"; }
.ti-plus:before { content: "5"; }
.ti-times:before { content: "6"; }
.ti-next:before { content: "7"; }
.ti-previous:before { content: "8"; }
.ti-edit:before { content: "9"; }
.ti-cut:before { content: "'"; }
.ti-anchor:before { content: "("; }
.ti-bookmark:before { content: ")"; }
.ti-music:before { content: "*"; }
.ti-puzzle:before { content: "+"; }
.ti-archive:before { content: ","; }
.ti-mobile:before { content: "-"; }
.ti-contrast:before { content: "."; }
.ti-brightness:before { content: "/"; }
.ti-flag:before { content: "{"; }
.ti-info:before { content: "|"; }
.ti-unknown:before { content: "}"; }
.ti-chat:before { content: "~"; }
.ti-mail:before { content: "["; }
.ti-message:before { content: "\005C"; }
.ti-delete:before { content: "]"; }
.ti-backspace:before { content: "^"; }
.ti-infinity:before { content: "-"; }
.ti-key:before { content: "$"; }
.ti-time:before { content: "%"; }
.ti-grid:before { content: "\0022"; }
.ti-list:before { content: "\0023"; }
.ti-heart:before { content: ";"; }
.ti-star:before { content: "="; }
.ti-back:before { content: "?"; }
.ti-forward:before { content: "@"; }
@font-face { font-family: "typicons"; src: url("http://typicons.com/media/fonts/typicons-regular-webfont.eot"); src: url("http://typicons.com/media/fonts/typicons-regular-webfont.eot?#iefix") format("embedded-opentype"), url("http://typicons.com/media/fonts/typicons-regular-webfont.woff") format("woff"), url("http://typicons.com/media/fonts/typicons-regular-webfont.ttf") format("truetype"), url("http://typicons.com/media/fonts/typicons-regular-webfont.svg#typicons") format("svg"); font-weight: normal; font-style: normal; speak: none; }
#typicons .icon:before { font-size: 24px; }
</style>
<!-- END CSS -->
</head>
<body>
<!-- START -->
<div class='pack' id='elusive'>
<h3><a class='title' href='https://github.com/rstacruz/sass_icon_fonts/blob/master/_elusive.sass'>elusive</a></h3>
<i class='icon el-briefcase'><span>briefcase</span></i>
<i class='icon el-bullhorn'><span>bullhorn</span></i>
<i class='icon el-calendar'><span>calendar</span></i>
<i class='icon el-calendar-sign'><span>calendar-sign</span></i>