artfully_ose 1.2.0.beta.1 → 1.2.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (539) hide show
  1. checksums.yaml +9 -9
  2. data/app/assets/fonts/FontAwesome.otf +0 -0
  3. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  4. data/app/assets/fonts/fontawesome-webfont.svg +252 -472
  5. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  6. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  7. data/app/assets/images/person-default-avatar.psd +0 -0
  8. data/app/assets/javascripts/application.js +10 -163
  9. data/app/assets/javascripts/box-office.js +262 -0
  10. data/app/assets/javascripts/custom/inline-people-search.js +40 -40
  11. data/app/assets/javascripts/custom/people.js +5 -68
  12. data/app/assets/javascripts/custom/prices.js +0 -1
  13. data/app/assets/javascripts/custom/show.js +8 -18
  14. data/app/assets/javascripts/jquery-lib/jquery.mask-money.js +0 -1
  15. data/app/assets/javascripts/locationselector.js +1 -1
  16. data/app/assets/javascripts/store/jquery.validate.additional-methods.js +159 -476
  17. data/app/assets/javascripts/store/jquery.validate.js +406 -449
  18. data/app/assets/javascripts/store/store.js +5 -29
  19. data/app/assets/stylesheets/application.sass +60 -223
  20. data/app/assets/stylesheets/bootstrap-overrides.css +3 -13
  21. data/app/assets/stylesheets/bootstrap.css +0 -1
  22. data/app/assets/stylesheets/font-awesome.sass +759 -0
  23. data/app/assets/stylesheets/sass/_event_list.sass +1 -12
  24. data/app/assets/stylesheets/sass/_tags.sass +2 -13
  25. data/app/assets/stylesheets/sass/box-office.sass +1 -2
  26. data/app/assets/stylesheets/sass/cart.sass +6 -0
  27. data/app/assets/stylesheets/sass/store.sass +68 -123
  28. data/app/assets/stylesheets/storefront.css +1 -2
  29. data/app/concerns/itemable.rb +1 -1
  30. data/app/controllers/artfully_ose_controller.rb +7 -29
  31. data/app/controllers/discounts_controller.rb +1 -8
  32. data/app/controllers/events_controller.rb +33 -41
  33. data/app/controllers/exchanges_controller.rb +2 -8
  34. data/app/controllers/export_controller.rb +0 -6
  35. data/app/controllers/imports_controller.rb +0 -19
  36. data/app/controllers/members/index_controller.rb +1 -1
  37. data/app/controllers/members/members_controller.rb +1 -6
  38. data/app/controllers/membership_awards_controller.rb +58 -0
  39. data/app/controllers/membership_types_controller.rb +3 -40
  40. data/app/controllers/memberships_controller.rb +4 -6
  41. data/app/controllers/orders_controller.rb +2 -86
  42. data/app/controllers/organizations_controller.rb +3 -4
  43. data/app/controllers/people_controller.rb +23 -54
  44. data/app/controllers/refunds_controller.rb +7 -7
  45. data/app/controllers/sales_controller.rb +28 -67
  46. data/app/controllers/searches_controller.rb +9 -15
  47. data/app/controllers/sections_controller.rb +2 -2
  48. data/app/controllers/segments_controller.rb +4 -4
  49. data/app/controllers/shows_controller.rb +49 -79
  50. data/app/controllers/slices_controller.rb +2 -3
  51. data/app/controllers/statements_controller.rb +1 -1
  52. data/app/controllers/store/checkouts_controller.rb +3 -8
  53. data/app/controllers/store/donations_controller.rb +1 -19
  54. data/app/controllers/store/events_controller.rb +1 -14
  55. data/app/controllers/store/memberships_controller.rb +1 -12
  56. data/app/controllers/store/orders_controller.rb +17 -36
  57. data/app/controllers/store/passes_controller.rb +0 -9
  58. data/app/controllers/store/store_controller.rb +2 -7
  59. data/app/controllers/tickets_controller.rb +2 -2
  60. data/app/helpers/artfully_ose_helper.rb +21 -79
  61. data/app/helpers/link_helper.rb +2 -12
  62. data/app/mailers/order_mailer.rb +1 -28
  63. data/app/mailers/reports_mailer.rb +4 -5
  64. data/app/models/ability.rb +0 -1
  65. data/app/models/action.rb +1 -1
  66. data/app/models/actions/go_action.rb +2 -3
  67. data/app/{concerns → models/actions}/immutable_action.rb +0 -0
  68. data/app/models/address.rb +11 -32
  69. data/app/models/{cart.rb → carts/cart.rb} +37 -46
  70. data/app/models/carts/cart_finder.rb +33 -0
  71. data/app/models/checkout.rb +41 -85
  72. data/app/models/comp.rb +17 -24
  73. data/app/models/company.rb +1 -1
  74. data/app/models/contribution.rb +0 -1
  75. data/app/models/database_views/item_view.rb +28 -169
  76. data/app/models/database_views/order_view.rb +34 -0
  77. data/app/models/donation.rb +0 -4
  78. data/app/models/door_list.rb +3 -6
  79. data/app/models/event.rb +10 -60
  80. data/app/models/exchange.rb +5 -7
  81. data/app/models/{ext.rb → ext/ext.rb} +1 -14
  82. data/app/models/ext/integrations.rb +21 -39
  83. data/app/models/fee_strategy.rb +1 -47
  84. data/app/models/import.rb +2 -22
  85. data/app/models/imports/donations_import.rb +19 -1
  86. data/app/models/imports/events_import.rb +51 -43
  87. data/app/models/individual.rb +1 -3
  88. data/app/models/item.rb +11 -28
  89. data/app/models/job/daily_email_report_job.rb +6 -20
  90. data/app/models/job/mailchimp_sync_job.rb +3 -1
  91. data/app/models/job/order_processor.rb +12 -78
  92. data/app/models/job/show_creator.rb +3 -8
  93. data/app/models/kit.rb +4 -2
  94. data/app/models/kits/mailchimp_kit.rb +10 -18
  95. data/app/models/kits/regular_donation_kit.rb +8 -38
  96. data/app/models/member.rb +17 -152
  97. data/app/models/membership.rb +23 -59
  98. data/app/models/membership_award.rb +23 -0
  99. data/app/models/membership_type.rb +2 -44
  100. data/app/models/note.rb +1 -1
  101. data/app/models/order_handler.rb +39 -100
  102. data/app/models/orders/comp_order.rb +0 -4
  103. data/app/models/orders/imported_order.rb +0 -4
  104. data/app/models/{order.rb → orders/order.rb} +18 -113
  105. data/app/models/orders/refund_order.rb +0 -4
  106. data/app/{concerns → models/orders}/unrefundable.rb +0 -0
  107. data/app/models/organization.rb +15 -55
  108. data/app/models/organization_ability.rb +0 -1
  109. data/app/models/parsed_row.rb +3 -58
  110. data/app/models/payments/cash_payment.rb +1 -3
  111. data/app/models/payments/comp_payment.rb +1 -3
  112. data/app/models/payments/credit_card_payment.rb +23 -44
  113. data/app/models/{payment.rb → payments/payment.rb} +1 -29
  114. data/app/models/person.rb +36 -140
  115. data/app/models/phone.rb +8 -0
  116. data/app/models/refund.rb +2 -5
  117. data/app/models/sale.rb +10 -14
  118. data/app/models/sale_search.rb +21 -3
  119. data/app/models/search.rb +67 -320
  120. data/app/models/section.rb +2 -18
  121. data/app/models/show.rb +20 -67
  122. data/app/models/slices.rb +8 -25
  123. data/app/models/statement.rb +5 -32
  124. data/app/models/ticket.rb +15 -50
  125. data/app/models/ticket/locker.rb +1 -2
  126. data/app/models/ticket/pricing.rb +1 -11
  127. data/app/models/ticket/reports.rb +0 -16
  128. data/app/models/ticket/sale_transitions.rb +0 -4
  129. data/app/models/ticket/template.rb +0 -1
  130. data/app/models/ticket/transfers.rb +2 -12
  131. data/app/models/ticket_summary.rb +1 -7
  132. data/app/models/ticket_type.rb +7 -59
  133. data/app/models/user.rb +5 -18
  134. data/app/models/user_membership.rb +3 -21
  135. data/app/models/valuation/lifetime_ticket_value.rb +1 -1
  136. data/app/models/venue.rb +7 -21
  137. data/app/presenters/event_presenter.rb +1 -1
  138. data/app/views/actions/_form.html.haml +6 -6
  139. data/app/views/actions/get/_show.html.haml +13 -2
  140. data/app/views/actions/give/_show.html.haml +1 -1
  141. data/app/views/actions/shared/_show.html.haml +1 -1
  142. data/app/views/addresses/_address.html.haml +6 -7
  143. data/app/views/contributions/_form.html.haml +1 -1
  144. data/app/views/contributions/index.html.haml +2 -2
  145. data/app/views/discounts/_discount_section_fields.html.haml +1 -1
  146. data/app/views/discounts/_form.html.haml +1 -1
  147. data/app/views/discounts/index.html.haml +1 -1
  148. data/app/views/events/_day_date_show.html.haml +2 -2
  149. data/app/views/events/_discount_section_fields.html.haml +1 -1
  150. data/app/views/events/_header.html.haml +0 -1
  151. data/app/views/events/_list.html.haml +5 -10
  152. data/app/views/events/_menu.html.haml +15 -6
  153. data/app/views/events/_section_fields.html.haml +1 -1
  154. data/app/views/events/_share_and_sell.haml +2 -3
  155. data/app/views/events/_ticket_type_fields.html.haml +4 -43
  156. data/app/views/events/edit.html.haml +1 -6
  157. data/app/views/events/image.html.haml +1 -2
  158. data/app/views/events/index.html.haml +3 -20
  159. data/app/views/events/show.html.haml +1 -3
  160. data/app/views/events/temp_discount_form.html.haml +1 -1
  161. data/app/views/events/temp_discounts_index.html.haml +1 -1
  162. data/app/views/exchanges/new.html.haml +28 -51
  163. data/app/views/imports/donations/_pending.html.haml +1 -1
  164. data/app/views/imports/events/_pending.html.haml +1 -1
  165. data/app/views/imports/index.html.haml +3 -6
  166. data/app/views/imports/people/_imported.html.haml +2 -2
  167. data/app/views/imports/people/_new.html.haml +8 -20
  168. data/app/views/imports/people/_pending.html.haml +2 -2
  169. data/app/views/imports/people/_recalled.html.haml +1 -1
  170. data/app/views/imports/shared/_sidebar.html.haml +1 -1
  171. data/app/views/index/dashboard.html.haml +4 -4
  172. data/app/views/layouts/_flash.html.haml +3 -3
  173. data/app/views/layouts/_google_analytics.html.haml +2 -5
  174. data/app/views/layouts/_menu.html.haml +5 -9
  175. data/app/views/layouts/application.html.haml +2 -2
  176. data/app/views/layouts/devise_layout.html.haml +2 -2
  177. data/app/views/layouts/members.html.haml +1 -1
  178. data/app/views/layouts/storefront.html.haml +15 -27
  179. data/app/views/members/index/index.html.haml +13 -7
  180. data/app/views/membership_awards/confirm.html.haml +59 -0
  181. data/app/views/membership_awards/create.html.haml +1 -0
  182. data/app/views/membership_awards/new.html.haml +74 -0
  183. data/app/views/membership_types/_form.html.haml +19 -67
  184. data/app/views/membership_types/index.html.haml +14 -15
  185. data/app/views/memberships/index.html.haml +50 -116
  186. data/app/views/merges/find_person.html.haml +1 -1
  187. data/app/views/notes/_note.html.haml +4 -4
  188. data/app/views/order_mailer/confirmation_for.html.haml +21 -33
  189. data/app/views/order_mailer/confirmation_for.text.haml +3 -6
  190. data/app/views/orders/_item_table.haml +8 -25
  191. data/app/views/orders/_order_sidebar.html.haml +4 -2
  192. data/app/views/orders/sales.html.haml +3 -3
  193. data/app/views/organizations/_connection_form.html.haml +1 -1
  194. data/app/views/organizations/_form.html.haml +20 -25
  195. data/app/views/organizations/edit.html.haml +2 -2
  196. data/app/views/organizations/show.html.haml +16 -22
  197. data/app/views/people/_edit_modal.html.haml +28 -48
  198. data/app/views/people/_header.html.haml +9 -18
  199. data/app/views/people/_phone_fields.html.haml +1 -1
  200. data/app/views/people/index.html.haml +6 -18
  201. data/app/views/people/new.html.haml +1 -1
  202. data/app/views/people/show.html.haml +24 -71
  203. data/app/views/refunds/new.html.haml +27 -45
  204. data/app/views/reports_mailer/daily.html.haml +21 -86
  205. data/app/views/sales/new.html.haml +125 -33
  206. data/app/views/searches/_form.html.haml +50 -115
  207. data/app/views/searches/_person.html.haml +2 -5
  208. data/app/views/searches/new.html.haml +1 -1
  209. data/app/views/searches/show.html.haml +6 -17
  210. data/app/views/segments/show.html.haml +4 -7
  211. data/app/views/shared/_error_messages.html.haml +1 -1
  212. data/app/views/shared/_tags.html.haml +2 -2
  213. data/app/views/shows/_controls.html.haml +20 -4
  214. data/app/views/shows/_glance.html.haml +5 -1
  215. data/app/views/shows/_sections_table.html.haml +6 -8
  216. data/app/views/shows/_ticket_table.html.haml +3 -3
  217. data/app/views/shows/_work_with.html.haml +5 -5
  218. data/app/views/shows/door_list.html.haml +2 -2
  219. data/app/views/shows/index.html.haml +19 -88
  220. data/app/views/shows/new.html.haml +11 -10
  221. data/app/views/shows/show.html.haml +2 -2
  222. data/app/views/slices/index.html.haml +1 -2
  223. data/app/views/statements/_discounts_table.html.haml +1 -1
  224. data/app/views/statements/_order_location_table.html.haml +1 -1
  225. data/app/views/statements/_payment_method_table.haml +1 -1
  226. data/app/views/statements/_ticket_type_table.haml +2 -5
  227. data/app/views/statements/show.html.haml +2 -5
  228. data/app/views/store/checkouts/thanks.html.haml +16 -38
  229. data/app/views/store/donations/index.html.haml +2 -19
  230. data/app/views/store/events/_calendar.html.haml +4 -1
  231. data/app/views/store/events/index.html.haml +4 -11
  232. data/app/views/store/events/show.html.haml +19 -10
  233. data/app/views/store/memberships/index.html.haml +17 -17
  234. data/app/views/store/orders/show.html.haml +22 -33
  235. data/app/views/store/shared/_donate_form.html.haml +12 -31
  236. data/app/views/store/shows/_show.html.haml +29 -37
  237. data/app/views/user_memberships/_list.html.haml +29 -28
  238. data/app/views/users/invitations/edit.html.haml +9 -19
  239. data/app/views/users/mailer/invitation_instructions.html.erb +8 -0
  240. data/app/views/users/passwords/edit.html.haml +2 -2
  241. data/app/views/users/registrations/edit.html.erb +3 -3
  242. data/app/views/users/sessions/new.html.haml +2 -2
  243. data/app/views/venues/edit.html.haml +1 -3
  244. data/config/initializers/devise.rb +5 -2
  245. data/config/locales/devise.en.yml +1 -1
  246. data/config/locales/devise_invitable.en.yml +1 -1
  247. data/config/locales/en.yml +3 -18
  248. data/config/routes.rb +12 -101
  249. data/lib/artfully_ose.rb +4 -6
  250. data/lib/artfully_ose/common_abilities.rb +2 -8
  251. data/lib/artfully_ose/engine.rb +10 -34
  252. data/lib/artfully_ose/version.rb +1 -1
  253. metadata +45 -349
  254. data/README.md +0 -28
  255. data/app/assets/images/household-default-avatar.png +0 -0
  256. data/app/assets/javascripts/angular-resource.js +0 -546
  257. data/app/assets/javascripts/angular.js +0 -20311
  258. data/app/assets/javascripts/bootstrap-wysihtml5.js +0 -511
  259. data/app/assets/javascripts/boxoffice.js +0 -558
  260. data/app/assets/javascripts/change-membership.js +0 -152
  261. data/app/assets/javascripts/custom/kits-config.js +0 -33
  262. data/app/assets/javascripts/households.js +0 -59
  263. data/app/assets/javascripts/jquery-migrate-1.2.1.min.js +0 -2
  264. data/app/assets/javascripts/relationships.js +0 -63
  265. data/app/assets/javascripts/sales-console.js +0 -158
  266. data/app/assets/javascripts/wysihtml5-0.3.0.min.js +0 -261
  267. data/app/assets/stylesheets/bootstrap-wysihtml5.css +0 -102
  268. data/app/assets/stylesheets/boxoffice.css.scss +0 -258
  269. data/app/assets/stylesheets/font-awesome.css.scss +0 -1566
  270. data/app/assets/stylesheets/pages/bootstrap-responsive.css +0 -1109
  271. data/app/assets/stylesheets/wysiwyg-color.css +0 -67
  272. data/app/concerns/cart_finder.rb +0 -50
  273. data/app/concerns/pdf_generation.rb +0 -64
  274. data/app/concerns/search_by_dates.rb +0 -20
  275. data/app/controllers/console_sales_controller.rb +0 -182
  276. data/app/controllers/events_pass_types_controller.rb +0 -87
  277. data/app/controllers/households_controller.rb +0 -71
  278. data/app/controllers/member_cards_controller.rb +0 -44
  279. data/app/controllers/members/invitations_controller.rb +0 -7
  280. data/app/controllers/members/passwords_controller.rb +0 -10
  281. data/app/controllers/members/people_controller.rb +0 -17
  282. data/app/controllers/members/sessions_controller.rb +0 -14
  283. data/app/controllers/membership_cancellations_controller.rb +0 -46
  284. data/app/controllers/membership_changes_controller.rb +0 -39
  285. data/app/controllers/membership_comps_controller.rb +0 -102
  286. data/app/controllers/membership_kits_controller.rb +0 -25
  287. data/app/controllers/mobile/dashboard_controller.rb +0 -17
  288. data/app/controllers/mobile/events_controller.rb +0 -16
  289. data/app/controllers/mobile/orders_controller.rb +0 -61
  290. data/app/controllers/mobile/shows_controller.rb +0 -39
  291. data/app/controllers/mobile/tickets_controller.rb +0 -114
  292. data/app/controllers/mobile/users_controller.rb +0 -30
  293. data/app/controllers/pass_types_controller.rb +0 -53
  294. data/app/controllers/passes_controller.rb +0 -52
  295. data/app/controllers/passes_kits_controller.rb +0 -25
  296. data/app/controllers/passes_reports_controller.rb +0 -25
  297. data/app/controllers/regular_donation_kits_controller.rb +0 -32
  298. data/app/controllers/relationships_controller.rb +0 -15
  299. data/app/controllers/store/retrievals_controller.rb +0 -29
  300. data/app/controllers/users/sessions_controller.rb +0 -3
  301. data/app/helpers/households_helper.rb +0 -7
  302. data/app/helpers/membership_types_helper.rb +0 -22
  303. data/app/helpers/relationships_helper.rb +0 -26
  304. data/app/helpers/sales_helper.rb +0 -29
  305. data/app/helpers/searches_helper.rb +0 -13
  306. data/app/helpers/suggested_households_helper.rb +0 -5
  307. data/app/mailers/pass_mailer.rb +0 -17
  308. data/app/models/actions/change_action.rb +0 -13
  309. data/app/models/actions/comp_action.rb +0 -15
  310. data/app/models/console_sale.rb +0 -30
  311. data/app/models/daily_membership_report.rb +0 -50
  312. data/app/models/daily_pass_report.rb +0 -48
  313. data/app/models/events_pass_type.rb +0 -18
  314. data/app/models/ext/preprocessor.rb +0 -7
  315. data/app/models/extendable.rb +0 -6
  316. data/app/models/household.rb +0 -61
  317. data/app/models/household_suggester.rb +0 -58
  318. data/app/models/imports/memberships_import.rb +0 -43
  319. data/app/models/job/checkout_processor.rb +0 -46
  320. data/app/models/job/cleanup_suggested_households_job.rb +0 -17
  321. data/app/models/job/destroy_show_job.rb +0 -10
  322. data/app/models/job/geocode_address_job.rb +0 -11
  323. data/app/models/job/order_mailer_job.rb +0 -8
  324. data/app/models/job/refund_order_processor.rb +0 -16
  325. data/app/models/kits/membership_kit.rb +0 -62
  326. data/app/models/kits/passes_kit.rb +0 -62
  327. data/app/models/kits/scannable_tickets_kit.rb +0 -23
  328. data/app/models/member_card_generator.rb +0 -63
  329. data/app/models/member_walkup.rb +0 -150
  330. data/app/models/membership_cancellation.rb +0 -80
  331. data/app/models/membership_change.rb +0 -187
  332. data/app/models/membership_comp.rb +0 -105
  333. data/app/models/membership_comp_job.rb +0 -32
  334. data/app/models/membership_sale_search.rb +0 -18
  335. data/app/models/pass.rb +0 -197
  336. data/app/models/pass_sale_search.rb +0 -18
  337. data/app/models/pass_summary.rb +0 -18
  338. data/app/models/pass_type.rb +0 -46
  339. data/app/models/passes_report.rb +0 -117
  340. data/app/models/payments/check_payment.rb +0 -33
  341. data/app/models/relation.rb +0 -27
  342. data/app/models/relation_builder.rb +0 -32
  343. data/app/models/relationship.rb +0 -55
  344. data/app/models/relationship_builder.rb +0 -12
  345. data/app/models/relationship_validator.rb +0 -46
  346. data/app/models/relationships_kit.rb +0 -31
  347. data/app/models/rolling_membership_type.rb +0 -11
  348. data/app/models/seasonal_membership_type.rb +0 -3
  349. data/app/models/suggested_household.rb +0 -24
  350. data/app/models/ticket/qr_code.rb +0 -21
  351. data/app/models/valuation/lifetime_memberships.rb +0 -24
  352. data/app/serializers/show_serializer.rb +0 -15
  353. data/app/views/console_sales/_aloha.html.haml +0 -26
  354. data/app/views/console_sales/_cart.html.haml +0 -60
  355. data/app/views/console_sales/_payment.html.haml +0 -111
  356. data/app/views/console_sales/_shows.html.haml +0 -24
  357. data/app/views/console_sales/new.html.haml +0 -143
  358. data/app/views/events_pass_types/_form.html.haml +0 -42
  359. data/app/views/events_pass_types/edit.html.haml +0 -22
  360. data/app/views/events_pass_types/index.html.haml +0 -47
  361. data/app/views/events_pass_types/new.html.haml +0 -22
  362. data/app/views/households/_action.html.haml +0 -24
  363. data/app/views/households/_edit_modal.html.haml +0 -143
  364. data/app/views/households/_form.html.haml +0 -26
  365. data/app/views/households/_header.html.haml +0 -25
  366. data/app/views/households/_individual_fields.html.haml +0 -8
  367. data/app/views/households/_list.html.haml +0 -10
  368. data/app/views/households/_note.html.haml +0 -33
  369. data/app/views/households/edit.html.haml +0 -1
  370. data/app/views/households/index.html.haml +0 -13
  371. data/app/views/households/new.html.haml +0 -14
  372. data/app/views/households/show.html.haml +0 -72
  373. data/app/views/households/suggested.html.haml +0 -38
  374. data/app/views/imports/_export_links.html.haml +0 -3
  375. data/app/views/kits/_list.html.haml +0 -9
  376. data/app/views/members/invitations/edit.html.haml +0 -17
  377. data/app/views/members/invitations/new.html.erb +0 -14
  378. data/app/views/members/mailer/_invitation_body.html.haml +0 -18
  379. data/app/views/members/mailer/invitation_instructions.html.haml +0 -6
  380. data/app/views/members/mailer/reset_password_instructions.html.erb +0 -8
  381. data/app/views/members/passwords/edit.html.haml +0 -18
  382. data/app/views/members/sessions/new.html.haml +0 -19
  383. data/app/views/membership_cancellations/_form.html.haml +0 -39
  384. data/app/views/membership_cancellations/_modal.html.haml +0 -2
  385. data/app/views/membership_cancellations/_processing.html.haml +0 -12
  386. data/app/views/membership_cancellations/create.js.erb +0 -3
  387. data/app/views/membership_cancellations/new.js.erb +0 -3
  388. data/app/views/membership_comps/confirm.html.haml +0 -86
  389. data/app/views/membership_comps/create.html.haml +0 -20
  390. data/app/views/membership_comps/new.html.haml +0 -95
  391. data/app/views/membership_kits/edit.html.haml +0 -52
  392. data/app/views/membership_mailer/cancellation_confirmation.html.haml +0 -9
  393. data/app/views/membership_mailer/cancellation_confirmation.text.haml +0 -6
  394. data/app/views/membership_mailer/refund_problem.html.haml +0 -18
  395. data/app/views/membership_mailer/refund_problem.text.haml +0 -14
  396. data/app/views/membership_types/_membership_type_fees.html.haml +0 -0
  397. data/app/views/membership_types/_rolling_membership_type_form.html.haml +0 -5
  398. data/app/views/membership_types/_seasonal_membership_type_form.html.haml +0 -8
  399. data/app/views/membership_types/type.html.haml +0 -19
  400. data/app/views/memberships/_membership_scripts.js.erb +0 -15
  401. data/app/views/order_mailer/confirmation_for_exchange.html.haml +0 -34
  402. data/app/views/order_mailer/confirmation_for_exchange.text.haml +0 -26
  403. data/app/views/order_mailer/confirmation_for_refund.html.haml +0 -36
  404. data/app/views/order_mailer/confirmation_for_refund.text.haml +0 -22
  405. data/app/views/orders/membership.html.haml +0 -100
  406. data/app/views/orders/passes.html.haml +0 -97
  407. data/app/views/pass_mailer/pass_info_for.html.haml +0 -21
  408. data/app/views/pass_types/_form.html.haml +0 -76
  409. data/app/views/pass_types/_pass_type_fees.html.haml +0 -0
  410. data/app/views/pass_types/edit.html.haml +0 -4
  411. data/app/views/pass_types/index.html.haml +0 -34
  412. data/app/views/pass_types/new.html.haml +0 -4
  413. data/app/views/passes/index.html.haml +0 -108
  414. data/app/views/passes_kits/edit.html.haml +0 -30
  415. data/app/views/passes_reports/index.html.haml +0 -80
  416. data/app/views/pdfs/member.html.haml +0 -66
  417. data/app/views/pdfs/member_card_generator/blanks_usa_idc6.html.haml +0 -109
  418. data/app/views/pdfs/order.html.haml +0 -84
  419. data/app/views/people/_household_fields.html.haml +0 -5
  420. data/app/views/people/_relationship_fields.html.haml +0 -14
  421. data/app/views/people/_work_with_menu.html.haml +0 -39
  422. data/app/views/producer_mailer/donation_kit_notification.html.haml +0 -8
  423. data/app/views/producer_mailer/donation_kit_notification.text.erb +0 -8
  424. data/app/views/producer_mailer/mailchimp_kit_initial_sync_notification.html.haml +0 -21
  425. data/app/views/producer_mailer/ticket_offer_accepted.html.haml +0 -7
  426. data/app/views/producer_mailer/ticket_offer_accepted.text.erb +0 -7
  427. data/app/views/producer_mailer/ticket_offer_rejected.html.haml +0 -11
  428. data/app/views/producer_mailer/ticket_offer_rejected.text.erb +0 -13
  429. data/app/views/regular_donation_kits/edit.html.haml +0 -140
  430. data/app/views/relationships/index.html.haml +0 -32
  431. data/app/views/sales/_boxoffice.html.haml +0 -141
  432. data/app/views/sales/_doorlist.html.haml +0 -79
  433. data/app/views/searches/_household.html.haml +0 -7
  434. data/app/views/shared/_show_time_and_calendar.html.haml +0 -21
  435. data/app/views/shows/door_list.pdf.haml +0 -29
  436. data/app/views/statements/_passes_table.html.haml +0 -22
  437. data/app/views/store/checkouts/_membership_info.html.haml +0 -12
  438. data/app/views/store/events/_venue.html.haml +0 -9
  439. data/app/views/store/events/calendar.html.haml +0 -50
  440. data/app/views/store/events/single_show.html.haml +0 -45
  441. data/app/views/store/passes/index.html.haml +0 -33
  442. data/app/views/store/retrievals/index.html.haml +0 -11
  443. data/app/views/store/shared/_small_donate_form.html.haml +0 -21
  444. data/app/views/users/mailer/invitation_instructions.html.haml +0 -14
  445. data/config/initializers/paperclip.rb +0 -69
  446. data/db/migrate/20130411162346_add_country_zip_state_phone_number_discipline_to_organizations.rb +0 -9
  447. data/db/migrate/20130412184415_add_first_name_and_last_name_to_users.rb +0 -6
  448. data/db/migrate/20130722153731_add_autentication_token_to_users.rb +0 -5
  449. data/db/migrate/20130723212712_add_qr_code_to_tickets.rb +0 -9
  450. data/db/migrate/20130820011240_add_uuid_to_tickets.rb +0 -13
  451. data/db/migrate/20130820025134_make_ticket_uuid_not_null.rb +0 -11
  452. data/db/migrate/20130823191625_add_pdf_to_orders.rb +0 -5
  453. data/db/migrate/20130916194547_add_relationships.rb +0 -21
  454. data/db/migrate/20131002191646_create_show_stats_view.rb +0 -16
  455. data/db/migrate/20131003134821_add_relationships_to_search.rb +0 -7
  456. data/db/migrate/20131003200508_add_starred_to_relationships.rb +0 -5
  457. data/db/migrate/20131007141421_add_counters_to_member.rb +0 -7
  458. data/db/migrate/20131007144456_remove_expires_at_from_membership.rb +0 -6
  459. data/db/migrate/20131011154027_add_purchased_to_searches.rb +0 -5
  460. data/db/migrate/20131013144010_add_type_to_membership_type.rb +0 -5
  461. data/db/migrate/20131013150230_add_duration_to_membership_type.rb +0 -6
  462. data/db/migrate/20131013192807_change_number_of_shows_to_tickets.rb +0 -5
  463. data/db/migrate/20131015151550_add_households.rb +0 -18
  464. data/db/migrate/20131022183913_add_search_output_options.rb +0 -24
  465. data/db/migrate/20131023200559_add_admin_to_user_memberships.rb +0 -14
  466. data/db/migrate/20131025162155_default_search_filter_values.rb +0 -10
  467. data/db/migrate/20131025180139_unique_household_names.rb +0 -8
  468. data/db/migrate/20131029173612_add_sales_start_to_membership_typ.rb +0 -6
  469. data/db/migrate/20131106191847_add_suggested_households.rb +0 -13
  470. data/db/migrate/20131127162818_add_buyer_id_index_to_tickets.rb +0 -5
  471. data/db/migrate/20131127164000_member_tickets.rb +0 -9
  472. data/db/migrate/20131204162642_add_shared_address.rb +0 -9
  473. data/db/migrate/20131206153323_add_membership_kit.rb +0 -5
  474. data/db/migrate/20131206175325_add_marketing_to_membership_type.rb +0 -6
  475. data/db/migrate/20131210212342_add_show_fee_to_memberhsip_type.rb +0 -5
  476. data/db/migrate/20131210222814_add_renewal_price_to_membership_type.rb +0 -6
  477. data/db/migrate/20131212164553_add_copy_to_individuals_option.rb +0 -5
  478. data/db/migrate/20131223215615_goodbye_order_view.rb +0 -6
  479. data/db/migrate/20140114011856_add_welcome_message_to_memberships.rb +0 -5
  480. data/db/migrate/20140114212127_add_send_email_to_memberships.rb +0 -5
  481. data/db/migrate/20140125183606_index_memberships_and_types.rb +0 -6
  482. data/db/migrate/20140128213101_add_pdf_to_members.rb +0 -5
  483. data/db/migrate/20140128223140_add_uuid_to_member.rb +0 -6
  484. data/db/migrate/20140128223948_add_qr_code_to_member.rb +0 -9
  485. data/db/migrate/20140207135731_update_items_view.rb +0 -38
  486. data/db/migrate/20140210154723_add_cached_stats.rb +0 -5
  487. data/db/migrate/20140218202726_cache_stats.rb +0 -7
  488. data/db/migrate/20140304171625_passes_ahoy.rb +0 -52
  489. data/db/migrate/20140304174807_add_passes_kit.rb +0 -5
  490. data/db/migrate/20140307144454_add_events_pass_types.rb +0 -9
  491. data/db/migrate/20140307193350_add_pass_id_to_cart.rb +0 -7
  492. data/db/migrate/20140314162422_add_total_paid_to_membership.rb +0 -13
  493. data/db/migrate/20140319191237_add_show_dates_to_advanced_search.rb +0 -6
  494. data/db/migrate/20140328172333_add_cols_to_events_pass_types.rb +0 -6
  495. data/db/migrate/20140328174217_add_deleted_at_to_ept.rb +0 -9
  496. data/db/migrate/20140328185432_add_active_to_ept.rb +0 -5
  497. data/db/migrate/20140328192612_add_pass_type_id_to_search.rb +0 -5
  498. data/db/migrate/20140415212841_add_min_max_start_dates_to_searches.artfully_ose_engine.rb +0 -6
  499. data/db/migrate/20140422193345_add_email_copy_to_pass_type.rb +0 -5
  500. data/db/migrate/20140423181639_add_min_max_end_dates_to_searches.artfully_ose_engine.rb +0 -6
  501. data/db/migrate/20140423185921_add_cached_stats_to_event.rb +0 -9
  502. data/db/migrate/20140424174423_add_lifetime_memberships_to_people.artfully_ose_engine.rb +0 -5
  503. data/db/migrate/20140506155241_add_lpt_to_membership_type.rb +0 -5
  504. data/db/migrate/20140507184646_add_bday_attributes_to_person.rb +0 -7
  505. data/db/migrate/20140507201048_add_check_number_to_orders.rb +0 -5
  506. data/db/migrate/20140515143651_remove_show_stats_view.rb +0 -6
  507. data/db/migrate/20140521195853_add_deleted_at_to_pass_type.rb +0 -5
  508. data/db/migrate/20140522205554_add_limit_to_events_pass_types.rb +0 -5
  509. data/db/migrate/20140523180444_remove_tickets_purchased_from_passes.rb +0 -5
  510. data/db/migrate/20140603200735_add_subtitle_to_events.rb +0 -5
  511. data/db/migrate/20140619194127_add_do_not_call_to_people.artfully_ose_engine.rb +0 -5
  512. data/db/migrate/20140623160543_add_index_to_items.rb +0 -7
  513. data/spec/factories/action_factories.rb +0 -19
  514. data/spec/factories/address_factories.rb +0 -11
  515. data/spec/factories/cart_factories.rb +0 -26
  516. data/spec/factories/chart_factories.rb +0 -52
  517. data/spec/factories/discount_factories.rb +0 -11
  518. data/spec/factories/donation_factories.rb +0 -14
  519. data/spec/factories/event_factories.rb +0 -29
  520. data/spec/factories/household_factories.rb +0 -8
  521. data/spec/factories/import_factories.rb +0 -61
  522. data/spec/factories/item_factories.rb +0 -51
  523. data/spec/factories/kit_factories.rb +0 -33
  524. data/spec/factories/member_factories.rb +0 -19
  525. data/spec/factories/membership_factories.rb +0 -9
  526. data/spec/factories/membership_type_factories.rb +0 -18
  527. data/spec/factories/order_factories.rb +0 -40
  528. data/spec/factories/organization_factories.rb +0 -48
  529. data/spec/factories/pass_type_factories.rb +0 -11
  530. data/spec/factories/payments_factories.rb +0 -97
  531. data/spec/factories/person_factories.rb +0 -47
  532. data/spec/factories/phone_factories.rb +0 -6
  533. data/spec/factories/section_factories.rb +0 -21
  534. data/spec/factories/segment_factories.rb +0 -6
  535. data/spec/factories/show_factories.rb +0 -33
  536. data/spec/factories/ticket_factories.rb +0 -57
  537. data/spec/factories/ticket_offer_factories.rb +0 -16
  538. data/spec/factories/ticket_type_factories.rb +0 -8
  539. data/spec/factories/user_factories.rb +0 -24
@@ -1,1566 +0,0 @@
1
- /*!
2
- * Font Awesome 4.1.0 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: url('#{ asset_path("fontawesome-webfont.eot", "fonts") }');
10
- src: url('#{ (asset_path("fontawesome-webfont.eot", "fonts") + "?#iefix&v=4.1.0") }') format('eot'), url('#{ (asset_path("fontawesome-webfont.woff", "fonts") + "?v=4.1.0") }') format('woff'), url('#{ (asset_path("fontawesome-webfont.ttf", "fonts") + "?v=4.1.0") }') format('truetype'), url('#{ (asset_path("fontawesome-webfont.svg", "fonts") + "?v=4.1.0#fontawesomeregular") }') format('svg');
11
- font-weight: normal;
12
- font-style: normal;
13
- }
14
- .fa {
15
- display: inline-block;
16
- font-family: FontAwesome;
17
- font-style: normal;
18
- font-weight: normal;
19
- line-height: 1;
20
- -webkit-font-smoothing: antialiased;
21
- -moz-osx-font-smoothing: grayscale;
22
- }
23
- /* makes the font 33% larger relative to the icon container */
24
- .fa-lg {
25
- font-size: 1.33333333em;
26
- line-height: 0.75em;
27
- vertical-align: -15%;
28
- }
29
- .fa-2x {
30
- font-size: 2em;
31
- }
32
- .fa-3x {
33
- font-size: 3em;
34
- }
35
- .fa-4x {
36
- font-size: 4em;
37
- }
38
- .fa-5x {
39
- font-size: 5em;
40
- }
41
- .fa-fw {
42
- width: 1.28571429em;
43
- text-align: center;
44
- }
45
- .fa-ul {
46
- padding-left: 0;
47
- margin-left: 2.14285714em;
48
- list-style-type: none;
49
- }
50
- .fa-ul > li {
51
- position: relative;
52
- }
53
- .fa-li {
54
- position: absolute;
55
- left: -2.14285714em;
56
- width: 2.14285714em;
57
- top: 0.14285714em;
58
- text-align: center;
59
- }
60
- .fa-li.fa-lg {
61
- left: -1.85714286em;
62
- }
63
- .fa-border {
64
- padding: .2em .25em .15em;
65
- border: solid 0.08em #eeeeee;
66
- border-radius: .1em;
67
- }
68
- .pull-right {
69
- float: right;
70
- }
71
- .pull-left {
72
- float: left;
73
- }
74
- .fa.pull-left {
75
- margin-right: .3em;
76
- }
77
- .fa.pull-right {
78
- margin-left: .3em;
79
- }
80
- .fa-spin {
81
- -webkit-animation: spin 2s infinite linear;
82
- -moz-animation: spin 2s infinite linear;
83
- -o-animation: spin 2s infinite linear;
84
- animation: spin 2s infinite linear;
85
- }
86
- @-moz-keyframes spin {
87
- 0% {
88
- -moz-transform: rotate(0deg);
89
- }
90
- 100% {
91
- -moz-transform: rotate(359deg);
92
- }
93
- }
94
- @-webkit-keyframes spin {
95
- 0% {
96
- -webkit-transform: rotate(0deg);
97
- }
98
- 100% {
99
- -webkit-transform: rotate(359deg);
100
- }
101
- }
102
- @-o-keyframes spin {
103
- 0% {
104
- -o-transform: rotate(0deg);
105
- }
106
- 100% {
107
- -o-transform: rotate(359deg);
108
- }
109
- }
110
- @keyframes spin {
111
- 0% {
112
- -webkit-transform: rotate(0deg);
113
- transform: rotate(0deg);
114
- }
115
- 100% {
116
- -webkit-transform: rotate(359deg);
117
- transform: rotate(359deg);
118
- }
119
- }
120
- .fa-rotate-90 {
121
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
122
- -webkit-transform: rotate(90deg);
123
- -moz-transform: rotate(90deg);
124
- -ms-transform: rotate(90deg);
125
- -o-transform: rotate(90deg);
126
- transform: rotate(90deg);
127
- }
128
- .fa-rotate-180 {
129
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
130
- -webkit-transform: rotate(180deg);
131
- -moz-transform: rotate(180deg);
132
- -ms-transform: rotate(180deg);
133
- -o-transform: rotate(180deg);
134
- transform: rotate(180deg);
135
- }
136
- .fa-rotate-270 {
137
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
138
- -webkit-transform: rotate(270deg);
139
- -moz-transform: rotate(270deg);
140
- -ms-transform: rotate(270deg);
141
- -o-transform: rotate(270deg);
142
- transform: rotate(270deg);
143
- }
144
- .fa-flip-horizontal {
145
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
146
- -webkit-transform: scale(-1, 1);
147
- -moz-transform: scale(-1, 1);
148
- -ms-transform: scale(-1, 1);
149
- -o-transform: scale(-1, 1);
150
- transform: scale(-1, 1);
151
- }
152
- .fa-flip-vertical {
153
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
154
- -webkit-transform: scale(1, -1);
155
- -moz-transform: scale(1, -1);
156
- -ms-transform: scale(1, -1);
157
- -o-transform: scale(1, -1);
158
- transform: scale(1, -1);
159
- }
160
- .fa-stack {
161
- position: relative;
162
- display: inline-block;
163
- width: 2em;
164
- height: 2em;
165
- line-height: 2em;
166
- vertical-align: middle;
167
- }
168
- .fa-stack-1x,
169
- .fa-stack-2x {
170
- position: absolute;
171
- left: 0;
172
- width: 100%;
173
- text-align: center;
174
- }
175
- .fa-stack-1x {
176
- line-height: inherit;
177
- }
178
- .fa-stack-2x {
179
- font-size: 2em;
180
- }
181
- .fa-inverse {
182
- color: #ffffff;
183
- }
184
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
185
- readers do not read off random characters that represent icons */
186
- .fa-glass:before {
187
- content: "\f000";
188
- }
189
- .fa-music:before {
190
- content: "\f001";
191
- }
192
- .fa-search:before {
193
- content: "\f002";
194
- }
195
- .fa-envelope-o:before {
196
- content: "\f003";
197
- }
198
- .fa-heart:before {
199
- content: "\f004";
200
- }
201
- .fa-star:before {
202
- content: "\f005";
203
- }
204
- .fa-star-o:before {
205
- content: "\f006";
206
- }
207
- .fa-user:before {
208
- content: "\f007";
209
- }
210
- .fa-film:before {
211
- content: "\f008";
212
- }
213
- .fa-th-large:before {
214
- content: "\f009";
215
- }
216
- .fa-th:before {
217
- content: "\f00a";
218
- }
219
- .fa-th-list:before {
220
- content: "\f00b";
221
- }
222
- .fa-check:before {
223
- content: "\f00c";
224
- }
225
- .fa-times:before {
226
- content: "\f00d";
227
- }
228
- .fa-search-plus:before {
229
- content: "\f00e";
230
- }
231
- .fa-search-minus:before {
232
- content: "\f010";
233
- }
234
- .fa-power-off:before {
235
- content: "\f011";
236
- }
237
- .fa-signal:before {
238
- content: "\f012";
239
- }
240
- .fa-gear:before,
241
- .fa-cog:before {
242
- content: "\f013";
243
- }
244
- .fa-trash-o:before {
245
- content: "\f014";
246
- }
247
- .fa-home:before {
248
- content: "\f015";
249
- }
250
- .fa-file-o:before {
251
- content: "\f016";
252
- }
253
- .fa-clock-o:before {
254
- content: "\f017";
255
- }
256
- .fa-road:before {
257
- content: "\f018";
258
- }
259
- .fa-download:before {
260
- content: "\f019";
261
- }
262
- .fa-arrow-circle-o-down:before {
263
- content: "\f01a";
264
- }
265
- .fa-arrow-circle-o-up:before {
266
- content: "\f01b";
267
- }
268
- .fa-inbox:before {
269
- content: "\f01c";
270
- }
271
- .fa-play-circle-o:before {
272
- content: "\f01d";
273
- }
274
- .fa-rotate-right:before,
275
- .fa-repeat:before {
276
- content: "\f01e";
277
- }
278
- .fa-refresh:before {
279
- content: "\f021";
280
- }
281
- .fa-list-alt:before {
282
- content: "\f022";
283
- }
284
- .fa-lock:before {
285
- content: "\f023";
286
- }
287
- .fa-flag:before {
288
- content: "\f024";
289
- }
290
- .fa-headphones:before {
291
- content: "\f025";
292
- }
293
- .fa-volume-off:before {
294
- content: "\f026";
295
- }
296
- .fa-volume-down:before {
297
- content: "\f027";
298
- }
299
- .fa-volume-up:before {
300
- content: "\f028";
301
- }
302
- .fa-qrcode:before {
303
- content: "\f029";
304
- }
305
- .fa-barcode:before {
306
- content: "\f02a";
307
- }
308
- .fa-tag:before {
309
- content: "\f02b";
310
- }
311
- .fa-tags:before {
312
- content: "\f02c";
313
- }
314
- .fa-book:before {
315
- content: "\f02d";
316
- }
317
- .fa-bookmark:before {
318
- content: "\f02e";
319
- }
320
- .fa-print:before {
321
- content: "\f02f";
322
- }
323
- .fa-camera:before {
324
- content: "\f030";
325
- }
326
- .fa-font:before {
327
- content: "\f031";
328
- }
329
- .fa-bold:before {
330
- content: "\f032";
331
- }
332
- .fa-italic:before {
333
- content: "\f033";
334
- }
335
- .fa-text-height:before {
336
- content: "\f034";
337
- }
338
- .fa-text-width:before {
339
- content: "\f035";
340
- }
341
- .fa-align-left:before {
342
- content: "\f036";
343
- }
344
- .fa-align-center:before {
345
- content: "\f037";
346
- }
347
- .fa-align-right:before {
348
- content: "\f038";
349
- }
350
- .fa-align-justify:before {
351
- content: "\f039";
352
- }
353
- .fa-list:before {
354
- content: "\f03a";
355
- }
356
- .fa-dedent:before,
357
- .fa-outdent:before {
358
- content: "\f03b";
359
- }
360
- .fa-indent:before {
361
- content: "\f03c";
362
- }
363
- .fa-video-camera:before {
364
- content: "\f03d";
365
- }
366
- .fa-photo:before,
367
- .fa-image:before,
368
- .fa-picture-o:before {
369
- content: "\f03e";
370
- }
371
- .fa-pencil:before {
372
- content: "\f040";
373
- }
374
- .fa-map-marker:before {
375
- content: "\f041";
376
- }
377
- .fa-adjust:before {
378
- content: "\f042";
379
- }
380
- .fa-tint:before {
381
- content: "\f043";
382
- }
383
- .fa-edit:before,
384
- .fa-pencil-square-o:before {
385
- content: "\f044";
386
- }
387
- .fa-share-square-o:before {
388
- content: "\f045";
389
- }
390
- .fa-check-square-o:before {
391
- content: "\f046";
392
- }
393
- .fa-arrows:before {
394
- content: "\f047";
395
- }
396
- .fa-step-backward:before {
397
- content: "\f048";
398
- }
399
- .fa-fast-backward:before {
400
- content: "\f049";
401
- }
402
- .fa-backward:before {
403
- content: "\f04a";
404
- }
405
- .fa-play:before {
406
- content: "\f04b";
407
- }
408
- .fa-pause:before {
409
- content: "\f04c";
410
- }
411
- .fa-stop:before {
412
- content: "\f04d";
413
- }
414
- .fa-forward:before {
415
- content: "\f04e";
416
- }
417
- .fa-fast-forward:before {
418
- content: "\f050";
419
- }
420
- .fa-step-forward:before {
421
- content: "\f051";
422
- }
423
- .fa-eject:before {
424
- content: "\f052";
425
- }
426
- .fa-chevron-left:before {
427
- content: "\f053";
428
- }
429
- .fa-chevron-right:before {
430
- content: "\f054";
431
- }
432
- .fa-plus-circle:before {
433
- content: "\f055";
434
- }
435
- .fa-minus-circle:before {
436
- content: "\f056";
437
- }
438
- .fa-times-circle:before {
439
- content: "\f057";
440
- }
441
- .fa-check-circle:before {
442
- content: "\f058";
443
- }
444
- .fa-question-circle:before {
445
- content: "\f059";
446
- }
447
- .fa-info-circle:before {
448
- content: "\f05a";
449
- }
450
- .fa-crosshairs:before {
451
- content: "\f05b";
452
- }
453
- .fa-times-circle-o:before {
454
- content: "\f05c";
455
- }
456
- .fa-check-circle-o:before {
457
- content: "\f05d";
458
- }
459
- .fa-ban:before {
460
- content: "\f05e";
461
- }
462
- .fa-arrow-left:before {
463
- content: "\f060";
464
- }
465
- .fa-arrow-right:before {
466
- content: "\f061";
467
- }
468
- .fa-arrow-up:before {
469
- content: "\f062";
470
- }
471
- .fa-arrow-down:before {
472
- content: "\f063";
473
- }
474
- .fa-mail-forward:before,
475
- .fa-share:before {
476
- content: "\f064";
477
- }
478
- .fa-expand:before {
479
- content: "\f065";
480
- }
481
- .fa-compress:before {
482
- content: "\f066";
483
- }
484
- .fa-plus:before {
485
- content: "\f067";
486
- }
487
- .fa-minus:before {
488
- content: "\f068";
489
- }
490
- .fa-asterisk:before {
491
- content: "\f069";
492
- }
493
- .fa-exclamation-circle:before {
494
- content: "\f06a";
495
- }
496
- .fa-gift:before {
497
- content: "\f06b";
498
- }
499
- .fa-leaf:before {
500
- content: "\f06c";
501
- }
502
- .fa-fire:before {
503
- content: "\f06d";
504
- }
505
- .fa-eye:before {
506
- content: "\f06e";
507
- }
508
- .fa-eye-slash:before {
509
- content: "\f070";
510
- }
511
- .fa-warning:before,
512
- .fa-exclamation-triangle:before {
513
- content: "\f071";
514
- }
515
- .fa-plane:before {
516
- content: "\f072";
517
- }
518
- .fa-calendar:before {
519
- content: "\f073";
520
- }
521
- .fa-random:before {
522
- content: "\f074";
523
- }
524
- .fa-comment:before {
525
- content: "\f075";
526
- }
527
- .fa-magnet:before {
528
- content: "\f076";
529
- }
530
- .fa-chevron-up:before {
531
- content: "\f077";
532
- }
533
- .fa-chevron-down:before {
534
- content: "\f078";
535
- }
536
- .fa-retweet:before {
537
- content: "\f079";
538
- }
539
- .fa-shopping-cart:before {
540
- content: "\f07a";
541
- }
542
- .fa-folder:before {
543
- content: "\f07b";
544
- }
545
- .fa-folder-open:before {
546
- content: "\f07c";
547
- }
548
- .fa-arrows-v:before {
549
- content: "\f07d";
550
- }
551
- .fa-arrows-h:before {
552
- content: "\f07e";
553
- }
554
- .fa-bar-chart-o:before {
555
- content: "\f080";
556
- }
557
- .fa-twitter-square:before {
558
- content: "\f081";
559
- }
560
- .fa-facebook-square:before {
561
- content: "\f082";
562
- }
563
- .fa-camera-retro:before {
564
- content: "\f083";
565
- }
566
- .fa-key:before {
567
- content: "\f084";
568
- }
569
- .fa-gears:before,
570
- .fa-cogs:before {
571
- content: "\f085";
572
- }
573
- .fa-comments:before {
574
- content: "\f086";
575
- }
576
- .fa-thumbs-o-up:before {
577
- content: "\f087";
578
- }
579
- .fa-thumbs-o-down:before {
580
- content: "\f088";
581
- }
582
- .fa-star-half:before {
583
- content: "\f089";
584
- }
585
- .fa-heart-o:before {
586
- content: "\f08a";
587
- }
588
- .fa-sign-out:before {
589
- content: "\f08b";
590
- }
591
- .fa-linkedin-square:before {
592
- content: "\f08c";
593
- }
594
- .fa-thumb-tack:before {
595
- content: "\f08d";
596
- }
597
- .fa-external-link:before {
598
- content: "\f08e";
599
- }
600
- .fa-sign-in:before {
601
- content: "\f090";
602
- }
603
- .fa-trophy:before {
604
- content: "\f091";
605
- }
606
- .fa-github-square:before {
607
- content: "\f092";
608
- }
609
- .fa-upload:before {
610
- content: "\f093";
611
- }
612
- .fa-lemon-o:before {
613
- content: "\f094";
614
- }
615
- .fa-phone:before {
616
- content: "\f095";
617
- }
618
- .fa-square-o:before {
619
- content: "\f096";
620
- }
621
- .fa-bookmark-o:before {
622
- content: "\f097";
623
- }
624
- .fa-phone-square:before {
625
- content: "\f098";
626
- }
627
- .fa-twitter:before {
628
- content: "\f099";
629
- }
630
- .fa-facebook:before {
631
- content: "\f09a";
632
- }
633
- .fa-github:before {
634
- content: "\f09b";
635
- }
636
- .fa-unlock:before {
637
- content: "\f09c";
638
- }
639
- .fa-credit-card:before {
640
- content: "\f09d";
641
- }
642
- .fa-rss:before {
643
- content: "\f09e";
644
- }
645
- .fa-hdd-o:before {
646
- content: "\f0a0";
647
- }
648
- .fa-bullhorn:before {
649
- content: "\f0a1";
650
- }
651
- .fa-bell:before {
652
- content: "\f0f3";
653
- }
654
- .fa-certificate:before {
655
- content: "\f0a3";
656
- }
657
- .fa-hand-o-right:before {
658
- content: "\f0a4";
659
- }
660
- .fa-hand-o-left:before {
661
- content: "\f0a5";
662
- }
663
- .fa-hand-o-up:before {
664
- content: "\f0a6";
665
- }
666
- .fa-hand-o-down:before {
667
- content: "\f0a7";
668
- }
669
- .fa-arrow-circle-left:before {
670
- content: "\f0a8";
671
- }
672
- .fa-arrow-circle-right:before {
673
- content: "\f0a9";
674
- }
675
- .fa-arrow-circle-up:before {
676
- content: "\f0aa";
677
- }
678
- .fa-arrow-circle-down:before {
679
- content: "\f0ab";
680
- }
681
- .fa-globe:before {
682
- content: "\f0ac";
683
- }
684
- .fa-wrench:before {
685
- content: "\f0ad";
686
- }
687
- .fa-tasks:before {
688
- content: "\f0ae";
689
- }
690
- .fa-filter:before {
691
- content: "\f0b0";
692
- }
693
- .fa-briefcase:before {
694
- content: "\f0b1";
695
- }
696
- .fa-arrows-alt:before {
697
- content: "\f0b2";
698
- }
699
- .fa-group:before,
700
- .fa-users:before {
701
- content: "\f0c0";
702
- }
703
- .fa-chain:before,
704
- .fa-link:before {
705
- content: "\f0c1";
706
- }
707
- .fa-cloud:before {
708
- content: "\f0c2";
709
- }
710
- .fa-flask:before {
711
- content: "\f0c3";
712
- }
713
- .fa-cut:before,
714
- .fa-scissors:before {
715
- content: "\f0c4";
716
- }
717
- .fa-copy:before,
718
- .fa-files-o:before {
719
- content: "\f0c5";
720
- }
721
- .fa-paperclip:before {
722
- content: "\f0c6";
723
- }
724
- .fa-save:before,
725
- .fa-floppy-o:before {
726
- content: "\f0c7";
727
- }
728
- .fa-square:before {
729
- content: "\f0c8";
730
- }
731
- .fa-navicon:before,
732
- .fa-reorder:before,
733
- .fa-bars:before {
734
- content: "\f0c9";
735
- }
736
- .fa-list-ul:before {
737
- content: "\f0ca";
738
- }
739
- .fa-list-ol:before {
740
- content: "\f0cb";
741
- }
742
- .fa-strikethrough:before {
743
- content: "\f0cc";
744
- }
745
- .fa-underline:before {
746
- content: "\f0cd";
747
- }
748
- .fa-table:before {
749
- content: "\f0ce";
750
- }
751
- .fa-magic:before {
752
- content: "\f0d0";
753
- }
754
- .fa-truck:before {
755
- content: "\f0d1";
756
- }
757
- .fa-pinterest:before {
758
- content: "\f0d2";
759
- }
760
- .fa-pinterest-square:before {
761
- content: "\f0d3";
762
- }
763
- .fa-google-plus-square:before {
764
- content: "\f0d4";
765
- }
766
- .fa-google-plus:before {
767
- content: "\f0d5";
768
- }
769
- .fa-money:before {
770
- content: "\f0d6";
771
- }
772
- .fa-caret-down:before {
773
- content: "\f0d7";
774
- }
775
- .fa-caret-up:before {
776
- content: "\f0d8";
777
- }
778
- .fa-caret-left:before {
779
- content: "\f0d9";
780
- }
781
- .fa-caret-right:before {
782
- content: "\f0da";
783
- }
784
- .fa-columns:before {
785
- content: "\f0db";
786
- }
787
- .fa-unsorted:before,
788
- .fa-sort:before {
789
- content: "\f0dc";
790
- }
791
- .fa-sort-down:before,
792
- .fa-sort-desc:before {
793
- content: "\f0dd";
794
- }
795
- .fa-sort-up:before,
796
- .fa-sort-asc:before {
797
- content: "\f0de";
798
- }
799
- .fa-envelope:before {
800
- content: "\f0e0";
801
- }
802
- .fa-linkedin:before {
803
- content: "\f0e1";
804
- }
805
- .fa-rotate-left:before,
806
- .fa-undo:before {
807
- content: "\f0e2";
808
- }
809
- .fa-legal:before,
810
- .fa-gavel:before {
811
- content: "\f0e3";
812
- }
813
- .fa-dashboard:before,
814
- .fa-tachometer:before {
815
- content: "\f0e4";
816
- }
817
- .fa-comment-o:before {
818
- content: "\f0e5";
819
- }
820
- .fa-comments-o:before {
821
- content: "\f0e6";
822
- }
823
- .fa-flash:before,
824
- .fa-bolt:before {
825
- content: "\f0e7";
826
- }
827
- .fa-sitemap:before {
828
- content: "\f0e8";
829
- }
830
- .fa-umbrella:before {
831
- content: "\f0e9";
832
- }
833
- .fa-paste:before,
834
- .fa-clipboard:before {
835
- content: "\f0ea";
836
- }
837
- .fa-lightbulb-o:before {
838
- content: "\f0eb";
839
- }
840
- .fa-exchange:before {
841
- content: "\f0ec";
842
- }
843
- .fa-cloud-download:before {
844
- content: "\f0ed";
845
- }
846
- .fa-cloud-upload:before {
847
- content: "\f0ee";
848
- }
849
- .fa-user-md:before {
850
- content: "\f0f0";
851
- }
852
- .fa-stethoscope:before {
853
- content: "\f0f1";
854
- }
855
- .fa-suitcase:before {
856
- content: "\f0f2";
857
- }
858
- .fa-bell-o:before {
859
- content: "\f0a2";
860
- }
861
- .fa-coffee:before {
862
- content: "\f0f4";
863
- }
864
- .fa-cutlery:before {
865
- content: "\f0f5";
866
- }
867
- .fa-file-text-o:before {
868
- content: "\f0f6";
869
- }
870
- .fa-building-o:before {
871
- content: "\f0f7";
872
- }
873
- .fa-hospital-o:before {
874
- content: "\f0f8";
875
- }
876
- .fa-ambulance:before {
877
- content: "\f0f9";
878
- }
879
- .fa-medkit:before {
880
- content: "\f0fa";
881
- }
882
- .fa-fighter-jet:before {
883
- content: "\f0fb";
884
- }
885
- .fa-beer:before {
886
- content: "\f0fc";
887
- }
888
- .fa-h-square:before {
889
- content: "\f0fd";
890
- }
891
- .fa-plus-square:before {
892
- content: "\f0fe";
893
- }
894
- .fa-angle-double-left:before {
895
- content: "\f100";
896
- }
897
- .fa-angle-double-right:before {
898
- content: "\f101";
899
- }
900
- .fa-angle-double-up:before {
901
- content: "\f102";
902
- }
903
- .fa-angle-double-down:before {
904
- content: "\f103";
905
- }
906
- .fa-angle-left:before {
907
- content: "\f104";
908
- }
909
- .fa-angle-right:before {
910
- content: "\f105";
911
- }
912
- .fa-angle-up:before {
913
- content: "\f106";
914
- }
915
- .fa-angle-down:before {
916
- content: "\f107";
917
- }
918
- .fa-desktop:before {
919
- content: "\f108";
920
- }
921
- .fa-laptop:before {
922
- content: "\f109";
923
- }
924
- .fa-tablet:before {
925
- content: "\f10a";
926
- }
927
- .fa-mobile-phone:before,
928
- .fa-mobile:before {
929
- content: "\f10b";
930
- }
931
- .fa-circle-o:before {
932
- content: "\f10c";
933
- }
934
- .fa-quote-left:before {
935
- content: "\f10d";
936
- }
937
- .fa-quote-right:before {
938
- content: "\f10e";
939
- }
940
- .fa-spinner:before {
941
- content: "\f110";
942
- }
943
- .fa-circle:before {
944
- content: "\f111";
945
- }
946
- .fa-mail-reply:before,
947
- .fa-reply:before {
948
- content: "\f112";
949
- }
950
- .fa-github-alt:before {
951
- content: "\f113";
952
- }
953
- .fa-folder-o:before {
954
- content: "\f114";
955
- }
956
- .fa-folder-open-o:before {
957
- content: "\f115";
958
- }
959
- .fa-smile-o:before {
960
- content: "\f118";
961
- }
962
- .fa-frown-o:before {
963
- content: "\f119";
964
- }
965
- .fa-meh-o:before {
966
- content: "\f11a";
967
- }
968
- .fa-gamepad:before {
969
- content: "\f11b";
970
- }
971
- .fa-keyboard-o:before {
972
- content: "\f11c";
973
- }
974
- .fa-flag-o:before {
975
- content: "\f11d";
976
- }
977
- .fa-flag-checkered:before {
978
- content: "\f11e";
979
- }
980
- .fa-terminal:before {
981
- content: "\f120";
982
- }
983
- .fa-code:before {
984
- content: "\f121";
985
- }
986
- .fa-mail-reply-all:before,
987
- .fa-reply-all:before {
988
- content: "\f122";
989
- }
990
- .fa-star-half-empty:before,
991
- .fa-star-half-full:before,
992
- .fa-star-half-o:before {
993
- content: "\f123";
994
- }
995
- .fa-location-arrow:before {
996
- content: "\f124";
997
- }
998
- .fa-crop:before {
999
- content: "\f125";
1000
- }
1001
- .fa-code-fork:before {
1002
- content: "\f126";
1003
- }
1004
- .fa-unlink:before,
1005
- .fa-chain-broken:before {
1006
- content: "\f127";
1007
- }
1008
- .fa-question:before {
1009
- content: "\f128";
1010
- }
1011
- .fa-info:before {
1012
- content: "\f129";
1013
- }
1014
- .fa-exclamation:before {
1015
- content: "\f12a";
1016
- }
1017
- .fa-superscript:before {
1018
- content: "\f12b";
1019
- }
1020
- .fa-subscript:before {
1021
- content: "\f12c";
1022
- }
1023
- .fa-eraser:before {
1024
- content: "\f12d";
1025
- }
1026
- .fa-puzzle-piece:before {
1027
- content: "\f12e";
1028
- }
1029
- .fa-microphone:before {
1030
- content: "\f130";
1031
- }
1032
- .fa-microphone-slash:before {
1033
- content: "\f131";
1034
- }
1035
- .fa-shield:before {
1036
- content: "\f132";
1037
- }
1038
- .fa-calendar-o:before {
1039
- content: "\f133";
1040
- }
1041
- .fa-fire-extinguisher:before {
1042
- content: "\f134";
1043
- }
1044
- .fa-rocket:before {
1045
- content: "\f135";
1046
- }
1047
- .fa-maxcdn:before {
1048
- content: "\f136";
1049
- }
1050
- .fa-chevron-circle-left:before {
1051
- content: "\f137";
1052
- }
1053
- .fa-chevron-circle-right:before {
1054
- content: "\f138";
1055
- }
1056
- .fa-chevron-circle-up:before {
1057
- content: "\f139";
1058
- }
1059
- .fa-chevron-circle-down:before {
1060
- content: "\f13a";
1061
- }
1062
- .fa-html5:before {
1063
- content: "\f13b";
1064
- }
1065
- .fa-css3:before {
1066
- content: "\f13c";
1067
- }
1068
- .fa-anchor:before {
1069
- content: "\f13d";
1070
- }
1071
- .fa-unlock-alt:before {
1072
- content: "\f13e";
1073
- }
1074
- .fa-bullseye:before {
1075
- content: "\f140";
1076
- }
1077
- .fa-ellipsis-h:before {
1078
- content: "\f141";
1079
- }
1080
- .fa-ellipsis-v:before {
1081
- content: "\f142";
1082
- }
1083
- .fa-rss-square:before {
1084
- content: "\f143";
1085
- }
1086
- .fa-play-circle:before {
1087
- content: "\f144";
1088
- }
1089
- .fa-ticket:before {
1090
- content: "\f145";
1091
- }
1092
- .fa-minus-square:before {
1093
- content: "\f146";
1094
- }
1095
- .fa-minus-square-o:before {
1096
- content: "\f147";
1097
- }
1098
- .fa-level-up:before {
1099
- content: "\f148";
1100
- }
1101
- .fa-level-down:before {
1102
- content: "\f149";
1103
- }
1104
- .fa-check-square:before {
1105
- content: "\f14a";
1106
- }
1107
- .fa-pencil-square:before {
1108
- content: "\f14b";
1109
- }
1110
- .fa-external-link-square:before {
1111
- content: "\f14c";
1112
- }
1113
- .fa-share-square:before {
1114
- content: "\f14d";
1115
- }
1116
- .fa-compass:before {
1117
- content: "\f14e";
1118
- }
1119
- .fa-toggle-down:before,
1120
- .fa-caret-square-o-down:before {
1121
- content: "\f150";
1122
- }
1123
- .fa-toggle-up:before,
1124
- .fa-caret-square-o-up:before {
1125
- content: "\f151";
1126
- }
1127
- .fa-toggle-right:before,
1128
- .fa-caret-square-o-right:before {
1129
- content: "\f152";
1130
- }
1131
- .fa-euro:before,
1132
- .fa-eur:before {
1133
- content: "\f153";
1134
- }
1135
- .fa-gbp:before {
1136
- content: "\f154";
1137
- }
1138
- .fa-dollar:before,
1139
- .fa-usd:before {
1140
- content: "\f155";
1141
- }
1142
- .fa-rupee:before,
1143
- .fa-inr:before {
1144
- content: "\f156";
1145
- }
1146
- .fa-cny:before,
1147
- .fa-rmb:before,
1148
- .fa-yen:before,
1149
- .fa-jpy:before {
1150
- content: "\f157";
1151
- }
1152
- .fa-ruble:before,
1153
- .fa-rouble:before,
1154
- .fa-rub:before {
1155
- content: "\f158";
1156
- }
1157
- .fa-won:before,
1158
- .fa-krw:before {
1159
- content: "\f159";
1160
- }
1161
- .fa-bitcoin:before,
1162
- .fa-btc:before {
1163
- content: "\f15a";
1164
- }
1165
- .fa-file:before {
1166
- content: "\f15b";
1167
- }
1168
- .fa-file-text:before {
1169
- content: "\f15c";
1170
- }
1171
- .fa-sort-alpha-asc:before {
1172
- content: "\f15d";
1173
- }
1174
- .fa-sort-alpha-desc:before {
1175
- content: "\f15e";
1176
- }
1177
- .fa-sort-amount-asc:before {
1178
- content: "\f160";
1179
- }
1180
- .fa-sort-amount-desc:before {
1181
- content: "\f161";
1182
- }
1183
- .fa-sort-numeric-asc:before {
1184
- content: "\f162";
1185
- }
1186
- .fa-sort-numeric-desc:before {
1187
- content: "\f163";
1188
- }
1189
- .fa-thumbs-up:before {
1190
- content: "\f164";
1191
- }
1192
- .fa-thumbs-down:before {
1193
- content: "\f165";
1194
- }
1195
- .fa-youtube-square:before {
1196
- content: "\f166";
1197
- }
1198
- .fa-youtube:before {
1199
- content: "\f167";
1200
- }
1201
- .fa-xing:before {
1202
- content: "\f168";
1203
- }
1204
- .fa-xing-square:before {
1205
- content: "\f169";
1206
- }
1207
- .fa-youtube-play:before {
1208
- content: "\f16a";
1209
- }
1210
- .fa-dropbox:before {
1211
- content: "\f16b";
1212
- }
1213
- .fa-stack-overflow:before {
1214
- content: "\f16c";
1215
- }
1216
- .fa-instagram:before {
1217
- content: "\f16d";
1218
- }
1219
- .fa-flickr:before {
1220
- content: "\f16e";
1221
- }
1222
- .fa-adn:before {
1223
- content: "\f170";
1224
- }
1225
- .fa-bitbucket:before {
1226
- content: "\f171";
1227
- }
1228
- .fa-bitbucket-square:before {
1229
- content: "\f172";
1230
- }
1231
- .fa-tumblr:before {
1232
- content: "\f173";
1233
- }
1234
- .fa-tumblr-square:before {
1235
- content: "\f174";
1236
- }
1237
- .fa-long-arrow-down:before {
1238
- content: "\f175";
1239
- }
1240
- .fa-long-arrow-up:before {
1241
- content: "\f176";
1242
- }
1243
- .fa-long-arrow-left:before {
1244
- content: "\f177";
1245
- }
1246
- .fa-long-arrow-right:before {
1247
- content: "\f178";
1248
- }
1249
- .fa-apple:before {
1250
- content: "\f179";
1251
- }
1252
- .fa-windows:before {
1253
- content: "\f17a";
1254
- }
1255
- .fa-android:before {
1256
- content: "\f17b";
1257
- }
1258
- .fa-linux:before {
1259
- content: "\f17c";
1260
- }
1261
- .fa-dribbble:before {
1262
- content: "\f17d";
1263
- }
1264
- .fa-skype:before {
1265
- content: "\f17e";
1266
- }
1267
- .fa-foursquare:before {
1268
- content: "\f180";
1269
- }
1270
- .fa-trello:before {
1271
- content: "\f181";
1272
- }
1273
- .fa-female:before {
1274
- content: "\f182";
1275
- }
1276
- .fa-male:before {
1277
- content: "\f183";
1278
- }
1279
- .fa-gittip:before {
1280
- content: "\f184";
1281
- }
1282
- .fa-sun-o:before {
1283
- content: "\f185";
1284
- }
1285
- .fa-moon-o:before {
1286
- content: "\f186";
1287
- }
1288
- .fa-archive:before {
1289
- content: "\f187";
1290
- }
1291
- .fa-bug:before {
1292
- content: "\f188";
1293
- }
1294
- .fa-vk:before {
1295
- content: "\f189";
1296
- }
1297
- .fa-weibo:before {
1298
- content: "\f18a";
1299
- }
1300
- .fa-renren:before {
1301
- content: "\f18b";
1302
- }
1303
- .fa-pagelines:before {
1304
- content: "\f18c";
1305
- }
1306
- .fa-stack-exchange:before {
1307
- content: "\f18d";
1308
- }
1309
- .fa-arrow-circle-o-right:before {
1310
- content: "\f18e";
1311
- }
1312
- .fa-arrow-circle-o-left:before {
1313
- content: "\f190";
1314
- }
1315
- .fa-toggle-left:before,
1316
- .fa-caret-square-o-left:before {
1317
- content: "\f191";
1318
- }
1319
- .fa-dot-circle-o:before {
1320
- content: "\f192";
1321
- }
1322
- .fa-wheelchair:before {
1323
- content: "\f193";
1324
- }
1325
- .fa-vimeo-square:before {
1326
- content: "\f194";
1327
- }
1328
- .fa-turkish-lira:before,
1329
- .fa-try:before {
1330
- content: "\f195";
1331
- }
1332
- .fa-plus-square-o:before {
1333
- content: "\f196";
1334
- }
1335
- .fa-space-shuttle:before {
1336
- content: "\f197";
1337
- }
1338
- .fa-slack:before {
1339
- content: "\f198";
1340
- }
1341
- .fa-envelope-square:before {
1342
- content: "\f199";
1343
- }
1344
- .fa-wordpress:before {
1345
- content: "\f19a";
1346
- }
1347
- .fa-openid:before {
1348
- content: "\f19b";
1349
- }
1350
- .fa-institution:before,
1351
- .fa-bank:before,
1352
- .fa-university:before {
1353
- content: "\f19c";
1354
- }
1355
- .fa-mortar-board:before,
1356
- .fa-graduation-cap:before {
1357
- content: "\f19d";
1358
- }
1359
- .fa-yahoo:before {
1360
- content: "\f19e";
1361
- }
1362
- .fa-google:before {
1363
- content: "\f1a0";
1364
- }
1365
- .fa-reddit:before {
1366
- content: "\f1a1";
1367
- }
1368
- .fa-reddit-square:before {
1369
- content: "\f1a2";
1370
- }
1371
- .fa-stumbleupon-circle:before {
1372
- content: "\f1a3";
1373
- }
1374
- .fa-stumbleupon:before {
1375
- content: "\f1a4";
1376
- }
1377
- .fa-delicious:before {
1378
- content: "\f1a5";
1379
- }
1380
- .fa-digg:before {
1381
- content: "\f1a6";
1382
- }
1383
- .fa-pied-piper-square:before,
1384
- .fa-pied-piper:before {
1385
- content: "\f1a7";
1386
- }
1387
- .fa-pied-piper-alt:before {
1388
- content: "\f1a8";
1389
- }
1390
- .fa-drupal:before {
1391
- content: "\f1a9";
1392
- }
1393
- .fa-joomla:before {
1394
- content: "\f1aa";
1395
- }
1396
- .fa-language:before {
1397
- content: "\f1ab";
1398
- }
1399
- .fa-fax:before {
1400
- content: "\f1ac";
1401
- }
1402
- .fa-building:before {
1403
- content: "\f1ad";
1404
- }
1405
- .fa-child:before {
1406
- content: "\f1ae";
1407
- }
1408
- .fa-paw:before {
1409
- content: "\f1b0";
1410
- }
1411
- .fa-spoon:before {
1412
- content: "\f1b1";
1413
- }
1414
- .fa-cube:before {
1415
- content: "\f1b2";
1416
- }
1417
- .fa-cubes:before {
1418
- content: "\f1b3";
1419
- }
1420
- .fa-behance:before {
1421
- content: "\f1b4";
1422
- }
1423
- .fa-behance-square:before {
1424
- content: "\f1b5";
1425
- }
1426
- .fa-steam:before {
1427
- content: "\f1b6";
1428
- }
1429
- .fa-steam-square:before {
1430
- content: "\f1b7";
1431
- }
1432
- .fa-recycle:before {
1433
- content: "\f1b8";
1434
- }
1435
- .fa-automobile:before,
1436
- .fa-car:before {
1437
- content: "\f1b9";
1438
- }
1439
- .fa-cab:before,
1440
- .fa-taxi:before {
1441
- content: "\f1ba";
1442
- }
1443
- .fa-tree:before {
1444
- content: "\f1bb";
1445
- }
1446
- .fa-spotify:before {
1447
- content: "\f1bc";
1448
- }
1449
- .fa-deviantart:before {
1450
- content: "\f1bd";
1451
- }
1452
- .fa-soundcloud:before {
1453
- content: "\f1be";
1454
- }
1455
- .fa-database:before {
1456
- content: "\f1c0";
1457
- }
1458
- .fa-file-pdf-o:before {
1459
- content: "\f1c1";
1460
- }
1461
- .fa-file-word-o:before {
1462
- content: "\f1c2";
1463
- }
1464
- .fa-file-excel-o:before {
1465
- content: "\f1c3";
1466
- }
1467
- .fa-file-powerpoint-o:before {
1468
- content: "\f1c4";
1469
- }
1470
- .fa-file-photo-o:before,
1471
- .fa-file-picture-o:before,
1472
- .fa-file-image-o:before {
1473
- content: "\f1c5";
1474
- }
1475
- .fa-file-zip-o:before,
1476
- .fa-file-archive-o:before {
1477
- content: "\f1c6";
1478
- }
1479
- .fa-file-sound-o:before,
1480
- .fa-file-audio-o:before {
1481
- content: "\f1c7";
1482
- }
1483
- .fa-file-movie-o:before,
1484
- .fa-file-video-o:before {
1485
- content: "\f1c8";
1486
- }
1487
- .fa-file-code-o:before {
1488
- content: "\f1c9";
1489
- }
1490
- .fa-vine:before {
1491
- content: "\f1ca";
1492
- }
1493
- .fa-codepen:before {
1494
- content: "\f1cb";
1495
- }
1496
- .fa-jsfiddle:before {
1497
- content: "\f1cc";
1498
- }
1499
- .fa-life-bouy:before,
1500
- .fa-life-saver:before,
1501
- .fa-support:before,
1502
- .fa-life-ring:before {
1503
- content: "\f1cd";
1504
- }
1505
- .fa-circle-o-notch:before {
1506
- content: "\f1ce";
1507
- }
1508
- .fa-ra:before,
1509
- .fa-rebel:before {
1510
- content: "\f1d0";
1511
- }
1512
- .fa-ge:before,
1513
- .fa-empire:before {
1514
- content: "\f1d1";
1515
- }
1516
- .fa-git-square:before {
1517
- content: "\f1d2";
1518
- }
1519
- .fa-git:before {
1520
- content: "\f1d3";
1521
- }
1522
- .fa-hacker-news:before {
1523
- content: "\f1d4";
1524
- }
1525
- .fa-tencent-weibo:before {
1526
- content: "\f1d5";
1527
- }
1528
- .fa-qq:before {
1529
- content: "\f1d6";
1530
- }
1531
- .fa-wechat:before,
1532
- .fa-weixin:before {
1533
- content: "\f1d7";
1534
- }
1535
- .fa-send:before,
1536
- .fa-paper-plane:before {
1537
- content: "\f1d8";
1538
- }
1539
- .fa-send-o:before,
1540
- .fa-paper-plane-o:before {
1541
- content: "\f1d9";
1542
- }
1543
- .fa-history:before {
1544
- content: "\f1da";
1545
- }
1546
- .fa-circle-thin:before {
1547
- content: "\f1db";
1548
- }
1549
- .fa-header:before {
1550
- content: "\f1dc";
1551
- }
1552
- .fa-paragraph:before {
1553
- content: "\f1dd";
1554
- }
1555
- .fa-sliders:before {
1556
- content: "\f1de";
1557
- }
1558
- .fa-share-alt:before {
1559
- content: "\f1e0";
1560
- }
1561
- .fa-share-alt-square:before {
1562
- content: "\f1e1";
1563
- }
1564
- .fa-bomb:before {
1565
- content: "\f1e2";
1566
- }