font-awesome-rails 3.2.0.0 → 4.7.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +6 -14
- data/LICENSE +1 -1
- data/README.md +93 -55
- data/app/assets/fonts/FontAwesome.otf +0 -0
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +2668 -396
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/stylesheets/font-awesome.css.erb +1549 -678
- data/app/helpers/font_awesome/rails/icon_helper.rb +100 -0
- data/lib/font-awesome-rails/engine.rb +3 -5
- data/lib/font-awesome-rails/version.rb +4 -5
- data/test/dummy/.gitignore +2 -0
- data/test/dummy/app/assets/config/manifest.js +3 -0
- data/test/dummy/app/assets/stylesheets/sprockets-require.css +1 -1
- data/test/dummy/app/controllers/pages_controller.rb +2 -0
- data/test/dummy/app/views/pages/icons.html.erb +3 -0
- data/test/dummy/config/application.rb +1 -0
- data/test/dummy/config/initializers/secret_token.rb +16 -2
- data/test/dummy/config/routes.rb +1 -0
- data/test/font_awesome_rails_test.rb +19 -11
- data/test/icon_helper_test.rb +138 -0
- metadata +47 -54
- data/app/assets/stylesheets/font-awesome-ie7.css +0 -1197
- data/app/assets/stylesheets/font-awesome-ie7.min.css +0 -382
- data/test/dummy/log/test.log +0 -9511
@@ -1,1471 +1,2342 @@
|
|
1
1
|
/*!
|
2
|
-
* Font Awesome
|
3
|
-
*
|
4
|
-
* ------------------------------------------------------------------------------
|
5
|
-
* The full suite of pictographic icons, examples, and documentation can be
|
6
|
-
* found at http://fontawesome.io. Stay up to date on Twitter at
|
7
|
-
* http://twitter.com/fontawesome.
|
8
|
-
*
|
9
|
-
* License
|
10
|
-
* ------------------------------------------------------------------------------
|
11
|
-
* - The Font Awesome font is licensed under SIL OFL 1.1 -
|
12
|
-
* http://scripts.sil.org/OFL
|
13
|
-
* - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
|
14
|
-
* http://opensource.org/licenses/mit-license.html
|
15
|
-
* - Font Awesome documentation licensed under CC BY 3.0 -
|
16
|
-
* http://creativecommons.org/licenses/by/3.0/
|
17
|
-
* - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
|
18
|
-
* "Font Awesome by Dave Gandy - http://fontawesome.io"
|
19
|
-
*
|
20
|
-
* Author - Dave Gandy
|
21
|
-
* ------------------------------------------------------------------------------
|
22
|
-
* Email: dave@fontawesome.io
|
23
|
-
* Twitter: http://twitter.com/byscuits
|
24
|
-
* Work: Lead Product Designer @ Kyruus - http://kyruus.com
|
2
|
+
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3
|
+
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
25
4
|
*/
|
26
5
|
/* FONT PATH
|
27
6
|
* -------------------------- */
|
7
|
+
//= depend_on_asset "fontawesome-webfont.eot"
|
8
|
+
//= depend_on_asset "fontawesome-webfont.woff2"
|
9
|
+
//= depend_on_asset "fontawesome-webfont.woff"
|
10
|
+
//= depend_on_asset "fontawesome-webfont.ttf"
|
11
|
+
//= depend_on_asset "fontawesome-webfont.svg"
|
28
12
|
@font-face {
|
29
13
|
font-family: 'FontAwesome';
|
30
14
|
src: url('<%= font_path('fontawesome-webfont.eot') %>');
|
31
|
-
src: url('<%= font_path('fontawesome-webfont.eot') %>?#iefix') format('embedded-opentype'), url('<%= font_path('fontawesome-webfont.woff') %>') format('woff'), url('<%= font_path('fontawesome-webfont.ttf') %>') format('truetype'), url('<%= font_path('fontawesome-webfont.svg
|
15
|
+
src: url('<%= font_path('fontawesome-webfont.eot') %>?#iefix') format('embedded-opentype'), url('<%= font_path('fontawesome-webfont.woff2') %>') format('woff2'), url('<%= font_path('fontawesome-webfont.woff') %>') format('woff'), url('<%= font_path('fontawesome-webfont.ttf') %>') format('truetype'), url('<%= font_path('fontawesome-webfont.svg') %>#fontawesomeregular') format('svg');
|
32
16
|
font-weight: normal;
|
33
17
|
font-style: normal;
|
34
18
|
}
|
35
|
-
|
36
|
-
* -------------------------- */
|
37
|
-
[class^="icon-"],
|
38
|
-
[class*=" icon-"] {
|
39
|
-
font-family: FontAwesome;
|
40
|
-
font-weight: normal;
|
41
|
-
font-style: normal;
|
42
|
-
text-decoration: inherit;
|
43
|
-
-webkit-font-smoothing: antialiased;
|
44
|
-
*margin-right: .3em;
|
45
|
-
}
|
46
|
-
[class^="icon-"]:before,
|
47
|
-
[class*=" icon-"]:before {
|
48
|
-
text-decoration: inherit;
|
19
|
+
.fa {
|
49
20
|
display: inline-block;
|
50
|
-
|
51
|
-
|
21
|
+
font: normal normal normal 14px/1 FontAwesome;
|
22
|
+
font-size: inherit;
|
23
|
+
text-rendering: auto;
|
24
|
+
-webkit-font-smoothing: antialiased;
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
52
26
|
}
|
53
27
|
/* makes the font 33% larger relative to the icon container */
|
54
|
-
.
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
/* makes sure icons active on rollover in links */
|
59
|
-
a [class^="icon-"],
|
60
|
-
a [class*=" icon-"] {
|
61
|
-
display: inline;
|
62
|
-
}
|
63
|
-
/* increased font size for icon-large */
|
64
|
-
[class^="icon-"].icon-fixed-width,
|
65
|
-
[class*=" icon-"].icon-fixed-width {
|
66
|
-
display: inline-block;
|
67
|
-
width: 1.1428571428571428em;
|
68
|
-
text-align: right;
|
69
|
-
padding-right: 0.2857142857142857em;
|
28
|
+
.fa-lg {
|
29
|
+
font-size: 1.33333333em;
|
30
|
+
line-height: 0.75em;
|
31
|
+
vertical-align: -15%;
|
70
32
|
}
|
71
|
-
|
72
|
-
|
73
|
-
width: 1.4285714285714286em;
|
33
|
+
.fa-2x {
|
34
|
+
font-size: 2em;
|
74
35
|
}
|
75
|
-
.
|
76
|
-
|
77
|
-
list-style-type: none;
|
36
|
+
.fa-3x {
|
37
|
+
font-size: 3em;
|
78
38
|
}
|
79
|
-
.
|
80
|
-
|
39
|
+
.fa-4x {
|
40
|
+
font-size: 4em;
|
81
41
|
}
|
82
|
-
.
|
83
|
-
|
84
|
-
|
85
|
-
|
42
|
+
.fa-5x {
|
43
|
+
font-size: 5em;
|
44
|
+
}
|
45
|
+
.fa-fw {
|
46
|
+
width: 1.28571429em;
|
86
47
|
text-align: center;
|
87
|
-
line-height: inherit;
|
88
48
|
}
|
89
|
-
|
90
|
-
|
91
|
-
|
49
|
+
.fa-ul {
|
50
|
+
padding-left: 0;
|
51
|
+
margin-left: 2.14285714em;
|
52
|
+
list-style-type: none;
|
92
53
|
}
|
93
|
-
.
|
94
|
-
|
54
|
+
.fa-ul > li {
|
55
|
+
position: relative;
|
95
56
|
}
|
96
|
-
.
|
97
|
-
|
57
|
+
.fa-li {
|
58
|
+
position: absolute;
|
59
|
+
left: -2.14285714em;
|
60
|
+
width: 2.14285714em;
|
61
|
+
top: 0.14285714em;
|
62
|
+
text-align: center;
|
98
63
|
}
|
99
|
-
.
|
100
|
-
|
64
|
+
.fa-li.fa-lg {
|
65
|
+
left: -1.85714286em;
|
101
66
|
}
|
102
|
-
.
|
103
|
-
border: solid 1px #eeeeee;
|
67
|
+
.fa-border {
|
104
68
|
padding: .2em .25em .15em;
|
105
|
-
|
106
|
-
|
107
|
-
border-radius: 3px;
|
108
|
-
}
|
109
|
-
.icon-2x {
|
110
|
-
font-size: 2em;
|
111
|
-
}
|
112
|
-
.icon-2x.icon-border {
|
113
|
-
border-width: 2px;
|
114
|
-
-webkit-border-radius: 4px;
|
115
|
-
-moz-border-radius: 4px;
|
116
|
-
border-radius: 4px;
|
117
|
-
}
|
118
|
-
.icon-3x {
|
119
|
-
font-size: 3em;
|
120
|
-
}
|
121
|
-
.icon-3x.icon-border {
|
122
|
-
border-width: 3px;
|
123
|
-
-webkit-border-radius: 5px;
|
124
|
-
-moz-border-radius: 5px;
|
125
|
-
border-radius: 5px;
|
69
|
+
border: solid 0.08em #eeeeee;
|
70
|
+
border-radius: .1em;
|
126
71
|
}
|
127
|
-
.
|
128
|
-
|
72
|
+
.fa-pull-left {
|
73
|
+
float: left;
|
129
74
|
}
|
130
|
-
.
|
131
|
-
|
132
|
-
-webkit-border-radius: 6px;
|
133
|
-
-moz-border-radius: 6px;
|
134
|
-
border-radius: 6px;
|
75
|
+
.fa-pull-right {
|
76
|
+
float: right;
|
135
77
|
}
|
136
|
-
.
|
137
|
-
|
78
|
+
.fa.fa-pull-left {
|
79
|
+
margin-right: .3em;
|
138
80
|
}
|
139
|
-
.
|
140
|
-
|
141
|
-
-webkit-border-radius: 7px;
|
142
|
-
-moz-border-radius: 7px;
|
143
|
-
border-radius: 7px;
|
81
|
+
.fa.fa-pull-right {
|
82
|
+
margin-left: .3em;
|
144
83
|
}
|
84
|
+
/* Deprecated as of 4.4.0 */
|
145
85
|
.pull-right {
|
146
86
|
float: right;
|
147
87
|
}
|
148
88
|
.pull-left {
|
149
89
|
float: left;
|
150
90
|
}
|
151
|
-
|
152
|
-
[class*=" icon-"].pull-left {
|
91
|
+
.fa.pull-left {
|
153
92
|
margin-right: .3em;
|
154
93
|
}
|
155
|
-
|
156
|
-
[class*=" icon-"].pull-right {
|
94
|
+
.fa.pull-right {
|
157
95
|
margin-left: .3em;
|
158
96
|
}
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
[class^="icon-"],
|
163
|
-
[class*=" icon-"] {
|
164
|
-
display: inline;
|
165
|
-
width: auto;
|
166
|
-
height: auto;
|
167
|
-
line-height: normal;
|
168
|
-
vertical-align: baseline;
|
169
|
-
background-image: none;
|
170
|
-
background-position: 0% 0%;
|
171
|
-
background-repeat: repeat;
|
172
|
-
margin-top: 0;
|
173
|
-
}
|
174
|
-
/* more sprites.less reset */
|
175
|
-
.icon-white,
|
176
|
-
.nav-pills > .active > a > [class^="icon-"],
|
177
|
-
.nav-pills > .active > a > [class*=" icon-"],
|
178
|
-
.nav-list > .active > a > [class^="icon-"],
|
179
|
-
.nav-list > .active > a > [class*=" icon-"],
|
180
|
-
.navbar-inverse .nav > .active > a > [class^="icon-"],
|
181
|
-
.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
182
|
-
.dropdown-menu > li > a:hover > [class^="icon-"],
|
183
|
-
.dropdown-menu > li > a:hover > [class*=" icon-"],
|
184
|
-
.dropdown-menu > .active > a > [class^="icon-"],
|
185
|
-
.dropdown-menu > .active > a > [class*=" icon-"],
|
186
|
-
.dropdown-submenu:hover > a > [class^="icon-"],
|
187
|
-
.dropdown-submenu:hover > a > [class*=" icon-"] {
|
188
|
-
background-image: none;
|
189
|
-
}
|
190
|
-
/* keeps Bootstrap styles with and without icons the same */
|
191
|
-
.btn [class^="icon-"].icon-large,
|
192
|
-
.nav [class^="icon-"].icon-large,
|
193
|
-
.btn [class*=" icon-"].icon-large,
|
194
|
-
.nav [class*=" icon-"].icon-large {
|
195
|
-
line-height: .9em;
|
196
|
-
}
|
197
|
-
.btn [class^="icon-"].icon-spin,
|
198
|
-
.nav [class^="icon-"].icon-spin,
|
199
|
-
.btn [class*=" icon-"].icon-spin,
|
200
|
-
.nav [class*=" icon-"].icon-spin {
|
201
|
-
display: inline-block;
|
202
|
-
}
|
203
|
-
.nav-tabs [class^="icon-"],
|
204
|
-
.nav-pills [class^="icon-"],
|
205
|
-
.nav-tabs [class*=" icon-"],
|
206
|
-
.nav-pills [class*=" icon-"],
|
207
|
-
.nav-tabs [class^="icon-"].icon-large,
|
208
|
-
.nav-pills [class^="icon-"].icon-large,
|
209
|
-
.nav-tabs [class*=" icon-"].icon-large,
|
210
|
-
.nav-pills [class*=" icon-"].icon-large {
|
211
|
-
line-height: .9em;
|
212
|
-
}
|
213
|
-
.btn [class^="icon-"].pull-left.icon-2x,
|
214
|
-
.btn [class*=" icon-"].pull-left.icon-2x,
|
215
|
-
.btn [class^="icon-"].pull-right.icon-2x,
|
216
|
-
.btn [class*=" icon-"].pull-right.icon-2x {
|
217
|
-
margin-top: .18em;
|
218
|
-
}
|
219
|
-
.btn [class^="icon-"].icon-spin.icon-large,
|
220
|
-
.btn [class*=" icon-"].icon-spin.icon-large {
|
221
|
-
line-height: .8em;
|
222
|
-
}
|
223
|
-
.btn.btn-small [class^="icon-"].pull-left.icon-2x,
|
224
|
-
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
|
225
|
-
.btn.btn-small [class^="icon-"].pull-right.icon-2x,
|
226
|
-
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
|
227
|
-
margin-top: .25em;
|
228
|
-
}
|
229
|
-
.btn.btn-large [class^="icon-"],
|
230
|
-
.btn.btn-large [class*=" icon-"] {
|
231
|
-
margin-top: 0;
|
232
|
-
}
|
233
|
-
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
|
234
|
-
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
|
235
|
-
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
|
236
|
-
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
|
237
|
-
margin-top: .05em;
|
238
|
-
}
|
239
|
-
.btn.btn-large [class^="icon-"].pull-left.icon-2x,
|
240
|
-
.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
|
241
|
-
margin-right: .2em;
|
242
|
-
}
|
243
|
-
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
|
244
|
-
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
|
245
|
-
margin-left: .2em;
|
246
|
-
}
|
247
|
-
/* EXTRAS
|
248
|
-
* -------------------------- */
|
249
|
-
/* Stacked and layered icon */
|
250
|
-
.icon-stack {
|
251
|
-
position: relative;
|
252
|
-
display: inline-block;
|
253
|
-
width: 2em;
|
254
|
-
height: 2em;
|
255
|
-
line-height: 2em;
|
256
|
-
vertical-align: -35%;
|
257
|
-
}
|
258
|
-
.icon-stack [class^="icon-"],
|
259
|
-
.icon-stack [class*=" icon-"] {
|
260
|
-
display: block;
|
261
|
-
text-align: center;
|
262
|
-
position: absolute;
|
263
|
-
width: 100%;
|
264
|
-
height: 100%;
|
265
|
-
font-size: 1em;
|
266
|
-
line-height: inherit;
|
267
|
-
*line-height: 2em;
|
268
|
-
}
|
269
|
-
.icon-stack .icon-stack-base {
|
270
|
-
font-size: 2em;
|
271
|
-
*line-height: 1em;
|
97
|
+
.fa-spin {
|
98
|
+
-webkit-animation: fa-spin 2s infinite linear;
|
99
|
+
animation: fa-spin 2s infinite linear;
|
272
100
|
}
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
-moz-animation: spin 2s infinite linear;
|
277
|
-
-o-animation: spin 2s infinite linear;
|
278
|
-
-webkit-animation: spin 2s infinite linear;
|
279
|
-
animation: spin 2s infinite linear;
|
101
|
+
.fa-pulse {
|
102
|
+
-webkit-animation: fa-spin 1s infinite steps(8);
|
103
|
+
animation: fa-spin 1s infinite steps(8);
|
280
104
|
}
|
281
|
-
|
282
|
-
display: inline-block;
|
283
|
-
text-decoration: none;
|
284
|
-
}
|
285
|
-
@-moz-keyframes spin {
|
286
|
-
0% {
|
287
|
-
-moz-transform: rotate(0deg);
|
288
|
-
}
|
289
|
-
100% {
|
290
|
-
-moz-transform: rotate(359deg);
|
291
|
-
}
|
292
|
-
}
|
293
|
-
@-webkit-keyframes spin {
|
105
|
+
@-webkit-keyframes fa-spin {
|
294
106
|
0% {
|
295
107
|
-webkit-transform: rotate(0deg);
|
108
|
+
transform: rotate(0deg);
|
296
109
|
}
|
297
110
|
100% {
|
298
111
|
-webkit-transform: rotate(359deg);
|
112
|
+
transform: rotate(359deg);
|
299
113
|
}
|
300
114
|
}
|
301
|
-
|
302
|
-
0% {
|
303
|
-
-o-transform: rotate(0deg);
|
304
|
-
}
|
305
|
-
100% {
|
306
|
-
-o-transform: rotate(359deg);
|
307
|
-
}
|
308
|
-
}
|
309
|
-
@-ms-keyframes spin {
|
310
|
-
0% {
|
311
|
-
-ms-transform: rotate(0deg);
|
312
|
-
}
|
313
|
-
100% {
|
314
|
-
-ms-transform: rotate(359deg);
|
315
|
-
}
|
316
|
-
}
|
317
|
-
@keyframes spin {
|
115
|
+
@keyframes fa-spin {
|
318
116
|
0% {
|
117
|
+
-webkit-transform: rotate(0deg);
|
319
118
|
transform: rotate(0deg);
|
320
119
|
}
|
321
120
|
100% {
|
121
|
+
-webkit-transform: rotate(359deg);
|
322
122
|
transform: rotate(359deg);
|
323
123
|
}
|
324
124
|
}
|
325
|
-
|
326
|
-
|
125
|
+
.fa-rotate-90 {
|
126
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
|
327
127
|
-webkit-transform: rotate(90deg);
|
328
|
-
-moz-transform: rotate(90deg);
|
329
128
|
-ms-transform: rotate(90deg);
|
330
|
-
-o-transform: rotate(90deg);
|
331
129
|
transform: rotate(90deg);
|
332
|
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
333
130
|
}
|
334
|
-
.
|
131
|
+
.fa-rotate-180 {
|
132
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
|
335
133
|
-webkit-transform: rotate(180deg);
|
336
|
-
-moz-transform: rotate(180deg);
|
337
134
|
-ms-transform: rotate(180deg);
|
338
|
-
-o-transform: rotate(180deg);
|
339
135
|
transform: rotate(180deg);
|
340
|
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
341
136
|
}
|
342
|
-
.
|
137
|
+
.fa-rotate-270 {
|
138
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
|
343
139
|
-webkit-transform: rotate(270deg);
|
344
|
-
-moz-transform: rotate(270deg);
|
345
140
|
-ms-transform: rotate(270deg);
|
346
|
-
-o-transform: rotate(270deg);
|
347
141
|
transform: rotate(270deg);
|
348
|
-
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
349
142
|
}
|
350
|
-
.
|
143
|
+
.fa-flip-horizontal {
|
144
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
|
351
145
|
-webkit-transform: scale(-1, 1);
|
352
|
-
-moz-transform: scale(-1, 1);
|
353
146
|
-ms-transform: scale(-1, 1);
|
354
|
-
-o-transform: scale(-1, 1);
|
355
147
|
transform: scale(-1, 1);
|
356
148
|
}
|
357
|
-
.
|
149
|
+
.fa-flip-vertical {
|
150
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
|
358
151
|
-webkit-transform: scale(1, -1);
|
359
|
-
-moz-transform: scale(1, -1);
|
360
152
|
-ms-transform: scale(1, -1);
|
361
|
-
-o-transform: scale(1, -1);
|
362
153
|
transform: scale(1, -1);
|
363
154
|
}
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
155
|
+
:root .fa-rotate-90,
|
156
|
+
:root .fa-rotate-180,
|
157
|
+
:root .fa-rotate-270,
|
158
|
+
:root .fa-flip-horizontal,
|
159
|
+
:root .fa-flip-vertical {
|
160
|
+
filter: none;
|
161
|
+
}
|
162
|
+
.fa-stack {
|
163
|
+
position: relative;
|
370
164
|
display: inline-block;
|
165
|
+
width: 2em;
|
166
|
+
height: 2em;
|
167
|
+
line-height: 2em;
|
168
|
+
vertical-align: middle;
|
169
|
+
}
|
170
|
+
.fa-stack-1x,
|
171
|
+
.fa-stack-2x {
|
172
|
+
position: absolute;
|
173
|
+
left: 0;
|
174
|
+
width: 100%;
|
175
|
+
text-align: center;
|
176
|
+
}
|
177
|
+
.fa-stack-1x {
|
178
|
+
line-height: inherit;
|
179
|
+
}
|
180
|
+
.fa-stack-2x {
|
181
|
+
font-size: 2em;
|
182
|
+
}
|
183
|
+
.fa-inverse {
|
184
|
+
color: #ffffff;
|
371
185
|
}
|
372
186
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
373
187
|
readers do not read off random characters that represent icons */
|
374
|
-
.
|
188
|
+
.fa-glass:before {
|
375
189
|
content: "\f000";
|
376
190
|
}
|
377
|
-
.
|
191
|
+
.fa-music:before {
|
378
192
|
content: "\f001";
|
379
193
|
}
|
380
|
-
.
|
194
|
+
.fa-search:before {
|
381
195
|
content: "\f002";
|
382
196
|
}
|
383
|
-
.
|
197
|
+
.fa-envelope-o:before {
|
384
198
|
content: "\f003";
|
385
199
|
}
|
386
|
-
.
|
200
|
+
.fa-heart:before {
|
387
201
|
content: "\f004";
|
388
202
|
}
|
389
|
-
.
|
203
|
+
.fa-star:before {
|
390
204
|
content: "\f005";
|
391
205
|
}
|
392
|
-
.
|
206
|
+
.fa-star-o:before {
|
393
207
|
content: "\f006";
|
394
208
|
}
|
395
|
-
.
|
209
|
+
.fa-user:before {
|
396
210
|
content: "\f007";
|
397
211
|
}
|
398
|
-
.
|
212
|
+
.fa-film:before {
|
399
213
|
content: "\f008";
|
400
214
|
}
|
401
|
-
.
|
215
|
+
.fa-th-large:before {
|
402
216
|
content: "\f009";
|
403
217
|
}
|
404
|
-
.
|
218
|
+
.fa-th:before {
|
405
219
|
content: "\f00a";
|
406
220
|
}
|
407
|
-
.
|
221
|
+
.fa-th-list:before {
|
408
222
|
content: "\f00b";
|
409
223
|
}
|
410
|
-
.
|
224
|
+
.fa-check:before {
|
411
225
|
content: "\f00c";
|
412
226
|
}
|
413
|
-
.
|
227
|
+
.fa-remove:before,
|
228
|
+
.fa-close:before,
|
229
|
+
.fa-times:before {
|
414
230
|
content: "\f00d";
|
415
231
|
}
|
416
|
-
.
|
232
|
+
.fa-search-plus:before {
|
417
233
|
content: "\f00e";
|
418
234
|
}
|
419
|
-
.
|
235
|
+
.fa-search-minus:before {
|
420
236
|
content: "\f010";
|
421
237
|
}
|
422
|
-
.
|
423
|
-
.icon-off:before {
|
238
|
+
.fa-power-off:before {
|
424
239
|
content: "\f011";
|
425
240
|
}
|
426
|
-
.
|
241
|
+
.fa-signal:before {
|
427
242
|
content: "\f012";
|
428
243
|
}
|
429
|
-
.
|
244
|
+
.fa-gear:before,
|
245
|
+
.fa-cog:before {
|
430
246
|
content: "\f013";
|
431
247
|
}
|
432
|
-
.
|
248
|
+
.fa-trash-o:before {
|
433
249
|
content: "\f014";
|
434
250
|
}
|
435
|
-
.
|
251
|
+
.fa-home:before {
|
436
252
|
content: "\f015";
|
437
253
|
}
|
438
|
-
.
|
254
|
+
.fa-file-o:before {
|
439
255
|
content: "\f016";
|
440
256
|
}
|
441
|
-
.
|
257
|
+
.fa-clock-o:before {
|
442
258
|
content: "\f017";
|
443
259
|
}
|
444
|
-
.
|
260
|
+
.fa-road:before {
|
445
261
|
content: "\f018";
|
446
262
|
}
|
447
|
-
.
|
263
|
+
.fa-download:before {
|
448
264
|
content: "\f019";
|
449
265
|
}
|
450
|
-
.
|
266
|
+
.fa-arrow-circle-o-down:before {
|
451
267
|
content: "\f01a";
|
452
268
|
}
|
453
|
-
.
|
269
|
+
.fa-arrow-circle-o-up:before {
|
454
270
|
content: "\f01b";
|
455
271
|
}
|
456
|
-
.
|
272
|
+
.fa-inbox:before {
|
457
273
|
content: "\f01c";
|
458
274
|
}
|
459
|
-
.
|
275
|
+
.fa-play-circle-o:before {
|
460
276
|
content: "\f01d";
|
461
277
|
}
|
462
|
-
.
|
463
|
-
.
|
278
|
+
.fa-rotate-right:before,
|
279
|
+
.fa-repeat:before {
|
464
280
|
content: "\f01e";
|
465
281
|
}
|
466
|
-
.
|
282
|
+
.fa-refresh:before {
|
467
283
|
content: "\f021";
|
468
284
|
}
|
469
|
-
.
|
285
|
+
.fa-list-alt:before {
|
470
286
|
content: "\f022";
|
471
287
|
}
|
472
|
-
.
|
288
|
+
.fa-lock:before {
|
473
289
|
content: "\f023";
|
474
290
|
}
|
475
|
-
.
|
291
|
+
.fa-flag:before {
|
476
292
|
content: "\f024";
|
477
293
|
}
|
478
|
-
.
|
294
|
+
.fa-headphones:before {
|
479
295
|
content: "\f025";
|
480
296
|
}
|
481
|
-
.
|
297
|
+
.fa-volume-off:before {
|
482
298
|
content: "\f026";
|
483
299
|
}
|
484
|
-
.
|
300
|
+
.fa-volume-down:before {
|
485
301
|
content: "\f027";
|
486
302
|
}
|
487
|
-
.
|
303
|
+
.fa-volume-up:before {
|
488
304
|
content: "\f028";
|
489
305
|
}
|
490
|
-
.
|
306
|
+
.fa-qrcode:before {
|
491
307
|
content: "\f029";
|
492
308
|
}
|
493
|
-
.
|
309
|
+
.fa-barcode:before {
|
494
310
|
content: "\f02a";
|
495
311
|
}
|
496
|
-
.
|
312
|
+
.fa-tag:before {
|
497
313
|
content: "\f02b";
|
498
314
|
}
|
499
|
-
.
|
315
|
+
.fa-tags:before {
|
500
316
|
content: "\f02c";
|
501
317
|
}
|
502
|
-
.
|
318
|
+
.fa-book:before {
|
503
319
|
content: "\f02d";
|
504
320
|
}
|
505
|
-
.
|
321
|
+
.fa-bookmark:before {
|
506
322
|
content: "\f02e";
|
507
323
|
}
|
508
|
-
.
|
324
|
+
.fa-print:before {
|
509
325
|
content: "\f02f";
|
510
326
|
}
|
511
|
-
.
|
327
|
+
.fa-camera:before {
|
512
328
|
content: "\f030";
|
513
329
|
}
|
514
|
-
.
|
330
|
+
.fa-font:before {
|
515
331
|
content: "\f031";
|
516
332
|
}
|
517
|
-
.
|
333
|
+
.fa-bold:before {
|
518
334
|
content: "\f032";
|
519
335
|
}
|
520
|
-
.
|
336
|
+
.fa-italic:before {
|
521
337
|
content: "\f033";
|
522
338
|
}
|
523
|
-
.
|
339
|
+
.fa-text-height:before {
|
524
340
|
content: "\f034";
|
525
341
|
}
|
526
|
-
.
|
342
|
+
.fa-text-width:before {
|
527
343
|
content: "\f035";
|
528
344
|
}
|
529
|
-
.
|
345
|
+
.fa-align-left:before {
|
530
346
|
content: "\f036";
|
531
347
|
}
|
532
|
-
.
|
348
|
+
.fa-align-center:before {
|
533
349
|
content: "\f037";
|
534
350
|
}
|
535
|
-
.
|
351
|
+
.fa-align-right:before {
|
536
352
|
content: "\f038";
|
537
353
|
}
|
538
|
-
.
|
354
|
+
.fa-align-justify:before {
|
539
355
|
content: "\f039";
|
540
356
|
}
|
541
|
-
.
|
357
|
+
.fa-list:before {
|
542
358
|
content: "\f03a";
|
543
359
|
}
|
544
|
-
.
|
360
|
+
.fa-dedent:before,
|
361
|
+
.fa-outdent:before {
|
545
362
|
content: "\f03b";
|
546
363
|
}
|
547
|
-
.
|
364
|
+
.fa-indent:before {
|
548
365
|
content: "\f03c";
|
549
366
|
}
|
550
|
-
.
|
367
|
+
.fa-video-camera:before {
|
551
368
|
content: "\f03d";
|
552
369
|
}
|
553
|
-
.
|
370
|
+
.fa-photo:before,
|
371
|
+
.fa-image:before,
|
372
|
+
.fa-picture-o:before {
|
554
373
|
content: "\f03e";
|
555
374
|
}
|
556
|
-
.
|
375
|
+
.fa-pencil:before {
|
557
376
|
content: "\f040";
|
558
377
|
}
|
559
|
-
.
|
378
|
+
.fa-map-marker:before {
|
560
379
|
content: "\f041";
|
561
380
|
}
|
562
|
-
.
|
381
|
+
.fa-adjust:before {
|
563
382
|
content: "\f042";
|
564
383
|
}
|
565
|
-
.
|
384
|
+
.fa-tint:before {
|
566
385
|
content: "\f043";
|
567
386
|
}
|
568
|
-
.
|
387
|
+
.fa-edit:before,
|
388
|
+
.fa-pencil-square-o:before {
|
569
389
|
content: "\f044";
|
570
390
|
}
|
571
|
-
.
|
391
|
+
.fa-share-square-o:before {
|
572
392
|
content: "\f045";
|
573
393
|
}
|
574
|
-
.
|
394
|
+
.fa-check-square-o:before {
|
575
395
|
content: "\f046";
|
576
396
|
}
|
577
|
-
.
|
397
|
+
.fa-arrows:before {
|
578
398
|
content: "\f047";
|
579
399
|
}
|
580
|
-
.
|
400
|
+
.fa-step-backward:before {
|
581
401
|
content: "\f048";
|
582
402
|
}
|
583
|
-
.
|
403
|
+
.fa-fast-backward:before {
|
584
404
|
content: "\f049";
|
585
405
|
}
|
586
|
-
.
|
406
|
+
.fa-backward:before {
|
587
407
|
content: "\f04a";
|
588
408
|
}
|
589
|
-
.
|
409
|
+
.fa-play:before {
|
590
410
|
content: "\f04b";
|
591
411
|
}
|
592
|
-
.
|
412
|
+
.fa-pause:before {
|
593
413
|
content: "\f04c";
|
594
414
|
}
|
595
|
-
.
|
415
|
+
.fa-stop:before {
|
596
416
|
content: "\f04d";
|
597
417
|
}
|
598
|
-
.
|
418
|
+
.fa-forward:before {
|
599
419
|
content: "\f04e";
|
600
420
|
}
|
601
|
-
.
|
421
|
+
.fa-fast-forward:before {
|
602
422
|
content: "\f050";
|
603
423
|
}
|
604
|
-
.
|
424
|
+
.fa-step-forward:before {
|
605
425
|
content: "\f051";
|
606
426
|
}
|
607
|
-
.
|
427
|
+
.fa-eject:before {
|
608
428
|
content: "\f052";
|
609
429
|
}
|
610
|
-
.
|
430
|
+
.fa-chevron-left:before {
|
611
431
|
content: "\f053";
|
612
432
|
}
|
613
|
-
.
|
433
|
+
.fa-chevron-right:before {
|
614
434
|
content: "\f054";
|
615
435
|
}
|
616
|
-
.
|
436
|
+
.fa-plus-circle:before {
|
617
437
|
content: "\f055";
|
618
438
|
}
|
619
|
-
.
|
439
|
+
.fa-minus-circle:before {
|
620
440
|
content: "\f056";
|
621
441
|
}
|
622
|
-
.
|
442
|
+
.fa-times-circle:before {
|
623
443
|
content: "\f057";
|
624
444
|
}
|
625
|
-
.
|
445
|
+
.fa-check-circle:before {
|
626
446
|
content: "\f058";
|
627
447
|
}
|
628
|
-
.
|
448
|
+
.fa-question-circle:before {
|
629
449
|
content: "\f059";
|
630
450
|
}
|
631
|
-
.
|
451
|
+
.fa-info-circle:before {
|
632
452
|
content: "\f05a";
|
633
453
|
}
|
634
|
-
.
|
454
|
+
.fa-crosshairs:before {
|
635
455
|
content: "\f05b";
|
636
456
|
}
|
637
|
-
.
|
457
|
+
.fa-times-circle-o:before {
|
638
458
|
content: "\f05c";
|
639
459
|
}
|
640
|
-
.
|
460
|
+
.fa-check-circle-o:before {
|
641
461
|
content: "\f05d";
|
642
462
|
}
|
643
|
-
.
|
463
|
+
.fa-ban:before {
|
644
464
|
content: "\f05e";
|
645
465
|
}
|
646
|
-
.
|
466
|
+
.fa-arrow-left:before {
|
647
467
|
content: "\f060";
|
648
468
|
}
|
649
|
-
.
|
469
|
+
.fa-arrow-right:before {
|
650
470
|
content: "\f061";
|
651
471
|
}
|
652
|
-
.
|
472
|
+
.fa-arrow-up:before {
|
653
473
|
content: "\f062";
|
654
474
|
}
|
655
|
-
.
|
475
|
+
.fa-arrow-down:before {
|
656
476
|
content: "\f063";
|
657
477
|
}
|
658
|
-
.
|
659
|
-
.
|
478
|
+
.fa-mail-forward:before,
|
479
|
+
.fa-share:before {
|
660
480
|
content: "\f064";
|
661
481
|
}
|
662
|
-
.
|
482
|
+
.fa-expand:before {
|
663
483
|
content: "\f065";
|
664
484
|
}
|
665
|
-
.
|
485
|
+
.fa-compress:before {
|
666
486
|
content: "\f066";
|
667
487
|
}
|
668
|
-
.
|
488
|
+
.fa-plus:before {
|
669
489
|
content: "\f067";
|
670
490
|
}
|
671
|
-
.
|
491
|
+
.fa-minus:before {
|
672
492
|
content: "\f068";
|
673
493
|
}
|
674
|
-
.
|
494
|
+
.fa-asterisk:before {
|
675
495
|
content: "\f069";
|
676
496
|
}
|
677
|
-
.
|
497
|
+
.fa-exclamation-circle:before {
|
678
498
|
content: "\f06a";
|
679
499
|
}
|
680
|
-
.
|
500
|
+
.fa-gift:before {
|
681
501
|
content: "\f06b";
|
682
502
|
}
|
683
|
-
.
|
503
|
+
.fa-leaf:before {
|
684
504
|
content: "\f06c";
|
685
505
|
}
|
686
|
-
.
|
506
|
+
.fa-fire:before {
|
687
507
|
content: "\f06d";
|
688
508
|
}
|
689
|
-
.
|
509
|
+
.fa-eye:before {
|
690
510
|
content: "\f06e";
|
691
511
|
}
|
692
|
-
.
|
512
|
+
.fa-eye-slash:before {
|
693
513
|
content: "\f070";
|
694
514
|
}
|
695
|
-
.
|
515
|
+
.fa-warning:before,
|
516
|
+
.fa-exclamation-triangle:before {
|
696
517
|
content: "\f071";
|
697
518
|
}
|
698
|
-
.
|
519
|
+
.fa-plane:before {
|
699
520
|
content: "\f072";
|
700
521
|
}
|
701
|
-
.
|
522
|
+
.fa-calendar:before {
|
702
523
|
content: "\f073";
|
703
524
|
}
|
704
|
-
.
|
525
|
+
.fa-random:before {
|
705
526
|
content: "\f074";
|
706
527
|
}
|
707
|
-
.
|
528
|
+
.fa-comment:before {
|
708
529
|
content: "\f075";
|
709
530
|
}
|
710
|
-
.
|
531
|
+
.fa-magnet:before {
|
711
532
|
content: "\f076";
|
712
533
|
}
|
713
|
-
.
|
534
|
+
.fa-chevron-up:before {
|
714
535
|
content: "\f077";
|
715
536
|
}
|
716
|
-
.
|
537
|
+
.fa-chevron-down:before {
|
717
538
|
content: "\f078";
|
718
539
|
}
|
719
|
-
.
|
540
|
+
.fa-retweet:before {
|
720
541
|
content: "\f079";
|
721
542
|
}
|
722
|
-
.
|
543
|
+
.fa-shopping-cart:before {
|
723
544
|
content: "\f07a";
|
724
545
|
}
|
725
|
-
.
|
546
|
+
.fa-folder:before {
|
726
547
|
content: "\f07b";
|
727
548
|
}
|
728
|
-
.
|
549
|
+
.fa-folder-open:before {
|
729
550
|
content: "\f07c";
|
730
551
|
}
|
731
|
-
.
|
552
|
+
.fa-arrows-v:before {
|
732
553
|
content: "\f07d";
|
733
554
|
}
|
734
|
-
.
|
555
|
+
.fa-arrows-h:before {
|
735
556
|
content: "\f07e";
|
736
557
|
}
|
737
|
-
.
|
558
|
+
.fa-bar-chart-o:before,
|
559
|
+
.fa-bar-chart:before {
|
738
560
|
content: "\f080";
|
739
561
|
}
|
740
|
-
.
|
562
|
+
.fa-twitter-square:before {
|
741
563
|
content: "\f081";
|
742
564
|
}
|
743
|
-
.
|
565
|
+
.fa-facebook-square:before {
|
744
566
|
content: "\f082";
|
745
567
|
}
|
746
|
-
.
|
568
|
+
.fa-camera-retro:before {
|
747
569
|
content: "\f083";
|
748
570
|
}
|
749
|
-
.
|
571
|
+
.fa-key:before {
|
750
572
|
content: "\f084";
|
751
573
|
}
|
752
|
-
.
|
574
|
+
.fa-gears:before,
|
575
|
+
.fa-cogs:before {
|
753
576
|
content: "\f085";
|
754
577
|
}
|
755
|
-
.
|
578
|
+
.fa-comments:before {
|
756
579
|
content: "\f086";
|
757
580
|
}
|
758
|
-
.
|
581
|
+
.fa-thumbs-o-up:before {
|
759
582
|
content: "\f087";
|
760
583
|
}
|
761
|
-
.
|
584
|
+
.fa-thumbs-o-down:before {
|
762
585
|
content: "\f088";
|
763
586
|
}
|
764
|
-
.
|
587
|
+
.fa-star-half:before {
|
765
588
|
content: "\f089";
|
766
589
|
}
|
767
|
-
.
|
590
|
+
.fa-heart-o:before {
|
768
591
|
content: "\f08a";
|
769
592
|
}
|
770
|
-
.
|
593
|
+
.fa-sign-out:before {
|
771
594
|
content: "\f08b";
|
772
595
|
}
|
773
|
-
.
|
596
|
+
.fa-linkedin-square:before {
|
774
597
|
content: "\f08c";
|
775
598
|
}
|
776
|
-
.
|
599
|
+
.fa-thumb-tack:before {
|
777
600
|
content: "\f08d";
|
778
601
|
}
|
779
|
-
.
|
602
|
+
.fa-external-link:before {
|
780
603
|
content: "\f08e";
|
781
604
|
}
|
782
|
-
.
|
605
|
+
.fa-sign-in:before {
|
783
606
|
content: "\f090";
|
784
607
|
}
|
785
|
-
.
|
608
|
+
.fa-trophy:before {
|
786
609
|
content: "\f091";
|
787
610
|
}
|
788
|
-
.
|
611
|
+
.fa-github-square:before {
|
789
612
|
content: "\f092";
|
790
613
|
}
|
791
|
-
.
|
614
|
+
.fa-upload:before {
|
792
615
|
content: "\f093";
|
793
616
|
}
|
794
|
-
.
|
617
|
+
.fa-lemon-o:before {
|
795
618
|
content: "\f094";
|
796
619
|
}
|
797
|
-
.
|
620
|
+
.fa-phone:before {
|
798
621
|
content: "\f095";
|
799
622
|
}
|
800
|
-
.
|
801
|
-
.icon-check-empty:before {
|
623
|
+
.fa-square-o:before {
|
802
624
|
content: "\f096";
|
803
625
|
}
|
804
|
-
.
|
626
|
+
.fa-bookmark-o:before {
|
805
627
|
content: "\f097";
|
806
628
|
}
|
807
|
-
.
|
629
|
+
.fa-phone-square:before {
|
808
630
|
content: "\f098";
|
809
631
|
}
|
810
|
-
.
|
632
|
+
.fa-twitter:before {
|
811
633
|
content: "\f099";
|
812
634
|
}
|
813
|
-
.
|
635
|
+
.fa-facebook-f:before,
|
636
|
+
.fa-facebook:before {
|
814
637
|
content: "\f09a";
|
815
638
|
}
|
816
|
-
.
|
639
|
+
.fa-github:before {
|
817
640
|
content: "\f09b";
|
818
641
|
}
|
819
|
-
.
|
642
|
+
.fa-unlock:before {
|
820
643
|
content: "\f09c";
|
821
644
|
}
|
822
|
-
.
|
645
|
+
.fa-credit-card:before {
|
823
646
|
content: "\f09d";
|
824
647
|
}
|
825
|
-
.
|
648
|
+
.fa-feed:before,
|
649
|
+
.fa-rss:before {
|
826
650
|
content: "\f09e";
|
827
651
|
}
|
828
|
-
.
|
652
|
+
.fa-hdd-o:before {
|
829
653
|
content: "\f0a0";
|
830
654
|
}
|
831
|
-
.
|
655
|
+
.fa-bullhorn:before {
|
832
656
|
content: "\f0a1";
|
833
657
|
}
|
834
|
-
.
|
835
|
-
content: "\
|
658
|
+
.fa-bell:before {
|
659
|
+
content: "\f0f3";
|
836
660
|
}
|
837
|
-
.
|
661
|
+
.fa-certificate:before {
|
838
662
|
content: "\f0a3";
|
839
663
|
}
|
840
|
-
.
|
664
|
+
.fa-hand-o-right:before {
|
841
665
|
content: "\f0a4";
|
842
666
|
}
|
843
|
-
.
|
667
|
+
.fa-hand-o-left:before {
|
844
668
|
content: "\f0a5";
|
845
669
|
}
|
846
|
-
.
|
670
|
+
.fa-hand-o-up:before {
|
847
671
|
content: "\f0a6";
|
848
672
|
}
|
849
|
-
.
|
673
|
+
.fa-hand-o-down:before {
|
850
674
|
content: "\f0a7";
|
851
675
|
}
|
852
|
-
.
|
676
|
+
.fa-arrow-circle-left:before {
|
853
677
|
content: "\f0a8";
|
854
678
|
}
|
855
|
-
.
|
679
|
+
.fa-arrow-circle-right:before {
|
856
680
|
content: "\f0a9";
|
857
681
|
}
|
858
|
-
.
|
682
|
+
.fa-arrow-circle-up:before {
|
859
683
|
content: "\f0aa";
|
860
684
|
}
|
861
|
-
.
|
685
|
+
.fa-arrow-circle-down:before {
|
862
686
|
content: "\f0ab";
|
863
687
|
}
|
864
|
-
.
|
688
|
+
.fa-globe:before {
|
865
689
|
content: "\f0ac";
|
866
690
|
}
|
867
|
-
.
|
691
|
+
.fa-wrench:before {
|
868
692
|
content: "\f0ad";
|
869
693
|
}
|
870
|
-
.
|
694
|
+
.fa-tasks:before {
|
871
695
|
content: "\f0ae";
|
872
696
|
}
|
873
|
-
.
|
697
|
+
.fa-filter:before {
|
874
698
|
content: "\f0b0";
|
875
699
|
}
|
876
|
-
.
|
700
|
+
.fa-briefcase:before {
|
877
701
|
content: "\f0b1";
|
878
702
|
}
|
879
|
-
.
|
703
|
+
.fa-arrows-alt:before {
|
880
704
|
content: "\f0b2";
|
881
705
|
}
|
882
|
-
.
|
706
|
+
.fa-group:before,
|
707
|
+
.fa-users:before {
|
883
708
|
content: "\f0c0";
|
884
709
|
}
|
885
|
-
.
|
710
|
+
.fa-chain:before,
|
711
|
+
.fa-link:before {
|
886
712
|
content: "\f0c1";
|
887
713
|
}
|
888
|
-
.
|
714
|
+
.fa-cloud:before {
|
889
715
|
content: "\f0c2";
|
890
716
|
}
|
891
|
-
.
|
717
|
+
.fa-flask:before {
|
892
718
|
content: "\f0c3";
|
893
719
|
}
|
894
|
-
.
|
720
|
+
.fa-cut:before,
|
721
|
+
.fa-scissors:before {
|
895
722
|
content: "\f0c4";
|
896
723
|
}
|
897
|
-
.
|
724
|
+
.fa-copy:before,
|
725
|
+
.fa-files-o:before {
|
898
726
|
content: "\f0c5";
|
899
727
|
}
|
900
|
-
.
|
901
|
-
.icon-paper-clip:before {
|
728
|
+
.fa-paperclip:before {
|
902
729
|
content: "\f0c6";
|
903
730
|
}
|
904
|
-
.
|
731
|
+
.fa-save:before,
|
732
|
+
.fa-floppy-o:before {
|
905
733
|
content: "\f0c7";
|
906
734
|
}
|
907
|
-
.
|
735
|
+
.fa-square:before {
|
908
736
|
content: "\f0c8";
|
909
737
|
}
|
910
|
-
.
|
738
|
+
.fa-navicon:before,
|
739
|
+
.fa-reorder:before,
|
740
|
+
.fa-bars:before {
|
911
741
|
content: "\f0c9";
|
912
742
|
}
|
913
|
-
.
|
743
|
+
.fa-list-ul:before {
|
914
744
|
content: "\f0ca";
|
915
745
|
}
|
916
|
-
.
|
746
|
+
.fa-list-ol:before {
|
917
747
|
content: "\f0cb";
|
918
748
|
}
|
919
|
-
.
|
749
|
+
.fa-strikethrough:before {
|
920
750
|
content: "\f0cc";
|
921
751
|
}
|
922
|
-
.
|
752
|
+
.fa-underline:before {
|
923
753
|
content: "\f0cd";
|
924
754
|
}
|
925
|
-
.
|
755
|
+
.fa-table:before {
|
926
756
|
content: "\f0ce";
|
927
757
|
}
|
928
|
-
.
|
758
|
+
.fa-magic:before {
|
929
759
|
content: "\f0d0";
|
930
760
|
}
|
931
|
-
.
|
761
|
+
.fa-truck:before {
|
932
762
|
content: "\f0d1";
|
933
763
|
}
|
934
|
-
.
|
764
|
+
.fa-pinterest:before {
|
935
765
|
content: "\f0d2";
|
936
766
|
}
|
937
|
-
.
|
767
|
+
.fa-pinterest-square:before {
|
938
768
|
content: "\f0d3";
|
939
769
|
}
|
940
|
-
.
|
770
|
+
.fa-google-plus-square:before {
|
941
771
|
content: "\f0d4";
|
942
772
|
}
|
943
|
-
.
|
773
|
+
.fa-google-plus:before {
|
944
774
|
content: "\f0d5";
|
945
775
|
}
|
946
|
-
.
|
776
|
+
.fa-money:before {
|
947
777
|
content: "\f0d6";
|
948
778
|
}
|
949
|
-
.
|
779
|
+
.fa-caret-down:before {
|
950
780
|
content: "\f0d7";
|
951
781
|
}
|
952
|
-
.
|
782
|
+
.fa-caret-up:before {
|
953
783
|
content: "\f0d8";
|
954
784
|
}
|
955
|
-
.
|
785
|
+
.fa-caret-left:before {
|
956
786
|
content: "\f0d9";
|
957
787
|
}
|
958
|
-
.
|
788
|
+
.fa-caret-right:before {
|
959
789
|
content: "\f0da";
|
960
790
|
}
|
961
|
-
.
|
791
|
+
.fa-columns:before {
|
962
792
|
content: "\f0db";
|
963
793
|
}
|
964
|
-
.
|
794
|
+
.fa-unsorted:before,
|
795
|
+
.fa-sort:before {
|
965
796
|
content: "\f0dc";
|
966
797
|
}
|
967
|
-
.
|
798
|
+
.fa-sort-down:before,
|
799
|
+
.fa-sort-desc:before {
|
968
800
|
content: "\f0dd";
|
969
801
|
}
|
970
|
-
.
|
802
|
+
.fa-sort-up:before,
|
803
|
+
.fa-sort-asc:before {
|
971
804
|
content: "\f0de";
|
972
805
|
}
|
973
|
-
.
|
806
|
+
.fa-envelope:before {
|
974
807
|
content: "\f0e0";
|
975
808
|
}
|
976
|
-
.
|
809
|
+
.fa-linkedin:before {
|
977
810
|
content: "\f0e1";
|
978
811
|
}
|
979
|
-
.
|
980
|
-
.
|
812
|
+
.fa-rotate-left:before,
|
813
|
+
.fa-undo:before {
|
981
814
|
content: "\f0e2";
|
982
815
|
}
|
983
|
-
.
|
816
|
+
.fa-legal:before,
|
817
|
+
.fa-gavel:before {
|
984
818
|
content: "\f0e3";
|
985
819
|
}
|
986
|
-
.
|
820
|
+
.fa-dashboard:before,
|
821
|
+
.fa-tachometer:before {
|
987
822
|
content: "\f0e4";
|
988
823
|
}
|
989
|
-
.
|
824
|
+
.fa-comment-o:before {
|
990
825
|
content: "\f0e5";
|
991
826
|
}
|
992
|
-
.
|
827
|
+
.fa-comments-o:before {
|
993
828
|
content: "\f0e6";
|
994
829
|
}
|
995
|
-
.
|
830
|
+
.fa-flash:before,
|
831
|
+
.fa-bolt:before {
|
996
832
|
content: "\f0e7";
|
997
833
|
}
|
998
|
-
.
|
834
|
+
.fa-sitemap:before {
|
999
835
|
content: "\f0e8";
|
1000
836
|
}
|
1001
|
-
.
|
837
|
+
.fa-umbrella:before {
|
1002
838
|
content: "\f0e9";
|
1003
839
|
}
|
1004
|
-
.
|
840
|
+
.fa-paste:before,
|
841
|
+
.fa-clipboard:before {
|
1005
842
|
content: "\f0ea";
|
1006
843
|
}
|
1007
|
-
.
|
844
|
+
.fa-lightbulb-o:before {
|
1008
845
|
content: "\f0eb";
|
1009
846
|
}
|
1010
|
-
.
|
847
|
+
.fa-exchange:before {
|
1011
848
|
content: "\f0ec";
|
1012
849
|
}
|
1013
|
-
.
|
850
|
+
.fa-cloud-download:before {
|
1014
851
|
content: "\f0ed";
|
1015
852
|
}
|
1016
|
-
.
|
853
|
+
.fa-cloud-upload:before {
|
1017
854
|
content: "\f0ee";
|
1018
855
|
}
|
1019
|
-
.
|
856
|
+
.fa-user-md:before {
|
1020
857
|
content: "\f0f0";
|
1021
858
|
}
|
1022
|
-
.
|
859
|
+
.fa-stethoscope:before {
|
1023
860
|
content: "\f0f1";
|
1024
861
|
}
|
1025
|
-
.
|
862
|
+
.fa-suitcase:before {
|
1026
863
|
content: "\f0f2";
|
1027
864
|
}
|
1028
|
-
.
|
1029
|
-
content: "\
|
865
|
+
.fa-bell-o:before {
|
866
|
+
content: "\f0a2";
|
1030
867
|
}
|
1031
|
-
.
|
868
|
+
.fa-coffee:before {
|
1032
869
|
content: "\f0f4";
|
1033
870
|
}
|
1034
|
-
.
|
871
|
+
.fa-cutlery:before {
|
1035
872
|
content: "\f0f5";
|
1036
873
|
}
|
1037
|
-
.
|
874
|
+
.fa-file-text-o:before {
|
1038
875
|
content: "\f0f6";
|
1039
876
|
}
|
1040
|
-
.
|
877
|
+
.fa-building-o:before {
|
1041
878
|
content: "\f0f7";
|
1042
879
|
}
|
1043
|
-
.
|
880
|
+
.fa-hospital-o:before {
|
1044
881
|
content: "\f0f8";
|
1045
882
|
}
|
1046
|
-
.
|
883
|
+
.fa-ambulance:before {
|
1047
884
|
content: "\f0f9";
|
1048
885
|
}
|
1049
|
-
.
|
886
|
+
.fa-medkit:before {
|
1050
887
|
content: "\f0fa";
|
1051
888
|
}
|
1052
|
-
.
|
889
|
+
.fa-fighter-jet:before {
|
1053
890
|
content: "\f0fb";
|
1054
891
|
}
|
1055
|
-
.
|
892
|
+
.fa-beer:before {
|
1056
893
|
content: "\f0fc";
|
1057
894
|
}
|
1058
|
-
.
|
895
|
+
.fa-h-square:before {
|
1059
896
|
content: "\f0fd";
|
1060
897
|
}
|
1061
|
-
.
|
898
|
+
.fa-plus-square:before {
|
1062
899
|
content: "\f0fe";
|
1063
900
|
}
|
1064
|
-
.
|
901
|
+
.fa-angle-double-left:before {
|
1065
902
|
content: "\f100";
|
1066
903
|
}
|
1067
|
-
.
|
904
|
+
.fa-angle-double-right:before {
|
1068
905
|
content: "\f101";
|
1069
906
|
}
|
1070
|
-
.
|
907
|
+
.fa-angle-double-up:before {
|
1071
908
|
content: "\f102";
|
1072
909
|
}
|
1073
|
-
.
|
910
|
+
.fa-angle-double-down:before {
|
1074
911
|
content: "\f103";
|
1075
912
|
}
|
1076
|
-
.
|
913
|
+
.fa-angle-left:before {
|
1077
914
|
content: "\f104";
|
1078
915
|
}
|
1079
|
-
.
|
916
|
+
.fa-angle-right:before {
|
1080
917
|
content: "\f105";
|
1081
918
|
}
|
1082
|
-
.
|
919
|
+
.fa-angle-up:before {
|
1083
920
|
content: "\f106";
|
1084
921
|
}
|
1085
|
-
.
|
922
|
+
.fa-angle-down:before {
|
1086
923
|
content: "\f107";
|
1087
924
|
}
|
1088
|
-
.
|
925
|
+
.fa-desktop:before {
|
1089
926
|
content: "\f108";
|
1090
927
|
}
|
1091
|
-
.
|
928
|
+
.fa-laptop:before {
|
1092
929
|
content: "\f109";
|
1093
930
|
}
|
1094
|
-
.
|
931
|
+
.fa-tablet:before {
|
1095
932
|
content: "\f10a";
|
1096
933
|
}
|
1097
|
-
.
|
934
|
+
.fa-mobile-phone:before,
|
935
|
+
.fa-mobile:before {
|
1098
936
|
content: "\f10b";
|
1099
937
|
}
|
1100
|
-
.
|
938
|
+
.fa-circle-o:before {
|
1101
939
|
content: "\f10c";
|
1102
940
|
}
|
1103
|
-
.
|
941
|
+
.fa-quote-left:before {
|
1104
942
|
content: "\f10d";
|
1105
943
|
}
|
1106
|
-
.
|
944
|
+
.fa-quote-right:before {
|
1107
945
|
content: "\f10e";
|
1108
946
|
}
|
1109
|
-
.
|
947
|
+
.fa-spinner:before {
|
1110
948
|
content: "\f110";
|
1111
949
|
}
|
1112
|
-
.
|
950
|
+
.fa-circle:before {
|
1113
951
|
content: "\f111";
|
1114
952
|
}
|
1115
|
-
.
|
1116
|
-
.
|
953
|
+
.fa-mail-reply:before,
|
954
|
+
.fa-reply:before {
|
1117
955
|
content: "\f112";
|
1118
956
|
}
|
1119
|
-
.
|
957
|
+
.fa-github-alt:before {
|
1120
958
|
content: "\f113";
|
1121
959
|
}
|
1122
|
-
.
|
960
|
+
.fa-folder-o:before {
|
1123
961
|
content: "\f114";
|
1124
962
|
}
|
1125
|
-
.
|
963
|
+
.fa-folder-open-o:before {
|
1126
964
|
content: "\f115";
|
1127
965
|
}
|
1128
|
-
.
|
1129
|
-
content: "\f116";
|
1130
|
-
}
|
1131
|
-
.icon-collapse-alt:before {
|
1132
|
-
content: "\f117";
|
1133
|
-
}
|
1134
|
-
.icon-smile:before {
|
966
|
+
.fa-smile-o:before {
|
1135
967
|
content: "\f118";
|
1136
968
|
}
|
1137
|
-
.
|
969
|
+
.fa-frown-o:before {
|
1138
970
|
content: "\f119";
|
1139
971
|
}
|
1140
|
-
.
|
972
|
+
.fa-meh-o:before {
|
1141
973
|
content: "\f11a";
|
1142
974
|
}
|
1143
|
-
.
|
975
|
+
.fa-gamepad:before {
|
1144
976
|
content: "\f11b";
|
1145
977
|
}
|
1146
|
-
.
|
978
|
+
.fa-keyboard-o:before {
|
1147
979
|
content: "\f11c";
|
1148
980
|
}
|
1149
|
-
.
|
981
|
+
.fa-flag-o:before {
|
1150
982
|
content: "\f11d";
|
1151
983
|
}
|
1152
|
-
.
|
984
|
+
.fa-flag-checkered:before {
|
1153
985
|
content: "\f11e";
|
1154
986
|
}
|
1155
|
-
.
|
987
|
+
.fa-terminal:before {
|
1156
988
|
content: "\f120";
|
1157
989
|
}
|
1158
|
-
.
|
990
|
+
.fa-code:before {
|
1159
991
|
content: "\f121";
|
1160
992
|
}
|
1161
|
-
.
|
1162
|
-
|
1163
|
-
}
|
1164
|
-
.icon-mail-reply-all:before {
|
993
|
+
.fa-mail-reply-all:before,
|
994
|
+
.fa-reply-all:before {
|
1165
995
|
content: "\f122";
|
1166
996
|
}
|
1167
|
-
.
|
1168
|
-
.
|
997
|
+
.fa-star-half-empty:before,
|
998
|
+
.fa-star-half-full:before,
|
999
|
+
.fa-star-half-o:before {
|
1169
1000
|
content: "\f123";
|
1170
1001
|
}
|
1171
|
-
.
|
1002
|
+
.fa-location-arrow:before {
|
1172
1003
|
content: "\f124";
|
1173
1004
|
}
|
1174
|
-
.
|
1005
|
+
.fa-crop:before {
|
1175
1006
|
content: "\f125";
|
1176
1007
|
}
|
1177
|
-
.
|
1008
|
+
.fa-code-fork:before {
|
1178
1009
|
content: "\f126";
|
1179
1010
|
}
|
1180
|
-
.
|
1011
|
+
.fa-unlink:before,
|
1012
|
+
.fa-chain-broken:before {
|
1181
1013
|
content: "\f127";
|
1182
1014
|
}
|
1183
|
-
.
|
1015
|
+
.fa-question:before {
|
1184
1016
|
content: "\f128";
|
1185
1017
|
}
|
1186
|
-
.
|
1018
|
+
.fa-info:before {
|
1187
1019
|
content: "\f129";
|
1188
1020
|
}
|
1189
|
-
.
|
1021
|
+
.fa-exclamation:before {
|
1190
1022
|
content: "\f12a";
|
1191
1023
|
}
|
1192
|
-
.
|
1024
|
+
.fa-superscript:before {
|
1193
1025
|
content: "\f12b";
|
1194
1026
|
}
|
1195
|
-
.
|
1027
|
+
.fa-subscript:before {
|
1196
1028
|
content: "\f12c";
|
1197
1029
|
}
|
1198
|
-
.
|
1030
|
+
.fa-eraser:before {
|
1199
1031
|
content: "\f12d";
|
1200
1032
|
}
|
1201
|
-
.
|
1033
|
+
.fa-puzzle-piece:before {
|
1202
1034
|
content: "\f12e";
|
1203
1035
|
}
|
1204
|
-
.
|
1036
|
+
.fa-microphone:before {
|
1205
1037
|
content: "\f130";
|
1206
1038
|
}
|
1207
|
-
.
|
1039
|
+
.fa-microphone-slash:before {
|
1208
1040
|
content: "\f131";
|
1209
1041
|
}
|
1210
|
-
.
|
1042
|
+
.fa-shield:before {
|
1211
1043
|
content: "\f132";
|
1212
1044
|
}
|
1213
|
-
.
|
1045
|
+
.fa-calendar-o:before {
|
1214
1046
|
content: "\f133";
|
1215
1047
|
}
|
1216
|
-
.
|
1048
|
+
.fa-fire-extinguisher:before {
|
1217
1049
|
content: "\f134";
|
1218
1050
|
}
|
1219
|
-
.
|
1051
|
+
.fa-rocket:before {
|
1220
1052
|
content: "\f135";
|
1221
1053
|
}
|
1222
|
-
.
|
1054
|
+
.fa-maxcdn:before {
|
1223
1055
|
content: "\f136";
|
1224
1056
|
}
|
1225
|
-
.
|
1057
|
+
.fa-chevron-circle-left:before {
|
1226
1058
|
content: "\f137";
|
1227
1059
|
}
|
1228
|
-
.
|
1060
|
+
.fa-chevron-circle-right:before {
|
1229
1061
|
content: "\f138";
|
1230
1062
|
}
|
1231
|
-
.
|
1063
|
+
.fa-chevron-circle-up:before {
|
1232
1064
|
content: "\f139";
|
1233
1065
|
}
|
1234
|
-
.
|
1066
|
+
.fa-chevron-circle-down:before {
|
1235
1067
|
content: "\f13a";
|
1236
1068
|
}
|
1237
|
-
.
|
1069
|
+
.fa-html5:before {
|
1238
1070
|
content: "\f13b";
|
1239
1071
|
}
|
1240
|
-
.
|
1072
|
+
.fa-css3:before {
|
1241
1073
|
content: "\f13c";
|
1242
1074
|
}
|
1243
|
-
.
|
1075
|
+
.fa-anchor:before {
|
1244
1076
|
content: "\f13d";
|
1245
1077
|
}
|
1246
|
-
.
|
1078
|
+
.fa-unlock-alt:before {
|
1247
1079
|
content: "\f13e";
|
1248
1080
|
}
|
1249
|
-
.
|
1081
|
+
.fa-bullseye:before {
|
1250
1082
|
content: "\f140";
|
1251
1083
|
}
|
1252
|
-
.
|
1084
|
+
.fa-ellipsis-h:before {
|
1253
1085
|
content: "\f141";
|
1254
1086
|
}
|
1255
|
-
.
|
1087
|
+
.fa-ellipsis-v:before {
|
1256
1088
|
content: "\f142";
|
1257
1089
|
}
|
1258
|
-
.
|
1090
|
+
.fa-rss-square:before {
|
1259
1091
|
content: "\f143";
|
1260
1092
|
}
|
1261
|
-
.
|
1093
|
+
.fa-play-circle:before {
|
1262
1094
|
content: "\f144";
|
1263
1095
|
}
|
1264
|
-
.
|
1096
|
+
.fa-ticket:before {
|
1265
1097
|
content: "\f145";
|
1266
1098
|
}
|
1267
|
-
.
|
1099
|
+
.fa-minus-square:before {
|
1268
1100
|
content: "\f146";
|
1269
1101
|
}
|
1270
|
-
.
|
1102
|
+
.fa-minus-square-o:before {
|
1271
1103
|
content: "\f147";
|
1272
1104
|
}
|
1273
|
-
.
|
1105
|
+
.fa-level-up:before {
|
1274
1106
|
content: "\f148";
|
1275
1107
|
}
|
1276
|
-
.
|
1108
|
+
.fa-level-down:before {
|
1277
1109
|
content: "\f149";
|
1278
1110
|
}
|
1279
|
-
.
|
1111
|
+
.fa-check-square:before {
|
1280
1112
|
content: "\f14a";
|
1281
1113
|
}
|
1282
|
-
.
|
1114
|
+
.fa-pencil-square:before {
|
1283
1115
|
content: "\f14b";
|
1284
1116
|
}
|
1285
|
-
.
|
1117
|
+
.fa-external-link-square:before {
|
1286
1118
|
content: "\f14c";
|
1287
1119
|
}
|
1288
|
-
.
|
1120
|
+
.fa-share-square:before {
|
1289
1121
|
content: "\f14d";
|
1290
1122
|
}
|
1291
|
-
.
|
1123
|
+
.fa-compass:before {
|
1292
1124
|
content: "\f14e";
|
1293
1125
|
}
|
1294
|
-
.
|
1126
|
+
.fa-toggle-down:before,
|
1127
|
+
.fa-caret-square-o-down:before {
|
1295
1128
|
content: "\f150";
|
1296
1129
|
}
|
1297
|
-
.
|
1130
|
+
.fa-toggle-up:before,
|
1131
|
+
.fa-caret-square-o-up:before {
|
1298
1132
|
content: "\f151";
|
1299
1133
|
}
|
1300
|
-
.
|
1134
|
+
.fa-toggle-right:before,
|
1135
|
+
.fa-caret-square-o-right:before {
|
1301
1136
|
content: "\f152";
|
1302
1137
|
}
|
1303
|
-
.
|
1304
|
-
.
|
1138
|
+
.fa-euro:before,
|
1139
|
+
.fa-eur:before {
|
1305
1140
|
content: "\f153";
|
1306
1141
|
}
|
1307
|
-
.
|
1142
|
+
.fa-gbp:before {
|
1308
1143
|
content: "\f154";
|
1309
1144
|
}
|
1310
|
-
.
|
1311
|
-
.
|
1145
|
+
.fa-dollar:before,
|
1146
|
+
.fa-usd:before {
|
1312
1147
|
content: "\f155";
|
1313
1148
|
}
|
1314
|
-
.
|
1315
|
-
.
|
1149
|
+
.fa-rupee:before,
|
1150
|
+
.fa-inr:before {
|
1316
1151
|
content: "\f156";
|
1317
1152
|
}
|
1318
|
-
.
|
1319
|
-
.
|
1153
|
+
.fa-cny:before,
|
1154
|
+
.fa-rmb:before,
|
1155
|
+
.fa-yen:before,
|
1156
|
+
.fa-jpy:before {
|
1320
1157
|
content: "\f157";
|
1321
1158
|
}
|
1322
|
-
.
|
1323
|
-
.
|
1159
|
+
.fa-ruble:before,
|
1160
|
+
.fa-rouble:before,
|
1161
|
+
.fa-rub:before {
|
1324
1162
|
content: "\f158";
|
1325
1163
|
}
|
1326
|
-
.
|
1327
|
-
.
|
1164
|
+
.fa-won:before,
|
1165
|
+
.fa-krw:before {
|
1328
1166
|
content: "\f159";
|
1329
1167
|
}
|
1330
|
-
.
|
1331
|
-
.
|
1168
|
+
.fa-bitcoin:before,
|
1169
|
+
.fa-btc:before {
|
1332
1170
|
content: "\f15a";
|
1333
1171
|
}
|
1334
|
-
.
|
1172
|
+
.fa-file:before {
|
1335
1173
|
content: "\f15b";
|
1336
1174
|
}
|
1337
|
-
.
|
1175
|
+
.fa-file-text:before {
|
1338
1176
|
content: "\f15c";
|
1339
1177
|
}
|
1340
|
-
.
|
1178
|
+
.fa-sort-alpha-asc:before {
|
1341
1179
|
content: "\f15d";
|
1342
1180
|
}
|
1343
|
-
.
|
1181
|
+
.fa-sort-alpha-desc:before {
|
1344
1182
|
content: "\f15e";
|
1345
1183
|
}
|
1346
|
-
.
|
1184
|
+
.fa-sort-amount-asc:before {
|
1347
1185
|
content: "\f160";
|
1348
1186
|
}
|
1349
|
-
.
|
1187
|
+
.fa-sort-amount-desc:before {
|
1350
1188
|
content: "\f161";
|
1351
1189
|
}
|
1352
|
-
.
|
1190
|
+
.fa-sort-numeric-asc:before {
|
1353
1191
|
content: "\f162";
|
1354
1192
|
}
|
1355
|
-
.
|
1193
|
+
.fa-sort-numeric-desc:before {
|
1356
1194
|
content: "\f163";
|
1357
1195
|
}
|
1358
|
-
.
|
1196
|
+
.fa-thumbs-up:before {
|
1359
1197
|
content: "\f164";
|
1360
1198
|
}
|
1361
|
-
.
|
1199
|
+
.fa-thumbs-down:before {
|
1362
1200
|
content: "\f165";
|
1363
1201
|
}
|
1364
|
-
.
|
1202
|
+
.fa-youtube-square:before {
|
1365
1203
|
content: "\f166";
|
1366
1204
|
}
|
1367
|
-
.
|
1205
|
+
.fa-youtube:before {
|
1368
1206
|
content: "\f167";
|
1369
1207
|
}
|
1370
|
-
.
|
1208
|
+
.fa-xing:before {
|
1371
1209
|
content: "\f168";
|
1372
1210
|
}
|
1373
|
-
.
|
1211
|
+
.fa-xing-square:before {
|
1374
1212
|
content: "\f169";
|
1375
1213
|
}
|
1376
|
-
.
|
1214
|
+
.fa-youtube-play:before {
|
1377
1215
|
content: "\f16a";
|
1378
1216
|
}
|
1379
|
-
.
|
1217
|
+
.fa-dropbox:before {
|
1380
1218
|
content: "\f16b";
|
1381
1219
|
}
|
1382
|
-
.
|
1220
|
+
.fa-stack-overflow:before {
|
1383
1221
|
content: "\f16c";
|
1384
1222
|
}
|
1385
|
-
.
|
1223
|
+
.fa-instagram:before {
|
1386
1224
|
content: "\f16d";
|
1387
1225
|
}
|
1388
|
-
.
|
1226
|
+
.fa-flickr:before {
|
1389
1227
|
content: "\f16e";
|
1390
1228
|
}
|
1391
|
-
.
|
1229
|
+
.fa-adn:before {
|
1392
1230
|
content: "\f170";
|
1393
1231
|
}
|
1394
|
-
.
|
1232
|
+
.fa-bitbucket:before {
|
1395
1233
|
content: "\f171";
|
1396
1234
|
}
|
1397
|
-
.
|
1235
|
+
.fa-bitbucket-square:before {
|
1398
1236
|
content: "\f172";
|
1399
1237
|
}
|
1400
|
-
.
|
1238
|
+
.fa-tumblr:before {
|
1401
1239
|
content: "\f173";
|
1402
1240
|
}
|
1403
|
-
.
|
1241
|
+
.fa-tumblr-square:before {
|
1404
1242
|
content: "\f174";
|
1405
1243
|
}
|
1406
|
-
.
|
1244
|
+
.fa-long-arrow-down:before {
|
1407
1245
|
content: "\f175";
|
1408
1246
|
}
|
1409
|
-
.
|
1247
|
+
.fa-long-arrow-up:before {
|
1410
1248
|
content: "\f176";
|
1411
1249
|
}
|
1412
|
-
.
|
1250
|
+
.fa-long-arrow-left:before {
|
1413
1251
|
content: "\f177";
|
1414
1252
|
}
|
1415
|
-
.
|
1253
|
+
.fa-long-arrow-right:before {
|
1416
1254
|
content: "\f178";
|
1417
1255
|
}
|
1418
|
-
.
|
1256
|
+
.fa-apple:before {
|
1419
1257
|
content: "\f179";
|
1420
1258
|
}
|
1421
|
-
.
|
1259
|
+
.fa-windows:before {
|
1422
1260
|
content: "\f17a";
|
1423
1261
|
}
|
1424
|
-
.
|
1262
|
+
.fa-android:before {
|
1425
1263
|
content: "\f17b";
|
1426
1264
|
}
|
1427
|
-
.
|
1265
|
+
.fa-linux:before {
|
1428
1266
|
content: "\f17c";
|
1429
1267
|
}
|
1430
|
-
.
|
1268
|
+
.fa-dribbble:before {
|
1431
1269
|
content: "\f17d";
|
1432
1270
|
}
|
1433
|
-
.
|
1271
|
+
.fa-skype:before {
|
1434
1272
|
content: "\f17e";
|
1435
1273
|
}
|
1436
|
-
.
|
1274
|
+
.fa-foursquare:before {
|
1437
1275
|
content: "\f180";
|
1438
1276
|
}
|
1439
|
-
.
|
1277
|
+
.fa-trello:before {
|
1440
1278
|
content: "\f181";
|
1441
1279
|
}
|
1442
|
-
.
|
1280
|
+
.fa-female:before {
|
1443
1281
|
content: "\f182";
|
1444
1282
|
}
|
1445
|
-
.
|
1283
|
+
.fa-male:before {
|
1446
1284
|
content: "\f183";
|
1447
1285
|
}
|
1448
|
-
.
|
1286
|
+
.fa-gittip:before,
|
1287
|
+
.fa-gratipay:before {
|
1449
1288
|
content: "\f184";
|
1450
1289
|
}
|
1451
|
-
.
|
1290
|
+
.fa-sun-o:before {
|
1452
1291
|
content: "\f185";
|
1453
1292
|
}
|
1454
|
-
.
|
1293
|
+
.fa-moon-o:before {
|
1455
1294
|
content: "\f186";
|
1456
1295
|
}
|
1457
|
-
.
|
1296
|
+
.fa-archive:before {
|
1458
1297
|
content: "\f187";
|
1459
1298
|
}
|
1460
|
-
.
|
1299
|
+
.fa-bug:before {
|
1461
1300
|
content: "\f188";
|
1462
1301
|
}
|
1463
|
-
.
|
1302
|
+
.fa-vk:before {
|
1464
1303
|
content: "\f189";
|
1465
1304
|
}
|
1466
|
-
.
|
1305
|
+
.fa-weibo:before {
|
1467
1306
|
content: "\f18a";
|
1468
1307
|
}
|
1469
|
-
.
|
1308
|
+
.fa-renren:before {
|
1470
1309
|
content: "\f18b";
|
1471
1310
|
}
|
1311
|
+
.fa-pagelines:before {
|
1312
|
+
content: "\f18c";
|
1313
|
+
}
|
1314
|
+
.fa-stack-exchange:before {
|
1315
|
+
content: "\f18d";
|
1316
|
+
}
|
1317
|
+
.fa-arrow-circle-o-right:before {
|
1318
|
+
content: "\f18e";
|
1319
|
+
}
|
1320
|
+
.fa-arrow-circle-o-left:before {
|
1321
|
+
content: "\f190";
|
1322
|
+
}
|
1323
|
+
.fa-toggle-left:before,
|
1324
|
+
.fa-caret-square-o-left:before {
|
1325
|
+
content: "\f191";
|
1326
|
+
}
|
1327
|
+
.fa-dot-circle-o:before {
|
1328
|
+
content: "\f192";
|
1329
|
+
}
|
1330
|
+
.fa-wheelchair:before {
|
1331
|
+
content: "\f193";
|
1332
|
+
}
|
1333
|
+
.fa-vimeo-square:before {
|
1334
|
+
content: "\f194";
|
1335
|
+
}
|
1336
|
+
.fa-turkish-lira:before,
|
1337
|
+
.fa-try:before {
|
1338
|
+
content: "\f195";
|
1339
|
+
}
|
1340
|
+
.fa-plus-square-o:before {
|
1341
|
+
content: "\f196";
|
1342
|
+
}
|
1343
|
+
.fa-space-shuttle:before {
|
1344
|
+
content: "\f197";
|
1345
|
+
}
|
1346
|
+
.fa-slack:before {
|
1347
|
+
content: "\f198";
|
1348
|
+
}
|
1349
|
+
.fa-envelope-square:before {
|
1350
|
+
content: "\f199";
|
1351
|
+
}
|
1352
|
+
.fa-wordpress:before {
|
1353
|
+
content: "\f19a";
|
1354
|
+
}
|
1355
|
+
.fa-openid:before {
|
1356
|
+
content: "\f19b";
|
1357
|
+
}
|
1358
|
+
.fa-institution:before,
|
1359
|
+
.fa-bank:before,
|
1360
|
+
.fa-university:before {
|
1361
|
+
content: "\f19c";
|
1362
|
+
}
|
1363
|
+
.fa-mortar-board:before,
|
1364
|
+
.fa-graduation-cap:before {
|
1365
|
+
content: "\f19d";
|
1366
|
+
}
|
1367
|
+
.fa-yahoo:before {
|
1368
|
+
content: "\f19e";
|
1369
|
+
}
|
1370
|
+
.fa-google:before {
|
1371
|
+
content: "\f1a0";
|
1372
|
+
}
|
1373
|
+
.fa-reddit:before {
|
1374
|
+
content: "\f1a1";
|
1375
|
+
}
|
1376
|
+
.fa-reddit-square:before {
|
1377
|
+
content: "\f1a2";
|
1378
|
+
}
|
1379
|
+
.fa-stumbleupon-circle:before {
|
1380
|
+
content: "\f1a3";
|
1381
|
+
}
|
1382
|
+
.fa-stumbleupon:before {
|
1383
|
+
content: "\f1a4";
|
1384
|
+
}
|
1385
|
+
.fa-delicious:before {
|
1386
|
+
content: "\f1a5";
|
1387
|
+
}
|
1388
|
+
.fa-digg:before {
|
1389
|
+
content: "\f1a6";
|
1390
|
+
}
|
1391
|
+
.fa-pied-piper-pp:before {
|
1392
|
+
content: "\f1a7";
|
1393
|
+
}
|
1394
|
+
.fa-pied-piper-alt:before {
|
1395
|
+
content: "\f1a8";
|
1396
|
+
}
|
1397
|
+
.fa-drupal:before {
|
1398
|
+
content: "\f1a9";
|
1399
|
+
}
|
1400
|
+
.fa-joomla:before {
|
1401
|
+
content: "\f1aa";
|
1402
|
+
}
|
1403
|
+
.fa-language:before {
|
1404
|
+
content: "\f1ab";
|
1405
|
+
}
|
1406
|
+
.fa-fax:before {
|
1407
|
+
content: "\f1ac";
|
1408
|
+
}
|
1409
|
+
.fa-building:before {
|
1410
|
+
content: "\f1ad";
|
1411
|
+
}
|
1412
|
+
.fa-child:before {
|
1413
|
+
content: "\f1ae";
|
1414
|
+
}
|
1415
|
+
.fa-paw:before {
|
1416
|
+
content: "\f1b0";
|
1417
|
+
}
|
1418
|
+
.fa-spoon:before {
|
1419
|
+
content: "\f1b1";
|
1420
|
+
}
|
1421
|
+
.fa-cube:before {
|
1422
|
+
content: "\f1b2";
|
1423
|
+
}
|
1424
|
+
.fa-cubes:before {
|
1425
|
+
content: "\f1b3";
|
1426
|
+
}
|
1427
|
+
.fa-behance:before {
|
1428
|
+
content: "\f1b4";
|
1429
|
+
}
|
1430
|
+
.fa-behance-square:before {
|
1431
|
+
content: "\f1b5";
|
1432
|
+
}
|
1433
|
+
.fa-steam:before {
|
1434
|
+
content: "\f1b6";
|
1435
|
+
}
|
1436
|
+
.fa-steam-square:before {
|
1437
|
+
content: "\f1b7";
|
1438
|
+
}
|
1439
|
+
.fa-recycle:before {
|
1440
|
+
content: "\f1b8";
|
1441
|
+
}
|
1442
|
+
.fa-automobile:before,
|
1443
|
+
.fa-car:before {
|
1444
|
+
content: "\f1b9";
|
1445
|
+
}
|
1446
|
+
.fa-cab:before,
|
1447
|
+
.fa-taxi:before {
|
1448
|
+
content: "\f1ba";
|
1449
|
+
}
|
1450
|
+
.fa-tree:before {
|
1451
|
+
content: "\f1bb";
|
1452
|
+
}
|
1453
|
+
.fa-spotify:before {
|
1454
|
+
content: "\f1bc";
|
1455
|
+
}
|
1456
|
+
.fa-deviantart:before {
|
1457
|
+
content: "\f1bd";
|
1458
|
+
}
|
1459
|
+
.fa-soundcloud:before {
|
1460
|
+
content: "\f1be";
|
1461
|
+
}
|
1462
|
+
.fa-database:before {
|
1463
|
+
content: "\f1c0";
|
1464
|
+
}
|
1465
|
+
.fa-file-pdf-o:before {
|
1466
|
+
content: "\f1c1";
|
1467
|
+
}
|
1468
|
+
.fa-file-word-o:before {
|
1469
|
+
content: "\f1c2";
|
1470
|
+
}
|
1471
|
+
.fa-file-excel-o:before {
|
1472
|
+
content: "\f1c3";
|
1473
|
+
}
|
1474
|
+
.fa-file-powerpoint-o:before {
|
1475
|
+
content: "\f1c4";
|
1476
|
+
}
|
1477
|
+
.fa-file-photo-o:before,
|
1478
|
+
.fa-file-picture-o:before,
|
1479
|
+
.fa-file-image-o:before {
|
1480
|
+
content: "\f1c5";
|
1481
|
+
}
|
1482
|
+
.fa-file-zip-o:before,
|
1483
|
+
.fa-file-archive-o:before {
|
1484
|
+
content: "\f1c6";
|
1485
|
+
}
|
1486
|
+
.fa-file-sound-o:before,
|
1487
|
+
.fa-file-audio-o:before {
|
1488
|
+
content: "\f1c7";
|
1489
|
+
}
|
1490
|
+
.fa-file-movie-o:before,
|
1491
|
+
.fa-file-video-o:before {
|
1492
|
+
content: "\f1c8";
|
1493
|
+
}
|
1494
|
+
.fa-file-code-o:before {
|
1495
|
+
content: "\f1c9";
|
1496
|
+
}
|
1497
|
+
.fa-vine:before {
|
1498
|
+
content: "\f1ca";
|
1499
|
+
}
|
1500
|
+
.fa-codepen:before {
|
1501
|
+
content: "\f1cb";
|
1502
|
+
}
|
1503
|
+
.fa-jsfiddle:before {
|
1504
|
+
content: "\f1cc";
|
1505
|
+
}
|
1506
|
+
.fa-life-bouy:before,
|
1507
|
+
.fa-life-buoy:before,
|
1508
|
+
.fa-life-saver:before,
|
1509
|
+
.fa-support:before,
|
1510
|
+
.fa-life-ring:before {
|
1511
|
+
content: "\f1cd";
|
1512
|
+
}
|
1513
|
+
.fa-circle-o-notch:before {
|
1514
|
+
content: "\f1ce";
|
1515
|
+
}
|
1516
|
+
.fa-ra:before,
|
1517
|
+
.fa-resistance:before,
|
1518
|
+
.fa-rebel:before {
|
1519
|
+
content: "\f1d0";
|
1520
|
+
}
|
1521
|
+
.fa-ge:before,
|
1522
|
+
.fa-empire:before {
|
1523
|
+
content: "\f1d1";
|
1524
|
+
}
|
1525
|
+
.fa-git-square:before {
|
1526
|
+
content: "\f1d2";
|
1527
|
+
}
|
1528
|
+
.fa-git:before {
|
1529
|
+
content: "\f1d3";
|
1530
|
+
}
|
1531
|
+
.fa-y-combinator-square:before,
|
1532
|
+
.fa-yc-square:before,
|
1533
|
+
.fa-hacker-news:before {
|
1534
|
+
content: "\f1d4";
|
1535
|
+
}
|
1536
|
+
.fa-tencent-weibo:before {
|
1537
|
+
content: "\f1d5";
|
1538
|
+
}
|
1539
|
+
.fa-qq:before {
|
1540
|
+
content: "\f1d6";
|
1541
|
+
}
|
1542
|
+
.fa-wechat:before,
|
1543
|
+
.fa-weixin:before {
|
1544
|
+
content: "\f1d7";
|
1545
|
+
}
|
1546
|
+
.fa-send:before,
|
1547
|
+
.fa-paper-plane:before {
|
1548
|
+
content: "\f1d8";
|
1549
|
+
}
|
1550
|
+
.fa-send-o:before,
|
1551
|
+
.fa-paper-plane-o:before {
|
1552
|
+
content: "\f1d9";
|
1553
|
+
}
|
1554
|
+
.fa-history:before {
|
1555
|
+
content: "\f1da";
|
1556
|
+
}
|
1557
|
+
.fa-circle-thin:before {
|
1558
|
+
content: "\f1db";
|
1559
|
+
}
|
1560
|
+
.fa-header:before {
|
1561
|
+
content: "\f1dc";
|
1562
|
+
}
|
1563
|
+
.fa-paragraph:before {
|
1564
|
+
content: "\f1dd";
|
1565
|
+
}
|
1566
|
+
.fa-sliders:before {
|
1567
|
+
content: "\f1de";
|
1568
|
+
}
|
1569
|
+
.fa-share-alt:before {
|
1570
|
+
content: "\f1e0";
|
1571
|
+
}
|
1572
|
+
.fa-share-alt-square:before {
|
1573
|
+
content: "\f1e1";
|
1574
|
+
}
|
1575
|
+
.fa-bomb:before {
|
1576
|
+
content: "\f1e2";
|
1577
|
+
}
|
1578
|
+
.fa-soccer-ball-o:before,
|
1579
|
+
.fa-futbol-o:before {
|
1580
|
+
content: "\f1e3";
|
1581
|
+
}
|
1582
|
+
.fa-tty:before {
|
1583
|
+
content: "\f1e4";
|
1584
|
+
}
|
1585
|
+
.fa-binoculars:before {
|
1586
|
+
content: "\f1e5";
|
1587
|
+
}
|
1588
|
+
.fa-plug:before {
|
1589
|
+
content: "\f1e6";
|
1590
|
+
}
|
1591
|
+
.fa-slideshare:before {
|
1592
|
+
content: "\f1e7";
|
1593
|
+
}
|
1594
|
+
.fa-twitch:before {
|
1595
|
+
content: "\f1e8";
|
1596
|
+
}
|
1597
|
+
.fa-yelp:before {
|
1598
|
+
content: "\f1e9";
|
1599
|
+
}
|
1600
|
+
.fa-newspaper-o:before {
|
1601
|
+
content: "\f1ea";
|
1602
|
+
}
|
1603
|
+
.fa-wifi:before {
|
1604
|
+
content: "\f1eb";
|
1605
|
+
}
|
1606
|
+
.fa-calculator:before {
|
1607
|
+
content: "\f1ec";
|
1608
|
+
}
|
1609
|
+
.fa-paypal:before {
|
1610
|
+
content: "\f1ed";
|
1611
|
+
}
|
1612
|
+
.fa-google-wallet:before {
|
1613
|
+
content: "\f1ee";
|
1614
|
+
}
|
1615
|
+
.fa-cc-visa:before {
|
1616
|
+
content: "\f1f0";
|
1617
|
+
}
|
1618
|
+
.fa-cc-mastercard:before {
|
1619
|
+
content: "\f1f1";
|
1620
|
+
}
|
1621
|
+
.fa-cc-discover:before {
|
1622
|
+
content: "\f1f2";
|
1623
|
+
}
|
1624
|
+
.fa-cc-amex:before {
|
1625
|
+
content: "\f1f3";
|
1626
|
+
}
|
1627
|
+
.fa-cc-paypal:before {
|
1628
|
+
content: "\f1f4";
|
1629
|
+
}
|
1630
|
+
.fa-cc-stripe:before {
|
1631
|
+
content: "\f1f5";
|
1632
|
+
}
|
1633
|
+
.fa-bell-slash:before {
|
1634
|
+
content: "\f1f6";
|
1635
|
+
}
|
1636
|
+
.fa-bell-slash-o:before {
|
1637
|
+
content: "\f1f7";
|
1638
|
+
}
|
1639
|
+
.fa-trash:before {
|
1640
|
+
content: "\f1f8";
|
1641
|
+
}
|
1642
|
+
.fa-copyright:before {
|
1643
|
+
content: "\f1f9";
|
1644
|
+
}
|
1645
|
+
.fa-at:before {
|
1646
|
+
content: "\f1fa";
|
1647
|
+
}
|
1648
|
+
.fa-eyedropper:before {
|
1649
|
+
content: "\f1fb";
|
1650
|
+
}
|
1651
|
+
.fa-paint-brush:before {
|
1652
|
+
content: "\f1fc";
|
1653
|
+
}
|
1654
|
+
.fa-birthday-cake:before {
|
1655
|
+
content: "\f1fd";
|
1656
|
+
}
|
1657
|
+
.fa-area-chart:before {
|
1658
|
+
content: "\f1fe";
|
1659
|
+
}
|
1660
|
+
.fa-pie-chart:before {
|
1661
|
+
content: "\f200";
|
1662
|
+
}
|
1663
|
+
.fa-line-chart:before {
|
1664
|
+
content: "\f201";
|
1665
|
+
}
|
1666
|
+
.fa-lastfm:before {
|
1667
|
+
content: "\f202";
|
1668
|
+
}
|
1669
|
+
.fa-lastfm-square:before {
|
1670
|
+
content: "\f203";
|
1671
|
+
}
|
1672
|
+
.fa-toggle-off:before {
|
1673
|
+
content: "\f204";
|
1674
|
+
}
|
1675
|
+
.fa-toggle-on:before {
|
1676
|
+
content: "\f205";
|
1677
|
+
}
|
1678
|
+
.fa-bicycle:before {
|
1679
|
+
content: "\f206";
|
1680
|
+
}
|
1681
|
+
.fa-bus:before {
|
1682
|
+
content: "\f207";
|
1683
|
+
}
|
1684
|
+
.fa-ioxhost:before {
|
1685
|
+
content: "\f208";
|
1686
|
+
}
|
1687
|
+
.fa-angellist:before {
|
1688
|
+
content: "\f209";
|
1689
|
+
}
|
1690
|
+
.fa-cc:before {
|
1691
|
+
content: "\f20a";
|
1692
|
+
}
|
1693
|
+
.fa-shekel:before,
|
1694
|
+
.fa-sheqel:before,
|
1695
|
+
.fa-ils:before {
|
1696
|
+
content: "\f20b";
|
1697
|
+
}
|
1698
|
+
.fa-meanpath:before {
|
1699
|
+
content: "\f20c";
|
1700
|
+
}
|
1701
|
+
.fa-buysellads:before {
|
1702
|
+
content: "\f20d";
|
1703
|
+
}
|
1704
|
+
.fa-connectdevelop:before {
|
1705
|
+
content: "\f20e";
|
1706
|
+
}
|
1707
|
+
.fa-dashcube:before {
|
1708
|
+
content: "\f210";
|
1709
|
+
}
|
1710
|
+
.fa-forumbee:before {
|
1711
|
+
content: "\f211";
|
1712
|
+
}
|
1713
|
+
.fa-leanpub:before {
|
1714
|
+
content: "\f212";
|
1715
|
+
}
|
1716
|
+
.fa-sellsy:before {
|
1717
|
+
content: "\f213";
|
1718
|
+
}
|
1719
|
+
.fa-shirtsinbulk:before {
|
1720
|
+
content: "\f214";
|
1721
|
+
}
|
1722
|
+
.fa-simplybuilt:before {
|
1723
|
+
content: "\f215";
|
1724
|
+
}
|
1725
|
+
.fa-skyatlas:before {
|
1726
|
+
content: "\f216";
|
1727
|
+
}
|
1728
|
+
.fa-cart-plus:before {
|
1729
|
+
content: "\f217";
|
1730
|
+
}
|
1731
|
+
.fa-cart-arrow-down:before {
|
1732
|
+
content: "\f218";
|
1733
|
+
}
|
1734
|
+
.fa-diamond:before {
|
1735
|
+
content: "\f219";
|
1736
|
+
}
|
1737
|
+
.fa-ship:before {
|
1738
|
+
content: "\f21a";
|
1739
|
+
}
|
1740
|
+
.fa-user-secret:before {
|
1741
|
+
content: "\f21b";
|
1742
|
+
}
|
1743
|
+
.fa-motorcycle:before {
|
1744
|
+
content: "\f21c";
|
1745
|
+
}
|
1746
|
+
.fa-street-view:before {
|
1747
|
+
content: "\f21d";
|
1748
|
+
}
|
1749
|
+
.fa-heartbeat:before {
|
1750
|
+
content: "\f21e";
|
1751
|
+
}
|
1752
|
+
.fa-venus:before {
|
1753
|
+
content: "\f221";
|
1754
|
+
}
|
1755
|
+
.fa-mars:before {
|
1756
|
+
content: "\f222";
|
1757
|
+
}
|
1758
|
+
.fa-mercury:before {
|
1759
|
+
content: "\f223";
|
1760
|
+
}
|
1761
|
+
.fa-intersex:before,
|
1762
|
+
.fa-transgender:before {
|
1763
|
+
content: "\f224";
|
1764
|
+
}
|
1765
|
+
.fa-transgender-alt:before {
|
1766
|
+
content: "\f225";
|
1767
|
+
}
|
1768
|
+
.fa-venus-double:before {
|
1769
|
+
content: "\f226";
|
1770
|
+
}
|
1771
|
+
.fa-mars-double:before {
|
1772
|
+
content: "\f227";
|
1773
|
+
}
|
1774
|
+
.fa-venus-mars:before {
|
1775
|
+
content: "\f228";
|
1776
|
+
}
|
1777
|
+
.fa-mars-stroke:before {
|
1778
|
+
content: "\f229";
|
1779
|
+
}
|
1780
|
+
.fa-mars-stroke-v:before {
|
1781
|
+
content: "\f22a";
|
1782
|
+
}
|
1783
|
+
.fa-mars-stroke-h:before {
|
1784
|
+
content: "\f22b";
|
1785
|
+
}
|
1786
|
+
.fa-neuter:before {
|
1787
|
+
content: "\f22c";
|
1788
|
+
}
|
1789
|
+
.fa-genderless:before {
|
1790
|
+
content: "\f22d";
|
1791
|
+
}
|
1792
|
+
.fa-facebook-official:before {
|
1793
|
+
content: "\f230";
|
1794
|
+
}
|
1795
|
+
.fa-pinterest-p:before {
|
1796
|
+
content: "\f231";
|
1797
|
+
}
|
1798
|
+
.fa-whatsapp:before {
|
1799
|
+
content: "\f232";
|
1800
|
+
}
|
1801
|
+
.fa-server:before {
|
1802
|
+
content: "\f233";
|
1803
|
+
}
|
1804
|
+
.fa-user-plus:before {
|
1805
|
+
content: "\f234";
|
1806
|
+
}
|
1807
|
+
.fa-user-times:before {
|
1808
|
+
content: "\f235";
|
1809
|
+
}
|
1810
|
+
.fa-hotel:before,
|
1811
|
+
.fa-bed:before {
|
1812
|
+
content: "\f236";
|
1813
|
+
}
|
1814
|
+
.fa-viacoin:before {
|
1815
|
+
content: "\f237";
|
1816
|
+
}
|
1817
|
+
.fa-train:before {
|
1818
|
+
content: "\f238";
|
1819
|
+
}
|
1820
|
+
.fa-subway:before {
|
1821
|
+
content: "\f239";
|
1822
|
+
}
|
1823
|
+
.fa-medium:before {
|
1824
|
+
content: "\f23a";
|
1825
|
+
}
|
1826
|
+
.fa-yc:before,
|
1827
|
+
.fa-y-combinator:before {
|
1828
|
+
content: "\f23b";
|
1829
|
+
}
|
1830
|
+
.fa-optin-monster:before {
|
1831
|
+
content: "\f23c";
|
1832
|
+
}
|
1833
|
+
.fa-opencart:before {
|
1834
|
+
content: "\f23d";
|
1835
|
+
}
|
1836
|
+
.fa-expeditedssl:before {
|
1837
|
+
content: "\f23e";
|
1838
|
+
}
|
1839
|
+
.fa-battery-4:before,
|
1840
|
+
.fa-battery:before,
|
1841
|
+
.fa-battery-full:before {
|
1842
|
+
content: "\f240";
|
1843
|
+
}
|
1844
|
+
.fa-battery-3:before,
|
1845
|
+
.fa-battery-three-quarters:before {
|
1846
|
+
content: "\f241";
|
1847
|
+
}
|
1848
|
+
.fa-battery-2:before,
|
1849
|
+
.fa-battery-half:before {
|
1850
|
+
content: "\f242";
|
1851
|
+
}
|
1852
|
+
.fa-battery-1:before,
|
1853
|
+
.fa-battery-quarter:before {
|
1854
|
+
content: "\f243";
|
1855
|
+
}
|
1856
|
+
.fa-battery-0:before,
|
1857
|
+
.fa-battery-empty:before {
|
1858
|
+
content: "\f244";
|
1859
|
+
}
|
1860
|
+
.fa-mouse-pointer:before {
|
1861
|
+
content: "\f245";
|
1862
|
+
}
|
1863
|
+
.fa-i-cursor:before {
|
1864
|
+
content: "\f246";
|
1865
|
+
}
|
1866
|
+
.fa-object-group:before {
|
1867
|
+
content: "\f247";
|
1868
|
+
}
|
1869
|
+
.fa-object-ungroup:before {
|
1870
|
+
content: "\f248";
|
1871
|
+
}
|
1872
|
+
.fa-sticky-note:before {
|
1873
|
+
content: "\f249";
|
1874
|
+
}
|
1875
|
+
.fa-sticky-note-o:before {
|
1876
|
+
content: "\f24a";
|
1877
|
+
}
|
1878
|
+
.fa-cc-jcb:before {
|
1879
|
+
content: "\f24b";
|
1880
|
+
}
|
1881
|
+
.fa-cc-diners-club:before {
|
1882
|
+
content: "\f24c";
|
1883
|
+
}
|
1884
|
+
.fa-clone:before {
|
1885
|
+
content: "\f24d";
|
1886
|
+
}
|
1887
|
+
.fa-balance-scale:before {
|
1888
|
+
content: "\f24e";
|
1889
|
+
}
|
1890
|
+
.fa-hourglass-o:before {
|
1891
|
+
content: "\f250";
|
1892
|
+
}
|
1893
|
+
.fa-hourglass-1:before,
|
1894
|
+
.fa-hourglass-start:before {
|
1895
|
+
content: "\f251";
|
1896
|
+
}
|
1897
|
+
.fa-hourglass-2:before,
|
1898
|
+
.fa-hourglass-half:before {
|
1899
|
+
content: "\f252";
|
1900
|
+
}
|
1901
|
+
.fa-hourglass-3:before,
|
1902
|
+
.fa-hourglass-end:before {
|
1903
|
+
content: "\f253";
|
1904
|
+
}
|
1905
|
+
.fa-hourglass:before {
|
1906
|
+
content: "\f254";
|
1907
|
+
}
|
1908
|
+
.fa-hand-grab-o:before,
|
1909
|
+
.fa-hand-rock-o:before {
|
1910
|
+
content: "\f255";
|
1911
|
+
}
|
1912
|
+
.fa-hand-stop-o:before,
|
1913
|
+
.fa-hand-paper-o:before {
|
1914
|
+
content: "\f256";
|
1915
|
+
}
|
1916
|
+
.fa-hand-scissors-o:before {
|
1917
|
+
content: "\f257";
|
1918
|
+
}
|
1919
|
+
.fa-hand-lizard-o:before {
|
1920
|
+
content: "\f258";
|
1921
|
+
}
|
1922
|
+
.fa-hand-spock-o:before {
|
1923
|
+
content: "\f259";
|
1924
|
+
}
|
1925
|
+
.fa-hand-pointer-o:before {
|
1926
|
+
content: "\f25a";
|
1927
|
+
}
|
1928
|
+
.fa-hand-peace-o:before {
|
1929
|
+
content: "\f25b";
|
1930
|
+
}
|
1931
|
+
.fa-trademark:before {
|
1932
|
+
content: "\f25c";
|
1933
|
+
}
|
1934
|
+
.fa-registered:before {
|
1935
|
+
content: "\f25d";
|
1936
|
+
}
|
1937
|
+
.fa-creative-commons:before {
|
1938
|
+
content: "\f25e";
|
1939
|
+
}
|
1940
|
+
.fa-gg:before {
|
1941
|
+
content: "\f260";
|
1942
|
+
}
|
1943
|
+
.fa-gg-circle:before {
|
1944
|
+
content: "\f261";
|
1945
|
+
}
|
1946
|
+
.fa-tripadvisor:before {
|
1947
|
+
content: "\f262";
|
1948
|
+
}
|
1949
|
+
.fa-odnoklassniki:before {
|
1950
|
+
content: "\f263";
|
1951
|
+
}
|
1952
|
+
.fa-odnoklassniki-square:before {
|
1953
|
+
content: "\f264";
|
1954
|
+
}
|
1955
|
+
.fa-get-pocket:before {
|
1956
|
+
content: "\f265";
|
1957
|
+
}
|
1958
|
+
.fa-wikipedia-w:before {
|
1959
|
+
content: "\f266";
|
1960
|
+
}
|
1961
|
+
.fa-safari:before {
|
1962
|
+
content: "\f267";
|
1963
|
+
}
|
1964
|
+
.fa-chrome:before {
|
1965
|
+
content: "\f268";
|
1966
|
+
}
|
1967
|
+
.fa-firefox:before {
|
1968
|
+
content: "\f269";
|
1969
|
+
}
|
1970
|
+
.fa-opera:before {
|
1971
|
+
content: "\f26a";
|
1972
|
+
}
|
1973
|
+
.fa-internet-explorer:before {
|
1974
|
+
content: "\f26b";
|
1975
|
+
}
|
1976
|
+
.fa-tv:before,
|
1977
|
+
.fa-television:before {
|
1978
|
+
content: "\f26c";
|
1979
|
+
}
|
1980
|
+
.fa-contao:before {
|
1981
|
+
content: "\f26d";
|
1982
|
+
}
|
1983
|
+
.fa-500px:before {
|
1984
|
+
content: "\f26e";
|
1985
|
+
}
|
1986
|
+
.fa-amazon:before {
|
1987
|
+
content: "\f270";
|
1988
|
+
}
|
1989
|
+
.fa-calendar-plus-o:before {
|
1990
|
+
content: "\f271";
|
1991
|
+
}
|
1992
|
+
.fa-calendar-minus-o:before {
|
1993
|
+
content: "\f272";
|
1994
|
+
}
|
1995
|
+
.fa-calendar-times-o:before {
|
1996
|
+
content: "\f273";
|
1997
|
+
}
|
1998
|
+
.fa-calendar-check-o:before {
|
1999
|
+
content: "\f274";
|
2000
|
+
}
|
2001
|
+
.fa-industry:before {
|
2002
|
+
content: "\f275";
|
2003
|
+
}
|
2004
|
+
.fa-map-pin:before {
|
2005
|
+
content: "\f276";
|
2006
|
+
}
|
2007
|
+
.fa-map-signs:before {
|
2008
|
+
content: "\f277";
|
2009
|
+
}
|
2010
|
+
.fa-map-o:before {
|
2011
|
+
content: "\f278";
|
2012
|
+
}
|
2013
|
+
.fa-map:before {
|
2014
|
+
content: "\f279";
|
2015
|
+
}
|
2016
|
+
.fa-commenting:before {
|
2017
|
+
content: "\f27a";
|
2018
|
+
}
|
2019
|
+
.fa-commenting-o:before {
|
2020
|
+
content: "\f27b";
|
2021
|
+
}
|
2022
|
+
.fa-houzz:before {
|
2023
|
+
content: "\f27c";
|
2024
|
+
}
|
2025
|
+
.fa-vimeo:before {
|
2026
|
+
content: "\f27d";
|
2027
|
+
}
|
2028
|
+
.fa-black-tie:before {
|
2029
|
+
content: "\f27e";
|
2030
|
+
}
|
2031
|
+
.fa-fonticons:before {
|
2032
|
+
content: "\f280";
|
2033
|
+
}
|
2034
|
+
.fa-reddit-alien:before {
|
2035
|
+
content: "\f281";
|
2036
|
+
}
|
2037
|
+
.fa-edge:before {
|
2038
|
+
content: "\f282";
|
2039
|
+
}
|
2040
|
+
.fa-credit-card-alt:before {
|
2041
|
+
content: "\f283";
|
2042
|
+
}
|
2043
|
+
.fa-codiepie:before {
|
2044
|
+
content: "\f284";
|
2045
|
+
}
|
2046
|
+
.fa-modx:before {
|
2047
|
+
content: "\f285";
|
2048
|
+
}
|
2049
|
+
.fa-fort-awesome:before {
|
2050
|
+
content: "\f286";
|
2051
|
+
}
|
2052
|
+
.fa-usb:before {
|
2053
|
+
content: "\f287";
|
2054
|
+
}
|
2055
|
+
.fa-product-hunt:before {
|
2056
|
+
content: "\f288";
|
2057
|
+
}
|
2058
|
+
.fa-mixcloud:before {
|
2059
|
+
content: "\f289";
|
2060
|
+
}
|
2061
|
+
.fa-scribd:before {
|
2062
|
+
content: "\f28a";
|
2063
|
+
}
|
2064
|
+
.fa-pause-circle:before {
|
2065
|
+
content: "\f28b";
|
2066
|
+
}
|
2067
|
+
.fa-pause-circle-o:before {
|
2068
|
+
content: "\f28c";
|
2069
|
+
}
|
2070
|
+
.fa-stop-circle:before {
|
2071
|
+
content: "\f28d";
|
2072
|
+
}
|
2073
|
+
.fa-stop-circle-o:before {
|
2074
|
+
content: "\f28e";
|
2075
|
+
}
|
2076
|
+
.fa-shopping-bag:before {
|
2077
|
+
content: "\f290";
|
2078
|
+
}
|
2079
|
+
.fa-shopping-basket:before {
|
2080
|
+
content: "\f291";
|
2081
|
+
}
|
2082
|
+
.fa-hashtag:before {
|
2083
|
+
content: "\f292";
|
2084
|
+
}
|
2085
|
+
.fa-bluetooth:before {
|
2086
|
+
content: "\f293";
|
2087
|
+
}
|
2088
|
+
.fa-bluetooth-b:before {
|
2089
|
+
content: "\f294";
|
2090
|
+
}
|
2091
|
+
.fa-percent:before {
|
2092
|
+
content: "\f295";
|
2093
|
+
}
|
2094
|
+
.fa-gitlab:before {
|
2095
|
+
content: "\f296";
|
2096
|
+
}
|
2097
|
+
.fa-wpbeginner:before {
|
2098
|
+
content: "\f297";
|
2099
|
+
}
|
2100
|
+
.fa-wpforms:before {
|
2101
|
+
content: "\f298";
|
2102
|
+
}
|
2103
|
+
.fa-envira:before {
|
2104
|
+
content: "\f299";
|
2105
|
+
}
|
2106
|
+
.fa-universal-access:before {
|
2107
|
+
content: "\f29a";
|
2108
|
+
}
|
2109
|
+
.fa-wheelchair-alt:before {
|
2110
|
+
content: "\f29b";
|
2111
|
+
}
|
2112
|
+
.fa-question-circle-o:before {
|
2113
|
+
content: "\f29c";
|
2114
|
+
}
|
2115
|
+
.fa-blind:before {
|
2116
|
+
content: "\f29d";
|
2117
|
+
}
|
2118
|
+
.fa-audio-description:before {
|
2119
|
+
content: "\f29e";
|
2120
|
+
}
|
2121
|
+
.fa-volume-control-phone:before {
|
2122
|
+
content: "\f2a0";
|
2123
|
+
}
|
2124
|
+
.fa-braille:before {
|
2125
|
+
content: "\f2a1";
|
2126
|
+
}
|
2127
|
+
.fa-assistive-listening-systems:before {
|
2128
|
+
content: "\f2a2";
|
2129
|
+
}
|
2130
|
+
.fa-asl-interpreting:before,
|
2131
|
+
.fa-american-sign-language-interpreting:before {
|
2132
|
+
content: "\f2a3";
|
2133
|
+
}
|
2134
|
+
.fa-deafness:before,
|
2135
|
+
.fa-hard-of-hearing:before,
|
2136
|
+
.fa-deaf:before {
|
2137
|
+
content: "\f2a4";
|
2138
|
+
}
|
2139
|
+
.fa-glide:before {
|
2140
|
+
content: "\f2a5";
|
2141
|
+
}
|
2142
|
+
.fa-glide-g:before {
|
2143
|
+
content: "\f2a6";
|
2144
|
+
}
|
2145
|
+
.fa-signing:before,
|
2146
|
+
.fa-sign-language:before {
|
2147
|
+
content: "\f2a7";
|
2148
|
+
}
|
2149
|
+
.fa-low-vision:before {
|
2150
|
+
content: "\f2a8";
|
2151
|
+
}
|
2152
|
+
.fa-viadeo:before {
|
2153
|
+
content: "\f2a9";
|
2154
|
+
}
|
2155
|
+
.fa-viadeo-square:before {
|
2156
|
+
content: "\f2aa";
|
2157
|
+
}
|
2158
|
+
.fa-snapchat:before {
|
2159
|
+
content: "\f2ab";
|
2160
|
+
}
|
2161
|
+
.fa-snapchat-ghost:before {
|
2162
|
+
content: "\f2ac";
|
2163
|
+
}
|
2164
|
+
.fa-snapchat-square:before {
|
2165
|
+
content: "\f2ad";
|
2166
|
+
}
|
2167
|
+
.fa-pied-piper:before {
|
2168
|
+
content: "\f2ae";
|
2169
|
+
}
|
2170
|
+
.fa-first-order:before {
|
2171
|
+
content: "\f2b0";
|
2172
|
+
}
|
2173
|
+
.fa-yoast:before {
|
2174
|
+
content: "\f2b1";
|
2175
|
+
}
|
2176
|
+
.fa-themeisle:before {
|
2177
|
+
content: "\f2b2";
|
2178
|
+
}
|
2179
|
+
.fa-google-plus-circle:before,
|
2180
|
+
.fa-google-plus-official:before {
|
2181
|
+
content: "\f2b3";
|
2182
|
+
}
|
2183
|
+
.fa-fa:before,
|
2184
|
+
.fa-font-awesome:before {
|
2185
|
+
content: "\f2b4";
|
2186
|
+
}
|
2187
|
+
.fa-handshake-o:before {
|
2188
|
+
content: "\f2b5";
|
2189
|
+
}
|
2190
|
+
.fa-envelope-open:before {
|
2191
|
+
content: "\f2b6";
|
2192
|
+
}
|
2193
|
+
.fa-envelope-open-o:before {
|
2194
|
+
content: "\f2b7";
|
2195
|
+
}
|
2196
|
+
.fa-linode:before {
|
2197
|
+
content: "\f2b8";
|
2198
|
+
}
|
2199
|
+
.fa-address-book:before {
|
2200
|
+
content: "\f2b9";
|
2201
|
+
}
|
2202
|
+
.fa-address-book-o:before {
|
2203
|
+
content: "\f2ba";
|
2204
|
+
}
|
2205
|
+
.fa-vcard:before,
|
2206
|
+
.fa-address-card:before {
|
2207
|
+
content: "\f2bb";
|
2208
|
+
}
|
2209
|
+
.fa-vcard-o:before,
|
2210
|
+
.fa-address-card-o:before {
|
2211
|
+
content: "\f2bc";
|
2212
|
+
}
|
2213
|
+
.fa-user-circle:before {
|
2214
|
+
content: "\f2bd";
|
2215
|
+
}
|
2216
|
+
.fa-user-circle-o:before {
|
2217
|
+
content: "\f2be";
|
2218
|
+
}
|
2219
|
+
.fa-user-o:before {
|
2220
|
+
content: "\f2c0";
|
2221
|
+
}
|
2222
|
+
.fa-id-badge:before {
|
2223
|
+
content: "\f2c1";
|
2224
|
+
}
|
2225
|
+
.fa-drivers-license:before,
|
2226
|
+
.fa-id-card:before {
|
2227
|
+
content: "\f2c2";
|
2228
|
+
}
|
2229
|
+
.fa-drivers-license-o:before,
|
2230
|
+
.fa-id-card-o:before {
|
2231
|
+
content: "\f2c3";
|
2232
|
+
}
|
2233
|
+
.fa-quora:before {
|
2234
|
+
content: "\f2c4";
|
2235
|
+
}
|
2236
|
+
.fa-free-code-camp:before {
|
2237
|
+
content: "\f2c5";
|
2238
|
+
}
|
2239
|
+
.fa-telegram:before {
|
2240
|
+
content: "\f2c6";
|
2241
|
+
}
|
2242
|
+
.fa-thermometer-4:before,
|
2243
|
+
.fa-thermometer:before,
|
2244
|
+
.fa-thermometer-full:before {
|
2245
|
+
content: "\f2c7";
|
2246
|
+
}
|
2247
|
+
.fa-thermometer-3:before,
|
2248
|
+
.fa-thermometer-three-quarters:before {
|
2249
|
+
content: "\f2c8";
|
2250
|
+
}
|
2251
|
+
.fa-thermometer-2:before,
|
2252
|
+
.fa-thermometer-half:before {
|
2253
|
+
content: "\f2c9";
|
2254
|
+
}
|
2255
|
+
.fa-thermometer-1:before,
|
2256
|
+
.fa-thermometer-quarter:before {
|
2257
|
+
content: "\f2ca";
|
2258
|
+
}
|
2259
|
+
.fa-thermometer-0:before,
|
2260
|
+
.fa-thermometer-empty:before {
|
2261
|
+
content: "\f2cb";
|
2262
|
+
}
|
2263
|
+
.fa-shower:before {
|
2264
|
+
content: "\f2cc";
|
2265
|
+
}
|
2266
|
+
.fa-bathtub:before,
|
2267
|
+
.fa-s15:before,
|
2268
|
+
.fa-bath:before {
|
2269
|
+
content: "\f2cd";
|
2270
|
+
}
|
2271
|
+
.fa-podcast:before {
|
2272
|
+
content: "\f2ce";
|
2273
|
+
}
|
2274
|
+
.fa-window-maximize:before {
|
2275
|
+
content: "\f2d0";
|
2276
|
+
}
|
2277
|
+
.fa-window-minimize:before {
|
2278
|
+
content: "\f2d1";
|
2279
|
+
}
|
2280
|
+
.fa-window-restore:before {
|
2281
|
+
content: "\f2d2";
|
2282
|
+
}
|
2283
|
+
.fa-times-rectangle:before,
|
2284
|
+
.fa-window-close:before {
|
2285
|
+
content: "\f2d3";
|
2286
|
+
}
|
2287
|
+
.fa-times-rectangle-o:before,
|
2288
|
+
.fa-window-close-o:before {
|
2289
|
+
content: "\f2d4";
|
2290
|
+
}
|
2291
|
+
.fa-bandcamp:before {
|
2292
|
+
content: "\f2d5";
|
2293
|
+
}
|
2294
|
+
.fa-grav:before {
|
2295
|
+
content: "\f2d6";
|
2296
|
+
}
|
2297
|
+
.fa-etsy:before {
|
2298
|
+
content: "\f2d7";
|
2299
|
+
}
|
2300
|
+
.fa-imdb:before {
|
2301
|
+
content: "\f2d8";
|
2302
|
+
}
|
2303
|
+
.fa-ravelry:before {
|
2304
|
+
content: "\f2d9";
|
2305
|
+
}
|
2306
|
+
.fa-eercast:before {
|
2307
|
+
content: "\f2da";
|
2308
|
+
}
|
2309
|
+
.fa-microchip:before {
|
2310
|
+
content: "\f2db";
|
2311
|
+
}
|
2312
|
+
.fa-snowflake-o:before {
|
2313
|
+
content: "\f2dc";
|
2314
|
+
}
|
2315
|
+
.fa-superpowers:before {
|
2316
|
+
content: "\f2dd";
|
2317
|
+
}
|
2318
|
+
.fa-wpexplorer:before {
|
2319
|
+
content: "\f2de";
|
2320
|
+
}
|
2321
|
+
.fa-meetup:before {
|
2322
|
+
content: "\f2e0";
|
2323
|
+
}
|
2324
|
+
.sr-only {
|
2325
|
+
position: absolute;
|
2326
|
+
width: 1px;
|
2327
|
+
height: 1px;
|
2328
|
+
padding: 0;
|
2329
|
+
margin: -1px;
|
2330
|
+
overflow: hidden;
|
2331
|
+
clip: rect(0, 0, 0, 0);
|
2332
|
+
border: 0;
|
2333
|
+
}
|
2334
|
+
.sr-only-focusable:active,
|
2335
|
+
.sr-only-focusable:focus {
|
2336
|
+
position: static;
|
2337
|
+
width: auto;
|
2338
|
+
height: auto;
|
2339
|
+
margin: 0;
|
2340
|
+
overflow: visible;
|
2341
|
+
clip: auto;
|
2342
|
+
}
|