vitrina 0.2.5 → 0.2.6

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