tolaria 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +66 -0
  3. data/.yardopts +4 -0
  4. data/CNAME +1 -0
  5. data/CONTRIBUTING.md +32 -0
  6. data/Gemfile +2 -0
  7. data/LICENSE.md +9 -0
  8. data/README.md +538 -0
  9. data/Rakefile +52 -0
  10. data/app/assets/fonts/admin/fontawesome.eot +0 -0
  11. data/app/assets/fonts/admin/fontawesome.svg +565 -0
  12. data/app/assets/fonts/admin/fontawesome.ttf +0 -0
  13. data/app/assets/fonts/admin/fontawesome.woff +0 -0
  14. data/app/assets/fonts/admin/fontawesome.woff2 +0 -0
  15. data/app/assets/images/admin/columbia_banner.png +0 -0
  16. data/app/assets/images/admin/favicon.ico +0 -0
  17. data/app/assets/images/admin/noise.png +0 -0
  18. data/app/assets/images/admin/select_arrows.svg +1 -0
  19. data/app/assets/javascripts/admin/admin.js +4 -0
  20. data/app/assets/javascripts/admin/base.js +12 -0
  21. data/app/assets/javascripts/admin/lib/backbone.js +1888 -0
  22. data/app/assets/javascripts/admin/lib/jquery.chosen.js +1272 -0
  23. data/app/assets/javascripts/admin/lib/jquery.js +10361 -0
  24. data/app/assets/javascripts/admin/lib/jquery.selection.js +352 -0
  25. data/app/assets/javascripts/admin/lib/moment.js +3103 -0
  26. data/app/assets/javascripts/admin/lib/no.js +6 -0
  27. data/app/assets/javascripts/admin/lib/underscore.js +1570 -0
  28. data/app/assets/javascripts/admin/models/composer_buttons.js +45 -0
  29. data/app/assets/javascripts/admin/models/rails_meta.js +4 -0
  30. data/app/assets/javascripts/admin/views/field_with_errors.js +19 -0
  31. data/app/assets/javascripts/admin/views/fields/attachment_field.js +32 -0
  32. data/app/assets/javascripts/admin/views/fields/has_many.js +64 -0
  33. data/app/assets/javascripts/admin/views/fields/image_association_select.js +31 -0
  34. data/app/assets/javascripts/admin/views/fields/markdown_composer.js +167 -0
  35. data/app/assets/javascripts/admin/views/fields/searchable_select.js +70 -0
  36. data/app/assets/javascripts/admin/views/fields/slug_field.js +38 -0
  37. data/app/assets/javascripts/admin/views/fields/swatch_field.js +55 -0
  38. data/app/assets/javascripts/admin/views/fields/timestamp_field.js +80 -0
  39. data/app/assets/javascripts/admin/views/flash_message.js +18 -0
  40. data/app/assets/javascripts/admin/views/form_orchestrator.js +41 -0
  41. data/app/assets/javascripts/admin/views/navigation.js +20 -0
  42. data/app/assets/javascripts/admin/views/resource_form.js +18 -0
  43. data/app/assets/javascripts/admin/views/search_form.js +20 -0
  44. data/app/assets/javascripts/admin/views/sessions.js +109 -0
  45. data/app/assets/javascripts/admin/views/virtual_form.js +47 -0
  46. data/app/assets/stylesheets/admin/_base.scss +5 -0
  47. data/app/assets/stylesheets/admin/_reset.scss +149 -0
  48. data/app/assets/stylesheets/admin/_root.scss +63 -0
  49. data/app/assets/stylesheets/admin/admin.scss +4 -0
  50. data/app/assets/stylesheets/admin/components/_blank_slate.scss +44 -0
  51. data/app/assets/stylesheets/admin/components/_buttons.scss +82 -0
  52. data/app/assets/stylesheets/admin/components/_flash_message.scss +64 -0
  53. data/app/assets/stylesheets/admin/components/_footer.scss +9 -0
  54. data/app/assets/stylesheets/admin/components/_header.scss +107 -0
  55. data/app/assets/stylesheets/admin/components/_index_table.scss +120 -0
  56. data/app/assets/stylesheets/admin/components/_main.scss +68 -0
  57. data/app/assets/stylesheets/admin/components/_markdown_body.scss +109 -0
  58. data/app/assets/stylesheets/admin/components/_navigation.scss +110 -0
  59. data/app/assets/stylesheets/admin/components/_pagination.scss +36 -0
  60. data/app/assets/stylesheets/admin/components/_pill.scss +11 -0
  61. data/app/assets/stylesheets/admin/components/_resource_form.scss +222 -0
  62. data/app/assets/stylesheets/admin/components/_search_form.scss +36 -0
  63. data/app/assets/stylesheets/admin/components/_sessions.scss +152 -0
  64. data/app/assets/stylesheets/admin/components/_show_table.scss +67 -0
  65. data/app/assets/stylesheets/admin/components/forms/_attachment_field.scss +59 -0
  66. data/app/assets/stylesheets/admin/components/forms/_chosen.scss +478 -0
  67. data/app/assets/stylesheets/admin/components/forms/_image_association_select.scss +20 -0
  68. data/app/assets/stylesheets/admin/components/forms/_markdown_composer.scss +149 -0
  69. data/app/assets/stylesheets/admin/components/forms/_nested_fields.scss +63 -0
  70. data/app/assets/stylesheets/admin/components/forms/_searchable_select.scss +8 -0
  71. data/app/assets/stylesheets/admin/components/forms/_slug_field.scss +20 -0
  72. data/app/assets/stylesheets/admin/components/forms/_swatch_field.scss +47 -0
  73. data/app/assets/stylesheets/admin/components/forms/_timestamp_field.scss +15 -0
  74. data/app/assets/stylesheets/admin/components/help_link.scss +6 -0
  75. data/app/assets/stylesheets/admin/mixins/_clearfix.scss +18 -0
  76. data/app/assets/stylesheets/admin/mixins/_min_max_width.scss +11 -0
  77. data/app/assets/stylesheets/admin/mixins/_rgbb.scss +7 -0
  78. data/app/assets/stylesheets/admin/mixins/_visuallyhidden.scss +33 -0
  79. data/app/assets/stylesheets/admin/settings/_animations.scss +21 -0
  80. data/app/assets/stylesheets/admin/settings/_breakpoints.scss +2 -0
  81. data/app/assets/stylesheets/admin/settings/_colors.scss +32 -0
  82. data/app/assets/stylesheets/admin/settings/_fonts.scss +31 -0
  83. data/app/assets/stylesheets/admin/settings/_icons.scss +1658 -0
  84. data/app/controllers/admin/admin_controller.rb +21 -0
  85. data/app/controllers/admin/sessions_controller.rb +112 -0
  86. data/app/controllers/tolaria/resource_controller.rb +132 -0
  87. data/app/controllers/tolaria/tolaria_controller.rb +40 -0
  88. data/app/helpers/admin/table_helper.rb +175 -0
  89. data/app/helpers/admin/view_helper.rb +76 -0
  90. data/app/mailers/passcode_mailer.rb +11 -0
  91. data/app/models/administrator.rb +146 -0
  92. data/app/views/admin/administrators/_form.html.erb +16 -0
  93. data/app/views/admin/administrators/_index.html.erb +20 -0
  94. data/app/views/admin/administrators/_search.html.erb +5 -0
  95. data/app/views/admin/administrators/_show.html.erb +14 -0
  96. data/app/views/admin/help/help_link.html.erb +16 -0
  97. data/app/views/admin/session/form.html.erb +52 -0
  98. data/app/views/admin/shared/_flash_messages.html.erb +42 -0
  99. data/app/views/admin/shared/_footer.html.erb +8 -0
  100. data/app/views/admin/shared/_head.html.erb +11 -0
  101. data/app/views/admin/shared/_header.html.erb +43 -0
  102. data/app/views/admin/shared/_navigation.html.erb +47 -0
  103. data/app/views/admin/shared/_skiplinks.html.erb +0 -0
  104. data/app/views/admin/shared/forms/_attachment_field.html.erb +17 -0
  105. data/app/views/admin/shared/forms/_has_many.html.erb +14 -0
  106. data/app/views/admin/shared/forms/_has_many_header.html.erb +19 -0
  107. data/app/views/admin/shared/forms/_image_association_select.html.erb +6 -0
  108. data/app/views/admin/shared/forms/_image_field.html.erb +19 -0
  109. data/app/views/admin/shared/forms/_markdown_composer.html.erb +29 -0
  110. data/app/views/admin/shared/forms/_searchable_select.html.erb +3 -0
  111. data/app/views/admin/shared/forms/_slug_field.html.erb +9 -0
  112. data/app/views/admin/shared/forms/_swatch_field.html.erb +4 -0
  113. data/app/views/admin/shared/forms/_timestamp_field.html.erb +19 -0
  114. data/app/views/admin/tolaria_resource/_form_buttons.html.erb +10 -0
  115. data/app/views/admin/tolaria_resource/_index_table.html.erb +73 -0
  116. data/app/views/admin/tolaria_resource/_search_form.html.erb +32 -0
  117. data/app/views/admin/tolaria_resource/_show_buttons.html.erb +13 -0
  118. data/app/views/admin/tolaria_resource/edit.html.erb +34 -0
  119. data/app/views/admin/tolaria_resource/index.html.erb +36 -0
  120. data/app/views/admin/tolaria_resource/new.html.erb +1 -0
  121. data/app/views/admin/tolaria_resource/show.html.erb +52 -0
  122. data/app/views/kaminari/admin/_first_page.html.erb +9 -0
  123. data/app/views/kaminari/admin/_last_page.html.erb +9 -0
  124. data/app/views/kaminari/admin/_next_page.html.erb +9 -0
  125. data/app/views/kaminari/admin/_page.html.erb +17 -0
  126. data/app/views/kaminari/admin/_paginator.html.erb +21 -0
  127. data/app/views/kaminari/admin/_prev_page.html.erb +9 -0
  128. data/app/views/layouts/admin/admin.html.erb +21 -0
  129. data/app/views/layouts/admin/sessions.html.erb +12 -0
  130. data/app/views/passcode_mailer/passcode.text.erb +5 -0
  131. data/lib/generators/tolaria/install/install_generator.rb +21 -0
  132. data/lib/generators/tolaria/install/templates/administrators_migration.rb +31 -0
  133. data/lib/generators/tolaria/install/templates/tolaria_initializer.rb +93 -0
  134. data/lib/tasks/admin.rake +32 -0
  135. data/lib/tolaria.rb +27 -0
  136. data/lib/tolaria/active_record.rb +55 -0
  137. data/lib/tolaria/admin.rb +4 -0
  138. data/lib/tolaria/categories.rb +21 -0
  139. data/lib/tolaria/config.rb +40 -0
  140. data/lib/tolaria/default_config.rb +74 -0
  141. data/lib/tolaria/engine.rb +23 -0
  142. data/lib/tolaria/form_buildable.rb +203 -0
  143. data/lib/tolaria/help_links.rb +78 -0
  144. data/lib/tolaria/introspection.rb +13 -0
  145. data/lib/tolaria/manage.rb +57 -0
  146. data/lib/tolaria/managed_class.rb +90 -0
  147. data/lib/tolaria/markdown.rb +28 -0
  148. data/lib/tolaria/random_tokens.rb +16 -0
  149. data/lib/tolaria/reload.rb +21 -0
  150. data/lib/tolaria/routes.rb +33 -0
  151. data/lib/tolaria/version.rb +13 -0
  152. data/test/demo/Rakefile +4 -0
  153. data/test/demo/app/assets/javascripts/application.js +1 -0
  154. data/test/demo/app/assets/stylesheets/application.scss +1 -0
  155. data/test/demo/app/controllers/application_controller.rb +5 -0
  156. data/test/demo/app/controllers/concerns/.keep +0 -0
  157. data/test/demo/app/controllers/homepage_controller.rb +4 -0
  158. data/test/demo/app/helpers/application_helper.rb +2 -0
  159. data/test/demo/app/mailers/.keep +0 -0
  160. data/test/demo/app/models/.keep +0 -0
  161. data/test/demo/app/models/blog_post.rb +43 -0
  162. data/test/demo/app/models/footnote.rb +5 -0
  163. data/test/demo/app/models/image.rb +19 -0
  164. data/test/demo/app/models/legal_page.rb +24 -0
  165. data/test/demo/app/models/miscellany.rb +12 -0
  166. data/test/demo/app/models/topic.rb +22 -0
  167. data/test/demo/app/models/video.rb +16 -0
  168. data/test/demo/app/views/admin/blog_posts/_form.html.erb +48 -0
  169. data/test/demo/app/views/admin/blog_posts/_search.html.erb +5 -0
  170. data/test/demo/app/views/admin/help/markdown-help.md +95 -0
  171. data/test/demo/app/views/admin/images/_form.html.erb +26 -0
  172. data/test/demo/app/views/admin/legal_pages/_form.html.erb +15 -0
  173. data/test/demo/app/views/admin/topics/_form.html.erb +3 -0
  174. data/test/demo/app/views/admin/videos/_form.html.erb +11 -0
  175. data/test/demo/app/views/homepage/homepage.html.erb +3 -0
  176. data/test/demo/app/views/layouts/application.html.erb +14 -0
  177. data/test/demo/bin/bundle +3 -0
  178. data/test/demo/bin/rails +4 -0
  179. data/test/demo/bin/rake +4 -0
  180. data/test/demo/bin/setup +29 -0
  181. data/test/demo/config.ru +4 -0
  182. data/test/demo/config/application.rb +26 -0
  183. data/test/demo/config/boot.rb +4 -0
  184. data/test/demo/config/database.yml +18 -0
  185. data/test/demo/config/environment.rb +3 -0
  186. data/test/demo/config/environments/development.rb +43 -0
  187. data/test/demo/config/environments/test.rb +44 -0
  188. data/test/demo/config/initializers/assets.rb +11 -0
  189. data/test/demo/config/initializers/cookies_serializer.rb +2 -0
  190. data/test/demo/config/initializers/filter_parameter_logging.rb +3 -0
  191. data/test/demo/config/initializers/inflections.rb +17 -0
  192. data/test/demo/config/initializers/markdown.rb +44 -0
  193. data/test/demo/config/initializers/secret_token.rb +2 -0
  194. data/test/demo/config/initializers/session_store.rb +2 -0
  195. data/test/demo/config/initializers/tolaria.rb +17 -0
  196. data/test/demo/config/initializers/wrap_parameters.rb +14 -0
  197. data/test/demo/config/routes.rb +4 -0
  198. data/test/demo/db/migrate/20150601202901_create_administrators.rb +31 -0
  199. data/test/demo/db/migrate/20150603204006_add_testing_models.rb +27 -0
  200. data/test/demo/db/migrate/20150609232013_create_footnotes.rb +10 -0
  201. data/test/demo/db/migrate/20150610135235_create_additional_demo_objects.rb +50 -0
  202. data/test/demo/db/schema.rb +112 -0
  203. data/test/demo/log/.keep +0 -0
  204. data/test/demo/public/404.html +67 -0
  205. data/test/demo/public/422.html +67 -0
  206. data/test/demo/public/500.html +66 -0
  207. data/test/demo/public/favicon.ico +0 -0
  208. data/test/integration/help_link_test.rb +73 -0
  209. data/test/integration/interface_test.rb +63 -0
  210. data/test/integration/router_test.rb +73 -0
  211. data/test/integration/session_test.rb +88 -0
  212. data/test/test_helper.rb +58 -0
  213. data/test/unit/configuration_test.rb +21 -0
  214. data/test/unit/managed_classes_test.rb +54 -0
  215. data/test/unit/markdown_test.rb +12 -0
  216. data/test/unit/menu_test.rb +32 -0
  217. data/test/unit/random_tokens_test.rb +13 -0
  218. data/tolaria.gemspec +35 -0
  219. metadata +499 -0
@@ -0,0 +1,31 @@
1
+ $fMonospace: Menlo, Consolas, "Liberation Mono", Courier, monospace;
2
+
3
+ %monospace,
4
+ .monospace {
5
+ font-family: $fMonospace !important;
6
+ font-weight: normal;
7
+ -webkit-font-smoothing: subpixel-antialiased;
8
+ }
9
+
10
+ $fHelvetica: "Helvetica Neue", "Segoe UI", Arial, Freesans, sans-serif;
11
+
12
+ %helvetica,
13
+ .helvetica {
14
+ font-family: $fHelvetica;
15
+ }
16
+
17
+ @font-face {
18
+ font-family: "FontAwesome";
19
+ src: font-url("admin/fontawesome.eot");
20
+ src: font-url("admin/fontawesome.eot?#iefix") format("embedded-opentype"),
21
+ font-url("admin/fontawesome.woff2") format("woff2"),
22
+ font-url("admin/fontawesome.woff") format("woff"),
23
+ font-url("admin/fontawesome.ttf") format("truetype"),
24
+ font-url("admin/fontawesome.svg#fontawesome") format("svg");
25
+ font-weight: normal;
26
+ font-style: normal;
27
+ }
28
+
29
+ $fFontAwesome: FontAwesome;
30
+
31
+
@@ -0,0 +1,1658 @@
1
+ .icon {
2
+
3
+ display: inline-block;
4
+ width: 16px;
5
+ text-align: center;
6
+
7
+ font: normal normal normal 14px/16px FontAwesome;
8
+ text-decoration: none !important;
9
+ vertical-align: baseline;
10
+
11
+ text-rendering: auto; // optimizeLegibility throws things off
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ transform: translate(0, 0); // ensures no half-pixel rendering in firefox
15
+
16
+ -webkit-user-select: none;
17
+ -moz-user-select: none;
18
+ -ms-user-select: none;
19
+ user-select: none;
20
+
21
+ }
22
+
23
+ // ----------------------------------------------------------------------------
24
+ // ICON CLASSES
25
+ // Modified from Font Awesome 4.3.0
26
+ // ----------------------------------------------------------------------------
27
+
28
+ .icon-glass:before {
29
+ content: "\f000";
30
+ }
31
+ .icon-music:before {
32
+ content: "\f001";
33
+ }
34
+ .icon-search:before {
35
+ content: "\f002";
36
+ }
37
+ .icon-envelope-o:before {
38
+ content: "\f003";
39
+ }
40
+ .icon-heart:before {
41
+ content: "\f004";
42
+ }
43
+ .icon-star:before {
44
+ content: "\f005";
45
+ }
46
+ .icon-star-o:before {
47
+ content: "\f006";
48
+ }
49
+ .icon-user:before {
50
+ content: "\f007";
51
+ }
52
+ .icon-film:before {
53
+ content: "\f008";
54
+ }
55
+ .icon-th-large:before {
56
+ content: "\f009";
57
+ }
58
+ .icon-th:before {
59
+ content: "\f00a";
60
+ }
61
+ .icon-th-list:before {
62
+ content: "\f00b";
63
+ }
64
+ .icon-check:before {
65
+ content: "\f00c";
66
+ }
67
+ .icon-remove:before,
68
+ .icon-close:before,
69
+ .icon-times:before {
70
+ content: "\f00d";
71
+ }
72
+ .icon-search-plus:before {
73
+ content: "\f00e";
74
+ }
75
+ .icon-search-minus:before {
76
+ content: "\f010";
77
+ }
78
+ .icon-power-off:before {
79
+ content: "\f011";
80
+ }
81
+ .icon-signal:before {
82
+ content: "\f012";
83
+ }
84
+ .icon-gear:before,
85
+ .icon-cog:before {
86
+ content: "\f013";
87
+ }
88
+ .icon-trash-o:before {
89
+ content: "\f014";
90
+ }
91
+ .icon-home:before {
92
+ content: "\f015";
93
+ }
94
+ .icon-file-o:before {
95
+ content: "\f016";
96
+ }
97
+ .icon-clock-o:before {
98
+ content: "\f017";
99
+ }
100
+ .icon-road:before {
101
+ content: "\f018";
102
+ }
103
+ .icon-download:before {
104
+ content: "\f019";
105
+ }
106
+ .icon-arrow-circle-o-down:before {
107
+ content: "\f01a";
108
+ }
109
+ .icon-arrow-circle-o-up:before {
110
+ content: "\f01b";
111
+ }
112
+ .icon-inbox:before {
113
+ content: "\f01c";
114
+ }
115
+ .icon-play-circle-o:before {
116
+ content: "\f01d";
117
+ }
118
+ .icon-rotate-right:before,
119
+ .icon-repeat:before {
120
+ content: "\f01e";
121
+ }
122
+ .icon-refresh:before {
123
+ content: "\f021";
124
+ }
125
+ .icon-list-alt:before {
126
+ content: "\f022";
127
+ }
128
+ .icon-lock:before {
129
+ content: "\f023";
130
+ }
131
+ .icon-flag:before {
132
+ content: "\f024";
133
+ }
134
+ .icon-headphones:before {
135
+ content: "\f025";
136
+ }
137
+ .icon-volume-off:before {
138
+ content: "\f026";
139
+ }
140
+ .icon-volume-down:before {
141
+ content: "\f027";
142
+ }
143
+ .icon-volume-up:before {
144
+ content: "\f028";
145
+ }
146
+ .icon-qrcode:before {
147
+ content: "\f029";
148
+ }
149
+ .icon-barcode:before {
150
+ content: "\f02a";
151
+ }
152
+ .icon-tag:before {
153
+ content: "\f02b";
154
+ }
155
+ .icon-tags:before {
156
+ content: "\f02c";
157
+ }
158
+ .icon-book:before {
159
+ content: "\f02d";
160
+ }
161
+ .icon-bookmark:before {
162
+ content: "\f02e";
163
+ }
164
+ .icon-print:before {
165
+ content: "\f02f";
166
+ }
167
+ .icon-camera:before {
168
+ content: "\f030";
169
+ }
170
+ .icon-font:before {
171
+ content: "\f031";
172
+ }
173
+ .icon-bold:before {
174
+ content: "\f032";
175
+ }
176
+ .icon-italic:before {
177
+ content: "\f033";
178
+ }
179
+ .icon-text-height:before {
180
+ content: "\f034";
181
+ }
182
+ .icon-text-width:before {
183
+ content: "\f035";
184
+ }
185
+ .icon-align-left:before {
186
+ content: "\f036";
187
+ }
188
+ .icon-align-center:before {
189
+ content: "\f037";
190
+ }
191
+ .icon-align-right:before {
192
+ content: "\f038";
193
+ }
194
+ .icon-align-justify:before {
195
+ content: "\f039";
196
+ }
197
+ .icon-list:before {
198
+ content: "\f03a";
199
+ }
200
+ .icon-dedent:before,
201
+ .icon-outdent:before {
202
+ content: "\f03b";
203
+ }
204
+ .icon-indent:before {
205
+ content: "\f03c";
206
+ }
207
+ .icon-video-camera:before {
208
+ content: "\f03d";
209
+ }
210
+ .icon-photo:before,
211
+ .icon-image:before,
212
+ .icon-picture-o:before {
213
+ content: "\f03e";
214
+ }
215
+ .icon-pencil:before {
216
+ content: "\f040";
217
+ }
218
+ .icon-map-marker:before {
219
+ content: "\f041";
220
+ }
221
+ .icon-adjust:before {
222
+ content: "\f042";
223
+ }
224
+ .icon-tint:before {
225
+ content: "\f043";
226
+ }
227
+ .icon-edit:before,
228
+ .icon-pencil-square-o:before {
229
+ content: "\f044";
230
+ }
231
+ .icon-share-square-o:before {
232
+ content: "\f045";
233
+ }
234
+ .icon-check-square-o:before {
235
+ content: "\f046";
236
+ }
237
+ .icon-arrows:before {
238
+ content: "\f047";
239
+ }
240
+ .icon-step-backward:before {
241
+ content: "\f048";
242
+ }
243
+ .icon-fast-backward:before {
244
+ content: "\f049";
245
+ }
246
+ .icon-backward:before {
247
+ content: "\f04a";
248
+ }
249
+ .icon-play:before {
250
+ content: "\f04b";
251
+ }
252
+ .icon-pause:before {
253
+ content: "\f04c";
254
+ }
255
+ .icon-stop:before {
256
+ content: "\f04d";
257
+ }
258
+ .icon-forward:before {
259
+ content: "\f04e";
260
+ }
261
+ .icon-fast-forward:before {
262
+ content: "\f050";
263
+ }
264
+ .icon-step-forward:before {
265
+ content: "\f051";
266
+ }
267
+ .icon-eject:before {
268
+ content: "\f052";
269
+ }
270
+ .icon-chevron-left:before {
271
+ content: "\f053";
272
+ }
273
+ .icon-chevron-right:before {
274
+ content: "\f054";
275
+ }
276
+ .icon-plus-circle:before {
277
+ content: "\f055";
278
+ }
279
+ .icon-minus-circle:before {
280
+ content: "\f056";
281
+ }
282
+ .icon-times-circle:before {
283
+ content: "\f057";
284
+ }
285
+ .icon-check-circle:before {
286
+ content: "\f058";
287
+ }
288
+ .icon-question-circle:before {
289
+ content: "\f059";
290
+ }
291
+ .icon-info-circle:before {
292
+ content: "\f05a";
293
+ }
294
+ .icon-crosshairs:before {
295
+ content: "\f05b";
296
+ }
297
+ .icon-times-circle-o:before {
298
+ content: "\f05c";
299
+ }
300
+ .icon-check-circle-o:before {
301
+ content: "\f05d";
302
+ }
303
+ .icon-ban:before {
304
+ content: "\f05e";
305
+ }
306
+ .icon-arrow-left:before {
307
+ content: "\f060";
308
+ }
309
+ .icon-arrow-right:before {
310
+ content: "\f061";
311
+ }
312
+ .icon-arrow-up:before {
313
+ content: "\f062";
314
+ }
315
+ .icon-arrow-down:before {
316
+ content: "\f063";
317
+ }
318
+ .icon-mail-forward:before,
319
+ .icon-share:before {
320
+ content: "\f064";
321
+ }
322
+ .icon-expand:before {
323
+ content: "\f065";
324
+ }
325
+ .icon-compress:before {
326
+ content: "\f066";
327
+ }
328
+ .icon-plus:before {
329
+ content: "\f067";
330
+ }
331
+ .icon-minus:before {
332
+ content: "\f068";
333
+ }
334
+ .icon-asterisk:before {
335
+ content: "\f069";
336
+ }
337
+ .icon-exclamation-circle:before {
338
+ content: "\f06a";
339
+ }
340
+ .icon-gift:before {
341
+ content: "\f06b";
342
+ }
343
+ .icon-leaf:before {
344
+ content: "\f06c";
345
+ }
346
+ .icon-fire:before {
347
+ content: "\f06d";
348
+ }
349
+ .icon-eye:before {
350
+ content: "\f06e";
351
+ }
352
+ .icon-eye-slash:before {
353
+ content: "\f070";
354
+ }
355
+ .icon-warning:before,
356
+ .icon-exclamation-triangle:before {
357
+ content: "\f071";
358
+ }
359
+ .icon-plane:before {
360
+ content: "\f072";
361
+ }
362
+ .icon-calendar:before {
363
+ content: "\f073";
364
+ }
365
+ .icon-random:before {
366
+ content: "\f074";
367
+ }
368
+ .icon-comment:before {
369
+ content: "\f075";
370
+ }
371
+ .icon-magnet:before {
372
+ content: "\f076";
373
+ }
374
+ .icon-chevron-up:before {
375
+ content: "\f077";
376
+ }
377
+ .icon-chevron-down:before {
378
+ content: "\f078";
379
+ }
380
+ .icon-retweet:before {
381
+ content: "\f079";
382
+ }
383
+ .icon-shopping-cart:before {
384
+ content: "\f07a";
385
+ }
386
+ .icon-folder:before {
387
+ content: "\f07b";
388
+ }
389
+ .icon-folder-open:before {
390
+ content: "\f07c";
391
+ }
392
+ .icon-arrows-v:before {
393
+ content: "\f07d";
394
+ }
395
+ .icon-arrows-h:before {
396
+ content: "\f07e";
397
+ }
398
+ .icon-bar-chart-o:before,
399
+ .icon-bar-chart:before {
400
+ content: "\f080";
401
+ }
402
+ .icon-twitter-square:before {
403
+ content: "\f081";
404
+ }
405
+ .icon-facebook-square:before {
406
+ content: "\f082";
407
+ }
408
+ .icon-camera-retro:before {
409
+ content: "\f083";
410
+ }
411
+ .icon-key:before {
412
+ content: "\f084";
413
+ }
414
+ .icon-gears:before,
415
+ .icon-cogs:before {
416
+ content: "\f085";
417
+ }
418
+ .icon-comments:before {
419
+ content: "\f086";
420
+ }
421
+ .icon-thumbs-o-up:before {
422
+ content: "\f087";
423
+ }
424
+ .icon-thumbs-o-down:before {
425
+ content: "\f088";
426
+ }
427
+ .icon-star-half:before {
428
+ content: "\f089";
429
+ }
430
+ .icon-heart-o:before {
431
+ content: "\f08a";
432
+ }
433
+ .icon-sign-out:before {
434
+ content: "\f08b";
435
+ }
436
+ .icon-linkedin-square:before {
437
+ content: "\f08c";
438
+ }
439
+ .icon-thumb-tack:before {
440
+ content: "\f08d";
441
+ }
442
+ .icon-external-link:before {
443
+ content: "\f08e";
444
+ }
445
+ .icon-sign-in:before {
446
+ content: "\f090";
447
+ }
448
+ .icon-trophy:before {
449
+ content: "\f091";
450
+ }
451
+ .icon-github-square:before {
452
+ content: "\f092";
453
+ }
454
+ .icon-upload:before {
455
+ content: "\f093";
456
+ }
457
+ .icon-lemon-o:before {
458
+ content: "\f094";
459
+ }
460
+ .icon-phone:before {
461
+ content: "\f095";
462
+ }
463
+ .icon-square-o:before {
464
+ content: "\f096";
465
+ }
466
+ .icon-bookmark-o:before {
467
+ content: "\f097";
468
+ }
469
+ .icon-phone-square:before {
470
+ content: "\f098";
471
+ }
472
+ .icon-twitter:before {
473
+ content: "\f099";
474
+ }
475
+ .icon-facebook-f:before,
476
+ .icon-facebook:before {
477
+ content: "\f09a";
478
+ }
479
+ .icon-github:before {
480
+ content: "\f09b";
481
+ }
482
+ .icon-unlock:before {
483
+ content: "\f09c";
484
+ }
485
+ .icon-credit-card:before {
486
+ content: "\f09d";
487
+ }
488
+ .icon-rss:before {
489
+ content: "\f09e";
490
+ }
491
+ .icon-hdd-o:before {
492
+ content: "\f0a0";
493
+ }
494
+ .icon-bullhorn:before {
495
+ content: "\f0a1";
496
+ }
497
+ .icon-bell:before {
498
+ content: "\f0f3";
499
+ }
500
+ .icon-certificate:before {
501
+ content: "\f0a3";
502
+ }
503
+ .icon-hand-o-right:before {
504
+ content: "\f0a4";
505
+ }
506
+ .icon-hand-o-left:before {
507
+ content: "\f0a5";
508
+ }
509
+ .icon-hand-o-up:before {
510
+ content: "\f0a6";
511
+ }
512
+ .icon-hand-o-down:before {
513
+ content: "\f0a7";
514
+ }
515
+ .icon-arrow-circle-left:before {
516
+ content: "\f0a8";
517
+ }
518
+ .icon-arrow-circle-right:before {
519
+ content: "\f0a9";
520
+ }
521
+ .icon-arrow-circle-up:before {
522
+ content: "\f0aa";
523
+ }
524
+ .icon-arrow-circle-down:before {
525
+ content: "\f0ab";
526
+ }
527
+ .icon-globe:before {
528
+ content: "\f0ac";
529
+ }
530
+ .icon-wrench:before {
531
+ content: "\f0ad";
532
+ }
533
+ .icon-tasks:before {
534
+ content: "\f0ae";
535
+ }
536
+ .icon-filter:before {
537
+ content: "\f0b0";
538
+ }
539
+ .icon-briefcase:before {
540
+ content: "\f0b1";
541
+ }
542
+ .icon-arrows-alt:before {
543
+ content: "\f0b2";
544
+ }
545
+ .icon-group:before,
546
+ .icon-users:before {
547
+ content: "\f0c0";
548
+ }
549
+ .icon-chain:before,
550
+ .icon-link:before {
551
+ content: "\f0c1";
552
+ }
553
+ .icon-cloud:before {
554
+ content: "\f0c2";
555
+ }
556
+ .icon-flask:before {
557
+ content: "\f0c3";
558
+ }
559
+ .icon-cut:before,
560
+ .icon-scissors:before {
561
+ content: "\f0c4";
562
+ }
563
+ .icon-copy:before,
564
+ .icon-files-o:before {
565
+ content: "\f0c5";
566
+ }
567
+ .icon-paperclip:before {
568
+ content: "\f0c6";
569
+ }
570
+ .icon-save:before,
571
+ .icon-floppy-o:before {
572
+ content: "\f0c7";
573
+ }
574
+ .icon-square:before {
575
+ content: "\f0c8";
576
+ }
577
+ .icon-navicon:before,
578
+ .icon-reorder:before,
579
+ .icon-bars:before {
580
+ content: "\f0c9";
581
+ }
582
+ .icon-list-ul:before {
583
+ content: "\f0ca";
584
+ }
585
+ .icon-list-ol:before {
586
+ content: "\f0cb";
587
+ }
588
+ .icon-strikethrough:before {
589
+ content: "\f0cc";
590
+ }
591
+ .icon-underline:before {
592
+ content: "\f0cd";
593
+ }
594
+ .icon-table:before {
595
+ content: "\f0ce";
596
+ }
597
+ .icon-magic:before {
598
+ content: "\f0d0";
599
+ }
600
+ .icon-truck:before {
601
+ content: "\f0d1";
602
+ }
603
+ .icon-pinterest:before {
604
+ content: "\f0d2";
605
+ }
606
+ .icon-pinterest-square:before {
607
+ content: "\f0d3";
608
+ }
609
+ .icon-google-plus-square:before {
610
+ content: "\f0d4";
611
+ }
612
+ .icon-google-plus:before {
613
+ content: "\f0d5";
614
+ }
615
+ .icon-money:before {
616
+ content: "\f0d6";
617
+ }
618
+ .icon-caret-down:before {
619
+ content: "\f0d7";
620
+ }
621
+ .icon-caret-up:before {
622
+ content: "\f0d8";
623
+ }
624
+ .icon-caret-left:before {
625
+ content: "\f0d9";
626
+ }
627
+ .icon-caret-right:before {
628
+ content: "\f0da";
629
+ }
630
+ .icon-columns:before {
631
+ content: "\f0db";
632
+ }
633
+ .icon-unsorted:before,
634
+ .icon-sort:before {
635
+ content: "\f0dc";
636
+ }
637
+ .icon-sort-down:before,
638
+ .icon-sort-desc:before {
639
+ content: "\f0dd";
640
+ }
641
+ .icon-sort-up:before,
642
+ .icon-sort-asc:before {
643
+ content: "\f0de";
644
+ }
645
+ .icon-envelope:before {
646
+ content: "\f0e0";
647
+ }
648
+ .icon-linkedin:before {
649
+ content: "\f0e1";
650
+ }
651
+ .icon-rotate-left:before,
652
+ .icon-undo:before {
653
+ content: "\f0e2";
654
+ }
655
+ .icon-legal:before,
656
+ .icon-gavel:before {
657
+ content: "\f0e3";
658
+ }
659
+ .icon-dashboard:before,
660
+ .icon-tachometer:before {
661
+ content: "\f0e4";
662
+ }
663
+ .icon-comment-o:before {
664
+ content: "\f0e5";
665
+ }
666
+ .icon-comments-o:before {
667
+ content: "\f0e6";
668
+ }
669
+ .icon-flash:before,
670
+ .icon-bolt:before {
671
+ content: "\f0e7";
672
+ }
673
+ .icon-sitemap:before {
674
+ content: "\f0e8";
675
+ }
676
+ .icon-umbrella:before {
677
+ content: "\f0e9";
678
+ }
679
+ .icon-paste:before,
680
+ .icon-clipboard:before {
681
+ content: "\f0ea";
682
+ }
683
+ .icon-lightbulb-o:before {
684
+ content: "\f0eb";
685
+ }
686
+ .icon-exchange:before {
687
+ content: "\f0ec";
688
+ }
689
+ .icon-cloud-download:before {
690
+ content: "\f0ed";
691
+ }
692
+ .icon-cloud-upload:before {
693
+ content: "\f0ee";
694
+ }
695
+ .icon-user-md:before {
696
+ content: "\f0f0";
697
+ }
698
+ .icon-stethoscope:before {
699
+ content: "\f0f1";
700
+ }
701
+ .icon-suitcase:before {
702
+ content: "\f0f2";
703
+ }
704
+ .icon-bell-o:before {
705
+ content: "\f0a2";
706
+ }
707
+ .icon-coffee:before {
708
+ content: "\f0f4";
709
+ }
710
+ .icon-cutlery:before {
711
+ content: "\f0f5";
712
+ }
713
+ .icon-file-text-o:before {
714
+ content: "\f0f6";
715
+ }
716
+ .icon-building-o:before {
717
+ content: "\f0f7";
718
+ }
719
+ .icon-hospital-o:before {
720
+ content: "\f0f8";
721
+ }
722
+ .icon-ambulance:before {
723
+ content: "\f0f9";
724
+ }
725
+ .icon-medkit:before {
726
+ content: "\f0fa";
727
+ }
728
+ .icon-fighter-jet:before {
729
+ content: "\f0fb";
730
+ }
731
+ .icon-beer:before {
732
+ content: "\f0fc";
733
+ }
734
+ .icon-h-square:before {
735
+ content: "\f0fd";
736
+ }
737
+ .icon-plus-square:before {
738
+ content: "\f0fe";
739
+ }
740
+ .icon-angle-double-left:before {
741
+ content: "\f100";
742
+ }
743
+ .icon-angle-double-right:before {
744
+ content: "\f101";
745
+ }
746
+ .icon-angle-double-up:before {
747
+ content: "\f102";
748
+ }
749
+ .icon-angle-double-down:before {
750
+ content: "\f103";
751
+ }
752
+ .icon-angle-left:before {
753
+ content: "\f104";
754
+ }
755
+ .icon-angle-right:before {
756
+ content: "\f105";
757
+ }
758
+ .icon-angle-up:before {
759
+ content: "\f106";
760
+ }
761
+ .icon-angle-down:before {
762
+ content: "\f107";
763
+ }
764
+ .icon-desktop:before {
765
+ content: "\f108";
766
+ }
767
+ .icon-laptop:before {
768
+ content: "\f109";
769
+ }
770
+ .icon-tablet:before {
771
+ content: "\f10a";
772
+ }
773
+ .icon-mobile-phone:before,
774
+ .icon-mobile:before {
775
+ content: "\f10b";
776
+ }
777
+ .icon-circle-o:before {
778
+ content: "\f10c";
779
+ }
780
+ .icon-quote-left:before {
781
+ content: "\f10d";
782
+ }
783
+ .icon-quote-right:before {
784
+ content: "\f10e";
785
+ }
786
+ .icon-spinner:before {
787
+ content: "\f110";
788
+ }
789
+ .icon-circle:before {
790
+ content: "\f111";
791
+ }
792
+ .icon-mail-reply:before,
793
+ .icon-reply:before {
794
+ content: "\f112";
795
+ }
796
+ .icon-github-alt:before {
797
+ content: "\f113";
798
+ }
799
+ .icon-folder-o:before {
800
+ content: "\f114";
801
+ }
802
+ .icon-folder-open-o:before {
803
+ content: "\f115";
804
+ }
805
+ .icon-smile-o:before {
806
+ content: "\f118";
807
+ }
808
+ .icon-frown-o:before {
809
+ content: "\f119";
810
+ }
811
+ .icon-meh-o:before {
812
+ content: "\f11a";
813
+ }
814
+ .icon-gamepad:before {
815
+ content: "\f11b";
816
+ }
817
+ .icon-keyboard-o:before {
818
+ content: "\f11c";
819
+ }
820
+ .icon-flag-o:before {
821
+ content: "\f11d";
822
+ }
823
+ .icon-flag-checkered:before {
824
+ content: "\f11e";
825
+ }
826
+ .icon-terminal:before {
827
+ content: "\f120";
828
+ }
829
+ .icon-code:before {
830
+ content: "\f121";
831
+ }
832
+ .icon-mail-reply-all:before,
833
+ .icon-reply-all:before {
834
+ content: "\f122";
835
+ }
836
+ .icon-star-half-empty:before,
837
+ .icon-star-half-full:before,
838
+ .icon-star-half-o:before {
839
+ content: "\f123";
840
+ }
841
+ .icon-location-arrow:before {
842
+ content: "\f124";
843
+ }
844
+ .icon-crop:before {
845
+ content: "\f125";
846
+ }
847
+ .icon-code-fork:before {
848
+ content: "\f126";
849
+ }
850
+ .icon-unlink:before,
851
+ .icon-chain-broken:before {
852
+ content: "\f127";
853
+ }
854
+ .icon-question:before {
855
+ content: "\f128";
856
+ }
857
+ .icon-info:before {
858
+ content: "\f129";
859
+ }
860
+ .icon-exclamation:before {
861
+ content: "\f12a";
862
+ }
863
+ .icon-superscript:before {
864
+ content: "\f12b";
865
+ }
866
+ .icon-subscript:before {
867
+ content: "\f12c";
868
+ }
869
+ .icon-eraser:before {
870
+ content: "\f12d";
871
+ }
872
+ .icon-puzzle-piece:before {
873
+ content: "\f12e";
874
+ }
875
+ .icon-microphone:before {
876
+ content: "\f130";
877
+ }
878
+ .icon-microphone-slash:before {
879
+ content: "\f131";
880
+ }
881
+ .icon-shield:before {
882
+ content: "\f132";
883
+ }
884
+ .icon-calendar-o:before {
885
+ content: "\f133";
886
+ }
887
+ .icon-fire-extinguisher:before {
888
+ content: "\f134";
889
+ }
890
+ .icon-rocket:before {
891
+ content: "\f135";
892
+ }
893
+ .icon-maxcdn:before {
894
+ content: "\f136";
895
+ }
896
+ .icon-chevron-circle-left:before {
897
+ content: "\f137";
898
+ }
899
+ .icon-chevron-circle-right:before {
900
+ content: "\f138";
901
+ }
902
+ .icon-chevron-circle-up:before {
903
+ content: "\f139";
904
+ }
905
+ .icon-chevron-circle-down:before {
906
+ content: "\f13a";
907
+ }
908
+ .icon-html5:before {
909
+ content: "\f13b";
910
+ }
911
+ .icon-css3:before {
912
+ content: "\f13c";
913
+ }
914
+ .icon-anchor:before {
915
+ content: "\f13d";
916
+ }
917
+ .icon-unlock-alt:before {
918
+ content: "\f13e";
919
+ }
920
+ .icon-bullseye:before {
921
+ content: "\f140";
922
+ }
923
+ .icon-ellipsis-h:before {
924
+ content: "\f141";
925
+ }
926
+ .icon-ellipsis-v:before {
927
+ content: "\f142";
928
+ }
929
+ .icon-rss-square:before {
930
+ content: "\f143";
931
+ }
932
+ .icon-play-circle:before {
933
+ content: "\f144";
934
+ }
935
+ .icon-ticket:before {
936
+ content: "\f145";
937
+ }
938
+ .icon-minus-square:before {
939
+ content: "\f146";
940
+ }
941
+ .icon-minus-square-o:before {
942
+ content: "\f147";
943
+ }
944
+ .icon-level-up:before {
945
+ content: "\f148";
946
+ }
947
+ .icon-level-down:before {
948
+ content: "\f149";
949
+ }
950
+ .icon-check-square:before {
951
+ content: "\f14a";
952
+ }
953
+ .icon-pencil-square:before {
954
+ content: "\f14b";
955
+ }
956
+ .icon-external-link-square:before {
957
+ content: "\f14c";
958
+ }
959
+ .icon-share-square:before {
960
+ content: "\f14d";
961
+ }
962
+ .icon-compass:before {
963
+ content: "\f14e";
964
+ }
965
+ .icon-toggle-down:before,
966
+ .icon-caret-square-o-down:before {
967
+ content: "\f150";
968
+ }
969
+ .icon-toggle-up:before,
970
+ .icon-caret-square-o-up:before {
971
+ content: "\f151";
972
+ }
973
+ .icon-toggle-right:before,
974
+ .icon-caret-square-o-right:before {
975
+ content: "\f152";
976
+ }
977
+ .icon-euro:before,
978
+ .icon-eur:before {
979
+ content: "\f153";
980
+ }
981
+ .icon-gbp:before {
982
+ content: "\f154";
983
+ }
984
+ .icon-dollar:before,
985
+ .icon-usd:before {
986
+ content: "\f155";
987
+ }
988
+ .icon-rupee:before,
989
+ .icon-inr:before {
990
+ content: "\f156";
991
+ }
992
+ .icon-cny:before,
993
+ .icon-rmb:before,
994
+ .icon-yen:before,
995
+ .icon-jpy:before {
996
+ content: "\f157";
997
+ }
998
+ .icon-ruble:before,
999
+ .icon-rouble:before,
1000
+ .icon-rub:before {
1001
+ content: "\f158";
1002
+ }
1003
+ .icon-won:before,
1004
+ .icon-krw:before {
1005
+ content: "\f159";
1006
+ }
1007
+ .icon-bitcoin:before,
1008
+ .icon-btc:before {
1009
+ content: "\f15a";
1010
+ }
1011
+ .icon-file:before {
1012
+ content: "\f15b";
1013
+ }
1014
+ .icon-file-text:before {
1015
+ content: "\f15c";
1016
+ }
1017
+ .icon-sort-alpha-asc:before {
1018
+ content: "\f15d";
1019
+ }
1020
+ .icon-sort-alpha-desc:before {
1021
+ content: "\f15e";
1022
+ }
1023
+ .icon-sort-amount-asc:before {
1024
+ content: "\f160";
1025
+ }
1026
+ .icon-sort-amount-desc:before {
1027
+ content: "\f161";
1028
+ }
1029
+ .icon-sort-numeric-asc:before {
1030
+ content: "\f162";
1031
+ }
1032
+ .icon-sort-numeric-desc:before {
1033
+ content: "\f163";
1034
+ }
1035
+ .icon-thumbs-up:before {
1036
+ content: "\f164";
1037
+ }
1038
+ .icon-thumbs-down:before {
1039
+ content: "\f165";
1040
+ }
1041
+ .icon-youtube-square:before {
1042
+ content: "\f166";
1043
+ }
1044
+ .icon-youtube:before {
1045
+ content: "\f167";
1046
+ }
1047
+ .icon-xing:before {
1048
+ content: "\f168";
1049
+ }
1050
+ .icon-xing-square:before {
1051
+ content: "\f169";
1052
+ }
1053
+ .icon-youtube-play:before {
1054
+ content: "\f16a";
1055
+ }
1056
+ .icon-dropbox:before {
1057
+ content: "\f16b";
1058
+ }
1059
+ .icon-stack-overflow:before {
1060
+ content: "\f16c";
1061
+ }
1062
+ .icon-instagram:before {
1063
+ content: "\f16d";
1064
+ }
1065
+ .icon-flickr:before {
1066
+ content: "\f16e";
1067
+ }
1068
+ .icon-adn:before {
1069
+ content: "\f170";
1070
+ }
1071
+ .icon-bitbucket:before {
1072
+ content: "\f171";
1073
+ }
1074
+ .icon-bitbucket-square:before {
1075
+ content: "\f172";
1076
+ }
1077
+ .icon-tumblr:before {
1078
+ content: "\f173";
1079
+ }
1080
+ .icon-tumblr-square:before {
1081
+ content: "\f174";
1082
+ }
1083
+ .icon-long-arrow-down:before {
1084
+ content: "\f175";
1085
+ }
1086
+ .icon-long-arrow-up:before {
1087
+ content: "\f176";
1088
+ }
1089
+ .icon-long-arrow-left:before {
1090
+ content: "\f177";
1091
+ }
1092
+ .icon-long-arrow-right:before {
1093
+ content: "\f178";
1094
+ }
1095
+ .icon-apple:before {
1096
+ content: "\f179";
1097
+ }
1098
+ .icon-windows:before {
1099
+ content: "\f17a";
1100
+ }
1101
+ .icon-android:before {
1102
+ content: "\f17b";
1103
+ }
1104
+ .icon-linux:before {
1105
+ content: "\f17c";
1106
+ }
1107
+ .icon-dribbble:before {
1108
+ content: "\f17d";
1109
+ }
1110
+ .icon-skype:before {
1111
+ content: "\f17e";
1112
+ }
1113
+ .icon-foursquare:before {
1114
+ content: "\f180";
1115
+ }
1116
+ .icon-trello:before {
1117
+ content: "\f181";
1118
+ }
1119
+ .icon-female:before {
1120
+ content: "\f182";
1121
+ }
1122
+ .icon-male:before {
1123
+ content: "\f183";
1124
+ }
1125
+ .icon-gittip:before,
1126
+ .icon-gratipay:before {
1127
+ content: "\f184";
1128
+ }
1129
+ .icon-sun-o:before {
1130
+ content: "\f185";
1131
+ }
1132
+ .icon-moon-o:before {
1133
+ content: "\f186";
1134
+ }
1135
+ .icon-archive:before {
1136
+ content: "\f187";
1137
+ }
1138
+ .icon-bug:before {
1139
+ content: "\f188";
1140
+ }
1141
+ .icon-vk:before {
1142
+ content: "\f189";
1143
+ }
1144
+ .icon-weibo:before {
1145
+ content: "\f18a";
1146
+ }
1147
+ .icon-renren:before {
1148
+ content: "\f18b";
1149
+ }
1150
+ .icon-pagelines:before {
1151
+ content: "\f18c";
1152
+ }
1153
+ .icon-stack-exchange:before {
1154
+ content: "\f18d";
1155
+ }
1156
+ .icon-arrow-circle-o-right:before {
1157
+ content: "\f18e";
1158
+ }
1159
+ .icon-arrow-circle-o-left:before {
1160
+ content: "\f190";
1161
+ }
1162
+ .icon-toggle-left:before,
1163
+ .icon-caret-square-o-left:before {
1164
+ content: "\f191";
1165
+ }
1166
+ .icon-dot-circle-o:before {
1167
+ content: "\f192";
1168
+ }
1169
+ .icon-wheelchair:before {
1170
+ content: "\f193";
1171
+ }
1172
+ .icon-vimeo-square:before {
1173
+ content: "\f194";
1174
+ }
1175
+ .icon-turkish-lira:before,
1176
+ .icon-try:before {
1177
+ content: "\f195";
1178
+ }
1179
+ .icon-plus-square-o:before {
1180
+ content: "\f196";
1181
+ }
1182
+ .icon-space-shuttle:before {
1183
+ content: "\f197";
1184
+ }
1185
+ .icon-slack:before {
1186
+ content: "\f198";
1187
+ }
1188
+ .icon-envelope-square:before {
1189
+ content: "\f199";
1190
+ }
1191
+ .icon-wordpress:before {
1192
+ content: "\f19a";
1193
+ }
1194
+ .icon-openid:before {
1195
+ content: "\f19b";
1196
+ }
1197
+ .icon-institution:before,
1198
+ .icon-bank:before,
1199
+ .icon-university:before {
1200
+ content: "\f19c";
1201
+ }
1202
+ .icon-mortar-board:before,
1203
+ .icon-graduation-cap:before {
1204
+ content: "\f19d";
1205
+ }
1206
+ .icon-yahoo:before {
1207
+ content: "\f19e";
1208
+ }
1209
+ .icon-google:before {
1210
+ content: "\f1a0";
1211
+ }
1212
+ .icon-reddit:before {
1213
+ content: "\f1a1";
1214
+ }
1215
+ .icon-reddit-square:before {
1216
+ content: "\f1a2";
1217
+ }
1218
+ .icon-stumbleupon-circle:before {
1219
+ content: "\f1a3";
1220
+ }
1221
+ .icon-stumbleupon:before {
1222
+ content: "\f1a4";
1223
+ }
1224
+ .icon-delicious:before {
1225
+ content: "\f1a5";
1226
+ }
1227
+ .icon-digg:before {
1228
+ content: "\f1a6";
1229
+ }
1230
+ .icon-pied-piper:before {
1231
+ content: "\f1a7";
1232
+ }
1233
+ .icon-pied-piper-alt:before {
1234
+ content: "\f1a8";
1235
+ }
1236
+ .icon-drupal:before {
1237
+ content: "\f1a9";
1238
+ }
1239
+ .icon-joomla:before {
1240
+ content: "\f1aa";
1241
+ }
1242
+ .icon-language:before {
1243
+ content: "\f1ab";
1244
+ }
1245
+ .icon-fax:before {
1246
+ content: "\f1ac";
1247
+ }
1248
+ .icon-building:before {
1249
+ content: "\f1ad";
1250
+ }
1251
+ .icon-child:before {
1252
+ content: "\f1ae";
1253
+ }
1254
+ .icon-paw:before {
1255
+ content: "\f1b0";
1256
+ }
1257
+ .icon-spoon:before {
1258
+ content: "\f1b1";
1259
+ }
1260
+ .icon-cube:before {
1261
+ content: "\f1b2";
1262
+ }
1263
+ .icon-cubes:before {
1264
+ content: "\f1b3";
1265
+ }
1266
+ .icon-behance:before {
1267
+ content: "\f1b4";
1268
+ }
1269
+ .icon-behance-square:before {
1270
+ content: "\f1b5";
1271
+ }
1272
+ .icon-steam:before {
1273
+ content: "\f1b6";
1274
+ }
1275
+ .icon-steam-square:before {
1276
+ content: "\f1b7";
1277
+ }
1278
+ .icon-recycle:before {
1279
+ content: "\f1b8";
1280
+ }
1281
+ .icon-automobile:before,
1282
+ .icon-car:before {
1283
+ content: "\f1b9";
1284
+ }
1285
+ .icon-cab:before,
1286
+ .icon-taxi:before {
1287
+ content: "\f1ba";
1288
+ }
1289
+ .icon-tree:before {
1290
+ content: "\f1bb";
1291
+ }
1292
+ .icon-spotify:before {
1293
+ content: "\f1bc";
1294
+ }
1295
+ .icon-deviantart:before {
1296
+ content: "\f1bd";
1297
+ }
1298
+ .icon-soundcloud:before {
1299
+ content: "\f1be";
1300
+ }
1301
+ .icon-database:before {
1302
+ content: "\f1c0";
1303
+ }
1304
+ .icon-file-pdf-o:before {
1305
+ content: "\f1c1";
1306
+ }
1307
+ .icon-file-word-o:before {
1308
+ content: "\f1c2";
1309
+ }
1310
+ .icon-file-excel-o:before {
1311
+ content: "\f1c3";
1312
+ }
1313
+ .icon-file-powerpoint-o:before {
1314
+ content: "\f1c4";
1315
+ }
1316
+ .icon-file-photo-o:before,
1317
+ .icon-file-picture-o:before,
1318
+ .icon-file-image-o:before {
1319
+ content: "\f1c5";
1320
+ }
1321
+ .icon-file-zip-o:before,
1322
+ .icon-file-archive-o:before {
1323
+ content: "\f1c6";
1324
+ }
1325
+ .icon-file-sound-o:before,
1326
+ .icon-file-audio-o:before {
1327
+ content: "\f1c7";
1328
+ }
1329
+ .icon-file-movie-o:before,
1330
+ .icon-file-video-o:before {
1331
+ content: "\f1c8";
1332
+ }
1333
+ .icon-file-code-o:before {
1334
+ content: "\f1c9";
1335
+ }
1336
+ .icon-vine:before {
1337
+ content: "\f1ca";
1338
+ }
1339
+ .icon-codepen:before {
1340
+ content: "\f1cb";
1341
+ }
1342
+ .icon-jsfiddle:before {
1343
+ content: "\f1cc";
1344
+ }
1345
+ .icon-life-bouy:before,
1346
+ .icon-life-buoy:before,
1347
+ .icon-life-saver:before,
1348
+ .icon-support:before,
1349
+ .icon-life-ring:before {
1350
+ content: "\f1cd";
1351
+ }
1352
+ .icon-circle-o-notch:before {
1353
+ content: "\f1ce";
1354
+ }
1355
+ .icon-ra:before,
1356
+ .icon-rebel:before {
1357
+ content: "\f1d0";
1358
+ }
1359
+ .icon-ge:before,
1360
+ .icon-empire:before {
1361
+ content: "\f1d1";
1362
+ }
1363
+ .icon-git-square:before {
1364
+ content: "\f1d2";
1365
+ }
1366
+ .icon-git:before {
1367
+ content: "\f1d3";
1368
+ }
1369
+ .icon-hacker-news:before {
1370
+ content: "\f1d4";
1371
+ }
1372
+ .icon-tencent-weibo:before {
1373
+ content: "\f1d5";
1374
+ }
1375
+ .icon-qq:before {
1376
+ content: "\f1d6";
1377
+ }
1378
+ .icon-wechat:before,
1379
+ .icon-weixin:before {
1380
+ content: "\f1d7";
1381
+ }
1382
+ .icon-send:before,
1383
+ .icon-paper-plane:before {
1384
+ content: "\f1d8";
1385
+ }
1386
+ .icon-send-o:before,
1387
+ .icon-paper-plane-o:before {
1388
+ content: "\f1d9";
1389
+ }
1390
+ .icon-history:before {
1391
+ content: "\f1da";
1392
+ }
1393
+ .icon-genderless:before,
1394
+ .icon-circle-thin:before {
1395
+ content: "\f1db";
1396
+ }
1397
+ .icon-header:before {
1398
+ content: "\f1dc";
1399
+ }
1400
+ .icon-paragraph:before {
1401
+ content: "\f1dd";
1402
+ }
1403
+ .icon-sliders:before {
1404
+ content: "\f1de";
1405
+ }
1406
+ .icon-share-alt:before {
1407
+ content: "\f1e0";
1408
+ }
1409
+ .icon-share-alt-square:before {
1410
+ content: "\f1e1";
1411
+ }
1412
+ .icon-bomb:before {
1413
+ content: "\f1e2";
1414
+ }
1415
+ .icon-soccer-ball-o:before,
1416
+ .icon-futbol-o:before {
1417
+ content: "\f1e3";
1418
+ }
1419
+ .icon-tty:before {
1420
+ content: "\f1e4";
1421
+ }
1422
+ .icon-binoculars:before {
1423
+ content: "\f1e5";
1424
+ }
1425
+ .icon-plug:before {
1426
+ content: "\f1e6";
1427
+ }
1428
+ .icon-slideshare:before {
1429
+ content: "\f1e7";
1430
+ }
1431
+ .icon-twitch:before {
1432
+ content: "\f1e8";
1433
+ }
1434
+ .icon-yelp:before {
1435
+ content: "\f1e9";
1436
+ }
1437
+ .icon-newspaper-o:before {
1438
+ content: "\f1ea";
1439
+ }
1440
+ .icon-wifi:before {
1441
+ content: "\f1eb";
1442
+ }
1443
+ .icon-calculator:before {
1444
+ content: "\f1ec";
1445
+ }
1446
+ .icon-paypal:before {
1447
+ content: "\f1ed";
1448
+ }
1449
+ .icon-google-wallet:before {
1450
+ content: "\f1ee";
1451
+ }
1452
+ .icon-cc-visa:before {
1453
+ content: "\f1f0";
1454
+ }
1455
+ .icon-cc-mastercard:before {
1456
+ content: "\f1f1";
1457
+ }
1458
+ .icon-cc-discover:before {
1459
+ content: "\f1f2";
1460
+ }
1461
+ .icon-cc-amex:before {
1462
+ content: "\f1f3";
1463
+ }
1464
+ .icon-cc-paypal:before {
1465
+ content: "\f1f4";
1466
+ }
1467
+ .icon-cc-stripe:before {
1468
+ content: "\f1f5";
1469
+ }
1470
+ .icon-bell-slash:before {
1471
+ content: "\f1f6";
1472
+ }
1473
+ .icon-bell-slash-o:before {
1474
+ content: "\f1f7";
1475
+ }
1476
+ .icon-trash:before {
1477
+ content: "\f1f8";
1478
+ }
1479
+ .icon-copyright:before {
1480
+ content: "\f1f9";
1481
+ }
1482
+ .icon-at:before {
1483
+ content: "\f1fa";
1484
+ }
1485
+ .icon-eyedropper:before {
1486
+ content: "\f1fb";
1487
+ }
1488
+ .icon-paint-brush:before {
1489
+ content: "\f1fc";
1490
+ }
1491
+ .icon-birthday-cake:before {
1492
+ content: "\f1fd";
1493
+ }
1494
+ .icon-area-chart:before {
1495
+ content: "\f1fe";
1496
+ }
1497
+ .icon-pie-chart:before {
1498
+ content: "\f200";
1499
+ }
1500
+ .icon-line-chart:before {
1501
+ content: "\f201";
1502
+ }
1503
+ .icon-lastfm:before {
1504
+ content: "\f202";
1505
+ }
1506
+ .icon-lastfm-square:before {
1507
+ content: "\f203";
1508
+ }
1509
+ .icon-toggle-off:before {
1510
+ content: "\f204";
1511
+ }
1512
+ .icon-toggle-on:before {
1513
+ content: "\f205";
1514
+ }
1515
+ .icon-bicycle:before {
1516
+ content: "\f206";
1517
+ }
1518
+ .icon-bus:before {
1519
+ content: "\f207";
1520
+ }
1521
+ .icon-ioxhost:before {
1522
+ content: "\f208";
1523
+ }
1524
+ .icon-angellist:before {
1525
+ content: "\f209";
1526
+ }
1527
+ .icon-cc:before {
1528
+ content: "\f20a";
1529
+ }
1530
+ .icon-shekel:before,
1531
+ .icon-sheqel:before,
1532
+ .icon-ils:before {
1533
+ content: "\f20b";
1534
+ }
1535
+ .icon-meanpath:before {
1536
+ content: "\f20c";
1537
+ }
1538
+ .icon-buysellads:before {
1539
+ content: "\f20d";
1540
+ }
1541
+ .icon-connectdevelop:before {
1542
+ content: "\f20e";
1543
+ }
1544
+ .icon-dashcube:before {
1545
+ content: "\f210";
1546
+ }
1547
+ .icon-forumbee:before {
1548
+ content: "\f211";
1549
+ }
1550
+ .icon-leanpub:before {
1551
+ content: "\f212";
1552
+ }
1553
+ .icon-sellsy:before {
1554
+ content: "\f213";
1555
+ }
1556
+ .icon-shirtsinbulk:before {
1557
+ content: "\f214";
1558
+ }
1559
+ .icon-simplybuilt:before {
1560
+ content: "\f215";
1561
+ }
1562
+ .icon-skyatlas:before {
1563
+ content: "\f216";
1564
+ }
1565
+ .icon-cart-plus:before {
1566
+ content: "\f217";
1567
+ }
1568
+ .icon-cart-arrow-down:before {
1569
+ content: "\f218";
1570
+ }
1571
+ .icon-diamond:before {
1572
+ content: "\f219";
1573
+ }
1574
+ .icon-ship:before {
1575
+ content: "\f21a";
1576
+ }
1577
+ .icon-user-secret:before {
1578
+ content: "\f21b";
1579
+ }
1580
+ .icon-motorcycle:before {
1581
+ content: "\f21c";
1582
+ }
1583
+ .icon-street-view:before {
1584
+ content: "\f21d";
1585
+ }
1586
+ .icon-heartbeat:before {
1587
+ content: "\f21e";
1588
+ }
1589
+ .icon-venus:before {
1590
+ content: "\f221";
1591
+ }
1592
+ .icon-mars:before {
1593
+ content: "\f222";
1594
+ }
1595
+ .icon-mercury:before {
1596
+ content: "\f223";
1597
+ }
1598
+ .icon-transgender:before {
1599
+ content: "\f224";
1600
+ }
1601
+ .icon-transgender-alt:before {
1602
+ content: "\f225";
1603
+ }
1604
+ .icon-venus-double:before {
1605
+ content: "\f226";
1606
+ }
1607
+ .icon-mars-double:before {
1608
+ content: "\f227";
1609
+ }
1610
+ .icon-venus-mars:before {
1611
+ content: "\f228";
1612
+ }
1613
+ .icon-mars-stroke:before {
1614
+ content: "\f229";
1615
+ }
1616
+ .icon-mars-stroke-v:before {
1617
+ content: "\f22a";
1618
+ }
1619
+ .icon-mars-stroke-h:before {
1620
+ content: "\f22b";
1621
+ }
1622
+ .icon-neuter:before {
1623
+ content: "\f22c";
1624
+ }
1625
+ .icon-facebook-official:before {
1626
+ content: "\f230";
1627
+ }
1628
+ .icon-pinterest-p:before {
1629
+ content: "\f231";
1630
+ }
1631
+ .icon-whatsapp:before {
1632
+ content: "\f232";
1633
+ }
1634
+ .icon-server:before {
1635
+ content: "\f233";
1636
+ }
1637
+ .icon-user-plus:before {
1638
+ content: "\f234";
1639
+ }
1640
+ .icon-user-times:before {
1641
+ content: "\f235";
1642
+ }
1643
+ .icon-hotel:before,
1644
+ .icon-bed:before {
1645
+ content: "\f236";
1646
+ }
1647
+ .icon-viacoin:before {
1648
+ content: "\f237";
1649
+ }
1650
+ .icon-train:before {
1651
+ content: "\f238";
1652
+ }
1653
+ .icon-subway:before {
1654
+ content: "\f239";
1655
+ }
1656
+ .icon-medium:before {
1657
+ content: "\f23a";
1658
+ }