udongo 0.1.0

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