burp_cms 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (412) hide show
  1. data/LICENSE.txt +165 -0
  2. data/README.markdown +11 -0
  3. data/Rakefile +56 -0
  4. data/app/assets/images/burp/add-group-to-menu-1.png +0 -0
  5. data/app/assets/images/burp/add-group-to-menu-2.png +0 -0
  6. data/app/assets/images/burp/add-group-to-menu-3.png +0 -0
  7. data/app/assets/images/burp/add-group-to-menu-4.png +0 -0
  8. data/app/assets/images/burp/add-image-1.png +0 -0
  9. data/app/assets/images/burp/add-image-2.png +0 -0
  10. data/app/assets/images/burp/add-image-3.png +0 -0
  11. data/app/assets/images/burp/add-image-4.png +0 -0
  12. data/app/assets/images/burp/add-image-5.png +0 -0
  13. data/app/assets/images/burp/add-link-to-group-1.png +0 -0
  14. data/app/assets/images/burp/add-link-to-group-2.png +0 -0
  15. data/app/assets/images/burp/add-link-to-group-3.png +0 -0
  16. data/app/assets/images/burp/add-link-to-menu-1.png +0 -0
  17. data/app/assets/images/burp/add-link-to-menu-2.png +0 -0
  18. data/app/assets/images/burp/add-link-to-menu-3.png +0 -0
  19. data/app/assets/images/burp/add-link-to-menu-4.png +0 -0
  20. data/app/assets/images/burp/add-page-to-menu-1.png +0 -0
  21. data/app/assets/images/burp/add-page-to-menu-2.png +0 -0
  22. data/app/assets/images/burp/add-page-to-menu-3.png +0 -0
  23. data/app/assets/images/burp/add-page-to-menu-4.png +0 -0
  24. data/app/assets/images/burp/add-page-to-menu-5.png +0 -0
  25. data/app/assets/images/burp/adding-a-page-1.png +0 -0
  26. data/app/assets/images/burp/adding-a-page-2.png +0 -0
  27. data/app/assets/images/burp/adding-a-page-3.png +0 -0
  28. data/app/assets/images/burp/adding-a-page-4.png +0 -0
  29. data/app/assets/images/burp/change-page-title-1.png +0 -0
  30. data/app/assets/images/burp/change-page-title-2.png +0 -0
  31. data/app/assets/images/burp/change-page-title-3.png +0 -0
  32. data/app/assets/images/burp/change-page-title-4.png +0 -0
  33. data/app/assets/images/burp/change-the-text-1.png +0 -0
  34. data/app/assets/images/burp/change-the-text-2.png +0 -0
  35. data/app/assets/images/burp/change-the-text-3.png +0 -0
  36. data/app/assets/images/burp/enter-page-edit-mode-1.png +0 -0
  37. data/app/assets/images/burp/enter-page-edit-mode-2.png +0 -0
  38. data/app/assets/images/burp/enter-page-edit-mode-3.png +0 -0
  39. data/app/assets/images/burp/enter-page-edit-mode-4.jpg +0 -0
  40. data/app/assets/images/burp/enter-page-edit-mode-4.png +0 -0
  41. data/app/assets/images/burp/img/glyphicons-halflings-white.png +0 -0
  42. data/app/assets/images/burp/img/glyphicons-halflings.png +0 -0
  43. data/app/assets/images/burp/move-link-to-bottom-of-menu-1.png +0 -0
  44. data/app/assets/images/burp/move-link-to-bottom-of-menu-2.png +0 -0
  45. data/app/assets/images/burp/move-link-to-bottom-of-menu-3.png +0 -0
  46. data/app/assets/images/burp/remove-a-page-1.png +0 -0
  47. data/app/assets/images/burp/remove-a-page-2.png +0 -0
  48. data/app/assets/images/burp/remove-a-page-3.png +0 -0
  49. data/app/assets/images/burp/remove-a-page-4.png +0 -0
  50. data/app/assets/images/burp/remove-image-1.png +0 -0
  51. data/app/assets/images/burp/remove-image-2.png +0 -0
  52. data/app/assets/images/burp/remove-image-3.png +0 -0
  53. data/app/assets/images/burp/remove-image-4.png +0 -0
  54. data/app/assets/images/burp/remove-image-5.png +0 -0
  55. data/app/assets/images/burp/remove-page-from-menu-1.png +0 -0
  56. data/app/assets/images/burp/remove-page-from-menu-2.png +0 -0
  57. data/app/assets/images/burp/remove-page-from-menu-3.png +0 -0
  58. data/app/assets/images/burp/remove-page-from-menu-4.png +0 -0
  59. data/app/assets/javascripts/burp/application.js +22 -0
  60. data/app/assets/javascripts/burp/burp.js +2 -0
  61. data/app/assets/javascripts/burp/cms_helper.js +49 -0
  62. data/app/assets/javascripts/burp/edit-page.js +22 -0
  63. data/app/assets/javascripts/burp/lib/bootstrap.min.js +6 -0
  64. data/app/assets/javascripts/burp/lib/debug.js +222 -0
  65. data/app/assets/javascripts/burp/lib/fileupload.js +1255 -0
  66. data/app/assets/javascripts/burp/lib/missing-restful-verbs.js +46 -0
  67. data/app/assets/javascripts/burp/menu-functions.js +28 -0
  68. data/app/assets/javascripts/burp/pages-drag-and-drop.js +151 -0
  69. data/app/assets/packages/burp/editing/css/dropzone.css +15 -0
  70. data/app/assets/packages/burp/editing/css/edit-content.less +126 -0
  71. data/app/assets/packages/burp/editing/css/gallery.css +167 -0
  72. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/LICENSE +23 -0
  73. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/README.md +8 -0
  74. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/activeline.html +72 -0
  75. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/changemode.html +50 -0
  76. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/closetag.html +65 -0
  77. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/complete.html +70 -0
  78. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/emacs.html +59 -0
  79. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/folding.html +61 -0
  80. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/formatting.html +80 -0
  81. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/fullscreen.html +152 -0
  82. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/loadmode.html +39 -0
  83. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/marker.html +52 -0
  84. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/matchhighlighter.html +37 -0
  85. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/multiplex.html +59 -0
  86. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/mustache.html +57 -0
  87. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/preview.html +76 -0
  88. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/resize.html +41 -0
  89. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/runmode.html +49 -0
  90. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/search.html +83 -0
  91. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/theme.html +78 -0
  92. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/vim.html +50 -0
  93. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/demo/visibletabs.html +61 -0
  94. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/baboon.png +0 -0
  95. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/baboon_vector.svg +153 -0
  96. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/compress.html +148 -0
  97. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/docs.css +154 -0
  98. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/internals.html +494 -0
  99. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/manual.html +1128 -0
  100. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/oldrelease.html +267 -0
  101. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/reporting.html +57 -0
  102. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/doc/upgrade_v2.2.html +95 -0
  103. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/index.html +417 -0
  104. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/keymap/emacs.js +29 -0
  105. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/keymap/vim.js +766 -0
  106. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/codemirror.css +168 -0
  107. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/codemirror.js +3181 -0
  108. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/closetag.js +146 -0
  109. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/dialog.css +23 -0
  110. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/dialog.js +63 -0
  111. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/foldcode.js +196 -0
  112. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/formatting.js +297 -0
  113. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/javascript-hint.js +134 -0
  114. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/loadmode.js +51 -0
  115. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/match-highlighter.js +44 -0
  116. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/multiplex.js +72 -0
  117. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/overlay.js +52 -0
  118. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/pig-hint.js +123 -0
  119. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/runmode.js +49 -0
  120. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/search.js +118 -0
  121. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/searchcursor.js +117 -0
  122. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/simple-hint.css +16 -0
  123. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/lib/util/simple-hint.js +72 -0
  124. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/clike/clike.js +271 -0
  125. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/clike/index.html +101 -0
  126. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/clike/scala.html +765 -0
  127. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/clojure/clojure.js +207 -0
  128. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/clojure/index.html +66 -0
  129. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/coffeescript/LICENSE +22 -0
  130. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/coffeescript/coffeescript.js +347 -0
  131. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/coffeescript/index.html +727 -0
  132. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/css/css.js +124 -0
  133. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/css/index.html +55 -0
  134. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/diff/diff.js +32 -0
  135. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/diff/index.html +104 -0
  136. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ecl/ecl.js +203 -0
  137. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ecl/index.html +42 -0
  138. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/erlang/erlang.js +251 -0
  139. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/erlang/index.html +61 -0
  140. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/gfm/gfm.js +144 -0
  141. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/gfm/index.html +47 -0
  142. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/go/go.js +170 -0
  143. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/go/index.html +72 -0
  144. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/groovy/groovy.js +210 -0
  145. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/groovy/index.html +71 -0
  146. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/haskell/haskell.js +242 -0
  147. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/haskell/index.html +60 -0
  148. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/htmlembedded/htmlembedded.js +68 -0
  149. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/htmlembedded/index.html +49 -0
  150. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/htmlmixed/htmlmixed.js +85 -0
  151. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/htmlmixed/index.html +51 -0
  152. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/javascript/index.html +77 -0
  153. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/javascript/javascript.js +361 -0
  154. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/jinja2/index.html +37 -0
  155. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/jinja2/jinja2.js +42 -0
  156. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/less/index.html +618 -0
  157. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/less/less.js +232 -0
  158. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/lua/index.html +72 -0
  159. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/lua/lua.js +140 -0
  160. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/markdown/index.html +338 -0
  161. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/markdown/markdown.js +245 -0
  162. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/mysql/index.html +41 -0
  163. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/mysql/mysql.js +188 -0
  164. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ntriples/index.html +32 -0
  165. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ntriples/ntriples.js +172 -0
  166. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/pascal/LICENSE +7 -0
  167. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/pascal/index.html +48 -0
  168. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/pascal/pascal.js +94 -0
  169. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/perl/LICENSE +19 -0
  170. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/perl/index.html +62 -0
  171. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/perl/perl.js +816 -0
  172. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/php/index.html +48 -0
  173. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/php/php.js +150 -0
  174. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/pig/index.html +42 -0
  175. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/pig/pig.js +172 -0
  176. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/plsql/index.html +62 -0
  177. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/plsql/plsql.js +217 -0
  178. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/properties/index.html +40 -0
  179. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/properties/properties.js +63 -0
  180. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/python/LICENSE.txt +21 -0
  181. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/python/index.html +122 -0
  182. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/python/python.js +338 -0
  183. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/r/LICENSE +24 -0
  184. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/r/index.html +73 -0
  185. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/r/r.js +141 -0
  186. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rpm/changes/changes.js +19 -0
  187. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rpm/changes/index.html +53 -0
  188. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rpm/spec/index.html +99 -0
  189. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rpm/spec/spec.css +5 -0
  190. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rpm/spec/spec.js +66 -0
  191. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rst/index.html +525 -0
  192. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rst/rst.js +326 -0
  193. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ruby/LICENSE +24 -0
  194. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ruby/index.html +171 -0
  195. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/ruby/ruby.js +195 -0
  196. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rust/index.html +48 -0
  197. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/rust/rust.js +432 -0
  198. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/scheme/index.html +64 -0
  199. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/scheme/scheme.js +230 -0
  200. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/shell/index.html +50 -0
  201. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/shell/shell.js +103 -0
  202. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/smalltalk/index.html +55 -0
  203. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/smalltalk/smalltalk.js +139 -0
  204. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/smarty/index.html +82 -0
  205. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/smarty/smarty.js +148 -0
  206. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/sparql/index.html +40 -0
  207. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/sparql/sparql.js +143 -0
  208. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/stex/index.html +95 -0
  209. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/stex/stex.js +182 -0
  210. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/stex/test.html +263 -0
  211. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/tiddlywiki/index.html +140 -0
  212. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/tiddlywiki/tiddlywiki.css +14 -0
  213. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/tiddlywiki/tiddlywiki.js +384 -0
  214. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/tiki/index.html +82 -0
  215. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/tiki/tiki.css +26 -0
  216. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/tiki/tiki.js +316 -0
  217. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/vbscript/index.html +42 -0
  218. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/vbscript/vbscript.js +26 -0
  219. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/velocity/index.html +103 -0
  220. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/velocity/velocity.js +146 -0
  221. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/verilog/index.html +210 -0
  222. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/verilog/verilog.js +194 -0
  223. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xml/index.html +44 -0
  224. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xml/xml.js +325 -0
  225. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/LICENSE +20 -0
  226. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/index.html +222 -0
  227. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/index.html +27 -0
  228. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/testBase.js +42 -0
  229. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
  230. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/testMultiAttr.js +16 -0
  231. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/testNamespaces.js +91 -0
  232. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/testProcessingInstructions.js +16 -0
  233. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/test/testQuotes.js +19 -0
  234. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/xquery/xquery.js +448 -0
  235. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/yaml/index.html +67 -0
  236. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/mode/yaml/yaml.js +95 -0
  237. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/package.json +29 -0
  238. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/test/index.html +28 -0
  239. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/test/mode_test.css +22 -0
  240. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/test/mode_test.js +164 -0
  241. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/test/test.js +344 -0
  242. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/ambiance.css +81 -0
  243. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/blackboard.css +25 -0
  244. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/cobalt.css +18 -0
  245. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/eclipse.css +25 -0
  246. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/elegant.css +10 -0
  247. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/erlang-dark.css +21 -0
  248. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/lesser-dark.css +44 -0
  249. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/monokai.css +28 -0
  250. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/neat.css +9 -0
  251. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/night.css +21 -0
  252. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/rubyblue.css +21 -0
  253. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/vibrant-ink.css +27 -0
  254. data/app/assets/packages/burp/editing/dep/CodeMirror-2.3/theme/xq-dark.css +46 -0
  255. data/app/assets/packages/burp/editing/dep/FontAwesome/FontAwesome-Vectors.pdf +3180 -7
  256. data/app/assets/packages/burp/editing/dep/FontAwesome/FontAwesome.ttf +0 -0
  257. data/app/assets/packages/burp/editing/dep/FontAwesome/README.md +18 -0
  258. data/app/assets/packages/burp/editing/dep/FontAwesome/css/font-awesome-ie7.css +645 -0
  259. data/app/assets/packages/burp/editing/dep/FontAwesome/css/font-awesome.less +309 -0
  260. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/css/font-awesome-ie7.css +213 -0
  261. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/css/font-awesome.css +303 -0
  262. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/css/prettify.css +30 -0
  263. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/css/site.css +4904 -0
  264. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/fontawesome-webfont.eot +0 -0
  265. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/fontawesome-webfont.svg +255 -0
  266. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/fontawesome-webfont.ttf +0 -0
  267. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/fontawesome-webfont.woff +0 -0
  268. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/museo_slab_300-webfont.eot +0 -0
  269. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/museo_slab_300-webfont.ttf +0 -0
  270. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/museo_slab_500-webfont.eot +0 -0
  271. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/museo_slab_500-webfont.ttf +0 -0
  272. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/proximanova-webfont.eot +0 -0
  273. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/font/proximanova-webfont.ttf +0 -0
  274. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/ico/favicon.ico +0 -0
  275. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/backbone.min.js +37 -0
  276. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/index/index.js +89 -0
  277. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/jquery-1.7.1.min.js +4 -0
  278. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/prettify.min.js +28 -0
  279. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-alert.js +94 -0
  280. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-button.js +98 -0
  281. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-carousel.js +157 -0
  282. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-collapse.js +136 -0
  283. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-dropdown.js +92 -0
  284. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-modal.js +210 -0
  285. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-popover.js +95 -0
  286. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-scrollspy.js +125 -0
  287. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-tab.js +130 -0
  288. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-tooltip.js +270 -0
  289. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-transition.js +51 -0
  290. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/tw-bs-201/bootstrap-typeahead.js +271 -0
  291. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/js/underscore.min.js +31 -0
  292. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/font-awesome-ie7.less +245 -0
  293. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/font-awesome.less +327 -0
  294. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/font-site.less +26 -0
  295. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/mixins.less +43 -0
  296. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/site.less +300 -0
  297. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/accordion.less +33 -0
  298. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/alerts.less +58 -0
  299. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/bootstrap.less +62 -0
  300. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/breadcrumbs.less +24 -0
  301. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/button-groups.less +191 -0
  302. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/buttons.less +191 -0
  303. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/carousel.less +121 -0
  304. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/close.less +29 -0
  305. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/code.less +57 -0
  306. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/component-animations.less +20 -0
  307. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/dropdowns.less +143 -0
  308. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/forms.less +584 -0
  309. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/grid.less +5 -0
  310. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/hero-unit.less +22 -0
  311. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/labels-badges.less +55 -0
  312. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/layouts.less +17 -0
  313. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/mixins.less +631 -0
  314. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/modals.less +90 -0
  315. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/navbar.less +364 -0
  316. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/navs.less +363 -0
  317. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/pager.less +36 -0
  318. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/pagination.less +56 -0
  319. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/popovers.less +49 -0
  320. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/progress-bars.less +117 -0
  321. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/reset.less +126 -0
  322. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/responsive-1200px-min.less +26 -0
  323. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/responsive-767px-max.less +149 -0
  324. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/responsive-768px-979px.less +17 -0
  325. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/responsive-navbar.less +146 -0
  326. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/responsive-utilities.less +41 -0
  327. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/responsive.less +48 -0
  328. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/scaffolding.less +29 -0
  329. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/sprites.less +191 -0
  330. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/tables.less +176 -0
  331. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/thumbnails.less +47 -0
  332. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/tooltip.less +35 -0
  333. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/type.less +235 -0
  334. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/utilities.less +23 -0
  335. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/variables.less +205 -0
  336. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/twbs-203/wells.less +27 -0
  337. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/assets/less/variables.less +206 -0
  338. data/app/assets/packages/burp/editing/dep/FontAwesome/docs/index.html +1087 -0
  339. data/app/assets/packages/burp/editing/dep/FontAwesome/font/fontawesome-webfont.eot +0 -0
  340. data/app/assets/packages/burp/editing/dep/FontAwesome/font/fontawesome-webfont.svg +255 -0
  341. data/app/assets/packages/burp/editing/dep/FontAwesome/font/fontawesome-webfont.ttf +0 -0
  342. data/app/assets/packages/burp/editing/dep/FontAwesome/font/fontawesome-webfont.woff +0 -0
  343. data/app/assets/packages/burp/editing/dep/FontAwesome/less/font-awesome-ie7.less +245 -0
  344. data/app/assets/packages/burp/editing/dep/FontAwesome/less/font-awesome.less +329 -0
  345. data/app/assets/packages/burp/editing/dep/FontAwesome/sass/font-awesome.sass +712 -0
  346. data/app/assets/packages/burp/editing/dep/FontAwesome/sass/font-awesome.scss +329 -0
  347. data/app/assets/packages/burp/editing/js/admin-dock.js +282 -0
  348. data/app/assets/packages/burp/editing/js/content-decorator.js +321 -0
  349. data/app/assets/packages/burp/editing/js/main.js +331 -0
  350. data/app/assets/packages/burp/editing/js/marked.js +781 -0
  351. data/app/assets/packages/burp/editing/js/md5.js +207 -0
  352. data/app/assets/packages/burp/editing/js/stay.js +143 -0
  353. data/app/assets/packages/burp/editing.js +23 -0
  354. data/app/assets/packages/burp/editing.less +7 -0
  355. data/app/assets/packages/gritter/README.markdown +57 -0
  356. data/app/assets/packages/gritter/css/jquery.gritter.less +101 -0
  357. data/app/assets/packages/gritter/gritter.js +3 -0
  358. data/app/assets/packages/gritter/gritter.less +3 -0
  359. data/app/assets/packages/gritter/images/gritter-light.png +0 -0
  360. data/app/assets/packages/gritter/images/gritter-long.png +0 -0
  361. data/app/assets/packages/gritter/images/gritter.png +0 -0
  362. data/app/assets/packages/gritter/images/ie-spacer.gif +0 -0
  363. data/app/assets/packages/gritter/images/trees.jpg +0 -0
  364. data/app/assets/packages/gritter/index.html +269 -0
  365. data/app/assets/packages/gritter/js/jquery.gritter.js +418 -0
  366. data/app/assets/packages/gritter/js/jquery.gritter.min.js +1 -0
  367. data/app/assets/stylesheets/burp/application.less +82 -0
  368. data/app/assets/stylesheets/burp/bootstrap.less +6158 -0
  369. data/app/assets/stylesheets/burp/docs.less +83 -0
  370. data/app/assets/stylesheets/burp/fileupload.less +31 -0
  371. data/app/assets/stylesheets/burp/views/dnd-menu.less +87 -0
  372. data/app/assets/stylesheets/burp/views/files/index.less +40 -0
  373. data/app/assets/stylesheets/burp/views/pages/index.less +4 -0
  374. data/app/assets/stylesheets/burp/views/static/help.less +11 -0
  375. data/app/controllers/burp/application_controller.rb +45 -0
  376. data/app/controllers/burp/catch_all_controller.rb +24 -0
  377. data/app/controllers/burp/error_controller.rb +7 -0
  378. data/app/controllers/burp/files_controller.rb +92 -0
  379. data/app/controllers/burp/groups_controller.rb +49 -0
  380. data/app/controllers/burp/links_controller.rb +48 -0
  381. data/app/controllers/burp/menus_controller.rb +33 -0
  382. data/app/controllers/burp/pages_controller.rb +112 -0
  383. data/app/controllers/burp/static_controller.rb +11 -0
  384. data/app/helpers/burp/application_helper.rb +4 -0
  385. data/app/lib/burp/access.rb +63 -0
  386. data/app/lib/burp/group.rb +110 -0
  387. data/app/lib/burp/link.rb +66 -0
  388. data/app/lib/burp/page.rb +23 -0
  389. data/app/lib/burp/util/upload_handler.rb +84 -0
  390. data/app/lib/burp/util.rb +39 -0
  391. data/app/models/burp/file_model.rb +45 -0
  392. data/app/models/burp/menu.rb +60 -0
  393. data/app/models/burp/page_model.rb +158 -0
  394. data/app/views/burp/files/index.html.erb +87 -0
  395. data/app/views/burp/groups/edit.html.erb +18 -0
  396. data/app/views/burp/links/edit.html.erb +19 -0
  397. data/app/views/burp/menus/edit.html.erb +157 -0
  398. data/app/views/burp/menus/index.html.erb +9 -0
  399. data/app/views/burp/pages/edit.html.erb +20 -0
  400. data/app/views/burp/pages/index.html.erb +114 -0
  401. data/app/views/burp/static/help.html.erb +543 -0
  402. data/app/views/burp/static/index.html.erb +15 -0
  403. data/app/views/layouts/burp/application.html.erb +57 -0
  404. data/config/cucumber.yml +12 -0
  405. data/config/initializers/bootstrap_form.rb +2 -0
  406. data/config/routes.rb +30 -0
  407. data/lib/burp/capistrano.rb +51 -0
  408. data/lib/burp/engine.rb +15 -0
  409. data/lib/burp/version.rb +3 -0
  410. data/lib/burp_cms.rb +64 -0
  411. data/lib/tasks/burp_tasks.rake +99 -0
  412. metadata +845 -0
@@ -0,0 +1,4904 @@
1
+ /*!
2
+ * Bootstrap v2.0.3
3
+ *
4
+ * Copyright 2012 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 @twitter by @mdo and @fat.
9
+ */
10
+ article,
11
+ aside,
12
+ details,
13
+ figcaption,
14
+ figure,
15
+ footer,
16
+ header,
17
+ hgroup,
18
+ nav,
19
+ section {
20
+ display: block;
21
+ }
22
+ audio,
23
+ canvas,
24
+ video {
25
+ display: inline-block;
26
+ *display: inline;
27
+ *zoom: 1;
28
+ }
29
+ audio:not([controls]) {
30
+ display: none;
31
+ }
32
+ html {
33
+ font-size: 100%;
34
+ -webkit-text-size-adjust: 100%;
35
+ -ms-text-size-adjust: 100%;
36
+ }
37
+ a:focus {
38
+ outline: thin dotted #333;
39
+ outline: 5px auto -webkit-focus-ring-color;
40
+ outline-offset: -2px;
41
+ }
42
+ a:hover,
43
+ a:active {
44
+ outline: 0;
45
+ }
46
+ sub,
47
+ sup {
48
+ position: relative;
49
+ font-size: 75%;
50
+ line-height: 0;
51
+ vertical-align: baseline;
52
+ }
53
+ sup {
54
+ top: -0.5em;
55
+ }
56
+ sub {
57
+ bottom: -0.25em;
58
+ }
59
+ img {
60
+ max-width: 100%;
61
+ vertical-align: middle;
62
+ border: 0;
63
+ -ms-interpolation-mode: bicubic;
64
+ }
65
+ button,
66
+ input,
67
+ select,
68
+ textarea {
69
+ margin: 0;
70
+ font-size: 100%;
71
+ vertical-align: middle;
72
+ }
73
+ button,
74
+ input {
75
+ *overflow: visible;
76
+ line-height: normal;
77
+ }
78
+ button::-moz-focus-inner,
79
+ input::-moz-focus-inner {
80
+ padding: 0;
81
+ border: 0;
82
+ }
83
+ button,
84
+ input[type="button"],
85
+ input[type="reset"],
86
+ input[type="submit"] {
87
+ cursor: pointer;
88
+ -webkit-appearance: button;
89
+ }
90
+ input[type="search"] {
91
+ -webkit-box-sizing: content-box;
92
+ -moz-box-sizing: content-box;
93
+ box-sizing: content-box;
94
+ -webkit-appearance: textfield;
95
+ }
96
+ input[type="search"]::-webkit-search-decoration,
97
+ input[type="search"]::-webkit-search-cancel-button {
98
+ -webkit-appearance: none;
99
+ }
100
+ textarea {
101
+ overflow: auto;
102
+ vertical-align: top;
103
+ }
104
+ .clearfix {
105
+ *zoom: 1;
106
+ }
107
+ .clearfix:before,
108
+ .clearfix:after {
109
+ display: table;
110
+ content: "";
111
+ }
112
+ .clearfix:after {
113
+ clear: both;
114
+ }
115
+ .hide-text {
116
+ font: 0/0 a;
117
+ color: transparent;
118
+ text-shadow: none;
119
+ background-color: transparent;
120
+ border: 0;
121
+ }
122
+ .input-block-level {
123
+ display: block;
124
+ width: 100%;
125
+ min-height: 28px;
126
+ -webkit-box-sizing: border-box;
127
+ -moz-box-sizing: border-box;
128
+ -ms-box-sizing: border-box;
129
+ box-sizing: border-box;
130
+ }
131
+ body {
132
+ margin: 0;
133
+ font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
134
+ font-size: 14px;
135
+ line-height: 21px;
136
+ color: #333333;
137
+ background-color: #ffffff;
138
+ }
139
+ a {
140
+ color: #9d261d;
141
+ text-decoration: none;
142
+ }
143
+ a:hover {
144
+ color: #5c1611;
145
+ text-decoration: underline;
146
+ }
147
+ .row {
148
+ margin-left: -20px;
149
+ *zoom: 1;
150
+ }
151
+ .row:before,
152
+ .row:after {
153
+ display: table;
154
+ content: "";
155
+ }
156
+ .row:after {
157
+ clear: both;
158
+ }
159
+ [class*="span"] {
160
+ float: left;
161
+ margin-left: 20px;
162
+ }
163
+ .container,
164
+ .navbar-fixed-top .container,
165
+ .navbar-fixed-bottom .container {
166
+ width: 940px;
167
+ }
168
+ .span12 {
169
+ width: 940px;
170
+ }
171
+ .span11 {
172
+ width: 860px;
173
+ }
174
+ .span10 {
175
+ width: 780px;
176
+ }
177
+ .span9 {
178
+ width: 700px;
179
+ }
180
+ .span8 {
181
+ width: 620px;
182
+ }
183
+ .span7 {
184
+ width: 540px;
185
+ }
186
+ .span6 {
187
+ width: 460px;
188
+ }
189
+ .span5 {
190
+ width: 380px;
191
+ }
192
+ .span4 {
193
+ width: 300px;
194
+ }
195
+ .span3 {
196
+ width: 220px;
197
+ }
198
+ .span2 {
199
+ width: 140px;
200
+ }
201
+ .span1 {
202
+ width: 60px;
203
+ }
204
+ .offset12 {
205
+ margin-left: 980px;
206
+ }
207
+ .offset11 {
208
+ margin-left: 900px;
209
+ }
210
+ .offset10 {
211
+ margin-left: 820px;
212
+ }
213
+ .offset9 {
214
+ margin-left: 740px;
215
+ }
216
+ .offset8 {
217
+ margin-left: 660px;
218
+ }
219
+ .offset7 {
220
+ margin-left: 580px;
221
+ }
222
+ .offset6 {
223
+ margin-left: 500px;
224
+ }
225
+ .offset5 {
226
+ margin-left: 420px;
227
+ }
228
+ .offset4 {
229
+ margin-left: 340px;
230
+ }
231
+ .offset3 {
232
+ margin-left: 260px;
233
+ }
234
+ .offset2 {
235
+ margin-left: 180px;
236
+ }
237
+ .offset1 {
238
+ margin-left: 100px;
239
+ }
240
+ .row-fluid {
241
+ width: 100%;
242
+ *zoom: 1;
243
+ }
244
+ .row-fluid:before,
245
+ .row-fluid:after {
246
+ display: table;
247
+ content: "";
248
+ }
249
+ .row-fluid:after {
250
+ clear: both;
251
+ }
252
+ .row-fluid [class*="span"] {
253
+ display: block;
254
+ width: 100%;
255
+ min-height: 28px;
256
+ -webkit-box-sizing: border-box;
257
+ -moz-box-sizing: border-box;
258
+ -ms-box-sizing: border-box;
259
+ box-sizing: border-box;
260
+ float: left;
261
+ margin-left: 2.127659574%;
262
+ *margin-left: 2.0744680846382977%;
263
+ }
264
+ .row-fluid [class*="span"]:first-child {
265
+ margin-left: 0;
266
+ }
267
+ .row-fluid .span12 {
268
+ width: 99.99999998999999%;
269
+ *width: 99.94680850063828%;
270
+ }
271
+ .row-fluid .span11 {
272
+ width: 91.489361693%;
273
+ *width: 91.4361702036383%;
274
+ }
275
+ .row-fluid .span10 {
276
+ width: 82.97872339599999%;
277
+ *width: 82.92553190663828%;
278
+ }
279
+ .row-fluid .span9 {
280
+ width: 74.468085099%;
281
+ *width: 74.4148936096383%;
282
+ }
283
+ .row-fluid .span8 {
284
+ width: 65.95744680199999%;
285
+ *width: 65.90425531263828%;
286
+ }
287
+ .row-fluid .span7 {
288
+ width: 57.446808505%;
289
+ *width: 57.3936170156383%;
290
+ }
291
+ .row-fluid .span6 {
292
+ width: 48.93617020799999%;
293
+ *width: 48.88297871863829%;
294
+ }
295
+ .row-fluid .span5 {
296
+ width: 40.425531911%;
297
+ *width: 40.3723404216383%;
298
+ }
299
+ .row-fluid .span4 {
300
+ width: 31.914893614%;
301
+ *width: 31.8617021246383%;
302
+ }
303
+ .row-fluid .span3 {
304
+ width: 23.404255317%;
305
+ *width: 23.3510638276383%;
306
+ }
307
+ .row-fluid .span2 {
308
+ width: 14.89361702%;
309
+ *width: 14.8404255306383%;
310
+ }
311
+ .row-fluid .span1 {
312
+ width: 6.382978723%;
313
+ *width: 6.329787233638298%;
314
+ }
315
+ .container {
316
+ margin-right: auto;
317
+ margin-left: auto;
318
+ *zoom: 1;
319
+ }
320
+ .container:before,
321
+ .container:after {
322
+ display: table;
323
+ content: "";
324
+ }
325
+ .container:after {
326
+ clear: both;
327
+ }
328
+ .container-fluid {
329
+ padding-right: 20px;
330
+ padding-left: 20px;
331
+ *zoom: 1;
332
+ }
333
+ .container-fluid:before,
334
+ .container-fluid:after {
335
+ display: table;
336
+ content: "";
337
+ }
338
+ .container-fluid:after {
339
+ clear: both;
340
+ }
341
+ p {
342
+ margin: 0 0 10.5px;
343
+ font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
344
+ font-size: 14px;
345
+ line-height: 21px;
346
+ }
347
+ p small {
348
+ font-size: 12px;
349
+ color: #999999;
350
+ }
351
+ .lead {
352
+ margin-bottom: 21px;
353
+ font-size: 20px;
354
+ font-weight: 200;
355
+ line-height: 31.5px;
356
+ }
357
+ h1,
358
+ h2,
359
+ h3,
360
+ h4,
361
+ h5,
362
+ h6 {
363
+ margin: 0;
364
+ font-family: inherit;
365
+ font-weight: bold;
366
+ color: inherit;
367
+ text-rendering: optimizelegibility;
368
+ }
369
+ h1 small,
370
+ h2 small,
371
+ h3 small,
372
+ h4 small,
373
+ h5 small,
374
+ h6 small {
375
+ font-weight: normal;
376
+ color: #999999;
377
+ }
378
+ h1 {
379
+ font-size: 30px;
380
+ line-height: 42px;
381
+ }
382
+ h1 small {
383
+ font-size: 18px;
384
+ }
385
+ h2 {
386
+ font-size: 24px;
387
+ line-height: 42px;
388
+ }
389
+ h2 small {
390
+ font-size: 18px;
391
+ }
392
+ h3 {
393
+ font-size: 18px;
394
+ line-height: 31.5px;
395
+ }
396
+ h3 small {
397
+ font-size: 14px;
398
+ }
399
+ h4,
400
+ h5,
401
+ h6 {
402
+ line-height: 21px;
403
+ }
404
+ h4 {
405
+ font-size: 14px;
406
+ }
407
+ h4 small {
408
+ font-size: 12px;
409
+ }
410
+ h5 {
411
+ font-size: 12px;
412
+ }
413
+ h6 {
414
+ font-size: 11px;
415
+ color: #999999;
416
+ text-transform: uppercase;
417
+ }
418
+ .page-header {
419
+ padding-bottom: 20px;
420
+ margin: 21px 0;
421
+ border-bottom: 1px solid #eeeeee;
422
+ }
423
+ .page-header h1 {
424
+ line-height: 1;
425
+ }
426
+ ul,
427
+ ol {
428
+ padding: 0;
429
+ margin: 0 0 10.5px 25px;
430
+ }
431
+ ul ul,
432
+ ul ol,
433
+ ol ol,
434
+ ol ul {
435
+ margin-bottom: 0;
436
+ }
437
+ ul {
438
+ list-style: disc;
439
+ }
440
+ ol {
441
+ list-style: decimal;
442
+ }
443
+ li {
444
+ line-height: 21px;
445
+ }
446
+ ul.unstyled,
447
+ ol.unstyled {
448
+ margin-left: 0;
449
+ list-style: none;
450
+ }
451
+ dl {
452
+ margin-bottom: 21px;
453
+ }
454
+ dt,
455
+ dd {
456
+ line-height: 21px;
457
+ }
458
+ dt {
459
+ font-weight: bold;
460
+ line-height: 20px;
461
+ }
462
+ dd {
463
+ margin-left: 10.5px;
464
+ }
465
+ .dl-horizontal dt {
466
+ float: left;
467
+ width: 120px;
468
+ clear: left;
469
+ text-align: right;
470
+ overflow: hidden;
471
+ text-overflow: ellipsis;
472
+ white-space: nowrap;
473
+ }
474
+ .dl-horizontal dd {
475
+ margin-left: 130px;
476
+ }
477
+ hr {
478
+ margin: 21px 0;
479
+ border: 0;
480
+ border-top: 1px solid #eeeeee;
481
+ border-bottom: 1px solid #ffffff;
482
+ }
483
+ strong {
484
+ font-weight: bold;
485
+ }
486
+ em {
487
+ font-style: italic;
488
+ }
489
+ .muted {
490
+ color: #999999;
491
+ }
492
+ abbr[title] {
493
+ cursor: help;
494
+ border-bottom: 1px dotted #ddd;
495
+ }
496
+ abbr.initialism {
497
+ font-size: 90%;
498
+ text-transform: uppercase;
499
+ }
500
+ blockquote {
501
+ padding: 0 0 0 15px;
502
+ margin: 0 0 21px;
503
+ border-left: 5px solid #eeeeee;
504
+ }
505
+ blockquote p {
506
+ margin-bottom: 0;
507
+ font-size: 16px;
508
+ font-weight: 300;
509
+ line-height: 26.25px;
510
+ }
511
+ blockquote small {
512
+ display: block;
513
+ line-height: 21px;
514
+ color: #999999;
515
+ }
516
+ blockquote small:before {
517
+ content: '\2014 \00A0';
518
+ }
519
+ blockquote.pull-right {
520
+ float: right;
521
+ padding-right: 15px;
522
+ padding-left: 0;
523
+ border-right: 5px solid #eeeeee;
524
+ border-left: 0;
525
+ }
526
+ blockquote.pull-right p,
527
+ blockquote.pull-right small {
528
+ text-align: right;
529
+ }
530
+ q:before,
531
+ q:after,
532
+ blockquote:before,
533
+ blockquote:after {
534
+ content: "";
535
+ }
536
+ address {
537
+ display: block;
538
+ margin-bottom: 21px;
539
+ font-style: normal;
540
+ line-height: 21px;
541
+ }
542
+ small {
543
+ font-size: 100%;
544
+ }
545
+ cite {
546
+ font-style: normal;
547
+ }
548
+ code,
549
+ pre {
550
+ padding: 0 3px 2px;
551
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
552
+ font-size: 13px;
553
+ color: #333333;
554
+ -webkit-border-radius: 3px;
555
+ -moz-border-radius: 3px;
556
+ border-radius: 3px;
557
+ }
558
+ code {
559
+ padding: 2px 4px;
560
+ color: #d14;
561
+ background-color: #f7f7f9;
562
+ border: 1px solid #e1e1e8;
563
+ }
564
+ pre {
565
+ display: block;
566
+ padding: 10px;
567
+ margin: 0 0 10.5px;
568
+ font-size: 12.950000000000001px;
569
+ line-height: 21px;
570
+ word-break: break-all;
571
+ word-wrap: break-word;
572
+ white-space: pre;
573
+ white-space: pre-wrap;
574
+ background-color: #f5f5f5;
575
+ border: 1px solid #ccc;
576
+ border: 1px solid rgba(0, 0, 0, 0.15);
577
+ -webkit-border-radius: 4px;
578
+ -moz-border-radius: 4px;
579
+ border-radius: 4px;
580
+ }
581
+ pre.prettyprint {
582
+ margin-bottom: 21px;
583
+ }
584
+ pre code {
585
+ padding: 0;
586
+ color: inherit;
587
+ background-color: transparent;
588
+ border: 0;
589
+ }
590
+ .pre-scrollable {
591
+ max-height: 340px;
592
+ overflow-y: scroll;
593
+ }
594
+ form {
595
+ margin: 0 0 21px;
596
+ }
597
+ fieldset {
598
+ padding: 0;
599
+ margin: 0;
600
+ border: 0;
601
+ }
602
+ legend {
603
+ display: block;
604
+ width: 100%;
605
+ padding: 0;
606
+ margin-bottom: 31.5px;
607
+ font-size: 21px;
608
+ line-height: 42px;
609
+ color: #333333;
610
+ border: 0;
611
+ border-bottom: 1px solid #eee;
612
+ }
613
+ legend small {
614
+ font-size: 15.75px;
615
+ color: #999999;
616
+ }
617
+ label,
618
+ input,
619
+ button,
620
+ select,
621
+ textarea {
622
+ font-size: 14px;
623
+ font-weight: normal;
624
+ line-height: 21px;
625
+ }
626
+ input,
627
+ button,
628
+ select,
629
+ textarea {
630
+ font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
631
+ }
632
+ label {
633
+ display: block;
634
+ margin-bottom: 5px;
635
+ color: #333333;
636
+ }
637
+ input,
638
+ textarea,
639
+ select,
640
+ .uneditable-input {
641
+ display: inline-block;
642
+ width: 210px;
643
+ height: 21px;
644
+ padding: 4px;
645
+ margin-bottom: 9px;
646
+ font-size: 14px;
647
+ line-height: 21px;
648
+ color: #555555;
649
+ background-color: #ffffff;
650
+ border: 1px solid #cccccc;
651
+ -webkit-border-radius: 3px;
652
+ -moz-border-radius: 3px;
653
+ border-radius: 3px;
654
+ }
655
+ .uneditable-textarea {
656
+ width: auto;
657
+ height: auto;
658
+ }
659
+ label input,
660
+ label textarea,
661
+ label select {
662
+ display: block;
663
+ }
664
+ input[type="image"],
665
+ input[type="checkbox"],
666
+ input[type="radio"] {
667
+ width: auto;
668
+ height: auto;
669
+ padding: 0;
670
+ margin: 3px 0;
671
+ *margin-top: 0;
672
+ /* IE7 */
673
+
674
+ line-height: normal;
675
+ cursor: pointer;
676
+ background-color: transparent;
677
+ border: 0 \9;
678
+ /* IE9 and down */
679
+
680
+ -webkit-border-radius: 0;
681
+ -moz-border-radius: 0;
682
+ border-radius: 0;
683
+ }
684
+ input[type="image"] {
685
+ border: 0;
686
+ }
687
+ input[type="file"] {
688
+ width: auto;
689
+ padding: initial;
690
+ line-height: initial;
691
+ background-color: #ffffff;
692
+ background-color: initial;
693
+ border: initial;
694
+ -webkit-box-shadow: none;
695
+ -moz-box-shadow: none;
696
+ box-shadow: none;
697
+ }
698
+ input[type="button"],
699
+ input[type="reset"],
700
+ input[type="submit"] {
701
+ width: auto;
702
+ height: auto;
703
+ }
704
+ select,
705
+ input[type="file"] {
706
+ height: 28px;
707
+ /* In IE7, the height of the select element cannot be changed by height, only font-size */
708
+
709
+ *margin-top: 4px;
710
+ /* For IE7, add top margin to align select with labels */
711
+
712
+ line-height: 28px;
713
+ }
714
+ input[type="file"] {
715
+ line-height: 18px \9;
716
+ }
717
+ select {
718
+ width: 220px;
719
+ background-color: #ffffff;
720
+ }
721
+ select[multiple],
722
+ select[size] {
723
+ height: auto;
724
+ }
725
+ input[type="image"] {
726
+ -webkit-box-shadow: none;
727
+ -moz-box-shadow: none;
728
+ box-shadow: none;
729
+ }
730
+ textarea {
731
+ height: auto;
732
+ }
733
+ input[type="hidden"] {
734
+ display: none;
735
+ }
736
+ .radio,
737
+ .checkbox {
738
+ min-height: 18px;
739
+ padding-left: 18px;
740
+ }
741
+ .radio input[type="radio"],
742
+ .checkbox input[type="checkbox"] {
743
+ float: left;
744
+ margin-left: -18px;
745
+ }
746
+ .controls > .radio:first-child,
747
+ .controls > .checkbox:first-child {
748
+ padding-top: 5px;
749
+ }
750
+ .radio.inline,
751
+ .checkbox.inline {
752
+ display: inline-block;
753
+ padding-top: 5px;
754
+ margin-bottom: 0;
755
+ vertical-align: middle;
756
+ }
757
+ .radio.inline + .radio.inline,
758
+ .checkbox.inline + .checkbox.inline {
759
+ margin-left: 10px;
760
+ }
761
+ input,
762
+ textarea {
763
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
764
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
765
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
766
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
767
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
768
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
769
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
770
+ transition: border linear 0.2s, box-shadow linear 0.2s;
771
+ }
772
+ input:focus,
773
+ textarea:focus {
774
+ border-color: rgba(82, 168, 236, 0.8);
775
+ outline: 0;
776
+ outline: thin dotted \9;
777
+ /* IE6-9 */
778
+
779
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
780
+ -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
781
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
782
+ }
783
+ input[type="file"]:focus,
784
+ input[type="radio"]:focus,
785
+ input[type="checkbox"]:focus,
786
+ select:focus {
787
+ outline: thin dotted #333;
788
+ outline: 5px auto -webkit-focus-ring-color;
789
+ outline-offset: -2px;
790
+ -webkit-box-shadow: none;
791
+ -moz-box-shadow: none;
792
+ box-shadow: none;
793
+ }
794
+ .input-mini {
795
+ width: 60px;
796
+ }
797
+ .input-small {
798
+ width: 90px;
799
+ }
800
+ .input-medium {
801
+ width: 150px;
802
+ }
803
+ .input-large {
804
+ width: 210px;
805
+ }
806
+ .input-xlarge {
807
+ width: 270px;
808
+ }
809
+ .input-xxlarge {
810
+ width: 530px;
811
+ }
812
+ input[class*="span"],
813
+ select[class*="span"],
814
+ textarea[class*="span"],
815
+ .uneditable-input[class*="span"],
816
+ .row-fluid input[class*="span"],
817
+ .row-fluid select[class*="span"],
818
+ .row-fluid textarea[class*="span"],
819
+ .row-fluid .uneditable-input[class*="span"] {
820
+ float: none;
821
+ margin-left: 0;
822
+ }
823
+ input,
824
+ textarea,
825
+ .uneditable-input {
826
+ margin-left: 0;
827
+ }
828
+ input.span12, textarea.span12, .uneditable-input.span12 {
829
+ width: 930px;
830
+ }
831
+ input.span11, textarea.span11, .uneditable-input.span11 {
832
+ width: 850px;
833
+ }
834
+ input.span10, textarea.span10, .uneditable-input.span10 {
835
+ width: 770px;
836
+ }
837
+ input.span9, textarea.span9, .uneditable-input.span9 {
838
+ width: 690px;
839
+ }
840
+ input.span8, textarea.span8, .uneditable-input.span8 {
841
+ width: 610px;
842
+ }
843
+ input.span7, textarea.span7, .uneditable-input.span7 {
844
+ width: 530px;
845
+ }
846
+ input.span6, textarea.span6, .uneditable-input.span6 {
847
+ width: 450px;
848
+ }
849
+ input.span5, textarea.span5, .uneditable-input.span5 {
850
+ width: 370px;
851
+ }
852
+ input.span4, textarea.span4, .uneditable-input.span4 {
853
+ width: 290px;
854
+ }
855
+ input.span3, textarea.span3, .uneditable-input.span3 {
856
+ width: 210px;
857
+ }
858
+ input.span2, textarea.span2, .uneditable-input.span2 {
859
+ width: 130px;
860
+ }
861
+ input.span1, textarea.span1, .uneditable-input.span1 {
862
+ width: 50px;
863
+ }
864
+ input[disabled],
865
+ select[disabled],
866
+ textarea[disabled],
867
+ input[readonly],
868
+ select[readonly],
869
+ textarea[readonly] {
870
+ cursor: not-allowed;
871
+ background-color: #eeeeee;
872
+ border-color: #ddd;
873
+ }
874
+ input[type="radio"][disabled],
875
+ input[type="checkbox"][disabled],
876
+ input[type="radio"][readonly],
877
+ input[type="checkbox"][readonly] {
878
+ background-color: transparent;
879
+ }
880
+ .control-group.warning > label,
881
+ .control-group.warning .help-block,
882
+ .control-group.warning .help-inline {
883
+ color: #c09853;
884
+ }
885
+ .control-group.warning input,
886
+ .control-group.warning select,
887
+ .control-group.warning textarea {
888
+ color: #c09853;
889
+ border-color: #c09853;
890
+ }
891
+ .control-group.warning input:focus,
892
+ .control-group.warning select:focus,
893
+ .control-group.warning textarea:focus {
894
+ border-color: #a47e3c;
895
+ -webkit-box-shadow: 0 0 6px #dbc59e;
896
+ -moz-box-shadow: 0 0 6px #dbc59e;
897
+ box-shadow: 0 0 6px #dbc59e;
898
+ }
899
+ .control-group.warning .input-prepend .add-on,
900
+ .control-group.warning .input-append .add-on {
901
+ color: #c09853;
902
+ background-color: #fcf8e3;
903
+ border-color: #c09853;
904
+ }
905
+ .control-group.error > label,
906
+ .control-group.error .help-block,
907
+ .control-group.error .help-inline {
908
+ color: #b94a48;
909
+ }
910
+ .control-group.error input,
911
+ .control-group.error select,
912
+ .control-group.error textarea {
913
+ color: #b94a48;
914
+ border-color: #b94a48;
915
+ }
916
+ .control-group.error input:focus,
917
+ .control-group.error select:focus,
918
+ .control-group.error textarea:focus {
919
+ border-color: #953b39;
920
+ -webkit-box-shadow: 0 0 6px #d59392;
921
+ -moz-box-shadow: 0 0 6px #d59392;
922
+ box-shadow: 0 0 6px #d59392;
923
+ }
924
+ .control-group.error .input-prepend .add-on,
925
+ .control-group.error .input-append .add-on {
926
+ color: #b94a48;
927
+ background-color: #f2dede;
928
+ border-color: #b94a48;
929
+ }
930
+ .control-group.success > label,
931
+ .control-group.success .help-block,
932
+ .control-group.success .help-inline {
933
+ color: #468847;
934
+ }
935
+ .control-group.success input,
936
+ .control-group.success select,
937
+ .control-group.success textarea {
938
+ color: #468847;
939
+ border-color: #468847;
940
+ }
941
+ .control-group.success input:focus,
942
+ .control-group.success select:focus,
943
+ .control-group.success textarea:focus {
944
+ border-color: #356635;
945
+ -webkit-box-shadow: 0 0 6px #7aba7b;
946
+ -moz-box-shadow: 0 0 6px #7aba7b;
947
+ box-shadow: 0 0 6px #7aba7b;
948
+ }
949
+ .control-group.success .input-prepend .add-on,
950
+ .control-group.success .input-append .add-on {
951
+ color: #468847;
952
+ background-color: #dff0d8;
953
+ border-color: #468847;
954
+ }
955
+ input:focus:required:invalid,
956
+ textarea:focus:required:invalid,
957
+ select:focus:required:invalid {
958
+ color: #b94a48;
959
+ border-color: #ee5f5b;
960
+ }
961
+ input:focus:required:invalid:focus,
962
+ textarea:focus:required:invalid:focus,
963
+ select:focus:required:invalid:focus {
964
+ border-color: #e9322d;
965
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
966
+ -moz-box-shadow: 0 0 6px #f8b9b7;
967
+ box-shadow: 0 0 6px #f8b9b7;
968
+ }
969
+ .form-actions {
970
+ padding: 20px 20px 21px;
971
+ margin-top: 21px;
972
+ margin-bottom: 21px;
973
+ background-color: #f5f5f5;
974
+ border-top: 1px solid #ddd;
975
+ *zoom: 1;
976
+ }
977
+ .form-actions:before,
978
+ .form-actions:after {
979
+ display: table;
980
+ content: "";
981
+ }
982
+ .form-actions:after {
983
+ clear: both;
984
+ }
985
+ .uneditable-input {
986
+ overflow: hidden;
987
+ white-space: nowrap;
988
+ cursor: not-allowed;
989
+ background-color: #ffffff;
990
+ border-color: #eee;
991
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
992
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
993
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
994
+ }
995
+ :-moz-placeholder {
996
+ color: #999999;
997
+ }
998
+ ::-webkit-input-placeholder {
999
+ color: #999999;
1000
+ }
1001
+ .help-block,
1002
+ .help-inline {
1003
+ color: #555555;
1004
+ }
1005
+ .help-block {
1006
+ display: block;
1007
+ margin-bottom: 10.5px;
1008
+ }
1009
+ .help-inline {
1010
+ display: inline-block;
1011
+ *display: inline;
1012
+ /* IE7 inline-block hack */
1013
+
1014
+ *zoom: 1;
1015
+ vertical-align: middle;
1016
+ padding-left: 5px;
1017
+ }
1018
+ .input-prepend,
1019
+ .input-append {
1020
+ margin-bottom: 5px;
1021
+ }
1022
+ .input-prepend input,
1023
+ .input-append input,
1024
+ .input-prepend select,
1025
+ .input-append select,
1026
+ .input-prepend .uneditable-input,
1027
+ .input-append .uneditable-input {
1028
+ position: relative;
1029
+ margin-bottom: 0;
1030
+ *margin-left: 0;
1031
+ vertical-align: middle;
1032
+ -webkit-border-radius: 0 3px 3px 0;
1033
+ -moz-border-radius: 0 3px 3px 0;
1034
+ border-radius: 0 3px 3px 0;
1035
+ }
1036
+ .input-prepend input:focus,
1037
+ .input-append input:focus,
1038
+ .input-prepend select:focus,
1039
+ .input-append select:focus,
1040
+ .input-prepend .uneditable-input:focus,
1041
+ .input-append .uneditable-input:focus {
1042
+ z-index: 2;
1043
+ }
1044
+ .input-prepend .uneditable-input,
1045
+ .input-append .uneditable-input {
1046
+ border-left-color: #ccc;
1047
+ }
1048
+ .input-prepend .add-on,
1049
+ .input-append .add-on {
1050
+ display: inline-block;
1051
+ width: auto;
1052
+ height: 21px;
1053
+ min-width: 16px;
1054
+ padding: 4px 5px;
1055
+ font-weight: normal;
1056
+ line-height: 21px;
1057
+ text-align: center;
1058
+ text-shadow: 0 1px 0 #ffffff;
1059
+ vertical-align: middle;
1060
+ background-color: #eeeeee;
1061
+ border: 1px solid #ccc;
1062
+ }
1063
+ .input-prepend .add-on,
1064
+ .input-append .add-on,
1065
+ .input-prepend .btn,
1066
+ .input-append .btn {
1067
+ margin-left: -1px;
1068
+ -webkit-border-radius: 0;
1069
+ -moz-border-radius: 0;
1070
+ border-radius: 0;
1071
+ }
1072
+ .input-prepend .active,
1073
+ .input-append .active {
1074
+ background-color: #a9dba9;
1075
+ border-color: #46a546;
1076
+ }
1077
+ .input-prepend .add-on,
1078
+ .input-prepend .btn {
1079
+ margin-right: -1px;
1080
+ }
1081
+ .input-prepend .add-on:first-child,
1082
+ .input-prepend .btn:first-child {
1083
+ -webkit-border-radius: 3px 0 0 3px;
1084
+ -moz-border-radius: 3px 0 0 3px;
1085
+ border-radius: 3px 0 0 3px;
1086
+ }
1087
+ .input-append input,
1088
+ .input-append select,
1089
+ .input-append .uneditable-input {
1090
+ -webkit-border-radius: 3px 0 0 3px;
1091
+ -moz-border-radius: 3px 0 0 3px;
1092
+ border-radius: 3px 0 0 3px;
1093
+ }
1094
+ .input-append .uneditable-input {
1095
+ border-right-color: #ccc;
1096
+ border-left-color: #eee;
1097
+ }
1098
+ .input-append .add-on:last-child,
1099
+ .input-append .btn:last-child {
1100
+ -webkit-border-radius: 0 3px 3px 0;
1101
+ -moz-border-radius: 0 3px 3px 0;
1102
+ border-radius: 0 3px 3px 0;
1103
+ }
1104
+ .input-prepend.input-append input,
1105
+ .input-prepend.input-append select,
1106
+ .input-prepend.input-append .uneditable-input {
1107
+ -webkit-border-radius: 0;
1108
+ -moz-border-radius: 0;
1109
+ border-radius: 0;
1110
+ }
1111
+ .input-prepend.input-append .add-on:first-child,
1112
+ .input-prepend.input-append .btn:first-child {
1113
+ margin-right: -1px;
1114
+ -webkit-border-radius: 3px 0 0 3px;
1115
+ -moz-border-radius: 3px 0 0 3px;
1116
+ border-radius: 3px 0 0 3px;
1117
+ }
1118
+ .input-prepend.input-append .add-on:last-child,
1119
+ .input-prepend.input-append .btn:last-child {
1120
+ margin-left: -1px;
1121
+ -webkit-border-radius: 0 3px 3px 0;
1122
+ -moz-border-radius: 0 3px 3px 0;
1123
+ border-radius: 0 3px 3px 0;
1124
+ }
1125
+ .search-query {
1126
+ padding-right: 14px;
1127
+ padding-right: 4px \9;
1128
+ padding-left: 14px;
1129
+ padding-left: 4px \9;
1130
+ /* IE7-8 doesn't have border-radius, so don't indent the padding */
1131
+
1132
+ margin-bottom: 0;
1133
+ -webkit-border-radius: 14px;
1134
+ -moz-border-radius: 14px;
1135
+ border-radius: 14px;
1136
+ }
1137
+ .form-search input,
1138
+ .form-inline input,
1139
+ .form-horizontal input,
1140
+ .form-search textarea,
1141
+ .form-inline textarea,
1142
+ .form-horizontal textarea,
1143
+ .form-search select,
1144
+ .form-inline select,
1145
+ .form-horizontal select,
1146
+ .form-search .help-inline,
1147
+ .form-inline .help-inline,
1148
+ .form-horizontal .help-inline,
1149
+ .form-search .uneditable-input,
1150
+ .form-inline .uneditable-input,
1151
+ .form-horizontal .uneditable-input,
1152
+ .form-search .input-prepend,
1153
+ .form-inline .input-prepend,
1154
+ .form-horizontal .input-prepend,
1155
+ .form-search .input-append,
1156
+ .form-inline .input-append,
1157
+ .form-horizontal .input-append {
1158
+ display: inline-block;
1159
+ *display: inline;
1160
+ /* IE7 inline-block hack */
1161
+
1162
+ *zoom: 1;
1163
+ margin-bottom: 0;
1164
+ }
1165
+ .form-search .hide,
1166
+ .form-inline .hide,
1167
+ .form-horizontal .hide {
1168
+ display: none;
1169
+ }
1170
+ .form-search label,
1171
+ .form-inline label {
1172
+ display: inline-block;
1173
+ }
1174
+ .form-search .input-append,
1175
+ .form-inline .input-append,
1176
+ .form-search .input-prepend,
1177
+ .form-inline .input-prepend {
1178
+ margin-bottom: 0;
1179
+ }
1180
+ .form-search .radio,
1181
+ .form-search .checkbox,
1182
+ .form-inline .radio,
1183
+ .form-inline .checkbox {
1184
+ padding-left: 0;
1185
+ margin-bottom: 0;
1186
+ vertical-align: middle;
1187
+ }
1188
+ .form-search .radio input[type="radio"],
1189
+ .form-search .checkbox input[type="checkbox"],
1190
+ .form-inline .radio input[type="radio"],
1191
+ .form-inline .checkbox input[type="checkbox"] {
1192
+ float: left;
1193
+ margin-right: 3px;
1194
+ margin-left: 0;
1195
+ }
1196
+ .control-group {
1197
+ margin-bottom: 10.5px;
1198
+ }
1199
+ legend + .control-group {
1200
+ margin-top: 21px;
1201
+ -webkit-margin-top-collapse: separate;
1202
+ }
1203
+ .form-horizontal .control-group {
1204
+ margin-bottom: 21px;
1205
+ *zoom: 1;
1206
+ }
1207
+ .form-horizontal .control-group:before,
1208
+ .form-horizontal .control-group:after {
1209
+ display: table;
1210
+ content: "";
1211
+ }
1212
+ .form-horizontal .control-group:after {
1213
+ clear: both;
1214
+ }
1215
+ .form-horizontal .control-label {
1216
+ float: left;
1217
+ width: 140px;
1218
+ padding-top: 5px;
1219
+ text-align: right;
1220
+ }
1221
+ .form-horizontal .controls {
1222
+ *display: inline-block;
1223
+ *padding-left: 20px;
1224
+ margin-left: 160px;
1225
+ *margin-left: 0;
1226
+ }
1227
+ .form-horizontal .controls:first-child {
1228
+ *padding-left: 160px;
1229
+ }
1230
+ .form-horizontal .help-block {
1231
+ margin-top: 10.5px;
1232
+ margin-bottom: 0;
1233
+ }
1234
+ .form-horizontal .form-actions {
1235
+ padding-left: 160px;
1236
+ }
1237
+ table {
1238
+ max-width: 100%;
1239
+ background-color: transparent;
1240
+ border-collapse: collapse;
1241
+ border-spacing: 0;
1242
+ }
1243
+ .table {
1244
+ width: 100%;
1245
+ margin-bottom: 21px;
1246
+ }
1247
+ .table th,
1248
+ .table td {
1249
+ padding: 8px;
1250
+ line-height: 21px;
1251
+ text-align: left;
1252
+ vertical-align: top;
1253
+ border-top: 1px solid #dddddd;
1254
+ }
1255
+ .table th {
1256
+ font-weight: bold;
1257
+ }
1258
+ .table thead th {
1259
+ vertical-align: bottom;
1260
+ }
1261
+ .table caption + thead tr:first-child th,
1262
+ .table caption + thead tr:first-child td,
1263
+ .table colgroup + thead tr:first-child th,
1264
+ .table colgroup + thead tr:first-child td,
1265
+ .table thead:first-child tr:first-child th,
1266
+ .table thead:first-child tr:first-child td {
1267
+ border-top: 0;
1268
+ }
1269
+ .table tbody + tbody {
1270
+ border-top: 2px solid #dddddd;
1271
+ }
1272
+ .table-condensed th,
1273
+ .table-condensed td {
1274
+ padding: 4px 5px;
1275
+ }
1276
+ .table-bordered {
1277
+ border: 1px solid #dddddd;
1278
+ border-collapse: separate;
1279
+ *border-collapse: collapsed;
1280
+ border-left: 0;
1281
+ -webkit-border-radius: 4px;
1282
+ -moz-border-radius: 4px;
1283
+ border-radius: 4px;
1284
+ }
1285
+ .table-bordered th,
1286
+ .table-bordered td {
1287
+ border-left: 1px solid #dddddd;
1288
+ }
1289
+ .table-bordered caption + thead tr:first-child th,
1290
+ .table-bordered caption + tbody tr:first-child th,
1291
+ .table-bordered caption + tbody tr:first-child td,
1292
+ .table-bordered colgroup + thead tr:first-child th,
1293
+ .table-bordered colgroup + tbody tr:first-child th,
1294
+ .table-bordered colgroup + tbody tr:first-child td,
1295
+ .table-bordered thead:first-child tr:first-child th,
1296
+ .table-bordered tbody:first-child tr:first-child th,
1297
+ .table-bordered tbody:first-child tr:first-child td {
1298
+ border-top: 0;
1299
+ }
1300
+ .table-bordered thead:first-child tr:first-child th:first-child,
1301
+ .table-bordered tbody:first-child tr:first-child td:first-child {
1302
+ -webkit-border-top-left-radius: 4px;
1303
+ border-top-left-radius: 4px;
1304
+ -moz-border-radius-topleft: 4px;
1305
+ }
1306
+ .table-bordered thead:first-child tr:first-child th:last-child,
1307
+ .table-bordered tbody:first-child tr:first-child td:last-child {
1308
+ -webkit-border-top-right-radius: 4px;
1309
+ border-top-right-radius: 4px;
1310
+ -moz-border-radius-topright: 4px;
1311
+ }
1312
+ .table-bordered thead:last-child tr:last-child th:first-child,
1313
+ .table-bordered tbody:last-child tr:last-child td:first-child {
1314
+ -webkit-border-radius: 0 0 0 4px;
1315
+ -moz-border-radius: 0 0 0 4px;
1316
+ border-radius: 0 0 0 4px;
1317
+ -webkit-border-bottom-left-radius: 4px;
1318
+ border-bottom-left-radius: 4px;
1319
+ -moz-border-radius-bottomleft: 4px;
1320
+ }
1321
+ .table-bordered thead:last-child tr:last-child th:last-child,
1322
+ .table-bordered tbody:last-child tr:last-child td:last-child {
1323
+ -webkit-border-bottom-right-radius: 4px;
1324
+ border-bottom-right-radius: 4px;
1325
+ -moz-border-radius-bottomright: 4px;
1326
+ }
1327
+ .table-striped tbody tr:nth-child(odd) td,
1328
+ .table-striped tbody tr:nth-child(odd) th {
1329
+ background-color: #f9f9f9;
1330
+ }
1331
+ .table tbody tr:hover td,
1332
+ .table tbody tr:hover th {
1333
+ background-color: #f5f5f5;
1334
+ }
1335
+ table .span1 {
1336
+ float: none;
1337
+ width: 44px;
1338
+ margin-left: 0;
1339
+ }
1340
+ table .span2 {
1341
+ float: none;
1342
+ width: 124px;
1343
+ margin-left: 0;
1344
+ }
1345
+ table .span3 {
1346
+ float: none;
1347
+ width: 204px;
1348
+ margin-left: 0;
1349
+ }
1350
+ table .span4 {
1351
+ float: none;
1352
+ width: 284px;
1353
+ margin-left: 0;
1354
+ }
1355
+ table .span5 {
1356
+ float: none;
1357
+ width: 364px;
1358
+ margin-left: 0;
1359
+ }
1360
+ table .span6 {
1361
+ float: none;
1362
+ width: 444px;
1363
+ margin-left: 0;
1364
+ }
1365
+ table .span7 {
1366
+ float: none;
1367
+ width: 524px;
1368
+ margin-left: 0;
1369
+ }
1370
+ table .span8 {
1371
+ float: none;
1372
+ width: 604px;
1373
+ margin-left: 0;
1374
+ }
1375
+ table .span9 {
1376
+ float: none;
1377
+ width: 684px;
1378
+ margin-left: 0;
1379
+ }
1380
+ table .span10 {
1381
+ float: none;
1382
+ width: 764px;
1383
+ margin-left: 0;
1384
+ }
1385
+ table .span11 {
1386
+ float: none;
1387
+ width: 844px;
1388
+ margin-left: 0;
1389
+ }
1390
+ table .span12 {
1391
+ float: none;
1392
+ width: 924px;
1393
+ margin-left: 0;
1394
+ }
1395
+ table .span13 {
1396
+ float: none;
1397
+ width: 1004px;
1398
+ margin-left: 0;
1399
+ }
1400
+ table .span14 {
1401
+ float: none;
1402
+ width: 1084px;
1403
+ margin-left: 0;
1404
+ }
1405
+ table .span15 {
1406
+ float: none;
1407
+ width: 1164px;
1408
+ margin-left: 0;
1409
+ }
1410
+ table .span16 {
1411
+ float: none;
1412
+ width: 1244px;
1413
+ margin-left: 0;
1414
+ }
1415
+ table .span17 {
1416
+ float: none;
1417
+ width: 1324px;
1418
+ margin-left: 0;
1419
+ }
1420
+ table .span18 {
1421
+ float: none;
1422
+ width: 1404px;
1423
+ margin-left: 0;
1424
+ }
1425
+ table .span19 {
1426
+ float: none;
1427
+ width: 1484px;
1428
+ margin-left: 0;
1429
+ }
1430
+ table .span20 {
1431
+ float: none;
1432
+ width: 1564px;
1433
+ margin-left: 0;
1434
+ }
1435
+ table .span21 {
1436
+ float: none;
1437
+ width: 1644px;
1438
+ margin-left: 0;
1439
+ }
1440
+ table .span22 {
1441
+ float: none;
1442
+ width: 1724px;
1443
+ margin-left: 0;
1444
+ }
1445
+ table .span23 {
1446
+ float: none;
1447
+ width: 1804px;
1448
+ margin-left: 0;
1449
+ }
1450
+ table .span24 {
1451
+ float: none;
1452
+ width: 1884px;
1453
+ margin-left: 0;
1454
+ }
1455
+ .dropup,
1456
+ .dropdown {
1457
+ position: relative;
1458
+ }
1459
+ .dropdown-toggle {
1460
+ *margin-bottom: -3px;
1461
+ }
1462
+ .dropdown-toggle:active,
1463
+ .open .dropdown-toggle {
1464
+ outline: 0;
1465
+ }
1466
+ .caret {
1467
+ display: inline-block;
1468
+ width: 0;
1469
+ height: 0;
1470
+ vertical-align: top;
1471
+ border-top: 4px solid #000000;
1472
+ border-right: 4px solid transparent;
1473
+ border-left: 4px solid transparent;
1474
+ content: "";
1475
+ opacity: 0.3;
1476
+ filter: alpha(opacity=30);
1477
+ }
1478
+ .dropdown .caret {
1479
+ margin-top: 8px;
1480
+ margin-left: 2px;
1481
+ }
1482
+ .dropdown:hover .caret,
1483
+ .open .caret {
1484
+ opacity: 1;
1485
+ filter: alpha(opacity=100);
1486
+ }
1487
+ .dropdown-menu {
1488
+ position: absolute;
1489
+ top: 100%;
1490
+ left: 0;
1491
+ z-index: 1000;
1492
+ display: none;
1493
+ float: left;
1494
+ min-width: 160px;
1495
+ padding: 4px 0;
1496
+ margin: 1px 0 0;
1497
+ list-style: none;
1498
+ background-color: #ffffff;
1499
+ border: 1px solid #ccc;
1500
+ border: 1px solid rgba(0, 0, 0, 0.2);
1501
+ *border-right-width: 2px;
1502
+ *border-bottom-width: 2px;
1503
+ -webkit-border-radius: 5px;
1504
+ -moz-border-radius: 5px;
1505
+ border-radius: 5px;
1506
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1507
+ -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1508
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
1509
+ -webkit-background-clip: padding-box;
1510
+ -moz-background-clip: padding;
1511
+ background-clip: padding-box;
1512
+ }
1513
+ .dropdown-menu.pull-right {
1514
+ right: 0;
1515
+ left: auto;
1516
+ }
1517
+ .dropdown-menu .divider {
1518
+ *width: 100%;
1519
+ height: 1px;
1520
+ margin: 9.5px 1px;
1521
+ *margin: -5px 0 5px;
1522
+ overflow: hidden;
1523
+ background-color: #e5e5e5;
1524
+ border-bottom: 1px solid #ffffff;
1525
+ }
1526
+ .dropdown-menu a {
1527
+ display: block;
1528
+ padding: 3px 15px;
1529
+ clear: both;
1530
+ font-weight: normal;
1531
+ line-height: 21px;
1532
+ color: #333333;
1533
+ white-space: nowrap;
1534
+ }
1535
+ .dropdown-menu li > a:hover,
1536
+ .dropdown-menu .active > a,
1537
+ .dropdown-menu .active > a:hover {
1538
+ color: #ffffff;
1539
+ text-decoration: none;
1540
+ background-color: #9d261d;
1541
+ }
1542
+ .open {
1543
+ *z-index: 1000;
1544
+ }
1545
+ .open .dropdown-menu {
1546
+ display: block;
1547
+ }
1548
+ .pull-right .dropdown-menu {
1549
+ right: 0;
1550
+ left: auto;
1551
+ }
1552
+ .dropup .caret,
1553
+ .navbar-fixed-bottom .dropdown .caret {
1554
+ border-top: 0;
1555
+ border-bottom: 4px solid #000000;
1556
+ content: "\2191";
1557
+ }
1558
+ .dropup .dropdown-menu,
1559
+ .navbar-fixed-bottom .dropdown .dropdown-menu {
1560
+ top: auto;
1561
+ bottom: 100%;
1562
+ margin-bottom: 1px;
1563
+ }
1564
+ .typeahead {
1565
+ margin-top: 2px;
1566
+ -webkit-border-radius: 4px;
1567
+ -moz-border-radius: 4px;
1568
+ border-radius: 4px;
1569
+ }
1570
+ .well {
1571
+ min-height: 20px;
1572
+ padding: 19px;
1573
+ margin-bottom: 20px;
1574
+ background-color: #f5f5f5;
1575
+ border: 1px solid #eee;
1576
+ border: 1px solid rgba(0, 0, 0, 0.05);
1577
+ -webkit-border-radius: 4px;
1578
+ -moz-border-radius: 4px;
1579
+ border-radius: 4px;
1580
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1581
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1582
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1583
+ }
1584
+ .well blockquote {
1585
+ border-color: #ddd;
1586
+ border-color: rgba(0, 0, 0, 0.15);
1587
+ }
1588
+ .well-large {
1589
+ padding: 24px;
1590
+ -webkit-border-radius: 6px;
1591
+ -moz-border-radius: 6px;
1592
+ border-radius: 6px;
1593
+ }
1594
+ .well-small {
1595
+ padding: 9px;
1596
+ -webkit-border-radius: 3px;
1597
+ -moz-border-radius: 3px;
1598
+ border-radius: 3px;
1599
+ }
1600
+ .fade {
1601
+ opacity: 0;
1602
+ filter: alpha(opacity=0);
1603
+ -webkit-transition: opacity 0.15s linear;
1604
+ -moz-transition: opacity 0.15s linear;
1605
+ -ms-transition: opacity 0.15s linear;
1606
+ -o-transition: opacity 0.15s linear;
1607
+ transition: opacity 0.15s linear;
1608
+ }
1609
+ .fade.in {
1610
+ opacity: 1;
1611
+ filter: alpha(opacity=100);
1612
+ }
1613
+ .collapse {
1614
+ position: relative;
1615
+ height: 0;
1616
+ overflow: hidden;
1617
+ -webkit-transition: height 0.35s ease;
1618
+ -moz-transition: height 0.35s ease;
1619
+ -ms-transition: height 0.35s ease;
1620
+ -o-transition: height 0.35s ease;
1621
+ transition: height 0.35s ease;
1622
+ }
1623
+ .collapse.in {
1624
+ height: auto;
1625
+ }
1626
+ .close {
1627
+ float: right;
1628
+ font-size: 20px;
1629
+ font-weight: bold;
1630
+ line-height: 21px;
1631
+ color: #000000;
1632
+ text-shadow: 0 1px 0 #ffffff;
1633
+ opacity: 0.2;
1634
+ filter: alpha(opacity=20);
1635
+ }
1636
+ .close:hover {
1637
+ color: #000000;
1638
+ text-decoration: none;
1639
+ cursor: pointer;
1640
+ opacity: 0.4;
1641
+ filter: alpha(opacity=40);
1642
+ }
1643
+ button.close {
1644
+ padding: 0;
1645
+ cursor: pointer;
1646
+ background: transparent;
1647
+ border: 0;
1648
+ -webkit-appearance: none;
1649
+ }
1650
+ .btn {
1651
+ display: inline-block;
1652
+ *display: inline;
1653
+ /* IE7 inline-block hack */
1654
+
1655
+ *zoom: 1;
1656
+ padding: 4px 10px 4px;
1657
+ margin-bottom: 0;
1658
+ font-size: 14px;
1659
+ line-height: 21px;
1660
+ *line-height: 20px;
1661
+ color: #333333;
1662
+ text-align: center;
1663
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1664
+ vertical-align: middle;
1665
+ cursor: pointer;
1666
+ background-color: #f5f5f5;
1667
+ background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
1668
+ background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
1669
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
1670
+ background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
1671
+ background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
1672
+ background-image: linear-gradient(top, #ffffff, #e6e6e6);
1673
+ background-repeat: repeat-x;
1674
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1675
+ border-color: #e6e6e6 #e6e6e6 #bfbfbf;
1676
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1677
+ *background-color: #e6e6e6;
1678
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1679
+
1680
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1681
+ border: 1px solid #cccccc;
1682
+ *border: 0;
1683
+ border-bottom-color: #b3b3b3;
1684
+ -webkit-border-radius: 4px;
1685
+ -moz-border-radius: 4px;
1686
+ border-radius: 4px;
1687
+ *margin-left: .3em;
1688
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
1689
+ -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
1690
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
1691
+ }
1692
+ .btn:hover,
1693
+ .btn:active,
1694
+ .btn.active,
1695
+ .btn.disabled,
1696
+ .btn[disabled] {
1697
+ background-color: #e6e6e6;
1698
+ *background-color: #d9d9d9;
1699
+ }
1700
+ .btn:active,
1701
+ .btn.active {
1702
+ background-color: #cccccc \9;
1703
+ }
1704
+ .btn:first-child {
1705
+ *margin-left: 0;
1706
+ }
1707
+ .btn:hover {
1708
+ color: #333333;
1709
+ text-decoration: none;
1710
+ background-color: #e6e6e6;
1711
+ *background-color: #d9d9d9;
1712
+ /* Buttons in IE7 don't get borders, so darken on hover */
1713
+
1714
+ background-position: 0 -15px;
1715
+ -webkit-transition: background-position 0.1s linear;
1716
+ -moz-transition: background-position 0.1s linear;
1717
+ -ms-transition: background-position 0.1s linear;
1718
+ -o-transition: background-position 0.1s linear;
1719
+ transition: background-position 0.1s linear;
1720
+ }
1721
+ .btn:focus {
1722
+ outline: thin dotted #333;
1723
+ outline: 5px auto -webkit-focus-ring-color;
1724
+ outline-offset: -2px;
1725
+ }
1726
+ .btn.active,
1727
+ .btn:active {
1728
+ background-color: #e6e6e6;
1729
+ background-color: #d9d9d9 \9;
1730
+ background-image: none;
1731
+ outline: 0;
1732
+ -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
1733
+ -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
1734
+ box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
1735
+ }
1736
+ .btn.disabled,
1737
+ .btn[disabled] {
1738
+ cursor: default;
1739
+ background-color: #e6e6e6;
1740
+ background-image: none;
1741
+ opacity: 0.65;
1742
+ filter: alpha(opacity=65);
1743
+ -webkit-box-shadow: none;
1744
+ -moz-box-shadow: none;
1745
+ box-shadow: none;
1746
+ }
1747
+ .btn-large {
1748
+ padding: 9px 14px;
1749
+ font-size: 16px;
1750
+ line-height: normal;
1751
+ -webkit-border-radius: 5px;
1752
+ -moz-border-radius: 5px;
1753
+ border-radius: 5px;
1754
+ }
1755
+ .btn-large [class^="icon-"] {
1756
+ margin-top: 1px;
1757
+ }
1758
+ .btn-small {
1759
+ padding: 5px 9px;
1760
+ font-size: 12px;
1761
+ line-height: 19px;
1762
+ }
1763
+ .btn-small [class^="icon-"] {
1764
+ margin-top: -1px;
1765
+ }
1766
+ .btn-mini {
1767
+ padding: 2px 6px;
1768
+ font-size: 12px;
1769
+ line-height: 17px;
1770
+ }
1771
+ .btn-primary,
1772
+ .btn-primary:hover,
1773
+ .btn-warning,
1774
+ .btn-warning:hover,
1775
+ .btn-danger,
1776
+ .btn-danger:hover,
1777
+ .btn-success,
1778
+ .btn-success:hover,
1779
+ .btn-info,
1780
+ .btn-info:hover,
1781
+ .btn-inverse,
1782
+ .btn-inverse:hover {
1783
+ color: #ffffff;
1784
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1785
+ }
1786
+ .btn-primary.active,
1787
+ .btn-warning.active,
1788
+ .btn-danger.active,
1789
+ .btn-success.active,
1790
+ .btn-info.active,
1791
+ .btn-inverse.active {
1792
+ color: rgba(255, 255, 255, 0.75);
1793
+ }
1794
+ .btn {
1795
+ border-color: #ccc;
1796
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1797
+ }
1798
+ .btn-primary {
1799
+ background-color: #9d331d;
1800
+ background-image: -moz-linear-gradient(top, #9d261d, #9d461d);
1801
+ background-image: -ms-linear-gradient(top, #9d261d, #9d461d);
1802
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9d261d), to(#9d461d));
1803
+ background-image: -webkit-linear-gradient(top, #9d261d, #9d461d);
1804
+ background-image: -o-linear-gradient(top, #9d261d, #9d461d);
1805
+ background-image: linear-gradient(top, #9d261d, #9d461d);
1806
+ background-repeat: repeat-x;
1807
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9d261d', endColorstr='#9d461d', GradientType=0);
1808
+ border-color: #9d461d #9d461d #5c2911;
1809
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1810
+ *background-color: #9d461d;
1811
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1812
+
1813
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1814
+ }
1815
+ .btn-primary:hover,
1816
+ .btn-primary:active,
1817
+ .btn-primary.active,
1818
+ .btn-primary.disabled,
1819
+ .btn-primary[disabled] {
1820
+ background-color: #9d461d;
1821
+ *background-color: #873c19;
1822
+ }
1823
+ .btn-primary:active,
1824
+ .btn-primary.active {
1825
+ background-color: #723315 \9;
1826
+ }
1827
+ .btn-warning {
1828
+ background-color: #faa732;
1829
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406);
1830
+ background-image: -ms-linear-gradient(top, #fbb450, #f89406);
1831
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
1832
+ background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
1833
+ background-image: -o-linear-gradient(top, #fbb450, #f89406);
1834
+ background-image: linear-gradient(top, #fbb450, #f89406);
1835
+ background-repeat: repeat-x;
1836
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
1837
+ border-color: #f89406 #f89406 #ad6704;
1838
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1839
+ *background-color: #f89406;
1840
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1841
+
1842
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1843
+ }
1844
+ .btn-warning:hover,
1845
+ .btn-warning:active,
1846
+ .btn-warning.active,
1847
+ .btn-warning.disabled,
1848
+ .btn-warning[disabled] {
1849
+ background-color: #f89406;
1850
+ *background-color: #df8505;
1851
+ }
1852
+ .btn-warning:active,
1853
+ .btn-warning.active {
1854
+ background-color: #c67605 \9;
1855
+ }
1856
+ .btn-danger {
1857
+ background-color: #da4f49;
1858
+ background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
1859
+ background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
1860
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
1861
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
1862
+ background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
1863
+ background-image: linear-gradient(top, #ee5f5b, #bd362f);
1864
+ background-repeat: repeat-x;
1865
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
1866
+ border-color: #bd362f #bd362f #802420;
1867
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1868
+ *background-color: #bd362f;
1869
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1870
+
1871
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1872
+ }
1873
+ .btn-danger:hover,
1874
+ .btn-danger:active,
1875
+ .btn-danger.active,
1876
+ .btn-danger.disabled,
1877
+ .btn-danger[disabled] {
1878
+ background-color: #bd362f;
1879
+ *background-color: #a9302a;
1880
+ }
1881
+ .btn-danger:active,
1882
+ .btn-danger.active {
1883
+ background-color: #942a25 \9;
1884
+ }
1885
+ .btn-success {
1886
+ background-color: #5bb75b;
1887
+ background-image: -moz-linear-gradient(top, #62c462, #51a351);
1888
+ background-image: -ms-linear-gradient(top, #62c462, #51a351);
1889
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
1890
+ background-image: -webkit-linear-gradient(top, #62c462, #51a351);
1891
+ background-image: -o-linear-gradient(top, #62c462, #51a351);
1892
+ background-image: linear-gradient(top, #62c462, #51a351);
1893
+ background-repeat: repeat-x;
1894
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
1895
+ border-color: #51a351 #51a351 #387038;
1896
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1897
+ *background-color: #51a351;
1898
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1899
+
1900
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1901
+ }
1902
+ .btn-success:hover,
1903
+ .btn-success:active,
1904
+ .btn-success.active,
1905
+ .btn-success.disabled,
1906
+ .btn-success[disabled] {
1907
+ background-color: #51a351;
1908
+ *background-color: #499249;
1909
+ }
1910
+ .btn-success:active,
1911
+ .btn-success.active {
1912
+ background-color: #408140 \9;
1913
+ }
1914
+ .btn-info {
1915
+ background-color: #49afcd;
1916
+ background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
1917
+ background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
1918
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
1919
+ background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
1920
+ background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
1921
+ background-image: linear-gradient(top, #5bc0de, #2f96b4);
1922
+ background-repeat: repeat-x;
1923
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
1924
+ border-color: #2f96b4 #2f96b4 #1f6377;
1925
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1926
+ *background-color: #2f96b4;
1927
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1928
+
1929
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1930
+ }
1931
+ .btn-info:hover,
1932
+ .btn-info:active,
1933
+ .btn-info.active,
1934
+ .btn-info.disabled,
1935
+ .btn-info[disabled] {
1936
+ background-color: #2f96b4;
1937
+ *background-color: #2a85a0;
1938
+ }
1939
+ .btn-info:active,
1940
+ .btn-info.active {
1941
+ background-color: #24748c \9;
1942
+ }
1943
+ .btn-inverse {
1944
+ background-color: #414141;
1945
+ background-image: -moz-linear-gradient(top, #555555, #222222);
1946
+ background-image: -ms-linear-gradient(top, #555555, #222222);
1947
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
1948
+ background-image: -webkit-linear-gradient(top, #555555, #222222);
1949
+ background-image: -o-linear-gradient(top, #555555, #222222);
1950
+ background-image: linear-gradient(top, #555555, #222222);
1951
+ background-repeat: repeat-x;
1952
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
1953
+ border-color: #222222 #222222 #000000;
1954
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1955
+ *background-color: #222222;
1956
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
1957
+
1958
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1959
+ }
1960
+ .btn-inverse:hover,
1961
+ .btn-inverse:active,
1962
+ .btn-inverse.active,
1963
+ .btn-inverse.disabled,
1964
+ .btn-inverse[disabled] {
1965
+ background-color: #222222;
1966
+ *background-color: #151515;
1967
+ }
1968
+ .btn-inverse:active,
1969
+ .btn-inverse.active {
1970
+ background-color: #080808 \9;
1971
+ }
1972
+ button.btn,
1973
+ input[type="submit"].btn {
1974
+ *padding-top: 2px;
1975
+ *padding-bottom: 2px;
1976
+ }
1977
+ button.btn::-moz-focus-inner,
1978
+ input[type="submit"].btn::-moz-focus-inner {
1979
+ padding: 0;
1980
+ border: 0;
1981
+ }
1982
+ button.btn.btn-large,
1983
+ input[type="submit"].btn.btn-large {
1984
+ *padding-top: 7px;
1985
+ *padding-bottom: 7px;
1986
+ }
1987
+ button.btn.btn-small,
1988
+ input[type="submit"].btn.btn-small {
1989
+ *padding-top: 3px;
1990
+ *padding-bottom: 3px;
1991
+ }
1992
+ button.btn.btn-mini,
1993
+ input[type="submit"].btn.btn-mini {
1994
+ *padding-top: 1px;
1995
+ *padding-bottom: 1px;
1996
+ }
1997
+ .btn-group {
1998
+ position: relative;
1999
+ *zoom: 1;
2000
+ *margin-left: .3em;
2001
+ }
2002
+ .btn-group:before,
2003
+ .btn-group:after {
2004
+ display: table;
2005
+ content: "";
2006
+ }
2007
+ .btn-group:after {
2008
+ clear: both;
2009
+ }
2010
+ .btn-group:first-child {
2011
+ *margin-left: 0;
2012
+ }
2013
+ .btn-group + .btn-group {
2014
+ margin-left: 5px;
2015
+ }
2016
+ .btn-toolbar {
2017
+ margin-top: 10.5px;
2018
+ margin-bottom: 10.5px;
2019
+ }
2020
+ .btn-toolbar .btn-group {
2021
+ display: inline-block;
2022
+ *display: inline;
2023
+ /* IE7 inline-block hack */
2024
+
2025
+ *zoom: 1;
2026
+ }
2027
+ .btn-group > .btn {
2028
+ position: relative;
2029
+ float: left;
2030
+ margin-left: -1px;
2031
+ -webkit-border-radius: 0;
2032
+ -moz-border-radius: 0;
2033
+ border-radius: 0;
2034
+ }
2035
+ .btn-group > .btn:first-child {
2036
+ margin-left: 0;
2037
+ -webkit-border-top-left-radius: 4px;
2038
+ -moz-border-radius-topleft: 4px;
2039
+ border-top-left-radius: 4px;
2040
+ -webkit-border-bottom-left-radius: 4px;
2041
+ -moz-border-radius-bottomleft: 4px;
2042
+ border-bottom-left-radius: 4px;
2043
+ }
2044
+ .btn-group > .btn:last-child,
2045
+ .btn-group > .dropdown-toggle {
2046
+ -webkit-border-top-right-radius: 4px;
2047
+ -moz-border-radius-topright: 4px;
2048
+ border-top-right-radius: 4px;
2049
+ -webkit-border-bottom-right-radius: 4px;
2050
+ -moz-border-radius-bottomright: 4px;
2051
+ border-bottom-right-radius: 4px;
2052
+ }
2053
+ .btn-group > .btn.large:first-child {
2054
+ margin-left: 0;
2055
+ -webkit-border-top-left-radius: 6px;
2056
+ -moz-border-radius-topleft: 6px;
2057
+ border-top-left-radius: 6px;
2058
+ -webkit-border-bottom-left-radius: 6px;
2059
+ -moz-border-radius-bottomleft: 6px;
2060
+ border-bottom-left-radius: 6px;
2061
+ }
2062
+ .btn-group > .btn.large:last-child,
2063
+ .btn-group > .large.dropdown-toggle {
2064
+ -webkit-border-top-right-radius: 6px;
2065
+ -moz-border-radius-topright: 6px;
2066
+ border-top-right-radius: 6px;
2067
+ -webkit-border-bottom-right-radius: 6px;
2068
+ -moz-border-radius-bottomright: 6px;
2069
+ border-bottom-right-radius: 6px;
2070
+ }
2071
+ .btn-group > .btn:hover,
2072
+ .btn-group > .btn:focus,
2073
+ .btn-group > .btn:active,
2074
+ .btn-group > .btn.active {
2075
+ z-index: 2;
2076
+ }
2077
+ .btn-group .dropdown-toggle:active,
2078
+ .btn-group.open .dropdown-toggle {
2079
+ outline: 0;
2080
+ }
2081
+ .btn-group > .dropdown-toggle {
2082
+ padding-left: 8px;
2083
+ padding-right: 8px;
2084
+ -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2085
+ -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2086
+ box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2087
+ *padding-top: 4px;
2088
+ *padding-bottom: 4px;
2089
+ }
2090
+ .btn-group > .btn-mini.dropdown-toggle {
2091
+ padding-left: 5px;
2092
+ padding-right: 5px;
2093
+ }
2094
+ .btn-group > .btn-small.dropdown-toggle {
2095
+ *padding-top: 4px;
2096
+ *padding-bottom: 4px;
2097
+ }
2098
+ .btn-group > .btn-large.dropdown-toggle {
2099
+ padding-left: 12px;
2100
+ padding-right: 12px;
2101
+ }
2102
+ .btn-group.open .dropdown-toggle {
2103
+ background-image: none;
2104
+ -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
2105
+ -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
2106
+ box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
2107
+ }
2108
+ .btn-group.open .btn.dropdown-toggle {
2109
+ background-color: #e6e6e6;
2110
+ }
2111
+ .btn-group.open .btn-primary.dropdown-toggle {
2112
+ background-color: #9d461d;
2113
+ }
2114
+ .btn-group.open .btn-warning.dropdown-toggle {
2115
+ background-color: #f89406;
2116
+ }
2117
+ .btn-group.open .btn-danger.dropdown-toggle {
2118
+ background-color: #bd362f;
2119
+ }
2120
+ .btn-group.open .btn-success.dropdown-toggle {
2121
+ background-color: #51a351;
2122
+ }
2123
+ .btn-group.open .btn-info.dropdown-toggle {
2124
+ background-color: #2f96b4;
2125
+ }
2126
+ .btn-group.open .btn-inverse.dropdown-toggle {
2127
+ background-color: #222222;
2128
+ }
2129
+ .btn .caret {
2130
+ margin-top: 7px;
2131
+ margin-left: 0;
2132
+ }
2133
+ .btn:hover .caret,
2134
+ .open.btn-group .caret {
2135
+ opacity: 1;
2136
+ filter: alpha(opacity=100);
2137
+ }
2138
+ .btn-mini .caret {
2139
+ margin-top: 5px;
2140
+ }
2141
+ .btn-small .caret {
2142
+ margin-top: 6px;
2143
+ }
2144
+ .btn-large .caret {
2145
+ margin-top: 6px;
2146
+ border-left-width: 5px;
2147
+ border-right-width: 5px;
2148
+ border-top-width: 5px;
2149
+ }
2150
+ .dropup .btn-large .caret {
2151
+ border-bottom: 5px solid #000000;
2152
+ border-top: 0;
2153
+ }
2154
+ .btn-primary .caret,
2155
+ .btn-warning .caret,
2156
+ .btn-danger .caret,
2157
+ .btn-info .caret,
2158
+ .btn-success .caret,
2159
+ .btn-inverse .caret {
2160
+ border-top-color: #ffffff;
2161
+ border-bottom-color: #ffffff;
2162
+ opacity: 0.75;
2163
+ filter: alpha(opacity=75);
2164
+ }
2165
+ .alert {
2166
+ padding: 8px 35px 8px 14px;
2167
+ margin-bottom: 21px;
2168
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2169
+ background-color: #fcf8e3;
2170
+ border: 1px solid #fbeed5;
2171
+ -webkit-border-radius: 4px;
2172
+ -moz-border-radius: 4px;
2173
+ border-radius: 4px;
2174
+ color: #c09853;
2175
+ }
2176
+ .alert-heading {
2177
+ color: inherit;
2178
+ }
2179
+ .alert .close {
2180
+ position: relative;
2181
+ top: -2px;
2182
+ right: -21px;
2183
+ line-height: 18px;
2184
+ }
2185
+ .alert-success {
2186
+ background-color: #dff0d8;
2187
+ border-color: #d6e9c6;
2188
+ color: #468847;
2189
+ }
2190
+ .alert-danger,
2191
+ .alert-error {
2192
+ background-color: #f2dede;
2193
+ border-color: #eed3d7;
2194
+ color: #b94a48;
2195
+ }
2196
+ .alert-info {
2197
+ background-color: #d9edf7;
2198
+ border-color: #bce8f1;
2199
+ color: #3a87ad;
2200
+ }
2201
+ .alert-block {
2202
+ padding-top: 14px;
2203
+ padding-bottom: 14px;
2204
+ }
2205
+ .alert-block > p,
2206
+ .alert-block > ul {
2207
+ margin-bottom: 0;
2208
+ }
2209
+ .alert-block p + p {
2210
+ margin-top: 5px;
2211
+ }
2212
+ .nav {
2213
+ margin-left: 0;
2214
+ margin-bottom: 21px;
2215
+ list-style: none;
2216
+ }
2217
+ .nav > li > a {
2218
+ display: block;
2219
+ }
2220
+ .nav > li > a:hover {
2221
+ text-decoration: none;
2222
+ background-color: #eeeeee;
2223
+ }
2224
+ .nav > .pull-right {
2225
+ float: right;
2226
+ }
2227
+ .nav .nav-header {
2228
+ display: block;
2229
+ padding: 3px 15px;
2230
+ font-size: 11px;
2231
+ font-weight: bold;
2232
+ line-height: 21px;
2233
+ color: #999999;
2234
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2235
+ text-transform: uppercase;
2236
+ }
2237
+ .nav li + .nav-header {
2238
+ margin-top: 9px;
2239
+ }
2240
+ .nav-list {
2241
+ padding-left: 15px;
2242
+ padding-right: 15px;
2243
+ margin-bottom: 0;
2244
+ }
2245
+ .nav-list > li > a,
2246
+ .nav-list .nav-header {
2247
+ margin-left: -15px;
2248
+ margin-right: -15px;
2249
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2250
+ }
2251
+ .nav-list > li > a {
2252
+ padding: 3px 15px;
2253
+ }
2254
+ .nav-list > .active > a,
2255
+ .nav-list > .active > a:hover {
2256
+ color: #ffffff;
2257
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
2258
+ background-color: #9d261d;
2259
+ }
2260
+ .nav-list [class^="icon-"] {
2261
+ margin-right: 2px;
2262
+ }
2263
+ .nav-list .divider {
2264
+ *width: 100%;
2265
+ height: 1px;
2266
+ margin: 9.5px 1px;
2267
+ *margin: -5px 0 5px;
2268
+ overflow: hidden;
2269
+ background-color: #e5e5e5;
2270
+ border-bottom: 1px solid #ffffff;
2271
+ }
2272
+ .nav-tabs,
2273
+ .nav-pills {
2274
+ *zoom: 1;
2275
+ }
2276
+ .nav-tabs:before,
2277
+ .nav-pills:before,
2278
+ .nav-tabs:after,
2279
+ .nav-pills:after {
2280
+ display: table;
2281
+ content: "";
2282
+ }
2283
+ .nav-tabs:after,
2284
+ .nav-pills:after {
2285
+ clear: both;
2286
+ }
2287
+ .nav-tabs > li,
2288
+ .nav-pills > li {
2289
+ float: left;
2290
+ }
2291
+ .nav-tabs > li > a,
2292
+ .nav-pills > li > a {
2293
+ padding-right: 12px;
2294
+ padding-left: 12px;
2295
+ margin-right: 2px;
2296
+ line-height: 14px;
2297
+ }
2298
+ .nav-tabs {
2299
+ border-bottom: 1px solid #ddd;
2300
+ }
2301
+ .nav-tabs > li {
2302
+ margin-bottom: -1px;
2303
+ }
2304
+ .nav-tabs > li > a {
2305
+ padding-top: 8px;
2306
+ padding-bottom: 8px;
2307
+ line-height: 21px;
2308
+ border: 1px solid transparent;
2309
+ -webkit-border-radius: 4px 4px 0 0;
2310
+ -moz-border-radius: 4px 4px 0 0;
2311
+ border-radius: 4px 4px 0 0;
2312
+ }
2313
+ .nav-tabs > li > a:hover {
2314
+ border-color: #eeeeee #eeeeee #dddddd;
2315
+ }
2316
+ .nav-tabs > .active > a,
2317
+ .nav-tabs > .active > a:hover {
2318
+ color: #555555;
2319
+ background-color: #ffffff;
2320
+ border: 1px solid #ddd;
2321
+ border-bottom-color: transparent;
2322
+ cursor: default;
2323
+ }
2324
+ .nav-pills > li > a {
2325
+ padding-top: 8px;
2326
+ padding-bottom: 8px;
2327
+ margin-top: 2px;
2328
+ margin-bottom: 2px;
2329
+ -webkit-border-radius: 5px;
2330
+ -moz-border-radius: 5px;
2331
+ border-radius: 5px;
2332
+ }
2333
+ .nav-pills > .active > a,
2334
+ .nav-pills > .active > a:hover {
2335
+ color: #ffffff;
2336
+ background-color: #9d261d;
2337
+ }
2338
+ .nav-stacked > li {
2339
+ float: none;
2340
+ }
2341
+ .nav-stacked > li > a {
2342
+ margin-right: 0;
2343
+ }
2344
+ .nav-tabs.nav-stacked {
2345
+ border-bottom: 0;
2346
+ }
2347
+ .nav-tabs.nav-stacked > li > a {
2348
+ border: 1px solid #ddd;
2349
+ -webkit-border-radius: 0;
2350
+ -moz-border-radius: 0;
2351
+ border-radius: 0;
2352
+ }
2353
+ .nav-tabs.nav-stacked > li:first-child > a {
2354
+ -webkit-border-radius: 4px 4px 0 0;
2355
+ -moz-border-radius: 4px 4px 0 0;
2356
+ border-radius: 4px 4px 0 0;
2357
+ }
2358
+ .nav-tabs.nav-stacked > li:last-child > a {
2359
+ -webkit-border-radius: 0 0 4px 4px;
2360
+ -moz-border-radius: 0 0 4px 4px;
2361
+ border-radius: 0 0 4px 4px;
2362
+ }
2363
+ .nav-tabs.nav-stacked > li > a:hover {
2364
+ border-color: #ddd;
2365
+ z-index: 2;
2366
+ }
2367
+ .nav-pills.nav-stacked > li > a {
2368
+ margin-bottom: 3px;
2369
+ }
2370
+ .nav-pills.nav-stacked > li:last-child > a {
2371
+ margin-bottom: 1px;
2372
+ }
2373
+ .nav-tabs .dropdown-menu {
2374
+ -webkit-border-radius: 0 0 5px 5px;
2375
+ -moz-border-radius: 0 0 5px 5px;
2376
+ border-radius: 0 0 5px 5px;
2377
+ }
2378
+ .nav-pills .dropdown-menu {
2379
+ -webkit-border-radius: 4px;
2380
+ -moz-border-radius: 4px;
2381
+ border-radius: 4px;
2382
+ }
2383
+ .nav-tabs .dropdown-toggle .caret,
2384
+ .nav-pills .dropdown-toggle .caret {
2385
+ border-top-color: #9d261d;
2386
+ border-bottom-color: #9d261d;
2387
+ margin-top: 6px;
2388
+ }
2389
+ .nav-tabs .dropdown-toggle:hover .caret,
2390
+ .nav-pills .dropdown-toggle:hover .caret {
2391
+ border-top-color: #5c1611;
2392
+ border-bottom-color: #5c1611;
2393
+ }
2394
+ .nav-tabs .active .dropdown-toggle .caret,
2395
+ .nav-pills .active .dropdown-toggle .caret {
2396
+ border-top-color: #333333;
2397
+ border-bottom-color: #333333;
2398
+ }
2399
+ .nav > .dropdown.active > a:hover {
2400
+ color: #000000;
2401
+ cursor: pointer;
2402
+ }
2403
+ .nav-tabs .open .dropdown-toggle,
2404
+ .nav-pills .open .dropdown-toggle,
2405
+ .nav > li.dropdown.open.active > a:hover {
2406
+ color: #ffffff;
2407
+ background-color: #999999;
2408
+ border-color: #999999;
2409
+ }
2410
+ .nav li.dropdown.open .caret,
2411
+ .nav li.dropdown.open.active .caret,
2412
+ .nav li.dropdown.open a:hover .caret {
2413
+ border-top-color: #ffffff;
2414
+ border-bottom-color: #ffffff;
2415
+ opacity: 1;
2416
+ filter: alpha(opacity=100);
2417
+ }
2418
+ .tabs-stacked .open > a:hover {
2419
+ border-color: #999999;
2420
+ }
2421
+ .tabbable {
2422
+ *zoom: 1;
2423
+ }
2424
+ .tabbable:before,
2425
+ .tabbable:after {
2426
+ display: table;
2427
+ content: "";
2428
+ }
2429
+ .tabbable:after {
2430
+ clear: both;
2431
+ }
2432
+ .tab-content {
2433
+ overflow: auto;
2434
+ }
2435
+ .tabs-below > .nav-tabs,
2436
+ .tabs-right > .nav-tabs,
2437
+ .tabs-left > .nav-tabs {
2438
+ border-bottom: 0;
2439
+ }
2440
+ .tab-content > .tab-pane,
2441
+ .pill-content > .pill-pane {
2442
+ display: none;
2443
+ }
2444
+ .tab-content > .active,
2445
+ .pill-content > .active {
2446
+ display: block;
2447
+ }
2448
+ .tabs-below > .nav-tabs {
2449
+ border-top: 1px solid #ddd;
2450
+ }
2451
+ .tabs-below > .nav-tabs > li {
2452
+ margin-top: -1px;
2453
+ margin-bottom: 0;
2454
+ }
2455
+ .tabs-below > .nav-tabs > li > a {
2456
+ -webkit-border-radius: 0 0 4px 4px;
2457
+ -moz-border-radius: 0 0 4px 4px;
2458
+ border-radius: 0 0 4px 4px;
2459
+ }
2460
+ .tabs-below > .nav-tabs > li > a:hover {
2461
+ border-bottom-color: transparent;
2462
+ border-top-color: #ddd;
2463
+ }
2464
+ .tabs-below > .nav-tabs > .active > a,
2465
+ .tabs-below > .nav-tabs > .active > a:hover {
2466
+ border-color: transparent #ddd #ddd #ddd;
2467
+ }
2468
+ .tabs-left > .nav-tabs > li,
2469
+ .tabs-right > .nav-tabs > li {
2470
+ float: none;
2471
+ }
2472
+ .tabs-left > .nav-tabs > li > a,
2473
+ .tabs-right > .nav-tabs > li > a {
2474
+ min-width: 74px;
2475
+ margin-right: 0;
2476
+ margin-bottom: 3px;
2477
+ }
2478
+ .tabs-left > .nav-tabs {
2479
+ float: left;
2480
+ margin-right: 19px;
2481
+ border-right: 1px solid #ddd;
2482
+ }
2483
+ .tabs-left > .nav-tabs > li > a {
2484
+ margin-right: -1px;
2485
+ -webkit-border-radius: 4px 0 0 4px;
2486
+ -moz-border-radius: 4px 0 0 4px;
2487
+ border-radius: 4px 0 0 4px;
2488
+ }
2489
+ .tabs-left > .nav-tabs > li > a:hover {
2490
+ border-color: #eeeeee #dddddd #eeeeee #eeeeee;
2491
+ }
2492
+ .tabs-left > .nav-tabs .active > a,
2493
+ .tabs-left > .nav-tabs .active > a:hover {
2494
+ border-color: #ddd transparent #ddd #ddd;
2495
+ *border-right-color: #ffffff;
2496
+ }
2497
+ .tabs-right > .nav-tabs {
2498
+ float: right;
2499
+ margin-left: 19px;
2500
+ border-left: 1px solid #ddd;
2501
+ }
2502
+ .tabs-right > .nav-tabs > li > a {
2503
+ margin-left: -1px;
2504
+ -webkit-border-radius: 0 4px 4px 0;
2505
+ -moz-border-radius: 0 4px 4px 0;
2506
+ border-radius: 0 4px 4px 0;
2507
+ }
2508
+ .tabs-right > .nav-tabs > li > a:hover {
2509
+ border-color: #eeeeee #eeeeee #eeeeee #dddddd;
2510
+ }
2511
+ .tabs-right > .nav-tabs .active > a,
2512
+ .tabs-right > .nav-tabs .active > a:hover {
2513
+ border-color: #ddd #ddd #ddd transparent;
2514
+ *border-left-color: #ffffff;
2515
+ }
2516
+ .navbar {
2517
+ *position: relative;
2518
+ *z-index: 2;
2519
+ overflow: visible;
2520
+ margin-bottom: 21px;
2521
+ }
2522
+ .navbar-inner {
2523
+ min-height: 40px;
2524
+ padding-left: 20px;
2525
+ padding-right: 20px;
2526
+ background-color: #2c2c2c;
2527
+ background-image: -moz-linear-gradient(top, #333333, #222222);
2528
+ background-image: -ms-linear-gradient(top, #333333, #222222);
2529
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2530
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
2531
+ background-image: -o-linear-gradient(top, #333333, #222222);
2532
+ background-image: linear-gradient(top, #333333, #222222);
2533
+ background-repeat: repeat-x;
2534
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2535
+ -webkit-border-radius: 4px;
2536
+ -moz-border-radius: 4px;
2537
+ border-radius: 4px;
2538
+ -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
2539
+ -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
2540
+ box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
2541
+ }
2542
+ .navbar .container {
2543
+ width: auto;
2544
+ }
2545
+ .nav-collapse.collapse {
2546
+ height: auto;
2547
+ }
2548
+ .navbar {
2549
+ color: #999999;
2550
+ }
2551
+ .navbar .brand:hover {
2552
+ text-decoration: none;
2553
+ }
2554
+ .navbar .brand {
2555
+ float: left;
2556
+ display: block;
2557
+ padding: 8px 20px 12px;
2558
+ margin-left: -20px;
2559
+ font-size: 20px;
2560
+ font-weight: 200;
2561
+ line-height: 1;
2562
+ color: #999999;
2563
+ }
2564
+ .navbar .navbar-text {
2565
+ margin-bottom: 0;
2566
+ line-height: 40px;
2567
+ }
2568
+ .navbar .navbar-link {
2569
+ color: #999999;
2570
+ }
2571
+ .navbar .navbar-link:hover {
2572
+ color: #ffffff;
2573
+ }
2574
+ .navbar .btn,
2575
+ .navbar .btn-group {
2576
+ margin-top: 5px;
2577
+ }
2578
+ .navbar .btn-group .btn {
2579
+ margin: 0;
2580
+ }
2581
+ .navbar-form {
2582
+ margin-bottom: 0;
2583
+ *zoom: 1;
2584
+ }
2585
+ .navbar-form:before,
2586
+ .navbar-form:after {
2587
+ display: table;
2588
+ content: "";
2589
+ }
2590
+ .navbar-form:after {
2591
+ clear: both;
2592
+ }
2593
+ .navbar-form input,
2594
+ .navbar-form select,
2595
+ .navbar-form .radio,
2596
+ .navbar-form .checkbox {
2597
+ margin-top: 5px;
2598
+ }
2599
+ .navbar-form input,
2600
+ .navbar-form select {
2601
+ display: inline-block;
2602
+ margin-bottom: 0;
2603
+ }
2604
+ .navbar-form input[type="image"],
2605
+ .navbar-form input[type="checkbox"],
2606
+ .navbar-form input[type="radio"] {
2607
+ margin-top: 3px;
2608
+ }
2609
+ .navbar-form .input-append,
2610
+ .navbar-form .input-prepend {
2611
+ margin-top: 6px;
2612
+ white-space: nowrap;
2613
+ }
2614
+ .navbar-form .input-append input,
2615
+ .navbar-form .input-prepend input {
2616
+ margin-top: 0;
2617
+ }
2618
+ .navbar-search {
2619
+ position: relative;
2620
+ float: left;
2621
+ margin-top: 6px;
2622
+ margin-bottom: 0;
2623
+ }
2624
+ .navbar-search .search-query {
2625
+ padding: 4px 9px;
2626
+ font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
2627
+ font-size: 13px;
2628
+ font-weight: normal;
2629
+ line-height: 1;
2630
+ color: #ffffff;
2631
+ background-color: #626262;
2632
+ border: 1px solid #151515;
2633
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.15);
2634
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.15);
2635
+ box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.15);
2636
+ -webkit-transition: none;
2637
+ -moz-transition: none;
2638
+ -ms-transition: none;
2639
+ -o-transition: none;
2640
+ transition: none;
2641
+ }
2642
+ .navbar-search .search-query:-moz-placeholder {
2643
+ color: #cccccc;
2644
+ }
2645
+ .navbar-search .search-query::-webkit-input-placeholder {
2646
+ color: #cccccc;
2647
+ }
2648
+ .navbar-search .search-query:focus,
2649
+ .navbar-search .search-query.focused {
2650
+ padding: 5px 10px;
2651
+ color: #333333;
2652
+ text-shadow: 0 1px 0 #ffffff;
2653
+ background-color: #ffffff;
2654
+ border: 0;
2655
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2656
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2657
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
2658
+ outline: 0;
2659
+ }
2660
+ .navbar-fixed-top,
2661
+ .navbar-fixed-bottom {
2662
+ position: fixed;
2663
+ right: 0;
2664
+ left: 0;
2665
+ z-index: 1030;
2666
+ margin-bottom: 0;
2667
+ }
2668
+ .navbar-fixed-top .navbar-inner,
2669
+ .navbar-fixed-bottom .navbar-inner {
2670
+ padding-left: 0;
2671
+ padding-right: 0;
2672
+ -webkit-border-radius: 0;
2673
+ -moz-border-radius: 0;
2674
+ border-radius: 0;
2675
+ }
2676
+ .navbar-fixed-top .container,
2677
+ .navbar-fixed-bottom .container {
2678
+ width: 940px;
2679
+ }
2680
+ .navbar-fixed-top {
2681
+ top: 0;
2682
+ }
2683
+ .navbar-fixed-bottom {
2684
+ bottom: 0;
2685
+ }
2686
+ .navbar .nav {
2687
+ position: relative;
2688
+ left: 0;
2689
+ display: block;
2690
+ float: left;
2691
+ margin: 0 10px 0 0;
2692
+ }
2693
+ .navbar .nav.pull-right {
2694
+ float: right;
2695
+ }
2696
+ .navbar .nav > li {
2697
+ display: block;
2698
+ float: left;
2699
+ }
2700
+ .navbar .nav > li > a {
2701
+ float: none;
2702
+ padding: 9px 10px 11px;
2703
+ line-height: 19px;
2704
+ color: #999999;
2705
+ text-decoration: none;
2706
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2707
+ }
2708
+ .navbar .btn {
2709
+ display: inline-block;
2710
+ padding: 4px 10px 4px;
2711
+ margin: 5px 5px 6px;
2712
+ line-height: 21px;
2713
+ }
2714
+ .navbar .btn-group {
2715
+ margin: 0;
2716
+ padding: 5px 5px 6px;
2717
+ }
2718
+ .navbar .nav > li > a:hover {
2719
+ background-color: transparent;
2720
+ color: #ffffff;
2721
+ text-decoration: none;
2722
+ }
2723
+ .navbar .nav .active > a,
2724
+ .navbar .nav .active > a:hover {
2725
+ color: #ffffff;
2726
+ text-decoration: none;
2727
+ background-color: #222222;
2728
+ }
2729
+ .navbar .divider-vertical {
2730
+ height: 40px;
2731
+ width: 1px;
2732
+ margin: 0 9px;
2733
+ overflow: hidden;
2734
+ background-color: #222222;
2735
+ border-right: 1px solid #333333;
2736
+ }
2737
+ .navbar .nav.pull-right {
2738
+ margin-left: 10px;
2739
+ margin-right: 0;
2740
+ }
2741
+ .navbar .btn-navbar {
2742
+ display: none;
2743
+ float: right;
2744
+ padding: 7px 10px;
2745
+ margin-left: 5px;
2746
+ margin-right: 5px;
2747
+ background-color: #2c2c2c;
2748
+ background-image: -moz-linear-gradient(top, #333333, #222222);
2749
+ background-image: -ms-linear-gradient(top, #333333, #222222);
2750
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));
2751
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
2752
+ background-image: -o-linear-gradient(top, #333333, #222222);
2753
+ background-image: linear-gradient(top, #333333, #222222);
2754
+ background-repeat: repeat-x;
2755
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
2756
+ border-color: #222222 #222222 #000000;
2757
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2758
+ *background-color: #222222;
2759
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2760
+
2761
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2762
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
2763
+ -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
2764
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
2765
+ }
2766
+ .navbar .btn-navbar:hover,
2767
+ .navbar .btn-navbar:active,
2768
+ .navbar .btn-navbar.active,
2769
+ .navbar .btn-navbar.disabled,
2770
+ .navbar .btn-navbar[disabled] {
2771
+ background-color: #222222;
2772
+ *background-color: #151515;
2773
+ }
2774
+ .navbar .btn-navbar:active,
2775
+ .navbar .btn-navbar.active {
2776
+ background-color: #080808 \9;
2777
+ }
2778
+ .navbar .btn-navbar .icon-bar {
2779
+ display: block;
2780
+ width: 18px;
2781
+ height: 2px;
2782
+ background-color: #f5f5f5;
2783
+ -webkit-border-radius: 1px;
2784
+ -moz-border-radius: 1px;
2785
+ border-radius: 1px;
2786
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2787
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2788
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
2789
+ }
2790
+ .btn-navbar .icon-bar + .icon-bar {
2791
+ margin-top: 3px;
2792
+ }
2793
+ .navbar .dropdown-menu:before {
2794
+ content: '';
2795
+ display: inline-block;
2796
+ border-left: 7px solid transparent;
2797
+ border-right: 7px solid transparent;
2798
+ border-bottom: 7px solid #ccc;
2799
+ border-bottom-color: rgba(0, 0, 0, 0.2);
2800
+ position: absolute;
2801
+ top: -7px;
2802
+ left: 9px;
2803
+ }
2804
+ .navbar .dropdown-menu:after {
2805
+ content: '';
2806
+ display: inline-block;
2807
+ border-left: 6px solid transparent;
2808
+ border-right: 6px solid transparent;
2809
+ border-bottom: 6px solid #ffffff;
2810
+ position: absolute;
2811
+ top: -6px;
2812
+ left: 10px;
2813
+ }
2814
+ .navbar-fixed-bottom .dropdown-menu:before {
2815
+ border-top: 7px solid #ccc;
2816
+ border-top-color: rgba(0, 0, 0, 0.2);
2817
+ border-bottom: 0;
2818
+ bottom: -7px;
2819
+ top: auto;
2820
+ }
2821
+ .navbar-fixed-bottom .dropdown-menu:after {
2822
+ border-top: 6px solid #ffffff;
2823
+ border-bottom: 0;
2824
+ bottom: -6px;
2825
+ top: auto;
2826
+ }
2827
+ .navbar .nav li.dropdown .dropdown-toggle .caret,
2828
+ .navbar .nav li.dropdown.open .caret {
2829
+ border-top-color: #ffffff;
2830
+ border-bottom-color: #ffffff;
2831
+ }
2832
+ .navbar .nav li.dropdown.active .caret {
2833
+ opacity: 1;
2834
+ filter: alpha(opacity=100);
2835
+ }
2836
+ .navbar .nav li.dropdown.open > .dropdown-toggle,
2837
+ .navbar .nav li.dropdown.active > .dropdown-toggle,
2838
+ .navbar .nav li.dropdown.open.active > .dropdown-toggle {
2839
+ background-color: transparent;
2840
+ }
2841
+ .navbar .nav li.dropdown.active > .dropdown-toggle:hover {
2842
+ color: #ffffff;
2843
+ }
2844
+ .navbar .pull-right .dropdown-menu,
2845
+ .navbar .dropdown-menu.pull-right {
2846
+ left: auto;
2847
+ right: 0;
2848
+ }
2849
+ .navbar .pull-right .dropdown-menu:before,
2850
+ .navbar .dropdown-menu.pull-right:before {
2851
+ left: auto;
2852
+ right: 12px;
2853
+ }
2854
+ .navbar .pull-right .dropdown-menu:after,
2855
+ .navbar .dropdown-menu.pull-right:after {
2856
+ left: auto;
2857
+ right: 13px;
2858
+ }
2859
+ .breadcrumb {
2860
+ padding: 7px 14px;
2861
+ margin: 0 0 21px;
2862
+ list-style: none;
2863
+ background-color: #fbfbfb;
2864
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
2865
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
2866
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
2867
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
2868
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
2869
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
2870
+ background-repeat: repeat-x;
2871
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
2872
+ border: 1px solid #ddd;
2873
+ -webkit-border-radius: 3px;
2874
+ -moz-border-radius: 3px;
2875
+ border-radius: 3px;
2876
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
2877
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
2878
+ box-shadow: inset 0 1px 0 #ffffff;
2879
+ }
2880
+ .breadcrumb li {
2881
+ display: inline-block;
2882
+ *display: inline;
2883
+ /* IE7 inline-block hack */
2884
+
2885
+ *zoom: 1;
2886
+ text-shadow: 0 1px 0 #ffffff;
2887
+ }
2888
+ .breadcrumb .divider {
2889
+ padding: 0 5px;
2890
+ color: #999999;
2891
+ }
2892
+ .breadcrumb .active a {
2893
+ color: #333333;
2894
+ }
2895
+ .pagination {
2896
+ height: 42px;
2897
+ margin: 21px 0;
2898
+ }
2899
+ .pagination ul {
2900
+ display: inline-block;
2901
+ *display: inline;
2902
+ /* IE7 inline-block hack */
2903
+
2904
+ *zoom: 1;
2905
+ margin-left: 0;
2906
+ margin-bottom: 0;
2907
+ -webkit-border-radius: 3px;
2908
+ -moz-border-radius: 3px;
2909
+ border-radius: 3px;
2910
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2911
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2912
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2913
+ }
2914
+ .pagination li {
2915
+ display: inline;
2916
+ }
2917
+ .pagination a {
2918
+ float: left;
2919
+ padding: 0 14px;
2920
+ line-height: 40px;
2921
+ text-decoration: none;
2922
+ border: 1px solid #ddd;
2923
+ border-left-width: 0;
2924
+ }
2925
+ .pagination a:hover,
2926
+ .pagination .active a {
2927
+ background-color: #f5f5f5;
2928
+ }
2929
+ .pagination .active a {
2930
+ color: #999999;
2931
+ cursor: default;
2932
+ }
2933
+ .pagination .disabled span,
2934
+ .pagination .disabled a,
2935
+ .pagination .disabled a:hover {
2936
+ color: #999999;
2937
+ background-color: transparent;
2938
+ cursor: default;
2939
+ }
2940
+ .pagination li:first-child a {
2941
+ border-left-width: 1px;
2942
+ -webkit-border-radius: 3px 0 0 3px;
2943
+ -moz-border-radius: 3px 0 0 3px;
2944
+ border-radius: 3px 0 0 3px;
2945
+ }
2946
+ .pagination li:last-child a {
2947
+ -webkit-border-radius: 0 3px 3px 0;
2948
+ -moz-border-radius: 0 3px 3px 0;
2949
+ border-radius: 0 3px 3px 0;
2950
+ }
2951
+ .pagination-centered {
2952
+ text-align: center;
2953
+ }
2954
+ .pagination-right {
2955
+ text-align: right;
2956
+ }
2957
+ .pager {
2958
+ margin-left: 0;
2959
+ margin-bottom: 21px;
2960
+ list-style: none;
2961
+ text-align: center;
2962
+ *zoom: 1;
2963
+ }
2964
+ .pager:before,
2965
+ .pager:after {
2966
+ display: table;
2967
+ content: "";
2968
+ }
2969
+ .pager:after {
2970
+ clear: both;
2971
+ }
2972
+ .pager li {
2973
+ display: inline;
2974
+ }
2975
+ .pager a {
2976
+ display: inline-block;
2977
+ padding: 5px 14px;
2978
+ background-color: #fff;
2979
+ border: 1px solid #ddd;
2980
+ -webkit-border-radius: 15px;
2981
+ -moz-border-radius: 15px;
2982
+ border-radius: 15px;
2983
+ }
2984
+ .pager a:hover {
2985
+ text-decoration: none;
2986
+ background-color: #f5f5f5;
2987
+ }
2988
+ .pager .next a {
2989
+ float: right;
2990
+ }
2991
+ .pager .previous a {
2992
+ float: left;
2993
+ }
2994
+ .pager .disabled a,
2995
+ .pager .disabled a:hover {
2996
+ color: #999999;
2997
+ background-color: #fff;
2998
+ cursor: default;
2999
+ }
3000
+ .modal-open .dropdown-menu {
3001
+ z-index: 2050;
3002
+ }
3003
+ .modal-open .dropdown.open {
3004
+ *z-index: 2050;
3005
+ }
3006
+ .modal-open .popover {
3007
+ z-index: 2060;
3008
+ }
3009
+ .modal-open .tooltip {
3010
+ z-index: 2070;
3011
+ }
3012
+ .modal-backdrop {
3013
+ position: fixed;
3014
+ top: 0;
3015
+ right: 0;
3016
+ bottom: 0;
3017
+ left: 0;
3018
+ z-index: 1040;
3019
+ background-color: #000000;
3020
+ }
3021
+ .modal-backdrop.fade {
3022
+ opacity: 0;
3023
+ }
3024
+ .modal-backdrop,
3025
+ .modal-backdrop.fade.in {
3026
+ opacity: 0.8;
3027
+ filter: alpha(opacity=80);
3028
+ }
3029
+ .modal {
3030
+ position: fixed;
3031
+ top: 50%;
3032
+ left: 50%;
3033
+ z-index: 1050;
3034
+ overflow: auto;
3035
+ width: 560px;
3036
+ margin: -250px 0 0 -280px;
3037
+ background-color: #ffffff;
3038
+ border: 1px solid #999;
3039
+ border: 1px solid rgba(0, 0, 0, 0.3);
3040
+ *border: 1px solid #999;
3041
+ /* IE6-7 */
3042
+
3043
+ -webkit-border-radius: 6px;
3044
+ -moz-border-radius: 6px;
3045
+ border-radius: 6px;
3046
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3047
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3048
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3049
+ -webkit-background-clip: padding-box;
3050
+ -moz-background-clip: padding-box;
3051
+ background-clip: padding-box;
3052
+ }
3053
+ .modal.fade {
3054
+ -webkit-transition: opacity .3s linear, top .3s ease-out;
3055
+ -moz-transition: opacity .3s linear, top .3s ease-out;
3056
+ -ms-transition: opacity .3s linear, top .3s ease-out;
3057
+ -o-transition: opacity .3s linear, top .3s ease-out;
3058
+ transition: opacity .3s linear, top .3s ease-out;
3059
+ top: -25%;
3060
+ }
3061
+ .modal.fade.in {
3062
+ top: 50%;
3063
+ }
3064
+ .modal-header {
3065
+ padding: 9px 15px;
3066
+ border-bottom: 1px solid #eee;
3067
+ }
3068
+ .modal-header .close {
3069
+ margin-top: 2px;
3070
+ }
3071
+ .modal-body {
3072
+ overflow-y: auto;
3073
+ max-height: 400px;
3074
+ padding: 15px;
3075
+ }
3076
+ .modal-form {
3077
+ margin-bottom: 0;
3078
+ }
3079
+ .modal-footer {
3080
+ padding: 14px 15px 15px;
3081
+ margin-bottom: 0;
3082
+ text-align: right;
3083
+ background-color: #f5f5f5;
3084
+ border-top: 1px solid #ddd;
3085
+ -webkit-border-radius: 0 0 6px 6px;
3086
+ -moz-border-radius: 0 0 6px 6px;
3087
+ border-radius: 0 0 6px 6px;
3088
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
3089
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
3090
+ box-shadow: inset 0 1px 0 #ffffff;
3091
+ *zoom: 1;
3092
+ }
3093
+ .modal-footer:before,
3094
+ .modal-footer:after {
3095
+ display: table;
3096
+ content: "";
3097
+ }
3098
+ .modal-footer:after {
3099
+ clear: both;
3100
+ }
3101
+ .modal-footer .btn + .btn {
3102
+ margin-left: 5px;
3103
+ margin-bottom: 0;
3104
+ }
3105
+ .modal-footer .btn-group .btn + .btn {
3106
+ margin-left: -1px;
3107
+ }
3108
+ .tooltip {
3109
+ position: absolute;
3110
+ z-index: 1020;
3111
+ display: block;
3112
+ visibility: visible;
3113
+ padding: 5px;
3114
+ font-size: 11px;
3115
+ opacity: 0;
3116
+ filter: alpha(opacity=0);
3117
+ }
3118
+ .tooltip.in {
3119
+ opacity: 0.8;
3120
+ filter: alpha(opacity=80);
3121
+ }
3122
+ .tooltip.top {
3123
+ margin-top: -2px;
3124
+ }
3125
+ .tooltip.right {
3126
+ margin-left: 2px;
3127
+ }
3128
+ .tooltip.bottom {
3129
+ margin-top: 2px;
3130
+ }
3131
+ .tooltip.left {
3132
+ margin-left: -2px;
3133
+ }
3134
+ .tooltip.top .tooltip-arrow {
3135
+ bottom: 0;
3136
+ left: 50%;
3137
+ margin-left: -5px;
3138
+ border-left: 5px solid transparent;
3139
+ border-right: 5px solid transparent;
3140
+ border-top: 5px solid #000000;
3141
+ }
3142
+ .tooltip.left .tooltip-arrow {
3143
+ top: 50%;
3144
+ right: 0;
3145
+ margin-top: -5px;
3146
+ border-top: 5px solid transparent;
3147
+ border-bottom: 5px solid transparent;
3148
+ border-left: 5px solid #000000;
3149
+ }
3150
+ .tooltip.bottom .tooltip-arrow {
3151
+ top: 0;
3152
+ left: 50%;
3153
+ margin-left: -5px;
3154
+ border-left: 5px solid transparent;
3155
+ border-right: 5px solid transparent;
3156
+ border-bottom: 5px solid #000000;
3157
+ }
3158
+ .tooltip.right .tooltip-arrow {
3159
+ top: 50%;
3160
+ left: 0;
3161
+ margin-top: -5px;
3162
+ border-top: 5px solid transparent;
3163
+ border-bottom: 5px solid transparent;
3164
+ border-right: 5px solid #000000;
3165
+ }
3166
+ .tooltip-inner {
3167
+ max-width: 200px;
3168
+ padding: 3px 8px;
3169
+ color: #ffffff;
3170
+ text-align: center;
3171
+ text-decoration: none;
3172
+ background-color: #000000;
3173
+ -webkit-border-radius: 4px;
3174
+ -moz-border-radius: 4px;
3175
+ border-radius: 4px;
3176
+ }
3177
+ .tooltip-arrow {
3178
+ position: absolute;
3179
+ width: 0;
3180
+ height: 0;
3181
+ }
3182
+ .popover {
3183
+ position: absolute;
3184
+ top: 0;
3185
+ left: 0;
3186
+ z-index: 1010;
3187
+ display: none;
3188
+ padding: 5px;
3189
+ }
3190
+ .popover.top {
3191
+ margin-top: -5px;
3192
+ }
3193
+ .popover.right {
3194
+ margin-left: 5px;
3195
+ }
3196
+ .popover.bottom {
3197
+ margin-top: 5px;
3198
+ }
3199
+ .popover.left {
3200
+ margin-left: -5px;
3201
+ }
3202
+ .popover.top .arrow {
3203
+ bottom: 0;
3204
+ left: 50%;
3205
+ margin-left: -5px;
3206
+ border-left: 5px solid transparent;
3207
+ border-right: 5px solid transparent;
3208
+ border-top: 5px solid #000000;
3209
+ }
3210
+ .popover.right .arrow {
3211
+ top: 50%;
3212
+ left: 0;
3213
+ margin-top: -5px;
3214
+ border-top: 5px solid transparent;
3215
+ border-bottom: 5px solid transparent;
3216
+ border-right: 5px solid #000000;
3217
+ }
3218
+ .popover.bottom .arrow {
3219
+ top: 0;
3220
+ left: 50%;
3221
+ margin-left: -5px;
3222
+ border-left: 5px solid transparent;
3223
+ border-right: 5px solid transparent;
3224
+ border-bottom: 5px solid #000000;
3225
+ }
3226
+ .popover.left .arrow {
3227
+ top: 50%;
3228
+ right: 0;
3229
+ margin-top: -5px;
3230
+ border-top: 5px solid transparent;
3231
+ border-bottom: 5px solid transparent;
3232
+ border-left: 5px solid #000000;
3233
+ }
3234
+ .popover .arrow {
3235
+ position: absolute;
3236
+ width: 0;
3237
+ height: 0;
3238
+ }
3239
+ .popover-inner {
3240
+ padding: 3px;
3241
+ width: 280px;
3242
+ overflow: hidden;
3243
+ background: #000000;
3244
+ background: rgba(0, 0, 0, 0.8);
3245
+ -webkit-border-radius: 6px;
3246
+ -moz-border-radius: 6px;
3247
+ border-radius: 6px;
3248
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3249
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3250
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
3251
+ }
3252
+ .popover-title {
3253
+ padding: 9px 15px;
3254
+ line-height: 1;
3255
+ background-color: #f5f5f5;
3256
+ border-bottom: 1px solid #eee;
3257
+ -webkit-border-radius: 3px 3px 0 0;
3258
+ -moz-border-radius: 3px 3px 0 0;
3259
+ border-radius: 3px 3px 0 0;
3260
+ }
3261
+ .popover-content {
3262
+ padding: 14px;
3263
+ background-color: #ffffff;
3264
+ -webkit-border-radius: 0 0 3px 3px;
3265
+ -moz-border-radius: 0 0 3px 3px;
3266
+ border-radius: 0 0 3px 3px;
3267
+ -webkit-background-clip: padding-box;
3268
+ -moz-background-clip: padding-box;
3269
+ background-clip: padding-box;
3270
+ }
3271
+ .popover-content p,
3272
+ .popover-content ul,
3273
+ .popover-content ol {
3274
+ margin-bottom: 0;
3275
+ }
3276
+ .thumbnails {
3277
+ margin-left: -20px;
3278
+ list-style: none;
3279
+ *zoom: 1;
3280
+ }
3281
+ .thumbnails:before,
3282
+ .thumbnails:after {
3283
+ display: table;
3284
+ content: "";
3285
+ }
3286
+ .thumbnails:after {
3287
+ clear: both;
3288
+ }
3289
+ .row-fluid .thumbnails {
3290
+ margin-left: 0;
3291
+ }
3292
+ .thumbnails > li {
3293
+ float: left;
3294
+ margin-bottom: 21px;
3295
+ margin-left: 20px;
3296
+ }
3297
+ .thumbnail {
3298
+ display: block;
3299
+ padding: 4px;
3300
+ line-height: 1;
3301
+ border: 1px solid #ddd;
3302
+ -webkit-border-radius: 4px;
3303
+ -moz-border-radius: 4px;
3304
+ border-radius: 4px;
3305
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3306
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3307
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3308
+ }
3309
+ a.thumbnail:hover {
3310
+ border-color: #9d261d;
3311
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3312
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3313
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3314
+ }
3315
+ .thumbnail > img {
3316
+ display: block;
3317
+ max-width: 100%;
3318
+ margin-left: auto;
3319
+ margin-right: auto;
3320
+ }
3321
+ .thumbnail .caption {
3322
+ padding: 9px;
3323
+ }
3324
+ .label,
3325
+ .badge {
3326
+ font-size: 11.844px;
3327
+ font-weight: bold;
3328
+ line-height: 14px;
3329
+ color: #ffffff;
3330
+ vertical-align: baseline;
3331
+ white-space: nowrap;
3332
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3333
+ background-color: #999999;
3334
+ }
3335
+ .label {
3336
+ padding: 1px 4px 2px;
3337
+ -webkit-border-radius: 3px;
3338
+ -moz-border-radius: 3px;
3339
+ border-radius: 3px;
3340
+ }
3341
+ .badge {
3342
+ padding: 1px 9px 2px;
3343
+ -webkit-border-radius: 9px;
3344
+ -moz-border-radius: 9px;
3345
+ border-radius: 9px;
3346
+ }
3347
+ a.label:hover,
3348
+ a.badge:hover {
3349
+ color: #ffffff;
3350
+ text-decoration: none;
3351
+ cursor: pointer;
3352
+ }
3353
+ .label-important,
3354
+ .badge-important {
3355
+ background-color: #b94a48;
3356
+ }
3357
+ .label-important[href],
3358
+ .badge-important[href] {
3359
+ background-color: #953b39;
3360
+ }
3361
+ .label-warning,
3362
+ .badge-warning {
3363
+ background-color: #f89406;
3364
+ }
3365
+ .label-warning[href],
3366
+ .badge-warning[href] {
3367
+ background-color: #c67605;
3368
+ }
3369
+ .label-success,
3370
+ .badge-success {
3371
+ background-color: #468847;
3372
+ }
3373
+ .label-success[href],
3374
+ .badge-success[href] {
3375
+ background-color: #356635;
3376
+ }
3377
+ .label-info,
3378
+ .badge-info {
3379
+ background-color: #3a87ad;
3380
+ }
3381
+ .label-info[href],
3382
+ .badge-info[href] {
3383
+ background-color: #2d6987;
3384
+ }
3385
+ .label-inverse,
3386
+ .badge-inverse {
3387
+ background-color: #333333;
3388
+ }
3389
+ .label-inverse[href],
3390
+ .badge-inverse[href] {
3391
+ background-color: #1a1a1a;
3392
+ }
3393
+ @-webkit-keyframes progress-bar-stripes {
3394
+ from {
3395
+ background-position: 40px 0;
3396
+ }
3397
+ to {
3398
+ background-position: 0 0;
3399
+ }
3400
+ }
3401
+ @-moz-keyframes progress-bar-stripes {
3402
+ from {
3403
+ background-position: 40px 0;
3404
+ }
3405
+ to {
3406
+ background-position: 0 0;
3407
+ }
3408
+ }
3409
+ @-ms-keyframes progress-bar-stripes {
3410
+ from {
3411
+ background-position: 40px 0;
3412
+ }
3413
+ to {
3414
+ background-position: 0 0;
3415
+ }
3416
+ }
3417
+ @-o-keyframes progress-bar-stripes {
3418
+ from {
3419
+ background-position: 0 0;
3420
+ }
3421
+ to {
3422
+ background-position: 40px 0;
3423
+ }
3424
+ }
3425
+ @keyframes progress-bar-stripes {
3426
+ from {
3427
+ background-position: 40px 0;
3428
+ }
3429
+ to {
3430
+ background-position: 0 0;
3431
+ }
3432
+ }
3433
+ .progress {
3434
+ overflow: hidden;
3435
+ height: 18px;
3436
+ margin-bottom: 18px;
3437
+ background-color: #f7f7f7;
3438
+ background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
3439
+ background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
3440
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
3441
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
3442
+ background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
3443
+ background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
3444
+ background-repeat: repeat-x;
3445
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
3446
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3447
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3448
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3449
+ -webkit-border-radius: 4px;
3450
+ -moz-border-radius: 4px;
3451
+ border-radius: 4px;
3452
+ }
3453
+ .progress .bar {
3454
+ width: 0%;
3455
+ height: 18px;
3456
+ color: #ffffff;
3457
+ font-size: 12px;
3458
+ text-align: center;
3459
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3460
+ background-color: #0e90d2;
3461
+ background-image: -moz-linear-gradient(top, #149bdf, #0480be);
3462
+ background-image: -ms-linear-gradient(top, #149bdf, #0480be);
3463
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
3464
+ background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
3465
+ background-image: -o-linear-gradient(top, #149bdf, #0480be);
3466
+ background-image: linear-gradient(top, #149bdf, #0480be);
3467
+ background-repeat: repeat-x;
3468
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
3469
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3470
+ -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3471
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3472
+ -webkit-box-sizing: border-box;
3473
+ -moz-box-sizing: border-box;
3474
+ -ms-box-sizing: border-box;
3475
+ box-sizing: border-box;
3476
+ -webkit-transition: width 0.6s ease;
3477
+ -moz-transition: width 0.6s ease;
3478
+ -ms-transition: width 0.6s ease;
3479
+ -o-transition: width 0.6s ease;
3480
+ transition: width 0.6s ease;
3481
+ }
3482
+ .progress-striped .bar {
3483
+ background-color: #149bdf;
3484
+ 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));
3485
+ 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);
3486
+ 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);
3487
+ background-image: -ms-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);
3488
+ background-image: -o-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);
3489
+ 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);
3490
+ -webkit-background-size: 40px 40px;
3491
+ -moz-background-size: 40px 40px;
3492
+ -o-background-size: 40px 40px;
3493
+ background-size: 40px 40px;
3494
+ }
3495
+ .progress.active .bar {
3496
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
3497
+ -moz-animation: progress-bar-stripes 2s linear infinite;
3498
+ -ms-animation: progress-bar-stripes 2s linear infinite;
3499
+ -o-animation: progress-bar-stripes 2s linear infinite;
3500
+ animation: progress-bar-stripes 2s linear infinite;
3501
+ }
3502
+ .progress-danger .bar {
3503
+ background-color: #dd514c;
3504
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
3505
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
3506
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
3507
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
3508
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
3509
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
3510
+ background-repeat: repeat-x;
3511
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
3512
+ }
3513
+ .progress-danger.progress-striped .bar {
3514
+ background-color: #ee5f5b;
3515
+ 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));
3516
+ 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);
3517
+ 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);
3518
+ background-image: -ms-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);
3519
+ background-image: -o-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);
3520
+ 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);
3521
+ }
3522
+ .progress-success .bar {
3523
+ background-color: #5eb95e;
3524
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
3525
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
3526
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
3527
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
3528
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
3529
+ background-image: linear-gradient(top, #62c462, #57a957);
3530
+ background-repeat: repeat-x;
3531
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
3532
+ }
3533
+ .progress-success.progress-striped .bar {
3534
+ background-color: #62c462;
3535
+ 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));
3536
+ 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);
3537
+ 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);
3538
+ background-image: -ms-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);
3539
+ background-image: -o-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);
3540
+ 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);
3541
+ }
3542
+ .progress-info .bar {
3543
+ background-color: #4bb1cf;
3544
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
3545
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
3546
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
3547
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
3548
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
3549
+ background-image: linear-gradient(top, #5bc0de, #339bb9);
3550
+ background-repeat: repeat-x;
3551
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
3552
+ }
3553
+ .progress-info.progress-striped .bar {
3554
+ background-color: #5bc0de;
3555
+ 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));
3556
+ 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);
3557
+ 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);
3558
+ background-image: -ms-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);
3559
+ background-image: -o-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);
3560
+ 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);
3561
+ }
3562
+ .progress-warning .bar {
3563
+ background-color: #faa732;
3564
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406);
3565
+ background-image: -ms-linear-gradient(top, #fbb450, #f89406);
3566
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
3567
+ background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
3568
+ background-image: -o-linear-gradient(top, #fbb450, #f89406);
3569
+ background-image: linear-gradient(top, #fbb450, #f89406);
3570
+ background-repeat: repeat-x;
3571
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
3572
+ }
3573
+ .progress-warning.progress-striped .bar {
3574
+ background-color: #fbb450;
3575
+ 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));
3576
+ 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);
3577
+ 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);
3578
+ background-image: -ms-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);
3579
+ background-image: -o-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);
3580
+ 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);
3581
+ }
3582
+ .accordion {
3583
+ margin-bottom: 21px;
3584
+ }
3585
+ .accordion-group {
3586
+ margin-bottom: 2px;
3587
+ border: 1px solid #e5e5e5;
3588
+ -webkit-border-radius: 4px;
3589
+ -moz-border-radius: 4px;
3590
+ border-radius: 4px;
3591
+ }
3592
+ .accordion-heading {
3593
+ border-bottom: 0;
3594
+ }
3595
+ .accordion-heading .accordion-toggle {
3596
+ display: block;
3597
+ padding: 8px 15px;
3598
+ }
3599
+ .accordion-toggle {
3600
+ cursor: pointer;
3601
+ }
3602
+ .accordion-inner {
3603
+ padding: 9px 15px;
3604
+ border-top: 1px solid #e5e5e5;
3605
+ }
3606
+ .carousel {
3607
+ position: relative;
3608
+ margin-bottom: 21px;
3609
+ line-height: 1;
3610
+ }
3611
+ .carousel-inner {
3612
+ overflow: hidden;
3613
+ width: 100%;
3614
+ position: relative;
3615
+ }
3616
+ .carousel .item {
3617
+ display: none;
3618
+ position: relative;
3619
+ -webkit-transition: 0.6s ease-in-out left;
3620
+ -moz-transition: 0.6s ease-in-out left;
3621
+ -ms-transition: 0.6s ease-in-out left;
3622
+ -o-transition: 0.6s ease-in-out left;
3623
+ transition: 0.6s ease-in-out left;
3624
+ }
3625
+ .carousel .item > img {
3626
+ display: block;
3627
+ line-height: 1;
3628
+ }
3629
+ .carousel .active,
3630
+ .carousel .next,
3631
+ .carousel .prev {
3632
+ display: block;
3633
+ }
3634
+ .carousel .active {
3635
+ left: 0;
3636
+ }
3637
+ .carousel .next,
3638
+ .carousel .prev {
3639
+ position: absolute;
3640
+ top: 0;
3641
+ width: 100%;
3642
+ }
3643
+ .carousel .next {
3644
+ left: 100%;
3645
+ }
3646
+ .carousel .prev {
3647
+ left: -100%;
3648
+ }
3649
+ .carousel .next.left,
3650
+ .carousel .prev.right {
3651
+ left: 0;
3652
+ }
3653
+ .carousel .active.left {
3654
+ left: -100%;
3655
+ }
3656
+ .carousel .active.right {
3657
+ left: 100%;
3658
+ }
3659
+ .carousel-control {
3660
+ position: absolute;
3661
+ top: 40%;
3662
+ left: 15px;
3663
+ width: 40px;
3664
+ height: 40px;
3665
+ margin-top: -20px;
3666
+ font-size: 60px;
3667
+ font-weight: 100;
3668
+ line-height: 30px;
3669
+ color: #ffffff;
3670
+ text-align: center;
3671
+ background: #222222;
3672
+ border: 3px solid #ffffff;
3673
+ -webkit-border-radius: 23px;
3674
+ -moz-border-radius: 23px;
3675
+ border-radius: 23px;
3676
+ opacity: 0.5;
3677
+ filter: alpha(opacity=50);
3678
+ }
3679
+ .carousel-control.right {
3680
+ left: auto;
3681
+ right: 15px;
3682
+ }
3683
+ .carousel-control:hover {
3684
+ color: #ffffff;
3685
+ text-decoration: none;
3686
+ opacity: 0.9;
3687
+ filter: alpha(opacity=90);
3688
+ }
3689
+ .carousel-caption {
3690
+ position: absolute;
3691
+ left: 0;
3692
+ right: 0;
3693
+ bottom: 0;
3694
+ padding: 10px 15px 5px;
3695
+ background: #333333;
3696
+ background: rgba(0, 0, 0, 0.75);
3697
+ }
3698
+ .carousel-caption h4,
3699
+ .carousel-caption p {
3700
+ color: #ffffff;
3701
+ }
3702
+ .hero-unit {
3703
+ padding: 60px;
3704
+ margin-bottom: 30px;
3705
+ background-color: #eeeeee;
3706
+ -webkit-border-radius: 6px;
3707
+ -moz-border-radius: 6px;
3708
+ border-radius: 6px;
3709
+ }
3710
+ .hero-unit h1 {
3711
+ margin-bottom: 0;
3712
+ font-size: 60px;
3713
+ line-height: 1;
3714
+ color: inherit;
3715
+ letter-spacing: -1px;
3716
+ }
3717
+ .hero-unit p {
3718
+ font-size: 18px;
3719
+ font-weight: 200;
3720
+ line-height: 31.5px;
3721
+ color: inherit;
3722
+ }
3723
+ .pull-right {
3724
+ float: right;
3725
+ }
3726
+ .pull-left {
3727
+ float: left;
3728
+ }
3729
+ .hide {
3730
+ display: none;
3731
+ }
3732
+ .show {
3733
+ display: block;
3734
+ }
3735
+ .invisible {
3736
+ visibility: hidden;
3737
+ }
3738
+ @font-face {
3739
+ font-family: 'museo-slab';
3740
+ src: url('../font/museo_slab_300-webfont.eot');
3741
+ src: url('../font/museo_slab_300-webfont.eot?#iefix') format('embedded-opentype'), url('../font/museo_slab_300-webfont.ttf') format('truetype');
3742
+ font-weight: normal;
3743
+ font-style: normal;
3744
+ }
3745
+ @font-face {
3746
+ font-family: 'museo-slab';
3747
+ src: url('../font/museo_slab_500-webfont.eot');
3748
+ src: url('../font/museo_slab_500-webfont.eot?#iefix') format('embedded-opentype'), url('../font/museo_slab_500-webfont.ttf') format('truetype');
3749
+ font-weight: bold;
3750
+ font-style: normal;
3751
+ }
3752
+ @font-face {
3753
+ font-family: 'proxima-nova';
3754
+ src: url('../font/proximanova-webfont.eot');
3755
+ src: url('../font/proximanova-webfont.eot?#iefix') format('embedded-opentype'), url('../font/proximanova-webfont.ttf') format('truetype');
3756
+ font-weight: normal;
3757
+ font-style: normal;
3758
+ }
3759
+ /* Font Awesome
3760
+ the iconic font designed for use with Twitter Bootstrap
3761
+ -------------------------------------------------------
3762
+ The full suite of pictographic icons, examples, and documentation
3763
+ can be found at: http://fortawesome.github.com/Font-Awesome/
3764
+
3765
+ License
3766
+ -------------------------------------------------------
3767
+ The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
3768
+ http://creativecommons.org/licenses/by/3.0/ A mention of
3769
+ 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
3770
+ source code is considered acceptable attribution (most common on the web).
3771
+ If human readable source code is not available to the end user, a mention in
3772
+ an 'About' or 'Credits' screen is considered acceptable (most common in desktop
3773
+ or mobile software).
3774
+
3775
+ Contact
3776
+ -------------------------------------------------------
3777
+ Email: dave@davegandy.com
3778
+ Twitter: http://twitter.com/fortaweso_me
3779
+ Work: Lead Product Designer @ http://kyruus.com
3780
+
3781
+ */
3782
+ @font-face {
3783
+ font-family: 'FontAwesome';
3784
+ src: url('../font/fontawesome-webfont.eot');
3785
+ src: url('../font/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');
3786
+ font-weight: normal;
3787
+ font-style: normal;
3788
+ }
3789
+ /* Font Awesome styles
3790
+ ------------------------------------------------------- */
3791
+ [class^="icon-"]:before,
3792
+ [class*=" icon-"]:before {
3793
+ font-family: FontAwesome;
3794
+ font-weight: normal;
3795
+ font-style: normal;
3796
+ display: inline-block;
3797
+ text-decoration: inherit;
3798
+ }
3799
+ a [class^="icon-"],
3800
+ a [class*=" icon-"] {
3801
+ display: inline-block;
3802
+ text-decoration: inherit;
3803
+ }
3804
+ /* makes the font 33% larger relative to the icon container */
3805
+ .icon-large:before {
3806
+ vertical-align: middle;
3807
+ font-size: 1.3333333333333333em;
3808
+ }
3809
+ .btn [class^="icon-"],
3810
+ .nav-tabs [class^="icon-"],
3811
+ .btn [class*=" icon-"],
3812
+ .nav-tabs [class*=" icon-"] {
3813
+ /* keeps button heights with and without icons the same */
3814
+
3815
+ line-height: .9em;
3816
+ }
3817
+ li [class^="icon-"],
3818
+ li [class*=" icon-"] {
3819
+ display: inline-block;
3820
+ width: 1.25em;
3821
+ text-align: center;
3822
+ }
3823
+ li .icon-large:before,
3824
+ li .icon-large:before {
3825
+ /* 1.5 increased font size for icon-large * 1.25 width */
3826
+
3827
+ width: 1.875em;
3828
+ }
3829
+ ul.icons {
3830
+ list-style-type: none;
3831
+ margin-left: 2em;
3832
+ text-indent: -0.8em;
3833
+ }
3834
+ ul.icons li [class^="icon-"],
3835
+ ul.icons li [class*=" icon-"] {
3836
+ width: .8em;
3837
+ }
3838
+ ul.icons li .icon-large:before,
3839
+ ul.icons li .icon-large:before {
3840
+ /* 1.5 increased font size for icon-large * 1.25 width */
3841
+
3842
+ vertical-align: initial;
3843
+ }
3844
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
3845
+ readers do not read off random characters that represent icons */
3846
+ .icon-glass:before {
3847
+ content: "\f000";
3848
+ }
3849
+ .icon-music:before {
3850
+ content: "\f001";
3851
+ }
3852
+ .icon-search:before {
3853
+ content: "\f002";
3854
+ }
3855
+ .icon-envelope:before {
3856
+ content: "\f003";
3857
+ }
3858
+ .icon-heart:before {
3859
+ content: "\f004";
3860
+ }
3861
+ .icon-star:before {
3862
+ content: "\f005";
3863
+ }
3864
+ .icon-star-empty:before {
3865
+ content: "\f006";
3866
+ }
3867
+ .icon-user:before {
3868
+ content: "\f007";
3869
+ }
3870
+ .icon-film:before {
3871
+ content: "\f008";
3872
+ }
3873
+ .icon-th-large:before {
3874
+ content: "\f009";
3875
+ }
3876
+ .icon-th:before {
3877
+ content: "\f00a";
3878
+ }
3879
+ .icon-th-list:before {
3880
+ content: "\f00b";
3881
+ }
3882
+ .icon-ok:before {
3883
+ content: "\f00c";
3884
+ }
3885
+ .icon-remove:before {
3886
+ content: "\f00d";
3887
+ }
3888
+ .icon-zoom-in:before {
3889
+ content: "\f00e";
3890
+ }
3891
+ .icon-zoom-out:before {
3892
+ content: "\f010";
3893
+ }
3894
+ .icon-off:before {
3895
+ content: "\f011";
3896
+ }
3897
+ .icon-signal:before {
3898
+ content: "\f012";
3899
+ }
3900
+ .icon-cog:before {
3901
+ content: "\f013";
3902
+ }
3903
+ .icon-trash:before {
3904
+ content: "\f014";
3905
+ }
3906
+ .icon-home:before {
3907
+ content: "\f015";
3908
+ }
3909
+ .icon-file:before {
3910
+ content: "\f016";
3911
+ }
3912
+ .icon-time:before {
3913
+ content: "\f017";
3914
+ }
3915
+ .icon-road:before {
3916
+ content: "\f018";
3917
+ }
3918
+ .icon-download-alt:before {
3919
+ content: "\f019";
3920
+ }
3921
+ .icon-download:before {
3922
+ content: "\f01a";
3923
+ }
3924
+ .icon-upload:before {
3925
+ content: "\f01b";
3926
+ }
3927
+ .icon-inbox:before {
3928
+ content: "\f01c";
3929
+ }
3930
+ .icon-play-circle:before {
3931
+ content: "\f01d";
3932
+ }
3933
+ .icon-repeat:before {
3934
+ content: "\f01e";
3935
+ }
3936
+ /* \f020 doesn't work in Safari. all shifted one down */
3937
+ .icon-refresh:before {
3938
+ content: "\f021";
3939
+ }
3940
+ .icon-list-alt:before {
3941
+ content: "\f022";
3942
+ }
3943
+ .icon-lock:before {
3944
+ content: "\f023";
3945
+ }
3946
+ .icon-flag:before {
3947
+ content: "\f024";
3948
+ }
3949
+ .icon-headphones:before {
3950
+ content: "\f025";
3951
+ }
3952
+ .icon-volume-off:before {
3953
+ content: "\f026";
3954
+ }
3955
+ .icon-volume-down:before {
3956
+ content: "\f027";
3957
+ }
3958
+ .icon-volume-up:before {
3959
+ content: "\f028";
3960
+ }
3961
+ .icon-qrcode:before {
3962
+ content: "\f029";
3963
+ }
3964
+ .icon-barcode:before {
3965
+ content: "\f02a";
3966
+ }
3967
+ .icon-tag:before {
3968
+ content: "\f02b";
3969
+ }
3970
+ .icon-tags:before {
3971
+ content: "\f02c";
3972
+ }
3973
+ .icon-book:before {
3974
+ content: "\f02d";
3975
+ }
3976
+ .icon-bookmark:before {
3977
+ content: "\f02e";
3978
+ }
3979
+ .icon-print:before {
3980
+ content: "\f02f";
3981
+ }
3982
+ .icon-camera:before {
3983
+ content: "\f030";
3984
+ }
3985
+ .icon-font:before {
3986
+ content: "\f031";
3987
+ }
3988
+ .icon-bold:before {
3989
+ content: "\f032";
3990
+ }
3991
+ .icon-italic:before {
3992
+ content: "\f033";
3993
+ }
3994
+ .icon-text-height:before {
3995
+ content: "\f034";
3996
+ }
3997
+ .icon-text-width:before {
3998
+ content: "\f035";
3999
+ }
4000
+ .icon-align-left:before {
4001
+ content: "\f036";
4002
+ }
4003
+ .icon-align-center:before {
4004
+ content: "\f037";
4005
+ }
4006
+ .icon-align-right:before {
4007
+ content: "\f038";
4008
+ }
4009
+ .icon-align-justify:before {
4010
+ content: "\f039";
4011
+ }
4012
+ .icon-list:before {
4013
+ content: "\f03a";
4014
+ }
4015
+ .icon-indent-left:before {
4016
+ content: "\f03b";
4017
+ }
4018
+ .icon-indent-right:before {
4019
+ content: "\f03c";
4020
+ }
4021
+ .icon-facetime-video:before {
4022
+ content: "\f03d";
4023
+ }
4024
+ .icon-picture:before {
4025
+ content: "\f03e";
4026
+ }
4027
+ .icon-pencil:before {
4028
+ content: "\f040";
4029
+ }
4030
+ .icon-map-marker:before {
4031
+ content: "\f041";
4032
+ }
4033
+ .icon-adjust:before {
4034
+ content: "\f042";
4035
+ }
4036
+ .icon-tint:before {
4037
+ content: "\f043";
4038
+ }
4039
+ .icon-edit:before {
4040
+ content: "\f044";
4041
+ }
4042
+ .icon-share:before {
4043
+ content: "\f045";
4044
+ }
4045
+ .icon-check:before {
4046
+ content: "\f046";
4047
+ }
4048
+ .icon-move:before {
4049
+ content: "\f047";
4050
+ }
4051
+ .icon-step-backward:before {
4052
+ content: "\f048";
4053
+ }
4054
+ .icon-fast-backward:before {
4055
+ content: "\f049";
4056
+ }
4057
+ .icon-backward:before {
4058
+ content: "\f04a";
4059
+ }
4060
+ .icon-play:before {
4061
+ content: "\f04b";
4062
+ }
4063
+ .icon-pause:before {
4064
+ content: "\f04c";
4065
+ }
4066
+ .icon-stop:before {
4067
+ content: "\f04d";
4068
+ }
4069
+ .icon-forward:before {
4070
+ content: "\f04e";
4071
+ }
4072
+ .icon-fast-forward:before {
4073
+ content: "\f050";
4074
+ }
4075
+ .icon-step-forward:before {
4076
+ content: "\f051";
4077
+ }
4078
+ .icon-eject:before {
4079
+ content: "\f052";
4080
+ }
4081
+ .icon-chevron-left:before {
4082
+ content: "\f053";
4083
+ }
4084
+ .icon-chevron-right:before {
4085
+ content: "\f054";
4086
+ }
4087
+ .icon-plus-sign:before {
4088
+ content: "\f055";
4089
+ }
4090
+ .icon-minus-sign:before {
4091
+ content: "\f056";
4092
+ }
4093
+ .icon-remove-sign:before {
4094
+ content: "\f057";
4095
+ }
4096
+ .icon-ok-sign:before {
4097
+ content: "\f058";
4098
+ }
4099
+ .icon-question-sign:before {
4100
+ content: "\f059";
4101
+ }
4102
+ .icon-info-sign:before {
4103
+ content: "\f05a";
4104
+ }
4105
+ .icon-screenshot:before {
4106
+ content: "\f05b";
4107
+ }
4108
+ .icon-remove-circle:before {
4109
+ content: "\f05c";
4110
+ }
4111
+ .icon-ok-circle:before {
4112
+ content: "\f05d";
4113
+ }
4114
+ .icon-ban-circle:before {
4115
+ content: "\f05e";
4116
+ }
4117
+ .icon-arrow-left:before {
4118
+ content: "\f060";
4119
+ }
4120
+ .icon-arrow-right:before {
4121
+ content: "\f061";
4122
+ }
4123
+ .icon-arrow-up:before {
4124
+ content: "\f062";
4125
+ }
4126
+ .icon-arrow-down:before {
4127
+ content: "\f063";
4128
+ }
4129
+ .icon-share-alt:before {
4130
+ content: "\f064";
4131
+ }
4132
+ .icon-resize-full:before {
4133
+ content: "\f065";
4134
+ }
4135
+ .icon-resize-small:before {
4136
+ content: "\f066";
4137
+ }
4138
+ .icon-plus:before {
4139
+ content: "\f067";
4140
+ }
4141
+ .icon-minus:before {
4142
+ content: "\f068";
4143
+ }
4144
+ .icon-asterisk:before {
4145
+ content: "\f069";
4146
+ }
4147
+ .icon-exclamation-sign:before {
4148
+ content: "\f06a";
4149
+ }
4150
+ .icon-gift:before {
4151
+ content: "\f06b";
4152
+ }
4153
+ .icon-leaf:before {
4154
+ content: "\f06c";
4155
+ }
4156
+ .icon-fire:before {
4157
+ content: "\f06d";
4158
+ }
4159
+ .icon-eye-open:before {
4160
+ content: "\f06e";
4161
+ }
4162
+ .icon-eye-close:before {
4163
+ content: "\f070";
4164
+ }
4165
+ .icon-warning-sign:before {
4166
+ content: "\f071";
4167
+ }
4168
+ .icon-plane:before {
4169
+ content: "\f072";
4170
+ }
4171
+ .icon-calendar:before {
4172
+ content: "\f073";
4173
+ }
4174
+ .icon-random:before {
4175
+ content: "\f074";
4176
+ }
4177
+ .icon-comment:before {
4178
+ content: "\f075";
4179
+ }
4180
+ .icon-magnet:before {
4181
+ content: "\f076";
4182
+ }
4183
+ .icon-chevron-up:before {
4184
+ content: "\f077";
4185
+ }
4186
+ .icon-chevron-down:before {
4187
+ content: "\f078";
4188
+ }
4189
+ .icon-retweet:before {
4190
+ content: "\f079";
4191
+ }
4192
+ .icon-shopping-cart:before {
4193
+ content: "\f07a";
4194
+ }
4195
+ .icon-folder-close:before {
4196
+ content: "\f07b";
4197
+ }
4198
+ .icon-folder-open:before {
4199
+ content: "\f07c";
4200
+ }
4201
+ .icon-resize-vertical:before {
4202
+ content: "\f07d";
4203
+ }
4204
+ .icon-resize-horizontal:before {
4205
+ content: "\f07e";
4206
+ }
4207
+ .icon-bar-chart:before {
4208
+ content: "\f080";
4209
+ }
4210
+ .icon-twitter-sign:before {
4211
+ content: "\f081";
4212
+ }
4213
+ .icon-facebook-sign:before {
4214
+ content: "\f082";
4215
+ }
4216
+ .icon-camera-retro:before {
4217
+ content: "\f083";
4218
+ }
4219
+ .icon-key:before {
4220
+ content: "\f084";
4221
+ }
4222
+ .icon-cogs:before {
4223
+ content: "\f085";
4224
+ }
4225
+ .icon-comments:before {
4226
+ content: "\f086";
4227
+ }
4228
+ .icon-thumbs-up:before {
4229
+ content: "\f087";
4230
+ }
4231
+ .icon-thumbs-down:before {
4232
+ content: "\f088";
4233
+ }
4234
+ .icon-star-half:before {
4235
+ content: "\f089";
4236
+ }
4237
+ .icon-heart-empty:before {
4238
+ content: "\f08a";
4239
+ }
4240
+ .icon-signout:before {
4241
+ content: "\f08b";
4242
+ }
4243
+ .icon-linkedin-sign:before {
4244
+ content: "\f08c";
4245
+ }
4246
+ .icon-pushpin:before {
4247
+ content: "\f08d";
4248
+ }
4249
+ .icon-external-link:before {
4250
+ content: "\f08e";
4251
+ }
4252
+ .icon-signin:before {
4253
+ content: "\f090";
4254
+ }
4255
+ .icon-trophy:before {
4256
+ content: "\f091";
4257
+ }
4258
+ .icon-github-sign:before {
4259
+ content: "\f092";
4260
+ }
4261
+ .icon-upload-alt:before {
4262
+ content: "\f093";
4263
+ }
4264
+ .icon-lemon:before {
4265
+ content: "\f094";
4266
+ }
4267
+ .icon-phone:before {
4268
+ content: "\f095";
4269
+ }
4270
+ .icon-check-empty:before {
4271
+ content: "\f096";
4272
+ }
4273
+ .icon-bookmark-empty:before {
4274
+ content: "\f097";
4275
+ }
4276
+ .icon-phone-sign:before {
4277
+ content: "\f098";
4278
+ }
4279
+ .icon-twitter:before {
4280
+ content: "\f099";
4281
+ }
4282
+ .icon-facebook:before {
4283
+ content: "\f09a";
4284
+ }
4285
+ .icon-github:before {
4286
+ content: "\f09b";
4287
+ }
4288
+ .icon-unlock:before {
4289
+ content: "\f09c";
4290
+ }
4291
+ .icon-credit-card:before {
4292
+ content: "\f09d";
4293
+ }
4294
+ .icon-rss:before {
4295
+ content: "\f09e";
4296
+ }
4297
+ .icon-hdd:before {
4298
+ content: "\f0a0";
4299
+ }
4300
+ .icon-bullhorn:before {
4301
+ content: "\f0a1";
4302
+ }
4303
+ .icon-bell:before {
4304
+ content: "\f0a2";
4305
+ }
4306
+ .icon-certificate:before {
4307
+ content: "\f0a3";
4308
+ }
4309
+ .icon-hand-right:before {
4310
+ content: "\f0a4";
4311
+ }
4312
+ .icon-hand-left:before {
4313
+ content: "\f0a5";
4314
+ }
4315
+ .icon-hand-up:before {
4316
+ content: "\f0a6";
4317
+ }
4318
+ .icon-hand-down:before {
4319
+ content: "\f0a7";
4320
+ }
4321
+ .icon-circle-arrow-left:before {
4322
+ content: "\f0a8";
4323
+ }
4324
+ .icon-circle-arrow-right:before {
4325
+ content: "\f0a9";
4326
+ }
4327
+ .icon-circle-arrow-up:before {
4328
+ content: "\f0aa";
4329
+ }
4330
+ .icon-circle-arrow-down:before {
4331
+ content: "\f0ab";
4332
+ }
4333
+ .icon-globe:before {
4334
+ content: "\f0ac";
4335
+ }
4336
+ .icon-wrench:before {
4337
+ content: "\f0ad";
4338
+ }
4339
+ .icon-tasks:before {
4340
+ content: "\f0ae";
4341
+ }
4342
+ .icon-filter:before {
4343
+ content: "\f0b0";
4344
+ }
4345
+ .icon-briefcase:before {
4346
+ content: "\f0b1";
4347
+ }
4348
+ .icon-fullscreen:before {
4349
+ content: "\f0b2";
4350
+ }
4351
+ .icon-group:before {
4352
+ content: "\f0c0";
4353
+ }
4354
+ .icon-link:before {
4355
+ content: "\f0c1";
4356
+ }
4357
+ .icon-cloud:before {
4358
+ content: "\f0c2";
4359
+ }
4360
+ .icon-beaker:before {
4361
+ content: "\f0c3";
4362
+ }
4363
+ .icon-cut:before {
4364
+ content: "\f0c4";
4365
+ }
4366
+ .icon-copy:before {
4367
+ content: "\f0c5";
4368
+ }
4369
+ .icon-paper-clip:before {
4370
+ content: "\f0c6";
4371
+ }
4372
+ .icon-save:before {
4373
+ content: "\f0c7";
4374
+ }
4375
+ .icon-sign-blank:before {
4376
+ content: "\f0c8";
4377
+ }
4378
+ .icon-reorder:before {
4379
+ content: "\f0c9";
4380
+ }
4381
+ .icon-list-ul:before {
4382
+ content: "\f0ca";
4383
+ }
4384
+ .icon-list-ol:before {
4385
+ content: "\f0cb";
4386
+ }
4387
+ .icon-strikethrough:before {
4388
+ content: "\f0cc";
4389
+ }
4390
+ .icon-underline:before {
4391
+ content: "\f0cd";
4392
+ }
4393
+ .icon-table:before {
4394
+ content: "\f0ce";
4395
+ }
4396
+ .icon-magic:before {
4397
+ content: "\f0d0";
4398
+ }
4399
+ .icon-truck:before {
4400
+ content: "\f0d1";
4401
+ }
4402
+ .icon-pinterest:before {
4403
+ content: "\f0d2";
4404
+ }
4405
+ .icon-pinterest-sign:before {
4406
+ content: "\f0d3";
4407
+ }
4408
+ .icon-google-plus-sign:before {
4409
+ content: "\f0d4";
4410
+ }
4411
+ .icon-google-plus:before {
4412
+ content: "\f0d5";
4413
+ }
4414
+ .icon-money:before {
4415
+ content: "\f0d6";
4416
+ }
4417
+ .icon-caret-down:before {
4418
+ content: "\f0d7";
4419
+ }
4420
+ .icon-caret-up:before {
4421
+ content: "\f0d8";
4422
+ }
4423
+ .icon-caret-left:before {
4424
+ content: "\f0d9";
4425
+ }
4426
+ .icon-caret-right:before {
4427
+ content: "\f0da";
4428
+ }
4429
+ .icon-columns:before {
4430
+ content: "\f0db";
4431
+ }
4432
+ .icon-sort:before {
4433
+ content: "\f0dc";
4434
+ }
4435
+ .icon-sort-down:before {
4436
+ content: "\f0dd";
4437
+ }
4438
+ .icon-sort-up:before {
4439
+ content: "\f0de";
4440
+ }
4441
+ .icon-envelope-alt:before {
4442
+ content: "\f0e0";
4443
+ }
4444
+ .icon-linkedin:before {
4445
+ content: "\f0e1";
4446
+ }
4447
+ .icon-undo:before {
4448
+ content: "\f0e2";
4449
+ }
4450
+ .icon-legal:before {
4451
+ content: "\f0e3";
4452
+ }
4453
+ .icon-dashboard:before {
4454
+ content: "\f0e4";
4455
+ }
4456
+ .icon-comment-alt:before {
4457
+ content: "\f0e5";
4458
+ }
4459
+ .icon-comments-alt:before {
4460
+ content: "\f0e6";
4461
+ }
4462
+ .icon-bolt:before {
4463
+ content: "\f0e7";
4464
+ }
4465
+ .icon-sitemap:before {
4466
+ content: "\f0e8";
4467
+ }
4468
+ .icon-umbrella:before {
4469
+ content: "\f0e9";
4470
+ }
4471
+ .icon-paste:before {
4472
+ content: "\f0ea";
4473
+ }
4474
+ .icon-user-md:before {
4475
+ content: "\f200";
4476
+ }
4477
+ #overview {
4478
+ padding-top: 60px;
4479
+ }
4480
+ #new-icons,
4481
+ #all-icons,
4482
+ #examples,
4483
+ #integration,
4484
+ #code,
4485
+ #roadmap {
4486
+ padding-top: 40px;
4487
+ }
4488
+ .navbar .brand {
4489
+ padding: 11px 20px 9px;
4490
+ color: #ffffff;
4491
+ }
4492
+ .navbar-inner {
4493
+ -webkit-border-radius: 0;
4494
+ -moz-border-radius: 0;
4495
+ border-radius: 0;
4496
+ }
4497
+ .navbar .nav > li > a {
4498
+ padding: 12px 10px 9px;
4499
+ }
4500
+ h1,
4501
+ h2,
4502
+ h3,
4503
+ h4,
4504
+ h5,
4505
+ h6 {
4506
+ font-family: museo-slab, "Helvetica Neue", Helvetica, Arial, sans-serif;
4507
+ }
4508
+ #iconCarousel {
4509
+ float: right;
4510
+ width: 267.5px;
4511
+ height: 206.25px;
4512
+ margin-right: 10px;
4513
+ margin-top: -20px;
4514
+ font-size: 275px;
4515
+ text-align: center;
4516
+ text-shadow: 2px 2px 3px #222222;
4517
+ }
4518
+ #iconCarousel a {
4519
+ color: #ffffff;
4520
+ }
4521
+ #iconCarousel .carousel-control {
4522
+ top: 280px;
4523
+ width: 23px;
4524
+ height: 23px;
4525
+ border-width: 3px;
4526
+ font-size: 17px;
4527
+ line-height: 28px;
4528
+ left: 100.66666666666667px;
4529
+ }
4530
+ #iconCarousel .carousel-control.right {
4531
+ left: auto;
4532
+ right: 100.66666666666667px;
4533
+ }
4534
+ .hero-unit {
4535
+ margin-bottom: 20px;
4536
+ -webkit-border-radius: 20px;
4537
+ -moz-border-radius: 20px;
4538
+ border-radius: 20px;
4539
+ background-color: #9d261d;
4540
+ text-shadow: 2px 2px 2px #333333;
4541
+ }
4542
+ .hero-unit,
4543
+ .hero-unit h1 {
4544
+ color: #ffffff;
4545
+ }
4546
+ .hero-unit h1 {
4547
+ font-size: 70px;
4548
+ letter-spacing: -1px;
4549
+ line-height: 1.2;
4550
+ }
4551
+ .hero-unit p {
4552
+ margin-top: 10px;
4553
+ margin-bottom: 15px;
4554
+ font-size: 28px;
4555
+ line-height: 34px;
4556
+ }
4557
+ .hero-unit ul {
4558
+ margin-left: 50px;
4559
+ }
4560
+ .hero-unit ul li {
4561
+ font-size: 15px;
4562
+ line-height: 30px;
4563
+ text-shadow: 1px 1px 1px #333333;
4564
+ }
4565
+ .hero-unit ul li.icon-large:before {
4566
+ text-indent: -2em;
4567
+ vertical-align: baseline;
4568
+ }
4569
+ .hero-unit a {
4570
+ color: #fffeb8;
4571
+ }
4572
+ .hero-unit .btn-large {
4573
+ background-color: #e4e4e4;
4574
+ background-image: -moz-linear-gradient(top, #ffffff, #bbbbbb);
4575
+ background-image: -ms-linear-gradient(top, #ffffff, #bbbbbb);
4576
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#bbbbbb));
4577
+ background-image: -webkit-linear-gradient(top, #ffffff, #bbbbbb);
4578
+ background-image: -o-linear-gradient(top, #ffffff, #bbbbbb);
4579
+ background-image: linear-gradient(top, #ffffff, #bbbbbb);
4580
+ background-repeat: repeat-x;
4581
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#bbbbbb', GradientType=0);
4582
+ border-color: #bbbbbb #bbbbbb #959595;
4583
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4584
+ *background-color: #bbbbbb;
4585
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
4586
+
4587
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
4588
+ font-family: museo-slab, "Helvetica Neue", Helvetica, Arial, sans-serif;
4589
+ color: #333333;
4590
+ margin-top: 15px;
4591
+ font-weight: bold;
4592
+ font-size: 18px;
4593
+ padding: 13px 22px;
4594
+ padding-left: 68px;
4595
+ margin-right: 10px;
4596
+ -webkit-border-radius: 6px;
4597
+ -moz-border-radius: 6px;
4598
+ border-radius: 6px;
4599
+ position: relative;
4600
+ text-align: left;
4601
+ }
4602
+ .hero-unit .btn-large:hover,
4603
+ .hero-unit .btn-large:active,
4604
+ .hero-unit .btn-large.active,
4605
+ .hero-unit .btn-large.disabled,
4606
+ .hero-unit .btn-large[disabled] {
4607
+ background-color: #bbbbbb;
4608
+ *background-color: #aeaeae;
4609
+ }
4610
+ .hero-unit .btn-large:active,
4611
+ .hero-unit .btn-large.active {
4612
+ background-color: #a2a2a2 \9;
4613
+ }
4614
+ .hero-unit .btn-large i {
4615
+ position: absolute;
4616
+ left: 22px;
4617
+ font-size: 46px;
4618
+ }
4619
+ .hero-unit .btn-large.btn-github {
4620
+ padding-left: 74px;
4621
+ }
4622
+ .hero-unit .hero-content {
4623
+ width: 500px;
4624
+ text-align: center;
4625
+ }
4626
+ .btn-primary,
4627
+ .hero-unit .btn-primary {
4628
+ background-color: #e7d785;
4629
+ background-image: -moz-linear-gradient(top, #fffeb8, #c49c38);
4630
+ background-image: -ms-linear-gradient(top, #fffeb8, #c49c38);
4631
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fffeb8), to(#c49c38));
4632
+ background-image: -webkit-linear-gradient(top, #fffeb8, #c49c38);
4633
+ background-image: -o-linear-gradient(top, #fffeb8, #c49c38);
4634
+ background-image: linear-gradient(top, #fffeb8, #c49c38);
4635
+ background-repeat: repeat-x;
4636
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffeb8', endColorstr='#c49c38', GradientType=0);
4637
+ border-color: #c49c38 #c49c38 #896d27;
4638
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4639
+ *background-color: #c49c38;
4640
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
4641
+
4642
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
4643
+ *background-color: #e7d785;
4644
+ color: #333333;
4645
+ text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
4646
+ }
4647
+ .btn-primary:hover,
4648
+ .hero-unit .btn-primary:hover,
4649
+ .btn-primary:active,
4650
+ .hero-unit .btn-primary:active,
4651
+ .btn-primary.active,
4652
+ .hero-unit .btn-primary.active,
4653
+ .btn-primary.disabled,
4654
+ .hero-unit .btn-primary.disabled,
4655
+ .btn-primary[disabled],
4656
+ .hero-unit .btn-primary[disabled] {
4657
+ background-color: #c49c38;
4658
+ *background-color: #b08c32;
4659
+ }
4660
+ .btn-primary:active,
4661
+ .hero-unit .btn-primary:active,
4662
+ .btn-primary.active,
4663
+ .hero-unit .btn-primary.active {
4664
+ background-color: #9c7c2d \9;
4665
+ }
4666
+ .btn-primary:hover,
4667
+ .hero-unit .btn-primary:hover {
4668
+ text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
4669
+ color: #333333;
4670
+ }
4671
+ #social-buttons {
4672
+ margin-bottom: 30px;
4673
+ text-align: center;
4674
+ }
4675
+ #social-buttons .btn {
4676
+ font-family: museo-slab, "Helvetica Neue", Helvetica, Arial, sans-serif;
4677
+ font-weight: bold;
4678
+ font-size: 14px;
4679
+ padding: 4px 10px 1px;
4680
+ line-height: 21px;
4681
+ }
4682
+ #social-buttons .count.btn {
4683
+ font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
4684
+ font-weight: normal;
4685
+ background-color: #ffffff;
4686
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
4687
+ background-image: -ms-linear-gradient(top, #ffffff, #ffffff);
4688
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ffffff));
4689
+ background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
4690
+ background-image: -o-linear-gradient(top, #ffffff, #ffffff);
4691
+ background-image: linear-gradient(top, #ffffff, #ffffff);
4692
+ background-repeat: repeat-x;
4693
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
4694
+ border-color: #ffffff #ffffff #d9d9d9;
4695
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4696
+ *background-color: #ffffff;
4697
+ /* Darken IE7 buttons by default so they stand out more given they won't have borders */
4698
+
4699
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
4700
+ }
4701
+ #social-buttons .count.btn:hover,
4702
+ #social-buttons .count.btn:active,
4703
+ #social-buttons .count.btn.active,
4704
+ #social-buttons .count.btn.disabled,
4705
+ #social-buttons .count.btn[disabled] {
4706
+ background-color: #ffffff;
4707
+ *background-color: #f2f2f2;
4708
+ }
4709
+ #social-buttons .count.btn:active,
4710
+ #social-buttons .count.btn.active {
4711
+ background-color: #e6e6e6 \9;
4712
+ }
4713
+ #social-buttons .watch,
4714
+ #social-buttons .fork {
4715
+ margin-right: 30px;
4716
+ }
4717
+ .the-icons {
4718
+ list-style-type: none;
4719
+ margin-left: 0;
4720
+ }
4721
+ .the-icons li {
4722
+ cursor: pointer;
4723
+ line-height: 42px;
4724
+ height: 42px;
4725
+ padding-left: 12px;
4726
+ -webkit-border-radius: 12px;
4727
+ -moz-border-radius: 12px;
4728
+ border-radius: 12px;
4729
+ }
4730
+ .the-icons li [class^="icon-"],
4731
+ .the-icons li [class*=" icon-"] {
4732
+ width: 32px;
4733
+ font-size: 16px;
4734
+ }
4735
+ .the-icons li:hover {
4736
+ background-color: #fbf4f4;
4737
+ }
4738
+ .the-icons li:hover [class^="icon-"],
4739
+ .the-icons li:hover [class*=" icon-"] {
4740
+ *font-size: 24px;
4741
+ *vertical-align: middle;
4742
+ }
4743
+ .the-icons li:hover [class^="icon-"]:before,
4744
+ .the-icons li:hover [class*=" icon-"]:before {
4745
+ font-size: 24px;
4746
+ vertical-align: middle;
4747
+ }
4748
+ #all-icons h3,
4749
+ #new-icons h3 {
4750
+ margin-top: 10px;
4751
+ }
4752
+ #why .row {
4753
+ margin-bottom: 20px;
4754
+ }
4755
+ #why .icon-large {
4756
+ font-size: 22px;
4757
+ text-align: center;
4758
+ padding-right: 4px;
4759
+ }
4760
+ #examples .btn-toolbar {
4761
+ margin-top: 0;
4762
+ margin-bottom: 20px;
4763
+ }
4764
+ #integration .row {
4765
+ margin-bottom: 40px;
4766
+ }
4767
+ #examples form,
4768
+ #code form {
4769
+ margin-bottom: 25px;
4770
+ }
4771
+ #examples form input,
4772
+ #code form input {
4773
+ line-height: 1;
4774
+ }
4775
+ #examples .rating,
4776
+ #code .rating {
4777
+ unicode-bidi: bidi-override;
4778
+ direction: rtl;
4779
+ font-size: 30px;
4780
+ }
4781
+ #examples .rating span.star,
4782
+ #code .rating span.star {
4783
+ font-family: FontAwesome;
4784
+ font-weight: normal;
4785
+ font-style: normal;
4786
+ display: inline-block;
4787
+ }
4788
+ #examples .rating span.star:hover,
4789
+ #code .rating span.star:hover {
4790
+ cursor: pointer;
4791
+ }
4792
+ #examples .rating span.star:before,
4793
+ #code .rating span.star:before {
4794
+ content: "\f006";
4795
+ padding-right: 5px;
4796
+ color: #999999;
4797
+ }
4798
+ #examples .rating span.star:hover:before,
4799
+ #code .rating span.star:hover:before,
4800
+ #examples .rating span.star:hover ~ span.star:before,
4801
+ #code .rating span.star:hover ~ span.star:before {
4802
+ content: "\f005";
4803
+ color: #e3cf7a;
4804
+ }
4805
+ .modal {
4806
+ width: 560px;
4807
+ max-height: 600px;
4808
+ }
4809
+ .modal .modal-body {
4810
+ *overflow: hidden;
4811
+ max-height: none;
4812
+ padding-bottom: 0;
4813
+ }
4814
+ .modal .modal-body .row {
4815
+ margin-bottom: 15px;
4816
+ }
4817
+ .modal .modal-body div.thumbnail {
4818
+ text-align: center;
4819
+ }
4820
+ .modal .modal-body div.thumbnail div {
4821
+ margin-bottom: 5px;
4822
+ }
4823
+ .modal .modal-body .icon6 {
4824
+ width: 325px;
4825
+ }
4826
+ .modal .modal-body .icon6 > div.thumbnail > div {
4827
+ line-height: 340px;
4828
+ height: 323px;
4829
+ text-align: center;
4830
+ }
4831
+ .modal .modal-body .icon6 > div.thumbnail > div i {
4832
+ font-size: 340px;
4833
+ }
4834
+ .modal .modal-body .icon5 {
4835
+ width: 185px;
4836
+ }
4837
+ .modal .modal-body .icon5 > div.thumbnail > div {
4838
+ line-height: 180px;
4839
+ height: 171px;
4840
+ text-align: center;
4841
+ }
4842
+ .modal .modal-body .icon5 > div.thumbnail > div i {
4843
+ font-size: 180px;
4844
+ }
4845
+ .modal .modal-body .icon4 {
4846
+ width: 215px;
4847
+ }
4848
+ .modal .modal-body .icon4 > div.thumbnail > div {
4849
+ line-height: 100px;
4850
+ height: 95px;
4851
+ text-align: center;
4852
+ }
4853
+ .modal .modal-body .icon4 > div.thumbnail > div i {
4854
+ font-size: 100px;
4855
+ }
4856
+ .modal .modal-body .icon3 {
4857
+ width: 120px;
4858
+ }
4859
+ .modal .modal-body .icon3 > div.thumbnail > div {
4860
+ line-height: 50px;
4861
+ height: 47.5px;
4862
+ text-align: center;
4863
+ }
4864
+ .modal .modal-body .icon3 > div.thumbnail > div i {
4865
+ font-size: 50px;
4866
+ }
4867
+ .modal .modal-body .icon2 {
4868
+ width: 75px;
4869
+ }
4870
+ .modal .modal-body .icon2 > div.thumbnail > div {
4871
+ line-height: 20px;
4872
+ height: 19px;
4873
+ text-align: center;
4874
+ }
4875
+ .modal .modal-body .icon2 > div.thumbnail > div i {
4876
+ font-size: 20px;
4877
+ }
4878
+ .modal .modal-body .icon1 {
4879
+ width: 60px;
4880
+ }
4881
+ .modal .modal-body .icon1 > div.thumbnail > div {
4882
+ line-height: 12px;
4883
+ height: 11.399999999999999px;
4884
+ text-align: center;
4885
+ }
4886
+ .modal .modal-body .icon1 > div.thumbnail > div i {
4887
+ font-size: 12px;
4888
+ }
4889
+ .label,
4890
+ .badge {
4891
+ background-color: #eeeeee;
4892
+ }
4893
+ footer {
4894
+ color: #555555;
4895
+ border-top: 1px solid #eeeeee;
4896
+ margin-top: 60px;
4897
+ padding-top: 20px;
4898
+ padding-bottom: 60px;
4899
+ *zoom: 1;
4900
+ }
4901
+ footer ul {
4902
+ margin-left: 30px;
4903
+ line-height: 25px;
4904
+ }