compass 0.12.4 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (781) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.markdown +1 -1
  3. data/Rakefile +159 -79
  4. data/features/command_line.feature +44 -141
  5. data/features/step_definitions/command_line_steps.rb +7 -7
  6. data/lib/compass.rb +19 -17
  7. data/lib/compass/actions.rb +7 -4
  8. data/lib/compass/commands.rb +3 -1
  9. data/lib/compass/commands/print_version.rb +1 -12
  10. data/lib/compass/commands/project_stats.rb +5 -5
  11. data/lib/compass/commands/update_project.rb +55 -46
  12. data/lib/compass/commands/watch_project.rb +53 -106
  13. data/lib/compass/compiler.rb +87 -26
  14. data/lib/compass/configuration/comments.rb +4 -1
  15. data/lib/compass/configuration/helpers.rb +11 -58
  16. data/lib/compass/configuration/serialization.rb +10 -3
  17. data/lib/compass/deprecation.rb +19 -0
  18. data/lib/compass/errors.rb +1 -3
  19. data/lib/compass/exec/global_options_parser.rb +0 -4
  20. data/lib/compass/exec/project_options_parser.rb +8 -0
  21. data/lib/compass/generated_version.rb +4 -0
  22. data/lib/compass/logger.rb +55 -18
  23. data/lib/compass/sass_compiler.rb +151 -0
  24. data/lib/compass/sass_extensions.rb +0 -1
  25. data/lib/compass/sass_extensions/functions.rb +6 -25
  26. data/lib/compass/sass_extensions/functions/sprites.rb +143 -56
  27. data/lib/compass/sass_extensions/sprites.rb +2 -0
  28. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +11 -9
  29. data/lib/compass/sass_extensions/sprites/image.rb +47 -36
  30. data/lib/compass/sass_extensions/sprites/image_methods.rb +25 -5
  31. data/lib/compass/sass_extensions/sprites/images.rb +29 -0
  32. data/lib/compass/sass_extensions/sprites/layout.rb +39 -0
  33. data/lib/compass/sass_extensions/sprites/layout/diagonal.rb +42 -0
  34. data/lib/compass/sass_extensions/sprites/layout/horizontal.rb +66 -0
  35. data/lib/compass/sass_extensions/sprites/layout/smart.rb +33 -0
  36. data/lib/compass/sass_extensions/sprites/layout/vertical.rb +68 -0
  37. data/lib/compass/sass_extensions/sprites/layout_methods.rb +9 -115
  38. data/lib/compass/sass_extensions/sprites/sprite_map.rb +14 -8
  39. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +8 -14
  40. data/lib/compass/sprite_importer.rb +12 -11
  41. data/lib/compass/sprite_importer/content.erb +30 -24
  42. data/lib/compass/stats.rb +1 -1
  43. data/lib/compass/version.rb +27 -45
  44. data/test/fixtures/sprites/public/images/focus/ten-by-ten.png +0 -0
  45. data/test/fixtures/sprites/public/images/focus/ten-by-ten_active.png +0 -0
  46. data/test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png +0 -0
  47. data/test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png +0 -0
  48. data/test/fixtures/sprites/public/images/focus/ten-by-ten_target.png +0 -0
  49. data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
  50. data/test/fixtures/stylesheets/busted_font_urls/config.rb +32 -0
  51. data/test/fixtures/stylesheets/busted_font_urls/css/screen.css +9 -0
  52. data/test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf +0 -0
  53. data/test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf +0 -0
  54. data/test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf +0 -0
  55. data/test/fixtures/stylesheets/busted_font_urls/sass/screen.sass +14 -0
  56. data/test/fixtures/stylesheets/compass/config.rb +2 -0
  57. data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +22 -0
  58. data/test/fixtures/stylesheets/compass/css/animation.css +22 -0
  59. data/test/fixtures/stylesheets/compass/css/appearance.css +3 -0
  60. data/test/fixtures/stylesheets/compass/css/background-clip.css +7 -6
  61. data/test/fixtures/stylesheets/compass/css/background-origin.css +11 -0
  62. data/test/fixtures/stylesheets/compass/css/background-size.css +17 -0
  63. data/test/fixtures/stylesheets/compass/css/border_radius.css +3 -3
  64. data/test/fixtures/stylesheets/compass/css/{box-sizeing.css → box-sizing.css} +7 -2
  65. data/test/fixtures/stylesheets/compass/css/box_shadow.css +15 -5
  66. data/test/fixtures/stylesheets/compass/css/brightness.css +14 -0
  67. data/test/fixtures/stylesheets/compass/css/browser-support.css +335 -0
  68. data/test/fixtures/stylesheets/compass/css/color.css +18 -0
  69. data/test/fixtures/stylesheets/compass/css/columns.css +48 -75
  70. data/test/fixtures/stylesheets/compass/css/filters.css +30 -6
  71. data/test/fixtures/stylesheets/compass/css/flexbox.css +94 -0
  72. data/test/fixtures/stylesheets/compass/css/fonts.css +6 -2
  73. data/test/fixtures/stylesheets/compass/css/gradients.css +106 -86
  74. data/test/fixtures/stylesheets/compass/css/grid_background.css +42 -35
  75. data/test/fixtures/stylesheets/compass/css/hyphenation.css +4 -4
  76. data/test/fixtures/stylesheets/compass/css/lists.css +9 -15
  77. data/test/fixtures/stylesheets/compass/css/opacity.css +4 -0
  78. data/test/fixtures/stylesheets/compass/css/print.css +1 -1
  79. data/test/fixtures/stylesheets/compass/css/regions.css +4 -2
  80. data/test/fixtures/stylesheets/compass/css/replacement.css +7 -0
  81. data/test/fixtures/stylesheets/compass/css/reset.css +3 -3
  82. data/test/fixtures/stylesheets/compass/css/selection.css +50 -0
  83. data/test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css +19 -0
  84. data/test/fixtures/stylesheets/compass/css/support.css +69 -0
  85. data/test/fixtures/stylesheets/compass/css/text_shadow.css +6 -6
  86. data/test/fixtures/stylesheets/compass/css/transform.css +64 -164
  87. data/test/fixtures/stylesheets/compass/css/transition.css +26 -38
  88. data/test/fixtures/stylesheets/compass/css/typography/links/hover-link.css +4 -0
  89. data/test/fixtures/stylesheets/compass/css/units.css +34 -0
  90. data/test/fixtures/stylesheets/compass/css/user-interface.css +49 -1
  91. data/test/fixtures/stylesheets/compass/css/utilities.css +21 -6
  92. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +5 -8
  93. data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_ems.css +53 -0
  94. data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_px.css +52 -0
  95. data/test/fixtures/stylesheets/compass/css/vertical_rhythm_with_rems.css +67 -0
  96. data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
  97. data/test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png +0 -0
  98. data/{examples/compass/images/flag/ad.png → test/fixtures/stylesheets/compass/images/flag_states/foo.png} +0 -0
  99. data/{examples/compass/images/flag/fo.png → test/fixtures/stylesheets/compass/images/flag_states/foo_active.png} +0 -0
  100. data/{examples/compass/images/flag/hu.png → test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png} +0 -0
  101. data/{examples/compass/images/flag/bm.png → test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png} +0 -0
  102. data/{examples/compass/images/flag/cu.png → test/fixtures/stylesheets/compass/images/flag_states/foo_target.png} +0 -0
  103. data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +17 -0
  104. data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
  105. data/test/fixtures/stylesheets/compass/sass/appearance.scss +5 -0
  106. data/test/fixtures/stylesheets/compass/sass/background-clip.scss +1 -4
  107. data/test/fixtures/stylesheets/compass/sass/background-origin.scss +5 -0
  108. data/test/fixtures/stylesheets/compass/sass/background-size.scss +7 -0
  109. data/test/fixtures/stylesheets/compass/sass/{box-sizeing.scss → box-sizing.scss} +4 -1
  110. data/test/fixtures/stylesheets/compass/sass/box_shadow.scss +4 -2
  111. data/test/fixtures/stylesheets/compass/sass/brightness.scss +12 -0
  112. data/test/fixtures/stylesheets/compass/sass/browser-support.scss +30 -0
  113. data/test/fixtures/stylesheets/compass/sass/color.scss +25 -0
  114. data/test/fixtures/stylesheets/compass/sass/columns.scss +9 -9
  115. data/test/fixtures/stylesheets/compass/sass/filters.scss +1 -0
  116. data/test/fixtures/stylesheets/compass/sass/flexbox.scss +88 -0
  117. data/test/fixtures/stylesheets/compass/sass/fonts.sass +6 -1
  118. data/test/fixtures/stylesheets/compass/sass/gradients.sass +40 -8
  119. data/test/fixtures/stylesheets/compass/sass/opacity.scss +4 -0
  120. data/test/fixtures/stylesheets/compass/sass/selection.scss +41 -0
  121. data/test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss +11 -0
  122. data/test/fixtures/stylesheets/compass/sass/support.scss +174 -0
  123. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +7 -6
  124. data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -4
  125. data/test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss +3 -0
  126. data/test/fixtures/stylesheets/compass/sass/units.scss +50 -0
  127. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +24 -1
  128. data/test/fixtures/stylesheets/compass/sass/utilities.scss +17 -4
  129. data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +51 -7
  130. data/test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_ems.scss +52 -0
  131. data/test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_px.scss +50 -0
  132. data/test/fixtures/stylesheets/compass/sass/vertical_rhythm_with_rems.scss +50 -0
  133. data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
  134. data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
  135. data/test/fixtures/stylesheets/sourcemaps/config.rb +10 -0
  136. data/test/fixtures/stylesheets/sourcemaps/css/another_simple.css +2 -0
  137. data/test/fixtures/stylesheets/sourcemaps/css/another_simple.css.map +7 -0
  138. data/test/fixtures/stylesheets/sourcemaps/css/simple.css +2 -0
  139. data/test/fixtures/stylesheets/sourcemaps/css/simple.css.map +7 -0
  140. data/test/fixtures/stylesheets/sourcemaps/css/with_libraries.css +2 -0
  141. data/test/fixtures/stylesheets/sourcemaps/css/with_libraries.css.map +7 -0
  142. data/test/fixtures/stylesheets/sourcemaps/sass/another_simple.scss +3 -0
  143. data/test/fixtures/stylesheets/sourcemaps/sass/simple.sass +2 -0
  144. data/test/fixtures/stylesheets/sourcemaps/sass/with_libraries.scss +5 -0
  145. data/test/fixtures/stylesheets/valid/sass/another_simple.scss +3 -0
  146. data/test/fixtures/stylesheets/with_sass_globbing/config.rb +26 -0
  147. data/test/fixtures/stylesheets/with_sass_globbing/css/screen.css +19 -0
  148. data/test/fixtures/stylesheets/with_sass_globbing/sass/partials/_1.scss +3 -0
  149. data/test/fixtures/stylesheets/with_sass_globbing/sass/partials/_2.scss +3 -0
  150. data/test/fixtures/stylesheets/with_sass_globbing/sass/partials/_3.scss +4 -0
  151. data/test/fixtures/stylesheets/with_sass_globbing/sass/screen.scss +3 -0
  152. data/test/helpers/diff.rb +1 -1
  153. data/test/integrations/compass_test.rb +49 -14
  154. data/test/integrations/sprites_test.rb +380 -100
  155. data/test/test_helper.rb +12 -20
  156. data/test/units/caniuse_test.rb +194 -0
  157. data/test/units/command_line_test.rb +9 -9
  158. data/test/units/compass_util_test.rb +11 -0
  159. data/test/units/compiler_test.rb +7 -2
  160. data/test/units/configuration_test.rb +187 -9
  161. data/test/units/regressions_test.rb +8 -8
  162. data/test/units/sass_extensions_test.rb +37 -3
  163. data/test/units/sass_extenstions/gradients_test.rb +30 -0
  164. data/test/units/sprites/image_test.rb +17 -0
  165. data/test/units/sprites/images_test.rb +46 -0
  166. data/test/units/sprites/layout_test.rb +29 -4
  167. data/test/units/sprites/sprite_map_test.rb +40 -2
  168. metadata +243 -713
  169. data/README.markdown +0 -31
  170. data/VERSION.yml +0 -5
  171. data/examples/README.markdown +0 -4
  172. data/examples/blueprint_default/config.rb +0 -7
  173. data/examples/blueprint_default/images/grid.png +0 -0
  174. data/examples/blueprint_default/index.html.haml +0 -85
  175. data/examples/blueprint_default/parts/elements.html.haml +0 -282
  176. data/examples/blueprint_default/parts/forms.html.haml +0 -200
  177. data/examples/blueprint_default/parts/grid.html.haml +0 -274
  178. data/examples/blueprint_default/parts/test-small.jpg +0 -0
  179. data/examples/blueprint_default/parts/test.jpg +0 -0
  180. data/examples/blueprint_default/parts/valid.png +0 -0
  181. data/examples/blueprint_default/src/ie.scss +0 -3
  182. data/examples/blueprint_default/src/images/grid.png +0 -0
  183. data/examples/blueprint_default/src/print.scss +0 -3
  184. data/examples/blueprint_default/src/screen.scss +0 -9
  185. data/examples/blueprint_plugins/config.rb +0 -8
  186. data/examples/blueprint_plugins/images/buttons/cross.png +0 -0
  187. data/examples/blueprint_plugins/images/buttons/key.png +0 -0
  188. data/examples/blueprint_plugins/images/buttons/tick.png +0 -0
  189. data/examples/blueprint_plugins/images/grid.png +0 -0
  190. data/examples/blueprint_plugins/images/link_icons/doc.png +0 -0
  191. data/examples/blueprint_plugins/images/link_icons/email.png +0 -0
  192. data/examples/blueprint_plugins/images/link_icons/external.png +0 -0
  193. data/examples/blueprint_plugins/images/link_icons/feed.png +0 -0
  194. data/examples/blueprint_plugins/images/link_icons/im.png +0 -0
  195. data/examples/blueprint_plugins/images/link_icons/pdf.png +0 -0
  196. data/examples/blueprint_plugins/images/link_icons/visited.png +0 -0
  197. data/examples/blueprint_plugins/images/link_icons/xls.png +0 -0
  198. data/examples/blueprint_plugins/images/test-small.jpg +0 -0
  199. data/examples/blueprint_plugins/images/test.jpg +0 -0
  200. data/examples/blueprint_plugins/images/valid.png +0 -0
  201. data/examples/blueprint_plugins/index.html.haml +0 -96
  202. data/examples/blueprint_plugins/plugins/buttons.html.haml +0 -67
  203. data/examples/blueprint_plugins/plugins/fancy_type.html.haml +0 -100
  204. data/examples/blueprint_plugins/plugins/link_icons.html.haml +0 -61
  205. data/examples/blueprint_plugins/plugins/rtl.html.haml +0 -100
  206. data/examples/blueprint_plugins/src/buttons.scss +0 -47
  207. data/examples/blueprint_plugins/src/ie.scss +0 -3
  208. data/examples/blueprint_plugins/src/images/grid.png +0 -0
  209. data/examples/blueprint_plugins/src/link_icons.scss +0 -13
  210. data/examples/blueprint_plugins/src/print.scss +0 -3
  211. data/examples/blueprint_plugins/src/rtl_screen.scss +0 -15
  212. data/examples/blueprint_plugins/src/screen.scss +0 -12
  213. data/examples/blueprint_scoped/images/grid.png +0 -0
  214. data/examples/blueprint_scoped/src/ie.scss +0 -4
  215. data/examples/blueprint_scoped/src/print.scss +0 -4
  216. data/examples/blueprint_scoped/src/screen.scss +0 -5
  217. data/examples/blueprint_scoped_form/images/grid.png +0 -0
  218. data/examples/blueprint_scoped_form/src/ie.scss +0 -3
  219. data/examples/blueprint_scoped_form/src/print.scss +0 -3
  220. data/examples/blueprint_scoped_form/src/screen.scss +0 -15
  221. data/examples/blueprint_semantic/config.rb +0 -7
  222. data/examples/blueprint_semantic/images/grid.png +0 -0
  223. data/examples/blueprint_semantic/index.html.haml +0 -86
  224. data/examples/blueprint_semantic/parts/fancy_type.html.haml +0 -100
  225. data/examples/blueprint_semantic/parts/liquid.html.haml +0 -100
  226. data/examples/blueprint_semantic/parts/test-small.jpg +0 -0
  227. data/examples/blueprint_semantic/parts/test.jpg +0 -0
  228. data/examples/blueprint_semantic/parts/valid.png +0 -0
  229. data/examples/blueprint_semantic/src/ie.scss +0 -3
  230. data/examples/blueprint_semantic/src/images/grid.png +0 -0
  231. data/examples/blueprint_semantic/src/liquid.scss +0 -69
  232. data/examples/blueprint_semantic/src/print.scss +0 -3
  233. data/examples/blueprint_semantic/src/screen.scss +0 -69
  234. data/examples/compass/bootstrap.rb +0 -4
  235. data/examples/compass/clean.rb +0 -2
  236. data/examples/compass/compass.html.haml +0 -39
  237. data/examples/compass/config.rb +0 -8
  238. data/examples/compass/headers.txt +0 -7
  239. data/examples/compass/images/blue_arrow.gif +0 -0
  240. data/examples/compass/images/border2.png +0 -0
  241. data/examples/compass/images/emblem/favorite.png +0 -0
  242. data/examples/compass/images/emblem/important.png +0 -0
  243. data/examples/compass/images/emblem/photos.png +0 -0
  244. data/examples/compass/images/emblem/readonly.png +0 -0
  245. data/examples/compass/images/emblem/symbolic-link.png +0 -0
  246. data/examples/compass/images/emblem/system.png +0 -0
  247. data/examples/compass/images/emblem/unreadable.png +0 -0
  248. data/examples/compass/images/flag/ae.png +0 -0
  249. data/examples/compass/images/flag/af.png +0 -0
  250. data/examples/compass/images/flag/ag.png +0 -0
  251. data/examples/compass/images/flag/ai.png +0 -0
  252. data/examples/compass/images/flag/al.png +0 -0
  253. data/examples/compass/images/flag/am.png +0 -0
  254. data/examples/compass/images/flag/an.png +0 -0
  255. data/examples/compass/images/flag/ao.png +0 -0
  256. data/examples/compass/images/flag/ar.png +0 -0
  257. data/examples/compass/images/flag/as.png +0 -0
  258. data/examples/compass/images/flag/at.png +0 -0
  259. data/examples/compass/images/flag/au.png +0 -0
  260. data/examples/compass/images/flag/aw.png +0 -0
  261. data/examples/compass/images/flag/ax.png +0 -0
  262. data/examples/compass/images/flag/az.png +0 -0
  263. data/examples/compass/images/flag/ba.png +0 -0
  264. data/examples/compass/images/flag/bb.png +0 -0
  265. data/examples/compass/images/flag/bd.png +0 -0
  266. data/examples/compass/images/flag/be.png +0 -0
  267. data/examples/compass/images/flag/bf.png +0 -0
  268. data/examples/compass/images/flag/bg.png +0 -0
  269. data/examples/compass/images/flag/bh.png +0 -0
  270. data/examples/compass/images/flag/bi.png +0 -0
  271. data/examples/compass/images/flag/bj.png +0 -0
  272. data/examples/compass/images/flag/bn.png +0 -0
  273. data/examples/compass/images/flag/bo.png +0 -0
  274. data/examples/compass/images/flag/br.png +0 -0
  275. data/examples/compass/images/flag/bs.png +0 -0
  276. data/examples/compass/images/flag/bt.png +0 -0
  277. data/examples/compass/images/flag/bv.png +0 -0
  278. data/examples/compass/images/flag/bw.png +0 -0
  279. data/examples/compass/images/flag/by.png +0 -0
  280. data/examples/compass/images/flag/bz.png +0 -0
  281. data/examples/compass/images/flag/ca.png +0 -0
  282. data/examples/compass/images/flag/catalonia.png +0 -0
  283. data/examples/compass/images/flag/cc.png +0 -0
  284. data/examples/compass/images/flag/cd.png +0 -0
  285. data/examples/compass/images/flag/cf.png +0 -0
  286. data/examples/compass/images/flag/cg.png +0 -0
  287. data/examples/compass/images/flag/ch.png +0 -0
  288. data/examples/compass/images/flag/ci.png +0 -0
  289. data/examples/compass/images/flag/ck.png +0 -0
  290. data/examples/compass/images/flag/cl.png +0 -0
  291. data/examples/compass/images/flag/cm.png +0 -0
  292. data/examples/compass/images/flag/cn.png +0 -0
  293. data/examples/compass/images/flag/co.png +0 -0
  294. data/examples/compass/images/flag/cr.png +0 -0
  295. data/examples/compass/images/flag/cs.png +0 -0
  296. data/examples/compass/images/flag/cv.png +0 -0
  297. data/examples/compass/images/flag/cx.png +0 -0
  298. data/examples/compass/images/flag/cy.png +0 -0
  299. data/examples/compass/images/flag/cz.png +0 -0
  300. data/examples/compass/images/flag/de.png +0 -0
  301. data/examples/compass/images/flag/dj.png +0 -0
  302. data/examples/compass/images/flag/dk.png +0 -0
  303. data/examples/compass/images/flag/dm.png +0 -0
  304. data/examples/compass/images/flag/do.png +0 -0
  305. data/examples/compass/images/flag/dz.png +0 -0
  306. data/examples/compass/images/flag/ec.png +0 -0
  307. data/examples/compass/images/flag/ee.png +0 -0
  308. data/examples/compass/images/flag/eg.png +0 -0
  309. data/examples/compass/images/flag/eh.png +0 -0
  310. data/examples/compass/images/flag/england.png +0 -0
  311. data/examples/compass/images/flag/er.png +0 -0
  312. data/examples/compass/images/flag/es.png +0 -0
  313. data/examples/compass/images/flag/et.png +0 -0
  314. data/examples/compass/images/flag/europeanunion.png +0 -0
  315. data/examples/compass/images/flag/fam.png +0 -0
  316. data/examples/compass/images/flag/fi.png +0 -0
  317. data/examples/compass/images/flag/fj.png +0 -0
  318. data/examples/compass/images/flag/fk.png +0 -0
  319. data/examples/compass/images/flag/fm.png +0 -0
  320. data/examples/compass/images/flag/fr.png +0 -0
  321. data/examples/compass/images/flag/ga.png +0 -0
  322. data/examples/compass/images/flag/gb.png +0 -0
  323. data/examples/compass/images/flag/gd.png +0 -0
  324. data/examples/compass/images/flag/ge.png +0 -0
  325. data/examples/compass/images/flag/gf.png +0 -0
  326. data/examples/compass/images/flag/gh.png +0 -0
  327. data/examples/compass/images/flag/gi.png +0 -0
  328. data/examples/compass/images/flag/gl.png +0 -0
  329. data/examples/compass/images/flag/gm.png +0 -0
  330. data/examples/compass/images/flag/gn.png +0 -0
  331. data/examples/compass/images/flag/gp.png +0 -0
  332. data/examples/compass/images/flag/gq.png +0 -0
  333. data/examples/compass/images/flag/gr.png +0 -0
  334. data/examples/compass/images/flag/gs.png +0 -0
  335. data/examples/compass/images/flag/gt.png +0 -0
  336. data/examples/compass/images/flag/gu.png +0 -0
  337. data/examples/compass/images/flag/gw.png +0 -0
  338. data/examples/compass/images/flag/gy.png +0 -0
  339. data/examples/compass/images/flag/hk.png +0 -0
  340. data/examples/compass/images/flag/hm.png +0 -0
  341. data/examples/compass/images/flag/hn.png +0 -0
  342. data/examples/compass/images/flag/hr.png +0 -0
  343. data/examples/compass/images/flag/ht.png +0 -0
  344. data/examples/compass/images/flag/id-2.png +0 -0
  345. data/examples/compass/images/flag/ie.png +0 -0
  346. data/examples/compass/images/flag/il.png +0 -0
  347. data/examples/compass/images/flag/in.png +0 -0
  348. data/examples/compass/images/flag/io.png +0 -0
  349. data/examples/compass/images/flag/iq.png +0 -0
  350. data/examples/compass/images/flag/ir.png +0 -0
  351. data/examples/compass/images/flag/is.png +0 -0
  352. data/examples/compass/images/flag/it.png +0 -0
  353. data/examples/compass/images/flag/jm.png +0 -0
  354. data/examples/compass/images/flag/jo.png +0 -0
  355. data/examples/compass/images/flag/jp.png +0 -0
  356. data/examples/compass/images/flag/ke.png +0 -0
  357. data/examples/compass/images/flag/kg.png +0 -0
  358. data/examples/compass/images/flag/kh.png +0 -0
  359. data/examples/compass/images/flag/ki.png +0 -0
  360. data/examples/compass/images/flag/km.png +0 -0
  361. data/examples/compass/images/flag/kn.png +0 -0
  362. data/examples/compass/images/flag/kp.png +0 -0
  363. data/examples/compass/images/flag/kr.png +0 -0
  364. data/examples/compass/images/flag/kw.png +0 -0
  365. data/examples/compass/images/flag/ky.png +0 -0
  366. data/examples/compass/images/flag/kz.png +0 -0
  367. data/examples/compass/images/flag/la.png +0 -0
  368. data/examples/compass/images/flag/lb.png +0 -0
  369. data/examples/compass/images/flag/lc.png +0 -0
  370. data/examples/compass/images/flag/li.png +0 -0
  371. data/examples/compass/images/flag/lk.png +0 -0
  372. data/examples/compass/images/flag/lr.png +0 -0
  373. data/examples/compass/images/flag/ls.png +0 -0
  374. data/examples/compass/images/flag/lt.png +0 -0
  375. data/examples/compass/images/flag/lu.png +0 -0
  376. data/examples/compass/images/flag/lv.png +0 -0
  377. data/examples/compass/images/flag/ly.png +0 -0
  378. data/examples/compass/images/flag/ma.png +0 -0
  379. data/examples/compass/images/flag/mc.png +0 -0
  380. data/examples/compass/images/flag/md.png +0 -0
  381. data/examples/compass/images/flag/me.png +0 -0
  382. data/examples/compass/images/flag/mg.png +0 -0
  383. data/examples/compass/images/flag/mh.png +0 -0
  384. data/examples/compass/images/flag/mk.png +0 -0
  385. data/examples/compass/images/flag/ml.png +0 -0
  386. data/examples/compass/images/flag/mm.png +0 -0
  387. data/examples/compass/images/flag/mn.png +0 -0
  388. data/examples/compass/images/flag/mo.png +0 -0
  389. data/examples/compass/images/flag/mp.png +0 -0
  390. data/examples/compass/images/flag/mq.png +0 -0
  391. data/examples/compass/images/flag/mr.png +0 -0
  392. data/examples/compass/images/flag/ms.png +0 -0
  393. data/examples/compass/images/flag/mt.png +0 -0
  394. data/examples/compass/images/flag/mu.png +0 -0
  395. data/examples/compass/images/flag/mv.png +0 -0
  396. data/examples/compass/images/flag/mw.png +0 -0
  397. data/examples/compass/images/flag/mx.png +0 -0
  398. data/examples/compass/images/flag/my.png +0 -0
  399. data/examples/compass/images/flag/mz.png +0 -0
  400. data/examples/compass/images/flag/na.png +0 -0
  401. data/examples/compass/images/flag/nc.png +0 -0
  402. data/examples/compass/images/flag/ne.png +0 -0
  403. data/examples/compass/images/flag/nf.png +0 -0
  404. data/examples/compass/images/flag/ng.png +0 -0
  405. data/examples/compass/images/flag/ni.png +0 -0
  406. data/examples/compass/images/flag/nl.png +0 -0
  407. data/examples/compass/images/flag/no.png +0 -0
  408. data/examples/compass/images/flag/np.png +0 -0
  409. data/examples/compass/images/flag/nr.png +0 -0
  410. data/examples/compass/images/flag/nu.png +0 -0
  411. data/examples/compass/images/flag/nz.png +0 -0
  412. data/examples/compass/images/flag/om.png +0 -0
  413. data/examples/compass/images/flag/pa.png +0 -0
  414. data/examples/compass/images/flag/pe.png +0 -0
  415. data/examples/compass/images/flag/pf.png +0 -0
  416. data/examples/compass/images/flag/pg.png +0 -0
  417. data/examples/compass/images/flag/ph.png +0 -0
  418. data/examples/compass/images/flag/pk.png +0 -0
  419. data/examples/compass/images/flag/pl.png +0 -0
  420. data/examples/compass/images/flag/pm.png +0 -0
  421. data/examples/compass/images/flag/pn.png +0 -0
  422. data/examples/compass/images/flag/pr.png +0 -0
  423. data/examples/compass/images/flag/ps.png +0 -0
  424. data/examples/compass/images/flag/pt.png +0 -0
  425. data/examples/compass/images/flag/pw.png +0 -0
  426. data/examples/compass/images/flag/py.png +0 -0
  427. data/examples/compass/images/flag/qa.png +0 -0
  428. data/examples/compass/images/flag/re.png +0 -0
  429. data/examples/compass/images/flag/ro.png +0 -0
  430. data/examples/compass/images/flag/rs.png +0 -0
  431. data/examples/compass/images/flag/ru.png +0 -0
  432. data/examples/compass/images/flag/rw.png +0 -0
  433. data/examples/compass/images/flag/sa.png +0 -0
  434. data/examples/compass/images/flag/sb.png +0 -0
  435. data/examples/compass/images/flag/sc.png +0 -0
  436. data/examples/compass/images/flag/scotland.png +0 -0
  437. data/examples/compass/images/flag/sd.png +0 -0
  438. data/examples/compass/images/flag/se.png +0 -0
  439. data/examples/compass/images/flag/sg.png +0 -0
  440. data/examples/compass/images/flag/sh.png +0 -0
  441. data/examples/compass/images/flag/si.png +0 -0
  442. data/examples/compass/images/flag/sj.png +0 -0
  443. data/examples/compass/images/flag/sk.png +0 -0
  444. data/examples/compass/images/flag/sl.png +0 -0
  445. data/examples/compass/images/flag/sm.png +0 -0
  446. data/examples/compass/images/flag/sn.png +0 -0
  447. data/examples/compass/images/flag/so.png +0 -0
  448. data/examples/compass/images/flag/sr.png +0 -0
  449. data/examples/compass/images/flag/st.png +0 -0
  450. data/examples/compass/images/flag/sv.png +0 -0
  451. data/examples/compass/images/flag/sy.png +0 -0
  452. data/examples/compass/images/flag/sz.png +0 -0
  453. data/examples/compass/images/flag/tc.png +0 -0
  454. data/examples/compass/images/flag/td.png +0 -0
  455. data/examples/compass/images/flag/tf.png +0 -0
  456. data/examples/compass/images/flag/tg.png +0 -0
  457. data/examples/compass/images/flag/th.png +0 -0
  458. data/examples/compass/images/flag/tj.png +0 -0
  459. data/examples/compass/images/flag/tk.png +0 -0
  460. data/examples/compass/images/flag/tl.png +0 -0
  461. data/examples/compass/images/flag/tm.png +0 -0
  462. data/examples/compass/images/flag/tn.png +0 -0
  463. data/examples/compass/images/flag/to.png +0 -0
  464. data/examples/compass/images/flag/tr.png +0 -0
  465. data/examples/compass/images/flag/tt.png +0 -0
  466. data/examples/compass/images/flag/tv.png +0 -0
  467. data/examples/compass/images/flag/tw.png +0 -0
  468. data/examples/compass/images/flag/tz.png +0 -0
  469. data/examples/compass/images/flag/ua.png +0 -0
  470. data/examples/compass/images/flag/ug.png +0 -0
  471. data/examples/compass/images/flag/um.png +0 -0
  472. data/examples/compass/images/flag/us.png +0 -0
  473. data/examples/compass/images/flag/uy.png +0 -0
  474. data/examples/compass/images/flag/uz.png +0 -0
  475. data/examples/compass/images/flag/va.png +0 -0
  476. data/examples/compass/images/flag/vc.png +0 -0
  477. data/examples/compass/images/flag/ve.png +0 -0
  478. data/examples/compass/images/flag/vg.png +0 -0
  479. data/examples/compass/images/flag/vi.png +0 -0
  480. data/examples/compass/images/flag/vn.png +0 -0
  481. data/examples/compass/images/flag/vu.png +0 -0
  482. data/examples/compass/images/flag/wales.png +0 -0
  483. data/examples/compass/images/flag/wf.png +0 -0
  484. data/examples/compass/images/flag/ws.png +0 -0
  485. data/examples/compass/images/flag/ye.png +0 -0
  486. data/examples/compass/images/flag/yt.png +0 -0
  487. data/examples/compass/images/flag/za.png +0 -0
  488. data/examples/compass/images/flag/zm.png +0 -0
  489. data/examples/compass/images/flag/zw.png +0 -0
  490. data/examples/compass/images/icon-chrome.png +0 -0
  491. data/examples/compass/images/icon-firefox.png +0 -0
  492. data/examples/compass/images/icon-ie.png +0 -0
  493. data/examples/compass/images/icon-opera.png +0 -0
  494. data/examples/compass/images/icon-safari.png +0 -0
  495. data/examples/compass/pie.html.haml +0 -73
  496. data/examples/compass/sprites.html.haml +0 -37
  497. data/examples/compass/src/bp_layout.scss +0 -18
  498. data/examples/compass/src/compass.scss +0 -46
  499. data/examples/compass/src/images/blue_arrow.gif +0 -0
  500. data/examples/compass/src/pie.scss +0 -110
  501. data/examples/compass/src/sprites.scss +0 -25
  502. data/examples/compass/src/sticky_footer.scss +0 -11
  503. data/examples/compass/src/utilities.scss +0 -108
  504. data/examples/compass/sticky_footer.html.haml +0 -14
  505. data/examples/compass/utilities.html.haml +0 -189
  506. data/examples/css3/bootstrap.rb +0 -3
  507. data/examples/css3/clean.rb +0 -2
  508. data/examples/css3/config.rb +0 -6
  509. data/examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass +0 -10
  510. data/examples/css3/extensions/fancy-fonts/templates/project/manifest.rb +0 -6
  511. data/examples/css3/gradients.html.haml +0 -68
  512. data/examples/css3/images/button_bg.png +0 -0
  513. data/examples/css3/images/example.png +0 -0
  514. data/examples/css3/index.html.haml +0 -57
  515. data/examples/css3/src/_base.scss +0 -13
  516. data/examples/css3/src/fancy-fonts.scss +0 -13
  517. data/examples/css3/src/gradients.scss +0 -86
  518. data/examples/css3/src/main.scss +0 -108
  519. data/examples/downloader.rb +0 -58
  520. data/examples/ninesixty/bootstrap.rb +0 -4
  521. data/examples/ninesixty/clean.rb +0 -2
  522. data/examples/ninesixty/config.rb +0 -10
  523. data/examples/ninesixty/src/grid.scss +0 -15
  524. data/examples/ninesixty/src/text.scss +0 -8
  525. data/examples/susy/bootstrap.rb +0 -3
  526. data/examples/susy/clean.rb +0 -2
  527. data/examples/susy/config.rb +0 -10
  528. data/examples/susy/src/_base.scss +0 -61
  529. data/examples/susy/src/_defaults.scss +0 -140
  530. data/examples/susy/src/screen.scss +0 -100
  531. data/examples/yui/bootstrap.rb +0 -3
  532. data/examples/yui/clean.rb +0 -2
  533. data/examples/yui/config.rb +0 -1
  534. data/examples/yui/divisions.html.haml +0 -179
  535. data/examples/yui/index.html.haml +0 -19
  536. data/examples/yui/src/screen.scss +0 -13
  537. data/examples/yui/sub_divisions.html.haml +0 -169
  538. data/examples/yui/templates.html.haml +0 -54
  539. data/examples/yui/test.jpg +0 -0
  540. data/examples/yui/typography.html.haml +0 -132
  541. data/frameworks/blueprint/stylesheets/_blueprint.scss +0 -37
  542. data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +0 -101
  543. data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +0 -36
  544. data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +0 -28
  545. data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +0 -88
  546. data/frameworks/blueprint/stylesheets/blueprint/_form.scss +0 -66
  547. data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +0 -258
  548. data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +0 -111
  549. data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +0 -66
  550. data/frameworks/blueprint/stylesheets/blueprint/_link-icons.scss +0 -37
  551. data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +0 -152
  552. data/frameworks/blueprint/stylesheets/blueprint/_print.scss +0 -86
  553. data/frameworks/blueprint/stylesheets/blueprint/_reset.scss +0 -3
  554. data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +0 -121
  555. data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +0 -52
  556. data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +0 -90
  557. data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +0 -37
  558. data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +0 -83
  559. data/frameworks/blueprint/templates/basic/grid.png +0 -0
  560. data/frameworks/blueprint/templates/basic/ie.sass +0 -4
  561. data/frameworks/blueprint/templates/basic/manifest.rb +0 -30
  562. data/frameworks/blueprint/templates/basic/partials/_base.sass +0 -10
  563. data/frameworks/blueprint/templates/basic/print.sass +0 -4
  564. data/frameworks/blueprint/templates/basic/screen.sass +0 -12
  565. data/frameworks/blueprint/templates/buttons/buttons.sass +0 -49
  566. data/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
  567. data/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
  568. data/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
  569. data/frameworks/blueprint/templates/buttons/manifest.rb +0 -17
  570. data/frameworks/blueprint/templates/link_icons/link_icons.sass +0 -13
  571. data/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
  572. data/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
  573. data/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
  574. data/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
  575. data/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
  576. data/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
  577. data/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
  578. data/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
  579. data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -23
  580. data/frameworks/blueprint/templates/project/grid.png +0 -0
  581. data/frameworks/blueprint/templates/project/ie.sass +0 -16
  582. data/frameworks/blueprint/templates/project/manifest.rb +0 -30
  583. data/frameworks/blueprint/templates/project/partials/_base.sass +0 -11
  584. data/frameworks/blueprint/templates/project/print.sass +0 -8
  585. data/frameworks/blueprint/templates/project/screen.sass +0 -46
  586. data/frameworks/blueprint/templates/semantic/grid.png +0 -0
  587. data/frameworks/blueprint/templates/semantic/ie.sass +0 -16
  588. data/frameworks/blueprint/templates/semantic/manifest.rb +0 -33
  589. data/frameworks/blueprint/templates/semantic/partials/_base.sass +0 -10
  590. data/frameworks/blueprint/templates/semantic/partials/_form.sass +0 -6
  591. data/frameworks/blueprint/templates/semantic/partials/_page.sass +0 -17
  592. data/frameworks/blueprint/templates/semantic/partials/_two_col.sass +0 -38
  593. data/frameworks/blueprint/templates/semantic/print.sass +0 -5
  594. data/frameworks/blueprint/templates/semantic/screen.sass +0 -14
  595. data/frameworks/compass/stylesheets/_compass.scss +0 -3
  596. data/frameworks/compass/stylesheets/_lemonade.scss +0 -38
  597. data/frameworks/compass/stylesheets/compass/_css3.scss +0 -20
  598. data/frameworks/compass/stylesheets/compass/_layout.scss +0 -3
  599. data/frameworks/compass/stylesheets/compass/_reset-legacy.scss +0 -3
  600. data/frameworks/compass/stylesheets/compass/_reset.scss +0 -3
  601. data/frameworks/compass/stylesheets/compass/_support.scss +0 -40
  602. data/frameworks/compass/stylesheets/compass/_typography.scss +0 -4
  603. data/frameworks/compass/stylesheets/compass/_utilities.scss +0 -9
  604. data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +0 -17
  605. data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +0 -43
  606. data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +0 -42
  607. data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +0 -26
  608. data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +0 -130
  609. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +0 -76
  610. data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +0 -13
  611. data/frameworks/compass/stylesheets/compass/css3/_box.scss +0 -111
  612. data/frameworks/compass/stylesheets/compass/css3/_columns.scss +0 -157
  613. data/frameworks/compass/stylesheets/compass/css3/_filter.scss +0 -23
  614. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -48
  615. data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +0 -77
  616. data/frameworks/compass/stylesheets/compass/css3/_images.scss +0 -132
  617. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +0 -22
  618. data/frameworks/compass/stylesheets/compass/css3/_opacity.scss +0 -19
  619. data/frameworks/compass/stylesheets/compass/css3/_pie.scss +0 -73
  620. data/frameworks/compass/stylesheets/compass/css3/_regions.scss +0 -22
  621. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +0 -38
  622. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +0 -87
  623. data/frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss +0 -87
  624. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +0 -598
  625. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +0 -221
  626. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +0 -17
  627. data/frameworks/compass/stylesheets/compass/layout/_grid-background.scss +0 -178
  628. data/frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss +0 -23
  629. data/frameworks/compass/stylesheets/compass/layout/_stretching.scss +0 -24
  630. data/frameworks/compass/stylesheets/compass/reset/_utilities-legacy.scss +0 -135
  631. data/frameworks/compass/stylesheets/compass/reset/_utilities.scss +0 -142
  632. data/frameworks/compass/stylesheets/compass/typography/_links.scss +0 -3
  633. data/frameworks/compass/stylesheets/compass/typography/_lists.scss +0 -4
  634. data/frameworks/compass/stylesheets/compass/typography/_text.scss +0 -4
  635. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +0 -221
  636. data/frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss +0 -5
  637. data/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss +0 -28
  638. data/frameworks/compass/stylesheets/compass/typography/links/_unstyled-link.scss +0 -7
  639. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +0 -34
  640. data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +0 -61
  641. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +0 -50
  642. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +0 -44
  643. data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +0 -25
  644. data/frameworks/compass/stylesheets/compass/typography/text/_force-wrap.scss +0 -12
  645. data/frameworks/compass/stylesheets/compass/typography/text/_nowrap.scss +0 -2
  646. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +0 -68
  647. data/frameworks/compass/stylesheets/compass/utilities/_color.scss +0 -1
  648. data/frameworks/compass/stylesheets/compass/utilities/_general.scss +0 -6
  649. data/frameworks/compass/stylesheets/compass/utilities/_links.scss +0 -5
  650. data/frameworks/compass/stylesheets/compass/utilities/_lists.scss +0 -6
  651. data/frameworks/compass/stylesheets/compass/utilities/_print.scss +0 -17
  652. data/frameworks/compass/stylesheets/compass/utilities/_sprites.scss +0 -2
  653. data/frameworks/compass/stylesheets/compass/utilities/_tables.scss +0 -3
  654. data/frameworks/compass/stylesheets/compass/utilities/_text.scss +0 -5
  655. data/frameworks/compass/stylesheets/compass/utilities/color/_contrast.scss +0 -28
  656. data/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss +0 -44
  657. data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +0 -30
  658. data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +0 -46
  659. data/frameworks/compass/stylesheets/compass/utilities/general/_min.scss +0 -16
  660. data/frameworks/compass/stylesheets/compass/utilities/general/_reset.scss +0 -2
  661. data/frameworks/compass/stylesheets/compass/utilities/general/_tabs.scss +0 -1
  662. data/frameworks/compass/stylesheets/compass/utilities/general/_tag-cloud.scss +0 -18
  663. data/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss +0 -3
  664. data/frameworks/compass/stylesheets/compass/utilities/links/_link-colors.scss +0 -3
  665. data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled-link.scss +0 -3
  666. data/frameworks/compass/stylesheets/compass/utilities/lists/_bullets.scss +0 -3
  667. data/frameworks/compass/stylesheets/compass/utilities/lists/_horizontal-list.scss +0 -3
  668. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-block-list.scss +0 -3
  669. data/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss +0 -3
  670. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +0 -66
  671. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +0 -79
  672. data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating-rows-and-columns.scss +0 -22
  673. data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +0 -33
  674. data/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.scss +0 -9
  675. data/frameworks/compass/stylesheets/compass/utilities/text/_ellipsis.scss +0 -3
  676. data/frameworks/compass/stylesheets/compass/utilities/text/_nowrap.scss +0 -3
  677. data/frameworks/compass/stylesheets/compass/utilities/text/_replacement.scss +0 -3
  678. data/frameworks/compass/templates/ellipsis/ellipsis.sass +0 -9
  679. data/frameworks/compass/templates/ellipsis/manifest.rb +0 -27
  680. data/frameworks/compass/templates/ellipsis/xml/ellipsis.xml +0 -14
  681. data/frameworks/compass/templates/extension/manifest.rb +0 -26
  682. data/frameworks/compass/templates/extension/stylesheets/main.sass +0 -1
  683. data/frameworks/compass/templates/extension/templates/project/manifest.rb +0 -2
  684. data/frameworks/compass/templates/extension/templates/project/screen.sass +0 -2
  685. data/frameworks/compass/templates/pie/LICENSE +0 -12
  686. data/frameworks/compass/templates/pie/LICENSE-APACHE2.txt +0 -13
  687. data/frameworks/compass/templates/pie/LICENSE-GPL2.txt +0 -278
  688. data/frameworks/compass/templates/pie/PIE.htc +0 -96
  689. data/frameworks/compass/templates/pie/manifest.rb +0 -39
  690. data/frameworks/compass/templates/pie/pie.scss +0 -74
  691. data/frameworks/compass/templates/project/USAGE.markdown +0 -32
  692. data/frameworks/compass/templates/project/ie.sass +0 -6
  693. data/frameworks/compass/templates/project/manifest.rb +0 -4
  694. data/frameworks/compass/templates/project/print.sass +0 -6
  695. data/frameworks/compass/templates/project/screen.sass +0 -7
  696. data/lib/compass/app_integration/rails.rb +0 -18
  697. data/lib/compass/browser_support.rb +0 -62
  698. data/lib/compass/commands/generate_grid_background.rb +0 -96
  699. data/lib/compass/configuration.rb +0 -91
  700. data/lib/compass/configuration/adapters.rb +0 -77
  701. data/lib/compass/configuration/data.rb +0 -193
  702. data/lib/compass/configuration/defaults.rb +0 -187
  703. data/lib/compass/configuration/inheritance.rb +0 -304
  704. data/lib/compass/configuration/paths.rb +0 -19
  705. data/lib/compass/exec/switch_ui.rb +0 -179
  706. data/lib/compass/frameworks.rb +0 -133
  707. data/lib/compass/grid_builder.rb +0 -102
  708. data/lib/compass/sass_extensions/functions/colors.rb +0 -67
  709. data/lib/compass/sass_extensions/functions/constants.rb +0 -74
  710. data/lib/compass/sass_extensions/functions/cross_browser_support.rb +0 -70
  711. data/lib/compass/sass_extensions/functions/display.rb +0 -27
  712. data/lib/compass/sass_extensions/functions/enumerate.rb +0 -7
  713. data/lib/compass/sass_extensions/functions/env.rb +0 -5
  714. data/lib/compass/sass_extensions/functions/font_files.rb +0 -41
  715. data/lib/compass/sass_extensions/functions/gradient_support.rb +0 -540
  716. data/lib/compass/sass_extensions/functions/image_size.rb +0 -113
  717. data/lib/compass/sass_extensions/functions/inline_image.rb +0 -64
  718. data/lib/compass/sass_extensions/functions/lists.rb +0 -101
  719. data/lib/compass/sass_extensions/functions/math.rb +0 -63
  720. data/lib/compass/sass_extensions/functions/selectors.rb +0 -64
  721. data/lib/compass/sass_extensions/functions/urls.rb +0 -266
  722. data/lib/compass/sass_extensions/monkey_patches.rb +0 -3
  723. data/lib/compass/sass_extensions/monkey_patches/browser_support.rb +0 -95
  724. data/lib/compass/sass_extensions/monkey_patches/traversal.rb +0 -23
  725. data/lib/compass/util.rb +0 -29
  726. data/test/fixtures/stylesheets/blueprint/config.rb +0 -14
  727. data/test/fixtures/stylesheets/blueprint/css/ie.css +0 -76
  728. data/test/fixtures/stylesheets/blueprint/css/print.css +0 -56
  729. data/test/fixtures/stylesheets/blueprint/css/screen.css +0 -815
  730. data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +0 -56
  731. data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +0 -80
  732. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +0 -11
  733. data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +0 -30
  734. data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +0 -42
  735. data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +0 -435
  736. data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +0 -76
  737. data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +0 -46
  738. data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +0 -40
  739. data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +0 -651
  740. data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +0 -60
  741. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +0 -75
  742. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +0 -42
  743. data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +0 -437
  744. data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +0 -45
  745. data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +0 -146
  746. data/test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css +0 -35
  747. data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
  748. data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
  749. data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
  750. data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
  751. data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
  752. data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
  753. data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
  754. data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
  755. data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
  756. data/test/fixtures/stylesheets/blueprint/sass/ie.sass +0 -3
  757. data/test/fixtures/stylesheets/blueprint/sass/print.sass +0 -3
  758. data/test/fixtures/stylesheets/blueprint/sass/screen.sass +0 -18
  759. data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +0 -4
  760. data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +0 -34
  761. data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +0 -3
  762. data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +0 -3
  763. data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +0 -5
  764. data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +0 -3
  765. data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +0 -3
  766. data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +0 -3
  767. data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +0 -13
  768. data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +0 -3
  769. data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +0 -5
  770. data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +0 -5
  771. data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +0 -1
  772. data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +0 -3
  773. data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +0 -5
  774. data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +0 -3
  775. data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +0 -3
  776. data/test/fixtures/stylesheets/compass/css/pie.css +0 -26
  777. data/test/fixtures/stylesheets/compass/css/sprites.css +0 -1262
  778. data/test/fixtures/stylesheets/compass/sass/pie.scss +0 -47
  779. data/test/fixtures/stylesheets/compass/sass/sprites.scss +0 -13
  780. data/test/units/compass_module_test.rb +0 -36
  781. data/test/units/compass_png_test.rb +0 -46
@@ -1,27 +0,0 @@
1
- description "Plugin for cross-browser ellipsis truncated text."
2
-
3
- file 'xml/ellipsis.xml', :like => :css
4
- stylesheet 'ellipsis.sass'
5
-
6
- help %Q{
7
- First, install the plugin to get the xml file that makes this work in firefox:
8
-
9
- compass install compass/ellipsis
10
-
11
- Then @include "ellipsis" into your selectors to enable ellipsis
12
- there when text gets too long.
13
-
14
- The ellipsis.sass file is just an example for how to use this plugin,
15
- feel free to delete it.
16
-
17
- For more information see:
18
- http://mattsnider.com/css/css-string-truncation-with-ellipsis/
19
- }
20
-
21
- welcome_message %Q{
22
- The ellipsis.sass file is just an example for how to use this plugin,
23
- feel free to delete it.
24
-
25
- For more information see:
26
- http://mattsnider.com/css/css-string-truncation-with-ellipsis/
27
- }
@@ -1,14 +0,0 @@
1
- <?xml version="1.0"?>
2
- <bindings
3
- xmlns="http://www.mozilla.org/xbl"
4
- xmlns:xbl="http://www.mozilla.org/xbl"
5
- xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6
- >
7
- <binding id="ellipsis">
8
- <content>
9
- <xul:window>
10
- <xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
11
- </xul:window>
12
- </content>
13
- </binding>
14
- </bindings>
@@ -1,26 +0,0 @@
1
- description "Generate a compass extension."
2
-
3
- unless options.include?(:preferred_syntax)
4
- options[:preferred_syntax] = 'sass'
5
- end
6
-
7
- file 'templates/project/manifest.rb'
8
- file "stylesheets/main.sass", :to => "stylesheets/_#{File.basename(options[:pattern_name]||options[:project_name]||'main')}.#{options[:preferred_syntax]}"
9
-
10
- file "templates/project/screen.sass", :to => "templates/project/screen.#{options[:preferred_syntax]}"
11
-
12
-
13
- help %Q{
14
- To generate a compass extension:
15
- compass create my_extension --using compass/extension
16
- }
17
-
18
- welcome_message %Q{
19
- For a full tutorial on how to build your own extension see:
20
-
21
- http://compass-style.org/help/tutorials/extensions/
22
-
23
- }, :replace => true
24
-
25
- no_configuration_file!
26
- skip_compilation!
@@ -1 +0,0 @@
1
- // This is your framework's main stylesheet. Use it to import all default modules.
@@ -1,2 +0,0 @@
1
- # Make sure you list all the project template files here in the manifest.
2
- stylesheet 'screen.sass', :media => 'screen, projection'
@@ -1,2 +0,0 @@
1
- // This is where you put the contents of the main stylesheet for the user's project.
2
- // It should import your sass stylesheets and demonstrate how to use them.
@@ -1,12 +0,0 @@
1
- Copyright 2010 Jason Johnston
2
-
3
- CSS3 PIE is licensed under the terms of the Apache License Version 2.0, or
4
- alternatively under the terms of the General Public License (GPL) Version 2.
5
- You may use PIE according to either of these licenses as is most appropriate
6
- for your project on a case-by-case basis.
7
-
8
- The terms of each license can be found in the main directory of the PIE source
9
- repository:
10
-
11
- Apache License: http://github.com/lojjic/PIE/blob/master/LICENSE-APACHE2.txt
12
- GPL2 License: http://github.com/lojjic/PIE/blob/master/LICENSE-GPL2.txt
@@ -1,13 +0,0 @@
1
- Copyright 2010 Jason Johnston
2
-
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
6
-
7
- http://www.apache.org/licenses/LICENSE-2.0
8
-
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- See the License for the specific language governing permissions and
13
- limitations under the License.
@@ -1,278 +0,0 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 2, June 1991
3
-
4
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
- Everyone is permitted to copy and distribute verbatim copies
7
- of this license document, but changing it is not allowed.
8
-
9
- Preamble
10
-
11
- The licenses for most software are designed to take away your
12
- freedom to share and change it. By contrast, the GNU General Public
13
- License is intended to guarantee your freedom to share and change free
14
- software--to make sure the software is free for all its users. This
15
- General Public License applies to most of the Free Software
16
- Foundation's software and to any other program whose authors commit to
17
- using it. (Some other Free Software Foundation software is covered by
18
- the GNU Lesser General Public License instead.) You can apply it to
19
- your programs, too.
20
-
21
- When we speak of free software, we are referring to freedom, not
22
- price. Our General Public Licenses are designed to make sure that you
23
- have the freedom to distribute copies of free software (and charge for
24
- this service if you wish), that you receive source code or can get it
25
- if you want it, that you can change the software or use pieces of it
26
- in new free programs; and that you know you can do these things.
27
-
28
- To protect your rights, we need to make restrictions that forbid
29
- anyone to deny you these rights or to ask you to surrender the rights.
30
- These restrictions translate to certain responsibilities for you if you
31
- distribute copies of the software, or if you modify it.
32
-
33
- For example, if you distribute copies of such a program, whether
34
- gratis or for a fee, you must give the recipients all the rights that
35
- you have. You must make sure that they, too, receive or can get the
36
- source code. And you must show them these terms so they know their
37
- rights.
38
-
39
- We protect your rights with two steps: (1) copyright the software, and
40
- (2) offer you this license which gives you legal permission to copy,
41
- distribute and/or modify the software.
42
-
43
- Also, for each author's protection and ours, we want to make certain
44
- that everyone understands that there is no warranty for this free
45
- software. If the software is modified by someone else and passed on, we
46
- want its recipients to know that what they have is not the original, so
47
- that any problems introduced by others will not reflect on the original
48
- authors' reputations.
49
-
50
- Finally, any free program is threatened constantly by software
51
- patents. We wish to avoid the danger that redistributors of a free
52
- program will individually obtain patent licenses, in effect making the
53
- program proprietary. To prevent this, we have made it clear that any
54
- patent must be licensed for everyone's free use or not licensed at all.
55
-
56
- The precise terms and conditions for copying, distribution and
57
- modification follow.
58
-
59
- GNU GENERAL PUBLIC LICENSE
60
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
-
62
- 0. This License applies to any program or other work which contains
63
- a notice placed by the copyright holder saying it may be distributed
64
- under the terms of this General Public License. The "Program", below,
65
- refers to any such program or work, and a "work based on the Program"
66
- means either the Program or any derivative work under copyright law:
67
- that is to say, a work containing the Program or a portion of it,
68
- either verbatim or with modifications and/or translated into another
69
- language. (Hereinafter, translation is included without limitation in
70
- the term "modification".) Each licensee is addressed as "you".
71
-
72
- Activities other than copying, distribution and modification are not
73
- covered by this License; they are outside its scope. The act of
74
- running the Program is not restricted, and the output from the Program
75
- is covered only if its contents constitute a work based on the
76
- Program (independent of having been made by running the Program).
77
- Whether that is true depends on what the Program does.
78
-
79
- 1. You may copy and distribute verbatim copies of the Program's
80
- source code as you receive it, in any medium, provided that you
81
- conspicuously and appropriately publish on each copy an appropriate
82
- copyright notice and disclaimer of warranty; keep intact all the
83
- notices that refer to this License and to the absence of any warranty;
84
- and give any other recipients of the Program a copy of this License
85
- along with the Program.
86
-
87
- You may charge a fee for the physical act of transferring a copy, and
88
- you may at your option offer warranty protection in exchange for a fee.
89
-
90
- 2. You may modify your copy or copies of the Program or any portion
91
- of it, thus forming a work based on the Program, and copy and
92
- distribute such modifications or work under the terms of Section 1
93
- above, provided that you also meet all of these conditions:
94
-
95
- a) You must cause the modified files to carry prominent notices
96
- stating that you changed the files and the date of any change.
97
-
98
- b) You must cause any work that you distribute or publish, that in
99
- whole or in part contains or is derived from the Program or any
100
- part thereof, to be licensed as a whole at no charge to all third
101
- parties under the terms of this License.
102
-
103
- c) If the modified program normally reads commands interactively
104
- when run, you must cause it, when started running for such
105
- interactive use in the most ordinary way, to print or display an
106
- announcement including an appropriate copyright notice and a
107
- notice that there is no warranty (or else, saying that you provide
108
- a warranty) and that users may redistribute the program under
109
- these conditions, and telling the user how to view a copy of this
110
- License. (Exception: if the Program itself is interactive but
111
- does not normally print such an announcement, your work based on
112
- the Program is not required to print an announcement.)
113
-
114
- These requirements apply to the modified work as a whole. If
115
- identifiable sections of that work are not derived from the Program,
116
- and can be reasonably considered independent and separate works in
117
- themselves, then this License, and its terms, do not apply to those
118
- sections when you distribute them as separate works. But when you
119
- distribute the same sections as part of a whole which is a work based
120
- on the Program, the distribution of the whole must be on the terms of
121
- this License, whose permissions for other licensees extend to the
122
- entire whole, and thus to each and every part regardless of who wrote it.
123
-
124
- Thus, it is not the intent of this section to claim rights or contest
125
- your rights to work written entirely by you; rather, the intent is to
126
- exercise the right to control the distribution of derivative or
127
- collective works based on the Program.
128
-
129
- In addition, mere aggregation of another work not based on the Program
130
- with the Program (or with a work based on the Program) on a volume of
131
- a storage or distribution medium does not bring the other work under
132
- the scope of this License.
133
-
134
- 3. You may copy and distribute the Program (or a work based on it,
135
- under Section 2) in object code or executable form under the terms of
136
- Sections 1 and 2 above provided that you also do one of the following:
137
-
138
- a) Accompany it with the complete corresponding machine-readable
139
- source code, which must be distributed under the terms of Sections
140
- 1 and 2 above on a medium customarily used for software interchange; or,
141
-
142
- b) Accompany it with a written offer, valid for at least three
143
- years, to give any third party, for a charge no more than your
144
- cost of physically performing source distribution, a complete
145
- machine-readable copy of the corresponding source code, to be
146
- distributed under the terms of Sections 1 and 2 above on a medium
147
- customarily used for software interchange; or,
148
-
149
- c) Accompany it with the information you received as to the offer
150
- to distribute corresponding source code. (This alternative is
151
- allowed only for noncommercial distribution and only if you
152
- received the program in object code or executable form with such
153
- an offer, in accord with Subsection b above.)
154
-
155
- The source code for a work means the preferred form of the work for
156
- making modifications to it. For an executable work, complete source
157
- code means all the source code for all modules it contains, plus any
158
- associated interface definition files, plus the scripts used to
159
- control compilation and installation of the executable. However, as a
160
- special exception, the source code distributed need not include
161
- anything that is normally distributed (in either source or binary
162
- form) with the major components (compiler, kernel, and so on) of the
163
- operating system on which the executable runs, unless that component
164
- itself accompanies the executable.
165
-
166
- If distribution of executable or object code is made by offering
167
- access to copy from a designated place, then offering equivalent
168
- access to copy the source code from the same place counts as
169
- distribution of the source code, even though third parties are not
170
- compelled to copy the source along with the object code.
171
-
172
- 4. You may not copy, modify, sublicense, or distribute the Program
173
- except as expressly provided under this License. Any attempt
174
- otherwise to copy, modify, sublicense or distribute the Program is
175
- void, and will automatically terminate your rights under this License.
176
- However, parties who have received copies, or rights, from you under
177
- this License will not have their licenses terminated so long as such
178
- parties remain in full compliance.
179
-
180
- 5. You are not required to accept this License, since you have not
181
- signed it. However, nothing else grants you permission to modify or
182
- distribute the Program or its derivative works. These actions are
183
- prohibited by law if you do not accept this License. Therefore, by
184
- modifying or distributing the Program (or any work based on the
185
- Program), you indicate your acceptance of this License to do so, and
186
- all its terms and conditions for copying, distributing or modifying
187
- the Program or works based on it.
188
-
189
- 6. Each time you redistribute the Program (or any work based on the
190
- Program), the recipient automatically receives a license from the
191
- original licensor to copy, distribute or modify the Program subject to
192
- these terms and conditions. You may not impose any further
193
- restrictions on the recipients' exercise of the rights granted herein.
194
- You are not responsible for enforcing compliance by third parties to
195
- this License.
196
-
197
- 7. If, as a consequence of a court judgment or allegation of patent
198
- infringement or for any other reason (not limited to patent issues),
199
- conditions are imposed on you (whether by court order, agreement or
200
- otherwise) that contradict the conditions of this License, they do not
201
- excuse you from the conditions of this License. If you cannot
202
- distribute so as to satisfy simultaneously your obligations under this
203
- License and any other pertinent obligations, then as a consequence you
204
- may not distribute the Program at all. For example, if a patent
205
- license would not permit royalty-free redistribution of the Program by
206
- all those who receive copies directly or indirectly through you, then
207
- the only way you could satisfy both it and this License would be to
208
- refrain entirely from distribution of the Program.
209
-
210
- If any portion of this section is held invalid or unenforceable under
211
- any particular circumstance, the balance of the section is intended to
212
- apply and the section as a whole is intended to apply in other
213
- circumstances.
214
-
215
- It is not the purpose of this section to induce you to infringe any
216
- patents or other property right claims or to contest validity of any
217
- such claims; this section has the sole purpose of protecting the
218
- integrity of the free software distribution system, which is
219
- implemented by public license practices. Many people have made
220
- generous contributions to the wide range of software distributed
221
- through that system in reliance on consistent application of that
222
- system; it is up to the author/donor to decide if he or she is willing
223
- to distribute software through any other system and a licensee cannot
224
- impose that choice.
225
-
226
- This section is intended to make thoroughly clear what is believed to
227
- be a consequence of the rest of this License.
228
-
229
- 8. If the distribution and/or use of the Program is restricted in
230
- certain countries either by patents or by copyrighted interfaces, the
231
- original copyright holder who places the Program under this License
232
- may add an explicit geographical distribution limitation excluding
233
- those countries, so that distribution is permitted only in or among
234
- countries not thus excluded. In such case, this License incorporates
235
- the limitation as if written in the body of this License.
236
-
237
- 9. The Free Software Foundation may publish revised and/or new versions
238
- of the General Public License from time to time. Such new versions will
239
- be similar in spirit to the present version, but may differ in detail to
240
- address new problems or concerns.
241
-
242
- Each version is given a distinguishing version number. If the Program
243
- specifies a version number of this License which applies to it and "any
244
- later version", you have the option of following the terms and conditions
245
- either of that version or of any later version published by the Free
246
- Software Foundation. If the Program does not specify a version number of
247
- this License, you may choose any version ever published by the Free Software
248
- Foundation.
249
-
250
- 10. If you wish to incorporate parts of the Program into other free
251
- programs whose distribution conditions are different, write to the author
252
- to ask for permission. For software which is copyrighted by the Free
253
- Software Foundation, write to the Free Software Foundation; we sometimes
254
- make exceptions for this. Our decision will be guided by the two goals
255
- of preserving the free status of all derivatives of our free software and
256
- of promoting the sharing and reuse of software generally.
257
-
258
- NO WARRANTY
259
-
260
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
- REPAIR OR CORRECTION.
269
-
270
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
- POSSIBILITY OF SUCH DAMAGES.
@@ -1,96 +0,0 @@
1
- <!--
2
- PIE: CSS3 rendering for IE
3
- Version 1.0beta5
4
- http://css3pie.com
5
- Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2.
6
- -->
7
- <PUBLIC:COMPONENT lightWeight="true">
8
- <!-- saved from url=(0014)about:internet -->
9
- <PUBLIC:ATTACH EVENT="oncontentready" FOR="element" ONEVENT="init()" />
10
- <PUBLIC:ATTACH EVENT="ondocumentready" FOR="element" ONEVENT="init()" />
11
- <PUBLIC:ATTACH EVENT="ondetach" FOR="element" ONEVENT="cleanup()" />
12
-
13
- <script type="text/javascript">
14
- var doc = element.document;var f=window.PIE;
15
- if(!f){f=window.PIE={Q:"-pie-",nb:"Pie",La:"pie_",Ac:{TD:1,TH:1},cc:{TABLE:1,THEAD:1,TBODY:1,TFOOT:1,TR:1,INPUT:1,TEXTAREA:1,SELECT:1,OPTION:1,IMG:1,HR:1},fc:{A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},Gd:{submit:1,button:1,reset:1},aa:function(){}};try{doc.execCommand("BackgroundImageCache",false,true)}catch(aa){}for(var X=4,Y=doc.createElement("div"),ca=Y.getElementsByTagName("i"),Z;Y.innerHTML="<!--[if gt IE "+ ++X+"]><i></i><![endif]--\>",ca[0];);f.V=X;if(X===6)f.Q=f.Q.replace(/^-/,"");f.Ba=doc.documentMode||
16
- f.V;Y.innerHTML='<v:shape adj="1"/>';Z=Y.firstChild;Z.style.behavior="url(#default#VML)";f.zc=typeof Z.adj==="object";(function(){var a,b=0,c={};f.p={Za:function(d){if(!a){a=doc.createDocumentFragment();a.namespaces.add("css3vml","urn:schemas-microsoft-com:vml")}return a.createElement("css3vml:"+d)},Aa:function(d){return d&&d._pieId||(d._pieId="_"+ ++b)},Eb:function(d){var e,g,i,j,h=arguments;e=1;for(g=h.length;e<g;e++){j=h[e];for(i in j)if(j.hasOwnProperty(i))d[i]=j[i]}return d},Rb:function(d,e,
17
- g){var i=c[d],j,h;if(i)Object.prototype.toString.call(i)==="[object Array]"?i.push([e,g]):e.call(g,i);else{h=c[d]=[[e,g]];j=new Image;j.onload=function(){i=c[d]={i:j.width,f:j.height};for(var k=0,n=h.length;k<n;k++)h[k][0].call(h[k][1],i);j.onload=null};j.src=d}}}})();f.Na={gc:function(a,b,c,d){function e(){k=i>=90&&i<270?b:0;n=i<180?c:0;l=b-k;q=c-n}function g(){for(;i<0;)i+=360;i%=360}var i=d.ra;d=d.zb;var j,h,k,n,l,q,s,m;if(d){d=d.coords(a,b,c);j=d.x;h=d.y}if(i){i=i.jd();g();e();if(!d){j=k;h=n}d=
18
- f.Na.tc(j,h,i,l,q);a=d[0];d=d[1]}else if(d){a=b-j;d=c-h}else{j=h=a=0;d=c}s=a-j;m=d-h;if(i===void 0){i=!s?m<0?90:270:!m?s<0?180:0:-Math.atan2(m,s)/Math.PI*180;g();e()}return{ra:i,xc:j,yc:h,td:a,ud:d,Vd:k,Wd:n,rd:l,sd:q,kd:s,ld:m,rc:f.Na.dc(j,h,a,d)}},tc:function(a,b,c,d,e){if(c===0||c===180)return[d,b];else if(c===90||c===270)return[a,e];else{c=Math.tan(-c*Math.PI/180);a=c*a-b;b=-1/c;d=b*d-e;e=b-c;return[(d-a)/e,(c*d-b*a)/e]}},dc:function(a,b,c,d){a=c-a;b=d-b;return Math.abs(a===0?b:b===0?a:Math.sqrt(a*
19
- a+b*b))}};f.ea=function(){this.Gb=[];this.oc={}};f.ea.prototype={ba:function(a){var b=f.p.Aa(a),c=this.oc,d=this.Gb;if(!(b in c)){c[b]=d.length;d.push(a)}},Ha:function(a){a=f.p.Aa(a);var b=this.oc;if(a&&a in b){delete this.Gb[b[a]];delete b[a]}},wa:function(){for(var a=this.Gb,b=a.length;b--;)a[b]&&a[b]()}};f.Oa=new f.ea;f.Oa.Qd=function(){var a=this;if(!a.Rd){setInterval(function(){a.wa()},250);a.Rd=1}};(function(){function a(){f.K.wa();window.detachEvent("onunload",a);window.PIE=null}f.K=new f.ea;
20
- window.attachEvent("onunload",a);f.K.sa=function(b,c,d){b.attachEvent(c,d);this.ba(function(){b.detachEvent(c,d)})}})();f.Qa=new f.ea;f.K.sa(window,"onresize",function(){f.Qa.wa()});(function(){function a(){f.mb.wa()}f.mb=new f.ea;f.K.sa(window,"onscroll",a);f.Qa.ba(a)})();(function(){function a(){c=f.kb.md()}function b(){if(c){for(var d=0,e=c.length;d<e;d++)f.attach(c[d]);c=0}}var c;f.K.sa(window,"onbeforeprint",a);f.K.sa(window,"onafterprint",b)})();f.lb=new f.ea;f.K.sa(doc,"onmouseup",function(){f.lb.wa()});
21
- f.ge=function(){function a(h){this.Y=h}var b=doc.createElement("length-calc"),c=doc.documentElement,d=b.style,e={},g=["mm","cm","in","pt","pc"],i=g.length,j={};d.position="absolute";d.top=d.left="-9999px";for(c.appendChild(b);i--;){b.style.width="100"+g[i];e[g[i]]=b.offsetWidth/100}c.removeChild(b);b.style.width="1em";a.prototype={Kb:/(px|em|ex|mm|cm|in|pt|pc|%)$/,ic:function(){var h=this.Id;if(h===void 0)h=this.Id=parseFloat(this.Y);return h},yb:function(){var h=this.$d;if(!h)h=this.$d=(h=this.Y.match(this.Kb))&&
22
- h[0]||"px";return h},a:function(h,k){var n=this.ic(),l=this.yb();switch(l){case "px":return n;case "%":return n*(typeof k==="function"?k():k)/100;case "em":return n*this.xb(h);case "ex":return n*this.xb(h)/2;default:return n*e[l]}},xb:function(h){var k=h.currentStyle.fontSize,n,l;if(k.indexOf("px")>0)return parseFloat(k);else if(h.tagName in f.cc){l=this;n=h.parentNode;return f.n(k).a(n,function(){return l.xb(n)})}else{h.appendChild(b);k=b.offsetWidth;b.parentNode===h&&h.removeChild(b);return k}}};
23
- f.n=function(h){return j[h]||(j[h]=new a(h))};return a}();f.Ja=function(){function a(e){this.X=e}var b=f.n("50%"),c={top:1,center:1,bottom:1},d={left:1,center:1,right:1};a.prototype={zd:function(){if(!this.ac){var e=this.X,g=e.length,i=f.v,j=i.pa,h=f.n("0");j=j.ma;h=["left",h,"top",h];if(g===1){e.push(new i.ob(j,"center"));g++}if(g===2){j&(e[0].k|e[1].k)&&e[0].d in c&&e[1].d in d&&e.push(e.shift());if(e[0].k&j)if(e[0].d==="center")h[1]=b;else h[0]=e[0].d;else if(e[0].W())h[1]=f.n(e[0].d);if(e[1].k&
24
- j)if(e[1].d==="center")h[3]=b;else h[2]=e[1].d;else if(e[1].W())h[3]=f.n(e[1].d)}this.ac=h}return this.ac},coords:function(e,g,i){var j=this.zd(),h=j[1].a(e,g);e=j[3].a(e,i);return{x:j[0]==="right"?g-h:h,y:j[2]==="bottom"?i-e:e}}};return a}();f.Ka=function(){function a(b,c){this.i=b;this.f=c}a.prototype={a:function(b,c,d,e,g){var i=this.i,j=this.f,h=c/d;e=e/g;if(i==="contain"){i=e>h?c:d*e;j=e>h?c/e:d}else if(i==="cover"){i=e<h?c:d*e;j=e<h?c/e:d}else if(i==="auto"){j=j==="auto"?g:j.a(b,d);i=j*e}else{i=
25
- i.a(b,c);j=j==="auto"?i/e:j.a(b,d)}return{i:i,f:j}}};a.Kc=new a("auto","auto");return a}();f.Ec=function(){function a(b){this.Y=b}a.prototype={Kb:/[a-z]+$/i,yb:function(){return this.ad||(this.ad=this.Y.match(this.Kb)[0].toLowerCase())},jd:function(){var b=this.Vc,c;if(b===undefined){b=this.yb();c=parseFloat(this.Y,10);b=this.Vc=b==="deg"?c:b==="rad"?c/Math.PI*180:b==="grad"?c/400*360:b==="turn"?c*360:0}return b}};return a}();f.Jc=function(){function a(c){this.Y=c}var b={};a.Pd=/\s*rgba\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d+|\d*\.\d+)\s*\)\s*/;
26
- a.Fb={aliceblue:"F0F8FF",antiquewhite:"FAEBD7",aqua:"0FF",aquamarine:"7FFFD4",azure:"F0FFFF",beige:"F5F5DC",bisque:"FFE4C4",black:"000",blanchedalmond:"FFEBCD",blue:"00F",blueviolet:"8A2BE2",brown:"A52A2A",burlywood:"DEB887",cadetblue:"5F9EA0",chartreuse:"7FFF00",chocolate:"D2691E",coral:"FF7F50",cornflowerblue:"6495ED",cornsilk:"FFF8DC",crimson:"DC143C",cyan:"0FF",darkblue:"00008B",darkcyan:"008B8B",darkgoldenrod:"B8860B",darkgray:"A9A9A9",darkgreen:"006400",darkkhaki:"BDB76B",darkmagenta:"8B008B",
27
- darkolivegreen:"556B2F",darkorange:"FF8C00",darkorchid:"9932CC",darkred:"8B0000",darksalmon:"E9967A",darkseagreen:"8FBC8F",darkslateblue:"483D8B",darkslategray:"2F4F4F",darkturquoise:"00CED1",darkviolet:"9400D3",deeppink:"FF1493",deepskyblue:"00BFFF",dimgray:"696969",dodgerblue:"1E90FF",firebrick:"B22222",floralwhite:"FFFAF0",forestgreen:"228B22",fuchsia:"F0F",gainsboro:"DCDCDC",ghostwhite:"F8F8FF",gold:"FFD700",goldenrod:"DAA520",gray:"808080",green:"008000",greenyellow:"ADFF2F",honeydew:"F0FFF0",
28
- hotpink:"FF69B4",indianred:"CD5C5C",indigo:"4B0082",ivory:"FFFFF0",khaki:"F0E68C",lavender:"E6E6FA",lavenderblush:"FFF0F5",lawngreen:"7CFC00",lemonchiffon:"FFFACD",lightblue:"ADD8E6",lightcoral:"F08080",lightcyan:"E0FFFF",lightgoldenrodyellow:"FAFAD2",lightgreen:"90EE90",lightgrey:"D3D3D3",lightpink:"FFB6C1",lightsalmon:"FFA07A",lightseagreen:"20B2AA",lightskyblue:"87CEFA",lightslategray:"789",lightsteelblue:"B0C4DE",lightyellow:"FFFFE0",lime:"0F0",limegreen:"32CD32",linen:"FAF0E6",magenta:"F0F",
29
- maroon:"800000",mediumauqamarine:"66CDAA",mediumblue:"0000CD",mediumorchid:"BA55D3",mediumpurple:"9370D8",mediumseagreen:"3CB371",mediumslateblue:"7B68EE",mediumspringgreen:"00FA9A",mediumturquoise:"48D1CC",mediumvioletred:"C71585",midnightblue:"191970",mintcream:"F5FFFA",mistyrose:"FFE4E1",moccasin:"FFE4B5",navajowhite:"FFDEAD",navy:"000080",oldlace:"FDF5E6",olive:"808000",olivedrab:"688E23",orange:"FFA500",orangered:"FF4500",orchid:"DA70D6",palegoldenrod:"EEE8AA",palegreen:"98FB98",paleturquoise:"AFEEEE",
30
- palevioletred:"D87093",papayawhip:"FFEFD5",peachpuff:"FFDAB9",peru:"CD853F",pink:"FFC0CB",plum:"DDA0DD",powderblue:"B0E0E6",purple:"800080",red:"F00",rosybrown:"BC8F8F",royalblue:"4169E1",saddlebrown:"8B4513",salmon:"FA8072",sandybrown:"F4A460",seagreen:"2E8B57",seashell:"FFF5EE",sienna:"A0522D",silver:"C0C0C0",skyblue:"87CEEB",slateblue:"6A5ACD",slategray:"708090",snow:"FFFAFA",springgreen:"00FF7F",steelblue:"4682B4",tan:"D2B48C",teal:"008080",thistle:"D8BFD8",tomato:"FF6347",turquoise:"40E0D0",
31
- violet:"EE82EE",wheat:"F5DEB3",white:"FFF",whitesmoke:"F5F5F5",yellow:"FF0",yellowgreen:"9ACD32"};a.prototype={parse:function(){if(!this.Ua){var c=this.Y,d;if(d=c.match(a.Pd)){this.Ua="rgb("+d[1]+","+d[2]+","+d[3]+")";this.Yb=parseFloat(d[4])}else{if((d=c.toLowerCase())in a.Fb)c="#"+a.Fb[d];this.Ua=c;this.Yb=c==="transparent"?0:1}}},T:function(c){this.parse();return this.Ua==="currentColor"?c.currentStyle.color:this.Ua},fa:function(){this.parse();return this.Yb}};f.ha=function(c){return b[c]||(b[c]=
32
- new a(c))};return a}();f.v=function(){function a(c){this.$a=c;this.ch=0;this.X=[];this.Ga=0}var b=a.pa={Ia:1,Wb:2,B:4,Lc:8,Xb:16,ma:32,J:64,na:128,oa:256,Ra:512,Tc:1024,URL:2048};a.ob=function(c,d){this.k=c;this.d=d};a.ob.prototype={Ca:function(){return this.k&b.J||this.k&b.na&&this.d==="0"},W:function(){return this.Ca()||this.k&b.Ra}};a.prototype={ce:/\s/,Jd:/^[\+\-]?(\d*\.)?\d+/,url:/^url\(\s*("([^"]*)"|'([^']*)'|([!#$%&*-~]*))\s*\)/i,nc:/^\-?[_a-z][\w-]*/i,Xd:/^("([^"]*)"|'([^']*)')/,Bd:/^#([\da-f]{6}|[\da-f]{3})/i,
33
- ae:{px:b.J,em:b.J,ex:b.J,mm:b.J,cm:b.J,"in":b.J,pt:b.J,pc:b.J,deg:b.Ia,rad:b.Ia,grad:b.Ia},fd:{rgb:1,rgba:1,hsl:1,hsla:1},next:function(c){function d(q,s){q=new a.ob(q,s);if(!c){k.X.push(q);k.Ga++}return q}function e(){k.Ga++;return null}var g,i,j,h,k=this;if(this.Ga<this.X.length)return this.X[this.Ga++];for(;this.ce.test(this.$a.charAt(this.ch));)this.ch++;if(this.ch>=this.$a.length)return e();i=this.ch;g=this.$a.substring(this.ch);j=g.charAt(0);switch(j){case "#":if(h=g.match(this.Bd)){this.ch+=
34
- h[0].length;return d(b.B,h[0])}break;case '"':case "'":if(h=g.match(this.Xd)){this.ch+=h[0].length;return d(b.Tc,h[2]||h[3]||"")}break;case "/":case ",":this.ch++;return d(b.oa,j);case "u":if(h=g.match(this.url)){this.ch+=h[0].length;return d(b.URL,h[2]||h[3]||h[4]||"")}}if(h=g.match(this.Jd)){j=h[0];this.ch+=j.length;if(g.charAt(j.length)==="%"){this.ch++;return d(b.Ra,j+"%")}if(h=g.substring(j.length).match(this.nc)){j+=h[0];this.ch+=h[0].length;return d(this.ae[h[0].toLowerCase()]||b.Lc,j)}return d(b.na,
35
- j)}if(h=g.match(this.nc)){j=h[0];this.ch+=j.length;if(j.toLowerCase()in f.Jc.Fb||j==="currentColor"||j==="transparent")return d(b.B,j);if(g.charAt(j.length)==="("){this.ch++;if(j.toLowerCase()in this.fd){g=function(q){return q&&q.k&b.na};h=function(q){return q&&q.k&(b.na|b.Ra)};var n=function(q,s){return q&&q.d===s},l=function(){return k.next(1)};if((j.charAt(0)==="r"?h(l()):g(l()))&&n(l(),",")&&h(l())&&n(l(),",")&&h(l())&&(j==="rgb"||j==="hsa"||n(l(),",")&&g(l()))&&n(l(),")"))return d(b.B,this.$a.substring(i,
36
- this.ch));return e()}return d(b.Xb,j)}return d(b.ma,j)}this.ch++;return d(b.Wb,j)},D:function(){return this.X[this.Ga-- -2]},all:function(){for(;this.next(););return this.X},la:function(c,d){for(var e=[],g,i;g=this.next();){if(c(g)){i=true;this.D();break}e.push(g)}return d&&!i?null:e}};return a}();var da=function(a){this.e=a};da.prototype={Z:0,Nd:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.x!==b.x||a.y!==b.y)},Sd:function(){var a=this.qb,b;return!a||(b=this.o())&&(a.i!==b.i||a.f!==b.f)},
37
- hc:function(){var a=this.e,b=a.getBoundingClientRect(),c=f.Ba===9;return{x:b.left,y:b.top,i:c?a.offsetWidth:b.right-b.left,f:c?a.offsetHeight:b.bottom-b.top}},o:function(){return this.Z?this.Va||(this.Va=this.hc()):this.hc()},Ad:function(){return!!this.qb},cb:function(){++this.Z},hb:function(){if(!--this.Z){if(this.Va)this.qb=this.Va;this.Va=null}}};(function(){function a(b){var c=f.p.Aa(b);return function(){if(this.Z){var d=this.$b||(this.$b={});return c in d?d[c]:(d[c]=b.call(this))}else return b.call(this)}}
38
- f.C={Z:0,ja:function(b){function c(d){this.e=d;this.Zb=this.ia()}f.p.Eb(c.prototype,f.C,b);c.$c={};return c},j:function(){var b=this.ia(),c=this.constructor.$c;return b?b in c?c[b]:(c[b]=this.ka(b)):null},ia:a(function(){var b=this.e,c=this.constructor,d=b.style;b=b.currentStyle;var e=this.va,g=this.Fa,i=c.Yc||(c.Yc=f.Q+e);c=c.Zc||(c.Zc=f.nb+g.charAt(0).toUpperCase()+g.substring(1));return d[c]||b.getAttribute(i)||d[g]||b.getAttribute(e)}),h:a(function(){return!!this.j()}),G:a(function(){var b=this.ia(),
39
- c=b!==this.Zb;this.Zb=b;return c}),ua:a,cb:function(){++this.Z},hb:function(){--this.Z||delete this.$b}}})();f.Sb=f.C.ja({va:f.Q+"background",Fa:f.nb+"Background",cd:{scroll:1,fixed:1,local:1},fb:{"repeat-x":1,"repeat-y":1,repeat:1,"no-repeat":1},sc:{"padding-box":1,"border-box":1,"content-box":1},Od:{top:1,right:1,bottom:1,left:1,center:1},Td:{contain:1,cover:1},eb:{Ma:"backgroundClip",B:"backgroundColor",da:"backgroundImage",Pa:"backgroundOrigin",R:"backgroundPosition",S:"backgroundRepeat",Sa:"backgroundSize"},
40
- ka:function(a){function b(v){return v&&v.W()||v.k&k&&v.d in m}function c(v){return v&&(v.W()&&f.n(v.d)||v.d==="auto"&&"auto")}var d=this.e.currentStyle,e,g,i,j=f.v.pa,h=j.oa,k=j.ma,n=j.B,l,q,s=0,m=this.Od,r,p,t={L:[]};if(this.wb()){e=new f.v(a);for(i={};g=e.next();){l=g.k;q=g.d;if(!i.N&&l&j.Xb&&q==="linear-gradient"){r={ca:[],N:q};for(p={};g=e.next();){l=g.k;q=g.d;if(l&j.Wb&&q===")"){p.color&&r.ca.push(p);r.ca.length>1&&f.p.Eb(i,r);break}if(l&n){if(r.ra||r.zb){g=e.D();if(g.k!==h)break;e.next()}p=
41
- {color:f.ha(q)};g=e.next();if(g.W())p.db=f.n(g.d);else e.D()}else if(l&j.Ia&&!r.ra&&!p.color&&!r.ca.length)r.ra=new f.Ec(g.d);else if(b(g)&&!r.zb&&!p.color&&!r.ca.length){e.D();r.zb=new f.Ja(e.la(function(v){return!b(v)},false))}else if(l&h&&q===","){if(p.color){r.ca.push(p);p={}}}else break}}else if(!i.N&&l&j.URL){i.Ab=q;i.N="image"}else if(b(g)&&!i.$){e.D();i.$=new f.Ja(e.la(function(v){return!b(v)},false))}else if(l&k)if(q in this.fb&&!i.bb)i.bb=q;else if(q in this.sc&&!i.Wa){i.Wa=q;if((g=e.next())&&
42
- g.k&k&&g.d in this.sc)i.ub=g.d;else{i.ub=q;e.D()}}else if(q in this.cd&&!i.bc)i.bc=q;else return null;else if(l&n&&!t.color)t.color=f.ha(q);else if(l&h&&q==="/"&&!i.Xa&&i.$){g=e.next();if(g.k&k&&g.d in this.Td)i.Xa=new f.Ka(g.d);else if(g=c(g)){l=c(e.next());if(!l){l=g;e.D()}i.Xa=new f.Ka(g,l)}else return null}else if(l&h&&q===","&&i.N){i.Hb=a.substring(s,e.ch-1);s=e.ch;t.L.push(i);i={}}else return null}if(i.N){i.Hb=a.substring(s);t.L.push(i)}}else this.Bc(f.Ba<9?function(){var v=this.eb,o=d[v.R+
43
- "X"],u=d[v.R+"Y"],x=d[v.da],y=d[v.B];if(y!=="transparent")t.color=f.ha(y);if(x!=="none")t.L=[{N:"image",Ab:(new f.v(x)).next().d,bb:d[v.S],$:new f.Ja((new f.v(o+" "+u)).all())}]}:function(){var v=this.eb,o=/\s*,\s*/,u=d[v.da].split(o),x=d[v.B],y,z,D,G,E,B;if(x!=="transparent")t.color=f.ha(x);if((G=u.length)&&u[0]!=="none"){x=d[v.S].split(o);y=d[v.R].split(o);z=d[v.Pa].split(o);D=d[v.Ma].split(o);v=d[v.Sa].split(o);t.L=[];for(o=0;o<G;o++)if((E=u[o])&&E!=="none"){B=v[o].split(" ");t.L.push({Hb:E+" "+
44
- x[o]+" "+y[o]+" / "+v[o]+" "+z[o]+" "+D[o],N:"image",Ab:(new f.v(E)).next().d,bb:x[o],$:new f.Ja((new f.v(y[o])).all()),Wa:z[o],ub:D[o],Xa:new f.Ka(B[0],B[1])})}}});return t.color||t.L[0]?t:null},Bc:function(a){var b=f.Ba>8,c=this.eb,d=this.e.runtimeStyle,e=d[c.da],g=d[c.B],i=d[c.S],j,h,k,n;if(e)d[c.da]="";if(g)d[c.B]="";if(i)d[c.S]="";if(b){j=d[c.Ma];h=d[c.Pa];n=d[c.R];k=d[c.Sa];if(j)d[c.Ma]="";if(h)d[c.Pa]="";if(n)d[c.R]="";if(k)d[c.Sa]=""}a=a.call(this);if(e)d[c.da]=e;if(g)d[c.B]=g;if(i)d[c.S]=
45
- i;if(b){if(j)d[c.Ma]=j;if(h)d[c.Pa]=h;if(n)d[c.R]=n;if(k)d[c.Sa]=k}return a},ia:f.C.ua(function(){return this.wb()||this.Bc(function(){var a=this.e.currentStyle,b=this.eb;return a[b.B]+" "+a[b.da]+" "+a[b.S]+" "+a[b.R+"X"]+" "+a[b.R+"Y"]})}),wb:f.C.ua(function(){var a=this.e;return a.style[this.Fa]||a.currentStyle.getAttribute(this.va)}),qc:function(){var a=0;if(f.V<7){a=this.e;a=""+(a.style[f.nb+"PngFix"]||a.currentStyle.getAttribute(f.Q+"png-fix"))==="true"}return a},h:f.C.ua(function(){return(this.wb()||
46
- this.qc())&&!!this.j()})});f.Vb=f.C.ja({wc:["Top","Right","Bottom","Left"],Hd:{thin:"1px",medium:"3px",thick:"5px"},ka:function(){var a={},b={},c={},d=false,e=true,g=true,i=true;this.Cc(function(){for(var j=this.e.currentStyle,h=0,k,n,l,q,s,m,r;h<4;h++){l=this.wc[h];r=l.charAt(0).toLowerCase();k=b[r]=j["border"+l+"Style"];n=j["border"+l+"Color"];l=j["border"+l+"Width"];if(h>0){if(k!==q)g=false;if(n!==s)e=false;if(l!==m)i=false}q=k;s=n;m=l;c[r]=f.ha(n);l=a[r]=f.n(b[r]==="none"?"0":this.Hd[l]||l);if(l.a(this.e)>
47
- 0)d=true}});return d?{I:a,Yd:b,gd:c,de:i,hd:e,Zd:g}:null},ia:f.C.ua(function(){var a=this.e,b=a.currentStyle,c;a.tagName in f.Ac&&a.offsetParent.currentStyle.borderCollapse==="collapse"||this.Cc(function(){c=b.borderWidth+"|"+b.borderStyle+"|"+b.borderColor});return c}),Cc:function(a){var b=this.e.runtimeStyle,c=b.borderWidth,d=b.borderColor;if(c)b.borderWidth="";if(d)b.borderColor="";a=a.call(this);if(c)b.borderWidth=c;if(d)b.borderColor=d;return a}});(function(){f.jb=f.C.ja({va:"border-radius",
48
- Fa:"borderRadius",ka:function(b){var c=null,d,e,g,i,j=false;if(b){e=new f.v(b);var h=function(){for(var k=[],n;(g=e.next())&&g.W();){i=f.n(g.d);n=i.ic();if(n<0)return null;if(n>0)j=true;k.push(i)}return k.length>0&&k.length<5?{tl:k[0],tr:k[1]||k[0],br:k[2]||k[0],bl:k[3]||k[1]||k[0]}:null};if(b=h()){if(g){if(g.k&f.v.pa.oa&&g.d==="/")d=h()}else d=b;if(j&&b&&d)c={x:b,y:d}}}return c}});var a=f.n("0");a={tl:a,tr:a,br:a,bl:a};f.jb.Dc={x:a,y:a}})();f.Ub=f.C.ja({va:"border-image",Fa:"borderImage",fb:{stretch:1,
49
- round:1,repeat:1,space:1},ka:function(a){var b=null,c,d,e,g,i,j,h=0,k=f.v.pa,n=k.ma,l=k.na,q=k.Ra;if(a){c=new f.v(a);b={};for(var s=function(p){return p&&p.k&k.oa&&p.d==="/"},m=function(p){return p&&p.k&n&&p.d==="fill"},r=function(){g=c.la(function(p){return!(p.k&(l|q))});if(m(c.next())&&!b.fill)b.fill=true;else c.D();if(s(c.next())){h++;i=c.la(function(p){return!p.W()&&!(p.k&n&&p.d==="auto")});if(s(c.next())){h++;j=c.la(function(p){return!p.Ca()})}}else c.D()};a=c.next();){d=a.k;e=a.d;if(d&(l|q)&&
50
- !g){c.D();r()}else if(m(a)&&!b.fill){b.fill=true;r()}else if(d&n&&this.fb[e]&&!b.repeat){b.repeat={f:e};if(a=c.next())if(a.k&n&&this.fb[a.d])b.repeat.Ob=a.d;else c.D()}else if(d&k.URL&&!b.src)b.src=e;else return null}if(!b.src||!g||g.length<1||g.length>4||i&&i.length>4||h===1&&i.length<1||j&&j.length>4||h===2&&j.length<1)return null;if(!b.repeat)b.repeat={f:"stretch"};if(!b.repeat.Ob)b.repeat.Ob=b.repeat.f;a=function(p,t){return{t:t(p[0]),r:t(p[1]||p[0]),b:t(p[2]||p[0]),l:t(p[3]||p[1]||p[0])}};b.slice=
51
- a(g,function(p){return f.n(p.k&l?p.d+"px":p.d)});if(i&&i[0])b.I=a(i,function(p){return p.W()?f.n(p.d):p.d});if(j&&j[0])b.Da=a(j,function(p){return p.Ca()?f.n(p.d):p.d})}return b}});f.Ic=f.C.ja({va:"box-shadow",Fa:"boxShadow",ka:function(a){var b,c=f.n,d=f.v.pa,e;if(a){e=new f.v(a);b={Da:[],Bb:[]};for(a=function(){for(var g,i,j,h,k,n;g=e.next();){j=g.d;i=g.k;if(i&d.oa&&j===",")break;else if(g.Ca()&&!k){e.D();k=e.la(function(l){return!l.Ca()})}else if(i&d.B&&!h)h=j;else if(i&d.ma&&j==="inset"&&!n)n=
52
- true;else return false}g=k&&k.length;if(g>1&&g<5){(n?b.Bb:b.Da).push({ee:c(k[0].d),fe:c(k[1].d),blur:c(k[2]?k[2].d:"0"),Ud:c(k[3]?k[3].d:"0"),color:f.ha(h||"currentColor")});return true}return false};a(););}return b&&(b.Bb.length||b.Da.length)?b:null}});f.Uc=f.C.ja({ia:f.C.ua(function(){var a=this.e.currentStyle;return a.visibility+"|"+a.display}),ka:function(){var a=this.e,b=a.runtimeStyle;a=a.currentStyle;var c=b.visibility,d;b.visibility="";d=a.visibility;b.visibility=c;return{be:d!=="hidden",
53
- nd:a.display!=="none"}},h:function(){return false}});f.u={P:function(a){function b(c,d,e,g){this.e=c;this.s=d;this.g=e;this.parent=g}f.p.Eb(b.prototype,f.u,a);return b},Cb:false,O:function(){return false},Ea:f.aa,Lb:function(){this.m();this.h()&&this.U()},ib:function(){this.Cb=true},Mb:function(){this.h()?this.U():this.m()},sb:function(a,b){this.vc(a);for(var c=this.qa||(this.qa=[]),d=a+1,e=c.length,g;d<e;d++)if(g=c[d])break;c[a]=b;this.H().insertBefore(b,g||null)},ya:function(a){var b=this.qa;return b&&
54
- b[a]||null},vc:function(a){var b=this.ya(a),c=this.Ta;if(b&&c){c.removeChild(b);this.qa[a]=null}},za:function(a,b,c,d){var e=this.rb||(this.rb={}),g=e[a];if(!g){g=e[a]=f.p.Za("shape");if(b)g.appendChild(g[b]=f.p.Za(b));if(d){c=this.ya(d);if(!c){this.sb(d,doc.createElement("group"+d));c=this.ya(d)}}c.appendChild(g);a=g.style;a.position="absolute";a.left=a.top=0;a.behavior="url(#default#VML)"}return g},vb:function(a){var b=this.rb,c=b&&b[a];if(c){c.parentNode.removeChild(c);delete b[a]}return!!c},kc:function(a){var b=
55
- this.e,c=this.s.o(),d=c.i,e=c.f,g,i,j,h,k,n;c=a.x.tl.a(b,d);g=a.y.tl.a(b,e);i=a.x.tr.a(b,d);j=a.y.tr.a(b,e);h=a.x.br.a(b,d);k=a.y.br.a(b,e);n=a.x.bl.a(b,d);a=a.y.bl.a(b,e);d=Math.min(d/(c+i),e/(j+k),d/(n+h),e/(g+a));if(d<1){c*=d;g*=d;i*=d;j*=d;h*=d;k*=d;n*=d;a*=d}return{x:{tl:c,tr:i,br:h,bl:n},y:{tl:g,tr:j,br:k,bl:a}}},xa:function(a,b,c){b=b||1;var d,e,g=this.s.o();e=g.i*b;g=g.f*b;var i=this.g.F,j=Math.floor,h=Math.ceil,k=a?a.Jb*b:0,n=a?a.Ib*b:0,l=a?a.tb*b:0;a=a?a.Db*b:0;var q,s,m,r,p;if(c||i.h()){d=
56
- this.kc(c||i.j());c=d.x.tl*b;i=d.y.tl*b;q=d.x.tr*b;s=d.y.tr*b;m=d.x.br*b;r=d.y.br*b;p=d.x.bl*b;b=d.y.bl*b;e="m"+j(a)+","+j(i)+"qy"+j(c)+","+j(k)+"l"+h(e-q)+","+j(k)+"qx"+h(e-n)+","+j(s)+"l"+h(e-n)+","+h(g-r)+"qy"+h(e-m)+","+h(g-l)+"l"+j(p)+","+h(g-l)+"qx"+j(a)+","+h(g-b)+" x e"}else e="m"+j(a)+","+j(k)+"l"+h(e-n)+","+j(k)+"l"+h(e-n)+","+h(g-l)+"l"+j(a)+","+h(g-l)+"xe";return e},H:function(){var a=this.parent.ya(this.M),b;if(!a){a=doc.createElement(this.Ya);b=a.style;b.position="absolute";b.top=b.left=
57
- 0;this.parent.sb(this.M,a)}return a},mc:function(){var a=this.e,b=a.currentStyle,c=a.runtimeStyle,d=a.tagName,e=f.V===6,g;if(e&&(d in f.cc||d==="FIELDSET")||d==="BUTTON"||d==="INPUT"&&a.type in f.Gd){c.borderWidth="";d=this.g.z.wc;for(g=d.length;g--;){e=d[g];c["padding"+e]="";c["padding"+e]=f.n(b["padding"+e]).a(a)+f.n(b["border"+e+"Width"]).a(a)+(f.V!==8&&g%2?1:0)}c.borderWidth=0}else if(e){if(a.childNodes.length!==1||a.firstChild.tagName!=="ie6-mask"){b=doc.createElement("ie6-mask");d=b.style;d.visibility=
58
- "visible";for(d.zoom=1;d=a.firstChild;)b.appendChild(d);a.appendChild(b);c.visibility="hidden"}}else c.borderColor="transparent"},he:function(){},m:function(){this.parent.vc(this.M);delete this.rb;delete this.qa}};f.Rc=f.u.P({h:function(){var a=this.ed;for(var b in a)if(a.hasOwnProperty(b)&&a[b].h())return true;return false},O:function(){return this.g.Pb.G()},ib:function(){if(this.h()){var a=this.jc(),b=a,c;a=a.currentStyle;var d=a.position,e=this.H().style,g=0,i=0;i=this.s.o();if(d==="fixed"&&f.V>
59
- 6){g=i.x;i=i.y;b=d}else{do b=b.offsetParent;while(b&&b.currentStyle.position==="static");if(b){c=b.getBoundingClientRect();b=b.currentStyle;g=i.x-c.left-(parseFloat(b.borderLeftWidth)||0);i=i.y-c.top-(parseFloat(b.borderTopWidth)||0)}else{b=doc.documentElement;g=i.x+b.scrollLeft-b.clientLeft;i=i.y+b.scrollTop-b.clientTop}b="absolute"}e.position=b;e.left=g;e.top=i;e.zIndex=d==="static"?-1:a.zIndex;this.Cb=true}},Mb:f.aa,Nb:function(){var a=this.g.Pb.j();this.H().style.display=a.be&&a.nd?"":"none"},
60
- Lb:function(){this.h()?this.Nb():this.m()},jc:function(){var a=this.e;return a.tagName in f.Ac?a.offsetParent:a},H:function(){var a=this.Ta,b;if(!a){b=this.jc();a=this.Ta=doc.createElement("css3-container");a.style.direction="ltr";this.Nb();b.parentNode.insertBefore(a,b)}return a},ab:f.aa,m:function(){var a=this.Ta,b;if(a&&(b=a.parentNode))b.removeChild(a);delete this.Ta;delete this.qa}});f.Fc=f.u.P({M:2,Ya:"background",O:function(){var a=this.g;return a.w.G()||a.F.G()},h:function(){var a=this.g;
61
- return a.q.h()||a.F.h()||a.w.h()||a.ga.h()&&a.ga.j().Bb},U:function(){var a=this.s.o();if(a.i&&a.f){this.od();this.pd()}},od:function(){var a=this.g.w.j(),b=this.s.o(),c=this.e,d=a&&a.color,e,g;if(d&&d.fa()>0){this.lc();a=this.za("bgColor","fill",this.H(),1);e=b.i;b=b.f;a.stroked=false;a.coordsize=e*2+","+b*2;a.coordorigin="1,1";a.path=this.xa(null,2);g=a.style;g.width=e;g.height=b;a.fill.color=d.T(c);c=d.fa();if(c<1)a.fill.opacity=c}else this.vb("bgColor")},pd:function(){var a=this.g.w.j(),b=this.s.o();
62
- a=a&&a.L;var c,d,e,g,i;if(a){this.lc();d=b.i;e=b.f;for(i=a.length;i--;){b=a[i];c=this.za("bgImage"+i,"fill",this.H(),2);c.stroked=false;c.fill.type="tile";c.fillcolor="none";c.coordsize=d*2+","+e*2;c.coordorigin="1,1";c.path=this.xa(0,2);g=c.style;g.width=d;g.height=e;if(b.N==="linear-gradient")this.bd(c,b);else{c.fill.src=b.Ab;this.Md(c,i)}}}for(i=a?a.length:0;this.vb("bgImage"+i++););},Md:function(a,b){var c=this;f.p.Rb(a.fill.src,function(d){var e=c.e,g=c.s.o(),i=g.i;g=g.f;if(i&&g){var j=a.fill,
63
- h=c.g,k=h.z.j(),n=k&&k.I;k=n?n.t.a(e):0;var l=n?n.r.a(e):0,q=n?n.b.a(e):0;n=n?n.l.a(e):0;h=h.w.j().L[b];e=h.$?h.$.coords(e,i-d.i-n-l,g-d.f-k-q):{x:0,y:0};h=h.bb;q=l=0;var s=i+1,m=g+1,r=f.V===8?0:1;n=Math.round(e.x)+n+0.5;k=Math.round(e.y)+k+0.5;j.position=n/i+","+k/g;if(h&&h!=="repeat"){if(h==="repeat-x"||h==="no-repeat"){l=k+1;m=k+d.f+r}if(h==="repeat-y"||h==="no-repeat"){q=n+1;s=n+d.i+r}a.style.clip="rect("+l+"px,"+s+"px,"+m+"px,"+q+"px)"}}})},bd:function(a,b){var c=this.e,d=this.s.o(),e=d.i,g=
64
- d.f;a=a.fill;d=b.ca;var i=d.length,j=Math.PI,h=f.Na,k=h.tc,n=h.dc;b=h.gc(c,e,g,b);h=b.ra;var l=b.xc,q=b.yc,s=b.Vd,m=b.Wd,r=b.rd,p=b.sd,t=b.kd,v=b.ld;b=b.rc;e=h%90?Math.atan2(t*e/g,v)/j*180:h+90;e+=180;e%=360;r=k(s,m,h,r,p);g=n(s,m,r[0],r[1]);j=[];r=k(l,q,h,s,m);n=n(l,q,r[0],r[1])/g*100;k=[];for(h=0;h<i;h++)k.push(d[h].db?d[h].db.a(c,b):h===0?0:h===i-1?b:null);for(h=1;h<i;h++){if(k[h]===null){l=k[h-1];b=h;do q=k[++b];while(q===null);k[h]=l+(q-l)/(b-h+1)}k[h]=Math.max(k[h],k[h-1])}for(h=0;h<i;h++)j.push(n+
65
- k[h]/g*100+"% "+d[h].color.T(c));a.angle=e;a.type="gradient";a.method="sigma";a.color=d[0].color.T(c);a.color2=d[i-1].color.T(c);if(a.colors)a.colors.value=j.join(",");else a.colors=j.join(",")},lc:function(){var a=this.e.runtimeStyle;a.backgroundImage="url(about:blank)";a.backgroundColor="transparent"},m:function(){f.u.m.call(this);var a=this.e.runtimeStyle;a.backgroundImage=a.backgroundColor=""}});f.Gc=f.u.P({M:4,Ya:"border",O:function(){var a=this.g;return a.z.G()||a.F.G()},h:function(){var a=
66
- this.g;return(a.F.h()||a.w.h())&&!a.q.h()&&a.z.h()},U:function(){var a=this.e,b=this.g.z.j(),c=this.s.o(),d=c.i;c=c.f;var e,g,i,j,h;if(b){this.mc();b=this.wd(2);j=0;for(h=b.length;j<h;j++){i=b[j];e=this.za("borderPiece"+j,i.stroke?"stroke":"fill",this.H());e.coordsize=d*2+","+c*2;e.coordorigin="1,1";e.path=i.path;g=e.style;g.width=d;g.height=c;e.filled=!!i.fill;e.stroked=!!i.stroke;if(i.stroke){e=e.stroke;e.weight=i.Qb+"px";e.color=i.color.T(a);e.dashstyle=i.stroke==="dashed"?"2 2":i.stroke==="dotted"?
67
- "1 1":"solid";e.linestyle=i.stroke==="double"&&i.Qb>2?"ThinThin":"Single"}else e.fill.color=i.fill.T(a)}for(;this.vb("borderPiece"+j++););}},wd:function(a){var b=this.e,c,d,e,g=this.g.z,i=[],j,h,k,n,l=Math.round,q,s,m;if(g.h()){c=g.j();g=c.I;s=c.Yd;m=c.gd;if(c.de&&c.Zd&&c.hd){if(m.t.fa()>0){c=g.t.a(b);k=c/2;i.push({path:this.xa({Jb:k,Ib:k,tb:k,Db:k},a),stroke:s.t,color:m.t,Qb:c})}}else{a=a||1;c=this.s.o();d=c.i;e=c.f;c=l(g.t.a(b));k=l(g.r.a(b));n=l(g.b.a(b));b=l(g.l.a(b));var r={t:c,r:k,b:n,l:b};
68
- b=this.g.F;if(b.h())q=this.kc(b.j());j=Math.floor;h=Math.ceil;var p=function(o,u){return q?q[o][u]:0},t=function(o,u,x,y,z,D){var G=p("x",o),E=p("y",o),B=o.charAt(1)==="r";o=o.charAt(0)==="b";return G>0&&E>0?(D?"al":"ae")+(B?h(d-G):j(G))*a+","+(o?h(e-E):j(E))*a+","+(j(G)-u)*a+","+(j(E)-x)*a+","+y*65535+","+2949075*(z?1:-1):(D?"m":"l")+(B?d-u:u)*a+","+(o?e-x:x)*a},v=function(o,u,x,y){var z=o==="t"?j(p("x","tl"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+j(p("y","tr"))*a:o==="b"?h(d-p("x","br"))*a+","+j(e-
69
- u)*a:j(u)*a+","+h(e-p("y","bl"))*a;o=o==="t"?h(d-p("x","tr"))*a+","+h(u)*a:o==="r"?h(d-u)*a+","+h(e-p("y","br"))*a:o==="b"?j(p("x","bl"))*a+","+j(e-u)*a:j(u)*a+","+j(p("y","tl"))*a;return x?(y?"m"+o:"")+"l"+z:(y?"m"+z:"")+"l"+o};b=function(o,u,x,y,z,D){var G=o==="l"||o==="r",E=r[o],B,A;if(E>0&&s[o]!=="none"&&m[o].fa()>0){B=r[G?o:u];u=r[G?u:o];A=r[G?o:x];x=r[G?x:o];if(s[o]==="dashed"||s[o]==="dotted"){i.push({path:t(y,B,u,D+45,0,1)+t(y,0,0,D,1,0),fill:m[o]});i.push({path:v(o,E/2,0,1),stroke:s[o],Qb:E,
70
- color:m[o]});i.push({path:t(z,A,x,D,0,1)+t(z,0,0,D-45,1,0),fill:m[o]})}else i.push({path:t(y,B,u,D+45,0,1)+v(o,E,0,0)+t(z,A,x,D,0,0)+(s[o]==="double"&&E>2?t(z,A-j(A/3),x-j(x/3),D-45,1,0)+v(o,h(E/3*2),1,0)+t(y,B-j(B/3),u-j(u/3),D,1,0)+"x "+t(y,j(B/3),j(u/3),D+45,0,1)+v(o,j(E/3),1,0)+t(z,j(A/3),j(x/3),D,0,0):"")+t(z,0,0,D-45,1,0)+v(o,0,1,0)+t(y,0,0,D,1,0),fill:m[o]})}};b("t","l","r","tl","tr",90);b("r","t","b","tr","br",0);b("b","r","l","br","bl",-90);b("l","b","t","bl","tl",-180)}}return i},m:function(){if(this.ec||
71
- !this.g.q.h())this.e.runtimeStyle.borderColor="";f.u.m.call(this)}});f.Tb=f.u.P({M:5,Ld:["t","tr","r","br","b","bl","l","tl","c"],O:function(){return this.g.q.G()},h:function(){return this.g.q.h()},U:function(){this.H();var a=this.g.q.j(),b=this.g.z.j(),c=this.s.o(),d=this.e,e=this.uc;f.p.Rb(a.src,function(g){function i(v,o,u,x,y){v=e[v].style;var z=Math.max;v.width=z(o,0);v.height=z(u,0);v.left=x;v.top=y}function j(v,o,u){for(var x=0,y=v.length;x<y;x++)e[v[x]].imagedata[o]=u}var h=c.i,k=c.f,n=f.n("0"),
72
- l=a.I||(b?b.I:{t:n,r:n,b:n,l:n});n=l.t.a(d);var q=l.r.a(d),s=l.b.a(d);l=l.l.a(d);var m=a.slice,r=m.t.a(d),p=m.r.a(d),t=m.b.a(d);m=m.l.a(d);i("tl",l,n,0,0);i("t",h-l-q,n,l,0);i("tr",q,n,h-q,0);i("r",q,k-n-s,h-q,n);i("br",q,s,h-q,k-s);i("b",h-l-q,s,l,k-s);i("bl",l,s,0,k-s);i("l",l,k-n-s,0,n);i("c",h-l-q,k-n-s,l,n);j(["tl","t","tr"],"cropBottom",(g.f-r)/g.f);j(["tl","l","bl"],"cropRight",(g.i-m)/g.i);j(["bl","b","br"],"cropTop",(g.f-t)/g.f);j(["tr","r","br"],"cropLeft",(g.i-p)/g.i);j(["l","r","c"],"cropTop",
73
- r/g.f);j(["l","r","c"],"cropBottom",t/g.f);j(["t","b","c"],"cropLeft",m/g.i);j(["t","b","c"],"cropRight",p/g.i);e.c.style.display=a.fill?"":"none"},this)},H:function(){var a=this.parent.ya(this.M),b,c,d,e=this.Ld,g=e.length;if(!a){a=doc.createElement("border-image");b=a.style;b.position="absolute";this.uc={};for(d=0;d<g;d++){c=this.uc[e[d]]=f.p.Za("rect");c.appendChild(f.p.Za("imagedata"));b=c.style;b.behavior="url(#default#VML)";b.position="absolute";b.top=b.left=0;c.imagedata.src=this.g.q.j().src;
74
- c.stroked=false;c.filled=false;a.appendChild(c)}this.parent.sb(this.M,a)}return a},Ea:function(){if(this.h()){var a=this.e,b=a.runtimeStyle,c=this.g.q.j().I;b.borderStyle="solid";if(c){b.borderTopWidth=c.t.a(a)+"px";b.borderRightWidth=c.r.a(a)+"px";b.borderBottomWidth=c.b.a(a)+"px";b.borderLeftWidth=c.l.a(a)+"px"}this.mc()}},m:function(){var a=this.e.runtimeStyle;a.borderStyle="";if(this.ec||!this.g.z.h())a.borderColor=a.borderWidth="";f.u.m.call(this)}});f.Hc=f.u.P({M:1,Ya:"outset-box-shadow",O:function(){var a=
75
- this.g;return a.ga.G()||a.F.G()},h:function(){var a=this.g.ga;return a.h()&&a.j().Da[0]},U:function(){function a(B,A,L,N,H,I,F){B=b.za("shadow"+B+A,"fill",d,i-B);A=B.fill;B.coordsize=n*2+","+l*2;B.coordorigin="1,1";B.stroked=false;B.filled=true;A.color=H.T(c);if(I){A.type="gradienttitle";A.color2=A.color;A.opacity=0}B.path=F;p=B.style;p.left=L;p.top=N;p.width=n;p.height=l;return B}var b=this,c=this.e,d=this.H(),e=this.g,g=e.ga.j().Da;e=e.F.j();var i=g.length,j=i,h,k=this.s.o(),n=k.i,l=k.f;k=f.V===
76
- 8?1:0;for(var q=["tl","tr","br","bl"],s,m,r,p,t,v,o,u,x,y,z,D,G,E;j--;){m=g[j];t=m.ee.a(c);v=m.fe.a(c);h=m.Ud.a(c);o=m.blur.a(c);m=m.color;u=-h-o;if(!e&&o)e=f.jb.Dc;u=this.xa({Jb:u,Ib:u,tb:u,Db:u},2,e);if(o){x=(h+o)*2+n;y=(h+o)*2+l;z=o*2/x;D=o*2/y;if(o-h>n/2||o-h>l/2)for(h=4;h--;){s=q[h];G=s.charAt(0)==="b";E=s.charAt(1)==="r";s=a(j,s,t,v,m,o,u);r=s.fill;r.focusposition=(E?1-z:z)+","+(G?1-D:D);r.focussize="0,0";s.style.clip="rect("+((G?y/2:0)+k)+"px,"+(E?x:x/2)+"px,"+(G?y:y/2)+"px,"+((E?x/2:0)+k)+
77
- "px)"}else{s=a(j,"",t,v,m,o,u);r=s.fill;r.focusposition=z+","+D;r.focussize=1-z*2+","+(1-D*2)}}else{s=a(j,"",t,v,m,o,u);t=m.fa();if(t<1)s.fill.opacity=t}}}});f.Pc=f.u.P({M:6,Ya:"imgEl",O:function(){var a=this.g;return this.e.src!==this.Xc||a.F.G()},h:function(){var a=this.g;return a.F.h()||a.w.qc()},U:function(){this.Xc=i;this.Cd();var a=this.za("img","fill",this.H()),b=a.fill,c=this.s.o(),d=c.i;c=c.f;var e=this.g.z.j(),g=e&&e.I;e=this.e;var i=e.src,j=Math.round,h=e.currentStyle,k=f.n;if(!g||f.V<
78
- 7){g=f.n("0");g={t:g,r:g,b:g,l:g}}a.stroked=false;b.type="frame";b.src=i;b.position=(d?0.5/d:0)+","+(c?0.5/c:0);a.coordsize=d*2+","+c*2;a.coordorigin="1,1";a.path=this.xa({Jb:j(g.t.a(e)+k(h.paddingTop).a(e)),Ib:j(g.r.a(e)+k(h.paddingRight).a(e)),tb:j(g.b.a(e)+k(h.paddingBottom).a(e)),Db:j(g.l.a(e)+k(h.paddingLeft).a(e))},2);a=a.style;a.width=d;a.height=c},Cd:function(){this.e.runtimeStyle.filter="alpha(opacity=0)"},m:function(){f.u.m.call(this);this.e.runtimeStyle.filter=""}});f.Oc=f.u.P({ib:f.aa,
79
- Mb:f.aa,Nb:f.aa,Lb:f.aa,Kd:/^,+|,+$/g,Fd:/,+/g,gb:function(a,b){(this.pb||(this.pb=[]))[a]=b||void 0},ab:function(){var a=this.pb,b;if(a&&(b=a.join(",").replace(this.Kd,"").replace(this.Fd,","))!==this.Wc)this.Wc=this.e.runtimeStyle.background=b},m:function(){this.e.runtimeStyle.background="";delete this.pb}});f.Mc=f.u.P({ta:1,O:function(){return this.g.w.G()},h:function(){var a=this.g;return a.w.h()||a.q.h()},U:function(){var a=this.g.w.j(),b,c,d=0,e,g;if(a){b=[];if(c=a.L)for(;e=c[d++];)if(e.N===
80
- "linear-gradient"){g=this.vd(e.Wa);g=(e.Xa||f.Ka.Kc).a(this.e,g.i,g.f,g.i,g.f);b.push("url(data:image/svg+xml,"+escape(this.xd(e,g.i,g.f))+") "+this.dd(e.$)+" / "+g.i+"px "+g.f+"px "+(e.bc||"")+" "+(e.Wa||"")+" "+(e.ub||""))}else b.push(e.Hb);a.color&&b.push(a.color.Y);this.parent.gb(this.ta,b.join(","))}},dd:function(a){return a?a.X.map(function(b){return b.d}).join(" "):"0 0"},vd:function(a){var b=this.e,c=this.s.o(),d=c.i;c=c.f;var e;if(a!=="border-box")if((e=this.g.z.j())&&(e=e.I)){d-=e.l.a(b)+
81
- e.l.a(b);c-=e.t.a(b)+e.b.a(b)}if(a==="content-box"){a=f.n;e=b.currentStyle;d-=a(e.paddingLeft).a(b)+a(e.paddingRight).a(b);c-=a(e.paddingTop).a(b)+a(e.paddingBottom).a(b)}return{i:d,f:c}},xd:function(a,b,c){var d=this.e,e=a.ca,g=e.length,i=f.Na.gc(d,b,c,a);a=i.xc;var j=i.yc,h=i.td,k=i.ud;i=i.rc;var n,l,q,s,m;n=[];for(l=0;l<g;l++)n.push(e[l].db?e[l].db.a(d,i):l===0?0:l===g-1?i:null);for(l=1;l<g;l++)if(n[l]===null){s=n[l-1];q=l;do m=n[++q];while(m===null);n[l]=s+(m-s)/(q-l+1)}b=['<svg width="'+b+'" height="'+
82
- c+'" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="'+a/b*100+'%" y1="'+j/c*100+'%" x2="'+h/b*100+'%" y2="'+k/c*100+'%">'];for(l=0;l<g;l++)b.push('<stop offset="'+n[l]/i+'" stop-color="'+e[l].color.T(d)+'" stop-opacity="'+e[l].color.fa()+'"/>');b.push('</linearGradient></defs><rect width="100%" height="100%" fill="url(#g)"/></svg>');return b.join("")},m:function(){this.parent.gb(this.ta)}});f.Nc=f.u.P({S:"repeat",Sc:"stretch",Qc:"round",ta:0,O:function(){return this.g.q.G()},
83
- h:function(){return this.g.q.h()},U:function(){var a=this,b=a.g.q.j(),c=a.g.z.j(),d=a.s.o(),e=b.repeat,g=e.f,i=e.Ob,j=a.e,h=0;f.p.Rb(b.src,function(k){function n(R,S,U,V,W,T,w,C,K,O){J.push('<pattern patternUnits="userSpaceOnUse" id="pattern'+Q+'" x="'+(g===p?R+U/2-K/2:R)+'" y="'+(i===p?S+V/2-O/2:S)+'" width="'+K+'" height="'+O+'"><svg width="'+K+'" height="'+O+'" viewBox="'+W+" "+T+" "+w+" "+C+'" preserveAspectRatio="none"><image xlink:href="'+r+'" x="0" y="0" width="'+s+'" height="'+m+'" /></svg></pattern>');
84
- P.push('<rect x="'+R+'" y="'+S+'" width="'+U+'" height="'+V+'" fill="url(#pattern'+Q+')" />');Q++}var l=d.i,q=d.f,s=k.i,m=k.f,r=a.Dd(b.src,s,m),p=a.S,t=a.Sc;k=a.Qc;var v=Math.ceil,o=f.n("0"),u=b.I||(c?c.I:{t:o,r:o,b:o,l:o});o=u.t.a(j);var x=u.r.a(j),y=u.b.a(j);u=u.l.a(j);var z=b.slice,D=z.t.a(j),G=z.r.a(j),E=z.b.a(j);z=z.l.a(j);var B=l-u-x,A=q-o-y,L=s-z-G,N=m-D-E,H=g===t?B:L*o/D,I=i===t?A:N*x/G,F=g===t?B:L*y/E;t=i===t?A:N*u/z;var J=[],P=[],Q=0;if(g===k){H-=(H-(B%H||H))/v(B/H);F-=(F-(B%F||F))/v(B/
85
- F)}if(i===k){I-=(I-(A%I||I))/v(A/I);t-=(t-(A%t||t))/v(A/t)}k=['<svg width="'+l+'" height="'+q+'" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">'];n(0,0,u,o,0,0,z,D,u,o);n(u,0,B,o,z,0,L,D,H,o);n(l-x,0,x,o,s-G,0,G,D,x,o);n(0,o,u,A,0,D,z,N,u,t);if(b.fill)n(u,o,B,A,z,D,L,N,H||F||L,t||I||N);n(l-x,o,x,A,s-G,D,G,N,x,I);n(0,q-y,u,y,0,m-E,z,E,u,y);n(u,q-y,B,y,z,m-E,L,E,F,y);n(l-x,q-y,x,y,s-G,m-E,G,E,x,y);k.push("<defs>"+J.join("\n")+"</defs>"+P.join("\n")+"</svg>");a.parent.gb(a.ta,
86
- "url(data:image/svg+xml,"+escape(k.join(""))+") no-repeat border-box border-box");h&&a.parent.ab()},a);h=1},Dd:function(){var a={};return function(b,c,d){var e=a[b],g;if(!e){e=new Image;g=doc.createElement("canvas");e.src=b;g.width=c;g.height=d;g.getContext("2d").drawImage(e,0,0);e=a[b]=g.toDataURL()}return e}}(),Ea:f.Tb.prototype.Ea,m:function(){var a=this.e.runtimeStyle;this.parent.gb(this.ta);a.borderColor=a.borderStyle=a.borderWidth=""}});f.kb=function(){function a(m,r){m.className+=" "+r}function b(m){var r=
87
- s.slice.call(arguments,1),p=r.length;setTimeout(function(){for(;p--;)a(m,r[p])},0)}function c(m){var r=s.slice.call(arguments,1),p=r.length;setTimeout(function(){for(;p--;){var t=r[p];t=q[t]||(q[t]=new RegExp("\\b"+t+"\\b","g"));m.className=m.className.replace(t,"")}},0)}function d(m){function r(){if(!R){var w,C,K=f.Ba,O=m.currentStyle,M=O.getAttribute(g)==="true";T=O.getAttribute(i);T=K>7?T!=="false":T==="true";if(!Q){Q=1;m.runtimeStyle.zoom=1;O=m;for(var ba=1;O=O.previousSibling;)if(O.nodeType===
88
- 1){ba=0;break}ba&&a(m,n)}F.cb();if(M&&(C=F.o())&&(w=doc.documentElement||doc.body)&&(C.y>w.clientHeight||C.x>w.clientWidth||C.y+C.f<0||C.x+C.i<0)){if(!V){V=1;f.mb.ba(r)}}else{R=1;V=Q=0;f.mb.Ha(r);if(K===9){J={w:new f.Sb(m),q:new f.Ub(m),z:new f.Vb(m)};P=[J.w,J.q];I=new f.Oc(m,F,J);w=[new f.Mc(m,F,J,I),new f.Nc(m,F,J,I)]}else{J={w:new f.Sb(m),z:new f.Vb(m),q:new f.Ub(m),F:new f.jb(m),ga:new f.Ic(m),Pb:new f.Uc(m)};P=[J.w,J.z,J.q,J.F,J.ga,J.Pb];I=new f.Rc(m,F,J);w=[new f.Hc(m,F,J,I),new f.Fc(m,F,J,
89
- I),new f.Gc(m,F,J,I),new f.Tb(m,F,J,I)];m.tagName==="IMG"&&w.push(new f.Pc(m,F,J,I));I.ed=w}H=[I].concat(w);if(w=m.currentStyle.getAttribute(f.Q+"watch-ancestors")){w=parseInt(w,10);C=0;for(M=m.parentNode;M&&(w==="NaN"||C++<w);){A(M,"onpropertychange",G);A(M,"onmouseenter",o);A(M,"onmouseleave",u);A(M,"onmousedown",x);if(M.tagName in f.fc){A(M,"onfocus",z);A(M,"onblur",D)}M=M.parentNode}}if(T){f.Oa.ba(t);f.Oa.Qd()}t(1)}if(!S){S=1;K<9&&A(m,"onmove",p);A(m,"onresize",p);A(m,"onpropertychange",v);A(m,
90
- "onmouseenter",o);A(m,"onmouseleave",u);A(m,"onmousedown",x);if(m.tagName in f.fc){A(m,"onfocus",z);A(m,"onblur",D)}f.Qa.ba(p);f.K.ba(L)}F.hb()}}function p(){F&&F.Ad()&&t()}function t(w){if(!W)if(R){var C,K=H.length;E();for(C=0;C<K;C++)H[C].Ea();if(w||F.Nd())for(C=0;C<K;C++)H[C].ib();if(w||F.Sd())for(C=0;C<K;C++)H[C].Mb();I.ab();B()}else Q||r()}function v(){var w,C=H.length,K;w=event;if(!W&&!(w&&w.propertyName in l))if(R){E();for(w=0;w<C;w++)H[w].Ea();for(w=0;w<C;w++){K=H[w];K.Cb||K.ib();K.O()&&K.Lb()}I.ab();
91
- B()}else Q||r()}function o(){b(m,j)}function u(){c(m,j,h)}function x(){b(m,h);f.lb.ba(y)}function y(){c(m,h);f.lb.Ha(y)}function z(){b(m,k)}function D(){c(m,k)}function G(){var w=event.propertyName;if(w==="className"||w==="id")v()}function E(){F.cb();for(var w=P.length;w--;)P[w].cb()}function B(){for(var w=P.length;w--;)P[w].hb();F.hb()}function A(w,C,K){w.attachEvent(C,K);U.push([w,C,K])}function L(){if(S){for(var w=U.length,C;w--;){C=U[w];C[0].detachEvent(C[1],C[2])}f.K.Ha(L);S=0;U=[]}}function N(){if(!W){var w,
92
- C;L();W=1;if(H){w=0;for(C=H.length;w<C;w++){H[w].ec=1;H[w].m()}}T&&f.Oa.Ha(t);f.Qa.Ha(t);H=F=J=P=m=null}}var H,I,F=new da(m),J,P,Q,R,S,U=[],V,W,T;this.Ed=r;this.update=t;this.m=N;this.qd=m}var e={},g=f.Q+"lazy-init",i=f.Q+"poll",j=f.La+"hover",h=f.La+"active",k=f.La+"focus",n=f.La+"first-child",l={background:1,bgColor:1,display:1},q={},s=[];d.yd=function(m){var r=f.p.Aa(m);return e[r]||(e[r]=new d(m))};d.m=function(m){m=f.p.Aa(m);var r=e[m];if(r){r.m();delete e[m]}};d.md=function(){var m=[],r;if(e){for(var p in e)if(e.hasOwnProperty(p)){r=
93
- e[p];m.push(r.qd);r.m()}e={}}return m};return d}();f.supportsVML=f.zc;f.attach=function(a){f.Ba<10&&f.zc&&f.kb.yd(a).Ed()};f.detach=function(a){f.kb.m(a)}};
94
- var $=element;function init(){var a=window.PIE;a&&doc.media!=="print"&&a.attach($)}function cleanup(){var a=window.PIE;if(a){a.detach($);$=0}}$.readyState==="complete"&&init();
95
- </script>
96
- </PUBLIC:COMPONENT>