voltar 0.0.23

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/fonts/FontAwesome.otf +0 -0
  6. data/app/assets/fonts/Simple-Line-Icons.eot +0 -0
  7. data/app/assets/fonts/Simple-Line-Icons.svg +1369 -0
  8. data/app/assets/fonts/Simple-Line-Icons.ttf +0 -0
  9. data/app/assets/fonts/Simple-Line-Icons.woff +0 -0
  10. data/app/assets/fonts/fontawesome-webfont.eot +0 -0
  11. data/app/assets/fonts/fontawesome-webfont.svg +520 -0
  12. data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
  13. data/app/assets/fonts/fontawesome-webfont.woff +0 -0
  14. data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  15. data/app/assets/fonts/glyphicons-halflings-regular.svg +229 -0
  16. data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  17. data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  18. data/app/assets/fonts/sourcesanspro/sourcesanspro-bold.woff +0 -0
  19. data/app/assets/fonts/sourcesanspro/sourcesanspro-light.woff +0 -0
  20. data/app/assets/fonts/sourcesanspro/sourcesanspro.woff +0 -0
  21. data/app/assets/javascripts/voltar/app.js +203 -0
  22. data/app/assets/javascripts/voltar/application.js +33 -0
  23. data/app/assets/javascripts/voltar/controllers/app_ctrl.js.erb +673 -0
  24. data/app/assets/javascripts/voltar/directives/app_directives.js +345 -0
  25. data/app/assets/javascripts/voltar/factories/app_services.js +255 -0
  26. data/app/assets/javascripts/voltar/stripe.js.coffee +2 -0
  27. data/app/assets/stylesheets/voltar/app.css +4990 -0
  28. data/app/assets/stylesheets/voltar/application.css +23 -0
  29. data/app/assets/stylesheets/voltar/voltar.css.scss +93 -0
  30. data/app/controllers/voltar/application_controller.rb +4 -0
  31. data/app/controllers/voltar/dashboard_controller.rb +11 -0
  32. data/app/helpers/voltar/application_helper.rb +4 -0
  33. data/app/views/layouts/voltar/application.html.erb +40 -0
  34. data/app/views/voltar/account/_billing.html.erb +552 -0
  35. data/app/views/voltar/account/_locations.html.erb +135 -0
  36. data/app/views/voltar/account/_managers.html +134 -0
  37. data/app/views/voltar/account/_password.html.erb +57 -0
  38. data/app/views/voltar/account/_profile.html.erb +84 -0
  39. data/app/views/voltar/dashboard/index.html.erb +0 -0
  40. data/app/views/voltar/inventory/_delete_dialog.html.erb +16 -0
  41. data/app/views/voltar/inventory/_edit.html.erb +244 -0
  42. data/app/views/voltar/inventory/_index.html.erb +160 -0
  43. data/app/views/voltar/inventory/_mark_as_sold_dialog.html.erb +26 -0
  44. data/app/views/voltar/shared/_keen_js.html.haml +11 -0
  45. data/app/views/voltar/shared/_voltar_app.html.erb +83 -0
  46. data/app/views/voltar/shared/_voltar_aside.html.erb +71 -0
  47. data/app/views/voltar/shared/_voltar_footer.html.erb +13 -0
  48. data/app/views/voltar/shared/_voltar_header.html.erb +156 -0
  49. data/app/views/voltar/shared/app/_country_province_select.html +19 -0
  50. data/app/views/voltar/shared/app/_dashboard.html.erb +243 -0
  51. data/app/views/voltar/shared/app/_notifications.html.erb +13 -0
  52. data/app/views/voltar/shared/app/_spinner.html.erb +8 -0
  53. data/config/routes.rb +4 -0
  54. data/lib/tasks/voltar_tasks.rake +4 -0
  55. data/lib/voltar.rb +5 -0
  56. data/lib/voltar/engine.rb +15 -0
  57. data/lib/voltar/version.rb +3 -0
  58. data/test/dummy/README.rdoc +28 -0
  59. data/test/dummy/Rakefile +6 -0
  60. data/test/dummy/app/assets/javascripts/application.js +13 -0
  61. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  62. data/test/dummy/app/controllers/application_controller.rb +5 -0
  63. data/test/dummy/app/helpers/application_helper.rb +2 -0
  64. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  65. data/test/dummy/bin/bundle +3 -0
  66. data/test/dummy/bin/rails +4 -0
  67. data/test/dummy/bin/rake +4 -0
  68. data/test/dummy/bin/setup +29 -0
  69. data/test/dummy/config.ru +4 -0
  70. data/test/dummy/config/application.rb +26 -0
  71. data/test/dummy/config/boot.rb +5 -0
  72. data/test/dummy/config/database.yml +25 -0
  73. data/test/dummy/config/environment.rb +5 -0
  74. data/test/dummy/config/environments/development.rb +41 -0
  75. data/test/dummy/config/environments/production.rb +76 -0
  76. data/test/dummy/config/environments/test.rb +39 -0
  77. data/test/dummy/config/initializers/assets.rb +11 -0
  78. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  79. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  80. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  81. data/test/dummy/config/initializers/inflections.rb +16 -0
  82. data/test/dummy/config/initializers/mime_types.rb +4 -0
  83. data/test/dummy/config/initializers/session_store.rb +3 -0
  84. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/test/dummy/config/locales/en.yml +23 -0
  86. data/test/dummy/config/routes.rb +4 -0
  87. data/test/dummy/config/secrets.yml +22 -0
  88. data/test/dummy/log/development.log +0 -0
  89. data/test/dummy/public/404.html +67 -0
  90. data/test/dummy/public/422.html +67 -0
  91. data/test/dummy/public/500.html +66 -0
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/integration/navigation_test.rb +10 -0
  94. data/test/test_helper.rb +15 -0
  95. data/test/voltar_test.rb +7 -0
  96. data/vendor/assets/images/voltar/a0.jpg +0 -0
  97. data/vendor/assets/images/voltar/a1.jpg +0 -0
  98. data/vendor/assets/images/voltar/a10.jpg +0 -0
  99. data/vendor/assets/images/voltar/a2.jpg +0 -0
  100. data/vendor/assets/images/voltar/a3.jpg +0 -0
  101. data/vendor/assets/images/voltar/a4.jpg +0 -0
  102. data/vendor/assets/images/voltar/a5.jpg +0 -0
  103. data/vendor/assets/images/voltar/a6.jpg +0 -0
  104. data/vendor/assets/images/voltar/a7.jpg +0 -0
  105. data/vendor/assets/images/voltar/a8.jpg +0 -0
  106. data/vendor/assets/images/voltar/a9.jpg +0 -0
  107. data/vendor/assets/images/voltar/b0.jpg +0 -0
  108. data/vendor/assets/images/voltar/b1.jpg +0 -0
  109. data/vendor/assets/images/voltar/b2.jpg +0 -0
  110. data/vendor/assets/images/voltar/b3.jpg +0 -0
  111. data/vendor/assets/images/voltar/b4.jpg +0 -0
  112. data/vendor/assets/images/voltar/b5.jpg +0 -0
  113. data/vendor/assets/images/voltar/c0.jpg +0 -0
  114. data/vendor/assets/images/voltar/c1.jpg +0 -0
  115. data/vendor/assets/images/voltar/c2.jpg +0 -0
  116. data/vendor/assets/images/voltar/c3.jpg +0 -0
  117. data/vendor/assets/images/voltar/c4.jpg +0 -0
  118. data/vendor/assets/images/voltar/c5.jpg +0 -0
  119. data/vendor/assets/images/voltar/chosen-sprite.png +0 -0
  120. data/vendor/assets/images/voltar/chosen-sprite@2x.png +0 -0
  121. data/vendor/assets/images/voltar/logo.png +0 -0
  122. data/vendor/assets/images/voltar/p0.jpg +0 -0
  123. data/vendor/assets/javascripts/voltar/angular-animate.js +1689 -0
  124. data/vendor/assets/javascripts/voltar/angular-contenteditable.js +98 -0
  125. data/vendor/assets/javascripts/voltar/angular-cookies.js +206 -0
  126. data/vendor/assets/javascripts/voltar/angular-sanitize.js +647 -0
  127. data/vendor/assets/javascripts/voltar/angular-ui-router.js +3658 -0
  128. data/vendor/assets/javascripts/voltar/angular.js +22024 -0
  129. data/vendor/assets/javascripts/voltar/chosen.jquery.min.js +2 -0
  130. data/vendor/assets/javascripts/voltar/easypiechart/jquery.easy-pie-chart.js +209 -0
  131. data/vendor/assets/javascripts/voltar/flot/jquery.flot.min.js +29 -0
  132. data/vendor/assets/javascripts/voltar/flot/jquery.flot.orderBars.js +187 -0
  133. data/vendor/assets/javascripts/voltar/flot/jquery.flot.pie.min.js +56 -0
  134. data/vendor/assets/javascripts/voltar/flot/jquery.flot.resize.js +60 -0
  135. data/vendor/assets/javascripts/voltar/flot/jquery.flot.spline.js +212 -0
  136. data/vendor/assets/javascripts/voltar/flot/jquery.flot.tooltip.min.js +12 -0
  137. data/vendor/assets/javascripts/voltar/jquery.min.js +5 -0
  138. data/vendor/assets/javascripts/voltar/moment.js +2856 -0
  139. data/vendor/assets/javascripts/voltar/ngStorage.js +103 -0
  140. data/vendor/assets/javascripts/voltar/ocLazyLoad.js +906 -0
  141. data/vendor/assets/javascripts/voltar/smart-table.min.js +1 -0
  142. data/vendor/assets/javascripts/voltar/sparkline/jquery.sparkline.min.js +2 -0
  143. data/vendor/assets/javascripts/voltar/toaster.js +185 -0
  144. data/vendor/assets/javascripts/voltar/ui-bootstrap-tpls.js +4116 -0
  145. data/vendor/assets/javascripts/voltar/ui-jq.js +86 -0
  146. data/vendor/assets/javascripts/voltar/ui-load.js +93 -0
  147. data/vendor/assets/javascripts/voltar/ui-validate.js +119 -0
  148. data/vendor/assets/stylesheets/voltar/animate.css +1098 -0
  149. data/vendor/assets/stylesheets/voltar/bootstrap.css +6202 -0
  150. data/vendor/assets/stylesheets/voltar/chosen.css +399 -0
  151. data/vendor/assets/stylesheets/voltar/font-awesome.min.css +4 -0
  152. data/vendor/assets/stylesheets/voltar/font.css +18 -0
  153. data/vendor/assets/stylesheets/voltar/simple-line-icons.css +526 -0
  154. data/vendor/assets/stylesheets/voltar/toaster.css +213 -0
  155. metadata +333 -0
@@ -0,0 +1,399 @@
1
+ /*!
2
+ Chosen, a Select Box Enhancer for jQuery and Prototype
3
+ by Patrick Filler for Harvest, http://getharvest.com
4
+
5
+ Version 1.1.0
6
+ Full source at https://github.com/harvesthq/chosen
7
+ Copyright (c) 2011 Harvest http://getharvest.com
8
+
9
+ MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
10
+ This file is generated by `grunt build`, do not edit it by hand.
11
+ */
12
+
13
+ /* @group Base */
14
+ .chosen-container {
15
+ position: relative;
16
+ display: inline-block;
17
+ vertical-align: middle;
18
+ font-size: 13px;
19
+ zoom: 1;
20
+ *display: inline;
21
+ -webkit-user-select: none;
22
+ -moz-user-select: none;
23
+ user-select: none;
24
+ }
25
+ .chosen-container .chosen-drop {
26
+ position: absolute;
27
+ top: 100%;
28
+ left: -9999px;
29
+ z-index: 1010;
30
+ -webkit-box-sizing: border-box;
31
+ -moz-box-sizing: border-box;
32
+ box-sizing: border-box;
33
+ width: 100%;
34
+ border: 1px solid #aaa;
35
+ border-top: 0;
36
+ background: #fff;
37
+ box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
38
+ }
39
+ .chosen-container.chosen-with-drop .chosen-drop {
40
+ left: 0;
41
+ }
42
+ .chosen-container a {
43
+ cursor: pointer;
44
+ }
45
+
46
+ /* @end */
47
+ /* @group Single Chosen */
48
+ .chosen-container-single .chosen-single {
49
+ position: relative;
50
+ display: block;
51
+ overflow: hidden;
52
+ padding: 0 0 0 8px;
53
+ height: 34px;
54
+ border: 1px solid #cbd5dd;
55
+ border-radius: 2px;
56
+ background-color: #fff;
57
+ background-clip: padding-box;
58
+ color: #444;
59
+ text-decoration: none;
60
+ white-space: nowrap;
61
+ line-height: 30px;
62
+ }
63
+ .chosen-container-single .chosen-default {
64
+ color: #999;
65
+ }
66
+ .chosen-container-single .chosen-single span {
67
+ display: block;
68
+ overflow: hidden;
69
+ margin-right: 26px;
70
+ text-overflow: ellipsis;
71
+ white-space: nowrap;
72
+ }
73
+ .chosen-container-single .chosen-single-with-deselect span {
74
+ margin-right: 38px;
75
+ }
76
+ .chosen-container-single .chosen-single abbr {
77
+ position: absolute;
78
+ top: 6px;
79
+ right: 26px;
80
+ display: block;
81
+ width: 12px;
82
+ height: 12px;
83
+ background: url('chosen-sprite.png') -42px 1px no-repeat;
84
+ font-size: 1px;
85
+ }
86
+ .chosen-container-single .chosen-single abbr:hover {
87
+ background-position: -42px -10px;
88
+ }
89
+ .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
90
+ background-position: -42px -10px;
91
+ }
92
+ .chosen-container-single .chosen-single div {
93
+ position: absolute;
94
+ top: 0;
95
+ right: 0;
96
+ display: block;
97
+ width: 18px;
98
+ height: 100%;
99
+ }
100
+ .chosen-container-single .chosen-single div b {
101
+ display: block;
102
+ width: 100%;
103
+ height: 100%;
104
+ background: url('chosen-sprite.png') no-repeat 0px 6px;
105
+ }
106
+ .chosen-container-single .chosen-search {
107
+ position: relative;
108
+ z-index: 1010;
109
+ margin: 0;
110
+ padding: 3px 4px;
111
+ white-space: nowrap;
112
+ }
113
+ .chosen-container-single .chosen-search input[type="text"] {
114
+ -webkit-box-sizing: border-box;
115
+ -moz-box-sizing: border-box;
116
+ box-sizing: border-box;
117
+ margin: 1px 0;
118
+ padding: 4px 20px 4px 5px;
119
+ width: 100%;
120
+ height: auto;
121
+ outline: 0;
122
+ border: 1px solid #aaa;
123
+ background: white url('chosen-sprite.png') no-repeat 100% -20px;
124
+ background: url('chosen-sprite.png') no-repeat 100% -20px;
125
+ font-size: 1em;
126
+ line-height: normal;
127
+ border-radius: 0;
128
+ }
129
+ .chosen-container-single .chosen-drop {
130
+ margin-top: -1px;
131
+ border-radius: 0 0 4px 4px;
132
+ background-clip: padding-box;
133
+ }
134
+ .chosen-container-single.chosen-container-single-nosearch .chosen-search {
135
+ position: absolute;
136
+ left: -9999px;
137
+ }
138
+
139
+ /* @end */
140
+ /* @group Results */
141
+ .chosen-container .chosen-results {
142
+ position: relative;
143
+ overflow-x: hidden;
144
+ overflow-y: auto;
145
+ margin: 0 4px 4px 0;
146
+ padding: 0 0 0 4px;
147
+ max-height: 240px;
148
+ -webkit-overflow-scrolling: touch;
149
+ }
150
+ .chosen-container .chosen-results li {
151
+ display: none;
152
+ margin: 0;
153
+ padding: 5px 6px;
154
+ list-style: none;
155
+ line-height: 15px;
156
+ -webkit-touch-callout: none;
157
+ }
158
+ .chosen-container .chosen-results li.active-result {
159
+ display: list-item;
160
+ cursor: pointer;
161
+ }
162
+ .chosen-container .chosen-results li.disabled-result {
163
+ display: list-item;
164
+ color: #ccc;
165
+ cursor: default;
166
+ }
167
+ .chosen-container .chosen-results li.highlighted {
168
+ background-color: #999;
169
+ color: #fff;
170
+ }
171
+ .chosen-container .chosen-results li.no-results {
172
+ display: list-item;
173
+ background: #f4f4f4;
174
+ }
175
+ .chosen-container .chosen-results li.group-result {
176
+ display: list-item;
177
+ font-weight: bold;
178
+ cursor: default;
179
+ }
180
+ .chosen-container .chosen-results li.group-option {
181
+ padding-left: 15px;
182
+ }
183
+ .chosen-container .chosen-results li em {
184
+ font-style: normal;
185
+ text-decoration: underline;
186
+ }
187
+
188
+ /* @end */
189
+ /* @group Multi Chosen */
190
+ .chosen-container-multi .chosen-choices {
191
+ position: relative;
192
+ overflow: hidden;
193
+ -webkit-box-sizing: border-box;
194
+ -moz-box-sizing: border-box;
195
+ box-sizing: border-box;
196
+ margin: 0;
197
+ padding: 4px;
198
+ width: 100%;
199
+ height: auto !important;
200
+ height: 1%;
201
+ border: 1px solid #cbd5dd;
202
+ background-color: #fff;
203
+ border-radius: 2px;
204
+ cursor: text;
205
+ min-height: 34px;
206
+ }
207
+ .chosen-container-multi .chosen-choices li {
208
+ float: left;
209
+ list-style: none;
210
+ }
211
+ .chosen-container-multi .chosen-choices li.search-field {
212
+ margin: 0;
213
+ padding: 0;
214
+ white-space: nowrap;
215
+ }
216
+ .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
217
+ padding: 2px 5px;
218
+ height: 22px;
219
+ outline: 0;
220
+ border: 0 !important;
221
+ background: transparent !important;
222
+ box-shadow: none;
223
+ color: #666;
224
+ line-height: normal;
225
+ border-radius: 0;
226
+ }
227
+ .chosen-container-multi .chosen-choices li.search-field .default {
228
+ color: #999;
229
+ }
230
+ .chosen-container-multi .chosen-choices li.search-choice {
231
+ position: relative;
232
+ margin: 2px 0 2px 5px;
233
+ padding: 4px 20px 3px 5px;
234
+ border-radius: 3px;
235
+ background-color: #f5f5f5;
236
+ background-clip: padding-box;
237
+ line-height: 13px;
238
+ cursor: default;
239
+ }
240
+ .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
241
+ position: absolute;
242
+ top: 4px;
243
+ right: 3px;
244
+ display: block;
245
+ width: 12px;
246
+ height: 12px;
247
+ background: url('chosen-sprite.png') -42px 1px no-repeat;
248
+ font-size: 1px;
249
+ }
250
+ .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
251
+ background-position: -42px -10px;
252
+ }
253
+ .chosen-container-multi .chosen-choices li.search-choice-disabled {
254
+ padding-right: 5px;
255
+ border: 1px solid #ccc;
256
+ background-color: #e4e4e4;
257
+ color: #666;
258
+ }
259
+ .chosen-container-multi .chosen-choices li.search-choice-focus {
260
+ background: #d4d4d4;
261
+ }
262
+ .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
263
+ background-position: -42px -10px;
264
+ }
265
+ .chosen-container-multi .chosen-results {
266
+ margin: 0;
267
+ padding: 0;
268
+ }
269
+ .chosen-container-multi .chosen-drop .result-selected {
270
+ display: list-item;
271
+ color: #ccc;
272
+ cursor: default;
273
+ }
274
+
275
+ /* @end */
276
+ /* @group Active */
277
+ .chosen-container-active .chosen-single {
278
+ border: 1px solid #5897fb;
279
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
280
+ }
281
+ .chosen-container-active.chosen-with-drop .chosen-single {
282
+ border: 1px solid #aaa;
283
+ -moz-border-radius-bottomright: 0;
284
+ border-bottom-right-radius: 0;
285
+ -moz-border-radius-bottomleft: 0;
286
+ border-bottom-left-radius: 0;
287
+ box-shadow: 0 1px 0 #fff inset;
288
+ }
289
+ .chosen-container-active.chosen-with-drop .chosen-single div {
290
+ border-left: none;
291
+ background: transparent;
292
+ }
293
+ .chosen-container-active.chosen-with-drop .chosen-single div b {
294
+ background-position: -18px 4px;
295
+ }
296
+ .chosen-container-active .chosen-choices {
297
+ border: 1px solid #5897fb;
298
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
299
+ }
300
+ .chosen-container-active .chosen-choices li.search-field input[type="text"] {
301
+ color: #111 !important;
302
+ }
303
+
304
+ /* @end */
305
+ /* @group Disabled Support */
306
+ .chosen-disabled {
307
+ opacity: 0.5 !important;
308
+ cursor: default;
309
+ }
310
+ .chosen-disabled .chosen-single {
311
+ cursor: default;
312
+ }
313
+ .chosen-disabled .chosen-choices .search-choice .search-choice-close {
314
+ cursor: default;
315
+ }
316
+
317
+ /* @end */
318
+ /* @group Right to Left */
319
+ .chosen-rtl {
320
+ text-align: right;
321
+ }
322
+ .chosen-rtl .chosen-single {
323
+ overflow: visible;
324
+ padding: 0 8px 0 0;
325
+ }
326
+ .chosen-rtl .chosen-single span {
327
+ margin-right: 0;
328
+ margin-left: 26px;
329
+ direction: rtl;
330
+ }
331
+ .chosen-rtl .chosen-single-with-deselect span {
332
+ margin-left: 38px;
333
+ }
334
+ .chosen-rtl .chosen-single div {
335
+ right: auto;
336
+ left: 3px;
337
+ }
338
+ .chosen-rtl .chosen-single abbr {
339
+ right: auto;
340
+ left: 26px;
341
+ }
342
+ .chosen-rtl .chosen-choices li {
343
+ float: right;
344
+ }
345
+ .chosen-rtl .chosen-choices li.search-field input[type="text"] {
346
+ direction: rtl;
347
+ }
348
+ .chosen-rtl .chosen-choices li.search-choice {
349
+ margin: 3px 5px 3px 0;
350
+ padding: 3px 5px 3px 19px;
351
+ }
352
+ .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
353
+ right: auto;
354
+ left: 4px;
355
+ }
356
+ .chosen-rtl.chosen-container-single-nosearch .chosen-search,
357
+ .chosen-rtl .chosen-drop {
358
+ left: 9999px;
359
+ }
360
+ .chosen-rtl.chosen-container-single .chosen-results {
361
+ margin: 0 0 4px 4px;
362
+ padding: 0 4px 0 0;
363
+ }
364
+ .chosen-rtl .chosen-results li.group-option {
365
+ padding-right: 15px;
366
+ padding-left: 0;
367
+ }
368
+ .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
369
+ border-right: none;
370
+ }
371
+ .chosen-rtl .chosen-search input[type="text"] {
372
+ padding: 4px 5px 4px 20px;
373
+ background: white url('chosen-sprite.png') no-repeat -30px -20px;
374
+ background: url('chosen-sprite.png') no-repeat -30px -20px;
375
+ direction: rtl;
376
+ }
377
+ .chosen-rtl.chosen-container-single .chosen-single div b {
378
+ background-position: 6px 2px;
379
+ }
380
+ .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
381
+ background-position: -12px 2px;
382
+ }
383
+
384
+ /* @end */
385
+ /* @group Retina compatibility */
386
+ @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
387
+ .chosen-rtl .chosen-search input[type="text"],
388
+ .chosen-container-single .chosen-single abbr,
389
+ .chosen-container-single .chosen-single div b,
390
+ .chosen-container-single .chosen-search input[type="text"],
391
+ .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
392
+ .chosen-container .chosen-results-scroll-down span,
393
+ .chosen-container .chosen-results-scroll-up span {
394
+ background-image: url('chosen-sprite@2x.png') !important;
395
+ background-size: 52px 37px !important;
396
+ background-repeat: no-repeat !important;
397
+ }
398
+ }
399
+ /* @end */
@@ -0,0 +1,4 @@
1
+ /*!
2
+ * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */@font-face{font-family:'FontAwesome';src:url('../fontawesome-webfont.eot?v=4.2.0');src:url('../fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}
@@ -0,0 +1,18 @@
1
+ @font-face {
2
+ font-family: 'Source Sans Pro';
3
+ font-style: normal;
4
+ font-weight: 300;
5
+ src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('../fonts/sourcesanspro/sourcesanspro-light.woff') format('woff');
6
+ }
7
+ @font-face {
8
+ font-family: 'Source Sans Pro';
9
+ font-style: normal;
10
+ font-weight: 400;
11
+ src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/sourcesanspro/sourcesanspro.woff') format('woff');
12
+ }
13
+ @font-face {
14
+ font-family: 'Source Sans Pro';
15
+ font-style: normal;
16
+ font-weight: 700;
17
+ src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/sourcesanspro/sourcesanspro-bold.woff') format('woff');
18
+ }
@@ -0,0 +1,526 @@
1
+ @font-face {
2
+ font-family: 'Simple-Line-Icons';
3
+ src:url('../Simple-Line-Icons.eot');
4
+ src:url('../Simple-Line-Icons.eot?#iefix') format('embedded-opentype'),
5
+ url('../Simple-Line-Icons.woff') format('woff'),
6
+ url('../Simple-Line-Icons.ttf') format('truetype'),
7
+ url('../Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ /* Use the following CSS code if you want to use data attributes for inserting your icons */
13
+ [data-icon]:before {
14
+ font-family: 'Simple-Line-Icons';
15
+ content: attr(data-icon);
16
+ speak: none;
17
+ font-weight: normal;
18
+ font-variant: normal;
19
+ text-transform: none;
20
+ line-height: 1;
21
+ -webkit-font-smoothing: antialiased;
22
+ -moz-osx-font-smoothing: grayscale;
23
+ }
24
+
25
+ /* Use the following CSS code if you want to have a class per icon */
26
+ /*
27
+ Instead of a list of all class selectors,
28
+ you can use the generic selector below, but it's slower:
29
+ [class*="icon-"] {
30
+ */
31
+ .icon-user-female, .icon-user-follow, .icon-user-following, .icon-user-unfollow, .icon-trophy, .icon-screen-smartphone, .icon-screen-desktop, .icon-plane, .icon-notebook, .icon-moustache, .icon-mouse, .icon-magnet, .icon-energy, .icon-emoticon-smile, .icon-disc, .icon-cursor-move, .icon-crop, .icon-credit-card, .icon-chemistry, .icon-user, .icon-speedometer, .icon-social-youtube, .icon-social-twitter, .icon-social-tumblr, .icon-social-facebook, .icon-social-dropbox, .icon-social-dribbble, .icon-shield, .icon-screen-tablet, .icon-magic-wand, .icon-hourglass, .icon-graduation, .icon-ghost, .icon-game-controller, .icon-fire, .icon-eyeglasses, .icon-envelope-open, .icon-envelope-letter, .icon-bell, .icon-badge, .icon-anchor, .icon-wallet, .icon-vector, .icon-speech, .icon-puzzle, .icon-printer, .icon-present, .icon-playlist, .icon-pin, .icon-picture, .icon-map, .icon-layers, .icon-handbag, .icon-globe-alt, .icon-globe, .icon-frame, .icon-folder-alt, .icon-film, .icon-feed, .icon-earphones-alt, .icon-earphones, .icon-drop, .icon-drawer, .icon-docs, .icon-directions, .icon-direction, .icon-diamond, .icon-cup, .icon-compass, .icon-call-out, .icon-call-in, .icon-call-end, .icon-calculator, .icon-bubbles, .icon-briefcase, .icon-book-open, .icon-basket-loaded, .icon-basket, .icon-bag, .icon-action-undo, .icon-action-redo, .icon-wrench, .icon-umbrella, .icon-trash, .icon-tag, .icon-support, .icon-size-fullscreen, .icon-size-actual, .icon-shuffle, .icon-share-alt, .icon-share, .icon-rocket, .icon-question, .icon-pie-chart, .icon-pencil, .icon-note, .icon-music-tone-alt, .icon-music-tone, .icon-microphone, .icon-loop, .icon-logout, .icon-login, .icon-list, .icon-like, .icon-home, .icon-grid, .icon-graph, .icon-equalizer, .icon-dislike, .icon-cursor, .icon-control-start, .icon-control-rewind, .icon-control-play, .icon-control-pause, .icon-control-forward, .icon-control-end, .icon-calendar, .icon-bulb, .icon-bar-chart, .icon-arrow-up, .icon-arrow-right, .icon-arrow-left, .icon-arrow-down, .icon-ban, .icon-bubble, .icon-camcorder, .icon-camera, .icon-check, .icon-clock, .icon-close, .icon-cloud-download, .icon-cloud-upload, .icon-doc, .icon-envelope, .icon-eye, .icon-flag, .icon-folder, .icon-heart, .icon-info, .icon-key, .icon-link, .icon-lock, .icon-lock-open, .icon-magnifier, .icon-magnifier-add, .icon-magnifier-remove, .icon-paper-clip, .icon-paper-plane, .icon-plus, .icon-pointer, .icon-power, .icon-refresh, .icon-reload, .icon-settings, .icon-star, .icon-symbol-female, .icon-symbol-male, .icon-target, .icon-volume-1, .icon-volume-2, .icon-volume-off, .icon-users {
32
+ font-family: 'Simple-Line-Icons';
33
+ speak: none;
34
+ font-style: normal;
35
+ font-weight: normal;
36
+ font-variant: normal;
37
+ text-transform: none;
38
+ line-height: 1;
39
+ -webkit-font-smoothing: antialiased;
40
+ }
41
+ .icon-user-female:before {
42
+ content: "\e000";
43
+ }
44
+ .icon-user-follow:before {
45
+ content: "\e002";
46
+ }
47
+ .icon-user-following:before {
48
+ content: "\e003";
49
+ }
50
+ .icon-user-unfollow:before {
51
+ content: "\e004";
52
+ }
53
+ .icon-trophy:before {
54
+ content: "\e006";
55
+ }
56
+ .icon-screen-smartphone:before {
57
+ content: "\e010";
58
+ }
59
+ .icon-screen-desktop:before {
60
+ content: "\e011";
61
+ }
62
+ .icon-plane:before {
63
+ content: "\e012";
64
+ }
65
+ .icon-notebook:before {
66
+ content: "\e013";
67
+ }
68
+ .icon-moustache:before {
69
+ content: "\e014";
70
+ }
71
+ .icon-mouse:before {
72
+ content: "\e015";
73
+ }
74
+ .icon-magnet:before {
75
+ content: "\e016";
76
+ }
77
+ .icon-energy:before {
78
+ content: "\e020";
79
+ }
80
+ .icon-emoticon-smile:before {
81
+ content: "\e021";
82
+ }
83
+ .icon-disc:before {
84
+ content: "\e022";
85
+ }
86
+ .icon-cursor-move:before {
87
+ content: "\e023";
88
+ }
89
+ .icon-crop:before {
90
+ content: "\e024";
91
+ }
92
+ .icon-credit-card:before {
93
+ content: "\e025";
94
+ }
95
+ .icon-chemistry:before {
96
+ content: "\e026";
97
+ }
98
+ .icon-user:before {
99
+ content: "\e005";
100
+ }
101
+ .icon-speedometer:before {
102
+ content: "\e007";
103
+ }
104
+ .icon-social-youtube:before {
105
+ content: "\e008";
106
+ }
107
+ .icon-social-twitter:before {
108
+ content: "\e009";
109
+ }
110
+ .icon-social-tumblr:before {
111
+ content: "\e00a";
112
+ }
113
+ .icon-social-facebook:before {
114
+ content: "\e00b";
115
+ }
116
+ .icon-social-dropbox:before {
117
+ content: "\e00c";
118
+ }
119
+ .icon-social-dribbble:before {
120
+ content: "\e00d";
121
+ }
122
+ .icon-shield:before {
123
+ content: "\e00e";
124
+ }
125
+ .icon-screen-tablet:before {
126
+ content: "\e00f";
127
+ }
128
+ .icon-magic-wand:before {
129
+ content: "\e017";
130
+ }
131
+ .icon-hourglass:before {
132
+ content: "\e018";
133
+ }
134
+ .icon-graduation:before {
135
+ content: "\e019";
136
+ }
137
+ .icon-ghost:before {
138
+ content: "\e01a";
139
+ }
140
+ .icon-game-controller:before {
141
+ content: "\e01b";
142
+ }
143
+ .icon-fire:before {
144
+ content: "\e01c";
145
+ }
146
+ .icon-eyeglasses:before {
147
+ content: "\e01d";
148
+ }
149
+ .icon-envelope-open:before {
150
+ content: "\e01e";
151
+ }
152
+ .icon-envelope-letter:before {
153
+ content: "\e01f";
154
+ }
155
+ .icon-bell:before {
156
+ content: "\e027";
157
+ }
158
+ .icon-badge:before {
159
+ content: "\e028";
160
+ }
161
+ .icon-anchor:before {
162
+ content: "\e029";
163
+ }
164
+ .icon-wallet:before {
165
+ content: "\e02a";
166
+ }
167
+ .icon-vector:before {
168
+ content: "\e02b";
169
+ }
170
+ .icon-speech:before {
171
+ content: "\e02c";
172
+ }
173
+ .icon-puzzle:before {
174
+ content: "\e02d";
175
+ }
176
+ .icon-printer:before {
177
+ content: "\e02e";
178
+ }
179
+ .icon-present:before {
180
+ content: "\e02f";
181
+ }
182
+ .icon-playlist:before {
183
+ content: "\e030";
184
+ }
185
+ .icon-pin:before {
186
+ content: "\e031";
187
+ }
188
+ .icon-picture:before {
189
+ content: "\e032";
190
+ }
191
+ .icon-map:before {
192
+ content: "\e033";
193
+ }
194
+ .icon-layers:before {
195
+ content: "\e034";
196
+ }
197
+ .icon-handbag:before {
198
+ content: "\e035";
199
+ }
200
+ .icon-globe-alt:before {
201
+ content: "\e036";
202
+ }
203
+ .icon-globe:before {
204
+ content: "\e037";
205
+ }
206
+ .icon-frame:before {
207
+ content: "\e038";
208
+ }
209
+ .icon-folder-alt:before {
210
+ content: "\e039";
211
+ }
212
+ .icon-film:before {
213
+ content: "\e03a";
214
+ }
215
+ .icon-feed:before {
216
+ content: "\e03b";
217
+ }
218
+ .icon-earphones-alt:before {
219
+ content: "\e03c";
220
+ }
221
+ .icon-earphones:before {
222
+ content: "\e03d";
223
+ }
224
+ .icon-drop:before {
225
+ content: "\e03e";
226
+ }
227
+ .icon-drawer:before {
228
+ content: "\e03f";
229
+ }
230
+ .icon-docs:before {
231
+ content: "\e040";
232
+ }
233
+ .icon-directions:before {
234
+ content: "\e041";
235
+ }
236
+ .icon-direction:before {
237
+ content: "\e042";
238
+ }
239
+ .icon-diamond:before {
240
+ content: "\e043";
241
+ }
242
+ .icon-cup:before {
243
+ content: "\e044";
244
+ }
245
+ .icon-compass:before {
246
+ content: "\e045";
247
+ }
248
+ .icon-call-out:before {
249
+ content: "\e046";
250
+ }
251
+ .icon-call-in:before {
252
+ content: "\e047";
253
+ }
254
+ .icon-call-end:before {
255
+ content: "\e048";
256
+ }
257
+ .icon-calculator:before {
258
+ content: "\e049";
259
+ }
260
+ .icon-bubbles:before {
261
+ content: "\e04a";
262
+ }
263
+ .icon-briefcase:before {
264
+ content: "\e04b";
265
+ }
266
+ .icon-book-open:before {
267
+ content: "\e04c";
268
+ }
269
+ .icon-basket-loaded:before {
270
+ content: "\e04d";
271
+ }
272
+ .icon-basket:before {
273
+ content: "\e04e";
274
+ }
275
+ .icon-bag:before {
276
+ content: "\e04f";
277
+ }
278
+ .icon-action-undo:before {
279
+ content: "\e050";
280
+ }
281
+ .icon-action-redo:before {
282
+ content: "\e051";
283
+ }
284
+ .icon-wrench:before {
285
+ content: "\e052";
286
+ }
287
+ .icon-umbrella:before {
288
+ content: "\e053";
289
+ }
290
+ .icon-trash:before {
291
+ content: "\e054";
292
+ }
293
+ .icon-tag:before {
294
+ content: "\e055";
295
+ }
296
+ .icon-support:before {
297
+ content: "\e056";
298
+ }
299
+ .icon-size-fullscreen:before {
300
+ content: "\e057";
301
+ }
302
+ .icon-size-actual:before {
303
+ content: "\e058";
304
+ }
305
+ .icon-shuffle:before {
306
+ content: "\e059";
307
+ }
308
+ .icon-share-alt:before {
309
+ content: "\e05a";
310
+ }
311
+ .icon-share:before {
312
+ content: "\e05b";
313
+ }
314
+ .icon-rocket:before {
315
+ content: "\e05c";
316
+ }
317
+ .icon-question:before {
318
+ content: "\e05d";
319
+ }
320
+ .icon-pie-chart:before {
321
+ content: "\e05e";
322
+ }
323
+ .icon-pencil:before {
324
+ content: "\e05f";
325
+ }
326
+ .icon-note:before {
327
+ content: "\e060";
328
+ }
329
+ .icon-music-tone-alt:before {
330
+ content: "\e061";
331
+ }
332
+ .icon-music-tone:before {
333
+ content: "\e062";
334
+ }
335
+ .icon-microphone:before {
336
+ content: "\e063";
337
+ }
338
+ .icon-loop:before {
339
+ content: "\e064";
340
+ }
341
+ .icon-logout:before {
342
+ content: "\e065";
343
+ }
344
+ .icon-login:before {
345
+ content: "\e066";
346
+ }
347
+ .icon-list:before {
348
+ content: "\e067";
349
+ }
350
+ .icon-like:before {
351
+ content: "\e068";
352
+ }
353
+ .icon-home:before {
354
+ content: "\e069";
355
+ }
356
+ .icon-grid:before {
357
+ content: "\e06a";
358
+ }
359
+ .icon-graph:before {
360
+ content: "\e06b";
361
+ }
362
+ .icon-equalizer:before {
363
+ content: "\e06c";
364
+ }
365
+ .icon-dislike:before {
366
+ content: "\e06d";
367
+ }
368
+ .icon-cursor:before {
369
+ content: "\e06e";
370
+ }
371
+ .icon-control-start:before {
372
+ content: "\e06f";
373
+ }
374
+ .icon-control-rewind:before {
375
+ content: "\e070";
376
+ }
377
+ .icon-control-play:before {
378
+ content: "\e071";
379
+ }
380
+ .icon-control-pause:before {
381
+ content: "\e072";
382
+ }
383
+ .icon-control-forward:before {
384
+ content: "\e073";
385
+ }
386
+ .icon-control-end:before {
387
+ content: "\e074";
388
+ }
389
+ .icon-calendar:before {
390
+ content: "\e075";
391
+ }
392
+ .icon-bulb:before {
393
+ content: "\e076";
394
+ }
395
+ .icon-bar-chart:before {
396
+ content: "\e077";
397
+ }
398
+ .icon-arrow-up:before {
399
+ content: "\e078";
400
+ }
401
+ .icon-arrow-right:before {
402
+ content: "\e079";
403
+ }
404
+ .icon-arrow-left:before {
405
+ content: "\e07a";
406
+ }
407
+ .icon-arrow-down:before {
408
+ content: "\e07b";
409
+ }
410
+ .icon-ban:before {
411
+ content: "\e07c";
412
+ }
413
+ .icon-bubble:before {
414
+ content: "\e07d";
415
+ }
416
+ .icon-camcorder:before {
417
+ content: "\e07e";
418
+ }
419
+ .icon-camera:before {
420
+ content: "\e07f";
421
+ }
422
+ .icon-check:before {
423
+ content: "\e080";
424
+ }
425
+ .icon-clock:before {
426
+ content: "\e081";
427
+ }
428
+ .icon-close:before {
429
+ content: "\e082";
430
+ }
431
+ .icon-cloud-download:before {
432
+ content: "\e083";
433
+ }
434
+ .icon-cloud-upload:before {
435
+ content: "\e084";
436
+ }
437
+ .icon-doc:before {
438
+ content: "\e085";
439
+ }
440
+ .icon-envelope:before {
441
+ content: "\e086";
442
+ }
443
+ .icon-eye:before {
444
+ content: "\e087";
445
+ }
446
+ .icon-flag:before {
447
+ content: "\e088";
448
+ }
449
+ .icon-folder:before {
450
+ content: "\e089";
451
+ }
452
+ .icon-heart:before {
453
+ content: "\e08a";
454
+ }
455
+ .icon-info:before {
456
+ content: "\e08b";
457
+ }
458
+ .icon-key:before {
459
+ content: "\e08c";
460
+ }
461
+ .icon-link:before {
462
+ content: "\e08d";
463
+ }
464
+ .icon-lock:before {
465
+ content: "\e08e";
466
+ }
467
+ .icon-lock-open:before {
468
+ content: "\e08f";
469
+ }
470
+ .icon-magnifier:before {
471
+ content: "\e090";
472
+ }
473
+ .icon-magnifier-add:before {
474
+ content: "\e091";
475
+ }
476
+ .icon-magnifier-remove:before {
477
+ content: "\e092";
478
+ }
479
+ .icon-paper-clip:before {
480
+ content: "\e093";
481
+ }
482
+ .icon-paper-plane:before {
483
+ content: "\e094";
484
+ }
485
+ .icon-plus:before {
486
+ content: "\e095";
487
+ }
488
+ .icon-pointer:before {
489
+ content: "\e096";
490
+ }
491
+ .icon-power:before {
492
+ content: "\e097";
493
+ }
494
+ .icon-refresh:before {
495
+ content: "\e098";
496
+ }
497
+ .icon-reload:before {
498
+ content: "\e099";
499
+ }
500
+ .icon-settings:before {
501
+ content: "\e09a";
502
+ }
503
+ .icon-star:before {
504
+ content: "\e09b";
505
+ }
506
+ .icon-symbol-female:before {
507
+ content: "\e09c";
508
+ }
509
+ .icon-symbol-male:before {
510
+ content: "\e09d";
511
+ }
512
+ .icon-target:before {
513
+ content: "\e09e";
514
+ }
515
+ .icon-volume-1:before {
516
+ content: "\e09f";
517
+ }
518
+ .icon-volume-2:before {
519
+ content: "\e0a0";
520
+ }
521
+ .icon-volume-off:before {
522
+ content: "\e0a1";
523
+ }
524
+ .icon-users:before {
525
+ content: "\e001";
526
+ }