xmt_froala 0.3.1

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