font_awesome 2.0.1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -10,6 +10,12 @@ Add this line to your application's Gemfile:
10
10
  gem 'font_awesome'
11
11
  ```
12
12
 
13
+ Or if you prefer Font Awesome 2.0, use:
14
+
15
+ ```ruby
16
+ gem 'font_awesome', '~> 2.0'
17
+ ```
18
+
13
19
  And then execute:
14
20
 
15
21
  $ bundle
@@ -34,7 +40,7 @@ Check out the [Font Awesome website](http://fortawesome.github.com/Font-Awesome/
34
40
 
35
41
  ## Versioning
36
42
 
37
- The versioning of this gem tracks the versioning of Font Awesome starting at 2.0.
43
+ The versioning of this gem tracks the versioning of Font Awesome starting at 2.0. Currently, the master branch is on 3.0.
38
44
 
39
45
  ## Modifications
40
46
 
@@ -1,3 +1,3 @@
1
1
  module FontAwesome
2
- VERSION = "2.0.1"
2
+ VERSION = "3.0.0"
3
3
  end
@@ -1,645 +1,23 @@
1
- [class^="icon-"],
2
- [class*=" icon-"] {
3
- font-family: FontAwesome;
4
- font-style: normal;
5
- font-weight: normal;
6
- }
7
- .btn.dropdown-toggle [class^="icon-"],
8
- .btn.dropdown-toggle [class*=" icon-"] {
9
- /* keeps button heights with and without icons the same */
1
+ /* Font Awesome 3.0
2
+ the iconic font designed for use with Twitter Bootstrap
3
+ -------------------------------------------------------
4
+ The full suite of pictographic icons, examples, and documentation
5
+ can be found at: http://fortawesome.github.com/Font-Awesome/
10
6
 
11
- line-height: 1.4em;
12
- }
13
- .icon-large {
14
- font-size: 1.3333em;
15
- }
16
- .icon-glass {
17
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
18
- }
19
- .icon-music {
20
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
21
- }
22
- .icon-search {
23
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
24
- }
25
- .icon-envelope {
26
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
27
- }
28
- .icon-heart {
29
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
30
- }
31
- .icon-star {
32
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
33
- }
34
- .icon-star-empty {
35
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
36
- }
37
- .icon-user {
38
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
39
- }
40
- .icon-film {
41
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
42
- }
43
- .icon-th-large {
44
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
45
- }
46
- .icon-th {
47
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
48
- }
49
- .icon-th-list {
50
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
51
- }
52
- .icon-ok {
53
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
54
- }
55
- .icon-remove {
56
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
57
- }
58
- .icon-zoom-in {
59
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
60
- }
61
- .icon-zoom-out {
62
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
63
- }
64
- .icon-off {
65
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
66
- }
67
- .icon-signal {
68
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
69
- }
70
- .icon-cog {
71
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
72
- }
73
- .icon-trash {
74
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
75
- }
76
- .icon-home {
77
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
78
- }
79
- .icon-file {
80
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
81
- }
82
- .icon-time {
83
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
84
- }
85
- .icon-road {
86
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
87
- }
88
- .icon-download-alt {
89
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
90
- }
91
- .icon-download {
92
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
93
- }
94
- .icon-upload {
95
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
96
- }
97
- .icon-inbox {
98
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
99
- }
100
- .icon-play-circle {
101
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
102
- }
103
- .icon-repeat {
104
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
105
- }
106
- .icon-refresh {
107
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
108
- }
109
- .icon-list-alt {
110
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
111
- }
112
- .icon-lock {
113
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
114
- }
115
- .icon-flag {
116
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
117
- }
118
- .icon-headphones {
119
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
120
- }
121
- .icon-volume-off {
122
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
123
- }
124
- .icon-volume-down {
125
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
126
- }
127
- .icon-volume-up {
128
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
129
- }
130
- .icon-qrcode {
131
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
132
- }
133
- .icon-barcode {
134
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
135
- }
136
- .icon-tag {
137
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
138
- }
139
- .icon-tags {
140
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
141
- }
142
- .icon-book {
143
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
144
- }
145
- .icon-bookmark {
146
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
147
- }
148
- .icon-print {
149
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
150
- }
151
- .icon-camera {
152
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
153
- }
154
- .icon-font {
155
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
156
- }
157
- .icon-bold {
158
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
159
- }
160
- .icon-italic {
161
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
162
- }
163
- .icon-text-height {
164
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
165
- }
166
- .icon-text-width {
167
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
168
- }
169
- .icon-align-left {
170
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
171
- }
172
- .icon-align-center {
173
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
174
- }
175
- .icon-align-right {
176
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
177
- }
178
- .icon-align-justify {
179
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
180
- }
181
- .icon-list {
182
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
183
- }
184
- .icon-indent-left {
185
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
186
- }
187
- .icon-indent-right {
188
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
189
- }
190
- .icon-facetime-video {
191
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
192
- }
193
- .icon-picture {
194
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
195
- }
196
- .icon-pencil {
197
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
198
- }
199
- .icon-map-marker {
200
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
201
- }
202
- .icon-adjust {
203
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
204
- }
205
- .icon-tint {
206
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
207
- }
208
- .icon-edit {
209
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
210
- }
211
- .icon-share {
212
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
213
- }
214
- .icon-check {
215
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
216
- }
217
- .icon-move {
218
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
219
- }
220
- .icon-step-backward {
221
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
222
- }
223
- .icon-fast-backward {
224
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
225
- }
226
- .icon-backward {
227
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
228
- }
229
- .icon-play {
230
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
231
- }
232
- .icon-pause {
233
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
234
- }
235
- .icon-stop {
236
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
237
- }
238
- .icon-forward {
239
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
240
- }
241
- .icon-fast-forward {
242
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
243
- }
244
- .icon-step-forward {
245
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
246
- }
247
- .icon-eject {
248
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
249
- }
250
- .icon-chevron-left {
251
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
252
- }
253
- .icon-chevron-right {
254
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
255
- }
256
- .icon-plus-sign {
257
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
258
- }
259
- .icon-minus-sign {
260
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
261
- }
262
- .icon-remove-sign {
263
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
264
- }
265
- .icon-ok-sign {
266
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
267
- }
268
- .icon-question-sign {
269
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
270
- }
271
- .icon-info-sign {
272
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
273
- }
274
- .icon-screenshot {
275
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
276
- }
277
- .icon-remove-circle {
278
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
279
- }
280
- .icon-ok-circle {
281
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
282
- }
283
- .icon-ban-circle {
284
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
285
- }
286
- .icon-arrow-left {
287
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
288
- }
289
- .icon-arrow-right {
290
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
291
- }
292
- .icon-arrow-up {
293
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
294
- }
295
- .icon-arrow-down {
296
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
297
- }
298
- .icon-share-alt {
299
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
300
- }
301
- .icon-resize-full {
302
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
303
- }
304
- .icon-resize-small {
305
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
306
- }
307
- .icon-plus {
308
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
309
- }
310
- .icon-minus {
311
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
312
- }
313
- .icon-asterisk {
314
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
315
- }
316
- .icon-exclamation-sign {
317
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
318
- }
319
- .icon-gift {
320
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
321
- }
322
- .icon-leaf {
323
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
324
- }
325
- .icon-fire {
326
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
327
- }
328
- .icon-eye-open {
329
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
330
- }
331
- .icon-eye-close {
332
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
333
- }
334
- .icon-warning-sign {
335
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
336
- }
337
- .icon-plane {
338
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
339
- }
340
- .icon-calendar {
341
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
342
- }
343
- .icon-random {
344
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
345
- }
346
- .icon-comment {
347
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
348
- }
349
- .icon-magnet {
350
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
351
- }
352
- .icon-chevron-up {
353
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
354
- }
355
- .icon-chevron-down {
356
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
357
- }
358
- .icon-retweet {
359
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
360
- }
361
- .icon-shopping-cart {
362
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
363
- }
364
- .icon-folder-close {
365
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
366
- }
367
- .icon-folder-open {
368
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
369
- }
370
- .icon-resize-vertical {
371
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
372
- }
373
- .icon-resize-horizontal {
374
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
375
- }
376
- .icon-bar-chart {
377
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
378
- }
379
- .icon-twitter-sign {
380
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
381
- }
382
- .icon-facebook-sign {
383
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
384
- }
385
- .icon-camera-retro {
386
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
387
- }
388
- .icon-key {
389
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
390
- }
391
- .icon-cogs {
392
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
393
- }
394
- .icon-comments {
395
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
396
- }
397
- .icon-thumbs-up {
398
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
399
- }
400
- .icon-thumbs-down {
401
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
402
- }
403
- .icon-star-half {
404
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
405
- }
406
- .icon-heart-empty {
407
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
408
- }
409
- .icon-signout {
410
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
411
- }
412
- .icon-linkedin-sign {
413
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
414
- }
415
- .icon-pushpin {
416
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
417
- }
418
- .icon-external-link {
419
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
420
- }
421
- .icon-signin {
422
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
423
- }
424
- .icon-trophy {
425
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
426
- }
427
- .icon-github-sign {
428
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
429
- }
430
- .icon-upload-alt {
431
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
432
- }
433
- .icon-lemon {
434
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
435
- }
436
- .icon-phone {
437
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
438
- }
439
- .icon-check-empty {
440
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
441
- }
442
- .icon-bookmark-empty {
443
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
444
- }
445
- .icon-phone-sign {
446
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
447
- }
448
- .icon-twitter {
449
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
450
- }
451
- .icon-facebook {
452
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
453
- }
454
- .icon-github {
455
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
456
- }
457
- .icon-unlock {
458
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
459
- }
460
- .icon-credit-card {
461
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
462
- }
463
- .icon-rss {
464
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
465
- }
466
- .icon-hdd {
467
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
468
- }
469
- .icon-bullhorn {
470
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
471
- }
472
- .icon-bell {
473
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
474
- }
475
- .icon-certificate {
476
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
477
- }
478
- .icon-hand-right {
479
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
480
- }
481
- .icon-hand-left {
482
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
483
- }
484
- .icon-hand-up {
485
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
486
- }
487
- .icon-hand-down {
488
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
489
- }
490
- .icon-circle-arrow-left {
491
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
492
- }
493
- .icon-circle-arrow-right {
494
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
495
- }
496
- .icon-circle-arrow-up {
497
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
498
- }
499
- .icon-circle-arrow-down {
500
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
501
- }
502
- .icon-globe {
503
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
504
- }
505
- .icon-wrench {
506
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
507
- }
508
- .icon-tasks {
509
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
510
- }
511
- .icon-filter {
512
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
513
- }
514
- .icon-briefcase {
515
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
516
- }
517
- .icon-fullscreen {
518
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
519
- }
520
- .icon-group {
521
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
522
- }
523
- .icon-link {
524
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
525
- }
526
- .icon-cloud {
527
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
528
- }
529
- .icon-beaker {
530
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
531
- }
532
- .icon-cut {
533
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
534
- }
535
- .icon-copy {
536
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
537
- }
538
- .icon-paper-clip {
539
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
540
- }
541
- .icon-save {
542
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
543
- }
544
- .icon-sign-blank {
545
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
546
- }
547
- .icon-reorder {
548
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
549
- }
550
- .icon-list-ul {
551
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
552
- }
553
- .icon-list-ol {
554
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
555
- }
556
- .icon-strikethrough {
557
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
558
- }
559
- .icon-underline {
560
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
561
- }
562
- .icon-table {
563
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
564
- }
565
- .icon-magic {
566
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
567
- }
568
- .icon-truck {
569
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
570
- }
571
- .icon-pinterest {
572
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
573
- }
574
- .icon-pinterest-sign {
575
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
576
- }
577
- .icon-google-plus-sign {
578
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
579
- }
580
- .icon-google-plus {
581
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
582
- }
583
- .icon-money {
584
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
585
- }
586
- .icon-caret-down {
587
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
588
- }
589
- .icon-caret-up {
590
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
591
- }
592
- .icon-caret-left {
593
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
594
- }
595
- .icon-caret-right {
596
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
597
- }
598
- .icon-columns {
599
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
600
- }
601
- .icon-sort {
602
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
603
- }
604
- .icon-sort-down {
605
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
606
- }
607
- .icon-sort-up {
608
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
609
- }
610
- .icon-envelope-alt {
611
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
612
- }
613
- .icon-linkedin {
614
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
615
- }
616
- .icon-undo {
617
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
618
- }
619
- .icon-legal {
620
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
621
- }
622
- .icon-dashboard {
623
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
624
- }
625
- .icon-comment-alt {
626
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
627
- }
628
- .icon-comments-alt {
629
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
630
- }
631
- .icon-bolt {
632
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
633
- }
634
- .icon-sitemap {
635
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
636
- }
637
- .icon-umbrella {
638
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
639
- }
640
- .icon-paste {
641
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
642
- }
643
- .icon-user-md {
644
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' ');
645
- }
7
+ License
8
+ -------------------------------------------------------
9
+ • The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
10
+ • Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
11
+ http://opensource.org/licenses/mit-license.html
12
+ • The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
13
+ Attribution is no longer required in Font Awesome 3.0, but much appreciated:
14
+ "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
15
+
16
+ Contact
17
+ -------------------------------------------------------
18
+ Email: dave@davegandy.com
19
+ Twitter: http://twitter.com/fortaweso_me
20
+ Work: Lead Product Designer @ http://kyruus.com
21
+
22
+ */
23
+ [class^="icon-"],[class*=" icon-"]{padding-right:.3em}.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:-20%}.btn [class^="icon-"],.nav [class^="icon-"],.btn [class*=" icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;line-height:.9em}a [class^="icon-"],a [class*=" icon-"]{cursor:pointer}ul.icons{text-indent:-1.5em;margin-left:3em}.icon-glass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-music{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-search{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-film{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-large{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-in{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-out{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cog{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-home{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-time{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-road{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-inbox{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-repeat{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-refresh{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-flag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-headphones{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-qrcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-barcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tags{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-book{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-print{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-font{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-italic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-height{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-width{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-center{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-justify{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facetime-video{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-picture{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pencil{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-map-marker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-adjust{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tint{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-edit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-move{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pause{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eject{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-question-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-info-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-screenshot{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ban-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-full{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-asterisk{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exclamation-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-gift{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-leaf{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fire{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-warning-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plane{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-calendar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-random{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magnet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-retweet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-shopping-cart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-vertical{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-horizontal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bar-chart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera-retro{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-key{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cogs{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-half{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signout{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pushpin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-external-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trophy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lemon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-unlock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-credit-card{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-rss{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hdd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bullhorn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-certificate{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-globe{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-wrench{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tasks{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-filter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-briefcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fullscreen{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-group{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beaker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cut{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-copy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paper-clip{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-save{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sign-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reorder{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ul{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ol{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-strikethrough{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-underline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-table{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-truck{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-money{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-columns{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-undo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-legal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-dashboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bolt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sitemap{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-umbrella{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paste{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lightbulb{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exchange{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user-md{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stethoscope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-suitcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-coffee{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-food{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-building{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hospital{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ambulance{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-medkit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fighter-jet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-h-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-desktop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-laptop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tablet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-mobile-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-spinner{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reply{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}