font-awesome-rails 0.5.0 → 3.0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +71 -22
- data/font-awesome-rails.gemspec +1 -1
- data/lib/font-awesome-rails/version.rb +1 -1
- data/vendor/assets/fonts/FontAwesome.otf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.css +22 -1027
- data/vendor/assets/stylesheets/font-awesome-ie7.min.css +22 -0
- data/vendor/assets/stylesheets/font-awesome.css.erb +108 -46
- metadata +5 -4
data/README.md
CHANGED
@@ -1,41 +1,90 @@
|
|
1
1
|
# font-awesome-rails
|
2
2
|
|
3
|
-
|
3
|
+
font-awesome-rails provides the
|
4
|
+
[Font-Awesome](http://fortawesome.github.com/Font-Awesome/) web fonts and
|
5
|
+
stylesheets as a Rails engine for use with the asset pipeline.
|
4
6
|
|
5
|
-
|
7
|
+
## Installation
|
6
8
|
|
7
|
-
|
9
|
+
Add this to your Gemfile:
|
8
10
|
|
9
|
-
|
11
|
+
gem "font-awesome-rails"
|
10
12
|
|
11
|
-
|
13
|
+
and run `bundle install`.
|
12
14
|
|
13
|
-
|
15
|
+
## Usage
|
14
16
|
|
15
|
-
|
17
|
+
In your `application.css`, include the css file:
|
16
18
|
|
17
|
-
|
19
|
+
*= require font-awesome
|
18
20
|
|
19
|
-
|
21
|
+
If you prefer [SCSS](http://sass-lang.com/docs.html), add this to your
|
22
|
+
`application.css.scss` file:
|
20
23
|
|
24
|
+
@import "font-awesome";
|
21
25
|
|
26
|
+
If you use the
|
27
|
+
[Sass indented syntax](http://sass-lang.com/docs/yardoc/file.INDENTED_SYNTAX.html),
|
28
|
+
add this to your `application.css.sass` file:
|
22
29
|
|
23
|
-
|
30
|
+
@import font-awesome
|
24
31
|
|
25
|
-
|
32
|
+
## IE7 Support
|
26
33
|
|
34
|
+
If you must support IE7, use a
|
35
|
+
[conditional comment](http://en.wikipedia.org/wiki/Conditional_comment) to
|
36
|
+
provide the `font-awesome-ie7.min.css` stylesheet to Internet Explorer.
|
27
37
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
0.2.1 563a6f3 Forgot I had patched the css to reflect the font assetified location.
|
32
|
-
0.3.0 um, unknown. Aditya Sanghi pulled it in and I wasn't watching. Will make sure
|
33
|
-
that doesn't happen again.
|
34
|
-
0.4.0 05e5e5b Pullup request to 2.0 release of font-awesome
|
35
|
-
0.5.0 contrib from christhekeele Attempt to prepare request to 3.0 release of font-awesome
|
38
|
+
<!--[if lt IE 8]>
|
39
|
+
<%= stylesheet_link_tag "font-awesome-ie7.min.css, media: "all" %>
|
40
|
+
<![endif]-->
|
36
41
|
|
42
|
+
In haml, that would look like:
|
37
43
|
|
38
|
-
|
44
|
+
/[if lt IE 8]
|
45
|
+
= stylesheet_link_tag "font-awesome-ie7.min.css, media: "all"
|
39
46
|
|
40
|
-
|
41
|
-
|
47
|
+
Either way, Make sure that `font-awesome-ie7.min.css` is part of `config.assets.precompile` in your `environments/production.rb`.
|
48
|
+
|
49
|
+
config.assets.precompile += %w( font-awesome-ie7.min.css )
|
50
|
+
|
51
|
+
Alternatively, if you already have a CSS file provided by a conditional
|
52
|
+
comment (say, `application-ie.css`), you can include the ie7 styleshet in
|
53
|
+
that:
|
54
|
+
|
55
|
+
*= require font-awesome-ie7.min
|
56
|
+
|
57
|
+
## Changes
|
58
|
+
|
59
|
+
Version FontAwesome SHA1 Hash Notes / Other additions
|
60
|
+
-------- ---------------------- ------------------------
|
61
|
+
0.1.0 378b2d7 Simplest packaging as a gem as possible
|
62
|
+
0.2.0 563a6f3 Repackaged after their new release
|
63
|
+
0.2.1 563a6f3 Forgot I had patched the css to reflect the font assetified location.
|
64
|
+
0.3.0 UNKNOWN Aditya Sanghi pulled it in and I wasn't watching.
|
65
|
+
Will make sure that doesn't happen again.
|
66
|
+
0.4.0 05e5e5b Pullup request to 2.0 release of font-awesome
|
67
|
+
0.5.0 contrib, christhekeele Attempt to prepare request to 3.0 release of font-awesome
|
68
|
+
3.0.1.0 7d173f2 3.0.1 release
|
69
|
+
|
70
|
+
**note on version 0.2.0**: FontAwesome now includes scss and sass files, but
|
71
|
+
when I used them instead of the plain ol css file included in the project, it
|
72
|
+
wanted some compass libraries. I'm a fan of compass, but including an entire
|
73
|
+
tool like that in order to generate a @font_face tag seems a little much... I
|
74
|
+
don't want this gem to require compass for such a trivial thing, so we are
|
75
|
+
staying on the vanilla css file for now.
|
76
|
+
|
77
|
+
## Todo
|
78
|
+
|
79
|
+
* Add a mechanism to test that the assets provided are available on the path
|
80
|
+
expected.
|
81
|
+
|
82
|
+
## License
|
83
|
+
|
84
|
+
* The [Font Awesome](http://fortawesome.github.com/Font-Awesome) font is
|
85
|
+
licensed under the [SIL Open Font License](http://scripts.sil.org/OFL).
|
86
|
+
* [Font Awesome](http://fortawesome.github.com/Font-Awesome) CSS files are
|
87
|
+
licensed under the
|
88
|
+
[MIT License](http://opensource.org/licenses/mit-license.html).
|
89
|
+
* The remainder of the font-awesome-rails project is licensed under the
|
90
|
+
[MIT License](http://opensource.org/licenses/mit-license.html).
|
data/font-awesome-rails.gemspec
CHANGED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,1027 +1,22 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
}
|
23
|
-
a [class^=icon-],a [class*=" icon-"]
|
24
|
-
{
|
25
|
-
cursor:pointer;
|
26
|
-
}
|
27
|
-
ul.icons
|
28
|
-
{
|
29
|
-
text-indent:-1.5em;
|
30
|
-
margin-left:3em;
|
31
|
-
}
|
32
|
-
.icon-glass
|
33
|
-
{
|
34
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
35
|
-
}
|
36
|
-
.icon-music
|
37
|
-
{
|
38
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
39
|
-
}
|
40
|
-
.icon-search
|
41
|
-
{
|
42
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
43
|
-
}
|
44
|
-
.icon-envelope
|
45
|
-
{
|
46
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
47
|
-
}
|
48
|
-
.icon-heart
|
49
|
-
{
|
50
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
51
|
-
}
|
52
|
-
.icon-star
|
53
|
-
{
|
54
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
55
|
-
}
|
56
|
-
.icon-star-empty
|
57
|
-
{
|
58
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
59
|
-
}
|
60
|
-
.icon-user
|
61
|
-
{
|
62
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
63
|
-
}
|
64
|
-
.icon-film
|
65
|
-
{
|
66
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
67
|
-
}
|
68
|
-
.icon-th-large
|
69
|
-
{
|
70
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
71
|
-
}
|
72
|
-
.icon-th
|
73
|
-
{
|
74
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
75
|
-
}
|
76
|
-
.icon-th-list
|
77
|
-
{
|
78
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
79
|
-
}
|
80
|
-
.icon-ok
|
81
|
-
{
|
82
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
83
|
-
}
|
84
|
-
.icon-remove
|
85
|
-
{
|
86
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
87
|
-
}
|
88
|
-
.icon-zoom-in
|
89
|
-
{
|
90
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
91
|
-
}
|
92
|
-
.icon-zoom-out
|
93
|
-
{
|
94
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
95
|
-
}
|
96
|
-
.icon-off
|
97
|
-
{
|
98
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
99
|
-
}
|
100
|
-
.icon-signal
|
101
|
-
{
|
102
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
103
|
-
}
|
104
|
-
.icon-cog
|
105
|
-
{
|
106
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
107
|
-
}
|
108
|
-
.icon-trash
|
109
|
-
{
|
110
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
111
|
-
}
|
112
|
-
.icon-home
|
113
|
-
{
|
114
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
115
|
-
}
|
116
|
-
.icon-file
|
117
|
-
{
|
118
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
119
|
-
}
|
120
|
-
.icon-time
|
121
|
-
{
|
122
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
123
|
-
}
|
124
|
-
.icon-road
|
125
|
-
{
|
126
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
127
|
-
}
|
128
|
-
.icon-download-alt
|
129
|
-
{
|
130
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
131
|
-
}
|
132
|
-
.icon-download
|
133
|
-
{
|
134
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
135
|
-
}
|
136
|
-
.icon-upload
|
137
|
-
{
|
138
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
139
|
-
}
|
140
|
-
.icon-inbox
|
141
|
-
{
|
142
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
143
|
-
}
|
144
|
-
.icon-play-circle
|
145
|
-
{
|
146
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
147
|
-
}
|
148
|
-
.icon-repeat
|
149
|
-
{
|
150
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
151
|
-
}
|
152
|
-
.icon-refresh
|
153
|
-
{
|
154
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
155
|
-
}
|
156
|
-
.icon-list-alt
|
157
|
-
{
|
158
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
159
|
-
}
|
160
|
-
.icon-lock
|
161
|
-
{
|
162
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
163
|
-
}
|
164
|
-
.icon-flag
|
165
|
-
{
|
166
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
167
|
-
}
|
168
|
-
.icon-headphones
|
169
|
-
{
|
170
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
171
|
-
}
|
172
|
-
.icon-volume-off
|
173
|
-
{
|
174
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
175
|
-
}
|
176
|
-
.icon-volume-down
|
177
|
-
{
|
178
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
179
|
-
}
|
180
|
-
.icon-volume-up
|
181
|
-
{
|
182
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
183
|
-
}
|
184
|
-
.icon-qrcode
|
185
|
-
{
|
186
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
187
|
-
}
|
188
|
-
.icon-barcode
|
189
|
-
{
|
190
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
191
|
-
}
|
192
|
-
.icon-tag
|
193
|
-
{
|
194
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
195
|
-
}
|
196
|
-
.icon-tags
|
197
|
-
{
|
198
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
199
|
-
}
|
200
|
-
.icon-book
|
201
|
-
{
|
202
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
203
|
-
}
|
204
|
-
.icon-bookmark
|
205
|
-
{
|
206
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
207
|
-
}
|
208
|
-
.icon-print
|
209
|
-
{
|
210
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
211
|
-
}
|
212
|
-
.icon-camera
|
213
|
-
{
|
214
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
215
|
-
}
|
216
|
-
.icon-font
|
217
|
-
{
|
218
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
219
|
-
}
|
220
|
-
.icon-bold
|
221
|
-
{
|
222
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
223
|
-
}
|
224
|
-
.icon-italic
|
225
|
-
{
|
226
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
227
|
-
}
|
228
|
-
.icon-text-height
|
229
|
-
{
|
230
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
231
|
-
}
|
232
|
-
.icon-text-width
|
233
|
-
{
|
234
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
235
|
-
}
|
236
|
-
.icon-align-left
|
237
|
-
{
|
238
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
239
|
-
}
|
240
|
-
.icon-align-center
|
241
|
-
{
|
242
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
243
|
-
}
|
244
|
-
.icon-align-right
|
245
|
-
{
|
246
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
247
|
-
}
|
248
|
-
.icon-align-justify
|
249
|
-
{
|
250
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
251
|
-
}
|
252
|
-
.icon-list
|
253
|
-
{
|
254
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
255
|
-
}
|
256
|
-
.icon-indent-left
|
257
|
-
{
|
258
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
259
|
-
}
|
260
|
-
.icon-indent-right
|
261
|
-
{
|
262
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
263
|
-
}
|
264
|
-
.icon-facetime-video
|
265
|
-
{
|
266
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
267
|
-
}
|
268
|
-
.icon-picture
|
269
|
-
{
|
270
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
271
|
-
}
|
272
|
-
.icon-pencil
|
273
|
-
{
|
274
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
275
|
-
}
|
276
|
-
.icon-map-marker
|
277
|
-
{
|
278
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
279
|
-
}
|
280
|
-
.icon-adjust
|
281
|
-
{
|
282
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
283
|
-
}
|
284
|
-
.icon-tint
|
285
|
-
{
|
286
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
287
|
-
}
|
288
|
-
.icon-edit
|
289
|
-
{
|
290
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
291
|
-
}
|
292
|
-
.icon-share
|
293
|
-
{
|
294
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
295
|
-
}
|
296
|
-
.icon-check
|
297
|
-
{
|
298
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
299
|
-
}
|
300
|
-
.icon-move
|
301
|
-
{
|
302
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
303
|
-
}
|
304
|
-
.icon-step-backward
|
305
|
-
{
|
306
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
307
|
-
}
|
308
|
-
.icon-fast-backward
|
309
|
-
{
|
310
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
311
|
-
}
|
312
|
-
.icon-backward
|
313
|
-
{
|
314
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
315
|
-
}
|
316
|
-
.icon-play
|
317
|
-
{
|
318
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
319
|
-
}
|
320
|
-
.icon-pause
|
321
|
-
{
|
322
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
323
|
-
}
|
324
|
-
.icon-stop
|
325
|
-
{
|
326
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
327
|
-
}
|
328
|
-
.icon-forward
|
329
|
-
{
|
330
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
331
|
-
}
|
332
|
-
.icon-fast-forward
|
333
|
-
{
|
334
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
335
|
-
}
|
336
|
-
.icon-step-forward
|
337
|
-
{
|
338
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
339
|
-
}
|
340
|
-
.icon-eject
|
341
|
-
{
|
342
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
343
|
-
}
|
344
|
-
.icon-chevron-left
|
345
|
-
{
|
346
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
347
|
-
}
|
348
|
-
.icon-chevron-right
|
349
|
-
{
|
350
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
351
|
-
}
|
352
|
-
.icon-plus-sign
|
353
|
-
{
|
354
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
355
|
-
}
|
356
|
-
.icon-minus-sign
|
357
|
-
{
|
358
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
359
|
-
}
|
360
|
-
.icon-remove-sign
|
361
|
-
{
|
362
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
363
|
-
}
|
364
|
-
.icon-ok-sign
|
365
|
-
{
|
366
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
367
|
-
}
|
368
|
-
.icon-question-sign
|
369
|
-
{
|
370
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
371
|
-
}
|
372
|
-
.icon-info-sign
|
373
|
-
{
|
374
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
375
|
-
}
|
376
|
-
.icon-screenshot
|
377
|
-
{
|
378
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
379
|
-
}
|
380
|
-
.icon-remove-circle
|
381
|
-
{
|
382
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
383
|
-
}
|
384
|
-
.icon-ok-circle
|
385
|
-
{
|
386
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
387
|
-
}
|
388
|
-
.icon-ban-circle
|
389
|
-
{
|
390
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
391
|
-
}
|
392
|
-
.icon-arrow-left
|
393
|
-
{
|
394
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
395
|
-
}
|
396
|
-
.icon-arrow-right
|
397
|
-
{
|
398
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
399
|
-
}
|
400
|
-
.icon-arrow-up
|
401
|
-
{
|
402
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
403
|
-
}
|
404
|
-
.icon-arrow-down
|
405
|
-
{
|
406
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
407
|
-
}
|
408
|
-
.icon-share-alt
|
409
|
-
{
|
410
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
411
|
-
}
|
412
|
-
.icon-resize-full
|
413
|
-
{
|
414
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
415
|
-
}
|
416
|
-
.icon-resize-small
|
417
|
-
{
|
418
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
419
|
-
}
|
420
|
-
.icon-plus
|
421
|
-
{
|
422
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
423
|
-
}
|
424
|
-
.icon-minus
|
425
|
-
{
|
426
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
427
|
-
}
|
428
|
-
.icon-asterisk
|
429
|
-
{
|
430
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
431
|
-
}
|
432
|
-
.icon-exclamation-sign
|
433
|
-
{
|
434
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
435
|
-
}
|
436
|
-
.icon-gift
|
437
|
-
{
|
438
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
439
|
-
}
|
440
|
-
.icon-leaf
|
441
|
-
{
|
442
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
443
|
-
}
|
444
|
-
.icon-fire
|
445
|
-
{
|
446
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
447
|
-
}
|
448
|
-
.icon-eye-open
|
449
|
-
{
|
450
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
451
|
-
}
|
452
|
-
.icon-eye-close
|
453
|
-
{
|
454
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
455
|
-
}
|
456
|
-
.icon-warning-sign
|
457
|
-
{
|
458
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
459
|
-
}
|
460
|
-
.icon-plane
|
461
|
-
{
|
462
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
463
|
-
}
|
464
|
-
.icon-calendar
|
465
|
-
{
|
466
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
467
|
-
}
|
468
|
-
.icon-random
|
469
|
-
{
|
470
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
471
|
-
}
|
472
|
-
.icon-comment
|
473
|
-
{
|
474
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
475
|
-
}
|
476
|
-
.icon-magnet
|
477
|
-
{
|
478
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
479
|
-
}
|
480
|
-
.icon-chevron-up
|
481
|
-
{
|
482
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
483
|
-
}
|
484
|
-
.icon-chevron-down
|
485
|
-
{
|
486
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
487
|
-
}
|
488
|
-
.icon-retweet
|
489
|
-
{
|
490
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
491
|
-
}
|
492
|
-
.icon-shopping-cart
|
493
|
-
{
|
494
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
495
|
-
}
|
496
|
-
.icon-folder-close
|
497
|
-
{
|
498
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
499
|
-
}
|
500
|
-
.icon-folder-open
|
501
|
-
{
|
502
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
503
|
-
}
|
504
|
-
.icon-resize-vertical
|
505
|
-
{
|
506
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
507
|
-
}
|
508
|
-
.icon-resize-horizontal
|
509
|
-
{
|
510
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
511
|
-
}
|
512
|
-
.icon-bar-chart
|
513
|
-
{
|
514
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
515
|
-
}
|
516
|
-
.icon-twitter-sign
|
517
|
-
{
|
518
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
519
|
-
}
|
520
|
-
.icon-facebook-sign
|
521
|
-
{
|
522
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
523
|
-
}
|
524
|
-
.icon-camera-retro
|
525
|
-
{
|
526
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
527
|
-
}
|
528
|
-
.icon-key
|
529
|
-
{
|
530
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
531
|
-
}
|
532
|
-
.icon-cogs
|
533
|
-
{
|
534
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
535
|
-
}
|
536
|
-
.icon-comments
|
537
|
-
{
|
538
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
539
|
-
}
|
540
|
-
.icon-thumbs-up
|
541
|
-
{
|
542
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
543
|
-
}
|
544
|
-
.icon-thumbs-down
|
545
|
-
{
|
546
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
547
|
-
}
|
548
|
-
.icon-star-half
|
549
|
-
{
|
550
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
551
|
-
}
|
552
|
-
.icon-heart-empty
|
553
|
-
{
|
554
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
555
|
-
}
|
556
|
-
.icon-signout
|
557
|
-
{
|
558
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
559
|
-
}
|
560
|
-
.icon-linkedin-sign
|
561
|
-
{
|
562
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
563
|
-
}
|
564
|
-
.icon-pushpin
|
565
|
-
{
|
566
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
567
|
-
}
|
568
|
-
.icon-external-link
|
569
|
-
{
|
570
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
571
|
-
}
|
572
|
-
.icon-signin
|
573
|
-
{
|
574
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
575
|
-
}
|
576
|
-
.icon-trophy
|
577
|
-
{
|
578
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
579
|
-
}
|
580
|
-
.icon-github-sign
|
581
|
-
{
|
582
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
583
|
-
}
|
584
|
-
.icon-upload-alt
|
585
|
-
{
|
586
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
587
|
-
}
|
588
|
-
.icon-lemon
|
589
|
-
{
|
590
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
591
|
-
}
|
592
|
-
.icon-phone
|
593
|
-
{
|
594
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
595
|
-
}
|
596
|
-
.icon-check-empty
|
597
|
-
{
|
598
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
599
|
-
}
|
600
|
-
.icon-bookmark-empty
|
601
|
-
{
|
602
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
603
|
-
}
|
604
|
-
.icon-phone-sign
|
605
|
-
{
|
606
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
607
|
-
}
|
608
|
-
.icon-twitter
|
609
|
-
{
|
610
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
611
|
-
}
|
612
|
-
.icon-facebook
|
613
|
-
{
|
614
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
615
|
-
}
|
616
|
-
.icon-github
|
617
|
-
{
|
618
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
619
|
-
}
|
620
|
-
.icon-unlock
|
621
|
-
{
|
622
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
623
|
-
}
|
624
|
-
.icon-credit-card
|
625
|
-
{
|
626
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
627
|
-
}
|
628
|
-
.icon-rss
|
629
|
-
{
|
630
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
631
|
-
}
|
632
|
-
.icon-hdd
|
633
|
-
{
|
634
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
635
|
-
}
|
636
|
-
.icon-bullhorn
|
637
|
-
{
|
638
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
639
|
-
}
|
640
|
-
.icon-bell
|
641
|
-
{
|
642
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
643
|
-
}
|
644
|
-
.icon-certificate
|
645
|
-
{
|
646
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
647
|
-
}
|
648
|
-
.icon-hand-right
|
649
|
-
{
|
650
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
651
|
-
}
|
652
|
-
.icon-hand-left
|
653
|
-
{
|
654
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
655
|
-
}
|
656
|
-
.icon-hand-up
|
657
|
-
{
|
658
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
659
|
-
}
|
660
|
-
.icon-hand-down
|
661
|
-
{
|
662
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
663
|
-
}
|
664
|
-
.icon-circle-arrow-left
|
665
|
-
{
|
666
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
667
|
-
}
|
668
|
-
.icon-circle-arrow-right
|
669
|
-
{
|
670
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
671
|
-
}
|
672
|
-
.icon-circle-arrow-up
|
673
|
-
{
|
674
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
675
|
-
}
|
676
|
-
.icon-circle-arrow-down
|
677
|
-
{
|
678
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
679
|
-
}
|
680
|
-
.icon-globe
|
681
|
-
{
|
682
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
683
|
-
}
|
684
|
-
.icon-wrench
|
685
|
-
{
|
686
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
687
|
-
}
|
688
|
-
.icon-tasks
|
689
|
-
{
|
690
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
691
|
-
}
|
692
|
-
.icon-filter
|
693
|
-
{
|
694
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
695
|
-
}
|
696
|
-
.icon-briefcase
|
697
|
-
{
|
698
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
699
|
-
}
|
700
|
-
.icon-fullscreen
|
701
|
-
{
|
702
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
703
|
-
}
|
704
|
-
.icon-group
|
705
|
-
{
|
706
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
707
|
-
}
|
708
|
-
.icon-link
|
709
|
-
{
|
710
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
711
|
-
}
|
712
|
-
.icon-cloud
|
713
|
-
{
|
714
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
715
|
-
}
|
716
|
-
.icon-beaker
|
717
|
-
{
|
718
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
719
|
-
}
|
720
|
-
.icon-cut
|
721
|
-
{
|
722
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
723
|
-
}
|
724
|
-
.icon-copy
|
725
|
-
{
|
726
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
727
|
-
}
|
728
|
-
.icon-paper-clip
|
729
|
-
{
|
730
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
731
|
-
}
|
732
|
-
.icon-save
|
733
|
-
{
|
734
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
735
|
-
}
|
736
|
-
.icon-sign-blank
|
737
|
-
{
|
738
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
739
|
-
}
|
740
|
-
.icon-reorder
|
741
|
-
{
|
742
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
743
|
-
}
|
744
|
-
.icon-list-ul
|
745
|
-
{
|
746
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
747
|
-
}
|
748
|
-
.icon-list-ol
|
749
|
-
{
|
750
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
751
|
-
}
|
752
|
-
.icon-strikethrough
|
753
|
-
{
|
754
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
755
|
-
}
|
756
|
-
.icon-underline
|
757
|
-
{
|
758
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
759
|
-
}
|
760
|
-
.icon-table
|
761
|
-
{
|
762
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
763
|
-
}
|
764
|
-
.icon-magic
|
765
|
-
{
|
766
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
767
|
-
}
|
768
|
-
.icon-truck
|
769
|
-
{
|
770
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
771
|
-
}
|
772
|
-
.icon-pinterest
|
773
|
-
{
|
774
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
775
|
-
}
|
776
|
-
.icon-pinterest-sign
|
777
|
-
{
|
778
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
779
|
-
}
|
780
|
-
.icon-google-plus-sign
|
781
|
-
{
|
782
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
783
|
-
}
|
784
|
-
.icon-google-plus
|
785
|
-
{
|
786
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
787
|
-
}
|
788
|
-
.icon-money
|
789
|
-
{
|
790
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
791
|
-
}
|
792
|
-
.icon-caret-down
|
793
|
-
{
|
794
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
795
|
-
}
|
796
|
-
.icon-caret-up
|
797
|
-
{
|
798
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
799
|
-
}
|
800
|
-
.icon-caret-left
|
801
|
-
{
|
802
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
803
|
-
}
|
804
|
-
.icon-caret-right
|
805
|
-
{
|
806
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
807
|
-
}
|
808
|
-
.icon-columns
|
809
|
-
{
|
810
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
811
|
-
}
|
812
|
-
.icon-sort
|
813
|
-
{
|
814
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
815
|
-
}
|
816
|
-
.icon-sort-down
|
817
|
-
{
|
818
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
819
|
-
}
|
820
|
-
.icon-sort-up
|
821
|
-
{
|
822
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
823
|
-
}
|
824
|
-
.icon-envelope-alt
|
825
|
-
{
|
826
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
827
|
-
}
|
828
|
-
.icon-linkedin
|
829
|
-
{
|
830
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
831
|
-
}
|
832
|
-
.icon-undo
|
833
|
-
{
|
834
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
835
|
-
}
|
836
|
-
.icon-legal
|
837
|
-
{
|
838
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
839
|
-
}
|
840
|
-
.icon-dashboard
|
841
|
-
{
|
842
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
843
|
-
}
|
844
|
-
.icon-comment-alt
|
845
|
-
{
|
846
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
847
|
-
}
|
848
|
-
.icon-comments-alt
|
849
|
-
{
|
850
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
851
|
-
}
|
852
|
-
.icon-bolt
|
853
|
-
{
|
854
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
855
|
-
}
|
856
|
-
.icon-sitemap
|
857
|
-
{
|
858
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
859
|
-
}
|
860
|
-
.icon-umbrella
|
861
|
-
{
|
862
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
863
|
-
}
|
864
|
-
.icon-paste
|
865
|
-
{
|
866
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
867
|
-
}
|
868
|
-
.icon-lightbulb
|
869
|
-
{
|
870
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
871
|
-
}
|
872
|
-
.icon-exchange
|
873
|
-
{
|
874
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
875
|
-
}
|
876
|
-
.icon-cloud-download
|
877
|
-
{
|
878
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
879
|
-
}
|
880
|
-
.icon-cloud-upload
|
881
|
-
{
|
882
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
883
|
-
}
|
884
|
-
.icon-user-md
|
885
|
-
{
|
886
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
887
|
-
}
|
888
|
-
.icon-stethoscope
|
889
|
-
{
|
890
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
891
|
-
}
|
892
|
-
.icon-suitcase
|
893
|
-
{
|
894
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
895
|
-
}
|
896
|
-
.icon-bell-alt
|
897
|
-
{
|
898
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
899
|
-
}
|
900
|
-
.icon-coffee
|
901
|
-
{
|
902
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
903
|
-
}
|
904
|
-
.icon-food
|
905
|
-
{
|
906
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
907
|
-
}
|
908
|
-
.icon-file-alt
|
909
|
-
{
|
910
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
911
|
-
}
|
912
|
-
.icon-building
|
913
|
-
{
|
914
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
915
|
-
}
|
916
|
-
.icon-hospital
|
917
|
-
{
|
918
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
919
|
-
}
|
920
|
-
.icon-ambulance
|
921
|
-
{
|
922
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
923
|
-
}
|
924
|
-
.icon-medkit
|
925
|
-
{
|
926
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
927
|
-
}
|
928
|
-
.icon-fighter-jet
|
929
|
-
{
|
930
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
931
|
-
}
|
932
|
-
.icon-beer
|
933
|
-
{
|
934
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
935
|
-
}
|
936
|
-
.icon-h-sign
|
937
|
-
{
|
938
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
939
|
-
}
|
940
|
-
.icon-plus-sign-alt
|
941
|
-
{
|
942
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
943
|
-
}
|
944
|
-
.icon-double-angle-left
|
945
|
-
{
|
946
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
947
|
-
}
|
948
|
-
.icon-double-angle-right
|
949
|
-
{
|
950
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
951
|
-
}
|
952
|
-
.icon-double-angle-up
|
953
|
-
{
|
954
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
955
|
-
}
|
956
|
-
.icon-double-angle-down
|
957
|
-
{
|
958
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
959
|
-
}
|
960
|
-
.icon-angle-left
|
961
|
-
{
|
962
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
963
|
-
}
|
964
|
-
.icon-angle-right
|
965
|
-
{
|
966
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
967
|
-
}
|
968
|
-
.icon-angle-up
|
969
|
-
{
|
970
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
971
|
-
}
|
972
|
-
.icon-angle-down
|
973
|
-
{
|
974
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
975
|
-
}
|
976
|
-
.icon-desktop
|
977
|
-
{
|
978
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
979
|
-
}
|
980
|
-
.icon-laptop
|
981
|
-
{
|
982
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
983
|
-
}
|
984
|
-
.icon-tablet
|
985
|
-
{
|
986
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
987
|
-
}
|
988
|
-
.icon-mobile-phone
|
989
|
-
{
|
990
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
991
|
-
}
|
992
|
-
.icon-circle-blank
|
993
|
-
{
|
994
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
995
|
-
}
|
996
|
-
.icon-quote-left
|
997
|
-
{
|
998
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
999
|
-
}
|
1000
|
-
.icon-quote-right
|
1001
|
-
{
|
1002
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1003
|
-
}
|
1004
|
-
.icon-spinner
|
1005
|
-
{
|
1006
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1007
|
-
}
|
1008
|
-
.icon-circle
|
1009
|
-
{
|
1010
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1011
|
-
}
|
1012
|
-
.icon-reply
|
1013
|
-
{
|
1014
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1015
|
-
}
|
1016
|
-
.icon-github-alt
|
1017
|
-
{
|
1018
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1019
|
-
}
|
1020
|
-
.icon-folder-close-alt
|
1021
|
-
{
|
1022
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1023
|
-
}
|
1024
|
-
.icon-folder-open-alt
|
1025
|
-
{
|
1026
|
-
zoom:expression(this.runtimeStyle['zoom']='1',this.innerHTML='');
|
1027
|
-
}
|
1
|
+
/*!
|
2
|
+
* Font Awesome 3.0.1
|
3
|
+
* the iconic font designed for use with Twitter Bootstrap
|
4
|
+
* -------------------------------------------------------
|
5
|
+
* The full suite of pictographic icons, examples, and documentation
|
6
|
+
* can be found at: http://fortawesome.github.com/Font-Awesome/
|
7
|
+
*
|
8
|
+
* License
|
9
|
+
* -------------------------------------------------------
|
10
|
+
* - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
|
11
|
+
* - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
|
12
|
+
* http://opensource.org/licenses/mit-license.html
|
13
|
+
* - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
|
14
|
+
* - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
15
|
+
* "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
|
16
|
+
|
17
|
+
* Contact
|
18
|
+
* -------------------------------------------------------
|
19
|
+
* Email: dave@davegandy.com
|
20
|
+
* Twitter: http://twitter.com/fortaweso_me
|
21
|
+
* Work: Lead Product Designer @ http://kyruus.com
|
22
|
+
*/[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 = '')}
|