locomotivecms_builder 1.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. data/.gitignore +31 -0
  2. data/Gemfile +8 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +68 -0
  5. data/Rakefile +47 -0
  6. data/TODO +57 -0
  7. data/bin/builder +9 -0
  8. data/generators/blank/Gemfile.tt +20 -0
  9. data/generators/blank/app/content_types/.empty_directory +1 -0
  10. data/generators/blank/app/views/pages/404.liquid +11 -0
  11. data/generators/blank/app/views/pages/index.liquid +19 -0
  12. data/generators/blank/app/views/snippets/.empty_directory +1 -0
  13. data/generators/blank/config/deploy.yml +12 -0
  14. data/generators/blank/config/site.yml.tt +16 -0
  15. data/generators/blank/config/translations.yml +8 -0
  16. data/generators/blank/config.ru +3 -0
  17. data/generators/blank/data/.empty_directory +1 -0
  18. data/generators/blank/public/fonts/.empty_directory +1 -0
  19. data/generators/blank/public/images/.empty_directory +1 -0
  20. data/generators/blank/public/javascripts/.empty_directory +1 -0
  21. data/generators/blank/public/samples/.empty_directory +1 -0
  22. data/generators/blank/public/stylesheets/.empty_directory +1 -0
  23. data/generators/bootstrap/Gemfile.tt +20 -0
  24. data/generators/bootstrap/app/content_types/.empty_directory +1 -0
  25. data/generators/bootstrap/app/views/pages/404.liquid +13 -0
  26. data/generators/bootstrap/app/views/pages/404.liquid.haml +10 -0
  27. data/generators/bootstrap/app/views/pages/index.liquid +85 -0
  28. data/generators/bootstrap/app/views/pages/index.liquid.haml +72 -0
  29. data/generators/bootstrap/app/views/snippets/footer.liquid +3 -0
  30. data/generators/bootstrap/app/views/snippets/footer.liquid.haml +2 -0
  31. data/generators/bootstrap/config/deploy.yml +12 -0
  32. data/generators/bootstrap/config/site.yml.tt +16 -0
  33. data/generators/bootstrap/config/translations.yml +8 -0
  34. data/generators/bootstrap/config.ru +3 -0
  35. data/generators/bootstrap/data/.empty_directory +1 -0
  36. data/generators/bootstrap/public/fonts/FontAwesome.otf +0 -0
  37. data/generators/bootstrap/public/fonts/font-awesome-ie7.min.css +23 -0
  38. data/generators/bootstrap/public/fonts/font-awesome.css +469 -0
  39. data/generators/bootstrap/public/fonts/font-awesome.min.css +34 -0
  40. data/generators/bootstrap/public/fonts/fontawesome-webfont.eot +0 -0
  41. data/generators/bootstrap/public/fonts/fontawesome-webfont.ttf +0 -0
  42. data/generators/bootstrap/public/fonts/fontawesome-webfont.woff +0 -0
  43. data/generators/bootstrap/public/javascripts/bootstrap.js +2159 -0
  44. data/generators/bootstrap/public/javascripts/bootstrap.min.js +6 -0
  45. data/generators/bootstrap/public/samples/.empty_directory +1 -0
  46. data/generators/bootstrap/public/stylesheets/application.css.scss +39 -0
  47. data/generators/bootstrap/public/stylesheets/bootstrap-responsive.css +1092 -0
  48. data/generators/bootstrap/public/stylesheets/bootstrap-responsive.min.css +9 -0
  49. data/generators/bootstrap/public/stylesheets/bootstrap.css +5652 -0
  50. data/generators/bootstrap/public/stylesheets/bootstrap.min.css +726 -0
  51. data/generators/content_type/app/content_types/%name%.yml.tt +58 -0
  52. data/generators/content_type/data/%name%.yml.tt +24 -0
  53. data/generators/page/template.liquid.haml.tt +35 -0
  54. data/generators/page/template.liquid.tt +1 -0
  55. data/generators/snippet/template.liquid.haml.tt +4 -0
  56. data/generators/snippet/template.liquid.tt +4 -0
  57. data/lib/locomotive/builder/cli.rb +225 -0
  58. data/lib/locomotive/builder/exceptions.rb +17 -0
  59. data/lib/locomotive/builder/generators/content_type.rb +47 -0
  60. data/lib/locomotive/builder/generators/page.rb +57 -0
  61. data/lib/locomotive/builder/generators/site/base.rb +30 -0
  62. data/lib/locomotive/builder/generators/site/blank.rb +23 -0
  63. data/lib/locomotive/builder/generators/site/bootstrap.rb +35 -0
  64. data/lib/locomotive/builder/generators/site.rb +97 -0
  65. data/lib/locomotive/builder/generators/snippet.rb +54 -0
  66. data/lib/locomotive/builder/liquid/drops/base.rb +44 -0
  67. data/lib/locomotive/builder/liquid/drops/content_entry.rb +48 -0
  68. data/lib/locomotive/builder/liquid/drops/content_types.rb +121 -0
  69. data/lib/locomotive/builder/liquid/drops/page.rb +36 -0
  70. data/lib/locomotive/builder/liquid/drops/site.rb +21 -0
  71. data/lib/locomotive/builder/liquid/errors.rb +7 -0
  72. data/lib/locomotive/builder/liquid/filters/date.rb +98 -0
  73. data/lib/locomotive/builder/liquid/filters/html.rb +154 -0
  74. data/lib/locomotive/builder/liquid/filters/misc.rb +28 -0
  75. data/lib/locomotive/builder/liquid/filters/resize.rb +18 -0
  76. data/lib/locomotive/builder/liquid/filters/text.rb +50 -0
  77. data/lib/locomotive/builder/liquid/filters/translate.rb +24 -0
  78. data/lib/locomotive/builder/liquid/patches.rb +47 -0
  79. data/lib/locomotive/builder/liquid/tags/consume.rb +58 -0
  80. data/lib/locomotive/builder/liquid/tags/csrf.rb +34 -0
  81. data/lib/locomotive/builder/liquid/tags/editable/base.rb +46 -0
  82. data/lib/locomotive/builder/liquid/tags/editable/control.rb +19 -0
  83. data/lib/locomotive/builder/liquid/tags/editable/file.rb +15 -0
  84. data/lib/locomotive/builder/liquid/tags/editable/long_text.rb +15 -0
  85. data/lib/locomotive/builder/liquid/tags/editable/short_text.rb +15 -0
  86. data/lib/locomotive/builder/liquid/tags/editable.rb +5 -0
  87. data/lib/locomotive/builder/liquid/tags/extends.rb +25 -0
  88. data/lib/locomotive/builder/liquid/tags/google_analytics.rb +28 -0
  89. data/lib/locomotive/builder/liquid/tags/inline_editor.rb +16 -0
  90. data/lib/locomotive/builder/liquid/tags/locale_switcher.rb +180 -0
  91. data/lib/locomotive/builder/liquid/tags/nav.rb +167 -0
  92. data/lib/locomotive/builder/liquid/tags/paginate.rb +105 -0
  93. data/lib/locomotive/builder/liquid/tags/seo.rb +74 -0
  94. data/lib/locomotive/builder/liquid/tags/snippet.rb +42 -0
  95. data/lib/locomotive/builder/liquid/tags/with_scope.rb +43 -0
  96. data/lib/locomotive/builder/liquid.rb +19 -0
  97. data/lib/locomotive/builder/listen.rb +48 -0
  98. data/lib/locomotive/builder/misc/core_ext.rb +29 -0
  99. data/lib/locomotive/builder/misc/dragonfly.rb +82 -0
  100. data/lib/locomotive/builder/misc/httparty.rb +47 -0
  101. data/lib/locomotive/builder/misc/i18n.rb +2 -0
  102. data/lib/locomotive/builder/misc/will_paginate.rb +16 -0
  103. data/lib/locomotive/builder/misc.rb +5 -0
  104. data/lib/locomotive/builder/server/dynamic_assets.rb +31 -0
  105. data/lib/locomotive/builder/server/entry_submission.rb +116 -0
  106. data/lib/locomotive/builder/server/favicon.rb +17 -0
  107. data/lib/locomotive/builder/server/locale.rb +42 -0
  108. data/lib/locomotive/builder/server/middleware.rb +54 -0
  109. data/lib/locomotive/builder/server/not_found.rb +18 -0
  110. data/lib/locomotive/builder/server/page.rb +59 -0
  111. data/lib/locomotive/builder/server/path.rb +34 -0
  112. data/lib/locomotive/builder/server/renderer.rb +105 -0
  113. data/lib/locomotive/builder/server/templatized_page.rb +32 -0
  114. data/lib/locomotive/builder/server.rb +78 -0
  115. data/lib/locomotive/builder/standalone_server.rb +33 -0
  116. data/lib/locomotive/builder/version.rb +5 -0
  117. data/lib/locomotive/builder.rb +167 -0
  118. data/locales/de.yml +143 -0
  119. data/locales/en.yml +164 -0
  120. data/locales/es.yml +119 -0
  121. data/locales/et.yml +140 -0
  122. data/locales/fr.yml +133 -0
  123. data/locales/it.yml +141 -0
  124. data/locales/nb.yml +177 -0
  125. data/locales/nl.yml +148 -0
  126. data/locales/pl.yml +189 -0
  127. data/locales/pt-BR.yml +125 -0
  128. data/locales/ru.yml +210 -0
  129. data/locomotivecms_builder.gemspec +42 -0
  130. data/spec/integration/cassettes/pull.yml +590 -0
  131. data/spec/integration/cassettes/push.yml +775 -0
  132. data/spec/integration/integration_helper.rb +15 -0
  133. data/spec/integration/server_spec.rb +37 -0
  134. data/spec/integration/sites_spec.rb +27 -0
  135. data/spec/spec_helper.rb +12 -0
  136. data/spec/support/helpers.rb +13 -0
  137. metadata +468 -0
@@ -0,0 +1,23 @@
1
+ /* Font Awesome 3.0
2
+ the iconic font designed for use with Twitter Bootstrap
3
+ -------------------------------------------------------
4
+ The full suite of pictographic icons, examples, and documentation
5
+ can be found at: http://fortawesome.github.com/Font-Awesome/
6
+
7
+ License
8
+ -------------------------------------------------------
9
+ • The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
10
+ • Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
11
+ http://opensource.org/licenses/mit-license.html
12
+ • The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
13
+ • Attribution is no longer required in Font Awesome 3.0, but much appreciated:
14
+ "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
15
+
16
+ Contact
17
+ -------------------------------------------------------
18
+ Email: dave@davegandy.com
19
+ Twitter: http://twitter.com/fortaweso_me
20
+ Work: Lead Product Designer @ http://kyruus.com
21
+
22
+ */
23
+ [class^="icon-"],[class*=" icon-"]{padding-right:.3em}.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:-20%}.btn [class^="icon-"],.nav [class^="icon-"],.btn [class*=" icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;line-height:.9em}a [class^="icon-"],a [class*=" icon-"]{cursor:pointer}ul.icons{text-indent:-1.5em;margin-left:3em}.icon-glass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-music{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-search{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-film{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-large{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-in{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-out{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cog{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-home{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-time{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-road{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-inbox{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-repeat{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-refresh{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-flag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-headphones{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-qrcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-barcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tags{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-book{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-print{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-font{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-italic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-height{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-width{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-center{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-justify{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facetime-video{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-picture{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pencil{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-map-marker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-adjust{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tint{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-edit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-move{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pause{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eject{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-question-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-info-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-screenshot{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ban-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-full{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-asterisk{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exclamation-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-gift{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-leaf{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fire{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-warning-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plane{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-calendar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-random{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magnet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-retweet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-shopping-cart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-vertical{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-horizontal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bar-chart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera-retro{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-key{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cogs{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-half{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signout{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pushpin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-external-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trophy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lemon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-unlock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-credit-card{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-rss{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hdd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bullhorn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-certificate{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-globe{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-wrench{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tasks{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-filter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-briefcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fullscreen{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-group{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beaker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cut{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-copy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paper-clip{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-save{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sign-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reorder{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ul{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ol{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-strikethrough{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-underline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-table{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-truck{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-money{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-columns{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-undo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-legal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-dashboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bolt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sitemap{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-umbrella{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paste{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lightbulb{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exchange{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user-md{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stethoscope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-suitcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-coffee{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-food{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-building{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hospital{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ambulance{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-medkit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fighter-jet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-h-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-desktop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-laptop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tablet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-mobile-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-spinner{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reply{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}
@@ -0,0 +1,469 @@
1
+ /* Font Awesome 3.0
2
+ the iconic font designed for use with Twitter Bootstrap
3
+ -------------------------------------------------------
4
+ The full suite of pictographic icons, examples, and documentation
5
+ can be found at: http://fortawesome.github.com/Font-Awesome/
6
+
7
+ License
8
+ -------------------------------------------------------
9
+ • The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
10
+ • Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
11
+ http://opensource.org/licenses/mit-license.html
12
+ • The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
13
+ • Attribution is no longer required in Font Awesome 3.0, but much appreciated:
14
+ "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
15
+
16
+ Contact
17
+ -------------------------------------------------------
18
+ Email: dave@davegandy.com
19
+ Twitter: http://twitter.com/fortaweso_me
20
+ Work: Lead Product Designer @ http://kyruus.com
21
+
22
+ */
23
+ @font-face {
24
+ font-family: 'FontAwesome';
25
+ src: url('fontawesome-webfont.eot');
26
+ src: url('fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
27
+ url('fontawesome-webfont.woff') format('woff'),
28
+ url('fontawesome-webfont.ttf') format('truetype');
29
+ font-weight: normal;
30
+ font-style: normal;
31
+ }
32
+ /* Font Awesome styles
33
+ ------------------------------------------------------- */
34
+ /* includes sprites.less reset */
35
+ [class^="icon-"],
36
+ [class*=" icon-"] {
37
+ font-family: FontAwesome;
38
+ font-weight: normal;
39
+ font-style: normal;
40
+ text-decoration: inherit;
41
+ display: inline;
42
+ width: auto;
43
+ height: auto;
44
+ line-height: normal;
45
+ vertical-align: baseline;
46
+ background-image: none !important;
47
+ background-position: 0% 0%;
48
+ background-repeat: repeat;
49
+ }
50
+ [class^="icon-"]:before,
51
+ [class*=" icon-"]:before {
52
+ text-decoration: inherit;
53
+ display: inline-block;
54
+ speak: none;
55
+ }
56
+ /* makes sure icons active on rollover in links */
57
+ a [class^="icon-"],
58
+ a [class*=" icon-"] {
59
+ display: inline-block;
60
+ }
61
+ /* makes the font 33% larger relative to the icon container */
62
+ .icon-large:before {
63
+ vertical-align: -10%;
64
+ font-size: 1.3333333333333333em;
65
+ }
66
+ .btn [class^="icon-"],
67
+ .nav [class^="icon-"],
68
+ .btn [class*=" icon-"],
69
+ .nav [class*=" icon-"] {
70
+ display: inline;
71
+ /* keeps button heights with and without icons the same */
72
+
73
+ line-height: .6em;
74
+ }
75
+ .btn [class^="icon-"].icon-spin,
76
+ .nav [class^="icon-"].icon-spin,
77
+ .btn [class*=" icon-"].icon-spin,
78
+ .nav [class*=" icon-"].icon-spin {
79
+ display: inline-block;
80
+ }
81
+ li [class^="icon-"],
82
+ li [class*=" icon-"] {
83
+ display: inline-block;
84
+ width: 1.25em;
85
+ text-align: center;
86
+ }
87
+ li [class^="icon-"].icon-large,
88
+ li [class*=" icon-"].icon-large {
89
+ /* increased font size for icon-large */
90
+
91
+ width: 1.5625em;
92
+ }
93
+ ul.icons {
94
+ list-style-type: none;
95
+ text-indent: -0.75em;
96
+ }
97
+ ul.icons li [class^="icon-"],
98
+ ul.icons li [class*=" icon-"] {
99
+ width: .75em;
100
+ }
101
+ .icon-muted {
102
+ color: #eeeeee;
103
+ }
104
+ .icon-border {
105
+ border: solid 1px #eeeeee;
106
+ padding: .2em .25em .15em;
107
+ -webkit-border-radius: 3px;
108
+ -moz-border-radius: 3px;
109
+ border-radius: 3px;
110
+ }
111
+ .icon-2x {
112
+ font-size: 2em;
113
+ }
114
+ .icon-2x.icon-border {
115
+ border-width: 2px;
116
+ -webkit-border-radius: 4px;
117
+ -moz-border-radius: 4px;
118
+ border-radius: 4px;
119
+ }
120
+ .icon-3x {
121
+ font-size: 3em;
122
+ }
123
+ .icon-3x.icon-border {
124
+ border-width: 3px;
125
+ -webkit-border-radius: 5px;
126
+ -moz-border-radius: 5px;
127
+ border-radius: 5px;
128
+ }
129
+ .icon-4x {
130
+ font-size: 4em;
131
+ }
132
+ .icon-4x.icon-border {
133
+ border-width: 4px;
134
+ -webkit-border-radius: 6px;
135
+ -moz-border-radius: 6px;
136
+ border-radius: 6px;
137
+ }
138
+ .pull-right {
139
+ float: right;
140
+ }
141
+ .pull-left {
142
+ float: left;
143
+ }
144
+ [class^="icon-"].pull-left,
145
+ [class*=" icon-"].pull-left {
146
+ margin-right: .35em;
147
+ }
148
+ [class^="icon-"].pull-right,
149
+ [class*=" icon-"].pull-right {
150
+ margin-left: .35em;
151
+ }
152
+ .btn [class^="icon-"].pull-left.icon-2x,
153
+ .btn [class*=" icon-"].pull-left.icon-2x,
154
+ .btn [class^="icon-"].pull-right.icon-2x,
155
+ .btn [class*=" icon-"].pull-right.icon-2x {
156
+ margin-top: .35em;
157
+ }
158
+ .btn [class^="icon-"].icon-spin.icon-large,
159
+ .btn [class*=" icon-"].icon-spin.icon-large {
160
+ height: .75em;
161
+ }
162
+ .btn.btn-small [class^="icon-"].pull-left.icon-2x,
163
+ .btn.btn-small [class*=" icon-"].pull-left.icon-2x,
164
+ .btn.btn-small [class^="icon-"].pull-right.icon-2x,
165
+ .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
166
+ margin-top: .45em;
167
+ }
168
+ .btn.btn-large [class^="icon-"].pull-left.icon-2x,
169
+ .btn.btn-large [class*=" icon-"].pull-left.icon-2x,
170
+ .btn.btn-large [class^="icon-"].pull-right.icon-2x,
171
+ .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
172
+ margin-top: .2em;
173
+ }
174
+ .icon-spin {
175
+ display: inline-block;
176
+ -moz-animation: spin 2s infinite linear;
177
+ -o-animation: spin 2s infinite linear;
178
+ -webkit-animation: spin 2s infinite linear;
179
+ animation: spin 2s infinite linear;
180
+ }
181
+ @-moz-keyframes spin {
182
+ 0% { -moz-transform: rotate(0deg); }
183
+ 100% { -moz-transform: rotate(359deg); }
184
+ }
185
+ @-webkit-keyframes spin {
186
+ 0% { -webkit-transform: rotate(0deg); }
187
+ 100% { -webkit-transform: rotate(359deg); }
188
+ }
189
+ @-o-keyframes spin {
190
+ 0% { -o-transform: rotate(0deg); }
191
+ 100% { -o-transform: rotate(359deg); }
192
+ }
193
+ @-ms-keyframes spin {
194
+ 0% { -ms-transform: rotate(0deg); }
195
+ 100% { -ms-transform: rotate(359deg); }
196
+ }
197
+ @keyframes spin {
198
+ 0% { transform: rotate(0deg); }
199
+ 100% { transform: rotate(359deg); }
200
+ }
201
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
202
+ readers do not read off random characters that represent icons */
203
+ .icon-glass:before { content: "\f000"; }
204
+ .icon-music:before { content: "\f001"; }
205
+ .icon-search:before { content: "\f002"; }
206
+ .icon-envelope:before { content: "\f003"; }
207
+ .icon-heart:before { content: "\f004"; }
208
+ .icon-star:before { content: "\f005"; }
209
+ .icon-star-empty:before { content: "\f006"; }
210
+ .icon-user:before { content: "\f007"; }
211
+ .icon-film:before { content: "\f008"; }
212
+ .icon-th-large:before { content: "\f009"; }
213
+ .icon-th:before { content: "\f00a"; }
214
+ .icon-th-list:before { content: "\f00b"; }
215
+ .icon-ok:before { content: "\f00c"; }
216
+ .icon-remove:before { content: "\f00d"; }
217
+ .icon-zoom-in:before { content: "\f00e"; }
218
+
219
+ .icon-zoom-out:before { content: "\f010"; }
220
+ .icon-off:before { content: "\f011"; }
221
+ .icon-signal:before { content: "\f012"; }
222
+ .icon-cog:before { content: "\f013"; }
223
+ .icon-trash:before { content: "\f014"; }
224
+ .icon-home:before { content: "\f015"; }
225
+ .icon-file:before { content: "\f016"; }
226
+ .icon-time:before { content: "\f017"; }
227
+ .icon-road:before { content: "\f018"; }
228
+ .icon-download-alt:before { content: "\f019"; }
229
+ .icon-download:before { content: "\f01a"; }
230
+ .icon-upload:before { content: "\f01b"; }
231
+ .icon-inbox:before { content: "\f01c"; }
232
+ .icon-play-circle:before { content: "\f01d"; }
233
+ .icon-repeat:before { content: "\f01e"; }
234
+
235
+ /* \f020 doesn't work in Safari. all shifted one down */
236
+ .icon-refresh:before { content: "\f021"; }
237
+ .icon-list-alt:before { content: "\f022"; }
238
+ .icon-lock:before { content: "\f023"; }
239
+ .icon-flag:before { content: "\f024"; }
240
+ .icon-headphones:before { content: "\f025"; }
241
+ .icon-volume-off:before { content: "\f026"; }
242
+ .icon-volume-down:before { content: "\f027"; }
243
+ .icon-volume-up:before { content: "\f028"; }
244
+ .icon-qrcode:before { content: "\f029"; }
245
+ .icon-barcode:before { content: "\f02a"; }
246
+ .icon-tag:before { content: "\f02b"; }
247
+ .icon-tags:before { content: "\f02c"; }
248
+ .icon-book:before { content: "\f02d"; }
249
+ .icon-bookmark:before { content: "\f02e"; }
250
+ .icon-print:before { content: "\f02f"; }
251
+
252
+ .icon-camera:before { content: "\f030"; }
253
+ .icon-font:before { content: "\f031"; }
254
+ .icon-bold:before { content: "\f032"; }
255
+ .icon-italic:before { content: "\f033"; }
256
+ .icon-text-height:before { content: "\f034"; }
257
+ .icon-text-width:before { content: "\f035"; }
258
+ .icon-align-left:before { content: "\f036"; }
259
+ .icon-align-center:before { content: "\f037"; }
260
+ .icon-align-right:before { content: "\f038"; }
261
+ .icon-align-justify:before { content: "\f039"; }
262
+ .icon-list:before { content: "\f03a"; }
263
+ .icon-indent-left:before { content: "\f03b"; }
264
+ .icon-indent-right:before { content: "\f03c"; }
265
+ .icon-facetime-video:before { content: "\f03d"; }
266
+ .icon-picture:before { content: "\f03e"; }
267
+
268
+ .icon-pencil:before { content: "\f040"; }
269
+ .icon-map-marker:before { content: "\f041"; }
270
+ .icon-adjust:before { content: "\f042"; }
271
+ .icon-tint:before { content: "\f043"; }
272
+ .icon-edit:before { content: "\f044"; }
273
+ .icon-share:before { content: "\f045"; }
274
+ .icon-check:before { content: "\f046"; }
275
+ .icon-move:before { content: "\f047"; }
276
+ .icon-step-backward:before { content: "\f048"; }
277
+ .icon-fast-backward:before { content: "\f049"; }
278
+ .icon-backward:before { content: "\f04a"; }
279
+ .icon-play:before { content: "\f04b"; }
280
+ .icon-pause:before { content: "\f04c"; }
281
+ .icon-stop:before { content: "\f04d"; }
282
+ .icon-forward:before { content: "\f04e"; }
283
+
284
+ .icon-fast-forward:before { content: "\f050"; }
285
+ .icon-step-forward:before { content: "\f051"; }
286
+ .icon-eject:before { content: "\f052"; }
287
+ .icon-chevron-left:before { content: "\f053"; }
288
+ .icon-chevron-right:before { content: "\f054"; }
289
+ .icon-plus-sign:before { content: "\f055"; }
290
+ .icon-minus-sign:before { content: "\f056"; }
291
+ .icon-remove-sign:before { content: "\f057"; }
292
+ .icon-ok-sign:before { content: "\f058"; }
293
+ .icon-question-sign:before { content: "\f059"; }
294
+ .icon-info-sign:before { content: "\f05a"; }
295
+ .icon-screenshot:before { content: "\f05b"; }
296
+ .icon-remove-circle:before { content: "\f05c"; }
297
+ .icon-ok-circle:before { content: "\f05d"; }
298
+ .icon-ban-circle:before { content: "\f05e"; }
299
+
300
+ .icon-arrow-left:before { content: "\f060"; }
301
+ .icon-arrow-right:before { content: "\f061"; }
302
+ .icon-arrow-up:before { content: "\f062"; }
303
+ .icon-arrow-down:before { content: "\f063"; }
304
+ .icon-share-alt:before { content: "\f064"; }
305
+ .icon-resize-full:before { content: "\f065"; }
306
+ .icon-resize-small:before { content: "\f066"; }
307
+ .icon-plus:before { content: "\f067"; }
308
+ .icon-minus:before { content: "\f068"; }
309
+ .icon-asterisk:before { content: "\f069"; }
310
+ .icon-exclamation-sign:before { content: "\f06a"; }
311
+ .icon-gift:before { content: "\f06b"; }
312
+ .icon-leaf:before { content: "\f06c"; }
313
+ .icon-fire:before { content: "\f06d"; }
314
+ .icon-eye-open:before { content: "\f06e"; }
315
+
316
+ .icon-eye-close:before { content: "\f070"; }
317
+ .icon-warning-sign:before { content: "\f071"; }
318
+ .icon-plane:before { content: "\f072"; }
319
+ .icon-calendar:before { content: "\f073"; }
320
+ .icon-random:before { content: "\f074"; }
321
+ .icon-comment:before { content: "\f075"; }
322
+ .icon-magnet:before { content: "\f076"; }
323
+ .icon-chevron-up:before { content: "\f077"; }
324
+ .icon-chevron-down:before { content: "\f078"; }
325
+ .icon-retweet:before { content: "\f079"; }
326
+ .icon-shopping-cart:before { content: "\f07a"; }
327
+ .icon-folder-close:before { content: "\f07b"; }
328
+ .icon-folder-open:before { content: "\f07c"; }
329
+ .icon-resize-vertical:before { content: "\f07d"; }
330
+ .icon-resize-horizontal:before { content: "\f07e"; }
331
+
332
+ .icon-bar-chart:before { content: "\f080"; }
333
+ .icon-twitter-sign:before { content: "\f081"; }
334
+ .icon-facebook-sign:before { content: "\f082"; }
335
+ .icon-camera-retro:before { content: "\f083"; }
336
+ .icon-key:before { content: "\f084"; }
337
+ .icon-cogs:before { content: "\f085"; }
338
+ .icon-comments:before { content: "\f086"; }
339
+ .icon-thumbs-up:before { content: "\f087"; }
340
+ .icon-thumbs-down:before { content: "\f088"; }
341
+ .icon-star-half:before { content: "\f089"; }
342
+ .icon-heart-empty:before { content: "\f08a"; }
343
+ .icon-signout:before { content: "\f08b"; }
344
+ .icon-linkedin-sign:before { content: "\f08c"; }
345
+ .icon-pushpin:before { content: "\f08d"; }
346
+ .icon-external-link:before { content: "\f08e"; }
347
+
348
+ .icon-signin:before { content: "\f090"; }
349
+ .icon-trophy:before { content: "\f091"; }
350
+ .icon-github-sign:before { content: "\f092"; }
351
+ .icon-upload-alt:before { content: "\f093"; }
352
+ .icon-lemon:before { content: "\f094"; }
353
+ .icon-phone:before { content: "\f095"; }
354
+ .icon-check-empty:before { content: "\f096"; }
355
+ .icon-bookmark-empty:before { content: "\f097"; }
356
+ .icon-phone-sign:before { content: "\f098"; }
357
+ .icon-twitter:before { content: "\f099"; }
358
+ .icon-facebook:before { content: "\f09a"; }
359
+ .icon-github:before { content: "\f09b"; }
360
+ .icon-unlock:before { content: "\f09c"; }
361
+ .icon-credit-card:before { content: "\f09d"; }
362
+ .icon-rss:before { content: "\f09e"; }
363
+
364
+ .icon-hdd:before { content: "\f0a0"; }
365
+ .icon-bullhorn:before { content: "\f0a1"; }
366
+ .icon-bell:before { content: "\f0a2"; }
367
+ .icon-certificate:before { content: "\f0a3"; }
368
+ .icon-hand-right:before { content: "\f0a4"; }
369
+ .icon-hand-left:before { content: "\f0a5"; }
370
+ .icon-hand-up:before { content: "\f0a6"; }
371
+ .icon-hand-down:before { content: "\f0a7"; }
372
+ .icon-circle-arrow-left:before { content: "\f0a8"; }
373
+ .icon-circle-arrow-right:before { content: "\f0a9"; }
374
+ .icon-circle-arrow-up:before { content: "\f0aa"; }
375
+ .icon-circle-arrow-down:before { content: "\f0ab"; }
376
+ .icon-globe:before { content: "\f0ac"; }
377
+ .icon-wrench:before { content: "\f0ad"; }
378
+ .icon-tasks:before { content: "\f0ae"; }
379
+
380
+ .icon-filter:before { content: "\f0b0"; }
381
+ .icon-briefcase:before { content: "\f0b1"; }
382
+ .icon-fullscreen:before { content: "\f0b2"; }
383
+
384
+ .icon-group:before { content: "\f0c0"; }
385
+ .icon-link:before { content: "\f0c1"; }
386
+ .icon-cloud:before { content: "\f0c2"; }
387
+ .icon-beaker:before { content: "\f0c3"; }
388
+ .icon-cut:before { content: "\f0c4"; }
389
+ .icon-copy:before { content: "\f0c5"; }
390
+ .icon-paper-clip:before { content: "\f0c6"; }
391
+ .icon-save:before { content: "\f0c7"; }
392
+ .icon-sign-blank:before { content: "\f0c8"; }
393
+ .icon-reorder:before { content: "\f0c9"; }
394
+ .icon-list-ul:before { content: "\f0ca"; }
395
+ .icon-list-ol:before { content: "\f0cb"; }
396
+ .icon-strikethrough:before { content: "\f0cc"; }
397
+ .icon-underline:before { content: "\f0cd"; }
398
+ .icon-table:before { content: "\f0ce"; }
399
+
400
+ .icon-magic:before { content: "\f0d0"; }
401
+ .icon-truck:before { content: "\f0d1"; }
402
+ .icon-pinterest:before { content: "\f0d2"; }
403
+ .icon-pinterest-sign:before { content: "\f0d3"; }
404
+ .icon-google-plus-sign:before { content: "\f0d4"; }
405
+ .icon-google-plus:before { content: "\f0d5"; }
406
+ .icon-money:before { content: "\f0d6"; }
407
+ .icon-caret-down:before { content: "\f0d7"; }
408
+ .icon-caret-up:before { content: "\f0d8"; }
409
+ .icon-caret-left:before { content: "\f0d9"; }
410
+ .icon-caret-right:before { content: "\f0da"; }
411
+ .icon-columns:before { content: "\f0db"; }
412
+ .icon-sort:before { content: "\f0dc"; }
413
+ .icon-sort-down:before { content: "\f0dd"; }
414
+ .icon-sort-up:before { content: "\f0de"; }
415
+
416
+ .icon-envelope-alt:before { content: "\f0e0"; }
417
+ .icon-linkedin:before { content: "\f0e1"; }
418
+ .icon-undo:before { content: "\f0e2"; }
419
+ .icon-legal:before { content: "\f0e3"; }
420
+ .icon-dashboard:before { content: "\f0e4"; }
421
+ .icon-comment-alt:before { content: "\f0e5"; }
422
+ .icon-comments-alt:before { content: "\f0e6"; }
423
+ .icon-bolt:before { content: "\f0e7"; }
424
+ .icon-sitemap:before { content: "\f0e8"; }
425
+ .icon-umbrella:before { content: "\f0e9"; }
426
+ .icon-paste:before { content: "\f0ea"; }
427
+ .icon-lightbulb:before { content: "\f0eb"; }
428
+ .icon-exchange:before { content: "\f0ec"; }
429
+ .icon-cloud-download:before { content: "\f0ed"; }
430
+ .icon-cloud-upload:before { content: "\f0ee"; }
431
+
432
+ .icon-user-md:before { content: "\f0f0"; }
433
+ .icon-stethoscope:before { content: "\f0f1"; }
434
+ .icon-suitcase:before { content: "\f0f2"; }
435
+ .icon-bell-alt:before { content: "\f0f3"; }
436
+ .icon-coffee:before { content: "\f0f4"; }
437
+ .icon-food:before { content: "\f0f5"; }
438
+ .icon-file-alt:before { content: "\f0f6"; }
439
+ .icon-building:before { content: "\f0f7"; }
440
+ .icon-hospital:before { content: "\f0f8"; }
441
+ .icon-ambulance:before { content: "\f0f9"; }
442
+ .icon-medkit:before { content: "\f0fa"; }
443
+ .icon-fighter-jet:before { content: "\f0fb"; }
444
+ .icon-beer:before { content: "\f0fc"; }
445
+ .icon-h-sign:before { content: "\f0fd"; }
446
+ .icon-plus-sign-alt:before { content: "\f0fe"; }
447
+
448
+ .icon-double-angle-left:before { content: "\f100"; }
449
+ .icon-double-angle-right:before { content: "\f101"; }
450
+ .icon-double-angle-up:before { content: "\f102"; }
451
+ .icon-double-angle-down:before { content: "\f103"; }
452
+ .icon-angle-left:before { content: "\f104"; }
453
+ .icon-angle-right:before { content: "\f105"; }
454
+ .icon-angle-up:before { content: "\f106"; }
455
+ .icon-angle-down:before { content: "\f107"; }
456
+ .icon-desktop:before { content: "\f108"; }
457
+ .icon-laptop:before { content: "\f109"; }
458
+ .icon-tablet:before { content: "\f10a"; }
459
+ .icon-mobile-phone:before { content: "\f10b"; }
460
+ .icon-circle-blank:before { content: "\f10c"; }
461
+ .icon-quote-left:before { content: "\f10d"; }
462
+ .icon-quote-right:before { content: "\f10e"; }
463
+
464
+ .icon-spinner:before { content: "\f110"; }
465
+ .icon-circle:before { content: "\f111"; }
466
+ .icon-reply:before { content: "\f112"; }
467
+ .icon-github-alt:before { content: "\f113"; }
468
+ .icon-folder-close-alt:before { content: "\f114"; }
469
+ .icon-folder-open-alt:before { content: "\f115"; }
@@ -0,0 +1,34 @@
1
+ /* Font Awesome 3.0
2
+ the iconic font designed for use with Twitter Bootstrap
3
+ -------------------------------------------------------
4
+ The full suite of pictographic icons, examples, and documentation
5
+ can be found at: http://fortawesome.github.com/Font-Awesome/
6
+
7
+ License
8
+ -------------------------------------------------------
9
+ • The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
10
+ • Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
11
+ http://opensource.org/licenses/mit-license.html
12
+ • The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
13
+ • Attribution is no longer required in Font Awesome 3.0, but much appreciated:
14
+ "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
15
+
16
+ Contact
17
+ -------------------------------------------------------
18
+ Email: dave@davegandy.com
19
+ Twitter: http://twitter.com/fortaweso_me
20
+ Work: Lead Product Designer @ http://kyruus.com
21
+
22
+ */
23
+
24
+ @font-face {
25
+ font-family:'FontAwesome';
26
+ src:url('fontawesome-webfont.eot');
27
+ src:url('fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
28
+ url('fontawesome-webfont.woff') format('woff'),
29
+ url('fontawesome-webfont.ttf') format('truetype');
30
+ font-weight:normal;
31
+ font-style:normal
32
+ }
33
+
34
+ [class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none!important;background-position:0 0;background-repeat:repeat}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}a [class^="icon-"],a [class*=" icon-"]{display:inline-block}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}.btn [class^="icon-"],.nav [class^="icon-"],.btn [class*=" icon-"],.nav [class*=" icon-"]{display:inline;line-height:.6em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}li [class^="icon-"],li [class*=" icon-"]{display:inline-block;width:1.25em;text-align:center}li [class^="icon-"].icon-large,li [class*=" icon-"].icon-large{width:1.5625em}ul.icons{list-style-type:none;text-indent:-0.75em}ul.icons li [class^="icon-"],ul.icons li [class*=" icon-"]{width:.75em}.icon-muted{color:#eee}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.35em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.35em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.35em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{height:.75em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.45em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.2em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-reply:before{content:"\f112"}.icon-github-alt:before{content:"\f113"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"}