bonethug 0.0.1 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1192) hide show
  1. data/Gemfile +5 -0
  2. data/Rakefile +2 -0
  3. data/bin/bonethug +13 -0
  4. data/bonethug.gemspec +8 -2
  5. data/lib/bonethug/setup.rake +19 -0
  6. data/lib/bonethug/utils.rb +15 -0
  7. data/lib/bonethug/version.rb +1 -1
  8. data/lib/bonethug.rb +13 -1
  9. data/lib/tasks/setup.rake +19 -0
  10. data/skel/base/.gitignore +22 -0
  11. data/skel/base/Gemfile +3 -0
  12. data/skel/base/README.md +105 -0
  13. data/skel/base/composer.json +31 -0
  14. data/skel/base/config/backup.rb +105 -0
  15. data/skel/base/config/cnf.yml +59 -0
  16. data/skel/base/config/deploy.rb +213 -0
  17. data/skel/base/config/schedule.rb +34 -0
  18. data/skel/base/lib/conf.rb +275 -0
  19. data/skel/base/public/apple-touch-icon-114x114-precomposed.png +0 -0
  20. data/skel/base/public/apple-touch-icon-72x72-precomposed.png +0 -0
  21. data/skel/base/public/apple-touch-icon.png +0 -0
  22. data/skel/base/public/favicon.ico +0 -0
  23. data/skel/base/public/favicon.png +0 -0
  24. data/skel/base/public/robots.txt +5 -0
  25. data/skel/project_types/drupal/.gitignore +22 -0
  26. data/skel/project_types/drupal/composer.json +31 -0
  27. data/skel/project_types/php/.gitignore +13 -0
  28. data/skel/project_types/php/composer.json +31 -0
  29. data/skel/project_types/silverstripe3/.gitignore +22 -0
  30. data/skel/project_types/silverstripe3/composer.json +31 -0
  31. data/skel/project_types/silverstripe3/public/.htaccess +43 -0
  32. data/skel/project_types/silverstripe3/public/abc/_config.php +62 -0
  33. data/skel/project_types/silverstripe3/public/abc/code/Admin/AbcModelAdmin.php +55 -0
  34. data/skel/project_types/silverstripe3/public/abc/code/Classes/AbcDB.php +34 -0
  35. data/skel/project_types/silverstripe3/public/abc/code/Classes/AbcPaginator.php +212 -0
  36. data/skel/project_types/silverstripe3/public/abc/code/Classes/AbcStr.php +43 -0
  37. data/skel/project_types/silverstripe3/public/abc/code/Classes/AbcURL.php +39 -0
  38. data/skel/project_types/silverstripe3/public/abc/code/Classes/DataObjectHelper.php +312 -0
  39. data/skel/project_types/silverstripe3/public/abc/code/Classes/LeftAndMainHelper.php +21 -0
  40. data/skel/project_types/silverstripe3/public/abc/code/Classes/MySQLDump.php +110 -0
  41. data/skel/project_types/silverstripe3/public/abc/code/Classes/RequestHelper.php +22 -0
  42. data/skel/project_types/silverstripe3/public/abc/code/DO/AbcFile.php +26 -0
  43. data/skel/project_types/silverstripe3/public/abc/code/DO/AbcImage.php +84 -0
  44. data/skel/project_types/silverstripe3/public/abc/code/DO/VersionedDataObject.php +621 -0
  45. data/skel/project_types/silverstripe3/public/abc/code/Extensions/AbcLeftAndMainExtension.php +23 -0
  46. data/skel/project_types/silverstripe3/public/abc/code/Extensions/AbcSecurityExtension.php +30 -0
  47. data/skel/project_types/silverstripe3/public/abc/code/Extensions/GridFieldDetailForm_VersionedDataObject_Actions.php +11 -0
  48. data/skel/project_types/silverstripe3/public/abc/code/FormFields/ChildListField.php +40 -0
  49. data/skel/project_types/silverstripe3/public/abc/code/FormFields/ColourPickerField.php +27 -0
  50. data/skel/project_types/silverstripe3/public/abc/code/FormFields/SyntaxHighlightedField.php +40 -0
  51. data/skel/project_types/silverstripe3/public/abc/code/FormFields/jQueryUIDateField_View.php +61 -0
  52. data/skel/project_types/silverstripe3/public/abc/code/Forms/AddForm.php +38 -0
  53. data/skel/project_types/silverstripe3/public/abc/code/Forms/AddModelAdminForm.php +15 -0
  54. data/skel/project_types/silverstripe3/public/abc/code/Forms/GridField/AbcGridFieldAddExistingAutocompleter.php +38 -0
  55. data/skel/project_types/silverstripe3/public/abc/code/Forms/GridField/AbcGridFieldConfig.php +261 -0
  56. data/skel/project_types/silverstripe3/public/abc/code/Forms/GridField/AbcGridFieldDetailForm.php +15 -0
  57. data/skel/project_types/silverstripe3/public/abc/code/Tasks/DBBackup.php +78 -0
  58. data/skel/project_types/silverstripe3/public/abc/code/Tasks/PublishAllPages.php +32 -0
  59. data/skel/project_types/silverstripe3/public/abc/css/child-list.css +15 -0
  60. data/skel/project_types/silverstripe3/public/abc/css/cms.css +36 -0
  61. data/skel/project_types/silverstripe3/public/abc/images/no-image.jpg +0 -0
  62. data/skel/project_types/silverstripe3/public/abc/javascript/ColourPickerField.js +26 -0
  63. data/skel/project_types/silverstripe3/public/abc/javascript/SyntaxHighlightedField.js +20 -0
  64. data/skel/project_types/silverstripe3/public/abc/javascript/child-list.js +13 -0
  65. data/skel/project_types/silverstripe3/public/abc/javascript/isotope-centered-masonry.js +58 -0
  66. data/skel/project_types/silverstripe3/public/abc/javascript/jquery.cms.js +62 -0
  67. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/css/colorpicker.css +161 -0
  68. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/css/layout.css +218 -0
  69. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/Thumbs.db +0 -0
  70. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/blank.gif +0 -0
  71. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_background.png +0 -0
  72. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_hex.png +0 -0
  73. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_hsb_b.png +0 -0
  74. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_hsb_h.png +0 -0
  75. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_hsb_s.png +0 -0
  76. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_indic.gif +0 -0
  77. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_overlay.png +0 -0
  78. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_rgb_b.png +0 -0
  79. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_rgb_g.png +0 -0
  80. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_rgb_r.png +0 -0
  81. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_select.gif +0 -0
  82. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/colorpicker_submit.png +0 -0
  83. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_background.png +0 -0
  84. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_hex.png +0 -0
  85. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_hsb_b.png +0 -0
  86. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_hsb_h.png +0 -0
  87. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_hsb_s.png +0 -0
  88. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_indic.gif +0 -0
  89. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_rgb_b.png +0 -0
  90. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_rgb_g.png +0 -0
  91. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_rgb_r.png +0 -0
  92. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/custom_submit.png +0 -0
  93. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/select.png +0 -0
  94. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/select2.png +0 -0
  95. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/images/slider.png +0 -0
  96. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/index.html +184 -0
  97. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/js/colorpicker.js +484 -0
  98. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/js/eye.js +34 -0
  99. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/js/jquery.js +4376 -0
  100. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/js/layout.js +67 -0
  101. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/colorpicker/js/utils.js +252 -0
  102. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/README +40 -0
  103. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/complete_examples.html +373 -0
  104. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/jquery.mCustomScrollbar.css +296 -0
  105. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsImg1.jpg +0 -0
  106. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsImg2.jpg +0 -0
  107. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb1.jpg +0 -0
  108. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb2.jpg +0 -0
  109. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb3.jpg +0 -0
  110. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb4.jpg +0 -0
  111. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb5.jpg +0 -0
  112. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb6.jpg +0 -0
  113. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb7.jpg +0 -0
  114. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcsThumb8.jpg +0 -0
  115. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/demo_files/mcs_demo_bg.jpg +0 -0
  116. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/fluid_scrollbar_example.html +78 -0
  117. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/css/jquery.mCustomScrollbar.css +186 -0
  118. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/css/style.css +45 -0
  119. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/images/mCSB_buttons.png +0 -0
  120. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/images/stripes_bg.png +0 -0
  121. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/index.html +52 -0
  122. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/js/jquery-1.7.2.min.js +4 -0
  123. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/js/jquery-ui-1.8.21.custom.min.js +25 -0
  124. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/js/jquery.mCustomScrollbar.min.js +1 -0
  125. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/full_page_demo/js/jquery.mousewheel.min.js +12 -0
  126. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/issue_2_fix_test/infinite_scroll_examples-issue_2.html +122 -0
  127. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/issue_2_fix_test/jquery.mCustomScrollbar.js +722 -0
  128. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/jquery/jquery-1.7.2.min.js +4 -0
  129. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/jquery/jquery-ui-1.8.21.custom.min.js +25 -0
  130. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/jquery.mCustomScrollbar.css +187 -0
  131. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/jquery.mCustomScrollbar.js +722 -0
  132. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/jquery.mousewheel.min.js +12 -0
  133. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/license.txt +1 -0
  134. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/mCSB_buttons.png +0 -0
  135. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/minified/jquery.mCustomScrollbar.min.js +1 -0
  136. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/multiple_scrollbars_example.html +80 -0
  137. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/readme.txt +41 -0
  138. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/scroll_buttons_and_snap_scrolling_examples.html +158 -0
  139. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/simple_example.html +68 -0
  140. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/simple_example_all_params.html +88 -0
  141. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/custom-scrollbar/sources/mCSB_buttons.psd +0 -0
  142. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/jquery.event.drag.js +402 -0
  143. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/jquery.event.drag.live.js +87 -0
  144. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/binding.js +64 -0
  145. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/handlers.js +160 -0
  146. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/index.html +28 -0
  147. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/interaction.js +198 -0
  148. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/live.js +41 -0
  149. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/method.js +64 -0
  150. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/properties.js +71 -0
  151. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/requirements.js +24 -0
  152. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drag/test/touch.js +206 -0
  153. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/jquery.event.drop.js +302 -0
  154. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/jquery.event.drop.live.js +93 -0
  155. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/binding.js +32 -0
  156. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/handlers.js +130 -0
  157. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/index.html +32 -0
  158. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/interaction.js +134 -0
  159. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/live.js +60 -0
  160. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/method.js +63 -0
  161. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/properties.js +62 -0
  162. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/requirements.js +37 -0
  163. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/tolerance.js +189 -0
  164. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.drop/test/touch.js +140 -0
  165. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.keyend/jquery.event.keyend.js +20 -0
  166. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/jquery.event.linger.js +190 -0
  167. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/test/binding.js +45 -0
  168. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/test/handlers.js +111 -0
  169. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/test/index.html +24 -0
  170. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/test/interaction.js +231 -0
  171. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/test/method.js +43 -0
  172. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.linger/test/requirements.js +23 -0
  173. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/event.wheel/jquery.event.wheel.js +50 -0
  174. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/jquery.fire.js +171 -0
  175. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/custom.js +61 -0
  176. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/form.js +50 -0
  177. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/index.html +26 -0
  178. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/key.js +52 -0
  179. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/mouse.js +54 -0
  180. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/mutation.js +52 -0
  181. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/object.js +50 -0
  182. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/requirements.js +26 -0
  183. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/fire/test/touch.js +61 -0
  184. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/include.js +387 -0
  185. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/.gitignore +2 -0
  186. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/.tm_properties +3 -0
  187. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/README.mdown +78 -0
  188. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_config.yml +605 -0
  189. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/add-buttons.js +14 -0
  190. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/change-sizes.js +14 -0
  191. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/element-partial.html +7 -0
  192. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/elements-demo-foot.html +64 -0
  193. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/elements-demo-head.html +22 -0
  194. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/filter-buttons.html +14 -0
  195. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/inf-scroll-page.html +21 -0
  196. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/layout-change.js +24 -0
  197. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/layout-options.html +13 -0
  198. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/option-set-buttons.js +31 -0
  199. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/random-sizes.js +12 -0
  200. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_includes/sort-buttons.html +19 -0
  201. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_layouts/default.html +81 -0
  202. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2011-05-18-centered-masonry.html +151 -0
  203. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2011-05-22-category-rows.html +126 -0
  204. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2011-07-07-masonry-corner-stamp.html +145 -0
  205. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2011-07-14-masonry-gutters.html +148 -0
  206. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2011-10-18-spine-align.html +139 -0
  207. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2011-12-05-big-graph.html +196 -0
  208. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/custom-layout-modes/2012-01-03-masonry-column-shift.html +220 -0
  209. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-12-basic.html +30 -0
  210. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-13-elements-complete.html +16 -0
  211. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-16-elements-partial.html +16 -0
  212. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-29-layout-modes.html +59 -0
  213. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-30-filtering.html +41 -0
  214. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-30-sorting.html +56 -0
  215. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2010-12-31-relayout.html +44 -0
  216. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-01-02-adding-items.html +61 -0
  217. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-01-02-infinite-scroll.html +51 -0
  218. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-01-11-images.html +44 -0
  219. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-03-29-combination-filters.html +100 -0
  220. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-06-13-hash-history.html +190 -0
  221. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-09-30-fluid-responsive.html +141 -0
  222. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/demos/2011-12-22-removing.html +79 -0
  223. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-01-introduction.mdown +161 -0
  224. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-03-options.mdown +356 -0
  225. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-04-methods.mdown +159 -0
  226. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-05-layout-modes.mdown +191 -0
  227. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-06-filtering.mdown +109 -0
  228. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-07-sorting.mdown +169 -0
  229. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-09-animating.mdown +100 -0
  230. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2010-12-10-adding-items.mdown +79 -0
  231. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2011-05-25-extending-isotope.mdown +174 -0
  232. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2011-06-16-hash-history-jquery-bbq.mdown +86 -0
  233. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2011-12-11-help.mdown +230 -0
  234. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/docs/2011-12-20-license.mdown +45 -0
  235. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/pages/2011-01-01-2.html +9 -0
  236. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/pages/2011-01-01-3.html +9 -0
  237. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/pages/2011-01-01-4.html +9 -0
  238. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/pages/2011-01-01-5.html +9 -0
  239. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/pages/2011-01-01-6.html +9 -0
  240. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2010-01-01-index.html +14 -0
  241. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-03-27-destroy.html +48 -0
  242. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-03-27-flash.html +118 -0
  243. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-03-27-no-items.html +29 -0
  244. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-04-26-item-position-data.html +69 -0
  245. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-05-13-jquery-animation.html +92 -0
  246. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-05-24-elements-complete-test.html +140 -0
  247. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-05-31-tiny-text.html +70 -0
  248. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-08-19-right-to-left.html +151 -0
  249. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-08-23-unclickable-filtered.html +118 -0
  250. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2011-10-19-callbacks.html +165 -0
  251. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2012-02-07-onlayout.html +171 -0
  252. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/_posts/tests/2012-08-11-combo-sort-history.html +177 -0
  253. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/css/style.css +842 -0
  254. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/index.html +185 -0
  255. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/jquery.isotope.js +1401 -0
  256. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/jquery.isotope.min.js +11 -0
  257. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/js/fake-element.js +38 -0
  258. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/js/jquery-1.7.1.min.js +4 -0
  259. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/js/jquery.ba-bbq.min.js +18 -0
  260. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/js/jquery.infinitescroll.min.js +47 -0
  261. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/js/make-big-graph-projects.js +43 -0
  262. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/isotope/minify.sh +15 -0
  263. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jgestures.min.js +18 -0
  264. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-bm.htm +79 -0
  265. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-pf.htm +77 -0
  266. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-solution-flash-html-bm.htm +80 -0
  267. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-solution-flash-html-pf.htm +78 -0
  268. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-supplied-mp3-bm.htm +78 -0
  269. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-supplied-mp3-pf.htm +76 -0
  270. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-bm.htm +90 -0
  271. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-pf.htm +91 -0
  272. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-solution-flash-html-bm.htm +90 -0
  273. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-solution-flash-html-pf.htm +91 -0
  274. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-supplied-m4v-bm.htm +87 -0
  275. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-supplied-m4v-pf.htm +88 -0
  276. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-supplied-rtmpv-bm.htm +87 -0
  277. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-01-video-supplied-rtmpv-pf.htm +88 -0
  278. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-bm.htm +149 -0
  279. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-jPlayerPlaylist-bm.htm +607 -0
  280. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-jPlayerPlaylist-pf.htm +607 -0
  281. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-media-bm.htm +158 -0
  282. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-media-pf.htm +158 -0
  283. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-media-solution-flash-html-bm.htm +159 -0
  284. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-media-solution-flash-html-pf.htm +159 -0
  285. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-multi-bm.htm +242 -0
  286. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-multi-pf.htm +241 -0
  287. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-pf.htm +148 -0
  288. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-video-bm.htm +117 -0
  289. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-02-video-pf.htm +117 -0
  290. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-03-bm.htm +205 -0
  291. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-03-pf.htm +199 -0
  292. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-03-together-bm.htm +196 -0
  293. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-03-together-pf.htm +190 -0
  294. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-03-video-bm.htm +219 -0
  295. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-03-video-pf.htm +222 -0
  296. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-04.htm +159 -0
  297. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-05.htm +76 -0
  298. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-07.htm +249 -0
  299. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-08-bm.htm +78 -0
  300. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-08-pf.htm +78 -0
  301. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-09-popcorn-video-bm.htm +122 -0
  302. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-09-popcorn-video-pf.htm +123 -0
  303. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-09-popcorn-video-solution-flash-html-bm.htm +123 -0
  304. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demo-09-popcorn-video-solution-flash-html-pf.htm +124 -0
  305. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-bm.htm +79 -0
  306. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-pf.htm +77 -0
  307. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-solution-flash-html-bm.htm +80 -0
  308. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-solution-flash-html-pf.htm +78 -0
  309. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-supplied-mp3-bm.htm +78 -0
  310. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-supplied-mp3-pf.htm +76 -0
  311. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-bm.htm +90 -0
  312. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-pf.htm +91 -0
  313. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-solution-flash-html-bm.htm +90 -0
  314. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-solution-flash-html-pf.htm +91 -0
  315. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-supplied-m4v-bm.htm +87 -0
  316. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-supplied-m4v-pf.htm +88 -0
  317. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-supplied-rtmpv-bm.htm +87 -0
  318. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-01-video-supplied-rtmpv-pf.htm +88 -0
  319. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-bm.htm +149 -0
  320. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-jPlayerPlaylist-bm.htm +607 -0
  321. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-jPlayerPlaylist-pf.htm +607 -0
  322. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-media-bm.htm +158 -0
  323. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-media-pf.htm +158 -0
  324. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-media-solution-flash-html-bm.htm +159 -0
  325. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-media-solution-flash-html-pf.htm +159 -0
  326. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-multi-bm.htm +242 -0
  327. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-multi-pf.htm +241 -0
  328. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-pf.htm +148 -0
  329. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-video-bm.htm +117 -0
  330. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-02-video-pf.htm +117 -0
  331. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-03-bm.htm +205 -0
  332. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-03-pf.htm +199 -0
  333. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-03-together-bm.htm +196 -0
  334. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-03-together-pf.htm +190 -0
  335. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-03-video-bm.htm +219 -0
  336. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-03-video-pf.htm +222 -0
  337. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-04.htm +159 -0
  338. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-05.htm +76 -0
  339. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-07.htm +249 -0
  340. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-08-bm.htm +78 -0
  341. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-08-pf.htm +78 -0
  342. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-09-popcorn-video-bm.htm +122 -0
  343. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-09-popcorn-video-pf.htm +123 -0
  344. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-09-popcorn-video-solution-flash-html-bm.htm +123 -0
  345. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/demo-09-popcorn-video-solution-flash-html-pf.htm +124 -0
  346. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/jPlayer-tester-bm.htm +1030 -0
  347. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/jPlayer-tester-pf.htm +1029 -0
  348. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/Jplayer.swf +0 -0
  349. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/circle.player.js +243 -0
  350. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/jplayer.playlist.min.js +34 -0
  351. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/jquery.grab.js +201 -0
  352. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/jquery.jplayer.inspector.js +338 -0
  353. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/jquery.jplayer.min.js +107 -0
  354. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/jquery.transform2d.js +551 -0
  355. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/mod.csstransforms.min.js +2 -0
  356. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/popcorn.jplayer.js +559 -0
  357. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/popcorn.js +2212 -0
  358. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/popcorn.player.js +460 -0
  359. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/js/popcorn.subtitle.js +143 -0
  360. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/blue.monday/jplayer.blue.monday.css +640 -0
  361. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/blue.monday/jplayer.blue.monday.jpg +0 -0
  362. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/blue.monday/jplayer.blue.monday.seeking.gif +0 -0
  363. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/blue.monday/jplayer.blue.monday.video.play.png +0 -0
  364. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/circle.skin/bgr.jpg +0 -0
  365. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/circle.skin/buffer.png +0 -0
  366. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/circle.skin/circle.player.css +133 -0
  367. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/circle.skin/controls.jpg +0 -0
  368. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/circle.skin/progress.png +0 -0
  369. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/circle.skin/progress_sprite.jpg +0 -0
  370. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/pink.flag/jplayer.pink.flag.css +670 -0
  371. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/pink.flag/jplayer.pink.flag.jpg +0 -0
  372. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/pink.flag/jplayer.pink.flag.seeking.gif +0 -0
  373. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/demos/skin/pink.flag/jplayer.pink.flag.video.play.png +0 -0
  374. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/jPlayer-tester-bm.htm +1030 -0
  375. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/jPlayer-tester-pf.htm +1029 -0
  376. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/Jplayer.swf +0 -0
  377. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/circle.player.js +243 -0
  378. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/jplayer.playlist.min.js +34 -0
  379. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/jquery.grab.js +201 -0
  380. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/jquery.jplayer.inspector.js +338 -0
  381. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/jquery.jplayer.min.js +107 -0
  382. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/jquery.transform2d.js +551 -0
  383. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/mod.csstransforms.min.js +2 -0
  384. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/popcorn.jplayer.js +559 -0
  385. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/popcorn.js +2212 -0
  386. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/popcorn.player.js +460 -0
  387. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/js/popcorn.subtitle.js +143 -0
  388. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/jplayer.blackish.css +669 -0
  389. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/jplayer.blue.monday.jpg +0 -0
  390. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/jplayer.blue.monday.seeking.gif +0 -0
  391. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/jplayer.blue.monday.video.play.png +0 -0
  392. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/jplayer.blue.png +0 -0
  393. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/src/jplayer.blue.monday.psd +0 -0
  394. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blackish/src/jplayer.blue.monday.video.play.psd +0 -0
  395. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blue.monday/jplayer.blue.monday.css +640 -0
  396. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blue.monday/jplayer.blue.monday.jpg +0 -0
  397. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blue.monday/jplayer.blue.monday.seeking.gif +0 -0
  398. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/blue.monday/jplayer.blue.monday.video.play.png +0 -0
  399. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/circle.skin/bgr.jpg +0 -0
  400. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/circle.skin/buffer.png +0 -0
  401. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/circle.skin/circle.player.css +133 -0
  402. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/circle.skin/controls.jpg +0 -0
  403. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/circle.skin/progress.png +0 -0
  404. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/circle.skin/progress_sprite.jpg +0 -0
  405. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/pink.flag/jplayer.pink.flag.css +670 -0
  406. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/pink.flag/jplayer.pink.flag.jpg +0 -0
  407. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/pink.flag/jplayer.pink.flag.seeking.gif +0 -0
  408. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/skin/pink.flag/jplayer.pink.flag.video.play.png +0 -0
  409. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/Jplayer.as +609 -0
  410. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/Jplayer.fla +0 -0
  411. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/add-on/jplayer.playlist.js +471 -0
  412. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/add-on/jquery.jplayer.inspector.js +338 -0
  413. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/ConnectManager.as +296 -0
  414. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/JplayerEvent.as +69 -0
  415. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/JplayerMp3.as +328 -0
  416. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/JplayerMp4.as +413 -0
  417. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/JplayerRtmp.as +984 -0
  418. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/JplayerStatus.as +107 -0
  419. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/happyworm/jPlayer/TraceOut.as +63 -0
  420. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/jquery.jplayer.js +2817 -0
  421. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jplayer/src/popcorn/popcorn.jplayer.js +559 -0
  422. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery-1.10.2.min.js +6 -0
  423. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery-1.7.2.min.js +4 -0
  424. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery-1.8.0.min.js +2 -0
  425. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery-1.8.2.min.js +2 -0
  426. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery.animate.color.js +663 -0
  427. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery.drag.touch.js +99 -0
  428. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery.parseParams.js +54 -0
  429. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/jquery.ui.touch-punch.min.js +11 -0
  430. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.css +10 -0
  431. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.js +1768 -0
  432. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.min.css +1 -0
  433. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.min.js +2 -0
  434. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.structure.css +82 -0
  435. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.structure.min.css +2 -0
  436. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.theme.css +1204 -0
  437. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/mobile/jquery.mobile.custom.theme.min.css +2 -0
  438. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/slidatron/jquery.slidatron.js +299 -0
  439. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/slidatron/slidatron.css +13 -0
  440. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/snippet/jquery.snippet.min.css +40 -0
  441. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/snippet/jquery.snippet.min.js +12 -0
  442. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/Aristo.css +738 -0
  443. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/images/bg_fallback.png +0 -0
  444. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/images/icon_sprite.png +0 -0
  445. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/images/progress_bar.gif +0 -0
  446. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/images/slider_handles.png +0 -0
  447. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/images/ui-icons_222222_256x240.png +0 -0
  448. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/Aristo/images/ui-icons_454545_256x240.png +0 -0
  449. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  450. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  451. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  452. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  453. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  454. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  455. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  456. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  457. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
  458. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  459. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
  460. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
  461. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  462. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/css/smoothness/jquery-ui-1.8.23.custom.css +563 -0
  463. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/AUTHORS.txt +30 -0
  464. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/GPL-LICENSE.txt +278 -0
  465. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/MIT-LICENSE.txt +25 -0
  466. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/collapsible.html +57 -0
  467. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/custom-icons.html +69 -0
  468. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/default.html +85 -0
  469. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/fillspace.html +76 -0
  470. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/hoverintent.html +138 -0
  471. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/index.html +25 -0
  472. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/mouseover.html +57 -0
  473. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/no-auto-height.html +60 -0
  474. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/accordion/sortable.html +81 -0
  475. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/addClass/default.html +52 -0
  476. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/addClass/index.html +18 -0
  477. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/animate/default.html +61 -0
  478. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/animate/index.html +18 -0
  479. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/categories.html +71 -0
  480. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/combobox.html +194 -0
  481. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/custom-data.html +95 -0
  482. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/default.html +64 -0
  483. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/folding.html +62 -0
  484. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/images/jquery_32x32.png +0 -0
  485. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png +0 -0
  486. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png +0 -0
  487. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/images/transparent_1x1.png +0 -0
  488. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif +0 -0
  489. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/index.html +27 -0
  490. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/london.xml +114 -0
  491. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/maxheight.html +79 -0
  492. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/multiple-remote.html +84 -0
  493. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/multiple.html +99 -0
  494. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/remote-jsonp.html +86 -0
  495. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/remote-with-cache.html +59 -0
  496. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/remote.html +59 -0
  497. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/search.php +640 -0
  498. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/autocomplete/xml.html +72 -0
  499. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/checkbox.html +44 -0
  500. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/default.html +38 -0
  501. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/icons.html +56 -0
  502. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/index.html +23 -0
  503. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/radio.html +39 -0
  504. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/splitbutton.html +55 -0
  505. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/button/toolbar.html +120 -0
  506. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/alt-field.html +36 -0
  507. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/animation.html +58 -0
  508. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/buttonbar.html +35 -0
  509. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/date-formats.html +47 -0
  510. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/date-range.html +51 -0
  511. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/default.html +33 -0
  512. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/dropdown-month-year.html +36 -0
  513. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/icon-trigger.html +37 -0
  514. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  515. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/index.html +31 -0
  516. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/inline.html +33 -0
  517. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/localization.html +176 -0
  518. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/min-max.html +33 -0
  519. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/multiple-calendars.html +36 -0
  520. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/other-months.html +37 -0
  521. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/datepicker/show-week.html +39 -0
  522. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/demos.css +334 -0
  523. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/animated.html +56 -0
  524. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/default.html +54 -0
  525. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/index.html +23 -0
  526. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/modal-confirmation.html +69 -0
  527. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/modal-form.html +167 -0
  528. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/modal-message.html +71 -0
  529. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/dialog/modal.html +60 -0
  530. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/constrain-movement.html +69 -0
  531. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/cursor-style.html +49 -0
  532. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/default.html +39 -0
  533. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/delay-start.html +45 -0
  534. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/events.html +77 -0
  535. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/handle.html +50 -0
  536. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/index.html +28 -0
  537. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/revert.html +44 -0
  538. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/scroll.html +51 -0
  539. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/snap-to.html +68 -0
  540. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/sortable.html +57 -0
  541. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/draggable/visual-feedback.html +77 -0
  542. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/accepted-elements.html +60 -0
  543. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/default.html +53 -0
  544. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  545. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  546. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  547. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  548. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  549. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  550. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  551. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  552. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/index.html +24 -0
  553. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/photo-manager.html +184 -0
  554. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/propagation.html +80 -0
  555. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/revert.html +61 -0
  556. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/shopping-cart.html +101 -0
  557. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/droppable/visual-feedback.html +78 -0
  558. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/effect/default.html +109 -0
  559. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/effect/easing.html +109 -0
  560. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/effect/index.html +19 -0
  561. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/hide/default.html +102 -0
  562. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/hide/index.html +18 -0
  563. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/calendar.gif +0 -0
  564. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  565. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  566. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  567. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  568. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  569. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  570. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/index.html +329 -0
  571. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/position/cycler.html +125 -0
  572. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/position/default.html +140 -0
  573. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/position/images/earth.jpg +0 -0
  574. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/position/images/flight.jpg +0 -0
  575. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/position/images/rocket.jpg +0 -0
  576. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/position/index.html +19 -0
  577. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/progressbar/animated.html +44 -0
  578. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/progressbar/default.html +35 -0
  579. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/progressbar/images/pbar-ani.gif +0 -0
  580. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/progressbar/index.html +20 -0
  581. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/progressbar/resize.html +40 -0
  582. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/removeClass/default.html +52 -0
  583. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/removeClass/index.html +18 -0
  584. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/animate.html +43 -0
  585. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/aspect-ratio.html +42 -0
  586. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/constrain-area.html +47 -0
  587. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/default.html +40 -0
  588. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/delay-start.html +52 -0
  589. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/helper.html +43 -0
  590. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/index.html +28 -0
  591. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/max-min.html +45 -0
  592. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/snap-to-grid.html +42 -0
  593. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/synchronous-resize.html +49 -0
  594. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/textarea.html +41 -0
  595. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/resizable/visual-feedback.html +43 -0
  596. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/selectable/default.html +50 -0
  597. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/selectable/display-grid.html +55 -0
  598. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/selectable/index.html +20 -0
  599. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/selectable/serialize.html +61 -0
  600. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/show/default.html +104 -0
  601. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/show/index.html +18 -0
  602. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/colorpicker.html +95 -0
  603. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/default.html +37 -0
  604. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/hotelrooms.html +59 -0
  605. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/index.html +29 -0
  606. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/multiple-vertical.html +77 -0
  607. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/range-vertical.html +51 -0
  608. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/range.html +52 -0
  609. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/rangemax.html +50 -0
  610. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/rangemin.html +51 -0
  611. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/side-scroll.html +140 -0
  612. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/slider-vertical.html +52 -0
  613. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/steps.html +51 -0
  614. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/slider/tabs.html +67 -0
  615. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/connect-lists-through-tabs.html +78 -0
  616. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/connect-lists.html +58 -0
  617. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/default.html +51 -0
  618. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/delay-start.html +67 -0
  619. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/display-grid.html +54 -0
  620. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/empty-lists.html +69 -0
  621. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/index.html +26 -0
  622. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/items.html +70 -0
  623. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/placeholder.html +56 -0
  624. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/sortable/portlets.html +96 -0
  625. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/switchClass/default.html +47 -0
  626. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/switchClass/index.html +18 -0
  627. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/ajax/content1.html +4 -0
  628. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/ajax/content2.html +4 -0
  629. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/ajax/content3-slow.php +7 -0
  630. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/ajax/content4-broken.php +3 -0
  631. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/ajax.html +53 -0
  632. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/bottom.html +60 -0
  633. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/collapsible.html +55 -0
  634. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/cookie.html +57 -0
  635. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/default.html +49 -0
  636. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/index.html +25 -0
  637. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/manipulation.html +124 -0
  638. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/mouseover.html +53 -0
  639. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/sortable.html +58 -0
  640. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/tabs/vertical.html +61 -0
  641. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/toggle/default.html +94 -0
  642. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/toggle/index.html +18 -0
  643. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/toggleClass/default.html +46 -0
  644. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/demos/toggleClass/index.html +18 -0
  645. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/accordion.html +1017 -0
  646. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/addClass.html +109 -0
  647. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/animate.html +78 -0
  648. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/autocomplete.html +880 -0
  649. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/button.html +500 -0
  650. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/datepicker.html +2532 -0
  651. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/dialog.html +1782 -0
  652. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/draggable.html +1577 -0
  653. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/droppable.html +829 -0
  654. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/effect.html +143 -0
  655. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/hide.html +144 -0
  656. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/position.html +245 -0
  657. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/progressbar.html +460 -0
  658. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/removeClass.html +113 -0
  659. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/resizable.html +1201 -0
  660. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/selectable.html +848 -0
  661. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/show.html +144 -0
  662. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/slider.html +860 -0
  663. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/sortable.html +1953 -0
  664. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/switchClass.html +129 -0
  665. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/tabs.html +1532 -0
  666. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/toggle.html +144 -0
  667. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/docs/toggleClass.html +111 -0
  668. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/external/jquery.bgiframe-2.1.2.js +39 -0
  669. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/external/jquery.cookie.js +89 -0
  670. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/external/jquery.metadata.js +122 -0
  671. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/external/qunit.css +225 -0
  672. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/external/qunit.js +1448 -0
  673. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/jquery-1.8.0.js +9227 -0
  674. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/package.json +36 -0
  675. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  676. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  677. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  678. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  679. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  680. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  681. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  682. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  683. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  684. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  685. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  686. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  687. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  688. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.accordion.css +19 -0
  689. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.all.css +11 -0
  690. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.autocomplete.css +53 -0
  691. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.base.css +11 -0
  692. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.button.css +38 -0
  693. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.core.css +38 -0
  694. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.datepicker.css +66 -0
  695. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.dialog.css +21 -0
  696. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.progressbar.css +11 -0
  697. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.resizable.css +20 -0
  698. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.selectable.css +10 -0
  699. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.slider.css +24 -0
  700. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.tabs.css +18 -0
  701. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/base/jquery.ui.theme.css +247 -0
  702. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  703. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  704. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  705. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  706. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  707. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  708. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  709. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  710. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png +0 -0
  711. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  712. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png +0 -0
  713. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png +0 -0
  714. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  715. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery-ui-1.8.23.custom.css +563 -0
  716. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.accordion.css +19 -0
  717. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.all.css +11 -0
  718. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.autocomplete.css +53 -0
  719. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.base.css +11 -0
  720. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.button.css +38 -0
  721. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.core.css +38 -0
  722. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.datepicker.css +66 -0
  723. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.dialog.css +21 -0
  724. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.progressbar.css +11 -0
  725. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.resizable.css +20 -0
  726. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.selectable.css +10 -0
  727. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.slider.css +24 -0
  728. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.tabs.css +18 -0
  729. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/themes/smoothness/jquery.ui.theme.css +249 -0
  730. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1646 -0
  731. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  732. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  733. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  734. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  735. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  736. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  737. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  738. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  739. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
  740. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  741. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  742. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  743. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  744. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  745. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  746. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  747. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  748. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  749. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  750. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
  751. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  752. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  753. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  754. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  755. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  756. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  757. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
  758. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  759. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  760. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  761. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  762. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  763. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  764. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  765. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
  766. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
  767. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
  768. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  769. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
  770. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  771. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  772. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
  773. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  774. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  775. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
  776. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  777. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  778. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  779. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  780. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  781. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  782. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  783. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  784. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  785. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  786. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  787. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  788. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  789. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  790. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  791. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  792. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  793. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  794. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
  795. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  796. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  797. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  798. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  799. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery-ui-1.8.23.custom.js +11713 -0
  800. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.blind.js +49 -0
  801. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.bounce.js +78 -0
  802. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.clip.js +54 -0
  803. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.core.js +612 -0
  804. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.drop.js +50 -0
  805. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.explode.js +79 -0
  806. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.fade.js +32 -0
  807. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.fold.js +56 -0
  808. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.highlight.js +50 -0
  809. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.pulsate.js +51 -0
  810. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.scale.js +178 -0
  811. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.shake.js +57 -0
  812. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.slide.js +50 -0
  813. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.effects.transfer.js +45 -0
  814. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.accordion.js +611 -0
  815. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.autocomplete.js +631 -0
  816. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.button.js +414 -0
  817. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.core.js +334 -0
  818. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.datepicker.js +1854 -0
  819. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.dialog.js +866 -0
  820. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.draggable.js +833 -0
  821. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.droppable.js +296 -0
  822. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.mouse.js +167 -0
  823. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.position.js +308 -0
  824. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.progressbar.js +109 -0
  825. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.resizable.js +807 -0
  826. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.selectable.js +267 -0
  827. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.slider.js +662 -0
  828. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.sortable.js +1084 -0
  829. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.tabs.js +757 -0
  830. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/jquery.ui.widget.js +272 -0
  831. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.blind.min.js +5 -0
  832. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.bounce.min.js +5 -0
  833. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.clip.min.js +5 -0
  834. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.core.min.js +5 -0
  835. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.drop.min.js +5 -0
  836. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.explode.min.js +5 -0
  837. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.fade.min.js +5 -0
  838. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.fold.min.js +5 -0
  839. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.highlight.min.js +5 -0
  840. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.pulsate.min.js +5 -0
  841. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.scale.min.js +5 -0
  842. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.shake.min.js +5 -0
  843. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.slide.min.js +5 -0
  844. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.effects.transfer.min.js +5 -0
  845. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.accordion.min.js +5 -0
  846. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.autocomplete.min.js +5 -0
  847. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.button.min.js +5 -0
  848. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  849. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +5 -0
  850. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.dialog.min.js +5 -0
  851. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  852. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  853. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  854. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.position.min.js +5 -0
  855. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.progressbar.min.js +5 -0
  856. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.resizable.min.js +5 -0
  857. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.selectable.min.js +5 -0
  858. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.slider.min.js +5 -0
  859. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.sortable.min.js +5 -0
  860. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.tabs.min.js +5 -0
  861. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  862. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/index.html +383 -0
  863. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/js/jquery-1.8.0.min.js +2 -0
  864. data/skel/project_types/silverstripe3/public/abc/javascript/library/jQuery/ui/js/jquery-ui-1.8.23.custom.min.js +125 -0
  865. data/skel/project_types/silverstripe3/public/abc/javascript/library/spin.min.js +23 -0
  866. data/skel/project_types/silverstripe3/public/abc/javascript/pagination.js +10 -0
  867. data/skel/project_types/silverstripe3/public/abc/lib/bootstrap/css/bootstrap.css +4845 -0
  868. data/skel/project_types/silverstripe3/public/abc/lib/bootstrap/css/bootstrap.min.css +9 -0
  869. data/skel/project_types/silverstripe3/public/abc/lib/bootstrap/js/bootstrap.js +1988 -0
  870. data/skel/project_types/silverstripe3/public/abc/lib/bootstrap/js/bootstrap.min.js +6 -0
  871. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/.gitattributes +8 -0
  872. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/.gitignore +6 -0
  873. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/.travis.yml +3 -0
  874. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/CONTRIBUTING.md +72 -0
  875. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/LICENSE +23 -0
  876. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/README.md +11 -0
  877. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/comment/comment.js +145 -0
  878. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/dialog/dialog.css +32 -0
  879. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/dialog/dialog.js +80 -0
  880. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/display/placeholder.js +54 -0
  881. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/closebrackets.js +82 -0
  882. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/closetag.js +86 -0
  883. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/continuecomment.js +44 -0
  884. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/continuelist.js +25 -0
  885. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/matchbrackets.js +86 -0
  886. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/matchtags.js +51 -0
  887. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/edit/trailingspace.js +15 -0
  888. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/fold/brace-fold.js +93 -0
  889. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/fold/foldcode.js +73 -0
  890. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/fold/foldgutter.js +122 -0
  891. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/fold/indent-fold.js +12 -0
  892. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/fold/xml-fold.js +167 -0
  893. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/anyword-hint.js +34 -0
  894. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/html-hint.js +337 -0
  895. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/javascript-hint.js +146 -0
  896. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/pig-hint.js +119 -0
  897. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/python-hint.js +95 -0
  898. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/show-hint.css +38 -0
  899. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/show-hint.js +274 -0
  900. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/hint/xml-hint.js +68 -0
  901. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/lint/coffeescript-lint.js +25 -0
  902. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/lint/javascript-lint.js +124 -0
  903. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/lint/json-lint.js +15 -0
  904. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/lint/lint.css +96 -0
  905. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/lint/lint.js +203 -0
  906. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/merge/dep/diff_match_patch.js +50 -0
  907. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/merge/merge.css +92 -0
  908. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/merge/merge.js +447 -0
  909. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/mode/loadmode.js +51 -0
  910. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/mode/multiplex.js +101 -0
  911. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/mode/multiplex_test.js +30 -0
  912. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/mode/overlay.js +59 -0
  913. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/runmode/colorize.js +29 -0
  914. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/runmode/runmode-standalone.js +132 -0
  915. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/runmode/runmode.js +56 -0
  916. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/runmode/runmode.node.js +103 -0
  917. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/search/match-highlighter.js +88 -0
  918. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/search/search.js +131 -0
  919. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/search/searchcursor.js +143 -0
  920. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/selection/active-line.js +39 -0
  921. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/selection/mark-selection.js +108 -0
  922. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/tern/tern.css +85 -0
  923. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/tern/tern.js +608 -0
  924. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/addon/tern/worker.js +39 -0
  925. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/bin/compress +92 -0
  926. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/bin/lint +15 -0
  927. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/bin/source-highlight +61 -0
  928. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/bower.json +16 -0
  929. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/activeline.html +70 -0
  930. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/anywordhint.html +69 -0
  931. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/bidi.html +61 -0
  932. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/btree.html +87 -0
  933. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/buffers.html +98 -0
  934. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/changemode.html +50 -0
  935. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/closebrackets.html +63 -0
  936. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/closetag.html +37 -0
  937. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/complete.html +70 -0
  938. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/emacs.html +66 -0
  939. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/folding.html +85 -0
  940. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/fullscreen.html +147 -0
  941. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/html5complete.html +44 -0
  942. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/indentwrap.html +49 -0
  943. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/lint.html +90 -0
  944. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/loadmode.html +40 -0
  945. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/marker.html +59 -0
  946. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/markselection.html +36 -0
  947. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/matchhighlighter.html +38 -0
  948. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/matchtags.html +38 -0
  949. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/merge.html +63 -0
  950. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/multiplex.html +66 -0
  951. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/mustache.html +59 -0
  952. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/placeholder.html +36 -0
  953. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/preview.html +76 -0
  954. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/resize.html +49 -0
  955. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/runmode.html +50 -0
  956. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/search.html +85 -0
  957. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/spanaffectswrapping_shim.html +73 -0
  958. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/tern.html +122 -0
  959. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/theme.html +100 -0
  960. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/trailingspace.html +39 -0
  961. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/variableheight.html +52 -0
  962. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/vim.html +65 -0
  963. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/visibletabs.html +53 -0
  964. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/widget.html +74 -0
  965. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/demo/xmlcomplete.html +106 -0
  966. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/index.html +480 -0
  967. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/keymap/emacs.js +387 -0
  968. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/keymap/extra.js +43 -0
  969. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/keymap/vim.js +3648 -0
  970. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/lib/codemirror.css +258 -0
  971. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/lib/codemirror.js +5799 -0
  972. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/apl/apl.js +160 -0
  973. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/apl/index.html +61 -0
  974. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/asterisk/asterisk.js +183 -0
  975. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/asterisk/index.html +142 -0
  976. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/clike/clike.js +362 -0
  977. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/clike/index.html +103 -0
  978. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/clike/scala.html +767 -0
  979. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/clojure/clojure.js +224 -0
  980. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/clojure/index.html +76 -0
  981. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/cobol/cobol.js +240 -0
  982. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/cobol/index.html +195 -0
  983. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/coffeescript/LICENSE +22 -0
  984. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/coffeescript/coffeescript.js +348 -0
  985. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/coffeescript/index.html +728 -0
  986. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/commonlisp/commonlisp.js +105 -0
  987. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/commonlisp/index.html +165 -0
  988. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/css/css.js +623 -0
  989. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/css/index.html +58 -0
  990. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/css/scss.html +145 -0
  991. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/css/scss_test.js +80 -0
  992. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/css/test.js +126 -0
  993. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/d/d.js +205 -0
  994. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/d/index.html +262 -0
  995. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/diff/diff.js +32 -0
  996. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/diff/index.html +105 -0
  997. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ecl/ecl.js +192 -0
  998. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ecl/index.html +39 -0
  999. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/erlang/erlang.js +464 -0
  1000. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/erlang/index.html +64 -0
  1001. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/gas/gas.js +330 -0
  1002. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/gas/index.html +57 -0
  1003. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/gfm/gfm.js +96 -0
  1004. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/gfm/index.html +74 -0
  1005. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/gfm/test.js +112 -0
  1006. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/go/go.js +168 -0
  1007. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/go/index.html +74 -0
  1008. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/groovy/groovy.js +211 -0
  1009. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/groovy/index.html +73 -0
  1010. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haml/haml.js +153 -0
  1011. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haml/index.html +67 -0
  1012. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haml/test.js +94 -0
  1013. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haskell/haskell.js +246 -0
  1014. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haskell/index.html +62 -0
  1015. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haxe/haxe.js +429 -0
  1016. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/haxe/index.html +90 -0
  1017. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/htmlembedded/htmlembedded.js +73 -0
  1018. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/htmlembedded/index.html +49 -0
  1019. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/htmlmixed/htmlmixed.js +104 -0
  1020. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/htmlmixed/index.html +73 -0
  1021. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/http/http.js +98 -0
  1022. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/http/index.html +32 -0
  1023. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/jade/index.html +54 -0
  1024. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/jade/jade.js +90 -0
  1025. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/index.html +94 -0
  1026. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/javascript.js +479 -0
  1027. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/test.js +10 -0
  1028. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html +48 -0
  1029. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/jinja2/index.html +38 -0
  1030. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/jinja2/jinja2.js +42 -0
  1031. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/less/index.html +741 -0
  1032. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/less/less.js +258 -0
  1033. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/livescript/LICENSE +23 -0
  1034. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/livescript/index.html +446 -0
  1035. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/livescript/livescript.js +267 -0
  1036. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/livescript/livescript.ls +266 -0
  1037. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/lua/index.html +74 -0
  1038. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/lua/lua.js +144 -0
  1039. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/markdown/index.html +349 -0
  1040. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/markdown/markdown.js +551 -0
  1041. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/markdown/test.js +656 -0
  1042. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/meta.js +81 -0
  1043. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/mirc/index.html +149 -0
  1044. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/mirc/mirc.js +177 -0
  1045. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/nginx/index.html +167 -0
  1046. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/nginx/nginx.js +163 -0
  1047. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ntriples/index.html +33 -0
  1048. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ntriples/ntriples.js +170 -0
  1049. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ocaml/index.html +131 -0
  1050. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ocaml/ocaml.js +116 -0
  1051. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/pascal/LICENSE +7 -0
  1052. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/pascal/index.html +48 -0
  1053. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/pascal/pascal.js +94 -0
  1054. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/perl/LICENSE +19 -0
  1055. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/perl/index.html +62 -0
  1056. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/perl/perl.js +816 -0
  1057. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/php/index.html +51 -0
  1058. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/php/php.js +132 -0
  1059. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/pig/index.html +42 -0
  1060. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/pig/pig.js +171 -0
  1061. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/properties/index.html +41 -0
  1062. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/properties/properties.js +63 -0
  1063. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/python/LICENSE.txt +21 -0
  1064. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/python/index.html +175 -0
  1065. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/python/python.js +358 -0
  1066. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/q/index.html +131 -0
  1067. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/q/q.js +124 -0
  1068. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/r/LICENSE +24 -0
  1069. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/r/index.html +74 -0
  1070. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/r/r.js +141 -0
  1071. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rpm/changes/changes.js +19 -0
  1072. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rpm/changes/index.html +53 -0
  1073. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rpm/spec/index.html +99 -0
  1074. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rpm/spec/spec.css +5 -0
  1075. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rpm/spec/spec.js +66 -0
  1076. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rst/LICENSE.txt +21 -0
  1077. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rst/index.html +524 -0
  1078. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rst/rst.js +561 -0
  1079. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ruby/LICENSE +24 -0
  1080. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ruby/index.html +173 -0
  1081. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/ruby/ruby.js +247 -0
  1082. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rust/index.html +48 -0
  1083. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/rust/rust.js +436 -0
  1084. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sass/index.html +54 -0
  1085. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sass/sass.js +330 -0
  1086. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/scheme/index.html +65 -0
  1087. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/scheme/scheme.js +232 -0
  1088. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/shell/index.html +51 -0
  1089. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/shell/shell.js +118 -0
  1090. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sieve/LICENSE +19 -0
  1091. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sieve/index.html +81 -0
  1092. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sieve/sieve.js +183 -0
  1093. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/smalltalk/index.html +57 -0
  1094. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/smalltalk/smalltalk.js +151 -0
  1095. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/smarty/index.html +126 -0
  1096. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/smarty/smarty.js +205 -0
  1097. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/smartymixed/index.html +107 -0
  1098. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/smartymixed/smartymixed.js +170 -0
  1099. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sparql/index.html +42 -0
  1100. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sparql/sparql.js +145 -0
  1101. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sql/index.html +68 -0
  1102. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/sql/sql.js +349 -0
  1103. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/stex/index.html +98 -0
  1104. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/stex/stex.js +246 -0
  1105. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/stex/test.js +120 -0
  1106. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tcl/index.html +129 -0
  1107. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tcl/tcl.js +131 -0
  1108. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tiddlywiki/index.html +142 -0
  1109. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  1110. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
  1111. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tiki/index.html +81 -0
  1112. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tiki/tiki.css +26 -0
  1113. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/tiki/tiki.js +308 -0
  1114. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/turtle/index.html +39 -0
  1115. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/turtle/turtle.js +145 -0
  1116. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/vb/LICENSE.txt +21 -0
  1117. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/vb/index.html +88 -0
  1118. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/vb/vb.js +259 -0
  1119. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/vbscript/index.html +43 -0
  1120. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/vbscript/vbscript.js +334 -0
  1121. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/velocity/index.html +103 -0
  1122. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/velocity/velocity.js +144 -0
  1123. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/verilog/index.html +121 -0
  1124. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/verilog/verilog.js +182 -0
  1125. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/xml/index.html +45 -0
  1126. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/xml/xml.js +341 -0
  1127. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/xquery/LICENSE +20 -0
  1128. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/xquery/index.html +221 -0
  1129. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/xquery/test.js +64 -0
  1130. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/xquery/xquery.js +450 -0
  1131. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/yaml/index.html +68 -0
  1132. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/yaml/yaml.js +97 -0
  1133. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/z80/index.html +39 -0
  1134. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/z80/z80.js +85 -0
  1135. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/package.json +19 -0
  1136. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/comment_test.js +51 -0
  1137. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/doc_test.js +329 -0
  1138. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/driver.js +139 -0
  1139. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/emacs_test.js +135 -0
  1140. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/index.html +196 -0
  1141. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/lint/acorn.js +1593 -0
  1142. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/lint/lint.js +112 -0
  1143. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/lint/parse-js.js +1372 -0
  1144. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/lint/walk.js +216 -0
  1145. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/mode_test.css +10 -0
  1146. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/mode_test.js +192 -0
  1147. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/phantom_driver.js +31 -0
  1148. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/run.js +34 -0
  1149. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/test.js +1511 -0
  1150. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/test/vim_test.js +2356 -0
  1151. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/3024-day.css +33 -0
  1152. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/3024-night.css +33 -0
  1153. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/ambiance-mobile.css +5 -0
  1154. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/ambiance.css +75 -0
  1155. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/base16-dark.css +33 -0
  1156. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/base16-light.css +33 -0
  1157. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/blackboard.css +25 -0
  1158. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/cobalt.css +18 -0
  1159. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/eclipse.css +25 -0
  1160. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/elegant.css +10 -0
  1161. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/erlang-dark.css +21 -0
  1162. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/lesser-dark.css +44 -0
  1163. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/midnight.css +43 -0
  1164. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/monokai.css +28 -0
  1165. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/neat.css +9 -0
  1166. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/night.css +21 -0
  1167. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/rubyblue.css +21 -0
  1168. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/solarized.css +207 -0
  1169. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/tomorrow-night-eighties.css +33 -0
  1170. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/twilight.css +26 -0
  1171. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/vibrant-ink.css +27 -0
  1172. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/xq-dark.css +46 -0
  1173. data/skel/project_types/silverstripe3/public/abc/lib/codemirror/theme/xq-light.css +43 -0
  1174. data/skel/project_types/silverstripe3/public/abc/templates/ChildList.ss +34 -0
  1175. data/skel/project_types/silverstripe3/public/abc/templates/ColourPickerField.ss +1 -0
  1176. data/skel/project_types/silverstripe3/public/abc/templates/OrderList.ss +27 -0
  1177. data/skel/project_types/silverstripe3/public/abc/templates/Pagination.ss +32 -0
  1178. data/skel/project_types/silverstripe3/public/abc/templates/SyntaxHighlightedField.ss +1 -0
  1179. data/skel/project_types/silverstripe3/public/index.php.bak +66 -0
  1180. data/skel/project_types/silverstripe3/public/project/.htaccess +3 -0
  1181. data/skel/project_types/silverstripe3/public/project/_config/config.yml +9 -0
  1182. data/skel/project_types/silverstripe3/public/project/_config.php +147 -0
  1183. data/skel/project_types/silverstripe3/public/project/code/Pages/Page.php +57 -0
  1184. data/skel/project_types/silverstripe3/public/themes/project/images/apple-touch-icon-114x114-precomposed.png +0 -0
  1185. data/skel/project_types/silverstripe3/public/themes/project/images/apple-touch-icon-72x72-precomposed.png +0 -0
  1186. data/skel/project_types/silverstripe3/public/themes/project/images/apple-touch-icon.png +0 -0
  1187. data/skel/project_types/silverstripe3/public/themes/project/images/favicon.png +0 -0
  1188. data/skel/project_types/silverstripe3/public/themes/project/templates/Layout/Page.ss +2 -0
  1189. data/skel/project_types/silverstripe3/public/themes/project/templates/Layout/Security.ss +2 -0
  1190. data/skel/project_types/silverstripe3/public/themes/project/templates/Page.ss +73 -0
  1191. data/skel/project_types/silverstripe3/public/zzz-abc/_config.php +22 -0
  1192. metadata +1240 -5
@@ -0,0 +1,4845 @@
1
+ /*!
2
+ * Bootstrap v3.0.0
3
+ *
4
+ * Copyright 2013 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world by @mdo and @fat.
9
+ */
10
+
11
+ /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
12
+
13
+ article,
14
+ aside,
15
+ details,
16
+ figcaption,
17
+ figure,
18
+ footer,
19
+ header,
20
+ hgroup,
21
+ main,
22
+ nav,
23
+ section,
24
+ summary {
25
+ display: block;
26
+ }
27
+
28
+ audio,
29
+ canvas,
30
+ video {
31
+ display: inline-block;
32
+ }
33
+
34
+ audio:not([controls]) {
35
+ display: none;
36
+ height: 0;
37
+ }
38
+
39
+ [hidden] {
40
+ display: none;
41
+ }
42
+
43
+ html {
44
+ font-family: sans-serif;
45
+ -webkit-text-size-adjust: 100%;
46
+ -ms-text-size-adjust: 100%;
47
+ }
48
+
49
+ body {
50
+ margin: 0;
51
+ }
52
+
53
+ a:focus {
54
+ outline: thin dotted;
55
+ }
56
+
57
+ a:active,
58
+ a:hover {
59
+ outline: 0;
60
+ }
61
+
62
+ h1 {
63
+ margin: 0.67em 0;
64
+ font-size: 2em;
65
+ }
66
+
67
+ abbr[title] {
68
+ border-bottom: 1px dotted;
69
+ }
70
+
71
+ b,
72
+ strong {
73
+ font-weight: bold;
74
+ }
75
+
76
+ dfn {
77
+ font-style: italic;
78
+ }
79
+
80
+ hr {
81
+ height: 0;
82
+ -moz-box-sizing: content-box;
83
+ box-sizing: content-box;
84
+ }
85
+
86
+ mark {
87
+ color: #000;
88
+ background: #ff0;
89
+ }
90
+
91
+ code,
92
+ kbd,
93
+ pre,
94
+ samp {
95
+ font-family: monospace, serif;
96
+ font-size: 1em;
97
+ }
98
+
99
+ pre {
100
+ white-space: pre-wrap;
101
+ }
102
+
103
+ q {
104
+ quotes: "\201C" "\201D" "\2018" "\2019";
105
+ }
106
+
107
+ small {
108
+ font-size: 80%;
109
+ }
110
+
111
+ sub,
112
+ sup {
113
+ position: relative;
114
+ font-size: 75%;
115
+ line-height: 0;
116
+ vertical-align: baseline;
117
+ }
118
+
119
+ sup {
120
+ top: -0.5em;
121
+ }
122
+
123
+ sub {
124
+ bottom: -0.25em;
125
+ }
126
+
127
+ img {
128
+ border: 0;
129
+ }
130
+
131
+ svg:not(:root) {
132
+ overflow: hidden;
133
+ }
134
+
135
+ figure {
136
+ margin: 0;
137
+ }
138
+
139
+ fieldset {
140
+ padding: 0.35em 0.625em 0.75em;
141
+ margin: 0 2px;
142
+ border: 1px solid #c0c0c0;
143
+ }
144
+
145
+ legend {
146
+ padding: 0;
147
+ border: 0;
148
+ }
149
+
150
+ button,
151
+ input,
152
+ select,
153
+ textarea {
154
+ margin: 0;
155
+ font-family: inherit;
156
+ font-size: 100%;
157
+ }
158
+
159
+ button,
160
+ input {
161
+ line-height: normal;
162
+ }
163
+
164
+ button,
165
+ select {
166
+ text-transform: none;
167
+ }
168
+
169
+ button,
170
+ html input[type="button"],
171
+ input[type="reset"],
172
+ input[type="submit"] {
173
+ cursor: pointer;
174
+ -webkit-appearance: button;
175
+ }
176
+
177
+ button[disabled],
178
+ html input[disabled] {
179
+ cursor: default;
180
+ }
181
+
182
+ input[type="checkbox"],
183
+ input[type="radio"] {
184
+ padding: 0;
185
+ box-sizing: border-box;
186
+ }
187
+
188
+ input[type="search"] {
189
+ -webkit-box-sizing: content-box;
190
+ -moz-box-sizing: content-box;
191
+ box-sizing: content-box;
192
+ -webkit-appearance: textfield;
193
+ }
194
+
195
+ input[type="search"]::-webkit-search-cancel-button,
196
+ input[type="search"]::-webkit-search-decoration {
197
+ -webkit-appearance: none;
198
+ }
199
+
200
+ button::-moz-focus-inner,
201
+ input::-moz-focus-inner {
202
+ padding: 0;
203
+ border: 0;
204
+ }
205
+
206
+ textarea {
207
+ overflow: auto;
208
+ vertical-align: top;
209
+ }
210
+
211
+ table {
212
+ border-collapse: collapse;
213
+ border-spacing: 0;
214
+ }
215
+
216
+ @media print {
217
+ * {
218
+ color: #000 !important;
219
+ text-shadow: none !important;
220
+ background: transparent !important;
221
+ box-shadow: none !important;
222
+ }
223
+ a,
224
+ a:visited {
225
+ text-decoration: underline;
226
+ }
227
+ a[href]:after {
228
+ content: " (" attr(href) ")";
229
+ }
230
+ abbr[title]:after {
231
+ content: " (" attr(title) ")";
232
+ }
233
+ .ir a:after,
234
+ a[href^="javascript:"]:after,
235
+ a[href^="#"]:after {
236
+ content: "";
237
+ }
238
+ pre,
239
+ blockquote {
240
+ border: 1px solid #999;
241
+ page-break-inside: avoid;
242
+ }
243
+ thead {
244
+ display: table-header-group;
245
+ }
246
+ tr,
247
+ img {
248
+ page-break-inside: avoid;
249
+ }
250
+ img {
251
+ max-width: 100% !important;
252
+ }
253
+ @page {
254
+ margin: 2cm .5cm;
255
+ }
256
+ p,
257
+ h2,
258
+ h3 {
259
+ orphans: 3;
260
+ widows: 3;
261
+ }
262
+ h2,
263
+ h3 {
264
+ page-break-after: avoid;
265
+ }
266
+ .navbar {
267
+ display: none;
268
+ }
269
+ .table td,
270
+ .table th {
271
+ background-color: #fff !important;
272
+ }
273
+ .btn > .caret,
274
+ .dropup > .btn > .caret {
275
+ border-top-color: #000 !important;
276
+ }
277
+ .label {
278
+ border: 1px solid #000;
279
+ }
280
+ .table {
281
+ border-collapse: collapse !important;
282
+ }
283
+ .table-bordered th,
284
+ .table-bordered td {
285
+ border: 1px solid #ddd !important;
286
+ }
287
+ }
288
+
289
+ * {
290
+ -webkit-box-sizing: border-box;
291
+ -moz-box-sizing: border-box;
292
+ box-sizing: border-box;
293
+ }
294
+
295
+ html {
296
+ font-size: 62.5%;
297
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
298
+ }
299
+
300
+ body {
301
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
302
+ font-size: 14px;
303
+ line-height: 1.428571429;
304
+ color: #333333;
305
+ background-color: #ffffff;
306
+ }
307
+
308
+ input,
309
+ button,
310
+ select,
311
+ textarea {
312
+ font-family: inherit;
313
+ font-size: inherit;
314
+ line-height: inherit;
315
+ }
316
+
317
+ a {
318
+ color: #428bca;
319
+ text-decoration: none;
320
+ }
321
+
322
+ a:hover,
323
+ a:focus {
324
+ color: #2a6496;
325
+ text-decoration: underline;
326
+ }
327
+
328
+ a:focus {
329
+ outline: thin dotted #333;
330
+ outline: 5px auto -webkit-focus-ring-color;
331
+ outline-offset: -2px;
332
+ }
333
+
334
+ img {
335
+ vertical-align: middle;
336
+ }
337
+
338
+ .img-responsive {
339
+ display: inline-block;
340
+ height: auto;
341
+ max-width: 100%;
342
+ }
343
+
344
+ .img-rounded {
345
+ border-radius: 6px;
346
+ }
347
+
348
+ .img-circle {
349
+ border-radius: 500px;
350
+ }
351
+
352
+ hr {
353
+ margin-top: 20px;
354
+ margin-bottom: 20px;
355
+ border: 0;
356
+ border-top: 1px solid #eeeeee;
357
+ }
358
+
359
+ p {
360
+ margin: 0 0 10px;
361
+ }
362
+
363
+ .lead {
364
+ margin-bottom: 20px;
365
+ font-size: 16.099999999999998px;
366
+ font-weight: 200;
367
+ line-height: 1.4;
368
+ }
369
+
370
+ @media (min-width: 768px) {
371
+ .lead {
372
+ font-size: 21px;
373
+ }
374
+ }
375
+
376
+ small {
377
+ font-size: 85%;
378
+ }
379
+
380
+ cite {
381
+ font-style: normal;
382
+ }
383
+
384
+ .text-muted {
385
+ color: #999999;
386
+ }
387
+
388
+ .text-primary {
389
+ color: #428bca;
390
+ }
391
+
392
+ .text-warning {
393
+ color: #c09853;
394
+ }
395
+
396
+ .text-danger {
397
+ color: #b94a48;
398
+ }
399
+
400
+ .text-success {
401
+ color: #468847;
402
+ }
403
+
404
+ .text-info {
405
+ color: #3a87ad;
406
+ }
407
+
408
+ .text-left {
409
+ text-align: left;
410
+ }
411
+
412
+ .text-right {
413
+ text-align: right;
414
+ }
415
+
416
+ .text-center {
417
+ text-align: center;
418
+ }
419
+
420
+ h1,
421
+ h2,
422
+ h3,
423
+ h4,
424
+ h5,
425
+ h6,
426
+ .h1,
427
+ .h2,
428
+ .h3,
429
+ .h4,
430
+ .h5,
431
+ .h6 {
432
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
433
+ font-weight: 500;
434
+ line-height: 1.1;
435
+ }
436
+
437
+ h1 small,
438
+ h2 small,
439
+ h3 small,
440
+ h4 small,
441
+ h5 small,
442
+ h6 small,
443
+ .h1 small,
444
+ .h2 small,
445
+ .h3 small,
446
+ .h4 small,
447
+ .h5 small,
448
+ .h6 small {
449
+ font-weight: normal;
450
+ line-height: 1;
451
+ color: #999999;
452
+ }
453
+
454
+ h1,
455
+ h2,
456
+ h3 {
457
+ margin-top: 20px;
458
+ margin-bottom: 10px;
459
+ }
460
+
461
+ h4,
462
+ h5,
463
+ h6 {
464
+ margin-top: 10px;
465
+ margin-bottom: 10px;
466
+ }
467
+
468
+ h1,
469
+ .h1 {
470
+ font-size: 38px;
471
+ }
472
+
473
+ h2,
474
+ .h2 {
475
+ font-size: 32px;
476
+ }
477
+
478
+ h3,
479
+ .h3 {
480
+ font-size: 24px;
481
+ }
482
+
483
+ h4,
484
+ .h4 {
485
+ font-size: 18px;
486
+ }
487
+
488
+ h5,
489
+ .h5 {
490
+ font-size: 14px;
491
+ }
492
+
493
+ h6,
494
+ .h6 {
495
+ font-size: 12px;
496
+ }
497
+
498
+ h1 small,
499
+ .h1 small {
500
+ font-size: 24px;
501
+ }
502
+
503
+ h2 small,
504
+ .h2 small {
505
+ font-size: 18px;
506
+ }
507
+
508
+ h3 small,
509
+ .h3 small,
510
+ h4 small,
511
+ .h4 small {
512
+ font-size: 14px;
513
+ }
514
+
515
+ .page-header {
516
+ padding-bottom: 9px;
517
+ margin: 40px 0 20px;
518
+ border-bottom: 1px solid #eeeeee;
519
+ }
520
+
521
+ ul,
522
+ ol {
523
+ margin-top: 0;
524
+ margin-bottom: 10px;
525
+ }
526
+
527
+ ul ul,
528
+ ol ul,
529
+ ul ol,
530
+ ol ol {
531
+ margin-bottom: 0;
532
+ }
533
+
534
+ .list-unstyled {
535
+ padding-left: 0;
536
+ list-style: none;
537
+ }
538
+
539
+ .list-inline {
540
+ padding-left: 0;
541
+ list-style: none;
542
+ }
543
+
544
+ .list-inline > li {
545
+ display: inline-block;
546
+ padding-right: 5px;
547
+ padding-left: 5px;
548
+ }
549
+
550
+ dl {
551
+ margin-bottom: 20px;
552
+ }
553
+
554
+ dt,
555
+ dd {
556
+ line-height: 1.428571429;
557
+ }
558
+
559
+ dt {
560
+ font-weight: bold;
561
+ }
562
+
563
+ dd {
564
+ margin-left: 0;
565
+ }
566
+
567
+ @media (min-width: 768px) {
568
+ .dl-horizontal dt {
569
+ float: left;
570
+ width: 160px;
571
+ overflow: hidden;
572
+ clear: left;
573
+ text-align: right;
574
+ text-overflow: ellipsis;
575
+ white-space: nowrap;
576
+ }
577
+ .dl-horizontal dd {
578
+ margin-left: 180px;
579
+ }
580
+ .dl-horizontal dd:before,
581
+ .dl-horizontal dd:after {
582
+ display: table;
583
+ content: " ";
584
+ }
585
+ .dl-horizontal dd:after {
586
+ clear: both;
587
+ }
588
+ .dl-horizontal dd:before,
589
+ .dl-horizontal dd:after {
590
+ display: table;
591
+ content: " ";
592
+ }
593
+ .dl-horizontal dd:after {
594
+ clear: both;
595
+ }
596
+ }
597
+
598
+ abbr[title],
599
+ abbr[data-original-title] {
600
+ cursor: help;
601
+ border-bottom: 1px dotted #999999;
602
+ }
603
+
604
+ abbr.initialism {
605
+ font-size: 90%;
606
+ text-transform: uppercase;
607
+ }
608
+
609
+ blockquote {
610
+ padding: 10px 20px;
611
+ margin: 0 0 20px;
612
+ border-left: 5px solid #eeeeee;
613
+ }
614
+
615
+ blockquote p {
616
+ font-size: 17.5px;
617
+ font-weight: 300;
618
+ line-height: 1.25;
619
+ }
620
+
621
+ blockquote p:last-child {
622
+ margin-bottom: 0;
623
+ }
624
+
625
+ blockquote small {
626
+ display: block;
627
+ line-height: 1.428571429;
628
+ color: #999999;
629
+ }
630
+
631
+ blockquote small:before {
632
+ content: '\2014 \00A0';
633
+ }
634
+
635
+ blockquote.pull-right {
636
+ padding-right: 15px;
637
+ padding-left: 0;
638
+ border-right: 5px solid #eeeeee;
639
+ border-left: 0;
640
+ }
641
+
642
+ blockquote.pull-right p,
643
+ blockquote.pull-right small {
644
+ text-align: right;
645
+ }
646
+
647
+ blockquote.pull-right small:before {
648
+ content: '';
649
+ }
650
+
651
+ blockquote.pull-right small:after {
652
+ content: '\00A0 \2014';
653
+ }
654
+
655
+ q:before,
656
+ q:after,
657
+ blockquote:before,
658
+ blockquote:after {
659
+ content: "";
660
+ }
661
+
662
+ address {
663
+ display: block;
664
+ margin-bottom: 20px;
665
+ font-style: normal;
666
+ line-height: 1.428571429;
667
+ }
668
+
669
+ code,
670
+ pre {
671
+ font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
672
+ }
673
+
674
+ code {
675
+ padding: 2px 4px;
676
+ font-size: 90%;
677
+ color: #c7254e;
678
+ white-space: nowrap;
679
+ background-color: #f9f2f4;
680
+ border-radius: 4px;
681
+ }
682
+
683
+ pre {
684
+ display: block;
685
+ padding: 9.5px;
686
+ margin: 0 0 10px;
687
+ font-size: 13px;
688
+ line-height: 1.428571429;
689
+ color: #333333;
690
+ word-break: break-all;
691
+ word-wrap: break-word;
692
+ background-color: #f5f5f5;
693
+ border: 1px solid #cccccc;
694
+ border-radius: 4px;
695
+ }
696
+
697
+ pre.prettyprint {
698
+ margin-bottom: 20px;
699
+ }
700
+
701
+ pre code {
702
+ padding: 0;
703
+ color: inherit;
704
+ white-space: pre-wrap;
705
+ background-color: transparent;
706
+ border: 0;
707
+ }
708
+
709
+ .pre-scrollable {
710
+ max-height: 340px;
711
+ overflow-y: scroll;
712
+ }
713
+
714
+ .container {
715
+ margin-right: auto;
716
+ margin-left: auto;
717
+ }
718
+
719
+ .container:before,
720
+ .container:after {
721
+ display: table;
722
+ content: " ";
723
+ }
724
+
725
+ .container:after {
726
+ clear: both;
727
+ }
728
+
729
+ .container:before,
730
+ .container:after {
731
+ display: table;
732
+ content: " ";
733
+ }
734
+
735
+ .container:after {
736
+ clear: both;
737
+ }
738
+
739
+ .row:before,
740
+ .row:after {
741
+ display: table;
742
+ content: " ";
743
+ }
744
+
745
+ .row:after {
746
+ clear: both;
747
+ }
748
+
749
+ .row:before,
750
+ .row:after {
751
+ display: table;
752
+ content: " ";
753
+ }
754
+
755
+ .row:after {
756
+ clear: both;
757
+ }
758
+
759
+ @media (min-width: 768px) {
760
+ .row {
761
+ margin-right: -15px;
762
+ margin-left: -15px;
763
+ }
764
+ }
765
+
766
+ .row .row {
767
+ margin-right: -15px;
768
+ margin-left: -15px;
769
+ }
770
+
771
+ .col-1,
772
+ .col-2,
773
+ .col-3,
774
+ .col-4,
775
+ .col-5,
776
+ .col-6,
777
+ .col-7,
778
+ .col-8,
779
+ .col-9,
780
+ .col-10,
781
+ .col-11,
782
+ .col-12,
783
+ .col-sm-1,
784
+ .col-sm-2,
785
+ .col-sm-3,
786
+ .col-sm-4,
787
+ .col-sm-5,
788
+ .col-sm-6,
789
+ .col-sm-7,
790
+ .col-sm-8,
791
+ .col-sm-9,
792
+ .col-sm-10,
793
+ .col-sm-11,
794
+ .col-sm-12,
795
+ .col-lg-1,
796
+ .col-lg-2,
797
+ .col-lg-3,
798
+ .col-lg-4,
799
+ .col-lg-5,
800
+ .col-lg-6,
801
+ .col-lg-7,
802
+ .col-lg-8,
803
+ .col-lg-9,
804
+ .col-lg-10,
805
+ .col-lg-11,
806
+ .col-lg-12 {
807
+ position: relative;
808
+ min-height: 1px;
809
+ padding-right: 15px;
810
+ padding-left: 15px;
811
+ }
812
+
813
+ .col-1,
814
+ .col-2,
815
+ .col-3,
816
+ .col-4,
817
+ .col-5,
818
+ .col-6,
819
+ .col-7,
820
+ .col-8,
821
+ .col-9,
822
+ .col-10,
823
+ .col-11,
824
+ .col-12 {
825
+ float: left;
826
+ }
827
+
828
+ .col-1 {
829
+ width: 8.333333333333332%;
830
+ }
831
+
832
+ .col-2 {
833
+ width: 16.666666666666664%;
834
+ }
835
+
836
+ .col-3 {
837
+ width: 25%;
838
+ }
839
+
840
+ .col-4 {
841
+ width: 33.33333333333333%;
842
+ }
843
+
844
+ .col-5 {
845
+ width: 41.66666666666667%;
846
+ }
847
+
848
+ .col-6 {
849
+ width: 50%;
850
+ }
851
+
852
+ .col-7 {
853
+ width: 58.333333333333336%;
854
+ }
855
+
856
+ .col-8 {
857
+ width: 66.66666666666666%;
858
+ }
859
+
860
+ .col-9 {
861
+ width: 75%;
862
+ }
863
+
864
+ .col-10 {
865
+ width: 83.33333333333334%;
866
+ }
867
+
868
+ .col-11 {
869
+ width: 91.66666666666666%;
870
+ }
871
+
872
+ .col-12 {
873
+ width: 100%;
874
+ }
875
+
876
+ @media (min-width: 768px) and (max-width: 991px) {
877
+ .container {
878
+ max-width: 728px;
879
+ }
880
+ .col-sm-1,
881
+ .col-sm-2,
882
+ .col-sm-3,
883
+ .col-sm-4,
884
+ .col-sm-5,
885
+ .col-sm-6,
886
+ .col-sm-7,
887
+ .col-sm-8,
888
+ .col-sm-9,
889
+ .col-sm-10,
890
+ .col-sm-11,
891
+ .col-sm-12 {
892
+ float: left;
893
+ }
894
+ .col-sm-1 {
895
+ width: 8.333333333333332%;
896
+ }
897
+ .col-sm-2 {
898
+ width: 16.666666666666664%;
899
+ }
900
+ .col-sm-3 {
901
+ width: 25%;
902
+ }
903
+ .col-sm-4 {
904
+ width: 33.33333333333333%;
905
+ }
906
+ .col-sm-5 {
907
+ width: 41.66666666666667%;
908
+ }
909
+ .col-sm-6 {
910
+ width: 50%;
911
+ }
912
+ .col-sm-7 {
913
+ width: 58.333333333333336%;
914
+ }
915
+ .col-sm-8 {
916
+ width: 66.66666666666666%;
917
+ }
918
+ .col-sm-9 {
919
+ width: 75%;
920
+ }
921
+ .col-sm-10 {
922
+ width: 83.33333333333334%;
923
+ }
924
+ .col-sm-11 {
925
+ width: 91.66666666666666%;
926
+ }
927
+ .col-sm-12 {
928
+ width: 100%;
929
+ }
930
+ .col-sm-push-1 {
931
+ left: 8.333333333333332%;
932
+ }
933
+ .col-sm-push-2 {
934
+ left: 16.666666666666664%;
935
+ }
936
+ .col-sm-push-3 {
937
+ left: 25%;
938
+ }
939
+ .col-sm-push-4 {
940
+ left: 33.33333333333333%;
941
+ }
942
+ .col-sm-push-5 {
943
+ left: 41.66666666666667%;
944
+ }
945
+ .col-sm-push-6 {
946
+ left: 50%;
947
+ }
948
+ .col-sm-push-7 {
949
+ left: 58.333333333333336%;
950
+ }
951
+ .col-sm-push-8 {
952
+ left: 66.66666666666666%;
953
+ }
954
+ .col-sm-push-9 {
955
+ left: 75%;
956
+ }
957
+ .col-sm-push-10 {
958
+ left: 83.33333333333334%;
959
+ }
960
+ .col-sm-push-11 {
961
+ left: 91.66666666666666%;
962
+ }
963
+ .col-sm-pull-1 {
964
+ right: 8.333333333333332%;
965
+ }
966
+ .col-sm-pull-2 {
967
+ right: 16.666666666666664%;
968
+ }
969
+ .col-sm-pull-3 {
970
+ right: 25%;
971
+ }
972
+ .col-sm-pull-4 {
973
+ right: 33.33333333333333%;
974
+ }
975
+ .col-sm-pull-5 {
976
+ right: 41.66666666666667%;
977
+ }
978
+ .col-sm-pull-6 {
979
+ right: 50%;
980
+ }
981
+ .col-sm-pull-7 {
982
+ right: 58.333333333333336%;
983
+ }
984
+ .col-sm-pull-8 {
985
+ right: 66.66666666666666%;
986
+ }
987
+ .col-sm-pull-9 {
988
+ right: 75%;
989
+ }
990
+ .col-sm-pull-10 {
991
+ right: 83.33333333333334%;
992
+ }
993
+ .col-sm-pull-11 {
994
+ right: 91.66666666666666%;
995
+ }
996
+ .col-sm-offset-1 {
997
+ margin-left: 8.333333333333332%;
998
+ }
999
+ .col-sm-offset-2 {
1000
+ margin-left: 16.666666666666664%;
1001
+ }
1002
+ .col-sm-offset-3 {
1003
+ margin-left: 25%;
1004
+ }
1005
+ .col-sm-offset-4 {
1006
+ margin-left: 33.33333333333333%;
1007
+ }
1008
+ .col-sm-offset-5 {
1009
+ margin-left: 41.66666666666667%;
1010
+ }
1011
+ .col-sm-offset-6 {
1012
+ margin-left: 50%;
1013
+ }
1014
+ .col-sm-offset-7 {
1015
+ margin-left: 58.333333333333336%;
1016
+ }
1017
+ .col-sm-offset-8 {
1018
+ margin-left: 66.66666666666666%;
1019
+ }
1020
+ .col-sm-offset-9 {
1021
+ margin-left: 75%;
1022
+ }
1023
+ .col-sm-offset-10 {
1024
+ margin-left: 83.33333333333334%;
1025
+ }
1026
+ .col-sm-offset-11 {
1027
+ margin-left: 91.66666666666666%;
1028
+ }
1029
+ }
1030
+
1031
+ @media (min-width: 992px) {
1032
+ .container {
1033
+ max-width: 940px;
1034
+ }
1035
+ .col-lg-1,
1036
+ .col-lg-2,
1037
+ .col-lg-3,
1038
+ .col-lg-4,
1039
+ .col-lg-5,
1040
+ .col-lg-6,
1041
+ .col-lg-7,
1042
+ .col-lg-8,
1043
+ .col-lg-9,
1044
+ .col-lg-10,
1045
+ .col-lg-11,
1046
+ .col-lg-12 {
1047
+ float: left;
1048
+ }
1049
+ .col-lg-1 {
1050
+ width: 8.333333333333332%;
1051
+ }
1052
+ .col-lg-2 {
1053
+ width: 16.666666666666664%;
1054
+ }
1055
+ .col-lg-3 {
1056
+ width: 25%;
1057
+ }
1058
+ .col-lg-4 {
1059
+ width: 33.33333333333333%;
1060
+ }
1061
+ .col-lg-5 {
1062
+ width: 41.66666666666667%;
1063
+ }
1064
+ .col-lg-6 {
1065
+ width: 50%;
1066
+ }
1067
+ .col-lg-7 {
1068
+ width: 58.333333333333336%;
1069
+ }
1070
+ .col-lg-8 {
1071
+ width: 66.66666666666666%;
1072
+ }
1073
+ .col-lg-9 {
1074
+ width: 75%;
1075
+ }
1076
+ .col-lg-10 {
1077
+ width: 83.33333333333334%;
1078
+ }
1079
+ .col-lg-11 {
1080
+ width: 91.66666666666666%;
1081
+ }
1082
+ .col-lg-12 {
1083
+ width: 100%;
1084
+ }
1085
+ .col-lg-push-1 {
1086
+ left: 8.333333333333332%;
1087
+ }
1088
+ .col-lg-push-2 {
1089
+ left: 16.666666666666664%;
1090
+ }
1091
+ .col-lg-push-3 {
1092
+ left: 25%;
1093
+ }
1094
+ .col-lg-push-4 {
1095
+ left: 33.33333333333333%;
1096
+ }
1097
+ .col-lg-push-5 {
1098
+ left: 41.66666666666667%;
1099
+ }
1100
+ .col-lg-push-6 {
1101
+ left: 50%;
1102
+ }
1103
+ .col-lg-push-7 {
1104
+ left: 58.333333333333336%;
1105
+ }
1106
+ .col-lg-push-8 {
1107
+ left: 66.66666666666666%;
1108
+ }
1109
+ .col-lg-push-9 {
1110
+ left: 75%;
1111
+ }
1112
+ .col-lg-push-10 {
1113
+ left: 83.33333333333334%;
1114
+ }
1115
+ .col-lg-push-11 {
1116
+ left: 91.66666666666666%;
1117
+ }
1118
+ .col-lg-pull-1 {
1119
+ right: 8.333333333333332%;
1120
+ }
1121
+ .col-lg-pull-2 {
1122
+ right: 16.666666666666664%;
1123
+ }
1124
+ .col-lg-pull-3 {
1125
+ right: 25%;
1126
+ }
1127
+ .col-lg-pull-4 {
1128
+ right: 33.33333333333333%;
1129
+ }
1130
+ .col-lg-pull-5 {
1131
+ right: 41.66666666666667%;
1132
+ }
1133
+ .col-lg-pull-6 {
1134
+ right: 50%;
1135
+ }
1136
+ .col-lg-pull-7 {
1137
+ right: 58.333333333333336%;
1138
+ }
1139
+ .col-lg-pull-8 {
1140
+ right: 66.66666666666666%;
1141
+ }
1142
+ .col-lg-pull-9 {
1143
+ right: 75%;
1144
+ }
1145
+ .col-lg-pull-10 {
1146
+ right: 83.33333333333334%;
1147
+ }
1148
+ .col-lg-pull-11 {
1149
+ right: 91.66666666666666%;
1150
+ }
1151
+ .col-lg-offset-1 {
1152
+ margin-left: 8.333333333333332%;
1153
+ }
1154
+ .col-lg-offset-2 {
1155
+ margin-left: 16.666666666666664%;
1156
+ }
1157
+ .col-lg-offset-3 {
1158
+ margin-left: 25%;
1159
+ }
1160
+ .col-lg-offset-4 {
1161
+ margin-left: 33.33333333333333%;
1162
+ }
1163
+ .col-lg-offset-5 {
1164
+ margin-left: 41.66666666666667%;
1165
+ }
1166
+ .col-lg-offset-6 {
1167
+ margin-left: 50%;
1168
+ }
1169
+ .col-lg-offset-7 {
1170
+ margin-left: 58.333333333333336%;
1171
+ }
1172
+ .col-lg-offset-8 {
1173
+ margin-left: 66.66666666666666%;
1174
+ }
1175
+ .col-lg-offset-9 {
1176
+ margin-left: 75%;
1177
+ }
1178
+ .col-lg-offset-10 {
1179
+ margin-left: 83.33333333333334%;
1180
+ }
1181
+ .col-lg-offset-11 {
1182
+ margin-left: 91.66666666666666%;
1183
+ }
1184
+ }
1185
+
1186
+ @media (min-width: 1200px) {
1187
+ .container {
1188
+ max-width: 1170px;
1189
+ }
1190
+ }
1191
+
1192
+ table {
1193
+ max-width: 100%;
1194
+ background-color: transparent;
1195
+ }
1196
+
1197
+ th {
1198
+ text-align: left;
1199
+ }
1200
+
1201
+ .table {
1202
+ width: 100%;
1203
+ margin-bottom: 20px;
1204
+ }
1205
+
1206
+ .table thead > tr > th,
1207
+ .table tbody > tr > th,
1208
+ .table tfoot > tr > th,
1209
+ .table thead > tr > td,
1210
+ .table tbody > tr > td,
1211
+ .table tfoot > tr > td {
1212
+ padding: 8px;
1213
+ line-height: 1.428571429;
1214
+ vertical-align: top;
1215
+ border-top: 1px solid #dddddd;
1216
+ }
1217
+
1218
+ .table thead > tr > th {
1219
+ vertical-align: bottom;
1220
+ }
1221
+
1222
+ .table caption + thead tr:first-child th,
1223
+ .table colgroup + thead tr:first-child th,
1224
+ .table thead:first-child tr:first-child th,
1225
+ .table caption + thead tr:first-child td,
1226
+ .table colgroup + thead tr:first-child td,
1227
+ .table thead:first-child tr:first-child td {
1228
+ border-top: 0;
1229
+ }
1230
+
1231
+ .table tbody + tbody {
1232
+ border-top: 2px solid #dddddd;
1233
+ }
1234
+
1235
+ .table .table {
1236
+ background-color: #ffffff;
1237
+ }
1238
+
1239
+ .table-condensed thead > tr > th,
1240
+ .table-condensed tbody > tr > th,
1241
+ .table-condensed tfoot > tr > th,
1242
+ .table-condensed thead > tr > td,
1243
+ .table-condensed tbody > tr > td,
1244
+ .table-condensed tfoot > tr > td {
1245
+ padding: 5px;
1246
+ }
1247
+
1248
+ .table-bordered {
1249
+ border: 1px solid #dddddd;
1250
+ }
1251
+
1252
+ .table-bordered > thead > tr > th,
1253
+ .table-bordered > tbody > tr > th,
1254
+ .table-bordered > tfoot > tr > th,
1255
+ .table-bordered > thead > tr > td,
1256
+ .table-bordered > tbody > tr > td,
1257
+ .table-bordered > tfoot > tr > td {
1258
+ border: 1px solid #dddddd;
1259
+ }
1260
+
1261
+ .table-striped > tbody > tr:nth-child(odd) > td,
1262
+ .table-striped > tbody > tr:nth-child(odd) > th {
1263
+ background-color: #f9f9f9;
1264
+ }
1265
+
1266
+ .table-hover > tbody > tr:hover > td,
1267
+ .table-hover > tbody > tr:hover > th {
1268
+ background-color: #f5f5f5;
1269
+ }
1270
+
1271
+ table col[class^="col-"] {
1272
+ display: table-column;
1273
+ float: none;
1274
+ }
1275
+
1276
+ table td[class^="col-"],
1277
+ table th[class^="col-"] {
1278
+ display: table-cell;
1279
+ float: none;
1280
+ }
1281
+
1282
+ .table > thead > tr > td.active,
1283
+ .table > tbody > tr > td.active,
1284
+ .table > tfoot > tr > td.active,
1285
+ .table > thead > tr > th.active,
1286
+ .table > tbody > tr > th.active,
1287
+ .table > tfoot > tr > th.active,
1288
+ .table > thead > tr.active > td,
1289
+ .table > tbody > tr.active > td,
1290
+ .table > tfoot > tr.active > td,
1291
+ .table > thead > tr.active > th,
1292
+ .table > tbody > tr.active > th,
1293
+ .table > tfoot > tr.active > th {
1294
+ background-color: #f5f5f5;
1295
+ }
1296
+
1297
+ .table > thead > tr > td.success,
1298
+ .table > tbody > tr > td.success,
1299
+ .table > tfoot > tr > td.success,
1300
+ .table > thead > tr > th.success,
1301
+ .table > tbody > tr > th.success,
1302
+ .table > tfoot > tr > th.success,
1303
+ .table > thead > tr.success > td,
1304
+ .table > tbody > tr.success > td,
1305
+ .table > tfoot > tr.success > td,
1306
+ .table > thead > tr.success > th,
1307
+ .table > tbody > tr.success > th,
1308
+ .table > tfoot > tr.success > th {
1309
+ background-color: #dff0d8;
1310
+ border-color: #d6e9c6;
1311
+ }
1312
+
1313
+ .table > thead > tr > td.danger,
1314
+ .table > tbody > tr > td.danger,
1315
+ .table > tfoot > tr > td.danger,
1316
+ .table > thead > tr > th.danger,
1317
+ .table > tbody > tr > th.danger,
1318
+ .table > tfoot > tr > th.danger,
1319
+ .table > thead > tr.danger > td,
1320
+ .table > tbody > tr.danger > td,
1321
+ .table > tfoot > tr.danger > td,
1322
+ .table > thead > tr.danger > th,
1323
+ .table > tbody > tr.danger > th,
1324
+ .table > tfoot > tr.danger > th {
1325
+ background-color: #f2dede;
1326
+ border-color: #eed3d7;
1327
+ }
1328
+
1329
+ .table > thead > tr > td.warning,
1330
+ .table > tbody > tr > td.warning,
1331
+ .table > tfoot > tr > td.warning,
1332
+ .table > thead > tr > th.warning,
1333
+ .table > tbody > tr > th.warning,
1334
+ .table > tfoot > tr > th.warning,
1335
+ .table > thead > tr.warning > td,
1336
+ .table > tbody > tr.warning > td,
1337
+ .table > tfoot > tr.warning > td,
1338
+ .table > thead > tr.warning > th,
1339
+ .table > tbody > tr.warning > th,
1340
+ .table > tfoot > tr.warning > th {
1341
+ background-color: #fcf8e3;
1342
+ border-color: #fbeed5;
1343
+ }
1344
+
1345
+ .table-hover > tbody > tr > td.success:hover,
1346
+ .table-hover > tbody > tr > th.success:hover,
1347
+ .table-hover > tbody > tr.success:hover > td {
1348
+ background-color: #d0e9c6;
1349
+ border-color: #c9e2b3;
1350
+ }
1351
+
1352
+ .table-hover > tbody > tr > td.danger:hover,
1353
+ .table-hover > tbody > tr > th.danger:hover,
1354
+ .table-hover > tbody > tr.danger:hover > td {
1355
+ background-color: #ebcccc;
1356
+ border-color: #e6c1c7;
1357
+ }
1358
+
1359
+ .table-hover > tbody > tr > td.warning:hover,
1360
+ .table-hover > tbody > tr > th.warning:hover,
1361
+ .table-hover > tbody > tr.warning:hover > td {
1362
+ background-color: #faf2cc;
1363
+ border-color: #f8e5be;
1364
+ }
1365
+
1366
+ fieldset {
1367
+ padding: 0;
1368
+ margin: 0;
1369
+ border: 0;
1370
+ }
1371
+
1372
+ legend {
1373
+ display: block;
1374
+ width: 100%;
1375
+ padding: 0;
1376
+ margin-bottom: 20px;
1377
+ font-size: 21px;
1378
+ line-height: inherit;
1379
+ color: #333333;
1380
+ border: 0;
1381
+ border-bottom: 1px solid #e5e5e5;
1382
+ }
1383
+
1384
+ label {
1385
+ display: inline-block;
1386
+ margin-bottom: 5px;
1387
+ font-weight: bold;
1388
+ }
1389
+
1390
+ input[type="search"] {
1391
+ -webkit-box-sizing: border-box;
1392
+ -moz-box-sizing: border-box;
1393
+ box-sizing: border-box;
1394
+ }
1395
+
1396
+ input[type="radio"],
1397
+ input[type="checkbox"] {
1398
+ margin: 4px 0 0;
1399
+ margin-top: 1px \9;
1400
+ /* IE8-9 */
1401
+
1402
+ line-height: normal;
1403
+ }
1404
+
1405
+ input[type="file"] {
1406
+ display: block;
1407
+ }
1408
+
1409
+ select[multiple],
1410
+ select[size] {
1411
+ height: auto;
1412
+ }
1413
+
1414
+ select optgroup {
1415
+ font-family: inherit;
1416
+ font-size: inherit;
1417
+ font-style: inherit;
1418
+ }
1419
+
1420
+ input[type="file"]:focus,
1421
+ input[type="radio"]:focus,
1422
+ input[type="checkbox"]:focus {
1423
+ outline: thin dotted #333;
1424
+ outline: 5px auto -webkit-focus-ring-color;
1425
+ outline-offset: -2px;
1426
+ }
1427
+
1428
+ input[type="number"]::-webkit-outer-spin-button,
1429
+ input[type="number"]::-webkit-inner-spin-button {
1430
+ height: auto;
1431
+ }
1432
+
1433
+ .form-control:-moz-placeholder {
1434
+ color: #999999;
1435
+ }
1436
+
1437
+ .form-control::-moz-placeholder {
1438
+ color: #999999;
1439
+ }
1440
+
1441
+ .form-control:-ms-input-placeholder {
1442
+ color: #999999;
1443
+ }
1444
+
1445
+ .form-control::-webkit-input-placeholder {
1446
+ color: #999999;
1447
+ }
1448
+
1449
+ .form-control {
1450
+ display: block;
1451
+ width: 100%;
1452
+ height: 34px;
1453
+ padding: 6px 12px;
1454
+ font-size: 14px;
1455
+ line-height: 1.428571429;
1456
+ color: #555555;
1457
+ vertical-align: middle;
1458
+ background-color: #ffffff;
1459
+ border: 1px solid #cccccc;
1460
+ border-radius: 4px;
1461
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1462
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1463
+ -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1464
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1465
+ }
1466
+
1467
+ .form-control:focus {
1468
+ border-color: #66afe9;
1469
+ outline: 0;
1470
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1471
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1472
+ }
1473
+
1474
+ .form-control[disabled],
1475
+ .form-control[readonly],
1476
+ fieldset[disabled] .form-control {
1477
+ cursor: not-allowed;
1478
+ background-color: #eeeeee;
1479
+ }
1480
+
1481
+ textarea.form-control {
1482
+ height: auto;
1483
+ }
1484
+
1485
+ .form-group {
1486
+ margin-bottom: 15px;
1487
+ }
1488
+
1489
+ .radio,
1490
+ .checkbox {
1491
+ display: block;
1492
+ min-height: 20px;
1493
+ padding-left: 20px;
1494
+ margin-top: 10px;
1495
+ margin-bottom: 10px;
1496
+ vertical-align: middle;
1497
+ }
1498
+
1499
+ .radio label,
1500
+ .checkbox label {
1501
+ display: inline;
1502
+ margin-bottom: 0;
1503
+ font-weight: normal;
1504
+ cursor: pointer;
1505
+ }
1506
+
1507
+ .radio input[type="radio"],
1508
+ .radio-inline input[type="radio"],
1509
+ .checkbox input[type="checkbox"],
1510
+ .checkbox-inline input[type="checkbox"] {
1511
+ float: left;
1512
+ margin-left: -20px;
1513
+ }
1514
+
1515
+ .radio + .radio,
1516
+ .checkbox + .checkbox {
1517
+ margin-top: -5px;
1518
+ }
1519
+
1520
+ .radio-inline,
1521
+ .checkbox-inline {
1522
+ display: inline-block;
1523
+ padding-left: 20px;
1524
+ margin-bottom: 0;
1525
+ font-weight: normal;
1526
+ vertical-align: middle;
1527
+ cursor: pointer;
1528
+ }
1529
+
1530
+ .radio-inline + .radio-inline,
1531
+ .checkbox-inline + .checkbox-inline {
1532
+ margin-top: 0;
1533
+ margin-left: 10px;
1534
+ }
1535
+
1536
+ .input-lg {
1537
+ height: 45px;
1538
+ padding: 10px 16px;
1539
+ font-size: 18px;
1540
+ line-height: 1.33;
1541
+ border-radius: 6px;
1542
+ }
1543
+
1544
+ .input-sm {
1545
+ height: 30px;
1546
+ padding: 5px 10px;
1547
+ font-size: 12px;
1548
+ line-height: 1.5;
1549
+ border-radius: 3px;
1550
+ }
1551
+
1552
+ select.input-lg {
1553
+ height: 45px;
1554
+ line-height: 45px;
1555
+ }
1556
+
1557
+ select.input-sm {
1558
+ height: 30px;
1559
+ line-height: 30px;
1560
+ }
1561
+
1562
+ textarea.input-lg,
1563
+ textarea.input-sm {
1564
+ height: auto;
1565
+ }
1566
+
1567
+ .has-warning .help-block,
1568
+ .has-warning .control-label {
1569
+ color: #c09853;
1570
+ }
1571
+
1572
+ .has-warning .form-control {
1573
+ border-color: #c09853;
1574
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1575
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1576
+ }
1577
+
1578
+ .has-warning .form-control:focus {
1579
+ border-color: #a47e3c;
1580
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1581
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1582
+ }
1583
+
1584
+ .has-warning .input-group-addon {
1585
+ color: #c09853;
1586
+ background-color: #fcf8e3;
1587
+ border-color: #c09853;
1588
+ }
1589
+
1590
+ .has-error .help-block,
1591
+ .has-error .control-label {
1592
+ color: #b94a48;
1593
+ }
1594
+
1595
+ .has-error .form-control {
1596
+ border-color: #b94a48;
1597
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1598
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1599
+ }
1600
+
1601
+ .has-error .form-control:focus {
1602
+ border-color: #953b39;
1603
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1604
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1605
+ }
1606
+
1607
+ .has-error .input-group-addon {
1608
+ color: #b94a48;
1609
+ background-color: #f2dede;
1610
+ border-color: #b94a48;
1611
+ }
1612
+
1613
+ .has-success .help-block,
1614
+ .has-success .control-label {
1615
+ color: #468847;
1616
+ }
1617
+
1618
+ .has-success .form-control {
1619
+ border-color: #468847;
1620
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1621
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1622
+ }
1623
+
1624
+ .has-success .form-control:focus {
1625
+ border-color: #356635;
1626
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1627
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1628
+ }
1629
+
1630
+ .has-success .input-group-addon {
1631
+ color: #468847;
1632
+ background-color: #dff0d8;
1633
+ border-color: #468847;
1634
+ }
1635
+
1636
+ .form-control-static {
1637
+ padding-top: 6px;
1638
+ margin-bottom: 0;
1639
+ }
1640
+
1641
+ .help-block {
1642
+ display: block;
1643
+ margin-top: 5px;
1644
+ margin-bottom: 10px;
1645
+ color: #737373;
1646
+ }
1647
+
1648
+ .form-inline .form-control,
1649
+ .form-inline .radio,
1650
+ .form-inline .checkbox {
1651
+ display: inline-block;
1652
+ }
1653
+
1654
+ .form-inline .radio,
1655
+ .form-inline .checkbox {
1656
+ padding-left: 0;
1657
+ margin-top: 0;
1658
+ margin-bottom: 0;
1659
+ }
1660
+
1661
+ .form-inline .radio input[type="radio"],
1662
+ .form-inline .checkbox input[type="checkbox"] {
1663
+ float: none;
1664
+ margin-left: 0;
1665
+ }
1666
+
1667
+ .form-horizontal .control-label,
1668
+ .form-horizontal .radio-inline,
1669
+ .form-horizontal .checkbox-inline {
1670
+ padding-top: 6px;
1671
+ }
1672
+
1673
+ .form-horizontal .form-group:before,
1674
+ .form-horizontal .form-group:after {
1675
+ display: table;
1676
+ content: " ";
1677
+ }
1678
+
1679
+ .form-horizontal .form-group:after {
1680
+ clear: both;
1681
+ }
1682
+
1683
+ .form-horizontal .form-group:before,
1684
+ .form-horizontal .form-group:after {
1685
+ display: table;
1686
+ content: " ";
1687
+ }
1688
+
1689
+ .form-horizontal .form-group:after {
1690
+ clear: both;
1691
+ }
1692
+
1693
+ @media (min-width: 768px) {
1694
+ .form-horizontal .form-group {
1695
+ margin-right: -15px;
1696
+ margin-left: -15px;
1697
+ }
1698
+ }
1699
+
1700
+ .form-horizontal .form-group .row {
1701
+ margin-right: -15px;
1702
+ margin-left: -15px;
1703
+ }
1704
+
1705
+ @media (min-width: 768px) {
1706
+ .form-horizontal .control-label {
1707
+ text-align: right;
1708
+ }
1709
+ }
1710
+
1711
+ .btn {
1712
+ display: inline-block;
1713
+ padding: 6px 12px;
1714
+ margin-bottom: 0;
1715
+ font-size: 14px;
1716
+ font-weight: bold;
1717
+ line-height: 1.428571429;
1718
+ text-align: center;
1719
+ white-space: nowrap;
1720
+ vertical-align: middle;
1721
+ cursor: pointer;
1722
+ border: 1px solid transparent;
1723
+ border-radius: 4px;
1724
+ -webkit-user-select: none;
1725
+ -moz-user-select: none;
1726
+ -ms-user-select: none;
1727
+ -o-user-select: none;
1728
+ user-select: none;
1729
+ }
1730
+
1731
+ .btn:focus {
1732
+ outline: thin dotted #333;
1733
+ outline: 5px auto -webkit-focus-ring-color;
1734
+ outline-offset: -2px;
1735
+ }
1736
+
1737
+ .btn:hover,
1738
+ .btn:focus {
1739
+ color: #333333;
1740
+ text-decoration: none;
1741
+ }
1742
+
1743
+ .btn:active,
1744
+ .btn.active {
1745
+ outline: 0;
1746
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1747
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1748
+ }
1749
+
1750
+ .btn.disabled,
1751
+ .btn[disabled],
1752
+ fieldset[disabled] .btn {
1753
+ pointer-events: none;
1754
+ cursor: default;
1755
+ opacity: 0.65;
1756
+ filter: alpha(opacity=65);
1757
+ -webkit-box-shadow: none;
1758
+ box-shadow: none;
1759
+ }
1760
+
1761
+ .btn-default {
1762
+ color: #333333;
1763
+ background-color: #ffffff;
1764
+ border-color: #cccccc;
1765
+ }
1766
+
1767
+ .btn-default:hover,
1768
+ .btn-default:focus,
1769
+ .btn-default:active,
1770
+ .btn-default.active {
1771
+ color: #333333;
1772
+ background-color: #ebebeb;
1773
+ border-color: #adadad;
1774
+ }
1775
+
1776
+ .btn-default.disabled,
1777
+ .btn-default[disabled],
1778
+ fieldset[disabled] .btn-default,
1779
+ .btn-default.disabled:hover,
1780
+ .btn-default[disabled]:hover,
1781
+ fieldset[disabled] .btn-default:hover,
1782
+ .btn-default.disabled:focus,
1783
+ .btn-default[disabled]:focus,
1784
+ fieldset[disabled] .btn-default:focus,
1785
+ .btn-default.disabled:active,
1786
+ .btn-default[disabled]:active,
1787
+ fieldset[disabled] .btn-default:active,
1788
+ .btn-default.disabled.active,
1789
+ .btn-default[disabled].active,
1790
+ fieldset[disabled] .btn-default.active {
1791
+ background-color: #ffffff;
1792
+ border-color: #cccccc;
1793
+ }
1794
+
1795
+ .btn-primary {
1796
+ color: #ffffff;
1797
+ background-color: #428bca;
1798
+ border-color: #357ebd;
1799
+ }
1800
+
1801
+ .btn-primary:hover,
1802
+ .btn-primary:focus,
1803
+ .btn-primary:active,
1804
+ .btn-primary.active {
1805
+ color: #ffffff;
1806
+ background-color: #3276b1;
1807
+ border-color: #285e8e;
1808
+ }
1809
+
1810
+ .btn-primary.disabled,
1811
+ .btn-primary[disabled],
1812
+ fieldset[disabled] .btn-primary,
1813
+ .btn-primary.disabled:hover,
1814
+ .btn-primary[disabled]:hover,
1815
+ fieldset[disabled] .btn-primary:hover,
1816
+ .btn-primary.disabled:focus,
1817
+ .btn-primary[disabled]:focus,
1818
+ fieldset[disabled] .btn-primary:focus,
1819
+ .btn-primary.disabled:active,
1820
+ .btn-primary[disabled]:active,
1821
+ fieldset[disabled] .btn-primary:active,
1822
+ .btn-primary.disabled.active,
1823
+ .btn-primary[disabled].active,
1824
+ fieldset[disabled] .btn-primary.active {
1825
+ background-color: #428bca;
1826
+ border-color: #357ebd;
1827
+ }
1828
+
1829
+ .btn-warning {
1830
+ color: #ffffff;
1831
+ background-color: #f0ad4e;
1832
+ border-color: #eea236;
1833
+ }
1834
+
1835
+ .btn-warning:hover,
1836
+ .btn-warning:focus,
1837
+ .btn-warning:active,
1838
+ .btn-warning.active {
1839
+ color: #ffffff;
1840
+ background-color: #ed9c28;
1841
+ border-color: #d58512;
1842
+ }
1843
+
1844
+ .btn-warning.disabled,
1845
+ .btn-warning[disabled],
1846
+ fieldset[disabled] .btn-warning,
1847
+ .btn-warning.disabled:hover,
1848
+ .btn-warning[disabled]:hover,
1849
+ fieldset[disabled] .btn-warning:hover,
1850
+ .btn-warning.disabled:focus,
1851
+ .btn-warning[disabled]:focus,
1852
+ fieldset[disabled] .btn-warning:focus,
1853
+ .btn-warning.disabled:active,
1854
+ .btn-warning[disabled]:active,
1855
+ fieldset[disabled] .btn-warning:active,
1856
+ .btn-warning.disabled.active,
1857
+ .btn-warning[disabled].active,
1858
+ fieldset[disabled] .btn-warning.active {
1859
+ background-color: #f0ad4e;
1860
+ border-color: #eea236;
1861
+ }
1862
+
1863
+ .btn-danger {
1864
+ color: #ffffff;
1865
+ background-color: #d9534f;
1866
+ border-color: #d43f3a;
1867
+ }
1868
+
1869
+ .btn-danger:hover,
1870
+ .btn-danger:focus,
1871
+ .btn-danger:active,
1872
+ .btn-danger.active {
1873
+ color: #ffffff;
1874
+ background-color: #d2322d;
1875
+ border-color: #ac2925;
1876
+ }
1877
+
1878
+ .btn-danger.disabled,
1879
+ .btn-danger[disabled],
1880
+ fieldset[disabled] .btn-danger,
1881
+ .btn-danger.disabled:hover,
1882
+ .btn-danger[disabled]:hover,
1883
+ fieldset[disabled] .btn-danger:hover,
1884
+ .btn-danger.disabled:focus,
1885
+ .btn-danger[disabled]:focus,
1886
+ fieldset[disabled] .btn-danger:focus,
1887
+ .btn-danger.disabled:active,
1888
+ .btn-danger[disabled]:active,
1889
+ fieldset[disabled] .btn-danger:active,
1890
+ .btn-danger.disabled.active,
1891
+ .btn-danger[disabled].active,
1892
+ fieldset[disabled] .btn-danger.active {
1893
+ background-color: #d9534f;
1894
+ border-color: #d43f3a;
1895
+ }
1896
+
1897
+ .btn-success {
1898
+ color: #ffffff;
1899
+ background-color: #5cb85c;
1900
+ border-color: #4cae4c;
1901
+ }
1902
+
1903
+ .btn-success:hover,
1904
+ .btn-success:focus,
1905
+ .btn-success:active,
1906
+ .btn-success.active {
1907
+ color: #ffffff;
1908
+ background-color: #47a447;
1909
+ border-color: #398439;
1910
+ }
1911
+
1912
+ .btn-success.disabled,
1913
+ .btn-success[disabled],
1914
+ fieldset[disabled] .btn-success,
1915
+ .btn-success.disabled:hover,
1916
+ .btn-success[disabled]:hover,
1917
+ fieldset[disabled] .btn-success:hover,
1918
+ .btn-success.disabled:focus,
1919
+ .btn-success[disabled]:focus,
1920
+ fieldset[disabled] .btn-success:focus,
1921
+ .btn-success.disabled:active,
1922
+ .btn-success[disabled]:active,
1923
+ fieldset[disabled] .btn-success:active,
1924
+ .btn-success.disabled.active,
1925
+ .btn-success[disabled].active,
1926
+ fieldset[disabled] .btn-success.active {
1927
+ background-color: #5cb85c;
1928
+ border-color: #4cae4c;
1929
+ }
1930
+
1931
+ .btn-info {
1932
+ color: #ffffff;
1933
+ background-color: #5bc0de;
1934
+ border-color: #46b8da;
1935
+ }
1936
+
1937
+ .btn-info:hover,
1938
+ .btn-info:focus,
1939
+ .btn-info:active,
1940
+ .btn-info.active {
1941
+ color: #ffffff;
1942
+ background-color: #39b3d7;
1943
+ border-color: #269abc;
1944
+ }
1945
+
1946
+ .btn-info.disabled,
1947
+ .btn-info[disabled],
1948
+ fieldset[disabled] .btn-info,
1949
+ .btn-info.disabled:hover,
1950
+ .btn-info[disabled]:hover,
1951
+ fieldset[disabled] .btn-info:hover,
1952
+ .btn-info.disabled:focus,
1953
+ .btn-info[disabled]:focus,
1954
+ fieldset[disabled] .btn-info:focus,
1955
+ .btn-info.disabled:active,
1956
+ .btn-info[disabled]:active,
1957
+ fieldset[disabled] .btn-info:active,
1958
+ .btn-info.disabled.active,
1959
+ .btn-info[disabled].active,
1960
+ fieldset[disabled] .btn-info.active {
1961
+ background-color: #5bc0de;
1962
+ border-color: #46b8da;
1963
+ }
1964
+
1965
+ .btn-link {
1966
+ font-weight: normal;
1967
+ color: #428bca;
1968
+ cursor: pointer;
1969
+ border-radius: 0;
1970
+ }
1971
+
1972
+ .btn-link,
1973
+ .btn-link:active,
1974
+ .btn-link[disabled],
1975
+ fieldset[disabled] .btn-link {
1976
+ background-color: transparent;
1977
+ -webkit-box-shadow: none;
1978
+ box-shadow: none;
1979
+ }
1980
+
1981
+ .btn-link,
1982
+ .btn-link:hover,
1983
+ .btn-link:focus,
1984
+ .btn-link:active {
1985
+ border-color: transparent;
1986
+ }
1987
+
1988
+ .btn-link:hover,
1989
+ .btn-link:focus {
1990
+ color: #2a6496;
1991
+ text-decoration: underline;
1992
+ background-color: transparent;
1993
+ }
1994
+
1995
+ .btn-link[disabled]:hover,
1996
+ fieldset[disabled] .btn-link:hover,
1997
+ .btn-link[disabled]:focus,
1998
+ fieldset[disabled] .btn-link:focus {
1999
+ color: #999999;
2000
+ text-decoration: none;
2001
+ }
2002
+
2003
+ .btn-lg {
2004
+ padding: 10px 16px;
2005
+ font-size: 18px;
2006
+ line-height: 1.33;
2007
+ border-radius: 6px;
2008
+ }
2009
+
2010
+ .btn-sm,
2011
+ .btn-xs {
2012
+ padding: 5px 10px;
2013
+ font-size: 12px;
2014
+ line-height: 1.5;
2015
+ border-radius: 3px;
2016
+ }
2017
+
2018
+ .btn-xs {
2019
+ padding: 3px 5px;
2020
+ }
2021
+
2022
+ .btn-block {
2023
+ display: block;
2024
+ width: 100%;
2025
+ padding-right: 0;
2026
+ padding-left: 0;
2027
+ }
2028
+
2029
+ .btn-block + .btn-block {
2030
+ margin-top: 5px;
2031
+ }
2032
+
2033
+ input[type="submit"].btn-block,
2034
+ input[type="reset"].btn-block,
2035
+ input[type="button"].btn-block {
2036
+ width: 100%;
2037
+ }
2038
+
2039
+ .fade {
2040
+ opacity: 0;
2041
+ -webkit-transition: opacity 0.15s linear;
2042
+ transition: opacity 0.15s linear;
2043
+ }
2044
+
2045
+ .fade.in {
2046
+ opacity: 1;
2047
+ }
2048
+
2049
+ .collapse {
2050
+ display: none;
2051
+ }
2052
+
2053
+ .collapse.in {
2054
+ display: block;
2055
+ }
2056
+
2057
+ .collapsing {
2058
+ position: relative;
2059
+ height: 0;
2060
+ overflow: hidden;
2061
+ -webkit-transition: height 0.35s ease;
2062
+ transition: height 0.35s ease;
2063
+ }
2064
+
2065
+ .input-group {
2066
+ position: relative;
2067
+ display: table;
2068
+ border-collapse: separate;
2069
+ }
2070
+
2071
+ .input-group.col {
2072
+ float: none;
2073
+ padding-right: 0;
2074
+ padding-left: 0;
2075
+ }
2076
+
2077
+ .input-group .form-control {
2078
+ width: 100%;
2079
+ margin-bottom: 0;
2080
+ }
2081
+
2082
+ .input-group-addon,
2083
+ .input-group-btn,
2084
+ .input-group .form-control {
2085
+ display: table-cell;
2086
+ }
2087
+
2088
+ .input-group-addon:not(:first-child):not(:last-child),
2089
+ .input-group-btn:not(:first-child):not(:last-child),
2090
+ .input-group .form-control:not(:first-child):not(:last-child) {
2091
+ border-radius: 0;
2092
+ }
2093
+
2094
+ .input-group-addon,
2095
+ .input-group-btn {
2096
+ width: 1%;
2097
+ white-space: nowrap;
2098
+ vertical-align: middle;
2099
+ }
2100
+
2101
+ .input-group-addon {
2102
+ padding: 6px 12px;
2103
+ font-size: 14px;
2104
+ font-weight: normal;
2105
+ line-height: 1;
2106
+ text-align: center;
2107
+ background-color: #eeeeee;
2108
+ border: 1px solid #cccccc;
2109
+ border-radius: 4px;
2110
+ }
2111
+
2112
+ .input-group-addon.input-sm {
2113
+ padding: 5px 10px;
2114
+ font-size: 12px;
2115
+ border-radius: 3px;
2116
+ }
2117
+
2118
+ .input-group-addon.input-lg {
2119
+ padding: 10px 16px;
2120
+ font-size: 18px;
2121
+ border-radius: 6px;
2122
+ }
2123
+
2124
+ .input-group-addon input[type="radio"],
2125
+ .input-group-addon input[type="checkbox"] {
2126
+ margin-top: 0;
2127
+ }
2128
+
2129
+ .input-group .form-control:first-child,
2130
+ .input-group-addon:first-child,
2131
+ .input-group-btn:first-child > .btn,
2132
+ .input-group-btn:first-child > .dropdown-toggle,
2133
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
2134
+ border-top-right-radius: 0;
2135
+ border-bottom-right-radius: 0;
2136
+ }
2137
+
2138
+ .input-group-addon:first-child {
2139
+ border-right: 0;
2140
+ }
2141
+
2142
+ .input-group .form-control:last-child,
2143
+ .input-group-addon:last-child,
2144
+ .input-group-btn:last-child > .btn,
2145
+ .input-group-btn:last-child > .dropdown-toggle,
2146
+ .input-group-btn:first-child > .btn:not(:first-child) {
2147
+ border-bottom-left-radius: 0;
2148
+ border-top-left-radius: 0;
2149
+ }
2150
+
2151
+ .input-group-addon:last-child {
2152
+ border-left: 0;
2153
+ }
2154
+
2155
+ .input-group-btn {
2156
+ position: relative;
2157
+ white-space: nowrap;
2158
+ }
2159
+
2160
+ .input-group-btn > .btn {
2161
+ position: relative;
2162
+ }
2163
+
2164
+ .input-group-btn > .btn + .btn {
2165
+ margin-left: -4px;
2166
+ }
2167
+
2168
+ .input-group-btn > .btn:hover,
2169
+ .input-group-btn > .btn:active {
2170
+ z-index: 2;
2171
+ }
2172
+
2173
+ .caret {
2174
+ display: inline-block;
2175
+ width: 0;
2176
+ height: 0;
2177
+ margin-left: 2px;
2178
+ vertical-align: middle;
2179
+ border-top: 4px solid #000000;
2180
+ border-right: 4px solid transparent;
2181
+ border-left: 4px solid transparent;
2182
+ content: "";
2183
+ }
2184
+
2185
+ .dropdown {
2186
+ position: relative;
2187
+ }
2188
+
2189
+ .dropdown-menu {
2190
+ position: absolute;
2191
+ top: 100%;
2192
+ left: 0;
2193
+ z-index: 1000;
2194
+ display: none;
2195
+ float: left;
2196
+ min-width: 160px;
2197
+ padding: 5px 0;
2198
+ margin: 2px 0 0;
2199
+ list-style: none;
2200
+ background-color: #ffffff;
2201
+ border: 1px solid #cccccc;
2202
+ border: 1px solid rgba(0, 0, 0, 0.15);
2203
+ border-radius: 4px;
2204
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2205
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2206
+ background-clip: padding-box;
2207
+ }
2208
+
2209
+ .dropdown-menu.pull-right {
2210
+ right: 0;
2211
+ left: auto;
2212
+ }
2213
+
2214
+ .dropdown-menu .divider {
2215
+ height: 1px;
2216
+ margin: 9px 0;
2217
+ overflow: hidden;
2218
+ background-color: #e5e5e5;
2219
+ }
2220
+
2221
+ .dropdown-menu > li > a {
2222
+ display: block;
2223
+ padding: 3px 20px;
2224
+ clear: both;
2225
+ font-weight: normal;
2226
+ line-height: 1.428571429;
2227
+ color: #333333;
2228
+ white-space: nowrap;
2229
+ }
2230
+
2231
+ .dropdown-menu > li > a:hover,
2232
+ .dropdown-menu > li > a:focus {
2233
+ color: #ffffff;
2234
+ text-decoration: none;
2235
+ background-color: #357ebd;
2236
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
2237
+ background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
2238
+ background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
2239
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
2240
+ background-repeat: repeat-x;
2241
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
2242
+ }
2243
+
2244
+ .dropdown-menu > .active > a,
2245
+ .dropdown-menu > .active > a:hover,
2246
+ .dropdown-menu > .active > a:focus {
2247
+ color: #ffffff;
2248
+ text-decoration: none;
2249
+ background-color: #357ebd;
2250
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
2251
+ background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
2252
+ background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
2253
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
2254
+ background-repeat: repeat-x;
2255
+ outline: 0;
2256
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
2257
+ }
2258
+
2259
+ .dropdown-menu > .disabled > a,
2260
+ .dropdown-menu > .disabled > a:hover,
2261
+ .dropdown-menu > .disabled > a:focus {
2262
+ color: #999999;
2263
+ }
2264
+
2265
+ .dropdown-menu > .disabled > a:hover,
2266
+ .dropdown-menu > .disabled > a:focus {
2267
+ text-decoration: none;
2268
+ cursor: not-allowed;
2269
+ background-color: transparent;
2270
+ background-image: none;
2271
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2272
+ }
2273
+
2274
+ .open > .dropdown-menu {
2275
+ display: block;
2276
+ }
2277
+
2278
+ .open > a {
2279
+ outline: 0;
2280
+ }
2281
+
2282
+ .dropdown-header {
2283
+ display: block;
2284
+ padding: 3px 20px;
2285
+ font-size: 12px;
2286
+ line-height: 1.428571429;
2287
+ color: #999999;
2288
+ }
2289
+
2290
+ .dropdown-backdrop {
2291
+ position: fixed;
2292
+ top: 0;
2293
+ right: 0;
2294
+ bottom: 0;
2295
+ left: 0;
2296
+ z-index: 990;
2297
+ }
2298
+
2299
+ .pull-right > .dropdown-menu {
2300
+ right: 0;
2301
+ left: auto;
2302
+ }
2303
+
2304
+ .dropup .caret,
2305
+ .navbar-fixed-bottom .dropdown .caret {
2306
+ border-top: 0;
2307
+ border-bottom: 4px solid #000000;
2308
+ content: "";
2309
+ }
2310
+
2311
+ .dropup .dropdown-menu,
2312
+ .navbar-fixed-bottom .dropdown .dropdown-menu {
2313
+ top: auto;
2314
+ bottom: 100%;
2315
+ margin-bottom: 1px;
2316
+ }
2317
+
2318
+ .list-group {
2319
+ padding-left: 0;
2320
+ margin-bottom: 20px;
2321
+ }
2322
+
2323
+ .list-group-item {
2324
+ position: relative;
2325
+ display: block;
2326
+ padding: 10px 30px 10px 15px;
2327
+ margin-bottom: -1px;
2328
+ background-color: #ffffff;
2329
+ border: 1px solid #dddddd;
2330
+ }
2331
+
2332
+ .list-group-item:first-child {
2333
+ border-top-right-radius: 4px;
2334
+ border-top-left-radius: 4px;
2335
+ }
2336
+
2337
+ .list-group-item:last-child {
2338
+ margin-bottom: 0;
2339
+ border-bottom-right-radius: 4px;
2340
+ border-bottom-left-radius: 4px;
2341
+ }
2342
+
2343
+ .list-group-item > .badge {
2344
+ float: right;
2345
+ margin-right: -15px;
2346
+ }
2347
+
2348
+ .list-group-item-heading {
2349
+ margin-top: 0;
2350
+ margin-bottom: 5px;
2351
+ }
2352
+
2353
+ .list-group-item-text {
2354
+ margin-bottom: 0;
2355
+ line-height: 1.3;
2356
+ }
2357
+
2358
+ a.list-group-item .list-group-item-heading {
2359
+ color: #333333;
2360
+ }
2361
+
2362
+ a.list-group-item .list-group-item-text {
2363
+ color: #555555;
2364
+ }
2365
+
2366
+ a.list-group-item:hover,
2367
+ a.list-group-item:focus {
2368
+ text-decoration: none;
2369
+ background-color: #f5f5f5;
2370
+ }
2371
+
2372
+ a.list-group-item.active {
2373
+ z-index: 2;
2374
+ color: #ffffff;
2375
+ background-color: #428bca;
2376
+ border-color: #428bca;
2377
+ }
2378
+
2379
+ a.list-group-item.active .list-group-item-heading {
2380
+ color: inherit;
2381
+ }
2382
+
2383
+ a.list-group-item.active .list-group-item-text {
2384
+ color: #e1edf7;
2385
+ }
2386
+
2387
+ .panel {
2388
+ padding: 15px;
2389
+ margin-bottom: 20px;
2390
+ background-color: #ffffff;
2391
+ border: 1px solid #dddddd;
2392
+ border-radius: 4px;
2393
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
2394
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
2395
+ }
2396
+
2397
+ .panel .list-group {
2398
+ margin: 15px -15px -15px;
2399
+ }
2400
+
2401
+ .panel .list-group .list-group-item {
2402
+ border-width: 1px 0;
2403
+ }
2404
+
2405
+ .panel .list-group .list-group-item:first-child {
2406
+ border-top-right-radius: 0;
2407
+ border-top-left-radius: 0;
2408
+ }
2409
+
2410
+ .panel .list-group .list-group-item:last-child {
2411
+ border-bottom: 0;
2412
+ }
2413
+
2414
+ .panel-heading {
2415
+ padding: 10px 15px;
2416
+ margin: -15px -15px 15px;
2417
+ background-color: #f5f5f5;
2418
+ border-bottom: 1px solid #dddddd;
2419
+ border-top-right-radius: 3px;
2420
+ border-top-left-radius: 3px;
2421
+ }
2422
+
2423
+ .panel-title {
2424
+ margin-top: 0;
2425
+ margin-bottom: 0;
2426
+ font-size: 17.5px;
2427
+ font-weight: 500;
2428
+ }
2429
+
2430
+ .panel-title > a {
2431
+ color: inherit;
2432
+ }
2433
+
2434
+ .panel-footer {
2435
+ padding: 10px 15px;
2436
+ margin: 15px -15px -15px;
2437
+ background-color: #f5f5f5;
2438
+ border-top: 1px solid #dddddd;
2439
+ border-bottom-right-radius: 3px;
2440
+ border-bottom-left-radius: 3px;
2441
+ }
2442
+
2443
+ .panel-primary {
2444
+ border-color: #428bca;
2445
+ }
2446
+
2447
+ .panel-primary .panel-heading {
2448
+ color: #ffffff;
2449
+ background-color: #428bca;
2450
+ border-color: #428bca;
2451
+ }
2452
+
2453
+ .panel-success {
2454
+ border-color: #d6e9c6;
2455
+ }
2456
+
2457
+ .panel-success .panel-heading {
2458
+ color: #468847;
2459
+ background-color: #dff0d8;
2460
+ border-color: #d6e9c6;
2461
+ }
2462
+
2463
+ .panel-warning {
2464
+ border-color: #fbeed5;
2465
+ }
2466
+
2467
+ .panel-warning .panel-heading {
2468
+ color: #c09853;
2469
+ background-color: #fcf8e3;
2470
+ border-color: #fbeed5;
2471
+ }
2472
+
2473
+ .panel-danger {
2474
+ border-color: #eed3d7;
2475
+ }
2476
+
2477
+ .panel-danger .panel-heading {
2478
+ color: #b94a48;
2479
+ background-color: #f2dede;
2480
+ border-color: #eed3d7;
2481
+ }
2482
+
2483
+ .panel-info {
2484
+ border-color: #bce8f1;
2485
+ }
2486
+
2487
+ .panel-info .panel-heading {
2488
+ color: #3a87ad;
2489
+ background-color: #d9edf7;
2490
+ border-color: #bce8f1;
2491
+ }
2492
+
2493
+ .well {
2494
+ min-height: 20px;
2495
+ padding: 19px;
2496
+ margin-bottom: 20px;
2497
+ background-color: #f5f5f5;
2498
+ border: 1px solid #e3e3e3;
2499
+ border-radius: 4px;
2500
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2501
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2502
+ }
2503
+
2504
+ .well blockquote {
2505
+ border-color: #ddd;
2506
+ border-color: rgba(0, 0, 0, 0.15);
2507
+ }
2508
+
2509
+ .well-lg {
2510
+ padding: 24px;
2511
+ border-radius: 6px;
2512
+ }
2513
+
2514
+ .well-sm {
2515
+ padding: 9px;
2516
+ border-radius: 3px;
2517
+ }
2518
+
2519
+ .close {
2520
+ float: right;
2521
+ font-size: 21px;
2522
+ font-weight: bold;
2523
+ line-height: 1;
2524
+ color: #000000;
2525
+ text-shadow: 0 1px 0 #ffffff;
2526
+ opacity: 0.2;
2527
+ filter: alpha(opacity=20);
2528
+ }
2529
+
2530
+ .close:hover,
2531
+ .close:focus {
2532
+ color: #000000;
2533
+ text-decoration: none;
2534
+ cursor: pointer;
2535
+ opacity: 0.5;
2536
+ filter: alpha(opacity=50);
2537
+ }
2538
+
2539
+ button.close {
2540
+ padding: 0;
2541
+ cursor: pointer;
2542
+ background: transparent;
2543
+ border: 0;
2544
+ -webkit-appearance: none;
2545
+ }
2546
+
2547
+ .nav {
2548
+ padding-left: 0;
2549
+ margin-bottom: 0;
2550
+ list-style: none;
2551
+ }
2552
+
2553
+ .nav:before,
2554
+ .nav:after {
2555
+ display: table;
2556
+ content: " ";
2557
+ }
2558
+
2559
+ .nav:after {
2560
+ clear: both;
2561
+ }
2562
+
2563
+ .nav:before,
2564
+ .nav:after {
2565
+ display: table;
2566
+ content: " ";
2567
+ }
2568
+
2569
+ .nav:after {
2570
+ clear: both;
2571
+ }
2572
+
2573
+ .nav > li {
2574
+ position: relative;
2575
+ display: block;
2576
+ }
2577
+
2578
+ .nav > li > a {
2579
+ position: relative;
2580
+ display: block;
2581
+ padding: 10px 15px;
2582
+ }
2583
+
2584
+ .nav > li > a:hover,
2585
+ .nav > li > a:focus {
2586
+ text-decoration: none;
2587
+ background-color: #eeeeee;
2588
+ }
2589
+
2590
+ .nav > li.disabled > a {
2591
+ color: #999999;
2592
+ }
2593
+
2594
+ .nav > li.disabled > a:hover,
2595
+ .nav > li.disabled > a:focus {
2596
+ color: #999999;
2597
+ text-decoration: none;
2598
+ cursor: not-allowed;
2599
+ background-color: transparent;
2600
+ }
2601
+
2602
+ .nav.open > a,
2603
+ .nav.open > a:hover,
2604
+ .nav.open > a:focus {
2605
+ color: #ffffff;
2606
+ background-color: #428bca;
2607
+ border-color: #428bca;
2608
+ }
2609
+
2610
+ .nav.open > a .caret,
2611
+ .nav.open > a:hover .caret,
2612
+ .nav.open > a:focus .caret {
2613
+ border-top-color: #ffffff;
2614
+ border-bottom-color: #ffffff;
2615
+ }
2616
+
2617
+ .nav .nav-divider {
2618
+ height: 1px;
2619
+ margin: 9px 0;
2620
+ overflow: hidden;
2621
+ background-color: #e5e5e5;
2622
+ }
2623
+
2624
+ .nav-tabs {
2625
+ border-bottom: 1px solid #dddddd;
2626
+ }
2627
+
2628
+ .nav-tabs > li {
2629
+ float: left;
2630
+ margin-bottom: -1px;
2631
+ }
2632
+
2633
+ .nav-tabs > li > a {
2634
+ margin-right: 2px;
2635
+ line-height: 1.428571429;
2636
+ border: 1px solid transparent;
2637
+ border-radius: 4px 4px 0 0;
2638
+ }
2639
+
2640
+ .nav-tabs > li > a:hover {
2641
+ border-color: #eeeeee;
2642
+ }
2643
+
2644
+ .nav-tabs > li.active > a,
2645
+ .nav-tabs > li.active > a:hover,
2646
+ .nav-tabs > li.active > a:focus {
2647
+ color: #555555;
2648
+ cursor: default;
2649
+ background-color: #ffffff;
2650
+ border: 1px solid #dddddd;
2651
+ border-bottom-color: transparent;
2652
+ }
2653
+
2654
+ .nav-tabs.nav-justified {
2655
+ width: 100%;
2656
+ border-bottom: 0;
2657
+ }
2658
+
2659
+ .nav-tabs.nav-justified > li {
2660
+ display: table-cell;
2661
+ float: none;
2662
+ width: 1%;
2663
+ }
2664
+
2665
+ .nav-tabs.nav-justified > li > a {
2666
+ text-align: center;
2667
+ }
2668
+
2669
+ .nav-tabs.nav-justified > li > a {
2670
+ margin-right: 0;
2671
+ border-bottom: 1px solid #dddddd;
2672
+ }
2673
+
2674
+ .nav-tabs.nav-justified > .active > a {
2675
+ border-bottom-color: #ffffff;
2676
+ }
2677
+
2678
+ .nav-pills > li {
2679
+ float: left;
2680
+ }
2681
+
2682
+ .nav-pills > li > a {
2683
+ border-radius: 5px;
2684
+ }
2685
+
2686
+ .nav-pills > li + li {
2687
+ margin-left: 2px;
2688
+ }
2689
+
2690
+ .nav-pills > li.active > a,
2691
+ .nav-pills > li.active > a:hover,
2692
+ .nav-pills > li.active > a:focus {
2693
+ color: #ffffff;
2694
+ background-color: #428bca;
2695
+ }
2696
+
2697
+ .nav-stacked > li {
2698
+ float: none;
2699
+ }
2700
+
2701
+ .nav-stacked > li + li {
2702
+ margin-top: 2px;
2703
+ margin-left: 0;
2704
+ }
2705
+
2706
+ .nav-justified {
2707
+ width: 100%;
2708
+ }
2709
+
2710
+ .nav-justified > li {
2711
+ display: table-cell;
2712
+ float: none;
2713
+ width: 1%;
2714
+ }
2715
+
2716
+ .nav-justified > li > a {
2717
+ text-align: center;
2718
+ }
2719
+
2720
+ .nav-tabs-justified {
2721
+ border-bottom: 0;
2722
+ }
2723
+
2724
+ .nav-tabs-justified > li > a {
2725
+ margin-right: 0;
2726
+ border-bottom: 1px solid #dddddd;
2727
+ }
2728
+
2729
+ .nav-tabs-justified > .active > a {
2730
+ border-bottom-color: #ffffff;
2731
+ }
2732
+
2733
+ .tabbable:before,
2734
+ .tabbable:after {
2735
+ display: table;
2736
+ content: " ";
2737
+ }
2738
+
2739
+ .tabbable:after {
2740
+ clear: both;
2741
+ }
2742
+
2743
+ .tabbable:before,
2744
+ .tabbable:after {
2745
+ display: table;
2746
+ content: " ";
2747
+ }
2748
+
2749
+ .tabbable:after {
2750
+ clear: both;
2751
+ }
2752
+
2753
+ .tab-content > .tab-pane,
2754
+ .pill-content > .pill-pane {
2755
+ display: none;
2756
+ }
2757
+
2758
+ .tab-content > .active,
2759
+ .pill-content > .active {
2760
+ display: block;
2761
+ }
2762
+
2763
+ .nav .caret {
2764
+ border-top-color: #428bca;
2765
+ border-bottom-color: #428bca;
2766
+ }
2767
+
2768
+ .nav a:hover .caret {
2769
+ border-top-color: #2a6496;
2770
+ border-bottom-color: #2a6496;
2771
+ }
2772
+
2773
+ .nav-tabs .dropdown-menu {
2774
+ margin-top: -1px;
2775
+ border-top-right-radius: 0;
2776
+ border-top-left-radius: 0;
2777
+ }
2778
+
2779
+ .navbar {
2780
+ position: relative;
2781
+ min-height: 50px;
2782
+ padding-right: 15px;
2783
+ padding-left: 15px;
2784
+ margin-bottom: 20px;
2785
+ background-color: #eeeeee;
2786
+ border-radius: 4px;
2787
+ }
2788
+
2789
+ .navbar:before,
2790
+ .navbar:after {
2791
+ display: table;
2792
+ content: " ";
2793
+ }
2794
+
2795
+ .navbar:after {
2796
+ clear: both;
2797
+ }
2798
+
2799
+ .navbar:before,
2800
+ .navbar:after {
2801
+ display: table;
2802
+ content: " ";
2803
+ }
2804
+
2805
+ .navbar:after {
2806
+ clear: both;
2807
+ }
2808
+
2809
+ .navbar-nav {
2810
+ margin-top: 10px;
2811
+ margin-bottom: 15px;
2812
+ }
2813
+
2814
+ .navbar-nav > li > a {
2815
+ padding-top: 15px;
2816
+ padding-bottom: 15px;
2817
+ line-height: 20px;
2818
+ color: #777777;
2819
+ border-radius: 4px;
2820
+ }
2821
+
2822
+ .navbar-nav > li > a:hover,
2823
+ .navbar-nav > li > a:focus {
2824
+ color: #333333;
2825
+ background-color: transparent;
2826
+ }
2827
+
2828
+ .navbar-nav > .active > a,
2829
+ .navbar-nav > .active > a:hover,
2830
+ .navbar-nav > .active > a:focus {
2831
+ color: #555555;
2832
+ background-color: #d5d5d5;
2833
+ }
2834
+
2835
+ .navbar-nav > .disabled > a,
2836
+ .navbar-nav > .disabled > a:hover,
2837
+ .navbar-nav > .disabled > a:focus {
2838
+ color: #cccccc;
2839
+ background-color: transparent;
2840
+ }
2841
+
2842
+ .navbar-nav.pull-right {
2843
+ width: 100%;
2844
+ }
2845
+
2846
+ .navbar-static-top {
2847
+ border-radius: 0;
2848
+ }
2849
+
2850
+ .navbar-fixed-top,
2851
+ .navbar-fixed-bottom {
2852
+ position: fixed;
2853
+ right: 0;
2854
+ left: 0;
2855
+ z-index: 1030;
2856
+ border-radius: 0;
2857
+ }
2858
+
2859
+ .navbar-fixed-top {
2860
+ top: 0;
2861
+ }
2862
+
2863
+ .navbar-fixed-bottom {
2864
+ bottom: 0;
2865
+ margin-bottom: 0;
2866
+ }
2867
+
2868
+ @media (max-width: 768px) {
2869
+ .nav-collapse-scrollable {
2870
+ max-height: 360px;
2871
+ margin-bottom: 15px;
2872
+ overflow-y: scroll;
2873
+ -webkit-overflow-scrolling: touch;
2874
+ }
2875
+ }
2876
+
2877
+ .navbar-brand {
2878
+ display: block;
2879
+ max-width: 200px;
2880
+ padding: 15px 15px;
2881
+ margin-right: auto;
2882
+ margin-left: auto;
2883
+ font-size: 18px;
2884
+ font-weight: 500;
2885
+ line-height: 20px;
2886
+ color: #777777;
2887
+ text-align: center;
2888
+ }
2889
+
2890
+ .navbar-brand:hover,
2891
+ .navbar-brand:focus {
2892
+ color: #5e5e5e;
2893
+ text-decoration: none;
2894
+ background-color: transparent;
2895
+ }
2896
+
2897
+ .navbar-toggle {
2898
+ position: relative;
2899
+ float: right;
2900
+ width: 48px;
2901
+ height: 34px;
2902
+ padding: 6px 12px;
2903
+ margin-top: 8px;
2904
+ margin-bottom: 8px;
2905
+ background-color: transparent;
2906
+ border: 1px solid #dddddd;
2907
+ border-radius: 4px;
2908
+ }
2909
+
2910
+ .navbar-toggle:hover,
2911
+ .navbar-toggle:focus {
2912
+ background-color: #dddddd;
2913
+ }
2914
+
2915
+ .navbar-toggle .icon-bar {
2916
+ display: block;
2917
+ width: 22px;
2918
+ height: 2px;
2919
+ background-color: #cccccc;
2920
+ border-radius: 1px;
2921
+ }
2922
+
2923
+ .navbar-toggle .icon-bar + .icon-bar {
2924
+ margin-top: 4px;
2925
+ }
2926
+
2927
+ .navbar-form {
2928
+ margin-top: 8px;
2929
+ margin-bottom: 8px;
2930
+ }
2931
+
2932
+ .navbar-form .form-control,
2933
+ .navbar-form .radio,
2934
+ .navbar-form .checkbox {
2935
+ display: inline-block;
2936
+ }
2937
+
2938
+ .navbar-form .radio,
2939
+ .navbar-form .checkbox {
2940
+ padding-left: 0;
2941
+ margin-top: 0;
2942
+ margin-bottom: 0;
2943
+ }
2944
+
2945
+ .navbar-form .radio input[type="radio"],
2946
+ .navbar-form .checkbox input[type="checkbox"] {
2947
+ float: none;
2948
+ margin-left: 0;
2949
+ }
2950
+
2951
+ .navbar-nav > li > .dropdown-menu {
2952
+ margin-top: 0;
2953
+ border-top-right-radius: 0;
2954
+ border-top-left-radius: 0;
2955
+ }
2956
+
2957
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
2958
+ border-bottom-right-radius: 0;
2959
+ border-bottom-left-radius: 0;
2960
+ }
2961
+
2962
+ .navbar-nav > .dropdown > a:hover .caret,
2963
+ .navbar-nav > .dropdown > a:focus .caret {
2964
+ border-top-color: #333333;
2965
+ border-bottom-color: #333333;
2966
+ }
2967
+
2968
+ .navbar-nav > .open > a,
2969
+ .navbar-nav > .open > a:hover,
2970
+ .navbar-nav > .open > a:focus {
2971
+ color: #555555;
2972
+ background-color: #d5d5d5;
2973
+ }
2974
+
2975
+ .navbar-nav > .open > a .caret,
2976
+ .navbar-nav > .open > a:hover .caret,
2977
+ .navbar-nav > .open > a:focus .caret {
2978
+ border-top-color: #555555;
2979
+ border-bottom-color: #555555;
2980
+ }
2981
+
2982
+ .navbar-nav > .dropdown > a .caret {
2983
+ border-top-color: #777777;
2984
+ border-bottom-color: #777777;
2985
+ }
2986
+
2987
+ .navbar-nav.pull-right > li > .dropdown-menu,
2988
+ .navbar-nav > li > .dropdown-menu.pull-right {
2989
+ right: 0;
2990
+ left: auto;
2991
+ }
2992
+
2993
+ .navbar-inverse {
2994
+ background-color: #222222;
2995
+ }
2996
+
2997
+ .navbar-inverse .navbar-brand {
2998
+ color: #999999;
2999
+ }
3000
+
3001
+ .navbar-inverse .navbar-brand:hover,
3002
+ .navbar-inverse .navbar-brand:focus {
3003
+ color: #ffffff;
3004
+ background-color: transparent;
3005
+ }
3006
+
3007
+ .navbar-inverse .navbar-text {
3008
+ color: #999999;
3009
+ }
3010
+
3011
+ .navbar-inverse .navbar-nav > li > a {
3012
+ color: #999999;
3013
+ }
3014
+
3015
+ .navbar-inverse .navbar-nav > li > a:hover,
3016
+ .navbar-inverse .navbar-nav > li > a:focus {
3017
+ color: #ffffff;
3018
+ background-color: transparent;
3019
+ }
3020
+
3021
+ .navbar-inverse .navbar-nav > .active > a,
3022
+ .navbar-inverse .navbar-nav > .active > a:hover,
3023
+ .navbar-inverse .navbar-nav > .active > a:focus {
3024
+ color: #ffffff;
3025
+ background-color: #080808;
3026
+ }
3027
+
3028
+ .navbar-inverse .navbar-nav > .disabled > a,
3029
+ .navbar-inverse .navbar-nav > .disabled > a:hover,
3030
+ .navbar-inverse .navbar-nav > .disabled > a:focus {
3031
+ color: #444444;
3032
+ background-color: transparent;
3033
+ }
3034
+
3035
+ .navbar-inverse .navbar-toggle {
3036
+ border-color: #333333;
3037
+ }
3038
+
3039
+ .navbar-inverse .navbar-toggle:hover,
3040
+ .navbar-inverse .navbar-toggle:focus {
3041
+ background-color: #333333;
3042
+ }
3043
+
3044
+ .navbar-inverse .navbar-toggle .icon-bar {
3045
+ background-color: #ffffff;
3046
+ }
3047
+
3048
+ .navbar-inverse .navbar-nav > .open > a,
3049
+ .navbar-inverse .navbar-nav > .open > a:hover,
3050
+ .navbar-inverse .navbar-nav > .open > a:focus {
3051
+ color: #ffffff;
3052
+ background-color: #080808;
3053
+ }
3054
+
3055
+ .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
3056
+ border-top-color: #ffffff;
3057
+ border-bottom-color: #ffffff;
3058
+ }
3059
+
3060
+ .navbar-inverse .navbar-nav > .dropdown > a .caret {
3061
+ border-top-color: #999999;
3062
+ border-bottom-color: #999999;
3063
+ }
3064
+
3065
+ .navbar-inverse .navbar-nav > .open > a .caret,
3066
+ .navbar-inverse .navbar-nav > .open > a:hover .caret,
3067
+ .navbar-inverse .navbar-nav > .open > a:focus .caret {
3068
+ border-top-color: #ffffff;
3069
+ border-bottom-color: #ffffff;
3070
+ }
3071
+
3072
+ @media screen and (min-width: 768px) {
3073
+ .navbar-brand {
3074
+ float: left;
3075
+ max-width: none;
3076
+ margin-right: 5px;
3077
+ margin-left: -15px;
3078
+ }
3079
+ .navbar-nav {
3080
+ float: left;
3081
+ margin-top: 0;
3082
+ margin-bottom: 0;
3083
+ }
3084
+ .navbar-nav > li {
3085
+ float: left;
3086
+ }
3087
+ .navbar-nav > li > a {
3088
+ border-radius: 0;
3089
+ }
3090
+ .navbar-nav.pull-right {
3091
+ width: auto;
3092
+ }
3093
+ .navbar-toggle {
3094
+ position: relative;
3095
+ top: auto;
3096
+ left: auto;
3097
+ display: none;
3098
+ }
3099
+ .nav-collapse.collapse {
3100
+ display: block !important;
3101
+ height: auto !important;
3102
+ overflow: visible !important;
3103
+ }
3104
+ }
3105
+
3106
+ .navbar-btn {
3107
+ margin-top: 8px;
3108
+ }
3109
+
3110
+ .navbar-text {
3111
+ float: left;
3112
+ padding: 0 15px;
3113
+ margin-top: 15px;
3114
+ margin-bottom: 15px;
3115
+ }
3116
+
3117
+ .navbar-link {
3118
+ color: #777777;
3119
+ }
3120
+
3121
+ .navbar-link:hover {
3122
+ color: #333333;
3123
+ }
3124
+
3125
+ .navbar-inverse .navbar-link {
3126
+ color: #999999;
3127
+ }
3128
+
3129
+ .navbar-inverse .navbar-link:hover {
3130
+ color: #ffffff;
3131
+ }
3132
+
3133
+ .btn-default .caret {
3134
+ border-top-color: #333333;
3135
+ }
3136
+
3137
+ .btn-primary .caret,
3138
+ .btn-success .caret,
3139
+ .btn-warning .caret,
3140
+ .btn-danger .caret,
3141
+ .btn-info .caret {
3142
+ border-top-color: #fff;
3143
+ }
3144
+
3145
+ .btn-default .dropup .caret {
3146
+ border-bottom-color: #333333;
3147
+ }
3148
+
3149
+ .btn-primary .dropup .caret,
3150
+ .btn-success .dropup .caret,
3151
+ .btn-warning .dropup .caret,
3152
+ .btn-danger .dropup .caret,
3153
+ .btn-info .dropup .caret {
3154
+ border-bottom-color: #fff;
3155
+ }
3156
+
3157
+ .btn-group,
3158
+ .btn-group-vertical {
3159
+ position: relative;
3160
+ display: inline-block;
3161
+ vertical-align: middle;
3162
+ }
3163
+
3164
+ .btn-group > .btn,
3165
+ .btn-group-vertical > .btn {
3166
+ position: relative;
3167
+ float: left;
3168
+ }
3169
+
3170
+ .btn-group > .btn:hover,
3171
+ .btn-group-vertical > .btn:hover,
3172
+ .btn-group > .btn:focus,
3173
+ .btn-group-vertical > .btn:focus,
3174
+ .btn-group > .btn:active,
3175
+ .btn-group-vertical > .btn:active,
3176
+ .btn-group > .btn.active,
3177
+ .btn-group-vertical > .btn.active {
3178
+ z-index: 2;
3179
+ }
3180
+
3181
+ .btn-group > .btn:focus,
3182
+ .btn-group-vertical > .btn:focus {
3183
+ outline: none;
3184
+ }
3185
+
3186
+ .btn-group .btn + .btn {
3187
+ margin-left: -1px;
3188
+ }
3189
+
3190
+ .btn-toolbar:before,
3191
+ .btn-toolbar:after {
3192
+ display: table;
3193
+ content: " ";
3194
+ }
3195
+
3196
+ .btn-toolbar:after {
3197
+ clear: both;
3198
+ }
3199
+
3200
+ .btn-toolbar:before,
3201
+ .btn-toolbar:after {
3202
+ display: table;
3203
+ content: " ";
3204
+ }
3205
+
3206
+ .btn-toolbar:after {
3207
+ clear: both;
3208
+ }
3209
+
3210
+ .btn-toolbar .btn-group {
3211
+ float: left;
3212
+ }
3213
+
3214
+ .btn-toolbar > .btn + .btn,
3215
+ .btn-toolbar > .btn-group + .btn,
3216
+ .btn-toolbar > .btn + .btn-group,
3217
+ .btn-toolbar > .btn-group + .btn-group {
3218
+ margin-left: 5px;
3219
+ }
3220
+
3221
+ .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3222
+ border-radius: 0;
3223
+ }
3224
+
3225
+ .btn-group > .btn:first-child {
3226
+ margin-left: 0;
3227
+ }
3228
+
3229
+ .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3230
+ border-top-right-radius: 0;
3231
+ border-bottom-right-radius: 0;
3232
+ }
3233
+
3234
+ .btn-group > .btn:last-child:not(:first-child),
3235
+ .btn-group > .dropdown-toggle:not(:first-child) {
3236
+ border-bottom-left-radius: 0;
3237
+ border-top-left-radius: 0;
3238
+ }
3239
+
3240
+ .btn-group > .btn-group {
3241
+ float: left;
3242
+ }
3243
+
3244
+ .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3245
+ border-radius: 0;
3246
+ }
3247
+
3248
+ .btn-group > .btn-group:first-child > .btn:last-child,
3249
+ .btn-group > .btn-group:first-child > .dropdown-toggle {
3250
+ border-top-right-radius: 0;
3251
+ border-bottom-right-radius: 0;
3252
+ }
3253
+
3254
+ .btn-group > .btn-group:last-child > .btn:first-child {
3255
+ border-bottom-left-radius: 0;
3256
+ border-top-left-radius: 0;
3257
+ }
3258
+
3259
+ .btn-group .dropdown-toggle:active,
3260
+ .btn-group.open .dropdown-toggle {
3261
+ outline: 0;
3262
+ }
3263
+
3264
+ .btn-group > .btn + .dropdown-toggle {
3265
+ padding-right: 8px;
3266
+ padding-left: 8px;
3267
+ }
3268
+
3269
+ .btn-group > .btn-lg + .dropdown-toggle {
3270
+ padding-right: 12px;
3271
+ padding-left: 12px;
3272
+ }
3273
+
3274
+ .btn-group.open .dropdown-toggle {
3275
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3276
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3277
+ }
3278
+
3279
+ .btn .caret {
3280
+ margin-left: 0;
3281
+ }
3282
+
3283
+ .btn-lg .caret {
3284
+ border-width: 5px;
3285
+ }
3286
+
3287
+ .dropup .btn-lg .caret {
3288
+ border-bottom-width: 5px;
3289
+ }
3290
+
3291
+ .btn-group-vertical > .btn {
3292
+ display: block;
3293
+ float: none;
3294
+ width: 100%;
3295
+ max-width: 100%;
3296
+ }
3297
+
3298
+ .btn-group-vertical > .btn + .btn {
3299
+ margin-top: -1px;
3300
+ }
3301
+
3302
+ .btn-group-vertical .btn:not(:first-child):not(:last-child) {
3303
+ border-radius: 0;
3304
+ }
3305
+
3306
+ .btn-group-vertical .btn:first-child:not(:last-child) {
3307
+ border-bottom-right-radius: 0;
3308
+ border-bottom-left-radius: 0;
3309
+ }
3310
+
3311
+ .btn-group-vertical .btn:last-child:not(:first-child) {
3312
+ border-top-right-radius: 0;
3313
+ border-top-left-radius: 0;
3314
+ }
3315
+
3316
+ .btn-group-justified {
3317
+ display: table;
3318
+ width: 100%;
3319
+ table-layout: fixed;
3320
+ }
3321
+
3322
+ .btn-group-justified .btn {
3323
+ display: table-cell;
3324
+ float: none;
3325
+ width: 1%;
3326
+ }
3327
+
3328
+ .btn-group[data-toggle="buttons"] > .btn > input[type="radio"],
3329
+ .btn-group[data-toggle="buttons"] > .btn > input[type="checkbox"] {
3330
+ display: none;
3331
+ }
3332
+
3333
+ .breadcrumb {
3334
+ padding: 8px 15px;
3335
+ margin-bottom: 20px;
3336
+ list-style: none;
3337
+ background-color: #f5f5f5;
3338
+ border-radius: 4px;
3339
+ }
3340
+
3341
+ .breadcrumb > li {
3342
+ display: inline-block;
3343
+ }
3344
+
3345
+ .breadcrumb > li + li:before {
3346
+ padding: 0 5px;
3347
+ color: #cccccc;
3348
+ content: "/\00a0";
3349
+ }
3350
+
3351
+ .breadcrumb > .active {
3352
+ color: #999999;
3353
+ }
3354
+
3355
+ .pagination {
3356
+ display: inline-block;
3357
+ padding-left: 0;
3358
+ margin: 20px 0;
3359
+ border-radius: 4px;
3360
+ }
3361
+
3362
+ .pagination > li {
3363
+ display: inline;
3364
+ }
3365
+
3366
+ .pagination > li > a,
3367
+ .pagination > li > span {
3368
+ float: left;
3369
+ padding: 6px 12px;
3370
+ line-height: 1.428571429;
3371
+ text-decoration: none;
3372
+ background-color: #ffffff;
3373
+ border: 1px solid #dddddd;
3374
+ border-left-width: 0;
3375
+ }
3376
+
3377
+ .pagination > li:first-child > a,
3378
+ .pagination > li:first-child > span {
3379
+ border-left-width: 1px;
3380
+ border-bottom-left-radius: 4px;
3381
+ border-top-left-radius: 4px;
3382
+ }
3383
+
3384
+ .pagination > li:last-child > a,
3385
+ .pagination > li:last-child > span {
3386
+ border-top-right-radius: 4px;
3387
+ border-bottom-right-radius: 4px;
3388
+ }
3389
+
3390
+ .pagination > li > a:hover,
3391
+ .pagination > li > a:focus,
3392
+ .pagination > .active > a,
3393
+ .pagination > .active > span {
3394
+ background-color: #f5f5f5;
3395
+ }
3396
+
3397
+ .pagination > .active > a,
3398
+ .pagination > .active > span {
3399
+ color: #999999;
3400
+ cursor: default;
3401
+ }
3402
+
3403
+ .pagination > .disabled > span,
3404
+ .pagination > .disabled > a,
3405
+ .pagination > .disabled > a:hover,
3406
+ .pagination > .disabled > a:focus {
3407
+ color: #999999;
3408
+ cursor: not-allowed;
3409
+ background-color: #ffffff;
3410
+ }
3411
+
3412
+ .pagination-lg > li > a,
3413
+ .pagination-lg > li > span {
3414
+ padding: 10px 16px;
3415
+ font-size: 18px;
3416
+ }
3417
+
3418
+ .pagination-lg > li:first-child > a,
3419
+ .pagination-lg > li:first-child > span {
3420
+ border-bottom-left-radius: 6px;
3421
+ border-top-left-radius: 6px;
3422
+ }
3423
+
3424
+ .pagination-lg > li:last-child > a,
3425
+ .pagination-lg > li:last-child > span {
3426
+ border-top-right-radius: 6px;
3427
+ border-bottom-right-radius: 6px;
3428
+ }
3429
+
3430
+ .pagination-sm > li > a,
3431
+ .pagination-sm > li > span {
3432
+ padding: 5px 10px;
3433
+ font-size: 12px;
3434
+ }
3435
+
3436
+ .pagination-sm > li:first-child > a,
3437
+ .pagination-sm > li:first-child > span {
3438
+ border-bottom-left-radius: 3px;
3439
+ border-top-left-radius: 3px;
3440
+ }
3441
+
3442
+ .pagination-sm > li:last-child > a,
3443
+ .pagination-sm > li:last-child > span {
3444
+ border-top-right-radius: 3px;
3445
+ border-bottom-right-radius: 3px;
3446
+ }
3447
+
3448
+ .pager {
3449
+ padding-left: 0;
3450
+ margin: 20px 0;
3451
+ text-align: center;
3452
+ list-style: none;
3453
+ }
3454
+
3455
+ .pager:before,
3456
+ .pager:after {
3457
+ display: table;
3458
+ content: " ";
3459
+ }
3460
+
3461
+ .pager:after {
3462
+ clear: both;
3463
+ }
3464
+
3465
+ .pager:before,
3466
+ .pager:after {
3467
+ display: table;
3468
+ content: " ";
3469
+ }
3470
+
3471
+ .pager:after {
3472
+ clear: both;
3473
+ }
3474
+
3475
+ .pager li {
3476
+ display: inline;
3477
+ }
3478
+
3479
+ .pager li > a,
3480
+ .pager li > span {
3481
+ display: inline-block;
3482
+ padding: 5px 14px;
3483
+ background-color: #ffffff;
3484
+ border: 1px solid #dddddd;
3485
+ border-radius: 15px;
3486
+ }
3487
+
3488
+ .pager li > a:hover,
3489
+ .pager li > a:focus {
3490
+ text-decoration: none;
3491
+ background-color: #f5f5f5;
3492
+ }
3493
+
3494
+ .pager .next > a,
3495
+ .pager .next > span {
3496
+ float: right;
3497
+ }
3498
+
3499
+ .pager .previous > a,
3500
+ .pager .previous > span {
3501
+ float: left;
3502
+ }
3503
+
3504
+ .pager .disabled > a,
3505
+ .pager .disabled > a:hover,
3506
+ .pager .disabled > a:focus,
3507
+ .pager .disabled > span {
3508
+ color: #999999;
3509
+ cursor: not-allowed;
3510
+ background-color: #ffffff;
3511
+ }
3512
+
3513
+ .modal-open {
3514
+ overflow: hidden;
3515
+ }
3516
+
3517
+ .modal {
3518
+ position: fixed;
3519
+ top: 0;
3520
+ right: 0;
3521
+ bottom: 0;
3522
+ left: 0;
3523
+ z-index: 1040;
3524
+ display: none;
3525
+ overflow: auto;
3526
+ overflow-y: scroll;
3527
+ }
3528
+
3529
+ .modal.fade .modal-dialog {
3530
+ -webkit-transform: translate(0, -25%);
3531
+ -ms-transform: translate(0, -25%);
3532
+ transform: translate(0, -25%);
3533
+ -webkit-transition: -webkit-transform 0.3s ease-out;
3534
+ -moz-transition: -moz-transform 0.3s ease-out;
3535
+ -o-transition: -o-transform 0.3s ease-out;
3536
+ transition: transform 0.3s ease-out;
3537
+ }
3538
+
3539
+ .modal.in .modal-dialog {
3540
+ -webkit-transform: translate(0, 0);
3541
+ -ms-transform: translate(0, 0);
3542
+ transform: translate(0, 0);
3543
+ }
3544
+
3545
+ .modal-dialog {
3546
+ z-index: 1050;
3547
+ width: auto;
3548
+ padding: 10px;
3549
+ margin-right: auto;
3550
+ margin-left: auto;
3551
+ }
3552
+
3553
+ .modal-content {
3554
+ position: relative;
3555
+ background-color: #ffffff;
3556
+ border: 1px solid #999999;
3557
+ border: 1px solid rgba(0, 0, 0, 0.2);
3558
+ border-radius: 6px;
3559
+ outline: none;
3560
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3561
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3562
+ background-clip: padding-box;
3563
+ }
3564
+
3565
+ .modal-backdrop {
3566
+ position: fixed;
3567
+ top: 0;
3568
+ right: 0;
3569
+ bottom: 0;
3570
+ left: 0;
3571
+ z-index: 1030;
3572
+ background-color: #000000;
3573
+ }
3574
+
3575
+ .modal-backdrop.fade {
3576
+ opacity: 0;
3577
+ filter: alpha(opacity=0);
3578
+ }
3579
+
3580
+ .modal-backdrop.in {
3581
+ opacity: 0.5;
3582
+ filter: alpha(opacity=50);
3583
+ }
3584
+
3585
+ .modal-header {
3586
+ min-height: 16.428571429px;
3587
+ padding: 15px;
3588
+ border-bottom: 1px solid #e5e5e5;
3589
+ }
3590
+
3591
+ .modal-header .close {
3592
+ margin-top: -2px;
3593
+ }
3594
+
3595
+ .modal-title {
3596
+ margin: 0;
3597
+ line-height: 1.428571429;
3598
+ }
3599
+
3600
+ .modal-body {
3601
+ position: relative;
3602
+ padding: 20px;
3603
+ }
3604
+
3605
+ .modal-footer {
3606
+ padding: 19px 20px 20px;
3607
+ margin-top: 15px;
3608
+ text-align: right;
3609
+ border-top: 1px solid #e5e5e5;
3610
+ }
3611
+
3612
+ .modal-footer:before,
3613
+ .modal-footer:after {
3614
+ display: table;
3615
+ content: " ";
3616
+ }
3617
+
3618
+ .modal-footer:after {
3619
+ clear: both;
3620
+ }
3621
+
3622
+ .modal-footer:before,
3623
+ .modal-footer:after {
3624
+ display: table;
3625
+ content: " ";
3626
+ }
3627
+
3628
+ .modal-footer:after {
3629
+ clear: both;
3630
+ }
3631
+
3632
+ .modal-footer .btn + .btn {
3633
+ margin-bottom: 0;
3634
+ margin-left: 5px;
3635
+ }
3636
+
3637
+ .modal-footer .btn-group .btn + .btn {
3638
+ margin-left: -1px;
3639
+ }
3640
+
3641
+ .modal-footer .btn-block + .btn-block {
3642
+ margin-left: 0;
3643
+ }
3644
+
3645
+ @media screen and (min-width: 768px) {
3646
+ .modal-dialog {
3647
+ right: auto;
3648
+ left: 50%;
3649
+ width: 600px;
3650
+ padding-top: 30px;
3651
+ padding-bottom: 30px;
3652
+ }
3653
+ .modal-content {
3654
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3655
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3656
+ }
3657
+ }
3658
+
3659
+ .tooltip {
3660
+ position: absolute;
3661
+ z-index: 1030;
3662
+ display: block;
3663
+ font-size: 12px;
3664
+ line-height: 1.4;
3665
+ opacity: 0;
3666
+ filter: alpha(opacity=0);
3667
+ visibility: visible;
3668
+ }
3669
+
3670
+ .tooltip.in {
3671
+ opacity: 0.9;
3672
+ filter: alpha(opacity=90);
3673
+ }
3674
+
3675
+ .tooltip.top {
3676
+ padding: 5px 0;
3677
+ margin-top: -3px;
3678
+ }
3679
+
3680
+ .tooltip.right {
3681
+ padding: 0 5px;
3682
+ margin-left: 3px;
3683
+ }
3684
+
3685
+ .tooltip.bottom {
3686
+ padding: 5px 0;
3687
+ margin-top: 3px;
3688
+ }
3689
+
3690
+ .tooltip.left {
3691
+ padding: 0 5px;
3692
+ margin-left: -3px;
3693
+ }
3694
+
3695
+ .tooltip-inner {
3696
+ max-width: 200px;
3697
+ padding: 3px 8px;
3698
+ color: #ffffff;
3699
+ text-align: center;
3700
+ text-decoration: none;
3701
+ background-color: #000000;
3702
+ border-radius: 4px;
3703
+ }
3704
+
3705
+ .tooltip-arrow {
3706
+ position: absolute;
3707
+ width: 0;
3708
+ height: 0;
3709
+ border-color: transparent;
3710
+ border-style: solid;
3711
+ }
3712
+
3713
+ .tooltip.top .tooltip-arrow {
3714
+ bottom: 0;
3715
+ left: 50%;
3716
+ margin-left: -5px;
3717
+ border-top-color: #000000;
3718
+ border-width: 5px 5px 0;
3719
+ }
3720
+
3721
+ .tooltip.top-left .tooltip-arrow {
3722
+ bottom: 0;
3723
+ left: 5px;
3724
+ border-top-color: #000000;
3725
+ border-width: 5px 5px 0;
3726
+ }
3727
+
3728
+ .tooltip.top-right .tooltip-arrow {
3729
+ right: 5px;
3730
+ bottom: 0;
3731
+ border-top-color: #000000;
3732
+ border-width: 5px 5px 0;
3733
+ }
3734
+
3735
+ .tooltip.right .tooltip-arrow {
3736
+ top: 50%;
3737
+ left: 0;
3738
+ margin-top: -5px;
3739
+ border-right-color: #000000;
3740
+ border-width: 5px 5px 5px 0;
3741
+ }
3742
+
3743
+ .tooltip.left .tooltip-arrow {
3744
+ top: 50%;
3745
+ right: 0;
3746
+ margin-top: -5px;
3747
+ border-left-color: #000000;
3748
+ border-width: 5px 0 5px 5px;
3749
+ }
3750
+
3751
+ .tooltip.bottom .tooltip-arrow {
3752
+ top: 0;
3753
+ left: 50%;
3754
+ margin-left: -5px;
3755
+ border-bottom-color: #000000;
3756
+ border-width: 0 5px 5px;
3757
+ }
3758
+
3759
+ .tooltip.bottom-left .tooltip-arrow {
3760
+ top: 0;
3761
+ left: 5px;
3762
+ border-bottom-color: #000000;
3763
+ border-width: 0 5px 5px;
3764
+ }
3765
+
3766
+ .tooltip.bottom-right .tooltip-arrow {
3767
+ top: 0;
3768
+ right: 5px;
3769
+ border-bottom-color: #000000;
3770
+ border-width: 0 5px 5px;
3771
+ }
3772
+
3773
+ .popover {
3774
+ position: absolute;
3775
+ top: 0;
3776
+ left: 0;
3777
+ z-index: 1010;
3778
+ display: none;
3779
+ max-width: 276px;
3780
+ padding: 1px;
3781
+ text-align: left;
3782
+ white-space: normal;
3783
+ background-color: #ffffff;
3784
+ border: 1px solid #cccccc;
3785
+ border: 1px solid rgba(0, 0, 0, 0.2);
3786
+ border-radius: 6px;
3787
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3788
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3789
+ background-clip: padding-box;
3790
+ -webkit-bg-clip: padding-box;
3791
+ -moz-bg-clip: padding;
3792
+ }
3793
+
3794
+ .popover.top {
3795
+ margin-top: -10px;
3796
+ }
3797
+
3798
+ .popover.right {
3799
+ margin-left: 10px;
3800
+ }
3801
+
3802
+ .popover.bottom {
3803
+ margin-top: 10px;
3804
+ }
3805
+
3806
+ .popover.left {
3807
+ margin-left: -10px;
3808
+ }
3809
+
3810
+ .popover-title {
3811
+ padding: 8px 14px;
3812
+ margin: 0;
3813
+ font-size: 14px;
3814
+ font-weight: normal;
3815
+ line-height: 18px;
3816
+ background-color: #f7f7f7;
3817
+ border-bottom: 1px solid #ebebeb;
3818
+ border-radius: 5px 5px 0 0;
3819
+ }
3820
+
3821
+ .popover-content {
3822
+ padding: 9px 14px;
3823
+ }
3824
+
3825
+ .popover .arrow,
3826
+ .popover .arrow:after {
3827
+ position: absolute;
3828
+ display: block;
3829
+ width: 0;
3830
+ height: 0;
3831
+ border-color: transparent;
3832
+ border-style: solid;
3833
+ }
3834
+
3835
+ .popover .arrow {
3836
+ border-width: 11px;
3837
+ }
3838
+
3839
+ .popover .arrow:after {
3840
+ border-width: 10px;
3841
+ content: "";
3842
+ }
3843
+
3844
+ .popover.top .arrow {
3845
+ bottom: -11px;
3846
+ left: 50%;
3847
+ margin-left: -11px;
3848
+ border-top-color: #999999;
3849
+ border-top-color: rgba(0, 0, 0, 0.25);
3850
+ border-bottom-width: 0;
3851
+ }
3852
+
3853
+ .popover.top .arrow:after {
3854
+ bottom: 1px;
3855
+ margin-left: -10px;
3856
+ border-top-color: #ffffff;
3857
+ border-bottom-width: 0;
3858
+ content: " ";
3859
+ }
3860
+
3861
+ .popover.right .arrow {
3862
+ top: 50%;
3863
+ left: -11px;
3864
+ margin-top: -11px;
3865
+ border-right-color: #999999;
3866
+ border-right-color: rgba(0, 0, 0, 0.25);
3867
+ border-left-width: 0;
3868
+ }
3869
+
3870
+ .popover.right .arrow:after {
3871
+ bottom: -10px;
3872
+ left: 1px;
3873
+ border-right-color: #ffffff;
3874
+ border-left-width: 0;
3875
+ content: " ";
3876
+ }
3877
+
3878
+ .popover.bottom .arrow {
3879
+ top: -11px;
3880
+ left: 50%;
3881
+ margin-left: -11px;
3882
+ border-bottom-color: #999999;
3883
+ border-bottom-color: rgba(0, 0, 0, 0.25);
3884
+ border-top-width: 0;
3885
+ }
3886
+
3887
+ .popover.bottom .arrow:after {
3888
+ top: 1px;
3889
+ margin-left: -10px;
3890
+ border-bottom-color: #ffffff;
3891
+ border-top-width: 0;
3892
+ content: " ";
3893
+ }
3894
+
3895
+ .popover.left .arrow {
3896
+ top: 50%;
3897
+ right: -11px;
3898
+ margin-top: -11px;
3899
+ border-left-color: #999999;
3900
+ border-left-color: rgba(0, 0, 0, 0.25);
3901
+ border-right-width: 0;
3902
+ }
3903
+
3904
+ .popover.left .arrow:after {
3905
+ right: 1px;
3906
+ bottom: -10px;
3907
+ border-left-color: #ffffff;
3908
+ border-right-width: 0;
3909
+ content: " ";
3910
+ }
3911
+
3912
+ .alert {
3913
+ padding: 15px 35px 15px 15px;
3914
+ margin-bottom: 20px;
3915
+ color: #c09853;
3916
+ background-color: #fcf8e3;
3917
+ border: 1px solid #fbeed5;
3918
+ border-radius: 4px;
3919
+ }
3920
+
3921
+ .alert h4 {
3922
+ margin-top: 0;
3923
+ color: inherit;
3924
+ }
3925
+
3926
+ .alert hr {
3927
+ border-top-color: #f8e5be;
3928
+ }
3929
+
3930
+ .alert .alert-link {
3931
+ font-weight: bold;
3932
+ color: #a47e3c;
3933
+ }
3934
+
3935
+ .alert .close {
3936
+ position: relative;
3937
+ top: -2px;
3938
+ right: -21px;
3939
+ color: inherit;
3940
+ }
3941
+
3942
+ .alert > p,
3943
+ .alert > ul {
3944
+ margin-bottom: 0;
3945
+ }
3946
+
3947
+ .alert > p + p {
3948
+ margin-top: 5px;
3949
+ }
3950
+
3951
+ .alert-success {
3952
+ color: #468847;
3953
+ background-color: #dff0d8;
3954
+ border-color: #d6e9c6;
3955
+ }
3956
+
3957
+ .alert-success hr {
3958
+ border-top-color: #c9e2b3;
3959
+ }
3960
+
3961
+ .alert-success .alert-link {
3962
+ color: #356635;
3963
+ }
3964
+
3965
+ .alert-danger {
3966
+ color: #b94a48;
3967
+ background-color: #f2dede;
3968
+ border-color: #eed3d7;
3969
+ }
3970
+
3971
+ .alert-danger hr {
3972
+ border-top-color: #e6c1c7;
3973
+ }
3974
+
3975
+ .alert-danger .alert-link {
3976
+ color: #953b39;
3977
+ }
3978
+
3979
+ .alert-info {
3980
+ color: #3a87ad;
3981
+ background-color: #d9edf7;
3982
+ border-color: #bce8f1;
3983
+ }
3984
+
3985
+ .alert-info hr {
3986
+ border-top-color: #a6e1ec;
3987
+ }
3988
+
3989
+ .alert-info .alert-link {
3990
+ color: #2d6987;
3991
+ }
3992
+
3993
+ .thumbnail,
3994
+ .img-thumbnail {
3995
+ padding: 4px;
3996
+ line-height: 1.428571429;
3997
+ background-color: #ffffff;
3998
+ border: 1px solid #dddddd;
3999
+ border-radius: 4px;
4000
+ -webkit-transition: all 0.2s ease-in-out;
4001
+ transition: all 0.2s ease-in-out;
4002
+ }
4003
+
4004
+ .thumbnail {
4005
+ display: block;
4006
+ }
4007
+
4008
+ .thumbnail > img,
4009
+ .img-thumbnail {
4010
+ display: inline-block;
4011
+ height: auto;
4012
+ max-width: 100%;
4013
+ }
4014
+
4015
+ a.thumbnail:hover,
4016
+ a.thumbnail:focus {
4017
+ border-color: #428bca;
4018
+ }
4019
+
4020
+ .thumbnail > img {
4021
+ margin-right: auto;
4022
+ margin-left: auto;
4023
+ }
4024
+
4025
+ .thumbnail .caption {
4026
+ padding: 9px;
4027
+ color: #333333;
4028
+ }
4029
+
4030
+ .media,
4031
+ .media-body {
4032
+ overflow: hidden;
4033
+ zoom: 1;
4034
+ }
4035
+
4036
+ .media,
4037
+ .media .media {
4038
+ margin-top: 15px;
4039
+ }
4040
+
4041
+ .media:first-child {
4042
+ margin-top: 0;
4043
+ }
4044
+
4045
+ .media-object {
4046
+ display: block;
4047
+ }
4048
+
4049
+ .media-heading {
4050
+ margin: 0 0 5px;
4051
+ }
4052
+
4053
+ .media > .pull-left {
4054
+ margin-right: 10px;
4055
+ }
4056
+
4057
+ .media > .pull-right {
4058
+ margin-left: 10px;
4059
+ }
4060
+
4061
+ .media-list {
4062
+ padding-left: 0;
4063
+ list-style: none;
4064
+ }
4065
+
4066
+ .label {
4067
+ display: inline;
4068
+ padding: .25em .6em;
4069
+ font-size: 75%;
4070
+ font-weight: 500;
4071
+ line-height: 1;
4072
+ color: #ffffff;
4073
+ text-align: center;
4074
+ white-space: nowrap;
4075
+ vertical-align: baseline;
4076
+ border-radius: .25em;
4077
+ }
4078
+
4079
+ .label[href]:hover,
4080
+ .label[href]:focus {
4081
+ color: #ffffff;
4082
+ text-decoration: none;
4083
+ cursor: pointer;
4084
+ }
4085
+
4086
+ .label-default {
4087
+ background-color: #999999;
4088
+ }
4089
+
4090
+ .label-default[href]:hover,
4091
+ .label-default[href]:focus {
4092
+ background-color: #808080;
4093
+ }
4094
+
4095
+ .label-danger {
4096
+ background-color: #d9534f;
4097
+ }
4098
+
4099
+ .label-danger[href]:hover,
4100
+ .label-danger[href]:focus {
4101
+ background-color: #c9302c;
4102
+ }
4103
+
4104
+ .label-success {
4105
+ background-color: #5cb85c;
4106
+ }
4107
+
4108
+ .label-success[href]:hover,
4109
+ .label-success[href]:focus {
4110
+ background-color: #449d44;
4111
+ }
4112
+
4113
+ .label-warning {
4114
+ background-color: #f0ad4e;
4115
+ }
4116
+
4117
+ .label-warning[href]:hover,
4118
+ .label-warning[href]:focus {
4119
+ background-color: #ec971f;
4120
+ }
4121
+
4122
+ .label-info {
4123
+ background-color: #5bc0de;
4124
+ }
4125
+
4126
+ .label-info[href]:hover,
4127
+ .label-info[href]:focus {
4128
+ background-color: #31b0d5;
4129
+ }
4130
+
4131
+ .badge {
4132
+ display: inline-block;
4133
+ min-width: 10px;
4134
+ padding: 3px 7px;
4135
+ font-size: 12px;
4136
+ font-weight: bold;
4137
+ line-height: 1;
4138
+ color: #ffffff;
4139
+ text-align: center;
4140
+ white-space: nowrap;
4141
+ vertical-align: baseline;
4142
+ background-color: #999999;
4143
+ border-radius: 10px;
4144
+ }
4145
+
4146
+ .badge:empty {
4147
+ display: none;
4148
+ }
4149
+
4150
+ a.badge:hover,
4151
+ a.badge:focus {
4152
+ color: #ffffff;
4153
+ text-decoration: none;
4154
+ cursor: pointer;
4155
+ }
4156
+
4157
+ .btn .badge {
4158
+ position: relative;
4159
+ top: -1px;
4160
+ }
4161
+
4162
+ a.list-group-item.active > .badge,
4163
+ .nav-pills > .active > a > .badge {
4164
+ color: #428bca;
4165
+ background-color: #ffffff;
4166
+ }
4167
+
4168
+ .nav-pills > li > a > .badge {
4169
+ margin-left: 3px;
4170
+ }
4171
+
4172
+ @-webkit-keyframes progress-bar-stripes {
4173
+ from {
4174
+ background-position: 40px 0;
4175
+ }
4176
+ to {
4177
+ background-position: 0 0;
4178
+ }
4179
+ }
4180
+
4181
+ @-moz-keyframes progress-bar-stripes {
4182
+ from {
4183
+ background-position: 40px 0;
4184
+ }
4185
+ to {
4186
+ background-position: 0 0;
4187
+ }
4188
+ }
4189
+
4190
+ @-o-keyframes progress-bar-stripes {
4191
+ from {
4192
+ background-position: 0 0;
4193
+ }
4194
+ to {
4195
+ background-position: 40px 0;
4196
+ }
4197
+ }
4198
+
4199
+ @keyframes progress-bar-stripes {
4200
+ from {
4201
+ background-position: 40px 0;
4202
+ }
4203
+ to {
4204
+ background-position: 0 0;
4205
+ }
4206
+ }
4207
+
4208
+ .progress {
4209
+ height: 20px;
4210
+ margin-bottom: 20px;
4211
+ overflow: hidden;
4212
+ background-color: #f5f5f5;
4213
+ border-radius: 4px;
4214
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4215
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4216
+ }
4217
+
4218
+ .progress-bar {
4219
+ float: left;
4220
+ width: 0;
4221
+ height: 100%;
4222
+ font-size: 12px;
4223
+ color: #ffffff;
4224
+ text-align: center;
4225
+ background-color: #428bca;
4226
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4227
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4228
+ -webkit-transition: width 0.6s ease;
4229
+ transition: width 0.6s ease;
4230
+ }
4231
+
4232
+ .progress-striped .progress-bar {
4233
+ background-color: #428bca;
4234
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4235
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4236
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4237
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4238
+ background-size: 40px 40px;
4239
+ }
4240
+
4241
+ .progress.active .progress-bar {
4242
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
4243
+ -moz-animation: progress-bar-stripes 2s linear infinite;
4244
+ -ms-animation: progress-bar-stripes 2s linear infinite;
4245
+ -o-animation: progress-bar-stripes 2s linear infinite;
4246
+ animation: progress-bar-stripes 2s linear infinite;
4247
+ }
4248
+
4249
+ .progress-bar-danger {
4250
+ background-color: #d9534f;
4251
+ }
4252
+
4253
+ .progress-striped .progress-bar-danger {
4254
+ background-color: #d9534f;
4255
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4256
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4257
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4258
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4259
+ }
4260
+
4261
+ .progress-bar-success {
4262
+ background-color: #5cb85c;
4263
+ }
4264
+
4265
+ .progress-striped .progress-bar-success {
4266
+ background-color: #5cb85c;
4267
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4268
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4269
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4270
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4271
+ }
4272
+
4273
+ .progress-bar-warning {
4274
+ background-color: #f0ad4e;
4275
+ }
4276
+
4277
+ .progress-striped .progress-bar-warning {
4278
+ background-color: #f0ad4e;
4279
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4280
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4281
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4282
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4283
+ }
4284
+
4285
+ .progress-bar-info {
4286
+ background-color: #5bc0de;
4287
+ }
4288
+
4289
+ .progress-striped .progress-bar-info {
4290
+ background-color: #5bc0de;
4291
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4292
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4293
+ background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4294
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4295
+ }
4296
+
4297
+ .accordion {
4298
+ margin-bottom: 20px;
4299
+ }
4300
+
4301
+ .accordion-group {
4302
+ margin-bottom: 2px;
4303
+ border: 1px solid #e5e5e5;
4304
+ border-radius: 4px;
4305
+ }
4306
+
4307
+ .accordion-heading {
4308
+ border-bottom: 0;
4309
+ }
4310
+
4311
+ .accordion-heading .accordion-toggle {
4312
+ display: block;
4313
+ padding: 8px 15px;
4314
+ cursor: pointer;
4315
+ }
4316
+
4317
+ .accordion-inner {
4318
+ padding: 9px 15px;
4319
+ border-top: 1px solid #e5e5e5;
4320
+ }
4321
+
4322
+ .carousel {
4323
+ position: relative;
4324
+ }
4325
+
4326
+ .carousel-inner {
4327
+ position: relative;
4328
+ width: 100%;
4329
+ overflow: hidden;
4330
+ }
4331
+
4332
+ .carousel-inner > .item {
4333
+ position: relative;
4334
+ display: none;
4335
+ -webkit-transition: 0.6s ease-in-out left;
4336
+ transition: 0.6s ease-in-out left;
4337
+ }
4338
+
4339
+ .carousel-inner > .item > img,
4340
+ .carousel-inner > .item > a > img {
4341
+ display: inline-block;
4342
+ height: auto;
4343
+ max-width: 100%;
4344
+ line-height: 1;
4345
+ }
4346
+
4347
+ .carousel-inner > .active,
4348
+ .carousel-inner > .next,
4349
+ .carousel-inner > .prev {
4350
+ display: block;
4351
+ }
4352
+
4353
+ .carousel-inner > .active {
4354
+ left: 0;
4355
+ }
4356
+
4357
+ .carousel-inner > .next,
4358
+ .carousel-inner > .prev {
4359
+ position: absolute;
4360
+ top: 0;
4361
+ width: 100%;
4362
+ }
4363
+
4364
+ .carousel-inner > .next {
4365
+ left: 100%;
4366
+ }
4367
+
4368
+ .carousel-inner > .prev {
4369
+ left: -100%;
4370
+ }
4371
+
4372
+ .carousel-inner > .next.left,
4373
+ .carousel-inner > .prev.right {
4374
+ left: 0;
4375
+ }
4376
+
4377
+ .carousel-inner > .active.left {
4378
+ left: -100%;
4379
+ }
4380
+
4381
+ .carousel-inner > .active.right {
4382
+ left: 100%;
4383
+ }
4384
+
4385
+ .carousel-control {
4386
+ position: absolute;
4387
+ top: 0;
4388
+ bottom: 0;
4389
+ left: 0;
4390
+ width: 15%;
4391
+ font-size: 20px;
4392
+ color: #ffffff;
4393
+ text-align: center;
4394
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
4395
+ opacity: 0.5;
4396
+ filter: alpha(opacity=50);
4397
+ }
4398
+
4399
+ .carousel-control.left {
4400
+ background-color: rgba(0, 0, 0, 0.0001);
4401
+ background-color: transparent;
4402
+ background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
4403
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
4404
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
4405
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
4406
+ background-repeat: repeat-x;
4407
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
4408
+ }
4409
+
4410
+ .carousel-control.right {
4411
+ right: 0;
4412
+ left: auto;
4413
+ background-color: rgba(0, 0, 0, 0.5);
4414
+ background-color: transparent;
4415
+ background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
4416
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
4417
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
4418
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
4419
+ background-repeat: repeat-x;
4420
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
4421
+ }
4422
+
4423
+ .carousel-control:hover,
4424
+ .carousel-control:focus {
4425
+ color: #ffffff;
4426
+ text-decoration: none;
4427
+ opacity: 0.9;
4428
+ filter: alpha(opacity=90);
4429
+ }
4430
+
4431
+ .carousel-control .glyphicon,
4432
+ .carousel-control .icon-prev,
4433
+ .carousel-control .icon-next {
4434
+ position: absolute;
4435
+ top: 50%;
4436
+ left: 50%;
4437
+ z-index: 5;
4438
+ display: inline-block;
4439
+ width: 20px;
4440
+ height: 20px;
4441
+ margin-top: -10px;
4442
+ margin-left: -10px;
4443
+ font-family: serif;
4444
+ }
4445
+
4446
+ .carousel-control .icon-prev:before {
4447
+ content: '\2039';
4448
+ }
4449
+
4450
+ .carousel-control .icon-next:before {
4451
+ content: '\203a';
4452
+ }
4453
+
4454
+ .carousel-indicators {
4455
+ position: absolute;
4456
+ bottom: 10px;
4457
+ left: 50%;
4458
+ z-index: 15;
4459
+ width: 60%;
4460
+ padding-left: 0;
4461
+ margin-left: -30%;
4462
+ text-align: center;
4463
+ list-style: none;
4464
+ }
4465
+
4466
+ .carousel-indicators li {
4467
+ display: inline-block;
4468
+ width: 10px;
4469
+ height: 10px;
4470
+ margin: 1px;
4471
+ text-indent: -999px;
4472
+ cursor: pointer;
4473
+ border: 1px solid #ffffff;
4474
+ border-radius: 10px;
4475
+ }
4476
+
4477
+ .carousel-indicators .active {
4478
+ width: 12px;
4479
+ height: 12px;
4480
+ margin: 0;
4481
+ background-color: #ffffff;
4482
+ }
4483
+
4484
+ .carousel-caption {
4485
+ position: absolute;
4486
+ right: 15%;
4487
+ bottom: 20px;
4488
+ left: 15%;
4489
+ z-index: 10;
4490
+ padding-top: 20px;
4491
+ padding-bottom: 20px;
4492
+ color: #ffffff;
4493
+ text-align: center;
4494
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
4495
+ }
4496
+
4497
+ .carousel-caption .btn {
4498
+ text-shadow: none;
4499
+ }
4500
+
4501
+ @media screen and (min-width: 768px) {
4502
+ .carousel-control .glyphicon,
4503
+ .carousel-control .icon-prev,
4504
+ .carousel-control .icon-next {
4505
+ width: 30px;
4506
+ height: 30px;
4507
+ margin-top: -15px;
4508
+ margin-left: -15px;
4509
+ font-size: 30px;
4510
+ }
4511
+ .carousel-caption {
4512
+ right: 20%;
4513
+ left: 20%;
4514
+ padding-bottom: 30px;
4515
+ }
4516
+ .carousel-indicators {
4517
+ bottom: 20px;
4518
+ }
4519
+ }
4520
+
4521
+ .jumbotron {
4522
+ padding: 30px;
4523
+ margin-bottom: 30px;
4524
+ font-size: 21px;
4525
+ font-weight: 200;
4526
+ line-height: 2.1428571435;
4527
+ color: inherit;
4528
+ background-color: #eeeeee;
4529
+ }
4530
+
4531
+ .jumbotron h1 {
4532
+ line-height: 1;
4533
+ color: inherit;
4534
+ }
4535
+
4536
+ .jumbotron p {
4537
+ line-height: 1.4;
4538
+ }
4539
+
4540
+ @media screen and (min-width: 768px) {
4541
+ .jumbotron {
4542
+ padding: 50px 60px;
4543
+ border-radius: 6px;
4544
+ }
4545
+ .jumbotron h1 {
4546
+ font-size: 63px;
4547
+ }
4548
+ }
4549
+
4550
+ .clearfix:before,
4551
+ .clearfix:after {
4552
+ display: table;
4553
+ content: " ";
4554
+ }
4555
+
4556
+ .clearfix:after {
4557
+ clear: both;
4558
+ }
4559
+
4560
+ .pull-right {
4561
+ float: right !important;
4562
+ }
4563
+
4564
+ .pull-left {
4565
+ float: left !important;
4566
+ }
4567
+
4568
+ .hide {
4569
+ display: none !important;
4570
+ }
4571
+
4572
+ .show {
4573
+ display: block !important;
4574
+ }
4575
+
4576
+ .invisible {
4577
+ visibility: hidden;
4578
+ }
4579
+
4580
+ .text-hide {
4581
+ font: 0/0 a;
4582
+ color: transparent;
4583
+ text-shadow: none;
4584
+ background-color: transparent;
4585
+ border: 0;
4586
+ }
4587
+
4588
+ .affix {
4589
+ position: fixed;
4590
+ }
4591
+
4592
+ @-ms-viewport {
4593
+ width: device-width;
4594
+ }
4595
+
4596
+ @media screen and (max-width: 400px) {
4597
+ @-ms-viewport {
4598
+ width: 320px;
4599
+ }
4600
+ }
4601
+
4602
+ .hidden {
4603
+ display: none !important;
4604
+ visibility: hidden !important;
4605
+ }
4606
+
4607
+ .visible-sm {
4608
+ display: block !important;
4609
+ }
4610
+
4611
+ tr.visible-sm {
4612
+ display: table-row !important;
4613
+ }
4614
+
4615
+ th.visible-sm,
4616
+ td.visible-sm {
4617
+ display: table-cell !important;
4618
+ }
4619
+
4620
+ .visible-md {
4621
+ display: none !important;
4622
+ }
4623
+
4624
+ tr.visible-md {
4625
+ display: none !important;
4626
+ }
4627
+
4628
+ th.visible-md,
4629
+ td.visible-md {
4630
+ display: none !important;
4631
+ }
4632
+
4633
+ .visible-lg {
4634
+ display: none !important;
4635
+ }
4636
+
4637
+ tr.visible-lg {
4638
+ display: none !important;
4639
+ }
4640
+
4641
+ th.visible-lg,
4642
+ td.visible-lg {
4643
+ display: none !important;
4644
+ }
4645
+
4646
+ .hidden-sm {
4647
+ display: none !important;
4648
+ }
4649
+
4650
+ tr.hidden-sm {
4651
+ display: none !important;
4652
+ }
4653
+
4654
+ th.hidden-sm,
4655
+ td.hidden-sm {
4656
+ display: none !important;
4657
+ }
4658
+
4659
+ .hidden-md {
4660
+ display: block !important;
4661
+ }
4662
+
4663
+ tr.hidden-md {
4664
+ display: table-row !important;
4665
+ }
4666
+
4667
+ th.hidden-md,
4668
+ td.hidden-md {
4669
+ display: table-cell !important;
4670
+ }
4671
+
4672
+ .hidden-lg {
4673
+ display: block !important;
4674
+ }
4675
+
4676
+ tr.hidden-lg {
4677
+ display: table-row !important;
4678
+ }
4679
+
4680
+ th.hidden-lg,
4681
+ td.hidden-lg {
4682
+ display: table-cell !important;
4683
+ }
4684
+
4685
+ @media (min-width: 768px) and (max-width: 991px) {
4686
+ .visible-sm {
4687
+ display: none !important;
4688
+ }
4689
+ tr.visible-sm {
4690
+ display: none !important;
4691
+ }
4692
+ th.visible-sm,
4693
+ td.visible-sm {
4694
+ display: none !important;
4695
+ }
4696
+ .visible-md {
4697
+ display: block !important;
4698
+ }
4699
+ tr.visible-md {
4700
+ display: table-row !important;
4701
+ }
4702
+ th.visible-md,
4703
+ td.visible-md {
4704
+ display: table-cell !important;
4705
+ }
4706
+ .visible-lg {
4707
+ display: none !important;
4708
+ }
4709
+ tr.visible-lg {
4710
+ display: none !important;
4711
+ }
4712
+ th.visible-lg,
4713
+ td.visible-lg {
4714
+ display: none !important;
4715
+ }
4716
+ .hidden-sm {
4717
+ display: block !important;
4718
+ }
4719
+ tr.hidden-sm {
4720
+ display: table-row !important;
4721
+ }
4722
+ th.hidden-sm,
4723
+ td.hidden-sm {
4724
+ display: table-cell !important;
4725
+ }
4726
+ .hidden-md {
4727
+ display: none !important;
4728
+ }
4729
+ tr.hidden-md {
4730
+ display: none !important;
4731
+ }
4732
+ th.hidden-md,
4733
+ td.hidden-md {
4734
+ display: none !important;
4735
+ }
4736
+ .hidden-lg {
4737
+ display: block !important;
4738
+ }
4739
+ tr.hidden-lg {
4740
+ display: table-row !important;
4741
+ }
4742
+ th.hidden-lg,
4743
+ td.hidden-lg {
4744
+ display: table-cell !important;
4745
+ }
4746
+ }
4747
+
4748
+ @media (min-width: 992px) {
4749
+ .visible-sm {
4750
+ display: none !important;
4751
+ }
4752
+ tr.visible-sm {
4753
+ display: none !important;
4754
+ }
4755
+ th.visible-sm,
4756
+ td.visible-sm {
4757
+ display: none !important;
4758
+ }
4759
+ .visible-md {
4760
+ display: none !important;
4761
+ }
4762
+ tr.visible-md {
4763
+ display: none !important;
4764
+ }
4765
+ th.visible-md,
4766
+ td.visible-md {
4767
+ display: none !important;
4768
+ }
4769
+ .visible-lg {
4770
+ display: block !important;
4771
+ }
4772
+ tr.visible-lg {
4773
+ display: table-row !important;
4774
+ }
4775
+ th.visible-lg,
4776
+ td.visible-lg {
4777
+ display: table-cell !important;
4778
+ }
4779
+ .hidden-sm {
4780
+ display: block !important;
4781
+ }
4782
+ tr.hidden-sm {
4783
+ display: table-row !important;
4784
+ }
4785
+ th.hidden-sm,
4786
+ td.hidden-sm {
4787
+ display: table-cell !important;
4788
+ }
4789
+ .hidden-md {
4790
+ display: block !important;
4791
+ }
4792
+ tr.hidden-md {
4793
+ display: table-row !important;
4794
+ }
4795
+ th.hidden-md,
4796
+ td.hidden-md {
4797
+ display: table-cell !important;
4798
+ }
4799
+ .hidden-lg {
4800
+ display: none !important;
4801
+ }
4802
+ tr.hidden-lg {
4803
+ display: none !important;
4804
+ }
4805
+ th.hidden-lg,
4806
+ td.hidden-lg {
4807
+ display: none !important;
4808
+ }
4809
+ }
4810
+
4811
+ .visible-print {
4812
+ display: none !important;
4813
+ }
4814
+
4815
+ tr.visible-print {
4816
+ display: none !important;
4817
+ }
4818
+
4819
+ th.visible-print,
4820
+ td.visible-print {
4821
+ display: none !important;
4822
+ }
4823
+
4824
+ @media print {
4825
+ .visible-print {
4826
+ display: block !important;
4827
+ }
4828
+ tr.visible-print {
4829
+ display: table-row !important;
4830
+ }
4831
+ th.visible-print,
4832
+ td.visible-print {
4833
+ display: table-cell !important;
4834
+ }
4835
+ .hidden-print {
4836
+ display: none !important;
4837
+ }
4838
+ tr.hidden-print {
4839
+ display: none !important;
4840
+ }
4841
+ th.hidden-print,
4842
+ td.hidden-print {
4843
+ display: none !important;
4844
+ }
4845
+ }