rubber_ring 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +239 -0
- data/Rakefile +34 -0
- data/app/assets/images/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/libs/dropzone.js +1258 -0
- data/app/assets/javascripts/libs/h5utils.js +65 -0
- data/app/assets/javascripts/rubber_ring/application.js +17 -0
- data/app/assets/javascripts/rubber_ring/attachment_dragger.coffee +45 -0
- data/app/assets/javascripts/rubber_ring/attachment_manager.coffee +23 -0
- data/app/assets/javascripts/rubber_ring/attachment_uploader.coffee +27 -0
- data/app/assets/javascripts/rubber_ring/dropdown_menu.coffee +10 -0
- data/app/assets/javascripts/rubber_ring/editor.coffee +92 -0
- data/app/assets/javascripts/rubber_ring/link_editor.coffee +47 -0
- data/app/assets/javascripts/rubber_ring/persistence_manager.coffee +74 -0
- data/app/assets/javascripts/rubber_ring/template_editor.coffee +76 -0
- data/app/assets/javascripts/rubber_ring/util.coffee +22 -0
- data/app/assets/stylesheets/libs/bootstrap.scss.erb +6163 -0
- data/app/assets/stylesheets/rubber_ring/application.css +14 -0
- data/app/assets/stylesheets/rubber_ring/cms.scss +183 -0
- data/app/concerns/rubber_ring/build.rb +31 -0
- data/app/concerns/rubber_ring/publish.rb +9 -0
- data/app/concerns/rubber_ring/util.rb +75 -0
- data/app/controllers/rubber_ring/attachments_controller.rb +52 -0
- data/app/controllers/rubber_ring/cms_controller.rb +41 -0
- data/app/controllers/rubber_ring/rubber_ring_controller.rb +67 -0
- data/app/controllers/rubber_ring/sessions_controller.rb +21 -0
- data/app/helpers/rubber_ring/cms_helper.rb +122 -0
- data/app/models/rubber_ring/page.rb +126 -0
- data/app/models/rubber_ring/page_content.rb +5 -0
- data/app/models/rubber_ring/page_template.rb +5 -0
- data/app/views/layouts/rubber_ring/application.html.erb +22 -0
- data/app/views/rubber_ring/_application.html.erb +106 -0
- data/app/views/rubber_ring/_head.html.erb +4 -0
- data/app/views/rubber_ring/_template_control.html.erb +20 -0
- data/app/views/rubber_ring/sessions/new.html.erb +8 -0
- data/config/routes.rb +20 -0
- data/db/migrate/20130520170602_create_pages.rubber_ring.rb +11 -0
- data/db/migrate/20130520170603_create_rubber_ring_page_contents.rubber_ring.rb +11 -0
- data/db/migrate/20130520170604_create_rubber_ring_page_templates.rubber_ring.rb +14 -0
- data/db/seeds.rb +7 -0
- data/lib/generators/rubber_ring/install/USAGE +10 -0
- data/lib/generators/rubber_ring/install/install_generator.rb +35 -0
- data/lib/generators/rubber_ring/install/templates/application.js +6 -0
- data/lib/generators/rubber_ring/install/templates/layout.html.erb +22 -0
- data/lib/generators/rubber_ring/install/templates/publish_template.yml +12 -0
- data/lib/generators/rubber_ring/install/templates/settings_template.rb +2 -0
- data/lib/generators/rubber_ring/page/USAGE +12 -0
- data/lib/generators/rubber_ring/page/page_generator.rb +32 -0
- data/lib/generators/rubber_ring/page/templates/action.html.erb +3 -0
- data/lib/generators/rubber_ring/page/templates/controller.rb +11 -0
- data/lib/rubber_ring.rb +5 -0
- data/lib/rubber_ring/engine.rb +11 -0
- data/lib/rubber_ring/version.rb +3 -0
- data/lib/tasks/rubber_ring_tasks.rake +4 -0
- data/spec/concerns/util_spec.rb +20 -0
- data/spec/controllers/attachments_controller_spec.rb +20 -0
- data/spec/controllers/cms_controller_spec.rb +150 -0
- data/spec/controllers/sessions_controller_spec.rb +25 -0
- data/spec/helpers/cms_helper_spec.rb +63 -0
- data/spec/javascripts/fixtures/duplicate_fields.html +2 -0
- data/spec/javascripts/fixtures/editable_fields.html +15 -0
- data/spec/javascripts/fixtures/templates.html +21 -0
- data/spec/javascripts/helpers/fixtures.js +22 -0
- data/spec/javascripts/helpers/jasmine-jquery.js +658 -0
- data/spec/javascripts/persistence_manager_spec.coffee +18 -0
- data/spec/javascripts/template_editor_spec.coffee +29 -0
- data/spec/javascripts/util_spec.coffee +13 -0
- data/spec/karma.conf.js +86 -0
- data/spec/models/page_spec.rb +196 -0
- data/spec/spec_helper.rb +88 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/baws.jpg +0 -0
- data/test/dummy/app/assets/javascripts/application.js +6 -0
- data/test/dummy/app/assets/stylesheets/application.css +17 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/example_controller.rb +15 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/example/page.html.erb +20 -0
- data/test/dummy/app/views/example/page2.html.erb +13 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/layouts/rubber_ring/layout.html.erb +22 -0
- data/test/dummy/app/views/templates/_article.html.erb +7 -0
- data/test/dummy/app/views/templates/_blog_post.html.erb +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +24 -0
- data/test/dummy/config/boot.rb +9 -0
- data/test/dummy/config/database.yml +16 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +27 -0
- data/test/dummy/config/environments/production.rb +81 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/rubber_ring.rb +2 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/publish.yml +12 -0
- data/test/dummy/config/routes.rb +6 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130524163154_create_pages.rubber_ring.rb +12 -0
- data/test/dummy/db/migrate/20130524163155_create_rubber_ring_page_contents.rubber_ring.rb +12 -0
- data/test/dummy/db/migrate/20130524163156_create_rubber_ring_page_templates.rubber_ring.rb +15 -0
- data/test/dummy/db/production.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +47 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +41349 -0
- data/test/dummy/log/production.log +2835 -0
- data/test/dummy/log/test.log +45546 -0
- data/test/dummy/public/404.html +27 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/assets/application-4e268cfccc1f26318c22a87c9e6b9095.js +1 -0
- data/test/dummy/public/assets/application-4e268cfccc1f26318c22a87c9e6b9095.js.gz +0 -0
- data/test/dummy/public/assets/application-e006d1eddf81edb7ed682d933d95167f.css +18 -0
- data/test/dummy/public/assets/application-e006d1eddf81edb7ed682d933d95167f.css.gz +0 -0
- data/test/dummy/public/assets/baws-27045628978f5e419d534d01c63ab3d6.jpg +0 -0
- data/test/dummy/public/assets/glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png +0 -0
- data/test/dummy/public/assets/glyphicons-halflings-white-ec01567c9d4e5aba3fd3efa6e3054574.png +0 -0
- data/test/dummy/public/assets/manifest-d64ae8f73d13a404515a9c833b8ea4d7.json +1 -0
- data/test/dummy/public/assets/rubber_ring/application-166bd1c30eaa1f5b77c159a552ca0d1d.js +4 -0
- data/test/dummy/public/assets/rubber_ring/application-166bd1c30eaa1f5b77c159a552ca0d1d.js.gz +0 -0
- data/test/dummy/public/assets/rubber_ring/application-2211071c03381f99bd440671529d6d2d.css +4358 -0
- data/test/dummy/public/assets/rubber_ring/application-2211071c03381f99bd440671529d6d2d.css.gz +0 -0
- data/test/dummy/public/assets/rubber_ring/application-4ba3fedbf9929e7910c6f1497a82c4d1.css +4380 -0
- data/test/dummy/public/assets/rubber_ring/application-4ba3fedbf9929e7910c6f1497a82c4d1.css.gz +0 -0
- data/test/dummy/public/assets/rubber_ring/application-9b07b9a701e0e3a8bb9f2af9749adbac.js +4 -0
- data/test/dummy/public/assets/rubber_ring/application-9b07b9a701e0e3a8bb9f2af9749adbac.js.gz +0 -0
- data/test/dummy/public/build/assets/application-4e268cfccc1f26318c22a87c9e6b9095.js +1 -0
- data/test/dummy/public/build/assets/application-4e268cfccc1f26318c22a87c9e6b9095.js.gz +0 -0
- data/test/dummy/public/build/assets/application-e006d1eddf81edb7ed682d933d95167f.css +18 -0
- data/test/dummy/public/build/assets/application-e006d1eddf81edb7ed682d933d95167f.css.gz +0 -0
- data/test/dummy/public/build/assets/application.css +17 -0
- data/test/dummy/public/build/assets/application.js +6 -0
- data/test/dummy/public/build/assets/assets/images/baws.jpg +0 -0
- data/test/dummy/public/build/assets/assets/javascripts/application.js +6 -0
- data/test/dummy/public/build/assets/assets/stylesheets/application.css +17 -0
- data/test/dummy/public/build/assets/baws-27045628978f5e419d534d01c63ab3d6.jpg +0 -0
- data/test/dummy/public/build/assets/baws.jpg +0 -0
- data/test/dummy/public/build/assets/controllers/application_controller.rb +5 -0
- data/test/dummy/public/build/assets/controllers/example_controller.rb +15 -0
- data/test/dummy/public/build/assets/glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png +0 -0
- data/test/dummy/public/build/assets/glyphicons-halflings-white-ec01567c9d4e5aba3fd3efa6e3054574.png +0 -0
- data/test/dummy/public/build/assets/helpers/application_helper.rb +2 -0
- data/test/dummy/public/build/assets/images/baws.jpg +0 -0
- data/test/dummy/public/build/assets/javascripts/application.js +6 -0
- data/test/dummy/public/build/assets/manifest-d64ae8f73d13a404515a9c833b8ea4d7.json +1 -0
- data/test/dummy/public/build/assets/rubber_ring/application-166bd1c30eaa1f5b77c159a552ca0d1d.js +4 -0
- data/test/dummy/public/build/assets/rubber_ring/application-166bd1c30eaa1f5b77c159a552ca0d1d.js.gz +0 -0
- data/test/dummy/public/build/assets/rubber_ring/application-2211071c03381f99bd440671529d6d2d.css +4358 -0
- data/test/dummy/public/build/assets/rubber_ring/application-2211071c03381f99bd440671529d6d2d.css.gz +0 -0
- data/test/dummy/public/build/assets/rubber_ring/application-4ba3fedbf9929e7910c6f1497a82c4d1.css +4380 -0
- data/test/dummy/public/build/assets/rubber_ring/application-4ba3fedbf9929e7910c6f1497a82c4d1.css.gz +0 -0
- data/test/dummy/public/build/assets/rubber_ring/application-9b07b9a701e0e3a8bb9f2af9749adbac.js +4 -0
- data/test/dummy/public/build/assets/rubber_ring/application-9b07b9a701e0e3a8bb9f2af9749adbac.js.gz +0 -0
- data/test/dummy/public/build/assets/stylesheets/application.css +17 -0
- data/test/dummy/public/build/assets/views/example/page.html.erb +31 -0
- data/test/dummy/public/build/assets/views/example/page2.html.erb +10 -0
- data/test/dummy/public/build/assets/views/layouts/application.html.erb +14 -0
- data/test/dummy/public/build/assets/views/layouts/rubber_ring/application.html.erb +22 -0
- data/test/dummy/public/build/assets/views/templates/_article.html.erb +9 -0
- data/test/dummy/public/build/upload/example/page/attachments/dbvis.license +11 -0
- data/test/dummy/public/build/upload/example/page/images/nutella.jpg +0 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/upload/en/example/page2/images/snb.jpg +0 -0
- data/test/dummy/public/upload/example/page/attachments/BoobyTrap.pdf +0 -0
- data/test/dummy/public/upload/example/page/attachments/main.html +29 -0
- data/test/dummy/public/upload/example/page/images/nutella.jpg +0 -0
- data/test/dummy/public/upload/example/page/images/snb.jpg +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/development/sass/144bb07df25732886de34fc892b7c84d418ab110/cms.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/144bb07df25732886de34fc892b7c84d418ab110/cms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/5df77a09e28ee5e99b029d061fc8c7aa74ed8701/bootstrap.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/8185f37c4f7dd19815b19559200f49fbf25b143a/cms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/9ef9c546be1f15bd909c4626b18ec56c75aac0ce/cms.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/9ef9c546be1f15bd909c4626b18ec56c75aac0ce/cms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/c8e2efff656b76a26ac2cc5b5528e2ab9741b52a/bootstrap.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/005eccb32211a5ffdf41aad3484bbbb4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/00dfd740f227e8eacf8dc70e8923aa30 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0218b228ced412bf87b02ca1b6be60b3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/021d5ce446187b362f442c81dbc04f33 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/03d17cbcdf5da1d77daae00a93e1d8eb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/052ccadc06984b221f1af051c32e613a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0894458794b51b17900c3d7abefc2aa5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0ceefdff5c5f03895722be20f6ddc26b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0dd47da3f882e810b77e341b2bcd8abc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0de91e83e7c32c81d59a95bccdedb34f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0f096a9239d1b8b3c0d7f0a079ba8dc6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0f7e8127f53c92f853b2d1f7f3887b25 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0fa97a19dba2b30d1269220457488770 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/10c6f6553bf3c14d2073a1dc826c4a03 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/11eedd47a993ae43b134c4a8323fe16d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/14e730b33d5c77e57ef1d749d3f59d09 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/15c9e067f0a919861ad0e339ccabb55b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/162e101507dda2e6e16d3b6d20ac7155 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/16aa40bf8985a2f1f3e5dea5d72e6218 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/17ea4d79d21b1f083c77f59ba9b3372d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1893a62d9206a1fb9d89578a47e6dba8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/19686f8659e57712f166b6b342155e6c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1cb5879c7320b989a214a03dbb87bf33 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1de6a759b14c2e99ab1641cad5521433 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1f634c9d68d6c31855bf84ecb8e9d3a1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/22a5108e690ae432a7d96ad27ae23356 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/22b9081ba2ffde46760b70110d440b5c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/25b52470f85dd54b7db5010558291a3a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2bdc67c643c8348c3a0c294004f0fc35 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2bf91fb337440bb9de78c2e6c6bcb95f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2ee41f98f4c10cf8d2f5bd28d3bd1b96 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3052b99e985fcef75d109bb00139ebd3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/33e002f0b7946cd298562302f71fdd77 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/37ffa56a3e6b08a7683a7b180bac45e9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3beaa45c69e3414a2f8cdd63b39787a2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3f68640e722ec4648c55f987c372bd1f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3fcb125156ac9a61f029c8a3ea0f9c40 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4081dfc5b927754129b209331c267441 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/41b539dab4032aeab4acc677841be9e1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/449d8c2f5dfa78068e85472dcee833fc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/47086b08a2d4af414320d0316d43636b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4d0e945a1aeffabb6ecbe4e9cfbe9900 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4ff563d50fe6491dbd10a9d82abbfdfb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/50b7c4b1c7e9124299cdd60ed2bf24fb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5158a96c0f825e9f03cb852177150660 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5343637e2648daefcbb5f6da93e22170 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/53ba99192c5668743a46c5d52532ab35 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5449d7c21a154077e042b276efcfe346 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5588d8e326c1909734ec317c6068a8b0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5698b010ec22ef0139df1ec7921bada0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/573028956728676e330972a5f5b14ce1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5802a1804470ed3a7258b19b52db2a15 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/593143829da9d8a11949cdea62925830 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5a3608849ffcf6b5ffd0e0c519899b0f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5b28ba105943c3d7648e1c3a64497d6a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5cceba1f5466432ddc1ca00d96bb6af2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5d5fb516cc13d631c73d6ba74527c7fd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/613c2f7728f24118bf60b70e5467b04e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/62a837ae3a144323a69c9c742a0d338e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/62dc9541d46ef8f45853e3dca50132d8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6386e7f696b5dd6b1588f8051bf78083 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6428de878f492d768cfef210554eb78e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/65e9bcd0c838633f8992701c9486752f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/66c2afe997efeeb00c23f320cd5154b1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/672160928c4f356614c3b08e4dd18959 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/68e88a76cf0ae3b9def99df2da275d32 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/69088615f9cef33446fa9ce9af0cbfcb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/69c591a2e6598aef38bce6f1bfd9a583 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6a460bdc2d2ee57d882a40d6fbd9b706 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c0e89bb1f1dd6fef016f0f030b155a4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/716625880a04396476f184c7f6088be0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/74d99242046d9e80efe6e63d318f0d23 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/75ec5eefcca62d9bfa875ebb00e5acae +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/764217b04b89871d5a19d639ad08d652 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7647442e68634bf506ceb6529c964ff8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/77c132a2a2cf0e255033066a80db84e5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7b3469b8a6587d3fdde5168bcadc1829 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7b89b96229652f6b39b4956713d83fb3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7bb9867f00636aa2e82aab7c8cde1156 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7bd7316976b72a4351629802d0d996ac +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7d185042919d487db4ba3415054bf46b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7d541dc935739c00601285ef558dc186 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7d643ed86fb6b4f4bc4cbc1573edf562 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7d7c5e1189ffb57c1027fbb1f4849056 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7e0a659f836bf08aa7e86a3b3bd64a0a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8085921c00ddb46d86508243dd466f7a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/808e7e23c256ba7b4ae032c997b7f7d1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/813778cca328c7d9a71e6ad9bd6b5b93 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/82af58bd517f6c898e82655012e662f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/851829daaa9bf188f9e6265fd060a111 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/896e0a59c127f026ecc3ce390c394c6d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/898c074f26089ae77019f6bb0d7b87c3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8a58cdb1fd183189a813cb45de9b5ecb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8aa0c86835fc92349a71e76dfa064cf0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8b74d8c3afdb7163f50f52e10b198290 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8c20ea028e7ef9e18ab2517785615d32 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8d50fa8e9c1035cb3fbf50bcd2dad220 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8dda9084ddc7e1b0ce01887b1bfbf7ad +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/91307c7344a9f3f6f727226a87aaf6b1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/95234f56258851aba6ec6fdab79bccb6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/954bb101caefd0c65eaffd0806b60fe2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/977b0e7fd460cd4ebb7482e0bc5dae0d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/980857c735dc36c6448aa7f0a63d5775 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9a27bf15ceccd6156c4fbddfe430431f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9bbfa312e4f834114c0d7fcf15e9d591 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9e4856eaccd8050e2cce8f2726bd1ff9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a0ddccdbb865754a76b131fa64932582 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a1f2a21fb4036d971dd7f36cbfaf3320 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a2719663651c4c47fea4601da97f674b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a30c5479ead2031a2e521cbfa989dca8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a54698289dfb98cb1c3314d66baf5f91 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a5fc721c5e049fa401638dbbe6f01666 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a6324741c7289fc944f62b446136cf36 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a6f3ccbc9cf1cae48fad3c83ffea2dd8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a804717f8c355bf77d84f50220f6b66f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aac96aa095d26ef97f58eb4126da0bf7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aafab1cd25c75cd144df598aa4d48858 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ab136f8b2c696dd4d96e4899a0e8a4ac +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ac74145f99b8dab2053e9ae97ab30b59 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b064391743404352c0d06d1dae692bbc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b0b79f650d323d7f80a4c7456dfce684 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b0e2ed0167a71948529cf8507015a638 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b2bf0c4531b78b65440c4c84908149fe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b344975ddf3cba471441e737f3ca0570 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b4da7dedc3efa1b2420734a75da1402f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b5d99651fe9edd91970e38aaf098c3b6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b81f49d8cf1dbae0f6d1ac4d9d923f17 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b8acda462092c7c76b1322856f8e39ca +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b8bfca64ea01caaf52a8ad9336eba057 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bf9bfc00456efae4900ccf4afcb76b1a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c01f86af98746d42cda25607438cc39f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c0625d8a0a68787afb029146355062df +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c10a1994812cf191cd2ee4ef1f979bf0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c1bea1ba92a5304ffd28cc0af4b325d9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c28f157f3954955f1bc4ca11b085e5f1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c38b7c525999d0c070c974f0e1858073 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c3fbb5f0690b2b69916c7cdfa2e6290b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c4393dff2f5bbfb3db980d09f116e865 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c64c25da8d01c54ccf41dc956d9c9b44 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c6a502787893c3368f02209006ef3c3a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c6fc4a60aef7967d11f2188d3a8317e8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c76f44b59338c92655cdb50acd5a51b7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c843fdb2b33bf3e87833b23027a9adb9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c8c8b769bfa8c90477013dc463dce8dd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c9d60e346e8632bb3945f7e94cce0036 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cb676c28d1dce8658c2ce261c40ff62d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cbb7cfa2a375a0ec163c71490071ae70 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cbfd1cdcc8926af0e015fd6e4a8cfe95 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cc2b3e15e75ad21a379b54186f0b3e63 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ce0f026a8f35c2824e68416229e502b0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cf38200dbb3ee3a9d4dd84cc1d98ada2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d06332ce072d0af8fda4bb34381370ef +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d1734506eed8ef7a8e5c73e599b0debb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d3a4fc418bcc8c28e1477d8ae5981e44 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d60ab8b8e8ff9e6df6e04cb335e79e38 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d786e75d26229c39c37d842fb4de0479 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d9a230b2c36f01509e607c6fc423b04f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/da3b6190521b537ef46190c99c630173 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dc3d91ae1d7f973c1354a745e97076dd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dcef36a5aee30ad53443ea58149b5c8d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dcf2f012e3f4d3ecc9b1a2f21290fefd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/de3b887062709ecbae0f43a1967507b3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/de7818edd5229ecc4f5808d25aea085d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dfd54ce2610fa0bdcd51a47ebe236db4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e010156bdbfaae9098512ae86bf0288b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e0c1faca0fe3b99790f1467965b76234 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e0d30e94a53fc0d324ec29d883efd5a0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e0e949e3a882294df1ac6efb53555963 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e508a5da5b2a6ba14eaabe1fc9987f1b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e64df0317c02ea3aaf0c6ac14b3c1994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ea3fbcf111211cf25a1e84abd8890069 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ea97af2f7f945b7c87258b2338f5bc0c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eb0dcd1f1d9812e1f7eb10b58e6b1ac9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eca6e114f4db2379855c8af72fafaa45 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eeccfebd3c89a085ade5e49efa39fad9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f2137fda0185692d9909c6bde77f6ac5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f270587a206c85bb7163b16529b5ff69 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f5630318facff40bd4c26746561e91a5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7147d2e3eeeaef3c6adef2176a6e9bf +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f72f9d88e28ad73485fcc24ef00be1f0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7428da6a5bd069f4c521897f2ff0549 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fa7d07347669600716cb3cb894127454 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fe4a3fb260cf70c451034496362792e4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ffa3b9093369ac4b2758f390b0cafab4 +0 -0
- data/test/dummy/tmp/cache/assets/production/sass/144bb07df25732886de34fc892b7c84d418ab110/cms.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/production/sass/144bb07df25732886de34fc892b7c84d418ab110/cms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/production/sass/5df77a09e28ee5e99b029d061fc8c7aa74ed8701/bootstrap.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/production/sass/9ef9c546be1f15bd909c4626b18ec56c75aac0ce/cms.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/production/sass/c8e2efff656b76a26ac2cc5b5528e2ab9741b52a/bootstrap.scss.erbc +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/00dfd740f227e8eacf8dc70e8923aa30 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/021d5ce446187b362f442c81dbc04f33 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/052ccadc06984b221f1af051c32e613a +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/0894458794b51b17900c3d7abefc2aa5 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/0ceefdff5c5f03895722be20f6ddc26b +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/0dd47da3f882e810b77e341b2bcd8abc +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/0f096a9239d1b8b3c0d7f0a079ba8dc6 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/0f7e8127f53c92f853b2d1f7f3887b25 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/11eedd47a993ae43b134c4a8323fe16d +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/14e730b33d5c77e57ef1d749d3f59d09 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/16aa40bf8985a2f1f3e5dea5d72e6218 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/17ea4d79d21b1f083c77f59ba9b3372d +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/1893a62d9206a1fb9d89578a47e6dba8 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/1de6a759b14c2e99ab1641cad5521433 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/22a5108e690ae432a7d96ad27ae23356 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/2bf91fb337440bb9de78c2e6c6bcb95f +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/37ffa56a3e6b08a7683a7b180bac45e9 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/3f68640e722ec4648c55f987c372bd1f +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/41b539dab4032aeab4acc677841be9e1 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/4d0e945a1aeffabb6ecbe4e9cfbe9900 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/5343637e2648daefcbb5f6da93e22170 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/5698b010ec22ef0139df1ec7921bada0 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/593143829da9d8a11949cdea62925830 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/5a3608849ffcf6b5ffd0e0c519899b0f +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/5cceba1f5466432ddc1ca00d96bb6af2 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/613c2f7728f24118bf60b70e5467b04e +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/6428de878f492d768cfef210554eb78e +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/65e9bcd0c838633f8992701c9486752f +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/66c2afe997efeeb00c23f320cd5154b1 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/672160928c4f356614c3b08e4dd18959 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/69088615f9cef33446fa9ce9af0cbfcb +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/69c591a2e6598aef38bce6f1bfd9a583 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/6c0e89bb1f1dd6fef016f0f030b155a4 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/74d99242046d9e80efe6e63d318f0d23 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/77c132a2a2cf0e255033066a80db84e5 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/7b3469b8a6587d3fdde5168bcadc1829 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/7b89b96229652f6b39b4956713d83fb3 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/7bb9867f00636aa2e82aab7c8cde1156 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/7d185042919d487db4ba3415054bf46b +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/7d541dc935739c00601285ef558dc186 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/7e0a659f836bf08aa7e86a3b3bd64a0a +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/8085921c00ddb46d86508243dd466f7a +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/808e7e23c256ba7b4ae032c997b7f7d1 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/82af58bd517f6c898e82655012e662f3 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/896e0a59c127f026ecc3ce390c394c6d +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/8aa0c86835fc92349a71e76dfa064cf0 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/8c20ea028e7ef9e18ab2517785615d32 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/91307c7344a9f3f6f727226a87aaf6b1 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/977b0e7fd460cd4ebb7482e0bc5dae0d +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/9e4856eaccd8050e2cce8f2726bd1ff9 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/a0ddccdbb865754a76b131fa64932582 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/aac96aa095d26ef97f58eb4126da0bf7 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/ab136f8b2c696dd4d96e4899a0e8a4ac +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/ac74145f99b8dab2053e9ae97ab30b59 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/b0e2ed0167a71948529cf8507015a638 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/b2bf0c4531b78b65440c4c84908149fe +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/b81f49d8cf1dbae0f6d1ac4d9d923f17 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/bf9bfc00456efae4900ccf4afcb76b1a +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c01f86af98746d42cda25607438cc39f +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c0625d8a0a68787afb029146355062df +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c28f157f3954955f1bc4ca11b085e5f1 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c4393dff2f5bbfb3db980d09f116e865 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c6a502787893c3368f02209006ef3c3a +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c76f44b59338c92655cdb50acd5a51b7 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c8c8b769bfa8c90477013dc463dce8dd +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/c9d60e346e8632bb3945f7e94cce0036 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/cbfd1cdcc8926af0e015fd6e4a8cfe95 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/cc2b3e15e75ad21a379b54186f0b3e63 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/ce0f026a8f35c2824e68416229e502b0 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/cf38200dbb3ee3a9d4dd84cc1d98ada2 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/d60ab8b8e8ff9e6df6e04cb335e79e38 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/d786e75d26229c39c37d842fb4de0479 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/da3b6190521b537ef46190c99c630173 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/dcf2f012e3f4d3ecc9b1a2f21290fefd +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/de3b887062709ecbae0f43a1967507b3 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/e010156bdbfaae9098512ae86bf0288b +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/e0e949e3a882294df1ac6efb53555963 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/e508a5da5b2a6ba14eaabe1fc9987f1b +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/f2137fda0185692d9909c6bde77f6ac5 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/f5630318facff40bd4c26746561e91a5 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/f72f9d88e28ad73485fcc24ef00be1f0 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/f7428da6a5bd069f4c521897f2ff0549 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/fa7d07347669600716cb3cb894127454 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/ffa3b9093369ac4b2758f390b0cafab4 +0 -0
- metadata +1097 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/404.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
24
|
+
</div>
|
|
25
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
26
|
+
</body>
|
|
27
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/422.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
|
7
|
+
div.dialog {
|
|
8
|
+
width: 25em;
|
|
9
|
+
padding: 0 4em;
|
|
10
|
+
margin: 4em auto 0 auto;
|
|
11
|
+
border: 1px solid #ccc;
|
|
12
|
+
border-right-color: #999;
|
|
13
|
+
border-bottom-color: #999;
|
|
14
|
+
}
|
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
|
16
|
+
</style>
|
|
17
|
+
</head>
|
|
18
|
+
|
|
19
|
+
<body>
|
|
20
|
+
<!-- This file lives in public/500.html -->
|
|
21
|
+
<div class="dialog">
|
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
23
|
+
</div>
|
|
24
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$(function(){console.log("I can haz mah own jqueriez at version: "+$.fn.jquery)});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
|
10
|
+
*
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
h1 {
|
|
17
|
+
color: red;
|
|
18
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"files":{"baws-27045628978f5e419d534d01c63ab3d6.jpg":{"logical_path":"baws.jpg","mtime":"2013-05-02T19:13:20+02:00","size":11190,"digest":"27045628978f5e419d534d01c63ab3d6"},"application-4e268cfccc1f26318c22a87c9e6b9095.js":{"logical_path":"application.js","mtime":"2013-04-22T08:20:35+02:00","size":82,"digest":"4e268cfccc1f26318c22a87c9e6b9095"},"application-e006d1eddf81edb7ed682d933d95167f.css":{"logical_path":"application.css","mtime":"2013-04-22T08:20:35+02:00","size":537,"digest":"e006d1eddf81edb7ed682d933d95167f"},"glyphicons-halflings-white-ec01567c9d4e5aba3fd3efa6e3054574.png":{"logical_path":"glyphicons-halflings-white.png","mtime":"2013-05-03T14:52:08+02:00","size":8777,"digest":"ec01567c9d4e5aba3fd3efa6e3054574"},"glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png":{"logical_path":"glyphicons-halflings.png","mtime":"2013-04-27T16:56:55+02:00","size":12799,"digest":"b47b2b03ec961163432b4cfe22cd6f31"},"rubber_ring/application-166bd1c30eaa1f5b77c159a552ca0d1d.js":{"logical_path":"rubber_ring/application.js","mtime":"2013-05-03T14:48:31+02:00","size":129478,"digest":"166bd1c30eaa1f5b77c159a552ca0d1d"},"rubber_ring/application-2211071c03381f99bd440671529d6d2d.css":{"logical_path":"rubber_ring/application.css","mtime":"2013-05-03T15:03:37+02:00","size":144934,"digest":"2211071c03381f99bd440671529d6d2d"},"rubber_ring/application-9b07b9a701e0e3a8bb9f2af9749adbac.js":{"logical_path":"rubber_ring/application.js","mtime":"2013-05-04T16:58:03+02:00","size":128070,"digest":"9b07b9a701e0e3a8bb9f2af9749adbac"},"rubber_ring/application-4ba3fedbf9929e7910c6f1497a82c4d1.css":{"logical_path":"rubber_ring/application.css","mtime":"2013-05-04T16:58:03+02:00","size":145245,"digest":"4ba3fedbf9929e7910c6f1497a82c4d1"}},"assets":{"baws.jpg":"baws-27045628978f5e419d534d01c63ab3d6.jpg","application.js":"application-4e268cfccc1f26318c22a87c9e6b9095.js","application.css":"application-e006d1eddf81edb7ed682d933d95167f.css","glyphicons-halflings-white.png":"glyphicons-halflings-white-ec01567c9d4e5aba3fd3efa6e3054574.png","glyphicons-halflings.png":"glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png","rubber_ring/application.js":"rubber_ring/application-9b07b9a701e0e3a8bb9f2af9749adbac.js","rubber_ring/application.css":"rubber_ring/application-4ba3fedbf9929e7910c6f1497a82c4d1.css"}}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
(function(e,t){function n(e){var t=e.length,n=lt.type(e);return lt.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}function r(e){var t=kt[e]={};return lt.each(e.match(ct)||[],function(e,n){t[n]=!0}),t}function i(e,n,r,i){if(lt.acceptData(e)){var o,a,s=lt.expando,l="string"==typeof n,u=e.nodeType,c=u?lt.cache:e,p=u?e[s]:e[s]&&s;if(p&&c[p]&&(i||c[p].data)||!l||r!==t)return p||(u?e[s]=p=Z.pop()||lt.guid++:p=s),c[p]||(c[p]={},u||(c[p].toJSON=lt.noop)),("object"==typeof n||"function"==typeof n)&&(i?c[p]=lt.extend(c[p],n):c[p].data=lt.extend(c[p].data,n)),o=c[p],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[lt.camelCase(n)]=r),l?(a=o[n],null==a&&(a=o[lt.camelCase(n)])):a=o,a}}function o(e,t,n){if(lt.acceptData(e)){var r,i,o,a=e.nodeType,l=a?lt.cache:e,u=a?e[lt.expando]:lt.expando;if(l[u]){if(t&&(o=n?l[u]:l[u].data)){lt.isArray(t)?t=t.concat(lt.map(t,lt.camelCase)):t in o?t=[t]:(t=lt.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?s:lt.isEmptyObject)(o))return}(n||(delete l[u].data,s(l[u])))&&(a?lt.cleanData([e],!0):lt.support.deleteExpando||l!=l.window?delete l[u]:l[u]=null)}}}function a(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(_t,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:Et.test(r)?lt.parseJSON(r):r}catch(o){}lt.data(e,n,r)}else r=t}return r}function s(e){var t;for(t in e)if(("data"!==t||!lt.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function l(){return!0}function u(){return!1}function c(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function p(e,t,n){if(t=t||0,lt.isFunction(t))return lt.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return lt.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=lt.grep(e,function(e){return 1===e.nodeType});if(zt.test(t))return lt.filter(t,r,!n);t=lt.filter(t,r)}return lt.grep(e,function(e){return lt.inArray(e,t)>=0===n})}function d(e){var t=Ut.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function f(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function h(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function m(e){var t=on.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function g(e,t){for(var n,r=0;null!=(n=e[r]);r++)lt._data(n,"globalEval",!t||lt._data(t[r],"globalEval"))}function v(e,t){if(1===t.nodeType&<.hasData(e)){var n,r,i,o=lt._data(e),a=lt._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)lt.event.add(t,n,s[n][r])}a.data&&(a.data=lt.extend({},a.data))}}function y(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!lt.support.noCloneEvent&&t[lt.expando]){i=lt._data(t);for(r in i.events)lt.removeEvent(t,r,i.handle);t.removeAttribute(lt.expando)}"script"===n&&t.text!==e.text?(h(t).text=e.text,m(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),lt.support.html5Clone&&e.innerHTML&&!lt.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&tn.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function b(e,n){var r,i,o=0,a=typeof e.getElementsByTagName!==Q?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==Q?e.querySelectorAll(n||"*"):t;if(!a)for(a=[],r=e.childNodes||e;null!=(i=r[o]);o++)!n||lt.nodeName(i,n)?a.push(i):lt.merge(a,b(i,n));return n===t||n&<.nodeName(e,n)?lt.merge([e],a):a}function x(e){tn.test(e.type)&&(e.defaultChecked=e.checked)}function w(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=_n.length;i--;)if(t=_n[i]+n,t in e)return t;return r}function T(e,t){return e=t||e,"none"===lt.css(e,"display")||!lt.contains(e.ownerDocument,e)}function k(e,t){for(var n,r,i,o=[],a=0,s=e.length;s>a;a++)r=e[a],r.style&&(o[a]=lt._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&T(r)&&(o[a]=lt._data(r,"olddisplay",N(r.nodeName)))):o[a]||(i=T(r),(n&&"none"!==n||!i)&<._data(r,"olddisplay",i?n:lt.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}function E(e,t,n){var r=yn.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function _(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;4>o;o+=2)"margin"===n&&(a+=lt.css(e,n+En[o],!0,i)),r?("content"===n&&(a-=lt.css(e,"padding"+En[o],!0,i)),"margin"!==n&&(a-=lt.css(e,"border"+En[o]+"Width",!0,i))):(a+=lt.css(e,"padding"+En[o],!0,i),"padding"!==n&&(a+=lt.css(e,"border"+En[o]+"Width",!0,i)));return a}function C(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=pn(e),a=lt.support.boxSizing&&"border-box"===lt.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=dn(e,t,o),(0>i||null==i)&&(i=e.style[t]),bn.test(i))return i;r=a&&(lt.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+_(e,t,n||(a?"border":"content"),r,o)+"px"}function N(e){var t=V,n=wn[e];return n||(n=S(e,t),"none"!==n&&n||(cn=(cn||lt("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(cn[0].contentWindow||cn[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=S(e,t),cn.detach()),wn[e]=n),n}function S(e,t){var n=lt(t.createElement(e)).appendTo(t.body),r=lt.css(n[0],"display");return n.remove(),r}function j(e,t,n,r){var i;if(lt.isArray(t))lt.each(t,function(t,i){n||Nn.test(e)?r(e,i):j(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==lt.type(t))r(e,t);else for(i in t)j(e+"["+i+"]",t[i],n,r)}function A(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(ct)||[];if(lt.isFunction(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function L(e,t,n,r){function i(s){var l;return o[s]=!0,lt.each(e[s]||[],function(e,s){var u=s(t,n,r);return"string"!=typeof u||a||o[u]?a?!(l=u):void 0:(t.dataTypes.unshift(u),i(u),!1)}),l}var o={},a=e===Wn;return i(t.dataTypes[0])||!o["*"]&&i("*")}function D(e,n){var r,i,o=lt.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&<.extend(!0,e,r),e}function F(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);for(;"*"===u[0];)u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):void 0}function H(e,t){var n,r,i,o,a={},s=0,l=e.dataTypes.slice(),u=l[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=l[++s];)if("*"!==r){if("*"!==u&&u!==r){if(i=a[u+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[u+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],l.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+u+" to "+r}}}u=r}return{state:"success",data:t}}function q(){try{return new e.XMLHttpRequest}catch(t){}}function $(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}function M(){return setTimeout(function(){Zn=t}),Zn=lt.now()}function B(e,t){lt.each(t,function(t,n){for(var r=(or[t]||[]).concat(or["*"]),i=0,o=r.length;o>i;i++)if(r[i].call(e,t,n))return})}function O(e,t,n){var r,i,o=0,a=ir.length,s=lt.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;for(var t=Zn||M(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:lt.extend({},t),opts:lt.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Zn||M(),duration:n.duration,tweens:[],createTween:function(t,n){var r=lt.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(P(c,u.opts.specialEasing);a>o;o++)if(r=ir[o].call(u,e,c,u.opts))return r;return B(u,c),lt.isFunction(u.opts.start)&&u.opts.start.call(e,u),lt.fx.timer(lt.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function P(e,t){var n,r,i,o,a;for(i in e)if(r=lt.camelCase(i),o=t[r],n=e[i],lt.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=lt.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}function R(e,t,n){var r,i,o,a,s,l,u,c,p,d=this,f=e.style,h={},m=[],g=e.nodeType&&T(e);n.queue||(c=lt._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,d.always(function(){d.always(function(){c.unqueued--,lt.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[f.overflow,f.overflowX,f.overflowY],"inline"===lt.css(e,"display")&&"none"===lt.css(e,"float")&&(lt.support.inlineBlockNeedsLayout&&"inline"!==N(e.nodeName)?f.zoom=1:f.display="inline-block")),n.overflow&&(f.overflow="hidden",lt.support.shrinkWrapBlocks||d.always(function(){f.overflow=n.overflow[0],f.overflowX=n.overflow[1],f.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],tr.exec(a)){if(delete t[i],l=l||"toggle"===a,a===(g?"hide":"show"))continue;m.push(i)}if(o=m.length){s=lt._data(e,"fxshow")||lt._data(e,"fxshow",{}),"hidden"in s&&(g=s.hidden),l&&(s.hidden=!g),g?lt(e).show():d.done(function(){lt(e).hide()}),d.done(function(){var t;lt._removeData(e,"fxshow");for(t in h)lt.style(e,t,h[t])});for(i=0;o>i;i++)r=m[i],u=d.createTween(r,g?s[r]:0),h[r]=s[r]||lt.style(e,r),r in s||(s[r]=u.start,g&&(u.end=u.start,u.start="width"===r||"height"===r?1:0))}}function I(e,t,n,r,i){return new I.prototype.init(e,t,n,r,i)}function z(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=En[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}function W(e){return lt.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}var X,U,Q=typeof t,V=e.document,Y=e.location,G=e.jQuery,J=e.$,K={},Z=[],et="1.9.1",tt=Z.concat,nt=Z.push,rt=Z.slice,it=Z.indexOf,ot=K.toString,at=K.hasOwnProperty,st=et.trim,lt=function(e,t){return new lt.fn.init(e,t,U)},ut=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ct=/\S+/g,pt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,dt=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,ft=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,ht=/^[\],:{}\s]*$/,mt=/(?:^|:|,)(?:\s*\[)+/g,gt=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,vt=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,yt=/^-ms-/,bt=/-([\da-z])/gi,xt=function(e,t){return t.toUpperCase()},wt=function(e){(V.addEventListener||"load"===e.type||"complete"===V.readyState)&&(Tt(),lt.ready())},Tt=function(){V.addEventListener?(V.removeEventListener("DOMContentLoaded",wt,!1),e.removeEventListener("load",wt,!1)):(V.detachEvent("onreadystatechange",wt),e.detachEvent("onload",wt))};lt.fn=lt.prototype={jquery:et,constructor:lt,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:dt.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof lt?n[0]:n,lt.merge(this,lt.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:V,!0)),ft.test(i[1])&<.isPlainObject(n))for(i in n)lt.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=V.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=V,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):lt.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),lt.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return rt.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=lt.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return lt.each(this,e,t)},ready:function(e){return lt.ready.promise().done(e),this},slice:function(){return this.pushStack(rt.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(lt.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:nt,sort:[].sort,splice:[].splice},lt.fn.init.prototype=lt.fn,lt.extend=lt.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||lt.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(lt.isPlainObject(r)||(n=lt.isArray(r)))?(n?(n=!1,a=e&<.isArray(e)?e:[]):a=e&<.isPlainObject(e)?e:{},s[i]=lt.extend(c,a,r)):r!==t&&(s[i]=r));return s},lt.extend({noConflict:function(t){return e.$===lt&&(e.$=J),t&&e.jQuery===lt&&(e.jQuery=G),lt},isReady:!1,readyWait:1,holdReady:function(e){e?lt.readyWait++:lt.ready(!0)},ready:function(e){if(e===!0?!--lt.readyWait:!lt.isReady){if(!V.body)return setTimeout(lt.ready);lt.isReady=!0,e!==!0&&--lt.readyWait>0||(X.resolveWith(V,[lt]),lt.fn.trigger&<(V).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===lt.type(e)},isArray:Array.isArray||function(e){return"array"===lt.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?String(e):"object"==typeof e||"function"==typeof e?K[ot.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==lt.type(e)||e.nodeType||lt.isWindow(e))return!1;try{if(e.constructor&&!at.call(e,"constructor")&&!at.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||at.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw new Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||V;var r=ft.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=lt.buildFragment([e],t,i),i&<(i).remove(),lt.merge([],r.childNodes))},parseJSON:function(t){return e.JSON&&e.JSON.parse?e.JSON.parse(t):null===t?t:"string"==typeof t&&(t=lt.trim(t),t&&ht.test(t.replace(gt,"@").replace(vt,"]").replace(mt,"")))?new Function("return "+t)():(lt.error("Invalid JSON: "+t),void 0)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||lt.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&<.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(yt,"ms-").replace(bt,xt)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,r){var i,o=0,a=e.length,s=n(e);if(r){if(s)for(;a>o&&(i=t.apply(e[o],r),i!==!1);o++);else for(o in e)if(i=t.apply(e[o],r),i===!1)break}else if(s)for(;a>o&&(i=t.call(e[o],o,e[o]),i!==!1);o++);else for(o in e)if(i=t.call(e[o],o,e[o]),i===!1)break;return e},trim:st&&!st.call(" ")?function(e){return null==e?"":st.call(e)}:function(e){return null==e?"":(e+"").replace(pt,"")},makeArray:function(e,t){var r=t||[];return null!=e&&(n(Object(e))?lt.merge(r,"string"==typeof e?[e]:e):nt.call(r,e)),r},inArray:function(e,t,n){var r;if(t){if(it)return it.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else for(;n[o]!==t;)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,r){var i,o=0,a=e.length,s=n(e),l=[];if(s)for(;a>o;o++)i=t(e[o],o,r),null!=i&&(l[l.length]=i);else for(o in e)i=t(e[o],o,r),null!=i&&(l[l.length]=i);return tt.apply([],l)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),lt.isFunction(e)?(r=rt.call(arguments,2),i=function(){return e.apply(n||this,r.concat(rt.call(arguments)))},i.guid=e.guid=e.guid||lt.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===lt.type(r)){o=!0;for(l in r)lt.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,lt.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(lt(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()}}),lt.ready.promise=function(t){if(!X)if(X=lt.Deferred(),"complete"===V.readyState)setTimeout(lt.ready);else if(V.addEventListener)V.addEventListener("DOMContentLoaded",wt,!1),e.addEventListener("load",wt,!1);else{V.attachEvent("onreadystatechange",wt),e.attachEvent("onload",wt);var n=!1;try{n=null==e.frameElement&&V.documentElement}catch(r){}n&&n.doScroll&&function i(){if(!lt.isReady){try{n.doScroll("left")}catch(e){return setTimeout(i,50)}Tt(),lt.ready()}}()}return X.promise(t)},lt.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){K["[object "+t+"]"]=t.toLowerCase()}),U=lt(V);var kt={};lt.Callbacks=function(e){e="string"==typeof e?kt[e]||r(e):lt.extend({},e);var n,i,o,a,s,l,u=[],c=!e.once&&[],p=function(t){for(i=e.memory&&t,o=!0,s=l||0,l=0,a=u.length,n=!0;u&&a>s;s++)if(u[s].apply(t[0],t[1])===!1&&e.stopOnFalse){i=!1;break}n=!1,u&&(c?c.length&&p(c.shift()):i?u=[]:d.disable())},d={add:function(){if(u){var t=u.length;(function r(t){lt.each(t,function(t,n){var i=lt.type(n);"function"===i?e.unique&&d.has(n)||u.push(n):n&&n.length&&"string"!==i&&r(n)})})(arguments),n?a=u.length:i&&(l=t,p(i))}return this},remove:function(){return u&<.each(arguments,function(e,t){for(var r;(r=lt.inArray(t,u,r))>-1;)u.splice(r,1),n&&(a>=r&&a--,s>=r&&s--)}),this},has:function(e){return e?lt.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=c=i=t,this},disabled:function(){return!u},lock:function(){return c=t,i||d.disable(),this},locked:function(){return!c},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||o&&!c||(n?c.push(t):p(t)),this},fire:function(){return d.fireWith(this,arguments),this},fired:function(){return!!o}};return d},lt.extend({Deferred:function(e){var t=[["resolve","done",lt.Callbacks("once memory"),"resolved"],["reject","fail",lt.Callbacks("once memory"),"rejected"],["notify","progress",lt.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return lt.Deferred(function(n){lt.each(t,function(t,o){var a=o[0],s=lt.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&<.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?lt.extend(e,r):r}},i={};return r.pipe=r.then,lt.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=rt.call(arguments),a=o.length,s=1!==a||e&<.isFunction(e.promise)?a:0,l=1===s?e:lt.Deferred(),u=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?rt.call(arguments):i,r===t?l.notifyWith(n,r):--s||l.resolveWith(n,r)}};if(a>1)for(t=new Array(a),n=new Array(a),r=new Array(a);a>i;i++)o[i]&<.isFunction(o[i].promise)?o[i].promise().done(u(i,r,o)).fail(l.reject).progress(u(i,n,t)):--s;return s||l.resolveWith(r,o),l.promise()}}),lt.support=function(){var t,n,r,i,o,a,s,l,u,c,p=V.createElement("div");if(p.setAttribute("className","t"),p.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=p.getElementsByTagName("*"),r=p.getElementsByTagName("a")[0],!n||!r||!n.length)return{};o=V.createElement("select"),s=o.appendChild(V.createElement("option")),i=p.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==p.className,leadingWhitespace:3===p.firstChild.nodeType,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!i.value,optSelected:s.selected,enctype:!!V.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==V.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===V.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},i.checked=!0,t.noCloneChecked=i.cloneNode(!0).checked,o.disabled=!0,t.optDisabled=!s.disabled;try{delete p.test}catch(d){t.deleteExpando=!1}i=V.createElement("input"),i.setAttribute("value",""),t.input=""===i.getAttribute("value"),i.value="t",i.setAttribute("type","radio"),t.radioValue="t"===i.value,i.setAttribute("checked","t"),i.setAttribute("name","t"),a=V.createDocumentFragment(),a.appendChild(i),t.appendChecked=i.checked,t.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,p.attachEvent&&(p.attachEvent("onclick",function(){t.noCloneEvent=!1}),p.cloneNode(!0).click());for(c in{submit:!0,change:!0,focusin:!0})p.setAttribute(l="on"+c,"t"),t[c+"Bubbles"]=l in e||p.attributes[l].expando===!1;return p.style.backgroundClip="content-box",p.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===p.style.backgroundClip,lt(function(){var n,r,i,o="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",a=V.getElementsByTagName("body")[0];a&&(n=V.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(p),p.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=p.getElementsByTagName("td"),i[0].style.cssText="padding:0;margin:0;border:0;display:none",u=0===i[0].offsetHeight,i[0].style.display="",i[1].style.display="none",t.reliableHiddenOffsets=u&&0===i[0].offsetHeight,p.innerHTML="",p.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===p.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==a.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(p,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(p,null)||{width:"4px"}).width,r=p.appendChild(V.createElement("div")),r.style.cssText=p.style.cssText=o,r.style.marginRight=r.style.width="0",p.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof p.style.zoom!==Q&&(p.innerHTML="",p.style.cssText=o+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===p.offsetWidth,p.style.display="block",p.innerHTML="<div></div>",p.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==p.offsetWidth,t.inlineBlockNeedsLayout&&(a.style.zoom=1)),a.removeChild(n),n=p=i=r=null)}),n=o=a=s=r=i=null,t}();var Et=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,_t=/([A-Z])/g;lt.extend({cache:{},expando:"jQuery"+(et+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?lt.cache[e[lt.expando]]:e[lt.expando],!!e&&!s(e)},data:function(e,t,n){return i(e,t,n)},removeData:function(e,t){return o(e,t)},_data:function(e,t,n){return i(e,t,n,!0)},_removeData:function(e,t){return o(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&<.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),lt.fn.extend({data:function(e,n){var r,i,o=this[0],s=0,l=null;if(e===t){if(this.length&&(l=lt.data(o),1===o.nodeType&&!lt._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>s;s++)i=r[s].name,i.indexOf("data-")||(i=lt.camelCase(i.slice(5)),a(o,i,l[i]));lt._data(o,"parsedAttrs",!0)}return l}return"object"==typeof e?this.each(function(){lt.data(this,e)}):lt.access(this,function(n){return n===t?o?a(o,e,lt.data(o,e)):null:(this.each(function(){lt.data(this,e,n)}),void 0)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){lt.removeData(this,e)})}}),lt.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=lt._data(e,t),n&&(!r||lt.isArray(n)?r=lt._data(e,t,lt.makeArray(n)):r.push(n)),r||[]):void 0},dequeue:function(e,t){t=t||"fx";var n=lt.queue(e,t),r=n.length,i=n.shift(),o=lt._queueHooks(e,t),a=function(){lt.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return lt._data(e,n)||lt._data(e,n,{empty:lt.Callbacks("once memory").add(function(){lt._removeData(e,t+"queue"),lt._removeData(e,n)})})}}),lt.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?lt.queue(this[0],e):n===t?this:this.each(function(){var t=lt.queue(this,e,n);lt._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&<.dequeue(this,e)})},dequeue:function(e){return this.each(function(){lt.dequeue(this,e)})},delay:function(e,t){return e=lt.fx?lt.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=lt.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};for("string"!=typeof e&&(n=e,e=t),e=e||"fx";s--;)r=lt._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var Ct,Nt,St=/[\t\r\n]/g,jt=/\r/g,At=/^(?:input|select|textarea|button|object)$/i,Lt=/^(?:a|area)$/i,Dt=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,Ft=/^(?:checked|selected)$/i,Ht=lt.support.getSetAttribute,qt=lt.support.input;lt.fn.extend({attr:function(e,t){return lt.access(this,lt.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){lt.removeAttr(this,e)})},prop:function(e,t){return lt.access(this,lt.prop,e,t,arguments.length>1)},removeProp:function(e){return e=lt.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(lt.isFunction(e))return this.each(function(t){lt(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(ct)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(St," "):" ")){for(o=0;i=t[o++];)0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=lt.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(lt.isFunction(e))return this.each(function(t){lt(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(ct)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(St," "):"")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");n.className=e?lt.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return lt.isFunction(e)?this.each(function(n){lt(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n)for(var i,o=0,a=lt(this),s=t,l=e.match(ct)||[];i=l[o++];)s=r?s:!a.hasClass(i),a[s?"addClass":"removeClass"](i);else(n===Q||"boolean"===n)&&(this.className&<._data(this,"__className__",this.className),this.className=this.className||e===!1?"":lt._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,r=this.length;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(St," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=lt.isFunction(e),this.each(function(n){var o,a=lt(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":lt.isArray(o)&&(o=lt.map(o,function(e){return null==e?"":e+""})),r=lt.valHooks[this.type]||lt.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=lt.valHooks[o.type]||lt.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(jt,""):null==n?"":n)}}}),lt.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(lt.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&<.nodeName(n.parentNode,"optgroup"))){if(t=lt(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=lt.makeArray(t);return lt(e).find("option").each(function(){this.selected=lt.inArray(lt(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===Q?lt.prop(e,n,r):(o=1!==s||!lt.isXMLDoc(e),o&&(n=n.toLowerCase(),i=lt.attrHooks[n]||(Dt.test(n)?Nt:Ct)),r===t?i&&o&&"get"in i&&null!==(a=i.get(e,n))?a:(typeof e.getAttribute!==Q&&(a=e.getAttribute(n)),null==a?t:a):null!==r?i&&o&&"set"in i&&(a=i.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(lt.removeAttr(e,n),void 0))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(ct);if(o&&1===e.nodeType)for(;n=o[i++];)r=lt.propFix[n]||n,Dt.test(n)?!Ht&&Ft.test(n)?e[lt.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:lt.attr(e,n,""),e.removeAttribute(Ht?n:r)},attrHooks:{type:{set:function(e,t){if(!lt.support.radioValue&&"radio"===t&<.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!lt.isXMLDoc(e),a&&(n=lt.propFix[n]||n,o=lt.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):At.test(e.nodeName)||Lt.test(e.nodeName)&&e.href?0:t}}}}),Nt={get:function(e,n){var r=lt.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?qt&&Ht?null!=i:Ft.test(n)?e[lt.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?lt.removeAttr(e,n):qt&&Ht||!Ft.test(n)?e.setAttribute(!Ht&<.propFix[n]||n,n):e[lt.camelCase("default-"+n)]=e[n]=!0,n}},qt&&Ht||(lt.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return lt.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,t,n){return lt.nodeName(e,"input")?(e.defaultValue=t,void 0):Ct&&Ct.set(e,t,n)}}),Ht||(Ct=lt.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t
|
|
2
|
+
}},lt.attrHooks.contenteditable={get:Ct.get,set:function(e,t,n){Ct.set(e,""===t?!1:t,n)}},lt.each(["width","height"],function(e,t){lt.attrHooks[t]=lt.extend(lt.attrHooks[t],{set:function(e,n){return""===n?(e.setAttribute(t,"auto"),n):void 0}})})),lt.support.hrefNormalized||(lt.each(["href","src","width","height"],function(e,n){lt.attrHooks[n]=lt.extend(lt.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),lt.each(["href","src"],function(e,t){lt.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),lt.support.style||(lt.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),lt.support.optSelected||(lt.propHooks.selected=lt.extend(lt.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),lt.support.enctype||(lt.propFix.enctype="encoding"),lt.support.checkOn||lt.each(["radio","checkbox"],function(){lt.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),lt.each(["radio","checkbox"],function(){lt.valHooks[this]=lt.extend(lt.valHooks[this],{set:function(e,t){return lt.isArray(t)?e.checked=lt.inArray(lt(e).val(),t)>=0:void 0}})});var $t=/^(?:input|select|textarea)$/i,Mt=/^key/,Bt=/^(?:mouse|contextmenu)|click/,Ot=/^(?:focusinfocus|focusoutblur)$/,Pt=/^([^.]*)(?:\.(.+)|)$/;lt.event={global:{},add:function(e,n,r,i,o){var a,s,l,u,c,p,d,f,h,m,g,v=lt._data(e);if(v){for(r.handler&&(u=r,r=u.handler,o=u.selector),r.guid||(r.guid=lt.guid++),(s=v.events)||(s=v.events={}),(p=v.handle)||(p=v.handle=function(e){return typeof lt===Q||e&<.event.triggered===e.type?t:lt.event.dispatch.apply(p.elem,arguments)},p.elem=e),n=(n||"").match(ct)||[""],l=n.length;l--;)a=Pt.exec(n[l])||[],h=g=a[1],m=(a[2]||"").split(".").sort(),c=lt.event.special[h]||{},h=(o?c.delegateType:c.bindType)||h,c=lt.event.special[h]||{},d=lt.extend({type:h,origType:g,data:i,handler:r,guid:r.guid,selector:o,needsContext:o&<.expr.match.needsContext.test(o),namespace:m.join(".")},u),(f=s[h])||(f=s[h]=[],f.delegateCount=0,c.setup&&c.setup.call(e,i,m,p)!==!1||(e.addEventListener?e.addEventListener(h,p,!1):e.attachEvent&&e.attachEvent("on"+h,p))),c.add&&(c.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),o?f.splice(f.delegateCount++,0,d):f.push(d),lt.event.global[h]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,d,f,h,m,g=lt.hasData(e)&<._data(e);if(g&&(c=g.events)){for(t=(t||"").match(ct)||[""],u=t.length;u--;)if(s=Pt.exec(t[u])||[],f=m=s[1],h=(s[2]||"").split(".").sort(),f){for(p=lt.event.special[f]||{},f=(r?p.delegateType:p.bindType)||f,d=c[f]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=d.length;o--;)a=d[o],!i&&m!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(d.splice(o,1),a.selector&&d.delegateCount--,p.remove&&p.remove.call(e,a));l&&!d.length&&(p.teardown&&p.teardown.call(e,h,g.handle)!==!1||lt.removeEvent(e,f,g.handle),delete c[f])}else for(f in c)lt.event.remove(e,f+t[u],n,r,!0);lt.isEmptyObject(c)&&(delete g.handle,lt._removeData(e,"events"))}},trigger:function(n,r,i,o){var a,s,l,u,c,p,d,f=[i||V],h=at.call(n,"type")?n.type:n,m=at.call(n,"namespace")?n.namespace.split("."):[];if(l=p=i=i||V,3!==i.nodeType&&8!==i.nodeType&&!Ot.test(h+lt.event.triggered)&&(h.indexOf(".")>=0&&(m=h.split("."),h=m.shift(),m.sort()),s=0>h.indexOf(":")&&"on"+h,n=n[lt.expando]?n:new lt.Event(h,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:lt.makeArray(r,[n]),c=lt.event.special[h]||{},o||!c.trigger||c.trigger.apply(i,r)!==!1)){if(!o&&!c.noBubble&&!lt.isWindow(i)){for(u=c.delegateType||h,Ot.test(u+h)||(l=l.parentNode);l;l=l.parentNode)f.push(l),p=l;p===(i.ownerDocument||V)&&f.push(p.defaultView||p.parentWindow||e)}for(d=0;(l=f[d++])&&!n.isPropagationStopped();)n.type=d>1?u:c.bindType||h,a=(lt._data(l,"events")||{})[n.type]&<._data(l,"handle"),a&&a.apply(l,r),a=s&&l[s],a&<.acceptData(l)&&a.apply&&a.apply(l,r)===!1&&n.preventDefault();if(n.type=h,!(o||n.isDefaultPrevented()||c._default&&c._default.apply(i.ownerDocument,r)!==!1||"click"===h&<.nodeName(i,"a")||!lt.acceptData(i)||!s||!i[h]||lt.isWindow(i))){p=i[s],p&&(i[s]=null),lt.event.triggered=h;try{i[h]()}catch(g){}lt.event.triggered=t,p&&(i[s]=p)}return n.result}},dispatch:function(e){e=lt.event.fix(e);var n,r,i,o,a,s=[],l=rt.call(arguments),u=(lt._data(this,"events")||{})[e.type]||[],c=lt.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){for(s=lt.event.handlers.call(this,e,u),n=0;(o=s[n++])&&!e.isPropagationStopped();)for(e.currentTarget=o.elem,a=0;(i=o.handlers[a++])&&!e.isImmediatePropagationStopped();)(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((lt.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?lt(r,this).index(u)>=0:lt.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[lt.expando])return e;var t,n,r,i=e.type,o=e,a=this.fixHooks[i];for(a||(this.fixHooks[i]=a=Bt.test(i)?this.mouseHooks:Mt.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new lt.Event(o),t=r.length;t--;)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||V),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,a.filter?a.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,a=n.button,s=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||V,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&s&&(e.relatedTarget=s===e.target?n.toElement:s),e.which||a===t||(e.which=1&a?1:2&a?3:4&a?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return lt.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0}},focus:{trigger:function(){if(this!==V.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===V.activeElement&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=lt.extend(new lt.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?lt.event.trigger(i,null,t):lt.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},lt.removeEvent=V.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===Q&&(e[r]=null),e.detachEvent(r,n))},lt.Event=function(e,t){return this instanceof lt.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?l:u):this.type=e,t&<.extend(this,t),this.timeStamp=e&&e.timeStamp||lt.now(),this[lt.expando]=!0,void 0):new lt.Event(e,t)},lt.Event.prototype={isDefaultPrevented:u,isPropagationStopped:u,isImmediatePropagationStopped:u,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=l,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=l,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=l,this.stopPropagation()}},lt.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){lt.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!lt.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),lt.support.submitBubbles||(lt.event.special.submit={setup:function(){return lt.nodeName(this,"form")?!1:(lt.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=lt.nodeName(n,"input")||lt.nodeName(n,"button")?n.form:t;r&&!lt._data(r,"submitBubbles")&&(lt.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),lt._data(r,"submitBubbles",!0))}),void 0)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&<.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return lt.nodeName(this,"form")?!1:(lt.event.remove(this,"._submit"),void 0)}}),lt.support.changeBubbles||(lt.event.special.change={setup:function(){return $t.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(lt.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),lt.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),lt.event.simulate("change",this,e,!0)})),!1):(lt.event.add(this,"beforeactivate._change",function(e){var t=e.target;$t.test(t.nodeName)&&!lt._data(t,"changeBubbles")&&(lt.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||lt.event.simulate("change",this.parentNode,e,!0)}),lt._data(t,"changeBubbles",!0))}),void 0)},handle:function(e){var t=e.target;return this!==t||e.isSimulated||e.isTrigger||"radio"!==t.type&&"checkbox"!==t.type?e.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return lt.event.remove(this,"._change"),!$t.test(this.nodeName)}}),lt.support.focusinBubbles||lt.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){lt.event.simulate(t,e.target,lt.event.fix(e),!0)};lt.event.special[t]={setup:function(){0===n++&&V.addEventListener(e,r,!0)},teardown:function(){0===--n&&V.removeEventListener(e,r,!0)}}}),lt.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=u;else if(!i)return this;return 1===o&&(s=i,i=function(e){return lt().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=lt.guid++)),this.each(function(){lt.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,lt(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=u),this.each(function(){lt.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){lt.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?lt.event.trigger(e,t,n,!0):void 0}}),function(e,t){function n(e){return ht.test(e+"")}function r(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>E.cacheLength&&delete e[t.shift()],e[n]=r}}function i(e){return e[O]=!0,e}function o(e){var t=L.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function a(e,t,n,r){var i,o,a,s,l,u,c,f,h,m;if((t?t.ownerDocument||t:P)!==L&&A(t),t=t||L,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!F&&!r){if(i=mt.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&M(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return J.apply(n,K.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&R.getByClassName&&t.getElementsByClassName)return J.apply(n,K.call(t.getElementsByClassName(a),0)),n}if(R.qsa&&!H.test(e)){if(c=!0,f=O,h=t,m=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(u=p(e),(c=t.getAttribute("id"))?f=c.replace(yt,"\\$&"):t.setAttribute("id",f),f="[id='"+f+"'] ",l=u.length;l--;)u[l]=f+d(u[l]);h=ft.test(e)&&t.parentNode||t,m=u.join(",")}if(m)try{return J.apply(n,K.call(h.querySelectorAll(m),0)),n}catch(g){}finally{c||t.removeAttribute("id")}}}return x(e.replace(at,"$1"),t,n,r)}function s(e,t){var n=t&&e,r=n&&(~t.sourceIndex||V)-(~e.sourceIndex||V);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function l(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function u(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function c(e){return i(function(t){return t=+t,i(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function p(e,t){var n,r,i,o,s,l,u,c=X[e+" "];if(c)return t?0:c.slice(0);for(s=e,l=[],u=E.preFilter;s;){(!n||(r=st.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=ut.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(at," ")}),s=s.slice(n.length));for(o in E.filter)!(r=dt[o].exec(s))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?a.error(e):X(e,l).slice(0)}function d(e){for(var t=0,n=e.length,r="";n>t;t++)r+=e[t].value;return r}function f(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=z++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,a){var s,l,u,c=I+" "+o;if(a){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,a))return!0}else for(;t=t[r];)if(1===t.nodeType||i)if(u=t[O]||(t[O]={}),(l=u[r])&&l[0]===c){if((s=l[1])===!0||s===k)return s===!0}else if(l=u[r]=[c],l[1]=e(t,n,a)||k,l[1]===!0)return!0}}function h(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function m(e,t,n,r,i){for(var o,a=[],s=0,l=e.length,u=null!=t;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function g(e,t,n,r,o,a){return r&&!r[O]&&(r=g(r)),o&&!o[O]&&(o=g(o,a)),i(function(i,a,s,l){var u,c,p,d=[],f=[],h=a.length,g=i||b(t||"*",s.nodeType?[s]:s,[]),v=!e||!i&&t?g:m(g,d,e,s,l),y=n?o||(i?e:h||r)?[]:a:v;if(n&&n(v,y,s,l),r)for(u=m(y,f),r(u,[],s,l),c=u.length;c--;)(p=u[c])&&(y[f[c]]=!(v[f[c]]=p));if(i){if(o||e){if(o){for(u=[],c=y.length;c--;)(p=y[c])&&u.push(v[c]=p);o(null,y=[],u,l)}for(c=y.length;c--;)(p=y[c])&&(u=o?Z.call(i,p):d[c])>-1&&(i[u]=!(a[u]=p))}}else y=m(y===a?y.splice(h,y.length):y),o?o(null,a,y,l):J.apply(a,y)})}function v(e){for(var t,n,r,i=e.length,o=E.relative[e[0].type],a=o||E.relative[" "],s=o?1:0,l=f(function(e){return e===t},a,!0),u=f(function(e){return Z.call(t,e)>-1},a,!0),c=[function(e,n,r){return!o&&(r||n!==j)||((t=n).nodeType?l(e,n,r):u(e,n,r))}];i>s;s++)if(n=E.relative[e[s].type])c=[f(h(c),n)];else{if(n=E.filter[e[s].type].apply(null,e[s].matches),n[O]){for(r=++s;i>r&&!E.relative[e[r].type];r++);return g(s>1&&h(c),s>1&&d(e.slice(0,s-1)).replace(at,"$1"),n,r>s&&v(e.slice(s,r)),i>r&&v(e=e.slice(r)),i>r&&d(e))}c.push(n)}return h(c)}function y(e,t){var n=0,r=t.length>0,o=e.length>0,s=function(i,s,l,u,c){var p,d,f,h=[],g=0,v="0",y=i&&[],b=null!=c,x=j,w=i||o&&E.find.TAG("*",c&&s.parentNode||s),T=I+=null==x?1:Math.random()||.1;for(b&&(j=s!==L&&s,k=n);null!=(p=w[v]);v++){if(o&&p){for(d=0;f=e[d++];)if(f(p,s,l)){u.push(p);break}b&&(I=T,k=++n)}r&&((p=!f&&p)&&g--,i&&y.push(p))}if(g+=v,r&&v!==g){for(d=0;f=t[d++];)f(y,h,s,l);if(i){if(g>0)for(;v--;)y[v]||h[v]||(h[v]=G.call(u));h=m(h)}J.apply(u,h),b&&!i&&h.length>0&&g+t.length>1&&a.uniqueSort(u)}return b&&(I=T,j=x),y};return r?i(s):s}function b(e,t,n){for(var r=0,i=t.length;i>r;r++)a(e,t[r],n);return n}function x(e,t,n,r){var i,o,a,s,l,u=p(e);if(!r&&1===u.length){if(o=u[0]=u[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&9===t.nodeType&&!F&&E.relative[o[1].type]){if(t=E.find.ID(a.matches[0].replace(xt,wt),t)[0],!t)return n;e=e.slice(o.shift().value.length)}for(i=dt.needsContext.test(e)?0:o.length;i--&&(a=o[i],!E.relative[s=a.type]);)if((l=E.find[s])&&(r=l(a.matches[0].replace(xt,wt),ft.test(o[0].type)&&t.parentNode||t))){if(o.splice(i,1),e=r.length&&d(o),!e)return J.apply(n,K.call(r,0)),n;break}}return N(e,u)(r,t,F,n,ft.test(e)),n}function w(){}var T,k,E,_,C,N,S,j,A,L,D,F,H,q,$,M,B,O="sizzle"+-new Date,P=e.document,R={},I=0,z=0,W=r(),X=r(),U=r(),Q=typeof t,V=1<<31,Y=[],G=Y.pop,J=Y.push,K=Y.slice,Z=Y.indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(this[t]===e)return t;return-1},et="[\\x20\\t\\r\\n\\f]",tt="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",nt=tt.replace("w","w#"),rt="([*^$|!~]?=)",it="\\["+et+"*("+tt+")"+et+"*(?:"+rt+et+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+nt+")|)|)"+et+"*\\]",ot=":("+tt+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+it.replace(3,8)+")*)|.*)\\)|)",at=new RegExp("^"+et+"+|((?:^|[^\\\\])(?:\\\\.)*)"+et+"+$","g"),st=new RegExp("^"+et+"*,"+et+"*"),ut=new RegExp("^"+et+"*([\\x20\\t\\r\\n\\f>+~])"+et+"*"),ct=new RegExp(ot),pt=new RegExp("^"+nt+"$"),dt={ID:new RegExp("^#("+tt+")"),CLASS:new RegExp("^\\.("+tt+")"),NAME:new RegExp("^\\[name=['\"]?("+tt+")['\"]?\\]"),TAG:new RegExp("^("+tt.replace("w","w*")+")"),ATTR:new RegExp("^"+it),PSEUDO:new RegExp("^"+ot),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+et+"*(even|odd|(([+-]|)(\\d*)n|)"+et+"*(?:([+-]|)"+et+"*(\\d+)|))"+et+"*\\)|)","i"),needsContext:new RegExp("^"+et+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+et+"*((?:-\\d)?\\d*)"+et+"*\\)|)(?=[^-]|$)","i")},ft=/[\x20\t\r\n\f]*[+~]/,ht=/^[^{]+\{\s*\[native code/,mt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,gt=/^(?:input|select|textarea|button)$/i,vt=/^h\d$/i,yt=/'|\\/g,bt=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,xt=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,wt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{K.call(P.documentElement.childNodes,0)[0].nodeType}catch(Tt){K=function(e){for(var t,n=[];t=this[e++];)n.push(t);return n}}C=a.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},A=a.setDocument=function(e){var r=e?e.ownerDocument||e:P;return r!==L&&9===r.nodeType&&r.documentElement?(L=r,D=r.documentElement,F=C(r),R.tagNameNoComments=o(function(e){return e.appendChild(r.createComment("")),!e.getElementsByTagName("*").length}),R.attributes=o(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),R.getByClassName=o(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),R.getByName=o(function(e){e.id=O+0,e.innerHTML="<a name='"+O+"'></a><div name='"+O+"'></div>",D.insertBefore(e,D.firstChild);var t=r.getElementsByName&&r.getElementsByName(O).length===2+r.getElementsByName(O+0).length;return R.getIdNotName=!r.getElementById(O),D.removeChild(e),t}),E.attrHandle=o(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==Q&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},R.getIdNotName?(E.find.ID=function(e,t){if(typeof t.getElementById!==Q&&!F){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},E.filter.ID=function(e){var t=e.replace(xt,wt);return function(e){return e.getAttribute("id")===t}}):(E.find.ID=function(e,n){if(typeof n.getElementById!==Q&&!F){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==Q&&r.getAttributeNode("id").value===e?[r]:t:[]}},E.filter.ID=function(e){var t=e.replace(xt,wt);return function(e){var n=typeof e.getAttributeNode!==Q&&e.getAttributeNode("id");return n&&n.value===t}}),E.find.TAG=R.tagNameNoComments?function(e,t){return typeof t.getElementsByTagName!==Q?t.getElementsByTagName(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},E.find.NAME=R.getByName&&function(e,t){return typeof t.getElementsByName!==Q?t.getElementsByName(name):void 0},E.find.CLASS=R.getByClassName&&function(e,t){return typeof t.getElementsByClassName===Q||F?void 0:t.getElementsByClassName(e)},q=[],H=[":focus"],(R.qsa=n(r.querySelectorAll))&&(o(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||H.push("\\["+et+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||H.push(":checked")}),o(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&H.push("[*^$]="+et+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||H.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),H.push(",.*:")})),(R.matchesSelector=n($=D.matchesSelector||D.mozMatchesSelector||D.webkitMatchesSelector||D.oMatchesSelector||D.msMatchesSelector))&&o(function(e){R.disconnectedMatch=$.call(e,"div"),$.call(e,"[s!='']:x"),q.push("!=",ot)}),H=new RegExp(H.join("|")),q=new RegExp(q.join("|")),M=n(D.contains)||D.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},B=D.compareDocumentPosition?function(e,t){var n;return e===t?(S=!0,0):(n=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&n||e.parentNode&&11===e.parentNode.nodeType?e===r||M(P,e)?-1:t===r||M(P,t)?1:0:4&n?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var n,i=0,o=e.parentNode,a=t.parentNode,l=[e],u=[t];if(e===t)return S=!0,0;if(!o||!a)return e===r?-1:t===r?1:o?-1:a?1:0;if(o===a)return s(e,t);for(n=e;n=n.parentNode;)l.unshift(n);for(n=t;n=n.parentNode;)u.unshift(n);for(;l[i]===u[i];)i++;return i?s(l[i],u[i]):l[i]===P?-1:u[i]===P?1:0},S=!1,[0,0].sort(B),R.detectDuplicates=S,L):L},a.matches=function(e,t){return a(e,null,null,t)},a.matchesSelector=function(e,t){if((e.ownerDocument||e)!==L&&A(e),t=t.replace(bt,"='$1']"),!(!R.matchesSelector||F||q&&q.test(t)||H.test(t)))try{var n=$.call(e,t);if(n||R.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return a(t,L,null,[e]).length>0},a.contains=function(e,t){return(e.ownerDocument||e)!==L&&A(e),M(e,t)},a.attr=function(e,t){var n;return(e.ownerDocument||e)!==L&&A(e),F||(t=t.toLowerCase()),(n=E.attrHandle[t])?n(e):F||R.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},a.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},a.uniqueSort=function(e){var t,n=[],r=1,i=0;if(S=!R.detectDuplicates,e.sort(B),S){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));for(;i--;)e.splice(n[i],1)}return e},_=a.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=_(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=_(t);return n},E=a.selectors={cacheLength:50,createPseudo:i,match:dt,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(xt,wt),e[3]=(e[4]||e[5]||"").replace(xt,wt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||a.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&a.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return dt.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&ct.test(n)&&(t=p(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(xt,wt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+et+")"+e+"("+et+"|$)"))&&W(e,function(e){return t.test(e.className||typeof e.getAttribute!==Q&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=a.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,d,f,h,m=o!==a?"nextSibling":"previousSibling",g=t.parentNode,v=s&&t.nodeName.toLowerCase(),y=!l&&!s;if(g){if(o){for(;m;){for(p=t;p=p[m];)if(s?p.nodeName.toLowerCase()===v:1===p.nodeType)return!1;h=m="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?g.firstChild:g.lastChild],a&&y){for(c=g[O]||(g[O]={}),u=c[e]||[],f=u[0]===I&&u[1],d=u[0]===I&&u[2],p=f&&g.childNodes[f];p=++f&&p&&p[m]||(d=f=0)||h.pop();)if(1===p.nodeType&&++d&&p===t){c[e]=[I,f,d];break}}else if(y&&(u=(t[O]||(t[O]={}))[e])&&u[0]===I)d=u[1];else for(;(p=++f&&p&&p[m]||(d=f=0)||h.pop())&&((s?p.nodeName.toLowerCase()!==v:1!==p.nodeType)||!++d||(y&&((p[O]||(p[O]={}))[e]=[I,d]),p!==t)););return d-=i,d===r||0===d%r&&d/r>=0}}},PSEUDO:function(e,t){var n,r=E.pseudos[e]||E.setFilters[e.toLowerCase()]||a.error("unsupported pseudo: "+e);return r[O]?r(t):r.length>1?(n=[e,e,"",t],E.setFilters.hasOwnProperty(e.toLowerCase())?i(function(e,n){for(var i,o=r(e,t),a=o.length;a--;)i=Z.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:i(function(e){var t=[],n=[],r=N(e.replace(at,"$1"));return r[O]?i(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:i(function(e){return function(t){return a(e,t).length>0}}),contains:i(function(e){return function(t){return(t.textContent||t.innerText||_(t)).indexOf(e)>-1}}),lang:i(function(e){return pt.test(e||"")||a.error("unsupported lang: "+e),e=e.replace(xt,wt).toLowerCase(),function(t){var n;do if(n=F?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===D},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!E.pseudos.empty(e)},header:function(e){return vt.test(e.nodeName)},input:function(e){return gt.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:c(function(){return[0]}),last:c(function(e,t){return[t-1]}),eq:c(function(e,t,n){return[0>n?n+t:n]}),even:c(function(e,t){for(var n=0;t>n;n+=2)e.push(n);return e}),odd:c(function(e,t){for(var n=1;t>n;n+=2)e.push(n);return e}),lt:c(function(e,t,n){for(var r=0>n?n+t:n;--r>=0;)e.push(r);return e}),gt:c(function(e,t,n){for(var r=0>n?n+t:n;t>++r;)e.push(r);return e})}};for(T in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})E.pseudos[T]=l(T);for(T in{submit:!0,reset:!0})E.pseudos[T]=u(T);N=a.compile=function(e,t){var n,r=[],i=[],o=U[e+" "];if(!o){for(t||(t=p(e)),n=t.length;n--;)o=v(t[n]),o[O]?r.push(o):i.push(o);o=U(e,y(i,r))}return o},E.pseudos.nth=E.pseudos.eq,E.filters=w.prototype=E.pseudos,E.setFilters=new w,A(),a.attr=lt.attr,lt.find=a,lt.expr=a.selectors,lt.expr[":"]=lt.expr.pseudos,lt.unique=a.uniqueSort,lt.text=a.getText,lt.isXMLDoc=a.isXML,lt.contains=a.contains}(e);var Rt=/Until$/,It=/^(?:parents|prev(?:Until|All))/,zt=/^.[^:#\[\.,]*$/,Wt=lt.expr.match.needsContext,Xt={children:!0,contents:!0,next:!0,prev:!0};lt.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(lt(e).filter(function(){for(t=0;i>t;t++)if(lt.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)lt.find(e,this[t],n);return n=this.pushStack(i>1?lt.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=lt(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(lt.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(p(this,e,!1))},filter:function(e){return this.pushStack(p(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?Wt.test(e)?lt(e,this.context).index(this[0])>=0:lt.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){for(var n,r=0,i=this.length,o=[],a=Wt.test(e)||"string"!=typeof e?lt(e,t||this.context):0;i>r;r++)for(n=this[r];n&&n.ownerDocument&&n!==t&&11!==n.nodeType;){if(a?a.index(n)>-1:lt.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}return this.pushStack(o.length>1?lt.unique(o):o)},index:function(e){return e?"string"==typeof e?lt.inArray(this[0],lt(e)):lt.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?lt(e,t):lt.makeArray(e&&e.nodeType?[e]:e),r=lt.merge(this.get(),n);return this.pushStack(lt.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),lt.fn.andSelf=lt.fn.addBack,lt.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return lt.dir(e,"parentNode")},parentsUntil:function(e,t,n){return lt.dir(e,"parentNode",n)},next:function(e){return c(e,"nextSibling")},prev:function(e){return c(e,"previousSibling")},nextAll:function(e){return lt.dir(e,"nextSibling")},prevAll:function(e){return lt.dir(e,"previousSibling")},nextUntil:function(e,t,n){return lt.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return lt.dir(e,"previousSibling",n)},siblings:function(e){return lt.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return lt.sibling(e.firstChild)},contents:function(e){return lt.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:lt.merge([],e.childNodes)}},function(e,t){lt.fn[e]=function(n,r){var i=lt.map(this,t,n);return Rt.test(e)||(r=n),r&&"string"==typeof r&&(i=lt.filter(r,i)),i=this.length>1&&!Xt[e]?lt.unique(i):i,this.length>1&&It.test(e)&&(i=i.reverse()),this.pushStack(i)}}),lt.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?lt.find.matchesSelector(t[0],e)?[t[0]]:[]:lt.find.matches(e,t)},dir:function(e,n,r){for(var i=[],o=e[n];o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!lt(o).is(r));)1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});var Ut="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Qt=/ jQuery\d+="(?:null|\d+)"/g,Vt=new RegExp("<(?:"+Ut+")[\\s/>]","i"),Yt=/^\s+/,Gt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Jt=/<([\w:]+)/,Kt=/<tbody/i,Zt=/<|&#?\w+;/,en=/<(?:script|style|link)/i,tn=/^(?:checkbox|radio)$/i,nn=/checked\s*(?:[^=]|=\s*.checked.)/i,rn=/^$|\/(?:java|ecma)script/i,on=/^true\/(.*)/,an=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,sn={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:lt.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},ln=d(V),un=ln.appendChild(V.createElement("div"));
|
|
3
|
+
sn.optgroup=sn.option,sn.tbody=sn.tfoot=sn.colgroup=sn.caption=sn.thead,sn.th=sn.td,lt.fn.extend({text:function(e){return lt.access(this,function(e){return e===t?lt.text(this):this.empty().append((this[0]&&this[0].ownerDocument||V).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(lt.isFunction(e))return this.each(function(t){lt(this).wrapAll(e.call(this,t))});if(this[0]){var t=lt(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return lt.isFunction(e)?this.each(function(t){lt(this).wrapInner(e.call(this,t))}):this.each(function(){var t=lt(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=lt.isFunction(e);return this.each(function(n){lt(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){lt.nodeName(this,"body")||lt(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,r=0;null!=(n=this[r]);r++)(!e||lt.filter(e,[n]).length>0)&&(t||1!==n.nodeType||lt.cleanData(b(n)),n.parentNode&&(t&<.contains(n.ownerDocument,n)&&g(b(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&<.cleanData(b(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&<.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return lt.clone(this,e,t)})},html:function(e){return lt.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(Qt,""):t;if(!("string"!=typeof e||en.test(e)||!lt.support.htmlSerialize&&Vt.test(e)||!lt.support.leadingWhitespace&&Yt.test(e)||sn[(Jt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(Gt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(lt.cleanData(b(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=lt.isFunction(e);return t||"string"==typeof e||(e=lt(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(lt(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=tt.apply([],e);var i,o,a,s,l,u,c=0,p=this.length,d=this,g=p-1,v=e[0],y=lt.isFunction(v);if(y||!(1>=p||"string"!=typeof v||lt.support.checkClone)&&nn.test(v))return this.each(function(i){var o=d.eq(i);y&&(e[0]=v.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(u=lt.buildFragment(e,this[0].ownerDocument,!1,this),i=u.firstChild,1===u.childNodes.length&&(u=i),i)){for(n=n&<.nodeName(i,"tr"),s=lt.map(b(u,"script"),h),a=s.length;p>c;c++)o=u,c!==g&&(o=lt.clone(o,!0,!0),a&<.merge(s,b(o,"script"))),r.call(n&<.nodeName(this[c],"table")?f(this[c],"tbody"):this[c],o,c);if(a)for(l=s[s.length-1].ownerDocument,lt.map(s,m),c=0;a>c;c++)o=s[c],rn.test(o.type||"")&&!lt._data(o,"globalEval")&<.contains(l,o)&&(o.src?lt.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):lt.globalEval((o.text||o.textContent||o.innerHTML||"").replace(an,"")));u=i=null}return this}}),lt.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){lt.fn[e]=function(e){for(var n,r=0,i=[],o=lt(e),a=o.length-1;a>=r;r++)n=r===a?this:this.clone(!0),lt(o[r])[t](n),nt.apply(i,n.get());return this.pushStack(i)}}),lt.extend({clone:function(e,t,n){var r,i,o,a,s,l=lt.contains(e.ownerDocument,e);if(lt.support.html5Clone||lt.isXMLDoc(e)||!Vt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(un.innerHTML=e.outerHTML,un.removeChild(o=un.firstChild)),!(lt.support.noCloneEvent&<.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||lt.isXMLDoc(e)))for(r=b(o),s=b(e),a=0;null!=(i=s[a]);++a)r[a]&&y(i,r[a]);if(t)if(n)for(s=s||b(e),r=r||b(o),a=0;null!=(i=s[a]);a++)v(i,r[a]);else v(e,o);return r=b(o,"script"),r.length>0&&g(r,!l&&b(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){for(var i,o,a,s,l,u,c,p=e.length,f=d(t),h=[],m=0;p>m;m++)if(o=e[m],o||0===o)if("object"===lt.type(o))lt.merge(h,o.nodeType?[o]:o);else if(Zt.test(o)){for(s=s||f.appendChild(t.createElement("div")),l=(Jt.exec(o)||["",""])[1].toLowerCase(),c=sn[l]||sn._default,s.innerHTML=c[1]+o.replace(Gt,"<$1></$2>")+c[2],i=c[0];i--;)s=s.lastChild;if(!lt.support.leadingWhitespace&&Yt.test(o)&&h.push(t.createTextNode(Yt.exec(o)[0])),!lt.support.tbody)for(o="table"!==l||Kt.test(o)?"<table>"!==c[1]||Kt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;i--;)lt.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u);for(lt.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=f.lastChild}else h.push(t.createTextNode(o));for(s&&f.removeChild(s),lt.support.appendChecked||lt.grep(b(h,"input"),x),m=0;o=h[m++];)if((!r||-1===lt.inArray(o,r))&&(a=lt.contains(o.ownerDocument,o),s=b(f.appendChild(o),"script"),a&&g(s),n))for(i=0;o=s[i++];)rn.test(o.type||"")&&n.push(o);return s=null,f},cleanData:function(e,t){for(var n,r,i,o,a=0,s=lt.expando,l=lt.cache,u=lt.support.deleteExpando,c=lt.event.special;null!=(n=e[a]);a++)if((t||lt.acceptData(n))&&(i=n[s],o=i&&l[i])){if(o.events)for(r in o.events)c[r]?lt.event.remove(n,r):lt.removeEvent(n,r,o.handle);l[i]&&(delete l[i],u?delete n[s]:typeof n.removeAttribute!==Q?n.removeAttribute(s):n[s]=null,Z.push(i))}}});var cn,pn,dn,fn=/alpha\([^)]*\)/i,hn=/opacity\s*=\s*([^)]*)/,mn=/^(top|right|bottom|left)$/,gn=/^(none|table(?!-c[ea]).+)/,vn=/^margin/,yn=new RegExp("^("+ut+")(.*)$","i"),bn=new RegExp("^("+ut+")(?!px)[a-z%]+$","i"),xn=new RegExp("^([+-])=("+ut+")","i"),wn={BODY:"block"},Tn={position:"absolute",visibility:"hidden",display:"block"},kn={letterSpacing:0,fontWeight:400},En=["Top","Right","Bottom","Left"],_n=["Webkit","O","Moz","ms"];lt.fn.extend({css:function(e,n){return lt.access(this,function(e,n,r){var i,o,a={},s=0;if(lt.isArray(n)){for(o=pn(e),i=n.length;i>s;s++)a[n[s]]=lt.css(e,n[s],!1,o);return a}return r!==t?lt.style(e,n,r):lt.css(e,n)},e,n,arguments.length>1)},show:function(){return k(this,!0)},hide:function(){return k(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:T(this))?lt(this).show():lt(this).hide()})}}),lt.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=dn(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":lt.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=lt.camelCase(n),u=e.style;if(n=lt.cssProps[l]||(lt.cssProps[l]=w(u,l)),s=lt.cssHooks[n]||lt.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=xn.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(lt.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||lt.cssNumber[l]||(r+="px"),lt.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=lt.camelCase(n);return n=lt.cssProps[l]||(lt.cssProps[l]=w(e.style,l)),s=lt.cssHooks[n]||lt.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=dn(e,n,i)),"normal"===a&&n in kn&&(a=kn[n]),""===r||r?(o=parseFloat(a),r===!0||lt.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(pn=function(t){return e.getComputedStyle(t,null)},dn=function(e,n,r){var i,o,a,s=r||pn(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||lt.contains(e.ownerDocument,e)||(l=lt.style(e,n)),bn.test(l)&&vn.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):V.documentElement.currentStyle&&(pn=function(e){return e.currentStyle},dn=function(e,n,r){var i,o,a,s=r||pn(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),bn.test(l)&&!mn.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l}),lt.each(["height","width"],function(e,t){lt.cssHooks[t]={get:function(e,n,r){return n?0===e.offsetWidth&&gn.test(lt.css(e,"display"))?lt.swap(e,Tn,function(){return C(e,t,r)}):C(e,t,r):void 0},set:function(e,n,r){var i=r&&pn(e);return E(e,n,r?_(e,t,r,lt.support.boxSizing&&"border-box"===lt.css(e,"boxSizing",!1,i),i):0)}}}),lt.support.opacity||(lt.cssHooks.opacity={get:function(e,t){return hn.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=lt.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===lt.trim(o.replace(fn,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=fn.test(o)?o.replace(fn,i):o+" "+i)}}),lt(function(){lt.support.reliableMarginRight||(lt.cssHooks.marginRight={get:function(e,t){return t?lt.swap(e,{display:"inline-block"},dn,[e,"marginRight"]):void 0}}),!lt.support.pixelPosition&<.fn.position&<.each(["top","left"],function(e,t){lt.cssHooks[t]={get:function(e,n){return n?(n=dn(e,t),bn.test(n)?lt(e).position()[t]+"px":n):void 0}}})}),lt.expr&<.expr.filters&&(lt.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!lt.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||lt.css(e,"display"))},lt.expr.filters.visible=function(e){return!lt.expr.filters.hidden(e)}),lt.each({margin:"",padding:"",border:"Width"},function(e,t){lt.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];4>r;r++)i[e+En[r]+t]=o[r]||o[r-2]||o[0];return i}},vn.test(e)||(lt.cssHooks[e+t].set=E)});var Cn=/%20/g,Nn=/\[\]$/,Sn=/\r?\n/g,jn=/^(?:submit|button|image|reset|file)$/i,An=/^(?:input|select|textarea|keygen)/i;lt.fn.extend({serialize:function(){return lt.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=lt.prop(this,"elements");return e?lt.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!lt(this).is(":disabled")&&An.test(this.nodeName)&&!jn.test(e)&&(this.checked||!tn.test(e))}).map(function(e,t){var n=lt(this).val();return null==n?null:lt.isArray(n)?lt.map(n,function(e){return{name:t.name,value:e.replace(Sn,"\r\n")}}):{name:t.name,value:n.replace(Sn,"\r\n")}}).get()}}),lt.param=function(e,n){var r,i=[],o=function(e,t){t=lt.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=lt.ajaxSettings&<.ajaxSettings.traditional),lt.isArray(e)||e.jquery&&!lt.isPlainObject(e))lt.each(e,function(){o(this.name,this.value)});else for(r in e)j(r,e[r],n,o);return i.join("&").replace(Cn,"+")},lt.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){lt.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),lt.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var Ln,Dn,Fn=lt.now(),Hn=/\?/,qn=/#.*$/,$n=/([?&])_=[^&]*/,Mn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Bn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,On=/^(?:GET|HEAD)$/,Pn=/^\/\//,Rn=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,In=lt.fn.load,zn={},Wn={},Xn="*/".concat("*");try{Dn=Y.href}catch(Un){Dn=V.createElement("a"),Dn.href="",Dn=Dn.href}Ln=Rn.exec(Dn.toLowerCase())||[],lt.fn.load=function(e,n,r){if("string"!=typeof e&&In)return In.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),lt.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&<.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?lt("<div>").append(lt.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},lt.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){lt.fn[t]=function(e){return this.on(t,e)}}),lt.each(["get","post"],function(e,n){lt[n]=function(e,r,i,o){return lt.isFunction(r)&&(o=o||i,i=r,r=t),lt.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),lt.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Dn,type:"GET",isLocal:Bn.test(Ln[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Xn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":lt.parseJSON,"text xml":lt.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?D(D(e,lt.ajaxSettings),t):D(lt.ajaxSettings,e)},ajaxPrefilter:A(zn),ajaxTransport:A(Wn),ajax:function(e,n){function r(e,n,r,i){var o,p,y,b,w,k=n;2!==x&&(x=2,l&&clearTimeout(l),c=t,s=i||"",T.readyState=e>0?4:0,r&&(b=F(d,T,r)),e>=200&&300>e||304===e?(d.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(lt.lastModified[a]=w),w=T.getResponseHeader("etag"),w&&(lt.etag[a]=w)),204===e?(o=!0,k="nocontent"):304===e?(o=!0,k="notmodified"):(o=H(d,b),k=o.state,p=o.data,y=o.error,o=!y)):(y=k,(e||!k)&&(k="error",0>e&&(e=0))),T.status=e,T.statusText=(n||k)+"",o?m.resolveWith(f,[p,k,T]):m.rejectWith(f,[T,k,y]),T.statusCode(v),v=t,u&&h.trigger(o?"ajaxSuccess":"ajaxError",[T,d,o?p:y]),g.fireWith(f,[T,k]),u&&(h.trigger("ajaxComplete",[T,d]),--lt.active||lt.event.trigger("ajaxStop")))}"object"==typeof e&&(n=e,e=t),n=n||{};var i,o,a,s,l,u,c,p,d=lt.ajaxSetup({},n),f=d.context||d,h=d.context&&(f.nodeType||f.jquery)?lt(f):lt.event,m=lt.Deferred(),g=lt.Callbacks("once memory"),v=d.statusCode||{},y={},b={},x=0,w="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!p)for(p={};t=Mn.exec(s);)p[t[1].toLowerCase()]=t[2];t=p[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?s:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=b[n]=b[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)v[t]=[v[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||w;return c&&c.abort(t),r(0,t),this}};if(m.promise(T).complete=g.add,T.success=T.done,T.error=T.fail,d.url=((e||d.url||Dn)+"").replace(qn,"").replace(Pn,Ln[1]+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=lt.trim(d.dataType||"*").toLowerCase().match(ct)||[""],null==d.crossDomain&&(i=Rn.exec(d.url.toLowerCase()),d.crossDomain=!(!i||i[1]===Ln[1]&&i[2]===Ln[2]&&(i[3]||("http:"===i[1]?80:443))==(Ln[3]||("http:"===Ln[1]?80:443)))),d.data&&d.processData&&"string"!=typeof d.data&&(d.data=lt.param(d.data,d.traditional)),L(zn,d,n,T),2===x)return T;u=d.global,u&&0===lt.active++&<.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!On.test(d.type),a=d.url,d.hasContent||(d.data&&(a=d.url+=(Hn.test(a)?"&":"?")+d.data,delete d.data),d.cache===!1&&(d.url=$n.test(a)?a.replace($n,"$1_="+Fn++):a+(Hn.test(a)?"&":"?")+"_="+Fn++)),d.ifModified&&(lt.lastModified[a]&&T.setRequestHeader("If-Modified-Since",lt.lastModified[a]),lt.etag[a]&&T.setRequestHeader("If-None-Match",lt.etag[a])),(d.data&&d.hasContent&&d.contentType!==!1||n.contentType)&&T.setRequestHeader("Content-Type",d.contentType),T.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Xn+"; q=0.01":""):d.accepts["*"]);for(o in d.headers)T.setRequestHeader(o,d.headers[o]);if(d.beforeSend&&(d.beforeSend.call(f,T,d)===!1||2===x))return T.abort();w="abort";for(o in{success:1,error:1,complete:1})T[o](d[o]);if(c=L(Wn,d,n,T)){T.readyState=1,u&&h.trigger("ajaxSend",[T,d]),d.async&&d.timeout>0&&(l=setTimeout(function(){T.abort("timeout")},d.timeout));try{x=1,c.send(y,r)}catch(k){if(!(2>x))throw k;r(-1,k)}}else r(-1,"No Transport");return T},getScript:function(e,n){return lt.get(e,t,n,"script")},getJSON:function(e,t,n){return lt.get(e,t,n,"json")}}),lt.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return lt.globalEval(e),e}}}),lt.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),lt.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=V.head||lt("head")[0]||V.documentElement;return{send:function(t,i){n=V.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Qn=[],Vn=/(=)\?(?=&|$)|\?\?/;lt.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Qn.pop()||lt.expando+"_"+Fn++;return this[e]=!0,e}}),lt.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Vn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=lt.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Vn,"$1"+o):n.jsonp!==!1&&(n.url+=(Hn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||lt.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Qn.push(o)),s&<.isFunction(a)&&a(s[0]),s=a=t}),"script"):void 0});var Yn,Gn,Jn=0,Kn=e.ActiveXObject&&function(){var e;for(e in Yn)Yn[e](t,!0)};lt.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&q()||$()}:q,Gn=lt.ajaxSettings.xhr(),lt.support.cors=!!Gn&&"withCredentials"in Gn,Gn=lt.support.ajax=!!Gn,Gn&<.ajaxTransport(function(n){if(!n.crossDomain||lt.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=lt.noop,Kn&&delete Yn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(d){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(f){i||o(-1,f)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Jn,Kn&&(Yn||(Yn={},lt(e).unload(Kn)),Yn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Zn,er,tr=/^(?:toggle|show|hide)$/,nr=new RegExp("^(?:([+-])=|)("+ut+")([a-z%]*)$","i"),rr=/queueHooks$/,ir=[R],or={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=nr.exec(t),a=i.cur(),s=+a||0,l=1,u=20;if(o){if(n=+o[2],r=o[3]||(lt.cssNumber[e]?"":"px"),"px"!==r&&s){s=lt.css(i.elem,e,!0)||n||1;do l=l||".5",s/=l,lt.style(i.elem,e,s+r);while(l!==(l=i.cur()/a)&&1!==l&&--u)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};lt.Animation=lt.extend(O,{tweener:function(e,t){lt.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,r=0,i=e.length;i>r;r++)n=e[r],or[n]=or[n]||[],or[n].unshift(t)},prefilter:function(e,t){t?ir.unshift(e):ir.push(e)}}),lt.Tween=I,I.prototype={constructor:I,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(lt.cssNumber[n]?"":"px")},cur:function(){var e=I.propHooks[this.prop];return e&&e.get?e.get(this):I.propHooks._default.get(this)},run:function(e){var t,n=I.propHooks[this.prop];return this.pos=t=this.options.duration?lt.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):I.propHooks._default.set(this),this}},I.prototype.init.prototype=I.prototype,I.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=lt.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){lt.fx.step[e.prop]?lt.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[lt.cssProps[e.prop]]||lt.cssHooks[e.prop])?lt.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},I.propHooks.scrollTop=I.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},lt.each(["toggle","show","hide"],function(e,t){var n=lt.fn[t];lt.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(z(t,!0),e,r,i)}}),lt.fn.extend({fadeTo:function(e,t,n,r){return this.filter(T).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=lt.isEmptyObject(e),o=lt.speed(t,n,r),a=function(){var t=O(this,lt.extend({},e),o);a.finish=function(){t.stop(!0)},(i||lt._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=lt.timers,a=lt._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&rr.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&<.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=lt._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=lt.timers,a=r?r.length:0;for(n.finish=!0,lt.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),lt.each({slideDown:z("show"),slideUp:z("hide"),slideToggle:z("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){lt.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),lt.speed=function(e,t,n){var r=e&&"object"==typeof e?lt.extend({},e):{complete:n||!n&&t||lt.isFunction(e)&&e,duration:e,easing:n&&t||t&&!lt.isFunction(t)&&t};return r.duration=lt.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in lt.fx.speeds?lt.fx.speeds[r.duration]:lt.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){lt.isFunction(r.old)&&r.old.call(this),r.queue&<.dequeue(this,r.queue)},r},lt.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},lt.timers=[],lt.fx=I.prototype.init,lt.fx.tick=function(){var e,n=lt.timers,r=0;for(Zn=lt.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||lt.fx.stop(),Zn=t},lt.fx.timer=function(e){e()&<.timers.push(e)&<.fx.start()},lt.fx.interval=13,lt.fx.start=function(){er||(er=setInterval(lt.fx.tick,lt.fx.interval))},lt.fx.stop=function(){clearInterval(er),er=null},lt.fx.speeds={slow:600,fast:200,_default:400},lt.fx.step={},lt.expr&<.expr.filters&&(lt.expr.filters.animated=function(e){return lt.grep(lt.timers,function(t){return e===t.elem}).length}),lt.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){lt.offset.setOffset(this,e,t)});var n,r,i={top:0,left:0},o=this[0],a=o&&o.ownerDocument;if(a)return n=a.documentElement,lt.contains(n,o)?(typeof o.getBoundingClientRect!==Q&&(i=o.getBoundingClientRect()),r=W(a),{top:i.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:i.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):i},lt.offset={setOffset:function(e,t,n){var r=lt.css(e,"position");"static"===r&&(e.style.position="relative");var i,o,a=lt(e),s=a.offset(),l=lt.css(e,"top"),u=lt.css(e,"left"),c=("absolute"===r||"fixed"===r)&<.inArray("auto",[l,u])>-1,p={},d={};c?(d=a.position(),i=d.top,o=d.left):(i=parseFloat(l)||0,o=parseFloat(u)||0),lt.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(p.top=t.top-s.top+i),null!=t.left&&(p.left=t.left-s.left+o),"using"in t?t.using.call(e,p):a.css(p)}},lt.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===lt.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),lt.nodeName(e[0],"html")||(n=e.offset()),n.top+=lt.css(e[0],"borderTopWidth",!0),n.left+=lt.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-lt.css(r,"marginTop",!0),left:t.left-n.left-lt.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||V.documentElement;e&&!lt.nodeName(e,"html")&&"static"===lt.css(e,"position");)e=e.offsetParent;return e||V.documentElement})}}),lt.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);lt.fn[e]=function(i){return lt.access(this,function(e,i,o){var a=W(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?lt(a).scrollLeft():o,r?o:lt(a).scrollTop()):e[i]=o,void 0)},e,i,arguments.length,null)}}),lt.each({Height:"height",Width:"width"},function(e,n){lt.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){lt.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return lt.access(this,function(n,r,i){var o;return lt.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?lt.css(n,r,s):lt.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=lt,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return lt})})(window),function(e,t){var n=function(){var t=e._data(document,"events");return t&&t.click&&e.grep(t.click,function(e){return"rails"===e.namespace}).length};n()&&e.error("jquery-ujs has already been loaded!");var r;e.rails=r={linkClickSelector:"a[data-confirm], a[data-method], a[data-remote], a[data-disable-with]",inputChangeSelector:"select[data-remote], input[data-remote], textarea[data-remote]",formSubmitSelector:"form",formInputClickSelector:"form input[type=submit], form input[type=image], form button[type=submit], form button:not([type])",disableSelector:"input[data-disable-with], button[data-disable-with], textarea[data-disable-with]",enableSelector:"input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled",requiredInputSelector:"input[name][required]:not([disabled]),textarea[name][required]:not([disabled])",fileInputSelector:"input[type=file]",linkDisableSelector:"a[data-disable-with]",CSRFProtection:function(t){var n=e('meta[name="csrf-token"]').attr("content");n&&t.setRequestHeader("X-CSRF-Token",n)},fire:function(t,n,r){var i=e.Event(n);return t.trigger(i,r),i.result!==!1},confirm:function(e){return confirm(e)},ajax:function(t){return e.ajax(t)},href:function(e){return e.attr("href")},handleRemote:function(n){var i,o,a,s,l,u,c,p;if(r.fire(n,"ajax:before")){if(s=n.data("cross-domain"),l=s===t?null:s,u=n.data("with-credentials")||null,c=n.data("type")||e.ajaxSettings&&e.ajaxSettings.dataType,n.is("form")){i=n.attr("method"),o=n.attr("action"),a=n.serializeArray();var d=n.data("ujs:submit-button");d&&(a.push(d),n.data("ujs:submit-button",null))}else n.is(r.inputChangeSelector)?(i=n.data("method"),o=n.data("url"),a=n.serialize(),n.data("params")&&(a=a+"&"+n.data("params"))):(i=n.data("method"),o=r.href(n),a=n.data("params")||null);p={type:i||"GET",data:a,dataType:c,beforeSend:function(e,i){return i.dataType===t&&e.setRequestHeader("accept","*/*;q=0.5, "+i.accepts.script),r.fire(n,"ajax:beforeSend",[e,i])},success:function(e,t,r){n.trigger("ajax:success",[e,t,r])},complete:function(e,t){n.trigger("ajax:complete",[e,t])},error:function(e,t,r){n.trigger("ajax:error",[e,t,r])},crossDomain:l},u&&(p.xhrFields={withCredentials:u}),o&&(p.url=o);var f=r.ajax(p);return n.trigger("ajax:send",f),f}return!1},handleMethod:function(n){var i=r.href(n),o=n.data("method"),a=n.attr("target"),s=e("meta[name=csrf-token]").attr("content"),l=e("meta[name=csrf-param]").attr("content"),u=e('<form method="post" action="'+i+'"></form>'),c='<input name="_method" value="'+o+'" type="hidden" />';l!==t&&s!==t&&(c+='<input name="'+l+'" value="'+s+'" type="hidden" />'),a&&u.attr("target",a),u.hide().append(c).appendTo("body"),u.submit()},disableFormElements:function(t){t.find(r.disableSelector).each(function(){var t=e(this),n=t.is("button")?"html":"val";t.data("ujs:enable-with",t[n]()),t[n](t.data("disable-with")),t.prop("disabled",!0)})},enableFormElements:function(t){t.find(r.enableSelector).each(function(){var t=e(this),n=t.is("button")?"html":"val";t.data("ujs:enable-with")&&t[n](t.data("ujs:enable-with")),t.prop("disabled",!1)})},allowAction:function(e){var t,n=e.data("confirm"),i=!1;return n?(r.fire(e,"confirm")&&(i=r.confirm(n),t=r.fire(e,"confirm:complete",[i])),i&&t):!0},blankInputs:function(t,n,r){var i,o,a=e(),s=n||"input,textarea",l=t.find(s);return l.each(function(){if(i=e(this),o=i.is("input[type=checkbox],input[type=radio]")?i.is(":checked"):i.val(),!o==!r){if(i.is("input[type=radio]")&&l.filter('input[type=radio]:checked[name="'+i.attr("name")+'"]').length)return!0;a=a.add(i)}}),a.length?a:!1},nonBlankInputs:function(e,t){return r.blankInputs(e,t,!0)},stopEverything:function(t){return e(t.target).trigger("ujs:everythingStopped"),t.stopImmediatePropagation(),!1},callFormSubmitBindings:function(n,r){var i=n.data("events"),o=!0;return i!==t&&i.submit!==t&&e.each(i.submit,function(e,t){return"function"==typeof t.handler?o=t.handler(r):void 0}),o},disableElement:function(e){e.data("ujs:enable-with",e.html()),e.html(e.data("disable-with")),e.bind("click.railsDisable",function(e){return r.stopEverything(e)})},enableElement:function(e){e.data("ujs:enable-with")!==t&&(e.html(e.data("ujs:enable-with")),e.data("ujs:enable-with",!1)),e.unbind("click.railsDisable")}},r.fire(e(document),"rails:attachBindings")&&(e.ajaxPrefilter(function(e,t,n){e.crossDomain||r.CSRFProtection(n)}),e(document).delegate(r.linkDisableSelector,"ajax:complete",function(){r.enableElement(e(this))}),e(document).delegate(r.linkClickSelector,"click.rails",function(n){var i=e(this),o=i.data("method"),a=i.data("params");if(!r.allowAction(i))return r.stopEverything(n);if(i.is(r.linkDisableSelector)&&r.disableElement(i),i.data("remote")!==t){if(!(!n.metaKey&&!n.ctrlKey||o&&"GET"!==o||a))return!0;var s=r.handleRemote(i);return s===!1?r.enableElement(i):s.error(function(){r.enableElement(i)}),!1}return i.data("method")?(r.handleMethod(i),!1):void 0}),e(document).delegate(r.inputChangeSelector,"change.rails",function(t){var n=e(this);return r.allowAction(n)?(r.handleRemote(n),!1):r.stopEverything(t)}),e(document).delegate(r.formSubmitSelector,"submit.rails",function(n){var i=e(this),o=i.data("remote")!==t,a=r.blankInputs(i,r.requiredInputSelector),s=r.nonBlankInputs(i,r.fileInputSelector);if(!r.allowAction(i))return r.stopEverything(n);if(a&&i.attr("novalidate")==t&&r.fire(i,"ajax:aborted:required",[a]))return r.stopEverything(n);if(o){if(s){setTimeout(function(){r.disableFormElements(i)},13);var l=r.fire(i,"ajax:aborted:file",[s]);return l||setTimeout(function(){r.enableFormElements(i)},13),l}return!e.support.submitBubbles&&"1.7">e().jquery&&r.callFormSubmitBindings(i,n)===!1?r.stopEverything(n):(r.handleRemote(i),!1)
|
|
4
|
+
}setTimeout(function(){r.disableFormElements(i)},13)}),e(document).delegate(r.formInputClickSelector,"click.rails",function(t){var n=e(this);if(!r.allowAction(n))return r.stopEverything(t);var i=n.attr("name"),o=i?{name:i,value:n.val()}:null;n.closest("form").data("ujs:submit-button",o)}),e(document).delegate(r.formSubmitSelector,"ajax:beforeSend.rails",function(t){this==t.target&&r.disableFormElements(e(this))}),e(document).delegate(r.formSubmitSelector,"ajax:complete.rails",function(t){this==t.target&&r.enableFormElements(e(this))}),e(function(){var t=e("meta[name=csrf-token]").attr("content"),n=e("meta[name=csrf-param]").attr("content");e('form input[name="'+n+'"]').val(t)}))}(jQuery),function(){function e(t,n,r){var i=e.resolve(t);if(null==i){r=r||t,n=n||"root";var o=new Error('Failed to require "'+r+'" from "'+n+'"');throw o.path=r,o.parent=n,o.require=!0,o}var a=e.modules[i];return a.exports||(a.exports={},a.client=a.component=!0,a.call(this,a.exports,e.relative(i),a)),a.exports}var t=Object.prototype.hasOwnProperty;e.modules={},e.aliases={},e.resolve=function(n){"/"===n.charAt(0)&&(n=n.slice(1));for(var r=n+"/index.js",i=[n,n+".js",n+".json",n+"/index.js",n+"/index.json"],o=0;i.length>o;o++){var n=i[o];if(t.call(e.modules,n))return n}return t.call(e.aliases,r)?e.aliases[r]:void 0},e.normalize=function(e,t){var n=[];if("."!=t.charAt(0))return t;e=e.split("/"),t=t.split("/");for(var r=0;t.length>r;++r)".."==t[r]?e.pop():"."!=t[r]&&""!=t[r]&&n.push(t[r]);return e.concat(n).join("/")},e.register=function(t,n){e.modules[t]=n},e.alias=function(n,r){if(!t.call(e.modules,n))throw new Error('Failed to alias "'+n+'", it does not exist');e.aliases[r]=n},e.relative=function(n){function r(e,t){for(var n=e.length;n--;)if(e[n]===t)return n;return-1}function i(t){var r=i.resolve(t);return e(r,n,t)}var o=e.normalize(n,"..");return i.resolve=function(t){var i=t.charAt(0);if("/"==i)return t.slice(1);if("."==i)return e.normalize(o,t);var a=n.split("/"),s=r(a,"deps")+1;return s||(s=0),t=a.slice(0,s+1).join("/")+"/deps/"+t},i.exists=function(n){return t.call(e.modules,i.resolve(n))},i},e.register("component-emitter/index.js",function(e,t,n){function r(e){return e?i(e):void 0}function i(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}n.exports=r,r.prototype.on=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks[e]=this._callbacks[e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){r.off(e,n),t.apply(this,arguments)}var r=this;return this._callbacks=this._callbacks||{},t._off=n,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=function(e,t){this._callbacks=this._callbacks||{};var n=this._callbacks[e];if(!n)return this;if(1==arguments.length)return delete this._callbacks[e],this;var r=n.indexOf(t._off||t);return~r&&n.splice(r,1),this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};var t=[].slice.call(arguments,1),n=this._callbacks[e];if(n){n=n.slice(0);for(var r=0,i=n.length;i>r;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks[e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}}),e.register("dropzone/index.js",function(e,t,n){n.exports=t("./lib/dropzone.js")}),e.register("dropzone/lib/dropzone.js",function(e,t,n){(function(){var e,r,i,o,a,s,l={}.hasOwnProperty,u=function(e,t){function n(){this.constructor=e}for(var r in t)l.call(t,r)&&(e[r]=t[r]);return n.prototype=t.prototype,e.prototype=new n,e.__super__=t.prototype,e},c=[].slice,p=[].indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(t in this&&this[t]===e)return t;return-1};r="undefined"!=typeof Emitter&&null!==Emitter?Emitter:t("emitter"),a=function(){},e=function(e){function t(e,n){var r,i,o,a;if(this.element=e,this.version=t.version,this.defaultOptions.previewTemplate=this.defaultOptions.previewTemplate.replace(/\n*/g,""),"string"==typeof this.element&&(this.element=document.querySelector(this.element)),!this.element||null==this.element.nodeType)throw new Error("Invalid dropzone element.");if(this.element.dropzone)throw new Error("Dropzone already attached.");if(t.instances.push(this),e.dropzone=this,r=null!=(a=t.optionsForElement(this.element))?a:{},i=function(){var e,t,n,r,i,o,a;for(r=arguments[0],n=arguments.length>=2?c.call(arguments,1):[],o=0,a=n.length;a>o;o++){t=n[o];for(e in t)i=t[e],r[e]=i}return r},this.options=i({},this.defaultOptions,r,null!=n?n:{}),null==this.options.url&&(this.options.url=this.element.action),!this.options.url)throw new Error("No URL provided.");if(this.options.method=this.options.method.toUpperCase(),this.options.forceFallback||!t.isBrowserSupported())return this.options.fallback.call(this);if((o=this.getExistingFallback())&&o.parentNode&&o.parentNode.removeChild(o),this.options.previewsContainer){if("string"==typeof this.options.previewsContainer?this.previewsContainer=document.querySelector(this.options.previewsContainer):null!=this.options.previewsContainer.nodeType&&(this.previewsContainer=this.options.previewsContainer),null==this.previewsContainer)throw new Error("Invalid `previewsContainer` option provided. Please provide a CSS selector or a plain HTML element.")}else this.previewsContainer=this.element;if(this.options.clickable&&(this.options.clickable===!0?this.clickableElement=this.element:"string"==typeof this.options.clickable?this.clickableElement=document.querySelector(this.options.clickable):null!=this.options.clickable.nodeType&&(this.clickableElement=this.options.clickable),!this.clickableElement))throw new Error("Invalid `clickable` element provided. Please set it to `true`, a plain HTML element or a valid CSS selector.");this.init()}return u(t,e),t.prototype.events=["drop","dragstart","dragend","dragenter","dragover","dragleave","selectedfiles","addedfile","removedfile","thumbnail","error","processingfile","uploadprogress","sending","success","complete","reset"],t.prototype.defaultOptions={url:null,method:"post",parallelUploads:2,maxFilesize:256,paramName:"file",createImageThumbnails:!0,maxThumbnailFilesize:2,thumbnailWidth:100,thumbnailHeight:100,params:{},clickable:!0,enqueueForUpload:!0,previewsContainer:null,dictDefaultMessage:"Drop files here to upload",dictFallbackMessage:"Your browser does not support drag'n'drop file uploads.",dictFallbackText:"Please use the fallback form below to upload your files like in the olden days.",accept:function(e,t){return t()},init:function(){return a},forceFallback:!1,fallback:function(){var e,n,r,i,o,a;for(this.element.className=""+this.element.className+" browser-not-supported",a=this.element.getElementsByTagName("div"),i=0,o=a.length;o>i;i++)e=a[i],/(^| )message($| )/.test(e.className)&&(n=e,e.className="message");return n||(n=t.createElement('<div class="message"><span></span></div>'),this.element.appendChild(n)),r=n.getElementsByTagName("span")[0],r&&(r.textContent=this.options.dictFallbackMessage),this.element.appendChild(this.getFallbackForm())},drop:function(){return this.element.classList.remove("drag-hover")},dragstart:a,dragend:function(){return this.element.classList.remove("drag-hover")},dragenter:function(){return this.element.classList.add("drag-hover")},dragover:function(){return this.element.classList.add("drag-hover")},dragleave:function(){return this.element.classList.remove("drag-hover")},selectedfiles:function(){return this.element===this.previewsContainer?this.element.classList.add("started"):void 0},reset:function(){return this.element.classList.remove("started")},addedfile:function(e){return e.previewTemplate=t.createElement(this.options.previewTemplate),this.previewsContainer.appendChild(e.previewTemplate),e.previewTemplate.querySelector(".filename span").textContent=e.name,e.previewTemplate.querySelector(".details").appendChild(t.createElement('<div class="size">'+this.filesize(e.size)+"</div>"))},removedfile:function(e){return e.previewTemplate.parentNode.removeChild(e.previewTemplate)},thumbnail:function(e,n){return e.previewTemplate.classList.remove("file-preview"),e.previewTemplate.classList.add("image-preview"),e.previewTemplate.querySelector(".details").appendChild(t.createElement('<img alt="'+e.name+'" src="'+n+'"/>'))},error:function(e,t){return e.previewTemplate.classList.add("error"),e.previewTemplate.querySelector(".error-message span").textContent=t},processingfile:function(e){return e.previewTemplate.classList.add("processing")},uploadprogress:function(e,t){return e.previewTemplate.querySelector(".progress .upload").style.width=""+t+"%"},sending:a,success:function(e){return e.previewTemplate.classList.add("success")},complete:a,previewTemplate:'<div class="preview file-preview">\n <div class="details">\n <div class="filename"><span></span></div>\n </div>\n <div class="progress"><span class="upload"></span></div>\n <div class="success-mark"><span>✔</span></div>\n <div class="error-mark"><span>✘</span></div>\n <div class="error-message"><span></span></div>\n</div>'},t.prototype.init=function(){var e,n,r,i,o,a,s,l=this;for("form"===this.element.tagName&&this.element.setAttribute("enctype","multipart/form-data"),this.element.classList.contains("dropzone")&&!this.element.querySelector(".message")&&this.element.appendChild(t.createElement('<div class="default message"><span>'+this.options.dictDefaultMessage+"</span></div>")),this.clickableElement&&(r=function(){return l.hiddenFileInput&&document.body.removeChild(l.hiddenFileInput),l.hiddenFileInput=document.createElement("input"),l.hiddenFileInput.setAttribute("type","file"),l.hiddenFileInput.setAttribute("multiple","multiple"),l.hiddenFileInput.style.display="none",document.body.appendChild(l.hiddenFileInput),l.hiddenFileInput.addEventListener("change",function(){var e;return e=l.hiddenFileInput.files,e.length&&(l.emit("selectedfiles",e),l.handleFiles(e)),r()})},r()),this.files=[],this.filesQueue=[],this.filesProcessing=[],this.URL=null!=(a=window.URL)?a:window.webkitURL,s=this.events,i=0,o=s.length;o>i;i++)e=s[i],this.on(e,this.options[e]);return n=function(e){return e.stopPropagation(),e.preventDefault?e.preventDefault():e.returnValue=!1},this.listeners=[{element:this.element,events:{dragstart:function(e){return l.emit("dragstart",e)},dragenter:function(e){return n(e),l.emit("dragenter",e)},dragover:function(e){return n(e),l.emit("dragover",e)},dragleave:function(e){return l.emit("dragleave",e)},drop:function(e){return n(e),l.drop(e),l.emit("drop",e)},dragend:function(e){return l.emit("dragend",e)}}}],this.clickableElement&&this.listeners.push({element:this.clickableElement,events:{click:function(e){return l.clickableElement!==l.element||e.target===l.element||t.elementInside(e.target,l.element.querySelector(".message"))?l.hiddenFileInput.click():void 0}}}),this.enable(),this.options.init.call(this)},t.prototype.getFallbackForm=function(){var e,n,r,i;return(e=this.getExistingFallback())?e:(r='<div class="fallback">',this.options.dictFallbackText&&(r+="<p>"+this.options.dictFallbackText+"</p>"),r+='<input type="file" name="'+this.options.paramName+'" multiple="multiple" /><button type="submit">Upload!</button></div>',n=t.createElement(r),"FORM"!==this.element.tagName?(i=t.createElement('<form action="'+this.options.url+'" enctype="multipart/form-data" method="'+this.options.method+'"></form>'),i.appendChild(n)):(this.element.setAttribute("enctype","multipart/form-data"),this.element.setAttribute("method",this.options.method)),null!=i?i:n)},t.prototype.getExistingFallback=function(){var e,t,n,r,i,o;for(t=function(e){var t,n,r;for(n=0,r=e.length;r>n;n++)if(t=e[n],/(^| )fallback($| )/.test(t.className))return t},o=["div","form"],r=0,i=o.length;i>r;r++)if(n=o[r],e=t(this.element.getElementsByTagName("div")))return e},t.prototype.setupEventListeners=function(){var e,t,n,r,i,o,a;for(o=this.listeners,a=[],r=0,i=o.length;i>r;r++)e=o[r],a.push(function(){var r,i;r=e.events,i=[];for(t in r)n=r[t],i.push(e.element.addEventListener(t,n,!1));return i}());return a},t.prototype.removeEventListeners=function(){var e,t,n,r,i,o,a;for(o=this.listeners,a=[],r=0,i=o.length;i>r;r++)e=o[r],a.push(function(){var r,i;r=e.events,i=[];for(t in r)n=r[t],i.push(e.element.removeEventListener(t,n,!1));return i}());return a},t.prototype.disable=function(){return this.clickableElement===this.element&&this.element.classList.remove("clickable"),this.removeEventListeners(),this.filesProcessing=[],this.filesQueue=[]},t.prototype.enable=function(){return this.clickableElement===this.element&&this.element.classList.add("clickable"),this.setupEventListeners()},t.prototype.filesize=function(e){var t;return e>=1e11?(e/=1e11,t="TB"):e>=1e8?(e/=1e8,t="GB"):e>=1e5?(e/=1e5,t="MB"):e>=100?(e/=100,t="KB"):(e=10*e,t="b"),"<strong>"+Math.round(e)/10+"</strong> "+t},t.prototype.drop=function(e){var t;if(e.dataTransfer)return t=e.dataTransfer.files,this.emit("selectedfiles",t),t.length?this.handleFiles(t):void 0},t.prototype.handleFiles=function(e){var t,n,r,i;for(i=[],n=0,r=e.length;r>n;n++)t=e[n],i.push(this.addFile(t));return i},t.prototype.accept=function(e,t){return e.size>1024*1024*this.options.maxFilesize?t("File is too big ("+Math.round(e.size/1024/10.24)/100+"MB). Max filesize: "+this.options.maxFilesize+"MB"):this.options.accept.call(this,e,t)},t.prototype.addFile=function(e){var t=this;return this.files.push(e),this.emit("addedfile",e),this.options.createImageThumbnails&&e.type.match(/image.*/)&&e.size<=1024*1024*this.options.maxThumbnailFilesize&&this.createThumbnail(e),this.accept(e,function(n){return n?t.errorProcessing(e,n):t.options.enqueueForUpload?(t.filesQueue.push(e),t.processQueue()):void 0})},t.prototype.removeFile=function(e){if(e.processing)throw new Error("Can't remove file currently processing");return this.files=s(this.files,e),this.filesQueue=s(this.filesQueue,e),this.emit("removedfile",e),0===this.files.length?this.emit("reset"):void 0},t.prototype.removeAllFiles=function(){var e,t,n,r;for(r=this.files.slice(),t=0,n=r.length;n>t;t++)e=r[t],0>p.call(this.filesProcessing,e)&&this.removeFile(e);return null},t.prototype.createThumbnail=function(e){var t,n=this;return t=new FileReader,t.onload=function(){var r;return r=new Image,r.onload=function(){var t,i,o,a,s,l,u,c,p,d,f,h,m;return t=document.createElement("canvas"),i=t.getContext("2d"),l=0,u=0,s=r.width,o=r.height,t.width=n.options.thumbnailWidth,t.height=n.options.thumbnailHeight,h=0,m=0,f=t.width,p=t.height,a=r.width/r.height,d=t.width/t.height,r.height<t.height||r.width<t.width?(p=o,f=s):a>d?(o=r.height,s=o*d):(s=r.width,o=s/d),l=(r.width-s)/2,u=(r.height-o)/2,m=(t.height-p)/2,h=(t.width-f)/2,i.drawImage(r,l,u,s,o,h,m,f,p),c=t.toDataURL("image/png"),n.emit("thumbnail",e,c)},r.src=t.result},t.readAsDataURL(e)},t.prototype.processQueue=function(){var e,t,n;for(t=this.options.parallelUploads,n=this.filesProcessing.length,e=n;t>e;){if(!this.filesQueue.length)return;this.processFile(this.filesQueue.shift()),e++}},t.prototype.processFile=function(e){return this.filesProcessing.push(e),e.processing=!0,this.emit("processingfile",e),this.uploadFile(e)},t.prototype.uploadFile=function(e){var t,n,r,i,o,a,s,l,u,c,p,d,f,h,m=this;if(u=new XMLHttpRequest,u.open(this.options.method,this.options.url,!0),n=function(){return m.errorProcessing(e,u.responseText||"Server responded with "+u.status+" code.")},u.onload=function(t){var r,i;return(i=u.status)>=200&&300>i?(m.emit("uploadprogress",e,100),r=u.responseText,u.getResponseHeader("content-type")&&~u.getResponseHeader("content-type").indexOf("application/json")&&(r=JSON.parse(r)),m.finished(e,r,t)):n()},u.onerror=function(){return n()},s=null!=(d=u.upload)?d:u,s.onprogress=function(t){return m.emit("uploadprogress",e,Math.max(0,Math.min(100,100*(t.loaded/t.total))))},u.setRequestHeader("Accept","application/json"),u.setRequestHeader("Cache-Control","no-cache"),u.setRequestHeader("X-Requested-With","XMLHttpRequest"),u.setRequestHeader("X-File-Name",e.name),t=new FormData,this.options.params){f=this.options.params;for(a in f)l=f[a],t.append(a,l)}if("FORM"===this.element.tagName)for(h=this.element.querySelectorAll("input, textarea, select, button"),c=0,p=h.length;p>c;c++)r=h[c],i=r.getAttribute("name"),o=r.getAttribute("type"),(!o||"checkbox"!==o.toLowerCase()||r.checked)&&t.append(i,r.value);return this.emit("sending",e,u,t),t.append(this.options.paramName,e),u.send(t)},t.prototype.finished=function(e,t,n){return this.filesProcessing=s(this.filesProcessing,e),e.processing=!1,this.processQueue(),this.emit("success",e,t,n),this.emit("finished",e,t,n),this.emit("complete",e)},t.prototype.errorProcessing=function(e,t){return this.filesProcessing=s(this.filesProcessing,e),e.processing=!1,this.processQueue(),this.emit("error",e,t),this.emit("complete",e)},t}(r),e.version="2.0.12",e.options={},e.optionsForElement=function(t){return t.id?e.options[i(t.id)]:void 0},e.instances=[],e.forElement=function(e){var t;return"string"==typeof e&&(e=document.querySelector(e)),null!=(t=e.dropzone)?t:null},e.autoDiscover=!0,e.discover=function(){var t,n,r,i,o,a;if(e.autoDiscover){for(document.querySelectorAll?r=document.querySelectorAll(".dropzone"):(r=[],t=function(e){var t,n,i,o;for(o=[],n=0,i=e.length;i>n;n++)t=e[n],/(^| )dropzone($| )/.test(t.className)?o.push(r.push(t)):o.push(void 0);return o},t(document.getElementsByTagName("div")),t(document.getElementsByTagName("form"))),a=[],i=0,o=r.length;o>i;i++)n=r[i],e.optionsForElement(n)!==!1?a.push(new e(n)):a.push(void 0);return a}},e.blacklistedBrowsers=[/opera.*Macintosh.*version\/12/i],e.isBrowserSupported=function(){var t,n,r,i,o;if(t=!0,window.File&&window.FileReader&&window.FileList&&window.Blob&&window.FormData&&document.querySelector)if("classList"in document.createElement("a"))for(o=e.blacklistedBrowsers,r=0,i=o.length;i>r;r++)n=o[r],n.test(navigator.userAgent)&&(t=!1);else t=!1;else t=!1;return t},s=function(e,t){var n,r,i,o;for(o=[],r=0,i=e.length;i>r;r++)n=e[r],n!==t&&o.push(n);return o},i=function(e){return e.replace(/[\-_](\w)/g,function(e){return e[1].toUpperCase()})},e.createElement=function(e){var t;return t=document.createElement("div"),t.innerHTML=e,t.childNodes[0]},e.elementInside=function(e,t){if(e===t)return!0;for(;e=e.parentNode;)if(e===t)return!0;return!1},"undefined"!=typeof jQuery&&null!==jQuery&&(jQuery.fn.dropzone=function(t){return this.each(function(){return new e(this,t)})}),"undefined"!=typeof n&&null!==n?n.exports=e:window.Dropzone=e,o=function(e,t){var n,r,i,o,a,s,l,u,c;if(i=!1,c=!0,r=e.document,u=r.documentElement,n=r.addEventListener?"addEventListener":"attachEvent",l=r.addEventListener?"removeEventListener":"detachEvent",s=r.addEventListener?"":"on",o=function(n){return"readystatechange"!==n.type||"complete"===r.readyState?(("load"===n.type?e:r)[l](s+n.type,o,!1),!i&&(i=!0)?t.call(e,n.type||n):void 0):void 0},a=function(){var e;try{u.doScroll("left")}catch(t){return e=t,setTimeout(a,50),void 0}return o("poll")},"complete"!==r.readyState){if(r.createEventObject&&u.doScroll){try{c=!e.frameElement}catch(p){}c&&a()}return r[n](s+"DOMContentLoaded",o,!1),r[n](s+"readystatechange",o,!1),e[n](s+"load",o,!1)}},o(window,e.discover)}).call(this)}),e.alias("component-emitter/index.js","dropzone/deps/emitter/index.js"),"object"==typeof exports?module.exports=e("dropzone"):"function"==typeof define&&define.amd?define(function(){return e("dropzone")}):window.Dropzone=e("dropzone")}();var addEvent=function(){return document.addEventListener?function(e,t,n){if(e&&e.nodeName||e===window)e.addEventListener(t,n,!1);else if(e&&e.length)for(var r=0;e.length>r;r++)addEvent(e[r],t,n)}:function(e,t,n){if(e&&e.nodeName||e===window)e.attachEvent("on"+t,function(){return n.call(e,window.event)});else if(e&&e.length)for(var r=0;e.length>r;r++)addEvent(e[r],t,n)}}();(function(){var e=document.createElement("pre");e.id="view-source",addEvent(window,"click",function(t){if("#view-source"==t.target.hash){if(!document.getElementById("view-source")){var n=new XMLHttpRequest;n.onreadystatechange=function(){4==this.readyState&&200==this.status&&(e.innerHTML=this.responseText.replace(/[<>]/g,function(e){return{"<":"<",">":">"}[e]}),prettyPrint())},document.body.appendChild(e),n.open("GET",window.location,!0),n.send()}document.body.className="view-source";var r=setInterval(function(){"#view-source"!=window.location.hash&&(clearInterval(r),document.body.className="")},200)}})})(),function(){var e=function(e,t){return function(){return e.apply(t,arguments)}};this.AttachmentDragger=function(){function t(t,n,r){this.drag_selector=t,this.drop_selector=n,this.attribute=r,this.cancel=e(this.cancel,this),this.init=e(this.init,this),this.init()}return t.prototype.attribute=null,t.prototype.drag_items=null,t.prototype.init=function(){var e,t,n,r,i,o=this;for(this.drag_items=document.querySelectorAll(this.drag_selector),i=this.drag_items,n=0,r=i.length;r>n;n++)e=i[n],addEvent(e,"dragstart",function(e){return event.dataTransfer.setData(o.attribute,e.currentTarget[o.attribute])});return t=document.querySelector(this.drop_selector),addEvent(t,"dragover",this.cancel),addEvent(t,"dragenter",this.cancel),addEvent(t,"drop",function(e){var t,n;return e.preventDefault&&e.preventDefault(),e.currentTarget[o.attribute]!==e.dataTransfer.getData(o.attribute)&&(t=e.dataTransfer.getData(o.attribute),t.length>0&&(e.currentTarget[o.attribute]=e.dataTransfer.getData(o.attribute),n=new PersistenceManager,"src"===o.attribute&&n.save_image($(e.currentTarget)),"href"===o.attribute&&n.save_attachment($(e.currentTarget)))),!1})},t.prototype.cancel=function(e){return e.preventDefault&&e.currentTarget[this.attribute]!==e.dataTransfer.getData(this.attribute)&&e.preventDefault(),!1},t}()}.call(this),function(){var e=[].indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(t in this&&this[t]===e)return t;return-1};$(function(){return new AttachmentUploader($(".image_upload_box")),new AttachmentDragger("img[draggable=true]",".rubber_ring_image","src"),new AttachmentDragger("a[draggable=true]",".rubber_ring_attachment","href"),$(".remove_not_used_attachments").on("click",function(){var t,n,r,i,o,a,s,l,u,c,p,d,f;for(i=new PersistenceManager,a=function(){var e,t,n,i;for(n=$(".uploaded-images img"),i=[],e=0,t=n.length;t>e;e++)r=n[e],i.push($(r).attr("src"));return i}(),o=function(){var e,t,n,i;for(n=$(".uploaded-attachments a"),i=[],e=0,t=n.length;t>e;e++)r=n[e],i.push($(r).attr("href"));return i}(),l=function(){var e,t,n,i;for(n=$(".rubber_ring_image"),i=[],e=0,t=n.length;t>e;e++)r=n[e],i.push($(r).attr("src"));return i}(),s=function(){var e,t,n,i;for(n=$(".rubber_ring_attachment"),i=[],e=0,t=n.length;t>e;e++)r=n[e],i.push($(r).attr("href"));return i}(),u=0,p=a.length;p>u;u++)n=a[u],0>e.call(l,n)&&(i.remove_image(n),$('.uploaded-images img[src="'+n+'"]').remove());for(f=[],c=0,d=o.length;d>c;c++)t=o[c],0>e.call(s,t)?(i.remove_image(t),f.push($('.uploaded-attachments a[href="'+t+'"]').remove())):f.push(void 0);return f})})}.call(this),function(){this.AttachmentUploader=function(){function e(e){e.dropzone({url:App.add_attachment_path}),this.addListeners(e)}return e.prototype.addListeners=function(e){var t;return t=Dropzone.forElement(e.get(0)),t.on("sending",function(e,t,n){var r,i;return r=$("meta[name=csrf-param]").attr("content"),i=$("meta[name=csrf-token]").attr("content"),n.append(r,i),n.append("page_controller",App.controller),n.append("page_action",App.action)}),t.on("success",function(e,t){return"image"===t.type?($(".uploaded-images").append('<img src="'+t.src+'" draggable="true" class="img-polaroid" />'),new AttachmentDragger("img[draggable=true]",".rubber_ring_image","src")):($(".uploaded-attachments").append('<a href="'+t.src+'" draggable="true" download><i class="icon-file"></i> '+t.src.split("/").reverse()[0]+"</a>"),new AttachmentDragger("a[draggable=true]",".rubber_ring_attachment","href"))})},e}()}.call(this),function(){$(function(){return $("#rubber-ring-application a.dropdown").click(function(e){var t,n;return t=$(e.currentTarget),n=t.parent().siblings(".active").toggleClass().find("a").attr("id"),$("."+n).slideToggle(),$("."+t.attr("id")).slideToggle(),t.parent().toggleClass("active")})})}.call(this),function(){this.DuplicableEditor=function(){function e(e){this.action_btns=e,this.add_reset_btn_to_first_in_duplicable_group(null),this.pm=new PersistenceManager(e)}var t;return e.prototype.init=function(){var e=this;return $(".duplicable_holder").find(".duplicable:first").append(this.action_btns.duplicate_btn),$("body").on("click",".duplicate-content",function(t){var n;return n=$(t.currentTarget).parent(),e.duplicate(n)}),$(".duplicable_holder").find(".duplicable:first").siblings().append(this.action_btns.remove_duplicate_btn),$("body").on("click",".remove-duplicat",function(t){var n;return n=$(t.currentTarget).parent(),e.remove_duplicate(n)})},e.prototype.add_reset_btn_to_first_in_duplicable_group=function(e){var t=this;return null===e?$(".duplicable_holder").find(".duplicable:first").each(function(e,n){return 0===$(n).siblings().length?$(n).append(t.action_btns.reset_btn):void 0}):1===e.siblings().length?e.append(this.action_btns.reset_btn):void 0},e.prototype.duplicate=function(e){var n,r;return this.pm.save(e),n=e.clone(!0).appendTo(e.parent()),r=t(e),n.attr("data-cms",r),e.parent().children().not(":first").find(".duplicate-content, .reset-content").remove(),e.find(".reset-content").remove(),n.append(this.action_btns.remove_duplicate_btn),this.pm.save(n)},e.prototype.remove_duplicate=function(e){return this.pm.remove(e),this.add_reset_btn_to_first_in_duplicable_group(e.siblings().first()),e.remove()},t=function(e){var t,n;return t=0,n=e.attr("data-cms").split("_").reverse(),e.siblings().each(function(e,r){var i;return n=$(r).attr("data-cms").split("_").reverse(),i=parseInt(n[0],10),i>t&&(t=i),n[0]=t+1}),n.reverse().join("_")},e}()}.call(this),function(){$(function(){var e,t,n,r,i;return t={action_btns:{reset_btn:'<button class="reset-content"></button>',duplicate_btn:'<button class="duplicate-content"></button>',remove_duplicate_btn:'<button class="remove-duplicat"></button>'},reset_btn_exclusions:".duplicable, [data-cms=page_title]"},e=$("[contenteditable]"),i=new PersistenceManager(t.action_btns),n=new DuplicableEditor(t.action_btns),r=new LinkEditor(e),n.init(),r.init(),$("[contenteditable]").not(t.reset_btn_exclusions).append(t.action_btns.reset_btn),$("body").on("click",".reset-content",function(e){var t;return t=$(e.currentTarget).parent(),window.confirm("Really want to reset content?")?i.remove(t).then(function(){return window.location.reload(!0)}):void 0}),$(".rubber_ring_attachment").click(function(e){return e.preventDefault()}),$("body").on("focus","[contenteditable]",function(){var e;return e=$(this),e.data("before",e.html()),e}).on("blur","[contenteditable]",function(){var e;return e=$(this),e.data("before")!==e.html()&&(e.data("before",e.html()),e.trigger("change")),e}),e.change(function(e){var t;return t=$(e.currentTarget),i.save(t)}),e.not(".multi-line").keydown(function(e){return 13===e.keyCode?e.preventDefault():void 0})})}.call(this),function(){this.LinkEditor=function(){function e(e){this.editable_content=e}var t;return e.prototype.init=function(){var e;return e=$("#rubber-ring-application #edit-link"),this.editable_content.bind("click","a",function(n){var r;return r=$(t()),null!==r&&r.is("a")?(n.stopPropagation(),e.css({top:r.offset().top-e.height()-5,left:r.offset().left}).show(),e.data("node",r),$("#link-title").val(r.text()),$("#link-href").val(r.attr("href")),$("#link-preview").attr("href",r.attr("href"))):e.hide()}),$(document).bind("click",function(t){return t.stopPropagation(),$("#edit-link").is(":visible")&&0===$(t.target).parents("#edit-link").length?e.hide():void 0}),$("#link-title").bind("change",function(t){var n;return n=e.data("node"),n.text($(t.currentTarget).val()),n.parents("[contenteditable]").trigger("change")}),$("#link-href").bind("change",function(t){var n;return n=e.data("node"),n.add("#link-preview").attr("href",$(t.currentTarget).val()),n.parents("[contenteditable]").trigger("change")})},t=function(){var e;return window.getSelection?(e=window.getSelection().anchorNode,null!==e&&"#text"===e.nodeName?e.parentNode:e):void 0},e}()}.call(this),function(){var e=function(e,t){return function(){return e.apply(t,arguments)}};this.PersistenceManager=function(){function t(t){var n=this;this.action_btns=t,this.post_to_backend=e(this.post_to_backend,this),this.save_path=App.save_path,this.save_image_path=App.save_image_path,this.save_attachment_path=App.save_attachment_path,this.remove_path=App.remove_path,this.remove_attachment_path=App.remove_attachment_path,this.$alert=$(".alert-saved div"),this.$alert.bind("transitionend webkitTransitionEnd",function(){return n.$alert.removeClass("show")})}return t.prototype.save_path=null,t.prototype.remove_path=null,t.prototype.save_image_path=null,t.prototype.save_attachment_path=null,t.prototype.remove_attachment_path=null,t.prototype.$alert=null,t.prototype.post_object={page_controller:App.controller,page_action:App.action,page_path:document.location.pathname},t.prototype.save=function(e){var t,n;return t=e.attr("data-cms"),n=this.sanitize(e),this.post_object.content={},this.post_object.content[t]=n,this.post_to_backend(this.save_path,this.post_object)},t.prototype.save_image=function(e){var t;return t=e.attr("data-cms"),this.post_object.content={},this.post_object.content[t]=e.attr("src"),this.post_object.width=e.attr("width"),this.post_object.height=e.attr("height"),this.post_to_backend(this.save_image_path,this.post_object)},t.prototype.save_attachment=function(e){var t;return t=e.attr("data-cms"),this.post_object.content={},this.post_object.content[t]=e.attr("href"),this.post_to_backend(this.save_attachment_path,this.post_object)},t.prototype.sanitize=function(e){var t,n,r;e=e.html().trim().replace(/^[ \t\r\n]+/g,""),r=this.action_btns;for(t in r)n=r[t],e=e.replace(n,"").trim();return e},t.prototype.remove=function(e){var t,n;return t=e.attr("data-cms"),n=this.remove_path.replace(":key",t),this.post_object.key_to_remove=t,this.post_to_backend(n,this.post_object)},t.prototype.remove_image=function(e){return this.post_object.src_to_remove=e,this.post_to_backend(this.remove_attachment_path,this.post_object)},t.prototype.post_to_backend=function(e,t){var n=this;return $.post(e,t,function(){return n.$alert.addClass("show")})},t}()}.call(this);
|
|
Binary file
|
|
@@ -0,0 +1,4358 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
|
10
|
+
*
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Bootstrap v2.3.1
|
|
18
|
+
*
|
|
19
|
+
* Copyright 2012 Twitter, Inc
|
|
20
|
+
* Licensed under the Apache License v2.0
|
|
21
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
22
|
+
*
|
|
23
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
|
24
|
+
*/
|
|
25
|
+
.tbs {
|
|
26
|
+
/* Allow for input prepend/append in search forms */
|
|
27
|
+
/* White icons with optional class, or on hover/focus/active states of certain elements */
|
|
28
|
+
/* move down carets for tabs */
|
|
29
|
+
@-webkit-keyframes progress-bar-stripes {
|
|
30
|
+
from {
|
|
31
|
+
background-position: 40px 0; }
|
|
32
|
+
|
|
33
|
+
to {
|
|
34
|
+
background-position: 0 0; } }
|
|
35
|
+
|
|
36
|
+
@-moz-keyframes progress-bar-stripes {
|
|
37
|
+
from {
|
|
38
|
+
background-position: 40px 0; }
|
|
39
|
+
|
|
40
|
+
to {
|
|
41
|
+
background-position: 0 0; } }
|
|
42
|
+
|
|
43
|
+
@-ms-keyframes progress-bar-stripes {
|
|
44
|
+
from {
|
|
45
|
+
background-position: 40px 0; }
|
|
46
|
+
|
|
47
|
+
to {
|
|
48
|
+
background-position: 0 0; } }
|
|
49
|
+
|
|
50
|
+
@-o-keyframes progress-bar-stripes {
|
|
51
|
+
from {
|
|
52
|
+
background-position: 0 0; }
|
|
53
|
+
|
|
54
|
+
to {
|
|
55
|
+
background-position: 40px 0; } }
|
|
56
|
+
|
|
57
|
+
@keyframes progress-bar-stripes {
|
|
58
|
+
from {
|
|
59
|
+
background-position: 40px 0; }
|
|
60
|
+
|
|
61
|
+
to {
|
|
62
|
+
background-position: 0 0; } }
|
|
63
|
+
}
|
|
64
|
+
.tbs .clearfix {
|
|
65
|
+
*zoom: 1; }
|
|
66
|
+
.tbs .clearfix:before,
|
|
67
|
+
.tbs .clearfix:after {
|
|
68
|
+
display: table;
|
|
69
|
+
line-height: 0;
|
|
70
|
+
content: ""; }
|
|
71
|
+
.tbs .clearfix:after {
|
|
72
|
+
clear: both; }
|
|
73
|
+
.tbs .hide-text {
|
|
74
|
+
font: 0/0 a;
|
|
75
|
+
color: transparent;
|
|
76
|
+
text-shadow: none;
|
|
77
|
+
background-color: transparent;
|
|
78
|
+
border: 0; }
|
|
79
|
+
.tbs .input-block-level {
|
|
80
|
+
display: block;
|
|
81
|
+
width: 100%;
|
|
82
|
+
min-height: 30px;
|
|
83
|
+
-webkit-box-sizing: border-box;
|
|
84
|
+
-moz-box-sizing: border-box;
|
|
85
|
+
box-sizing: border-box; }
|
|
86
|
+
.tbs article,
|
|
87
|
+
.tbs aside,
|
|
88
|
+
.tbs details,
|
|
89
|
+
.tbs figcaption,
|
|
90
|
+
.tbs figure,
|
|
91
|
+
.tbs footer,
|
|
92
|
+
.tbs header,
|
|
93
|
+
.tbs hgroup,
|
|
94
|
+
.tbs nav,
|
|
95
|
+
.tbs section {
|
|
96
|
+
display: block; }
|
|
97
|
+
.tbs audio,
|
|
98
|
+
.tbs canvas,
|
|
99
|
+
.tbs video {
|
|
100
|
+
display: inline-block;
|
|
101
|
+
*display: inline;
|
|
102
|
+
*zoom: 1; }
|
|
103
|
+
.tbs audio:not([controls]) {
|
|
104
|
+
display: none; }
|
|
105
|
+
.tbs html {
|
|
106
|
+
font-size: 100%;
|
|
107
|
+
-webkit-text-size-adjust: 100%;
|
|
108
|
+
-ms-text-size-adjust: 100%; }
|
|
109
|
+
.tbs a:focus {
|
|
110
|
+
outline: thin dotted #333;
|
|
111
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
112
|
+
outline-offset: -2px; }
|
|
113
|
+
.tbs a:hover,
|
|
114
|
+
.tbs a:active {
|
|
115
|
+
outline: 0; }
|
|
116
|
+
.tbs sub,
|
|
117
|
+
.tbs sup {
|
|
118
|
+
position: relative;
|
|
119
|
+
font-size: 75%;
|
|
120
|
+
line-height: 0;
|
|
121
|
+
vertical-align: baseline; }
|
|
122
|
+
.tbs sup {
|
|
123
|
+
top: -0.5em; }
|
|
124
|
+
.tbs sub {
|
|
125
|
+
bottom: -0.25em; }
|
|
126
|
+
.tbs img {
|
|
127
|
+
width: auto\9;
|
|
128
|
+
height: auto;
|
|
129
|
+
max-width: 100%;
|
|
130
|
+
vertical-align: middle;
|
|
131
|
+
border: 0;
|
|
132
|
+
-ms-interpolation-mode: bicubic; }
|
|
133
|
+
.tbs #map_canvas img,
|
|
134
|
+
.tbs .google-maps img {
|
|
135
|
+
max-width: none; }
|
|
136
|
+
.tbs button,
|
|
137
|
+
.tbs input,
|
|
138
|
+
.tbs select,
|
|
139
|
+
.tbs textarea {
|
|
140
|
+
margin: 0;
|
|
141
|
+
font-size: 100%;
|
|
142
|
+
vertical-align: middle; }
|
|
143
|
+
.tbs button,
|
|
144
|
+
.tbs input {
|
|
145
|
+
*overflow: visible;
|
|
146
|
+
line-height: normal; }
|
|
147
|
+
.tbs button::-moz-focus-inner,
|
|
148
|
+
.tbs input::-moz-focus-inner {
|
|
149
|
+
padding: 0;
|
|
150
|
+
border: 0; }
|
|
151
|
+
.tbs button,
|
|
152
|
+
.tbs html input[type="button"],
|
|
153
|
+
.tbs input[type="reset"],
|
|
154
|
+
.tbs input[type="submit"] {
|
|
155
|
+
cursor: pointer;
|
|
156
|
+
-webkit-appearance: button; }
|
|
157
|
+
.tbs label,
|
|
158
|
+
.tbs select,
|
|
159
|
+
.tbs button,
|
|
160
|
+
.tbs input[type="button"],
|
|
161
|
+
.tbs input[type="reset"],
|
|
162
|
+
.tbs input[type="submit"],
|
|
163
|
+
.tbs input[type="radio"],
|
|
164
|
+
.tbs input[type="checkbox"] {
|
|
165
|
+
cursor: pointer; }
|
|
166
|
+
.tbs input[type="search"] {
|
|
167
|
+
-webkit-box-sizing: content-box;
|
|
168
|
+
-moz-box-sizing: content-box;
|
|
169
|
+
box-sizing: content-box;
|
|
170
|
+
-webkit-appearance: textfield; }
|
|
171
|
+
.tbs input[type="search"]::-webkit-search-decoration,
|
|
172
|
+
.tbs input[type="search"]::-webkit-search-cancel-button {
|
|
173
|
+
-webkit-appearance: none; }
|
|
174
|
+
.tbs textarea {
|
|
175
|
+
overflow: auto;
|
|
176
|
+
vertical-align: top; }
|
|
177
|
+
@media print {
|
|
178
|
+
.tbs {
|
|
179
|
+
@page {
|
|
180
|
+
margin: 0.5cm; }
|
|
181
|
+
}
|
|
182
|
+
.tbs * {
|
|
183
|
+
color: #000 !important;
|
|
184
|
+
text-shadow: none !important;
|
|
185
|
+
background: transparent !important;
|
|
186
|
+
box-shadow: none !important; }
|
|
187
|
+
.tbs a,
|
|
188
|
+
.tbs a:visited {
|
|
189
|
+
text-decoration: underline; }
|
|
190
|
+
.tbs a[href]:after {
|
|
191
|
+
content: " (" attr(href) ")"; }
|
|
192
|
+
.tbs abbr[title]:after {
|
|
193
|
+
content: " (" attr(title) ")"; }
|
|
194
|
+
.tbs .ir a:after,
|
|
195
|
+
.tbs a[href^="javascript:"]:after,
|
|
196
|
+
.tbs a[href^="#"]:after {
|
|
197
|
+
content: ""; }
|
|
198
|
+
.tbs pre,
|
|
199
|
+
.tbs blockquote {
|
|
200
|
+
border: 1px solid #999;
|
|
201
|
+
page-break-inside: avoid; }
|
|
202
|
+
.tbs thead {
|
|
203
|
+
display: table-header-group; }
|
|
204
|
+
.tbs tr,
|
|
205
|
+
.tbs img {
|
|
206
|
+
page-break-inside: avoid; }
|
|
207
|
+
.tbs img {
|
|
208
|
+
max-width: 100% !important; }
|
|
209
|
+
.tbs p,
|
|
210
|
+
.tbs h2,
|
|
211
|
+
.tbs h3 {
|
|
212
|
+
orphans: 3;
|
|
213
|
+
widows: 3; }
|
|
214
|
+
.tbs h2,
|
|
215
|
+
.tbs h3 {
|
|
216
|
+
page-break-after: avoid; } }
|
|
217
|
+
.tbs body {
|
|
218
|
+
margin: 0;
|
|
219
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
220
|
+
font-size: 14px;
|
|
221
|
+
line-height: 20px;
|
|
222
|
+
color: #333333;
|
|
223
|
+
background-color: #ffffff; }
|
|
224
|
+
.tbs a {
|
|
225
|
+
color: #0088cc;
|
|
226
|
+
text-decoration: none; }
|
|
227
|
+
.tbs a:hover,
|
|
228
|
+
.tbs a:focus {
|
|
229
|
+
color: #005580;
|
|
230
|
+
text-decoration: underline; }
|
|
231
|
+
.tbs .img-rounded {
|
|
232
|
+
-webkit-border-radius: 6px;
|
|
233
|
+
-moz-border-radius: 6px;
|
|
234
|
+
border-radius: 6px; }
|
|
235
|
+
.tbs .img-polaroid {
|
|
236
|
+
padding: 4px;
|
|
237
|
+
background-color: #fff;
|
|
238
|
+
border: 1px solid #ccc;
|
|
239
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
240
|
+
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
241
|
+
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
242
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
|
|
243
|
+
.tbs .img-circle {
|
|
244
|
+
-webkit-border-radius: 500px;
|
|
245
|
+
-moz-border-radius: 500px;
|
|
246
|
+
border-radius: 500px; }
|
|
247
|
+
.tbs .row {
|
|
248
|
+
margin-left: -20px;
|
|
249
|
+
*zoom: 1; }
|
|
250
|
+
.tbs .row:before,
|
|
251
|
+
.tbs .row:after {
|
|
252
|
+
display: table;
|
|
253
|
+
line-height: 0;
|
|
254
|
+
content: ""; }
|
|
255
|
+
.tbs .row:after {
|
|
256
|
+
clear: both; }
|
|
257
|
+
.tbs [class*="span"] {
|
|
258
|
+
float: left;
|
|
259
|
+
min-height: 1px;
|
|
260
|
+
margin-left: 20px; }
|
|
261
|
+
.tbs .container,
|
|
262
|
+
.tbs .navbar-static-top .container,
|
|
263
|
+
.tbs .navbar-fixed-top .container,
|
|
264
|
+
.tbs .navbar-fixed-bottom .container {
|
|
265
|
+
width: 940px; }
|
|
266
|
+
.tbs .span12 {
|
|
267
|
+
width: 940px; }
|
|
268
|
+
.tbs .span11 {
|
|
269
|
+
width: 860px; }
|
|
270
|
+
.tbs .span10 {
|
|
271
|
+
width: 780px; }
|
|
272
|
+
.tbs .span9 {
|
|
273
|
+
width: 700px; }
|
|
274
|
+
.tbs .span8 {
|
|
275
|
+
width: 620px; }
|
|
276
|
+
.tbs .span7 {
|
|
277
|
+
width: 540px; }
|
|
278
|
+
.tbs .span6 {
|
|
279
|
+
width: 460px; }
|
|
280
|
+
.tbs .span5 {
|
|
281
|
+
width: 380px; }
|
|
282
|
+
.tbs .span4 {
|
|
283
|
+
width: 300px; }
|
|
284
|
+
.tbs .span3 {
|
|
285
|
+
width: 220px; }
|
|
286
|
+
.tbs .span2 {
|
|
287
|
+
width: 140px; }
|
|
288
|
+
.tbs .span1 {
|
|
289
|
+
width: 60px; }
|
|
290
|
+
.tbs .offset12 {
|
|
291
|
+
margin-left: 980px; }
|
|
292
|
+
.tbs .offset11 {
|
|
293
|
+
margin-left: 900px; }
|
|
294
|
+
.tbs .offset10 {
|
|
295
|
+
margin-left: 820px; }
|
|
296
|
+
.tbs .offset9 {
|
|
297
|
+
margin-left: 740px; }
|
|
298
|
+
.tbs .offset8 {
|
|
299
|
+
margin-left: 660px; }
|
|
300
|
+
.tbs .offset7 {
|
|
301
|
+
margin-left: 580px; }
|
|
302
|
+
.tbs .offset6 {
|
|
303
|
+
margin-left: 500px; }
|
|
304
|
+
.tbs .offset5 {
|
|
305
|
+
margin-left: 420px; }
|
|
306
|
+
.tbs .offset4 {
|
|
307
|
+
margin-left: 340px; }
|
|
308
|
+
.tbs .offset3 {
|
|
309
|
+
margin-left: 260px; }
|
|
310
|
+
.tbs .offset2 {
|
|
311
|
+
margin-left: 180px; }
|
|
312
|
+
.tbs .offset1 {
|
|
313
|
+
margin-left: 100px; }
|
|
314
|
+
.tbs .row-fluid {
|
|
315
|
+
width: 100%;
|
|
316
|
+
*zoom: 1; }
|
|
317
|
+
.tbs .row-fluid:before,
|
|
318
|
+
.tbs .row-fluid:after {
|
|
319
|
+
display: table;
|
|
320
|
+
line-height: 0;
|
|
321
|
+
content: ""; }
|
|
322
|
+
.tbs .row-fluid:after {
|
|
323
|
+
clear: both; }
|
|
324
|
+
.tbs .row-fluid [class*="span"] {
|
|
325
|
+
display: block;
|
|
326
|
+
float: left;
|
|
327
|
+
width: 100%;
|
|
328
|
+
min-height: 30px;
|
|
329
|
+
margin-left: 2.127659574468085%;
|
|
330
|
+
*margin-left: 2.074468085106383%;
|
|
331
|
+
-webkit-box-sizing: border-box;
|
|
332
|
+
-moz-box-sizing: border-box;
|
|
333
|
+
box-sizing: border-box; }
|
|
334
|
+
.tbs .row-fluid [class*="span"]:first-child {
|
|
335
|
+
margin-left: 0; }
|
|
336
|
+
.tbs .row-fluid .controls-row [class*="span"] + [class*="span"] {
|
|
337
|
+
margin-left: 2.127659574468085%; }
|
|
338
|
+
.tbs .row-fluid .span12 {
|
|
339
|
+
width: 100%;
|
|
340
|
+
*width: 99.94680851063829%; }
|
|
341
|
+
.tbs .row-fluid .span11 {
|
|
342
|
+
width: 91.48936170212765%;
|
|
343
|
+
*width: 91.43617021276594%; }
|
|
344
|
+
.tbs .row-fluid .span10 {
|
|
345
|
+
width: 82.97872340425532%;
|
|
346
|
+
*width: 82.92553191489361%; }
|
|
347
|
+
.tbs .row-fluid .span9 {
|
|
348
|
+
width: 74.46808510638297%;
|
|
349
|
+
*width: 74.41489361702126%; }
|
|
350
|
+
.tbs .row-fluid .span8 {
|
|
351
|
+
width: 65.95744680851064%;
|
|
352
|
+
*width: 65.90425531914893%; }
|
|
353
|
+
.tbs .row-fluid .span7 {
|
|
354
|
+
width: 57.44680851063829%;
|
|
355
|
+
*width: 57.39361702127659%; }
|
|
356
|
+
.tbs .row-fluid .span6 {
|
|
357
|
+
width: 48.93617021276595%;
|
|
358
|
+
*width: 48.88297872340425%; }
|
|
359
|
+
.tbs .row-fluid .span5 {
|
|
360
|
+
width: 40.42553191489362%;
|
|
361
|
+
*width: 40.37234042553192%; }
|
|
362
|
+
.tbs .row-fluid .span4 {
|
|
363
|
+
width: 31.914893617021278%;
|
|
364
|
+
*width: 31.861702127659576%; }
|
|
365
|
+
.tbs .row-fluid .span3 {
|
|
366
|
+
width: 23.404255319148934%;
|
|
367
|
+
*width: 23.351063829787233%; }
|
|
368
|
+
.tbs .row-fluid .span2 {
|
|
369
|
+
width: 14.893617021276595%;
|
|
370
|
+
*width: 14.840425531914894%; }
|
|
371
|
+
.tbs .row-fluid .span1 {
|
|
372
|
+
width: 6.382978723404255%;
|
|
373
|
+
*width: 6.329787234042553%; }
|
|
374
|
+
.tbs .row-fluid .offset12 {
|
|
375
|
+
margin-left: 104.25531914893617%;
|
|
376
|
+
*margin-left: 104.14893617021275%; }
|
|
377
|
+
.tbs .row-fluid .offset12:first-child {
|
|
378
|
+
margin-left: 102.12765957446808%;
|
|
379
|
+
*margin-left: 102.02127659574467%; }
|
|
380
|
+
.tbs .row-fluid .offset11 {
|
|
381
|
+
margin-left: 95.74468085106382%;
|
|
382
|
+
*margin-left: 95.6382978723404%; }
|
|
383
|
+
.tbs .row-fluid .offset11:first-child {
|
|
384
|
+
margin-left: 93.61702127659574%;
|
|
385
|
+
*margin-left: 93.51063829787232%; }
|
|
386
|
+
.tbs .row-fluid .offset10 {
|
|
387
|
+
margin-left: 87.23404255319149%;
|
|
388
|
+
*margin-left: 87.12765957446807%; }
|
|
389
|
+
.tbs .row-fluid .offset10:first-child {
|
|
390
|
+
margin-left: 85.1063829787234%;
|
|
391
|
+
*margin-left: 84.99999999999999%; }
|
|
392
|
+
.tbs .row-fluid .offset9 {
|
|
393
|
+
margin-left: 78.72340425531914%;
|
|
394
|
+
*margin-left: 78.61702127659572%; }
|
|
395
|
+
.tbs .row-fluid .offset9:first-child {
|
|
396
|
+
margin-left: 76.59574468085106%;
|
|
397
|
+
*margin-left: 76.48936170212764%; }
|
|
398
|
+
.tbs .row-fluid .offset8 {
|
|
399
|
+
margin-left: 70.2127659574468%;
|
|
400
|
+
*margin-left: 70.10638297872339%; }
|
|
401
|
+
.tbs .row-fluid .offset8:first-child {
|
|
402
|
+
margin-left: 68.08510638297872%;
|
|
403
|
+
*margin-left: 67.9787234042553%; }
|
|
404
|
+
.tbs .row-fluid .offset7 {
|
|
405
|
+
margin-left: 61.70212765957446%;
|
|
406
|
+
*margin-left: 61.59574468085106%; }
|
|
407
|
+
.tbs .row-fluid .offset7:first-child {
|
|
408
|
+
margin-left: 59.574468085106375%;
|
|
409
|
+
*margin-left: 59.46808510638297%; }
|
|
410
|
+
.tbs .row-fluid .offset6 {
|
|
411
|
+
margin-left: 53.191489361702125%;
|
|
412
|
+
*margin-left: 53.085106382978715%; }
|
|
413
|
+
.tbs .row-fluid .offset6:first-child {
|
|
414
|
+
margin-left: 51.063829787234035%;
|
|
415
|
+
*margin-left: 50.95744680851063%; }
|
|
416
|
+
.tbs .row-fluid .offset5 {
|
|
417
|
+
margin-left: 44.68085106382979%;
|
|
418
|
+
*margin-left: 44.57446808510638%; }
|
|
419
|
+
.tbs .row-fluid .offset5:first-child {
|
|
420
|
+
margin-left: 42.5531914893617%;
|
|
421
|
+
*margin-left: 42.4468085106383%; }
|
|
422
|
+
.tbs .row-fluid .offset4 {
|
|
423
|
+
margin-left: 36.170212765957444%;
|
|
424
|
+
*margin-left: 36.06382978723405%; }
|
|
425
|
+
.tbs .row-fluid .offset4:first-child {
|
|
426
|
+
margin-left: 34.04255319148936%;
|
|
427
|
+
*margin-left: 33.93617021276596%; }
|
|
428
|
+
.tbs .row-fluid .offset3 {
|
|
429
|
+
margin-left: 27.659574468085104%;
|
|
430
|
+
*margin-left: 27.5531914893617%; }
|
|
431
|
+
.tbs .row-fluid .offset3:first-child {
|
|
432
|
+
margin-left: 25.53191489361702%;
|
|
433
|
+
*margin-left: 25.425531914893618%; }
|
|
434
|
+
.tbs .row-fluid .offset2 {
|
|
435
|
+
margin-left: 19.148936170212764%;
|
|
436
|
+
*margin-left: 19.04255319148936%; }
|
|
437
|
+
.tbs .row-fluid .offset2:first-child {
|
|
438
|
+
margin-left: 17.02127659574468%;
|
|
439
|
+
*margin-left: 16.914893617021278%; }
|
|
440
|
+
.tbs .row-fluid .offset1 {
|
|
441
|
+
margin-left: 10.638297872340425%;
|
|
442
|
+
*margin-left: 10.53191489361702%; }
|
|
443
|
+
.tbs .row-fluid .offset1:first-child {
|
|
444
|
+
margin-left: 8.51063829787234%;
|
|
445
|
+
*margin-left: 8.404255319148938%; }
|
|
446
|
+
.tbs [class*="span"].hide,
|
|
447
|
+
.tbs .row-fluid [class*="span"].hide {
|
|
448
|
+
display: none; }
|
|
449
|
+
.tbs [class*="span"].pull-right,
|
|
450
|
+
.tbs .row-fluid [class*="span"].pull-right {
|
|
451
|
+
float: right; }
|
|
452
|
+
.tbs .container {
|
|
453
|
+
margin-right: auto;
|
|
454
|
+
margin-left: auto;
|
|
455
|
+
*zoom: 1; }
|
|
456
|
+
.tbs .container:before,
|
|
457
|
+
.tbs .container:after {
|
|
458
|
+
display: table;
|
|
459
|
+
line-height: 0;
|
|
460
|
+
content: ""; }
|
|
461
|
+
.tbs .container:after {
|
|
462
|
+
clear: both; }
|
|
463
|
+
.tbs .container-fluid {
|
|
464
|
+
padding-right: 20px;
|
|
465
|
+
padding-left: 20px;
|
|
466
|
+
*zoom: 1; }
|
|
467
|
+
.tbs .container-fluid:before,
|
|
468
|
+
.tbs .container-fluid:after {
|
|
469
|
+
display: table;
|
|
470
|
+
line-height: 0;
|
|
471
|
+
content: ""; }
|
|
472
|
+
.tbs .container-fluid:after {
|
|
473
|
+
clear: both; }
|
|
474
|
+
.tbs p {
|
|
475
|
+
margin: 0 0 10px; }
|
|
476
|
+
.tbs .lead {
|
|
477
|
+
margin-bottom: 20px;
|
|
478
|
+
font-size: 21px;
|
|
479
|
+
font-weight: 200;
|
|
480
|
+
line-height: 30px; }
|
|
481
|
+
.tbs small {
|
|
482
|
+
font-size: 85%; }
|
|
483
|
+
.tbs strong {
|
|
484
|
+
font-weight: bold; }
|
|
485
|
+
.tbs em {
|
|
486
|
+
font-style: italic; }
|
|
487
|
+
.tbs cite {
|
|
488
|
+
font-style: normal; }
|
|
489
|
+
.tbs .muted {
|
|
490
|
+
color: #999999; }
|
|
491
|
+
.tbs a.muted:hover,
|
|
492
|
+
.tbs a.muted:focus {
|
|
493
|
+
color: #808080; }
|
|
494
|
+
.tbs .text-warning {
|
|
495
|
+
color: #c09853; }
|
|
496
|
+
.tbs a.text-warning:hover,
|
|
497
|
+
.tbs a.text-warning:focus {
|
|
498
|
+
color: #a47e3c; }
|
|
499
|
+
.tbs .text-error {
|
|
500
|
+
color: #b94a48; }
|
|
501
|
+
.tbs a.text-error:hover,
|
|
502
|
+
.tbs a.text-error:focus {
|
|
503
|
+
color: #953b39; }
|
|
504
|
+
.tbs .text-info {
|
|
505
|
+
color: #3a87ad; }
|
|
506
|
+
.tbs a.text-info:hover,
|
|
507
|
+
.tbs a.text-info:focus {
|
|
508
|
+
color: #2d6987; }
|
|
509
|
+
.tbs .text-success {
|
|
510
|
+
color: #468847; }
|
|
511
|
+
.tbs a.text-success:hover,
|
|
512
|
+
.tbs a.text-success:focus {
|
|
513
|
+
color: #356635; }
|
|
514
|
+
.tbs .text-left {
|
|
515
|
+
text-align: left; }
|
|
516
|
+
.tbs .text-right {
|
|
517
|
+
text-align: right; }
|
|
518
|
+
.tbs .text-center {
|
|
519
|
+
text-align: center; }
|
|
520
|
+
.tbs h1,
|
|
521
|
+
.tbs h2,
|
|
522
|
+
.tbs h3,
|
|
523
|
+
.tbs h4,
|
|
524
|
+
.tbs h5,
|
|
525
|
+
.tbs h6 {
|
|
526
|
+
margin: 10px 0;
|
|
527
|
+
font-family: inherit;
|
|
528
|
+
font-weight: bold;
|
|
529
|
+
line-height: 20px;
|
|
530
|
+
color: inherit;
|
|
531
|
+
text-rendering: optimizelegibility; }
|
|
532
|
+
.tbs h1 small,
|
|
533
|
+
.tbs h2 small,
|
|
534
|
+
.tbs h3 small,
|
|
535
|
+
.tbs h4 small,
|
|
536
|
+
.tbs h5 small,
|
|
537
|
+
.tbs h6 small {
|
|
538
|
+
font-weight: normal;
|
|
539
|
+
line-height: 1;
|
|
540
|
+
color: #999999; }
|
|
541
|
+
.tbs h1,
|
|
542
|
+
.tbs h2,
|
|
543
|
+
.tbs h3 {
|
|
544
|
+
line-height: 40px; }
|
|
545
|
+
.tbs h1 {
|
|
546
|
+
font-size: 38.5px; }
|
|
547
|
+
.tbs h2 {
|
|
548
|
+
font-size: 31.5px; }
|
|
549
|
+
.tbs h3 {
|
|
550
|
+
font-size: 24.5px; }
|
|
551
|
+
.tbs h4 {
|
|
552
|
+
font-size: 17.5px; }
|
|
553
|
+
.tbs h5 {
|
|
554
|
+
font-size: 14px; }
|
|
555
|
+
.tbs h6 {
|
|
556
|
+
font-size: 11.9px; }
|
|
557
|
+
.tbs h1 small {
|
|
558
|
+
font-size: 24.5px; }
|
|
559
|
+
.tbs h2 small {
|
|
560
|
+
font-size: 17.5px; }
|
|
561
|
+
.tbs h3 small {
|
|
562
|
+
font-size: 14px; }
|
|
563
|
+
.tbs h4 small {
|
|
564
|
+
font-size: 14px; }
|
|
565
|
+
.tbs .page-header {
|
|
566
|
+
padding-bottom: 9px;
|
|
567
|
+
margin: 20px 0 30px;
|
|
568
|
+
border-bottom: 1px solid #eeeeee; }
|
|
569
|
+
.tbs ul,
|
|
570
|
+
.tbs ol {
|
|
571
|
+
padding: 0;
|
|
572
|
+
margin: 0 0 10px 25px; }
|
|
573
|
+
.tbs ul ul,
|
|
574
|
+
.tbs ul ol,
|
|
575
|
+
.tbs ol ol,
|
|
576
|
+
.tbs ol ul {
|
|
577
|
+
margin-bottom: 0; }
|
|
578
|
+
.tbs li {
|
|
579
|
+
line-height: 20px; }
|
|
580
|
+
.tbs ul.unstyled,
|
|
581
|
+
.tbs ol.unstyled {
|
|
582
|
+
margin-left: 0;
|
|
583
|
+
list-style: none; }
|
|
584
|
+
.tbs ul.inline,
|
|
585
|
+
.tbs ol.inline {
|
|
586
|
+
margin-left: 0;
|
|
587
|
+
list-style: none; }
|
|
588
|
+
.tbs ul.inline > li,
|
|
589
|
+
.tbs ol.inline > li {
|
|
590
|
+
display: inline-block;
|
|
591
|
+
*display: inline;
|
|
592
|
+
padding-right: 5px;
|
|
593
|
+
padding-left: 5px;
|
|
594
|
+
*zoom: 1; }
|
|
595
|
+
.tbs dl {
|
|
596
|
+
margin-bottom: 20px; }
|
|
597
|
+
.tbs dt,
|
|
598
|
+
.tbs dd {
|
|
599
|
+
line-height: 20px; }
|
|
600
|
+
.tbs dt {
|
|
601
|
+
font-weight: bold; }
|
|
602
|
+
.tbs dd {
|
|
603
|
+
margin-left: 10px; }
|
|
604
|
+
.tbs .dl-horizontal {
|
|
605
|
+
*zoom: 1; }
|
|
606
|
+
.tbs .dl-horizontal:before,
|
|
607
|
+
.tbs .dl-horizontal:after {
|
|
608
|
+
display: table;
|
|
609
|
+
line-height: 0;
|
|
610
|
+
content: ""; }
|
|
611
|
+
.tbs .dl-horizontal:after {
|
|
612
|
+
clear: both; }
|
|
613
|
+
.tbs .dl-horizontal dt {
|
|
614
|
+
float: left;
|
|
615
|
+
width: 160px;
|
|
616
|
+
overflow: hidden;
|
|
617
|
+
clear: left;
|
|
618
|
+
text-align: right;
|
|
619
|
+
text-overflow: ellipsis;
|
|
620
|
+
white-space: nowrap; }
|
|
621
|
+
.tbs .dl-horizontal dd {
|
|
622
|
+
margin-left: 180px; }
|
|
623
|
+
.tbs hr {
|
|
624
|
+
margin: 20px 0;
|
|
625
|
+
border: 0;
|
|
626
|
+
border-top: 1px solid #eeeeee;
|
|
627
|
+
border-bottom: 1px solid #ffffff; }
|
|
628
|
+
.tbs abbr[title],
|
|
629
|
+
.tbs abbr[data-original-title] {
|
|
630
|
+
cursor: help;
|
|
631
|
+
border-bottom: 1px dotted #999999; }
|
|
632
|
+
.tbs abbr.initialism {
|
|
633
|
+
font-size: 90%;
|
|
634
|
+
text-transform: uppercase; }
|
|
635
|
+
.tbs blockquote {
|
|
636
|
+
padding: 0 0 0 15px;
|
|
637
|
+
margin: 0 0 20px;
|
|
638
|
+
border-left: 5px solid #eeeeee; }
|
|
639
|
+
.tbs blockquote p {
|
|
640
|
+
margin-bottom: 0;
|
|
641
|
+
font-size: 17.5px;
|
|
642
|
+
font-weight: 300;
|
|
643
|
+
line-height: 1.25; }
|
|
644
|
+
.tbs blockquote small {
|
|
645
|
+
display: block;
|
|
646
|
+
line-height: 20px;
|
|
647
|
+
color: #999999; }
|
|
648
|
+
.tbs blockquote small:before {
|
|
649
|
+
content: '\2014 \00A0'; }
|
|
650
|
+
.tbs blockquote.pull-right {
|
|
651
|
+
float: right;
|
|
652
|
+
padding-right: 15px;
|
|
653
|
+
padding-left: 0;
|
|
654
|
+
border-right: 5px solid #eeeeee;
|
|
655
|
+
border-left: 0; }
|
|
656
|
+
.tbs blockquote.pull-right p,
|
|
657
|
+
.tbs blockquote.pull-right small {
|
|
658
|
+
text-align: right; }
|
|
659
|
+
.tbs blockquote.pull-right small:before {
|
|
660
|
+
content: ''; }
|
|
661
|
+
.tbs blockquote.pull-right small:after {
|
|
662
|
+
content: '\00A0 \2014'; }
|
|
663
|
+
.tbs q:before,
|
|
664
|
+
.tbs q:after,
|
|
665
|
+
.tbs blockquote:before,
|
|
666
|
+
.tbs blockquote:after {
|
|
667
|
+
content: ""; }
|
|
668
|
+
.tbs address {
|
|
669
|
+
display: block;
|
|
670
|
+
margin-bottom: 20px;
|
|
671
|
+
font-style: normal;
|
|
672
|
+
line-height: 20px; }
|
|
673
|
+
.tbs code,
|
|
674
|
+
.tbs pre {
|
|
675
|
+
padding: 0 3px 2px;
|
|
676
|
+
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
|
677
|
+
font-size: 12px;
|
|
678
|
+
color: #333333;
|
|
679
|
+
-webkit-border-radius: 3px;
|
|
680
|
+
-moz-border-radius: 3px;
|
|
681
|
+
border-radius: 3px; }
|
|
682
|
+
.tbs code {
|
|
683
|
+
padding: 2px 4px;
|
|
684
|
+
color: #d14;
|
|
685
|
+
white-space: nowrap;
|
|
686
|
+
background-color: #f7f7f9;
|
|
687
|
+
border: 1px solid #e1e1e8; }
|
|
688
|
+
.tbs pre {
|
|
689
|
+
display: block;
|
|
690
|
+
padding: 9.5px;
|
|
691
|
+
margin: 0 0 10px;
|
|
692
|
+
font-size: 13px;
|
|
693
|
+
line-height: 20px;
|
|
694
|
+
word-break: break-all;
|
|
695
|
+
word-wrap: break-word;
|
|
696
|
+
white-space: pre;
|
|
697
|
+
white-space: pre-wrap;
|
|
698
|
+
background-color: #f5f5f5;
|
|
699
|
+
border: 1px solid #ccc;
|
|
700
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
701
|
+
-webkit-border-radius: 4px;
|
|
702
|
+
-moz-border-radius: 4px;
|
|
703
|
+
border-radius: 4px; }
|
|
704
|
+
.tbs pre.prettyprint {
|
|
705
|
+
margin-bottom: 20px; }
|
|
706
|
+
.tbs pre code {
|
|
707
|
+
padding: 0;
|
|
708
|
+
color: inherit;
|
|
709
|
+
white-space: pre;
|
|
710
|
+
white-space: pre-wrap;
|
|
711
|
+
background-color: transparent;
|
|
712
|
+
border: 0; }
|
|
713
|
+
.tbs .pre-scrollable {
|
|
714
|
+
max-height: 340px;
|
|
715
|
+
overflow-y: scroll; }
|
|
716
|
+
.tbs form {
|
|
717
|
+
margin: 0 0 20px; }
|
|
718
|
+
.tbs fieldset {
|
|
719
|
+
padding: 0;
|
|
720
|
+
margin: 0;
|
|
721
|
+
border: 0; }
|
|
722
|
+
.tbs legend {
|
|
723
|
+
display: block;
|
|
724
|
+
width: 100%;
|
|
725
|
+
padding: 0;
|
|
726
|
+
margin-bottom: 20px;
|
|
727
|
+
font-size: 21px;
|
|
728
|
+
line-height: 40px;
|
|
729
|
+
color: #333333;
|
|
730
|
+
border: 0;
|
|
731
|
+
border-bottom: 1px solid #e5e5e5; }
|
|
732
|
+
.tbs legend small {
|
|
733
|
+
font-size: 15px;
|
|
734
|
+
color: #999999; }
|
|
735
|
+
.tbs label,
|
|
736
|
+
.tbs input,
|
|
737
|
+
.tbs button,
|
|
738
|
+
.tbs select,
|
|
739
|
+
.tbs textarea {
|
|
740
|
+
font-size: 14px;
|
|
741
|
+
font-weight: normal;
|
|
742
|
+
line-height: 20px; }
|
|
743
|
+
.tbs input,
|
|
744
|
+
.tbs button,
|
|
745
|
+
.tbs select,
|
|
746
|
+
.tbs textarea {
|
|
747
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
|
|
748
|
+
.tbs label {
|
|
749
|
+
display: block;
|
|
750
|
+
margin-bottom: 5px; }
|
|
751
|
+
.tbs select,
|
|
752
|
+
.tbs textarea,
|
|
753
|
+
.tbs input[type="text"],
|
|
754
|
+
.tbs input[type="password"],
|
|
755
|
+
.tbs input[type="datetime"],
|
|
756
|
+
.tbs input[type="datetime-local"],
|
|
757
|
+
.tbs input[type="date"],
|
|
758
|
+
.tbs input[type="month"],
|
|
759
|
+
.tbs input[type="time"],
|
|
760
|
+
.tbs input[type="week"],
|
|
761
|
+
.tbs input[type="number"],
|
|
762
|
+
.tbs input[type="email"],
|
|
763
|
+
.tbs input[type="url"],
|
|
764
|
+
.tbs input[type="search"],
|
|
765
|
+
.tbs input[type="tel"],
|
|
766
|
+
.tbs input[type="color"],
|
|
767
|
+
.tbs .uneditable-input {
|
|
768
|
+
display: inline-block;
|
|
769
|
+
height: 20px;
|
|
770
|
+
padding: 4px 6px;
|
|
771
|
+
margin-bottom: 10px;
|
|
772
|
+
font-size: 14px;
|
|
773
|
+
line-height: 20px;
|
|
774
|
+
color: #555555;
|
|
775
|
+
vertical-align: middle;
|
|
776
|
+
-webkit-border-radius: 4px;
|
|
777
|
+
-moz-border-radius: 4px;
|
|
778
|
+
border-radius: 4px; }
|
|
779
|
+
.tbs input,
|
|
780
|
+
.tbs textarea,
|
|
781
|
+
.tbs .uneditable-input {
|
|
782
|
+
width: 206px; }
|
|
783
|
+
.tbs textarea {
|
|
784
|
+
height: auto; }
|
|
785
|
+
.tbs textarea,
|
|
786
|
+
.tbs input[type="text"],
|
|
787
|
+
.tbs input[type="password"],
|
|
788
|
+
.tbs input[type="datetime"],
|
|
789
|
+
.tbs input[type="datetime-local"],
|
|
790
|
+
.tbs input[type="date"],
|
|
791
|
+
.tbs input[type="month"],
|
|
792
|
+
.tbs input[type="time"],
|
|
793
|
+
.tbs input[type="week"],
|
|
794
|
+
.tbs input[type="number"],
|
|
795
|
+
.tbs input[type="email"],
|
|
796
|
+
.tbs input[type="url"],
|
|
797
|
+
.tbs input[type="search"],
|
|
798
|
+
.tbs input[type="tel"],
|
|
799
|
+
.tbs input[type="color"],
|
|
800
|
+
.tbs .uneditable-input {
|
|
801
|
+
background-color: #ffffff;
|
|
802
|
+
border: 1px solid #cccccc;
|
|
803
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
804
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
805
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
806
|
+
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
807
|
+
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
808
|
+
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
809
|
+
transition: border linear 0.2s, box-shadow linear 0.2s; }
|
|
810
|
+
.tbs textarea:focus,
|
|
811
|
+
.tbs input[type="text"]:focus,
|
|
812
|
+
.tbs input[type="password"]:focus,
|
|
813
|
+
.tbs input[type="datetime"]:focus,
|
|
814
|
+
.tbs input[type="datetime-local"]:focus,
|
|
815
|
+
.tbs input[type="date"]:focus,
|
|
816
|
+
.tbs input[type="month"]:focus,
|
|
817
|
+
.tbs input[type="time"]:focus,
|
|
818
|
+
.tbs input[type="week"]:focus,
|
|
819
|
+
.tbs input[type="number"]:focus,
|
|
820
|
+
.tbs input[type="email"]:focus,
|
|
821
|
+
.tbs input[type="url"]:focus,
|
|
822
|
+
.tbs input[type="search"]:focus,
|
|
823
|
+
.tbs input[type="tel"]:focus,
|
|
824
|
+
.tbs input[type="color"]:focus,
|
|
825
|
+
.tbs .uneditable-input:focus {
|
|
826
|
+
border-color: rgba(82, 168, 236, 0.8);
|
|
827
|
+
outline: 0;
|
|
828
|
+
outline: thin dotted \9;
|
|
829
|
+
/* IE6-9 */
|
|
830
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
|
831
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
|
|
832
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); }
|
|
833
|
+
.tbs input[type="radio"],
|
|
834
|
+
.tbs input[type="checkbox"] {
|
|
835
|
+
margin: 4px 0 0;
|
|
836
|
+
margin-top: 1px \9;
|
|
837
|
+
*margin-top: 0;
|
|
838
|
+
line-height: normal; }
|
|
839
|
+
.tbs input[type="file"],
|
|
840
|
+
.tbs input[type="image"],
|
|
841
|
+
.tbs input[type="submit"],
|
|
842
|
+
.tbs input[type="reset"],
|
|
843
|
+
.tbs input[type="button"],
|
|
844
|
+
.tbs input[type="radio"],
|
|
845
|
+
.tbs input[type="checkbox"] {
|
|
846
|
+
width: auto; }
|
|
847
|
+
.tbs select,
|
|
848
|
+
.tbs input[type="file"] {
|
|
849
|
+
height: 30px;
|
|
850
|
+
/* In IE7, the height of the select element cannot be changed by height, only font-size */
|
|
851
|
+
*margin-top: 4px;
|
|
852
|
+
/* For IE7, add top margin to align select with labels */
|
|
853
|
+
line-height: 30px; }
|
|
854
|
+
.tbs select {
|
|
855
|
+
width: 220px;
|
|
856
|
+
background-color: #ffffff;
|
|
857
|
+
border: 1px solid #cccccc; }
|
|
858
|
+
.tbs select[multiple],
|
|
859
|
+
.tbs select[size] {
|
|
860
|
+
height: auto; }
|
|
861
|
+
.tbs select:focus,
|
|
862
|
+
.tbs input[type="file"]:focus,
|
|
863
|
+
.tbs input[type="radio"]:focus,
|
|
864
|
+
.tbs input[type="checkbox"]:focus {
|
|
865
|
+
outline: thin dotted #333;
|
|
866
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
867
|
+
outline-offset: -2px; }
|
|
868
|
+
.tbs .uneditable-input,
|
|
869
|
+
.tbs .uneditable-textarea {
|
|
870
|
+
color: #999999;
|
|
871
|
+
cursor: not-allowed;
|
|
872
|
+
background-color: #fcfcfc;
|
|
873
|
+
border-color: #cccccc;
|
|
874
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
|
|
875
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
|
|
876
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); }
|
|
877
|
+
.tbs .uneditable-input {
|
|
878
|
+
overflow: hidden;
|
|
879
|
+
white-space: nowrap; }
|
|
880
|
+
.tbs .uneditable-textarea {
|
|
881
|
+
width: auto;
|
|
882
|
+
height: auto; }
|
|
883
|
+
.tbs input:-moz-placeholder,
|
|
884
|
+
.tbs textarea:-moz-placeholder {
|
|
885
|
+
color: #999999; }
|
|
886
|
+
.tbs input:-ms-input-placeholder,
|
|
887
|
+
.tbs textarea:-ms-input-placeholder {
|
|
888
|
+
color: #999999; }
|
|
889
|
+
.tbs input::-webkit-input-placeholder,
|
|
890
|
+
.tbs textarea::-webkit-input-placeholder {
|
|
891
|
+
color: #999999; }
|
|
892
|
+
.tbs .radio,
|
|
893
|
+
.tbs .checkbox {
|
|
894
|
+
min-height: 20px;
|
|
895
|
+
padding-left: 20px; }
|
|
896
|
+
.tbs .radio input[type="radio"],
|
|
897
|
+
.tbs .checkbox input[type="checkbox"] {
|
|
898
|
+
float: left;
|
|
899
|
+
margin-left: -20px; }
|
|
900
|
+
.tbs .controls > .radio:first-child,
|
|
901
|
+
.tbs .controls > .checkbox:first-child {
|
|
902
|
+
padding-top: 5px; }
|
|
903
|
+
.tbs .radio.inline,
|
|
904
|
+
.tbs .checkbox.inline {
|
|
905
|
+
display: inline-block;
|
|
906
|
+
padding-top: 5px;
|
|
907
|
+
margin-bottom: 0;
|
|
908
|
+
vertical-align: middle; }
|
|
909
|
+
.tbs .radio.inline + .radio.inline,
|
|
910
|
+
.tbs .checkbox.inline + .checkbox.inline {
|
|
911
|
+
margin-left: 10px; }
|
|
912
|
+
.tbs .input-mini {
|
|
913
|
+
width: 60px; }
|
|
914
|
+
.tbs .input-small {
|
|
915
|
+
width: 90px; }
|
|
916
|
+
.tbs .input-medium {
|
|
917
|
+
width: 150px; }
|
|
918
|
+
.tbs .input-large {
|
|
919
|
+
width: 210px; }
|
|
920
|
+
.tbs .input-xlarge {
|
|
921
|
+
width: 270px; }
|
|
922
|
+
.tbs .input-xxlarge {
|
|
923
|
+
width: 530px; }
|
|
924
|
+
.tbs input[class*="span"],
|
|
925
|
+
.tbs select[class*="span"],
|
|
926
|
+
.tbs textarea[class*="span"],
|
|
927
|
+
.tbs .uneditable-input[class*="span"],
|
|
928
|
+
.tbs .row-fluid input[class*="span"],
|
|
929
|
+
.tbs .row-fluid select[class*="span"],
|
|
930
|
+
.tbs .row-fluid textarea[class*="span"],
|
|
931
|
+
.tbs .row-fluid .uneditable-input[class*="span"] {
|
|
932
|
+
float: none;
|
|
933
|
+
margin-left: 0; }
|
|
934
|
+
.tbs .input-append input[class*="span"],
|
|
935
|
+
.tbs .input-append .uneditable-input[class*="span"],
|
|
936
|
+
.tbs .input-prepend input[class*="span"],
|
|
937
|
+
.tbs .input-prepend .uneditable-input[class*="span"],
|
|
938
|
+
.tbs .row-fluid input[class*="span"],
|
|
939
|
+
.tbs .row-fluid select[class*="span"],
|
|
940
|
+
.tbs .row-fluid textarea[class*="span"],
|
|
941
|
+
.tbs .row-fluid .uneditable-input[class*="span"],
|
|
942
|
+
.tbs .row-fluid .input-prepend [class*="span"],
|
|
943
|
+
.tbs .row-fluid .input-append [class*="span"] {
|
|
944
|
+
display: inline-block; }
|
|
945
|
+
.tbs input,
|
|
946
|
+
.tbs textarea,
|
|
947
|
+
.tbs .uneditable-input {
|
|
948
|
+
margin-left: 0; }
|
|
949
|
+
.tbs .controls-row [class*="span"] + [class*="span"] {
|
|
950
|
+
margin-left: 20px; }
|
|
951
|
+
.tbs input.span12,
|
|
952
|
+
.tbs textarea.span12,
|
|
953
|
+
.tbs .uneditable-input.span12 {
|
|
954
|
+
width: 926px; }
|
|
955
|
+
.tbs input.span11,
|
|
956
|
+
.tbs textarea.span11,
|
|
957
|
+
.tbs .uneditable-input.span11 {
|
|
958
|
+
width: 846px; }
|
|
959
|
+
.tbs input.span10,
|
|
960
|
+
.tbs textarea.span10,
|
|
961
|
+
.tbs .uneditable-input.span10 {
|
|
962
|
+
width: 766px; }
|
|
963
|
+
.tbs input.span9,
|
|
964
|
+
.tbs textarea.span9,
|
|
965
|
+
.tbs .uneditable-input.span9 {
|
|
966
|
+
width: 686px; }
|
|
967
|
+
.tbs input.span8,
|
|
968
|
+
.tbs textarea.span8,
|
|
969
|
+
.tbs .uneditable-input.span8 {
|
|
970
|
+
width: 606px; }
|
|
971
|
+
.tbs input.span7,
|
|
972
|
+
.tbs textarea.span7,
|
|
973
|
+
.tbs .uneditable-input.span7 {
|
|
974
|
+
width: 526px; }
|
|
975
|
+
.tbs input.span6,
|
|
976
|
+
.tbs textarea.span6,
|
|
977
|
+
.tbs .uneditable-input.span6 {
|
|
978
|
+
width: 446px; }
|
|
979
|
+
.tbs input.span5,
|
|
980
|
+
.tbs textarea.span5,
|
|
981
|
+
.tbs .uneditable-input.span5 {
|
|
982
|
+
width: 366px; }
|
|
983
|
+
.tbs input.span4,
|
|
984
|
+
.tbs textarea.span4,
|
|
985
|
+
.tbs .uneditable-input.span4 {
|
|
986
|
+
width: 286px; }
|
|
987
|
+
.tbs input.span3,
|
|
988
|
+
.tbs textarea.span3,
|
|
989
|
+
.tbs .uneditable-input.span3 {
|
|
990
|
+
width: 206px; }
|
|
991
|
+
.tbs input.span2,
|
|
992
|
+
.tbs textarea.span2,
|
|
993
|
+
.tbs .uneditable-input.span2 {
|
|
994
|
+
width: 126px; }
|
|
995
|
+
.tbs input.span1,
|
|
996
|
+
.tbs textarea.span1,
|
|
997
|
+
.tbs .uneditable-input.span1 {
|
|
998
|
+
width: 46px; }
|
|
999
|
+
.tbs .controls-row {
|
|
1000
|
+
*zoom: 1; }
|
|
1001
|
+
.tbs .controls-row:before,
|
|
1002
|
+
.tbs .controls-row:after {
|
|
1003
|
+
display: table;
|
|
1004
|
+
line-height: 0;
|
|
1005
|
+
content: ""; }
|
|
1006
|
+
.tbs .controls-row:after {
|
|
1007
|
+
clear: both; }
|
|
1008
|
+
.tbs .controls-row [class*="span"],
|
|
1009
|
+
.tbs .row-fluid .controls-row [class*="span"] {
|
|
1010
|
+
float: left; }
|
|
1011
|
+
.tbs .controls-row .checkbox[class*="span"],
|
|
1012
|
+
.tbs .controls-row .radio[class*="span"] {
|
|
1013
|
+
padding-top: 5px; }
|
|
1014
|
+
.tbs input[disabled],
|
|
1015
|
+
.tbs select[disabled],
|
|
1016
|
+
.tbs textarea[disabled],
|
|
1017
|
+
.tbs input[readonly],
|
|
1018
|
+
.tbs select[readonly],
|
|
1019
|
+
.tbs textarea[readonly] {
|
|
1020
|
+
cursor: not-allowed;
|
|
1021
|
+
background-color: #eeeeee; }
|
|
1022
|
+
.tbs input[type="radio"][disabled],
|
|
1023
|
+
.tbs input[type="checkbox"][disabled],
|
|
1024
|
+
.tbs input[type="radio"][readonly],
|
|
1025
|
+
.tbs input[type="checkbox"][readonly] {
|
|
1026
|
+
background-color: transparent; }
|
|
1027
|
+
.tbs .control-group.warning .control-label,
|
|
1028
|
+
.tbs .control-group.warning .help-block,
|
|
1029
|
+
.tbs .control-group.warning .help-inline {
|
|
1030
|
+
color: #c09853; }
|
|
1031
|
+
.tbs .control-group.warning .checkbox,
|
|
1032
|
+
.tbs .control-group.warning .radio,
|
|
1033
|
+
.tbs .control-group.warning input,
|
|
1034
|
+
.tbs .control-group.warning select,
|
|
1035
|
+
.tbs .control-group.warning textarea {
|
|
1036
|
+
color: #c09853; }
|
|
1037
|
+
.tbs .control-group.warning input,
|
|
1038
|
+
.tbs .control-group.warning select,
|
|
1039
|
+
.tbs .control-group.warning textarea {
|
|
1040
|
+
border-color: #c09853;
|
|
1041
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1042
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1043
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
|
1044
|
+
.tbs .control-group.warning input:focus,
|
|
1045
|
+
.tbs .control-group.warning select:focus,
|
|
1046
|
+
.tbs .control-group.warning textarea:focus {
|
|
1047
|
+
border-color: #a47e3c;
|
|
1048
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
|
1049
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
|
1050
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; }
|
|
1051
|
+
.tbs .control-group.warning .input-prepend .add-on,
|
|
1052
|
+
.tbs .control-group.warning .input-append .add-on {
|
|
1053
|
+
color: #c09853;
|
|
1054
|
+
background-color: #fcf8e3;
|
|
1055
|
+
border-color: #c09853; }
|
|
1056
|
+
.tbs .control-group.error .control-label,
|
|
1057
|
+
.tbs .control-group.error .help-block,
|
|
1058
|
+
.tbs .control-group.error .help-inline {
|
|
1059
|
+
color: #b94a48; }
|
|
1060
|
+
.tbs .control-group.error .checkbox,
|
|
1061
|
+
.tbs .control-group.error .radio,
|
|
1062
|
+
.tbs .control-group.error input,
|
|
1063
|
+
.tbs .control-group.error select,
|
|
1064
|
+
.tbs .control-group.error textarea {
|
|
1065
|
+
color: #b94a48; }
|
|
1066
|
+
.tbs .control-group.error input,
|
|
1067
|
+
.tbs .control-group.error select,
|
|
1068
|
+
.tbs .control-group.error textarea {
|
|
1069
|
+
border-color: #b94a48;
|
|
1070
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1071
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1072
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
|
1073
|
+
.tbs .control-group.error input:focus,
|
|
1074
|
+
.tbs .control-group.error select:focus,
|
|
1075
|
+
.tbs .control-group.error textarea:focus {
|
|
1076
|
+
border-color: #953b39;
|
|
1077
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
|
1078
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
|
1079
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; }
|
|
1080
|
+
.tbs .control-group.error .input-prepend .add-on,
|
|
1081
|
+
.tbs .control-group.error .input-append .add-on {
|
|
1082
|
+
color: #b94a48;
|
|
1083
|
+
background-color: #f2dede;
|
|
1084
|
+
border-color: #b94a48; }
|
|
1085
|
+
.tbs .control-group.success .control-label,
|
|
1086
|
+
.tbs .control-group.success .help-block,
|
|
1087
|
+
.tbs .control-group.success .help-inline {
|
|
1088
|
+
color: #468847; }
|
|
1089
|
+
.tbs .control-group.success .checkbox,
|
|
1090
|
+
.tbs .control-group.success .radio,
|
|
1091
|
+
.tbs .control-group.success input,
|
|
1092
|
+
.tbs .control-group.success select,
|
|
1093
|
+
.tbs .control-group.success textarea {
|
|
1094
|
+
color: #468847; }
|
|
1095
|
+
.tbs .control-group.success input,
|
|
1096
|
+
.tbs .control-group.success select,
|
|
1097
|
+
.tbs .control-group.success textarea {
|
|
1098
|
+
border-color: #468847;
|
|
1099
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1100
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1101
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
|
1102
|
+
.tbs .control-group.success input:focus,
|
|
1103
|
+
.tbs .control-group.success select:focus,
|
|
1104
|
+
.tbs .control-group.success textarea:focus {
|
|
1105
|
+
border-color: #356635;
|
|
1106
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
|
1107
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
|
1108
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; }
|
|
1109
|
+
.tbs .control-group.success .input-prepend .add-on,
|
|
1110
|
+
.tbs .control-group.success .input-append .add-on {
|
|
1111
|
+
color: #468847;
|
|
1112
|
+
background-color: #dff0d8;
|
|
1113
|
+
border-color: #468847; }
|
|
1114
|
+
.tbs .control-group.info .control-label,
|
|
1115
|
+
.tbs .control-group.info .help-block,
|
|
1116
|
+
.tbs .control-group.info .help-inline {
|
|
1117
|
+
color: #3a87ad; }
|
|
1118
|
+
.tbs .control-group.info .checkbox,
|
|
1119
|
+
.tbs .control-group.info .radio,
|
|
1120
|
+
.tbs .control-group.info input,
|
|
1121
|
+
.tbs .control-group.info select,
|
|
1122
|
+
.tbs .control-group.info textarea {
|
|
1123
|
+
color: #3a87ad; }
|
|
1124
|
+
.tbs .control-group.info input,
|
|
1125
|
+
.tbs .control-group.info select,
|
|
1126
|
+
.tbs .control-group.info textarea {
|
|
1127
|
+
border-color: #3a87ad;
|
|
1128
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1129
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
1130
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
|
|
1131
|
+
.tbs .control-group.info input:focus,
|
|
1132
|
+
.tbs .control-group.info select:focus,
|
|
1133
|
+
.tbs .control-group.info textarea:focus {
|
|
1134
|
+
border-color: #2d6987;
|
|
1135
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
|
1136
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
|
1137
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; }
|
|
1138
|
+
.tbs .control-group.info .input-prepend .add-on,
|
|
1139
|
+
.tbs .control-group.info .input-append .add-on {
|
|
1140
|
+
color: #3a87ad;
|
|
1141
|
+
background-color: #d9edf7;
|
|
1142
|
+
border-color: #3a87ad; }
|
|
1143
|
+
.tbs input:focus:invalid,
|
|
1144
|
+
.tbs textarea:focus:invalid,
|
|
1145
|
+
.tbs select:focus:invalid {
|
|
1146
|
+
color: #b94a48;
|
|
1147
|
+
border-color: #ee5f5b; }
|
|
1148
|
+
.tbs input:focus:invalid:focus,
|
|
1149
|
+
.tbs textarea:focus:invalid:focus,
|
|
1150
|
+
.tbs select:focus:invalid:focus {
|
|
1151
|
+
border-color: #e9322d;
|
|
1152
|
+
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
|
1153
|
+
-moz-box-shadow: 0 0 6px #f8b9b7;
|
|
1154
|
+
box-shadow: 0 0 6px #f8b9b7; }
|
|
1155
|
+
.tbs .form-actions {
|
|
1156
|
+
padding: 19px 20px 20px;
|
|
1157
|
+
margin-top: 20px;
|
|
1158
|
+
margin-bottom: 20px;
|
|
1159
|
+
background-color: #f5f5f5;
|
|
1160
|
+
border-top: 1px solid #e5e5e5;
|
|
1161
|
+
*zoom: 1; }
|
|
1162
|
+
.tbs .form-actions:before,
|
|
1163
|
+
.tbs .form-actions:after {
|
|
1164
|
+
display: table;
|
|
1165
|
+
line-height: 0;
|
|
1166
|
+
content: ""; }
|
|
1167
|
+
.tbs .form-actions:after {
|
|
1168
|
+
clear: both; }
|
|
1169
|
+
.tbs .help-block,
|
|
1170
|
+
.tbs .help-inline {
|
|
1171
|
+
color: #595959; }
|
|
1172
|
+
.tbs .help-block {
|
|
1173
|
+
display: block;
|
|
1174
|
+
margin-bottom: 10px; }
|
|
1175
|
+
.tbs .help-inline {
|
|
1176
|
+
display: inline-block;
|
|
1177
|
+
*display: inline;
|
|
1178
|
+
padding-left: 5px;
|
|
1179
|
+
vertical-align: middle;
|
|
1180
|
+
*zoom: 1; }
|
|
1181
|
+
.tbs .input-append,
|
|
1182
|
+
.tbs .input-prepend {
|
|
1183
|
+
display: inline-block;
|
|
1184
|
+
margin-bottom: 10px;
|
|
1185
|
+
font-size: 0;
|
|
1186
|
+
white-space: nowrap;
|
|
1187
|
+
vertical-align: middle; }
|
|
1188
|
+
.tbs .input-append input,
|
|
1189
|
+
.tbs .input-prepend input,
|
|
1190
|
+
.tbs .input-append select,
|
|
1191
|
+
.tbs .input-prepend select,
|
|
1192
|
+
.tbs .input-append .uneditable-input,
|
|
1193
|
+
.tbs .input-prepend .uneditable-input,
|
|
1194
|
+
.tbs .input-append .dropdown-menu,
|
|
1195
|
+
.tbs .input-prepend .dropdown-menu,
|
|
1196
|
+
.tbs .input-append .popover,
|
|
1197
|
+
.tbs .input-prepend .popover {
|
|
1198
|
+
font-size: 14px; }
|
|
1199
|
+
.tbs .input-append input,
|
|
1200
|
+
.tbs .input-prepend input,
|
|
1201
|
+
.tbs .input-append select,
|
|
1202
|
+
.tbs .input-prepend select,
|
|
1203
|
+
.tbs .input-append .uneditable-input,
|
|
1204
|
+
.tbs .input-prepend .uneditable-input {
|
|
1205
|
+
position: relative;
|
|
1206
|
+
margin-bottom: 0;
|
|
1207
|
+
*margin-left: 0;
|
|
1208
|
+
vertical-align: top;
|
|
1209
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1210
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1211
|
+
border-radius: 0 4px 4px 0; }
|
|
1212
|
+
.tbs .input-append input:focus,
|
|
1213
|
+
.tbs .input-prepend input:focus,
|
|
1214
|
+
.tbs .input-append select:focus,
|
|
1215
|
+
.tbs .input-prepend select:focus,
|
|
1216
|
+
.tbs .input-append .uneditable-input:focus,
|
|
1217
|
+
.tbs .input-prepend .uneditable-input:focus {
|
|
1218
|
+
z-index: 2; }
|
|
1219
|
+
.tbs .input-append .add-on,
|
|
1220
|
+
.tbs .input-prepend .add-on {
|
|
1221
|
+
display: inline-block;
|
|
1222
|
+
width: auto;
|
|
1223
|
+
height: 20px;
|
|
1224
|
+
min-width: 16px;
|
|
1225
|
+
padding: 4px 5px;
|
|
1226
|
+
font-size: 14px;
|
|
1227
|
+
font-weight: normal;
|
|
1228
|
+
line-height: 20px;
|
|
1229
|
+
text-align: center;
|
|
1230
|
+
text-shadow: 0 1px 0 #ffffff;
|
|
1231
|
+
background-color: #eeeeee;
|
|
1232
|
+
border: 1px solid #ccc; }
|
|
1233
|
+
.tbs .input-append .add-on,
|
|
1234
|
+
.tbs .input-prepend .add-on,
|
|
1235
|
+
.tbs .input-append .btn,
|
|
1236
|
+
.tbs .input-prepend .btn,
|
|
1237
|
+
.tbs .input-append .btn-group > .dropdown-toggle,
|
|
1238
|
+
.tbs .input-prepend .btn-group > .dropdown-toggle {
|
|
1239
|
+
vertical-align: top;
|
|
1240
|
+
-webkit-border-radius: 0;
|
|
1241
|
+
-moz-border-radius: 0;
|
|
1242
|
+
border-radius: 0; }
|
|
1243
|
+
.tbs .input-append .active,
|
|
1244
|
+
.tbs .input-prepend .active {
|
|
1245
|
+
background-color: #a9dba9;
|
|
1246
|
+
border-color: #46a546; }
|
|
1247
|
+
.tbs .input-prepend .add-on,
|
|
1248
|
+
.tbs .input-prepend .btn {
|
|
1249
|
+
margin-right: -1px; }
|
|
1250
|
+
.tbs .input-prepend .add-on:first-child,
|
|
1251
|
+
.tbs .input-prepend .btn:first-child {
|
|
1252
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
1253
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
1254
|
+
border-radius: 4px 0 0 4px; }
|
|
1255
|
+
.tbs .input-append input,
|
|
1256
|
+
.tbs .input-append select,
|
|
1257
|
+
.tbs .input-append .uneditable-input {
|
|
1258
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
1259
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
1260
|
+
border-radius: 4px 0 0 4px; }
|
|
1261
|
+
.tbs .input-append input + .btn-group .btn:last-child,
|
|
1262
|
+
.tbs .input-append select + .btn-group .btn:last-child,
|
|
1263
|
+
.tbs .input-append .uneditable-input + .btn-group .btn:last-child {
|
|
1264
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1265
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1266
|
+
border-radius: 0 4px 4px 0; }
|
|
1267
|
+
.tbs .input-append .add-on,
|
|
1268
|
+
.tbs .input-append .btn,
|
|
1269
|
+
.tbs .input-append .btn-group {
|
|
1270
|
+
margin-left: -1px; }
|
|
1271
|
+
.tbs .input-append .add-on:last-child,
|
|
1272
|
+
.tbs .input-append .btn:last-child,
|
|
1273
|
+
.tbs .input-append .btn-group:last-child > .dropdown-toggle {
|
|
1274
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1275
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1276
|
+
border-radius: 0 4px 4px 0; }
|
|
1277
|
+
.tbs .input-prepend.input-append input,
|
|
1278
|
+
.tbs .input-prepend.input-append select,
|
|
1279
|
+
.tbs .input-prepend.input-append .uneditable-input {
|
|
1280
|
+
-webkit-border-radius: 0;
|
|
1281
|
+
-moz-border-radius: 0;
|
|
1282
|
+
border-radius: 0; }
|
|
1283
|
+
.tbs .input-prepend.input-append input + .btn-group .btn,
|
|
1284
|
+
.tbs .input-prepend.input-append select + .btn-group .btn,
|
|
1285
|
+
.tbs .input-prepend.input-append .uneditable-input + .btn-group .btn {
|
|
1286
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1287
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1288
|
+
border-radius: 0 4px 4px 0; }
|
|
1289
|
+
.tbs .input-prepend.input-append .add-on:first-child,
|
|
1290
|
+
.tbs .input-prepend.input-append .btn:first-child {
|
|
1291
|
+
margin-right: -1px;
|
|
1292
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
1293
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
1294
|
+
border-radius: 4px 0 0 4px; }
|
|
1295
|
+
.tbs .input-prepend.input-append .add-on:last-child,
|
|
1296
|
+
.tbs .input-prepend.input-append .btn:last-child {
|
|
1297
|
+
margin-left: -1px;
|
|
1298
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
1299
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
1300
|
+
border-radius: 0 4px 4px 0; }
|
|
1301
|
+
.tbs .input-prepend.input-append .btn-group:first-child {
|
|
1302
|
+
margin-left: 0; }
|
|
1303
|
+
.tbs input.search-query {
|
|
1304
|
+
padding-right: 14px;
|
|
1305
|
+
padding-right: 4px \9;
|
|
1306
|
+
padding-left: 14px;
|
|
1307
|
+
padding-left: 4px \9;
|
|
1308
|
+
/* IE7-8 doesn't have border-radius, so don't indent the padding */
|
|
1309
|
+
margin-bottom: 0;
|
|
1310
|
+
-webkit-border-radius: 15px;
|
|
1311
|
+
-moz-border-radius: 15px;
|
|
1312
|
+
border-radius: 15px; }
|
|
1313
|
+
.tbs .form-search .input-append .search-query,
|
|
1314
|
+
.tbs .form-search .input-prepend .search-query {
|
|
1315
|
+
-webkit-border-radius: 0;
|
|
1316
|
+
-moz-border-radius: 0;
|
|
1317
|
+
border-radius: 0; }
|
|
1318
|
+
.tbs .form-search .input-append .search-query {
|
|
1319
|
+
-webkit-border-radius: 14px 0 0 14px;
|
|
1320
|
+
-moz-border-radius: 14px 0 0 14px;
|
|
1321
|
+
border-radius: 14px 0 0 14px; }
|
|
1322
|
+
.tbs .form-search .input-append .btn {
|
|
1323
|
+
-webkit-border-radius: 0 14px 14px 0;
|
|
1324
|
+
-moz-border-radius: 0 14px 14px 0;
|
|
1325
|
+
border-radius: 0 14px 14px 0; }
|
|
1326
|
+
.tbs .form-search .input-prepend .search-query {
|
|
1327
|
+
-webkit-border-radius: 0 14px 14px 0;
|
|
1328
|
+
-moz-border-radius: 0 14px 14px 0;
|
|
1329
|
+
border-radius: 0 14px 14px 0; }
|
|
1330
|
+
.tbs .form-search .input-prepend .btn {
|
|
1331
|
+
-webkit-border-radius: 14px 0 0 14px;
|
|
1332
|
+
-moz-border-radius: 14px 0 0 14px;
|
|
1333
|
+
border-radius: 14px 0 0 14px; }
|
|
1334
|
+
.tbs .form-search input,
|
|
1335
|
+
.tbs .form-inline input,
|
|
1336
|
+
.tbs .form-horizontal input,
|
|
1337
|
+
.tbs .form-search textarea,
|
|
1338
|
+
.tbs .form-inline textarea,
|
|
1339
|
+
.tbs .form-horizontal textarea,
|
|
1340
|
+
.tbs .form-search select,
|
|
1341
|
+
.tbs .form-inline select,
|
|
1342
|
+
.tbs .form-horizontal select,
|
|
1343
|
+
.tbs .form-search .help-inline,
|
|
1344
|
+
.tbs .form-inline .help-inline,
|
|
1345
|
+
.tbs .form-horizontal .help-inline,
|
|
1346
|
+
.tbs .form-search .uneditable-input,
|
|
1347
|
+
.tbs .form-inline .uneditable-input,
|
|
1348
|
+
.tbs .form-horizontal .uneditable-input,
|
|
1349
|
+
.tbs .form-search .input-prepend,
|
|
1350
|
+
.tbs .form-inline .input-prepend,
|
|
1351
|
+
.tbs .form-horizontal .input-prepend,
|
|
1352
|
+
.tbs .form-search .input-append,
|
|
1353
|
+
.tbs .form-inline .input-append,
|
|
1354
|
+
.tbs .form-horizontal .input-append {
|
|
1355
|
+
display: inline-block;
|
|
1356
|
+
*display: inline;
|
|
1357
|
+
margin-bottom: 0;
|
|
1358
|
+
vertical-align: middle;
|
|
1359
|
+
*zoom: 1; }
|
|
1360
|
+
.tbs .form-search .hide,
|
|
1361
|
+
.tbs .form-inline .hide,
|
|
1362
|
+
.tbs .form-horizontal .hide {
|
|
1363
|
+
display: none; }
|
|
1364
|
+
.tbs .form-search label,
|
|
1365
|
+
.tbs .form-inline label,
|
|
1366
|
+
.tbs .form-search .btn-group,
|
|
1367
|
+
.tbs .form-inline .btn-group {
|
|
1368
|
+
display: inline-block; }
|
|
1369
|
+
.tbs .form-search .input-append,
|
|
1370
|
+
.tbs .form-inline .input-append,
|
|
1371
|
+
.tbs .form-search .input-prepend,
|
|
1372
|
+
.tbs .form-inline .input-prepend {
|
|
1373
|
+
margin-bottom: 0; }
|
|
1374
|
+
.tbs .form-search .radio,
|
|
1375
|
+
.tbs .form-search .checkbox,
|
|
1376
|
+
.tbs .form-inline .radio,
|
|
1377
|
+
.tbs .form-inline .checkbox {
|
|
1378
|
+
padding-left: 0;
|
|
1379
|
+
margin-bottom: 0;
|
|
1380
|
+
vertical-align: middle; }
|
|
1381
|
+
.tbs .form-search .radio input[type="radio"],
|
|
1382
|
+
.tbs .form-search .checkbox input[type="checkbox"],
|
|
1383
|
+
.tbs .form-inline .radio input[type="radio"],
|
|
1384
|
+
.tbs .form-inline .checkbox input[type="checkbox"] {
|
|
1385
|
+
float: left;
|
|
1386
|
+
margin-right: 3px;
|
|
1387
|
+
margin-left: 0; }
|
|
1388
|
+
.tbs .control-group {
|
|
1389
|
+
margin-bottom: 10px; }
|
|
1390
|
+
.tbs legend + .control-group {
|
|
1391
|
+
margin-top: 20px;
|
|
1392
|
+
-webkit-margin-top-collapse: separate; }
|
|
1393
|
+
.tbs .form-horizontal .control-group {
|
|
1394
|
+
margin-bottom: 20px;
|
|
1395
|
+
*zoom: 1; }
|
|
1396
|
+
.tbs .form-horizontal .control-group:before,
|
|
1397
|
+
.tbs .form-horizontal .control-group:after {
|
|
1398
|
+
display: table;
|
|
1399
|
+
line-height: 0;
|
|
1400
|
+
content: ""; }
|
|
1401
|
+
.tbs .form-horizontal .control-group:after {
|
|
1402
|
+
clear: both; }
|
|
1403
|
+
.tbs .form-horizontal .control-label {
|
|
1404
|
+
float: left;
|
|
1405
|
+
width: 160px;
|
|
1406
|
+
padding-top: 5px;
|
|
1407
|
+
text-align: right; }
|
|
1408
|
+
.tbs .form-horizontal .controls {
|
|
1409
|
+
*display: inline-block;
|
|
1410
|
+
*padding-left: 20px;
|
|
1411
|
+
margin-left: 180px;
|
|
1412
|
+
*margin-left: 0; }
|
|
1413
|
+
.tbs .form-horizontal .controls:first-child {
|
|
1414
|
+
*padding-left: 180px; }
|
|
1415
|
+
.tbs .form-horizontal .help-block {
|
|
1416
|
+
margin-bottom: 0; }
|
|
1417
|
+
.tbs .form-horizontal input + .help-block,
|
|
1418
|
+
.tbs .form-horizontal select + .help-block,
|
|
1419
|
+
.tbs .form-horizontal textarea + .help-block,
|
|
1420
|
+
.tbs .form-horizontal .uneditable-input + .help-block,
|
|
1421
|
+
.tbs .form-horizontal .input-prepend + .help-block,
|
|
1422
|
+
.tbs .form-horizontal .input-append + .help-block {
|
|
1423
|
+
margin-top: 10px; }
|
|
1424
|
+
.tbs .form-horizontal .form-actions {
|
|
1425
|
+
padding-left: 180px; }
|
|
1426
|
+
.tbs table {
|
|
1427
|
+
max-width: 100%;
|
|
1428
|
+
background-color: transparent;
|
|
1429
|
+
border-collapse: collapse;
|
|
1430
|
+
border-spacing: 0; }
|
|
1431
|
+
.tbs .table {
|
|
1432
|
+
width: 100%;
|
|
1433
|
+
margin-bottom: 20px; }
|
|
1434
|
+
.tbs .table th,
|
|
1435
|
+
.tbs .table td {
|
|
1436
|
+
padding: 8px;
|
|
1437
|
+
line-height: 20px;
|
|
1438
|
+
text-align: left;
|
|
1439
|
+
vertical-align: top;
|
|
1440
|
+
border-top: 1px solid #dddddd; }
|
|
1441
|
+
.tbs .table th {
|
|
1442
|
+
font-weight: bold; }
|
|
1443
|
+
.tbs .table thead th {
|
|
1444
|
+
vertical-align: bottom; }
|
|
1445
|
+
.tbs .table caption + thead tr:first-child th,
|
|
1446
|
+
.tbs .table caption + thead tr:first-child td,
|
|
1447
|
+
.tbs .table colgroup + thead tr:first-child th,
|
|
1448
|
+
.tbs .table colgroup + thead tr:first-child td,
|
|
1449
|
+
.tbs .table thead:first-child tr:first-child th,
|
|
1450
|
+
.tbs .table thead:first-child tr:first-child td {
|
|
1451
|
+
border-top: 0; }
|
|
1452
|
+
.tbs .table tbody + tbody {
|
|
1453
|
+
border-top: 2px solid #dddddd; }
|
|
1454
|
+
.tbs .table .table {
|
|
1455
|
+
background-color: #ffffff; }
|
|
1456
|
+
.tbs .table-condensed th,
|
|
1457
|
+
.tbs .table-condensed td {
|
|
1458
|
+
padding: 4px 5px; }
|
|
1459
|
+
.tbs .table-bordered {
|
|
1460
|
+
border: 1px solid #dddddd;
|
|
1461
|
+
border-collapse: separate;
|
|
1462
|
+
*border-collapse: collapse;
|
|
1463
|
+
border-left: 0;
|
|
1464
|
+
-webkit-border-radius: 4px;
|
|
1465
|
+
-moz-border-radius: 4px;
|
|
1466
|
+
border-radius: 4px; }
|
|
1467
|
+
.tbs .table-bordered th,
|
|
1468
|
+
.tbs .table-bordered td {
|
|
1469
|
+
border-left: 1px solid #dddddd; }
|
|
1470
|
+
.tbs .table-bordered caption + thead tr:first-child th,
|
|
1471
|
+
.tbs .table-bordered caption + tbody tr:first-child th,
|
|
1472
|
+
.tbs .table-bordered caption + tbody tr:first-child td,
|
|
1473
|
+
.tbs .table-bordered colgroup + thead tr:first-child th,
|
|
1474
|
+
.tbs .table-bordered colgroup + tbody tr:first-child th,
|
|
1475
|
+
.tbs .table-bordered colgroup + tbody tr:first-child td,
|
|
1476
|
+
.tbs .table-bordered thead:first-child tr:first-child th,
|
|
1477
|
+
.tbs .table-bordered tbody:first-child tr:first-child th,
|
|
1478
|
+
.tbs .table-bordered tbody:first-child tr:first-child td {
|
|
1479
|
+
border-top: 0; }
|
|
1480
|
+
.tbs .table-bordered thead:first-child tr:first-child > th:first-child,
|
|
1481
|
+
.tbs .table-bordered tbody:first-child tr:first-child > td:first-child,
|
|
1482
|
+
.tbs .table-bordered tbody:first-child tr:first-child > th:first-child {
|
|
1483
|
+
-webkit-border-top-left-radius: 4px;
|
|
1484
|
+
border-top-left-radius: 4px;
|
|
1485
|
+
-moz-border-radius-topleft: 4px; }
|
|
1486
|
+
.tbs .table-bordered thead:first-child tr:first-child > th:last-child,
|
|
1487
|
+
.tbs .table-bordered tbody:first-child tr:first-child > td:last-child,
|
|
1488
|
+
.tbs .table-bordered tbody:first-child tr:first-child > th:last-child {
|
|
1489
|
+
-webkit-border-top-right-radius: 4px;
|
|
1490
|
+
border-top-right-radius: 4px;
|
|
1491
|
+
-moz-border-radius-topright: 4px; }
|
|
1492
|
+
.tbs .table-bordered thead:last-child tr:last-child > th:first-child,
|
|
1493
|
+
.tbs .table-bordered tbody:last-child tr:last-child > td:first-child,
|
|
1494
|
+
.tbs .table-bordered tbody:last-child tr:last-child > th:first-child,
|
|
1495
|
+
.tbs .table-bordered tfoot:last-child tr:last-child > td:first-child,
|
|
1496
|
+
.tbs .table-bordered tfoot:last-child tr:last-child > th:first-child {
|
|
1497
|
+
-webkit-border-bottom-left-radius: 4px;
|
|
1498
|
+
border-bottom-left-radius: 4px;
|
|
1499
|
+
-moz-border-radius-bottomleft: 4px; }
|
|
1500
|
+
.tbs .table-bordered thead:last-child tr:last-child > th:last-child,
|
|
1501
|
+
.tbs .table-bordered tbody:last-child tr:last-child > td:last-child,
|
|
1502
|
+
.tbs .table-bordered tbody:last-child tr:last-child > th:last-child,
|
|
1503
|
+
.tbs .table-bordered tfoot:last-child tr:last-child > td:last-child,
|
|
1504
|
+
.tbs .table-bordered tfoot:last-child tr:last-child > th:last-child {
|
|
1505
|
+
-webkit-border-bottom-right-radius: 4px;
|
|
1506
|
+
border-bottom-right-radius: 4px;
|
|
1507
|
+
-moz-border-radius-bottomright: 4px; }
|
|
1508
|
+
.tbs .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
|
|
1509
|
+
-webkit-border-bottom-left-radius: 0;
|
|
1510
|
+
border-bottom-left-radius: 0;
|
|
1511
|
+
-moz-border-radius-bottomleft: 0; }
|
|
1512
|
+
.tbs .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
|
|
1513
|
+
-webkit-border-bottom-right-radius: 0;
|
|
1514
|
+
border-bottom-right-radius: 0;
|
|
1515
|
+
-moz-border-radius-bottomright: 0; }
|
|
1516
|
+
.tbs .table-bordered caption + thead tr:first-child th:first-child,
|
|
1517
|
+
.tbs .table-bordered caption + tbody tr:first-child td:first-child,
|
|
1518
|
+
.tbs .table-bordered colgroup + thead tr:first-child th:first-child,
|
|
1519
|
+
.tbs .table-bordered colgroup + tbody tr:first-child td:first-child {
|
|
1520
|
+
-webkit-border-top-left-radius: 4px;
|
|
1521
|
+
border-top-left-radius: 4px;
|
|
1522
|
+
-moz-border-radius-topleft: 4px; }
|
|
1523
|
+
.tbs .table-bordered caption + thead tr:first-child th:last-child,
|
|
1524
|
+
.tbs .table-bordered caption + tbody tr:first-child td:last-child,
|
|
1525
|
+
.tbs .table-bordered colgroup + thead tr:first-child th:last-child,
|
|
1526
|
+
.tbs .table-bordered colgroup + tbody tr:first-child td:last-child {
|
|
1527
|
+
-webkit-border-top-right-radius: 4px;
|
|
1528
|
+
border-top-right-radius: 4px;
|
|
1529
|
+
-moz-border-radius-topright: 4px; }
|
|
1530
|
+
.tbs .table-striped tbody > tr:nth-child(odd) > td,
|
|
1531
|
+
.tbs .table-striped tbody > tr:nth-child(odd) > th {
|
|
1532
|
+
background-color: #f9f9f9; }
|
|
1533
|
+
.tbs .table-hover tbody tr:hover > td,
|
|
1534
|
+
.tbs .table-hover tbody tr:hover > th {
|
|
1535
|
+
background-color: #f5f5f5; }
|
|
1536
|
+
.tbs table td[class*="span"],
|
|
1537
|
+
.tbs table th[class*="span"],
|
|
1538
|
+
.tbs .row-fluid table td[class*="span"],
|
|
1539
|
+
.tbs .row-fluid table th[class*="span"] {
|
|
1540
|
+
display: table-cell;
|
|
1541
|
+
float: none;
|
|
1542
|
+
margin-left: 0; }
|
|
1543
|
+
.tbs .table td.span1,
|
|
1544
|
+
.tbs .table th.span1 {
|
|
1545
|
+
float: none;
|
|
1546
|
+
width: 44px;
|
|
1547
|
+
margin-left: 0; }
|
|
1548
|
+
.tbs .table td.span2,
|
|
1549
|
+
.tbs .table th.span2 {
|
|
1550
|
+
float: none;
|
|
1551
|
+
width: 124px;
|
|
1552
|
+
margin-left: 0; }
|
|
1553
|
+
.tbs .table td.span3,
|
|
1554
|
+
.tbs .table th.span3 {
|
|
1555
|
+
float: none;
|
|
1556
|
+
width: 204px;
|
|
1557
|
+
margin-left: 0; }
|
|
1558
|
+
.tbs .table td.span4,
|
|
1559
|
+
.tbs .table th.span4 {
|
|
1560
|
+
float: none;
|
|
1561
|
+
width: 284px;
|
|
1562
|
+
margin-left: 0; }
|
|
1563
|
+
.tbs .table td.span5,
|
|
1564
|
+
.tbs .table th.span5 {
|
|
1565
|
+
float: none;
|
|
1566
|
+
width: 364px;
|
|
1567
|
+
margin-left: 0; }
|
|
1568
|
+
.tbs .table td.span6,
|
|
1569
|
+
.tbs .table th.span6 {
|
|
1570
|
+
float: none;
|
|
1571
|
+
width: 444px;
|
|
1572
|
+
margin-left: 0; }
|
|
1573
|
+
.tbs .table td.span7,
|
|
1574
|
+
.tbs .table th.span7 {
|
|
1575
|
+
float: none;
|
|
1576
|
+
width: 524px;
|
|
1577
|
+
margin-left: 0; }
|
|
1578
|
+
.tbs .table td.span8,
|
|
1579
|
+
.tbs .table th.span8 {
|
|
1580
|
+
float: none;
|
|
1581
|
+
width: 604px;
|
|
1582
|
+
margin-left: 0; }
|
|
1583
|
+
.tbs .table td.span9,
|
|
1584
|
+
.tbs .table th.span9 {
|
|
1585
|
+
float: none;
|
|
1586
|
+
width: 684px;
|
|
1587
|
+
margin-left: 0; }
|
|
1588
|
+
.tbs .table td.span10,
|
|
1589
|
+
.tbs .table th.span10 {
|
|
1590
|
+
float: none;
|
|
1591
|
+
width: 764px;
|
|
1592
|
+
margin-left: 0; }
|
|
1593
|
+
.tbs .table td.span11,
|
|
1594
|
+
.tbs .table th.span11 {
|
|
1595
|
+
float: none;
|
|
1596
|
+
width: 844px;
|
|
1597
|
+
margin-left: 0; }
|
|
1598
|
+
.tbs .table td.span12,
|
|
1599
|
+
.tbs .table th.span12 {
|
|
1600
|
+
float: none;
|
|
1601
|
+
width: 924px;
|
|
1602
|
+
margin-left: 0; }
|
|
1603
|
+
.tbs .table tbody tr.success > td {
|
|
1604
|
+
background-color: #dff0d8; }
|
|
1605
|
+
.tbs .table tbody tr.error > td {
|
|
1606
|
+
background-color: #f2dede; }
|
|
1607
|
+
.tbs .table tbody tr.warning > td {
|
|
1608
|
+
background-color: #fcf8e3; }
|
|
1609
|
+
.tbs .table tbody tr.info > td {
|
|
1610
|
+
background-color: #d9edf7; }
|
|
1611
|
+
.tbs .table-hover tbody tr.success:hover > td {
|
|
1612
|
+
background-color: #d0e9c6; }
|
|
1613
|
+
.tbs .table-hover tbody tr.error:hover > td {
|
|
1614
|
+
background-color: #ebcccc; }
|
|
1615
|
+
.tbs .table-hover tbody tr.warning:hover > td {
|
|
1616
|
+
background-color: #faf2cc; }
|
|
1617
|
+
.tbs .table-hover tbody tr.info:hover > td {
|
|
1618
|
+
background-color: #c4e3f3; }
|
|
1619
|
+
.tbs [class^="icon-"],
|
|
1620
|
+
.tbs [class*=" icon-"] {
|
|
1621
|
+
display: inline-block;
|
|
1622
|
+
width: 14px;
|
|
1623
|
+
height: 14px;
|
|
1624
|
+
margin-top: 1px;
|
|
1625
|
+
*margin-right: .3em;
|
|
1626
|
+
line-height: 14px;
|
|
1627
|
+
vertical-align: text-top;
|
|
1628
|
+
background-image: url("/assets/glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png");
|
|
1629
|
+
background-position: 14px 14px;
|
|
1630
|
+
background-repeat: no-repeat; }
|
|
1631
|
+
.tbs .icon-white,
|
|
1632
|
+
.tbs .nav-pills > .active > a > [class^="icon-"],
|
|
1633
|
+
.tbs .nav-pills > .active > a > [class*=" icon-"],
|
|
1634
|
+
.tbs .nav-list > .active > a > [class^="icon-"],
|
|
1635
|
+
.tbs .nav-list > .active > a > [class*=" icon-"],
|
|
1636
|
+
.tbs .navbar-inverse .nav > .active > a > [class^="icon-"],
|
|
1637
|
+
.tbs .navbar-inverse .nav > .active > a > [class*=" icon-"],
|
|
1638
|
+
.tbs .dropdown-menu > li > a:hover > [class^="icon-"],
|
|
1639
|
+
.tbs .dropdown-menu > li > a:focus > [class^="icon-"],
|
|
1640
|
+
.tbs .dropdown-menu > li > a:hover > [class*=" icon-"],
|
|
1641
|
+
.tbs .dropdown-menu > li > a:focus > [class*=" icon-"],
|
|
1642
|
+
.tbs .dropdown-menu > .active > a > [class^="icon-"],
|
|
1643
|
+
.tbs .dropdown-menu > .active > a > [class*=" icon-"],
|
|
1644
|
+
.tbs .dropdown-submenu:hover > a > [class^="icon-"],
|
|
1645
|
+
.tbs .dropdown-submenu:focus > a > [class^="icon-"],
|
|
1646
|
+
.tbs .dropdown-submenu:hover > a > [class*=" icon-"],
|
|
1647
|
+
.tbs .dropdown-submenu:focus > a > [class*=" icon-"] {
|
|
1648
|
+
background-image: url("/assets/glyphicons-halflings-white-ec01567c9d4e5aba3fd3efa6e3054574.png"); }
|
|
1649
|
+
.tbs .icon-glass {
|
|
1650
|
+
background-position: 0 0; }
|
|
1651
|
+
.tbs .icon-music {
|
|
1652
|
+
background-position: -24px 0; }
|
|
1653
|
+
.tbs .icon-search {
|
|
1654
|
+
background-position: -48px 0; }
|
|
1655
|
+
.tbs .icon-envelope {
|
|
1656
|
+
background-position: -72px 0; }
|
|
1657
|
+
.tbs .icon-heart {
|
|
1658
|
+
background-position: -96px 0; }
|
|
1659
|
+
.tbs .icon-star {
|
|
1660
|
+
background-position: -120px 0; }
|
|
1661
|
+
.tbs .icon-star-empty {
|
|
1662
|
+
background-position: -144px 0; }
|
|
1663
|
+
.tbs .icon-user {
|
|
1664
|
+
background-position: -168px 0; }
|
|
1665
|
+
.tbs .icon-film {
|
|
1666
|
+
background-position: -192px 0; }
|
|
1667
|
+
.tbs .icon-th-large {
|
|
1668
|
+
background-position: -216px 0; }
|
|
1669
|
+
.tbs .icon-th {
|
|
1670
|
+
background-position: -240px 0; }
|
|
1671
|
+
.tbs .icon-th-list {
|
|
1672
|
+
background-position: -264px 0; }
|
|
1673
|
+
.tbs .icon-ok {
|
|
1674
|
+
background-position: -288px 0; }
|
|
1675
|
+
.tbs .icon-remove {
|
|
1676
|
+
background-position: -312px 0; }
|
|
1677
|
+
.tbs .icon-zoom-in {
|
|
1678
|
+
background-position: -336px 0; }
|
|
1679
|
+
.tbs .icon-zoom-out {
|
|
1680
|
+
background-position: -360px 0; }
|
|
1681
|
+
.tbs .icon-off {
|
|
1682
|
+
background-position: -384px 0; }
|
|
1683
|
+
.tbs .icon-signal {
|
|
1684
|
+
background-position: -408px 0; }
|
|
1685
|
+
.tbs .icon-cog {
|
|
1686
|
+
background-position: -432px 0; }
|
|
1687
|
+
.tbs .icon-trash {
|
|
1688
|
+
background-position: -456px 0; }
|
|
1689
|
+
.tbs .icon-home {
|
|
1690
|
+
background-position: 0 -24px; }
|
|
1691
|
+
.tbs .icon-file {
|
|
1692
|
+
background-position: -24px -24px; }
|
|
1693
|
+
.tbs .icon-time {
|
|
1694
|
+
background-position: -48px -24px; }
|
|
1695
|
+
.tbs .icon-road {
|
|
1696
|
+
background-position: -72px -24px; }
|
|
1697
|
+
.tbs .icon-download-alt {
|
|
1698
|
+
background-position: -96px -24px; }
|
|
1699
|
+
.tbs .icon-download {
|
|
1700
|
+
background-position: -120px -24px; }
|
|
1701
|
+
.tbs .icon-upload {
|
|
1702
|
+
background-position: -144px -24px; }
|
|
1703
|
+
.tbs .icon-inbox {
|
|
1704
|
+
background-position: -168px -24px; }
|
|
1705
|
+
.tbs .icon-play-circle {
|
|
1706
|
+
background-position: -192px -24px; }
|
|
1707
|
+
.tbs .icon-repeat {
|
|
1708
|
+
background-position: -216px -24px; }
|
|
1709
|
+
.tbs .icon-refresh {
|
|
1710
|
+
background-position: -240px -24px; }
|
|
1711
|
+
.tbs .icon-list-alt {
|
|
1712
|
+
background-position: -264px -24px; }
|
|
1713
|
+
.tbs .icon-lock {
|
|
1714
|
+
background-position: -287px -24px; }
|
|
1715
|
+
.tbs .icon-flag {
|
|
1716
|
+
background-position: -312px -24px; }
|
|
1717
|
+
.tbs .icon-headphones {
|
|
1718
|
+
background-position: -336px -24px; }
|
|
1719
|
+
.tbs .icon-volume-off {
|
|
1720
|
+
background-position: -360px -24px; }
|
|
1721
|
+
.tbs .icon-volume-down {
|
|
1722
|
+
background-position: -384px -24px; }
|
|
1723
|
+
.tbs .icon-volume-up {
|
|
1724
|
+
background-position: -408px -24px; }
|
|
1725
|
+
.tbs .icon-qrcode {
|
|
1726
|
+
background-position: -432px -24px; }
|
|
1727
|
+
.tbs .icon-barcode {
|
|
1728
|
+
background-position: -456px -24px; }
|
|
1729
|
+
.tbs .icon-tag {
|
|
1730
|
+
background-position: 0 -48px; }
|
|
1731
|
+
.tbs .icon-tags {
|
|
1732
|
+
background-position: -25px -48px; }
|
|
1733
|
+
.tbs .icon-book {
|
|
1734
|
+
background-position: -48px -48px; }
|
|
1735
|
+
.tbs .icon-bookmark {
|
|
1736
|
+
background-position: -72px -48px; }
|
|
1737
|
+
.tbs .icon-print {
|
|
1738
|
+
background-position: -96px -48px; }
|
|
1739
|
+
.tbs .icon-camera {
|
|
1740
|
+
background-position: -120px -48px; }
|
|
1741
|
+
.tbs .icon-font {
|
|
1742
|
+
background-position: -144px -48px; }
|
|
1743
|
+
.tbs .icon-bold {
|
|
1744
|
+
background-position: -167px -48px; }
|
|
1745
|
+
.tbs .icon-italic {
|
|
1746
|
+
background-position: -192px -48px; }
|
|
1747
|
+
.tbs .icon-text-height {
|
|
1748
|
+
background-position: -216px -48px; }
|
|
1749
|
+
.tbs .icon-text-width {
|
|
1750
|
+
background-position: -240px -48px; }
|
|
1751
|
+
.tbs .icon-align-left {
|
|
1752
|
+
background-position: -264px -48px; }
|
|
1753
|
+
.tbs .icon-align-center {
|
|
1754
|
+
background-position: -288px -48px; }
|
|
1755
|
+
.tbs .icon-align-right {
|
|
1756
|
+
background-position: -312px -48px; }
|
|
1757
|
+
.tbs .icon-align-justify {
|
|
1758
|
+
background-position: -336px -48px; }
|
|
1759
|
+
.tbs .icon-list {
|
|
1760
|
+
background-position: -360px -48px; }
|
|
1761
|
+
.tbs .icon-indent-left {
|
|
1762
|
+
background-position: -384px -48px; }
|
|
1763
|
+
.tbs .icon-indent-right {
|
|
1764
|
+
background-position: -408px -48px; }
|
|
1765
|
+
.tbs .icon-facetime-video {
|
|
1766
|
+
background-position: -432px -48px; }
|
|
1767
|
+
.tbs .icon-picture {
|
|
1768
|
+
background-position: -456px -48px; }
|
|
1769
|
+
.tbs .icon-pencil {
|
|
1770
|
+
background-position: 0 -72px; }
|
|
1771
|
+
.tbs .icon-map-marker {
|
|
1772
|
+
background-position: -24px -72px; }
|
|
1773
|
+
.tbs .icon-adjust {
|
|
1774
|
+
background-position: -48px -72px; }
|
|
1775
|
+
.tbs .icon-tint {
|
|
1776
|
+
background-position: -72px -72px; }
|
|
1777
|
+
.tbs .icon-edit {
|
|
1778
|
+
background-position: -96px -72px; }
|
|
1779
|
+
.tbs .icon-share {
|
|
1780
|
+
background-position: -120px -72px; }
|
|
1781
|
+
.tbs .icon-check {
|
|
1782
|
+
background-position: -144px -72px; }
|
|
1783
|
+
.tbs .icon-move {
|
|
1784
|
+
background-position: -168px -72px; }
|
|
1785
|
+
.tbs .icon-step-backward {
|
|
1786
|
+
background-position: -192px -72px; }
|
|
1787
|
+
.tbs .icon-fast-backward {
|
|
1788
|
+
background-position: -216px -72px; }
|
|
1789
|
+
.tbs .icon-backward {
|
|
1790
|
+
background-position: -240px -72px; }
|
|
1791
|
+
.tbs .icon-play {
|
|
1792
|
+
background-position: -264px -72px; }
|
|
1793
|
+
.tbs .icon-pause {
|
|
1794
|
+
background-position: -288px -72px; }
|
|
1795
|
+
.tbs .icon-stop {
|
|
1796
|
+
background-position: -312px -72px; }
|
|
1797
|
+
.tbs .icon-forward {
|
|
1798
|
+
background-position: -336px -72px; }
|
|
1799
|
+
.tbs .icon-fast-forward {
|
|
1800
|
+
background-position: -360px -72px; }
|
|
1801
|
+
.tbs .icon-step-forward {
|
|
1802
|
+
background-position: -384px -72px; }
|
|
1803
|
+
.tbs .icon-eject {
|
|
1804
|
+
background-position: -408px -72px; }
|
|
1805
|
+
.tbs .icon-chevron-left {
|
|
1806
|
+
background-position: -432px -72px; }
|
|
1807
|
+
.tbs .icon-chevron-right {
|
|
1808
|
+
background-position: -456px -72px; }
|
|
1809
|
+
.tbs .icon-plus-sign {
|
|
1810
|
+
background-position: 0 -96px; }
|
|
1811
|
+
.tbs .icon-minus-sign {
|
|
1812
|
+
background-position: -24px -96px; }
|
|
1813
|
+
.tbs .icon-remove-sign {
|
|
1814
|
+
background-position: -48px -96px; }
|
|
1815
|
+
.tbs .icon-ok-sign {
|
|
1816
|
+
background-position: -72px -96px; }
|
|
1817
|
+
.tbs .icon-question-sign {
|
|
1818
|
+
background-position: -96px -96px; }
|
|
1819
|
+
.tbs .icon-info-sign {
|
|
1820
|
+
background-position: -120px -96px; }
|
|
1821
|
+
.tbs .icon-screenshot {
|
|
1822
|
+
background-position: -144px -96px; }
|
|
1823
|
+
.tbs .icon-remove-circle {
|
|
1824
|
+
background-position: -168px -96px; }
|
|
1825
|
+
.tbs .icon-ok-circle {
|
|
1826
|
+
background-position: -192px -96px; }
|
|
1827
|
+
.tbs .icon-ban-circle {
|
|
1828
|
+
background-position: -216px -96px; }
|
|
1829
|
+
.tbs .icon-arrow-left {
|
|
1830
|
+
background-position: -240px -96px; }
|
|
1831
|
+
.tbs .icon-arrow-right {
|
|
1832
|
+
background-position: -264px -96px; }
|
|
1833
|
+
.tbs .icon-arrow-up {
|
|
1834
|
+
background-position: -289px -96px; }
|
|
1835
|
+
.tbs .icon-arrow-down {
|
|
1836
|
+
background-position: -312px -96px; }
|
|
1837
|
+
.tbs .icon-share-alt {
|
|
1838
|
+
background-position: -336px -96px; }
|
|
1839
|
+
.tbs .icon-resize-full {
|
|
1840
|
+
background-position: -360px -96px; }
|
|
1841
|
+
.tbs .icon-resize-small {
|
|
1842
|
+
background-position: -384px -96px; }
|
|
1843
|
+
.tbs .icon-plus {
|
|
1844
|
+
background-position: -408px -96px; }
|
|
1845
|
+
.tbs .icon-minus {
|
|
1846
|
+
background-position: -433px -96px; }
|
|
1847
|
+
.tbs .icon-asterisk {
|
|
1848
|
+
background-position: -456px -96px; }
|
|
1849
|
+
.tbs .icon-exclamation-sign {
|
|
1850
|
+
background-position: 0 -120px; }
|
|
1851
|
+
.tbs .icon-gift {
|
|
1852
|
+
background-position: -24px -120px; }
|
|
1853
|
+
.tbs .icon-leaf {
|
|
1854
|
+
background-position: -48px -120px; }
|
|
1855
|
+
.tbs .icon-fire {
|
|
1856
|
+
background-position: -72px -120px; }
|
|
1857
|
+
.tbs .icon-eye-open {
|
|
1858
|
+
background-position: -96px -120px; }
|
|
1859
|
+
.tbs .icon-eye-close {
|
|
1860
|
+
background-position: -120px -120px; }
|
|
1861
|
+
.tbs .icon-warning-sign {
|
|
1862
|
+
background-position: -144px -120px; }
|
|
1863
|
+
.tbs .icon-plane {
|
|
1864
|
+
background-position: -168px -120px; }
|
|
1865
|
+
.tbs .icon-calendar {
|
|
1866
|
+
background-position: -192px -120px; }
|
|
1867
|
+
.tbs .icon-random {
|
|
1868
|
+
width: 16px;
|
|
1869
|
+
background-position: -216px -120px; }
|
|
1870
|
+
.tbs .icon-comment {
|
|
1871
|
+
background-position: -240px -120px; }
|
|
1872
|
+
.tbs .icon-magnet {
|
|
1873
|
+
background-position: -264px -120px; }
|
|
1874
|
+
.tbs .icon-chevron-up {
|
|
1875
|
+
background-position: -288px -120px; }
|
|
1876
|
+
.tbs .icon-chevron-down {
|
|
1877
|
+
background-position: -313px -119px; }
|
|
1878
|
+
.tbs .icon-retweet {
|
|
1879
|
+
background-position: -336px -120px; }
|
|
1880
|
+
.tbs .icon-shopping-cart {
|
|
1881
|
+
background-position: -360px -120px; }
|
|
1882
|
+
.tbs .icon-folder-close {
|
|
1883
|
+
width: 16px;
|
|
1884
|
+
background-position: -384px -120px; }
|
|
1885
|
+
.tbs .icon-folder-open {
|
|
1886
|
+
width: 16px;
|
|
1887
|
+
background-position: -408px -120px; }
|
|
1888
|
+
.tbs .icon-resize-vertical {
|
|
1889
|
+
background-position: -432px -119px; }
|
|
1890
|
+
.tbs .icon-resize-horizontal {
|
|
1891
|
+
background-position: -456px -118px; }
|
|
1892
|
+
.tbs .icon-hdd {
|
|
1893
|
+
background-position: 0 -144px; }
|
|
1894
|
+
.tbs .icon-bullhorn {
|
|
1895
|
+
background-position: -24px -144px; }
|
|
1896
|
+
.tbs .icon-bell {
|
|
1897
|
+
background-position: -48px -144px; }
|
|
1898
|
+
.tbs .icon-certificate {
|
|
1899
|
+
background-position: -72px -144px; }
|
|
1900
|
+
.tbs .icon-thumbs-up {
|
|
1901
|
+
background-position: -96px -144px; }
|
|
1902
|
+
.tbs .icon-thumbs-down {
|
|
1903
|
+
background-position: -120px -144px; }
|
|
1904
|
+
.tbs .icon-hand-right {
|
|
1905
|
+
background-position: -144px -144px; }
|
|
1906
|
+
.tbs .icon-hand-left {
|
|
1907
|
+
background-position: -168px -144px; }
|
|
1908
|
+
.tbs .icon-hand-up {
|
|
1909
|
+
background-position: -192px -144px; }
|
|
1910
|
+
.tbs .icon-hand-down {
|
|
1911
|
+
background-position: -216px -144px; }
|
|
1912
|
+
.tbs .icon-circle-arrow-right {
|
|
1913
|
+
background-position: -240px -144px; }
|
|
1914
|
+
.tbs .icon-circle-arrow-left {
|
|
1915
|
+
background-position: -264px -144px; }
|
|
1916
|
+
.tbs .icon-circle-arrow-up {
|
|
1917
|
+
background-position: -288px -144px; }
|
|
1918
|
+
.tbs .icon-circle-arrow-down {
|
|
1919
|
+
background-position: -312px -144px; }
|
|
1920
|
+
.tbs .icon-globe {
|
|
1921
|
+
background-position: -336px -144px; }
|
|
1922
|
+
.tbs .icon-wrench {
|
|
1923
|
+
background-position: -360px -144px; }
|
|
1924
|
+
.tbs .icon-tasks {
|
|
1925
|
+
background-position: -384px -144px; }
|
|
1926
|
+
.tbs .icon-filter {
|
|
1927
|
+
background-position: -408px -144px; }
|
|
1928
|
+
.tbs .icon-briefcase {
|
|
1929
|
+
background-position: -432px -144px; }
|
|
1930
|
+
.tbs .icon-fullscreen {
|
|
1931
|
+
background-position: -456px -144px; }
|
|
1932
|
+
.tbs .dropup,
|
|
1933
|
+
.tbs .dropdown {
|
|
1934
|
+
position: relative; }
|
|
1935
|
+
.tbs .dropdown-toggle {
|
|
1936
|
+
*margin-bottom: -3px; }
|
|
1937
|
+
.tbs .dropdown-toggle:active,
|
|
1938
|
+
.tbs .open .dropdown-toggle {
|
|
1939
|
+
outline: 0; }
|
|
1940
|
+
.tbs .caret {
|
|
1941
|
+
display: inline-block;
|
|
1942
|
+
width: 0;
|
|
1943
|
+
height: 0;
|
|
1944
|
+
vertical-align: top;
|
|
1945
|
+
border-top: 4px solid #000000;
|
|
1946
|
+
border-right: 4px solid transparent;
|
|
1947
|
+
border-left: 4px solid transparent;
|
|
1948
|
+
content: ""; }
|
|
1949
|
+
.tbs .dropdown .caret {
|
|
1950
|
+
margin-top: 8px;
|
|
1951
|
+
margin-left: 2px; }
|
|
1952
|
+
.tbs .dropdown-menu {
|
|
1953
|
+
position: absolute;
|
|
1954
|
+
top: 100%;
|
|
1955
|
+
left: 0;
|
|
1956
|
+
z-index: 1000;
|
|
1957
|
+
display: none;
|
|
1958
|
+
float: left;
|
|
1959
|
+
min-width: 160px;
|
|
1960
|
+
padding: 5px 0;
|
|
1961
|
+
margin: 2px 0 0;
|
|
1962
|
+
list-style: none;
|
|
1963
|
+
background-color: #ffffff;
|
|
1964
|
+
border: 1px solid #ccc;
|
|
1965
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
1966
|
+
*border-right-width: 2px;
|
|
1967
|
+
*border-bottom-width: 2px;
|
|
1968
|
+
-webkit-border-radius: 6px;
|
|
1969
|
+
-moz-border-radius: 6px;
|
|
1970
|
+
border-radius: 6px;
|
|
1971
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1972
|
+
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1973
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
1974
|
+
-webkit-background-clip: padding-box;
|
|
1975
|
+
-moz-background-clip: padding;
|
|
1976
|
+
background-clip: padding-box; }
|
|
1977
|
+
.tbs .dropdown-menu.pull-right {
|
|
1978
|
+
right: 0;
|
|
1979
|
+
left: auto; }
|
|
1980
|
+
.tbs .dropdown-menu .divider {
|
|
1981
|
+
*width: 100%;
|
|
1982
|
+
height: 1px;
|
|
1983
|
+
margin: 9px 1px;
|
|
1984
|
+
*margin: -5px 0 5px;
|
|
1985
|
+
overflow: hidden;
|
|
1986
|
+
background-color: #e5e5e5;
|
|
1987
|
+
border-bottom: 1px solid #ffffff; }
|
|
1988
|
+
.tbs .dropdown-menu > li > a {
|
|
1989
|
+
display: block;
|
|
1990
|
+
padding: 3px 20px;
|
|
1991
|
+
clear: both;
|
|
1992
|
+
font-weight: normal;
|
|
1993
|
+
line-height: 20px;
|
|
1994
|
+
color: #333333;
|
|
1995
|
+
white-space: nowrap; }
|
|
1996
|
+
.tbs .dropdown-menu > li > a:hover,
|
|
1997
|
+
.tbs .dropdown-menu > li > a:focus,
|
|
1998
|
+
.tbs .dropdown-submenu:hover > a,
|
|
1999
|
+
.tbs .dropdown-submenu:focus > a {
|
|
2000
|
+
color: #ffffff;
|
|
2001
|
+
text-decoration: none;
|
|
2002
|
+
background-color: #0081c2;
|
|
2003
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
|
2004
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
|
2005
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
|
2006
|
+
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
|
2007
|
+
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
|
2008
|
+
background-repeat: repeat-x;
|
|
2009
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); }
|
|
2010
|
+
.tbs .dropdown-menu > .active > a,
|
|
2011
|
+
.tbs .dropdown-menu > .active > a:hover,
|
|
2012
|
+
.tbs .dropdown-menu > .active > a:focus {
|
|
2013
|
+
color: #ffffff;
|
|
2014
|
+
text-decoration: none;
|
|
2015
|
+
background-color: #0081c2;
|
|
2016
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
|
2017
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
|
|
2018
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
|
2019
|
+
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
|
2020
|
+
background-image: linear-gradient(to bottom, #0088cc, #0077b3);
|
|
2021
|
+
background-repeat: repeat-x;
|
|
2022
|
+
outline: 0;
|
|
2023
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); }
|
|
2024
|
+
.tbs .dropdown-menu > .disabled > a,
|
|
2025
|
+
.tbs .dropdown-menu > .disabled > a:hover,
|
|
2026
|
+
.tbs .dropdown-menu > .disabled > a:focus {
|
|
2027
|
+
color: #999999; }
|
|
2028
|
+
.tbs .dropdown-menu > .disabled > a:hover,
|
|
2029
|
+
.tbs .dropdown-menu > .disabled > a:focus {
|
|
2030
|
+
text-decoration: none;
|
|
2031
|
+
cursor: default;
|
|
2032
|
+
background-color: transparent;
|
|
2033
|
+
background-image: none;
|
|
2034
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2035
|
+
.tbs .open {
|
|
2036
|
+
*z-index: 1000; }
|
|
2037
|
+
.tbs .open > .dropdown-menu {
|
|
2038
|
+
display: block; }
|
|
2039
|
+
.tbs .pull-right > .dropdown-menu {
|
|
2040
|
+
right: 0;
|
|
2041
|
+
left: auto; }
|
|
2042
|
+
.tbs .dropup .caret,
|
|
2043
|
+
.tbs .navbar-fixed-bottom .dropdown .caret {
|
|
2044
|
+
border-top: 0;
|
|
2045
|
+
border-bottom: 4px solid #000000;
|
|
2046
|
+
content: ""; }
|
|
2047
|
+
.tbs .dropup .dropdown-menu,
|
|
2048
|
+
.tbs .navbar-fixed-bottom .dropdown .dropdown-menu {
|
|
2049
|
+
top: auto;
|
|
2050
|
+
bottom: 100%;
|
|
2051
|
+
margin-bottom: 1px; }
|
|
2052
|
+
.tbs .dropdown-submenu {
|
|
2053
|
+
position: relative; }
|
|
2054
|
+
.tbs .dropdown-submenu > .dropdown-menu {
|
|
2055
|
+
top: 0;
|
|
2056
|
+
left: 100%;
|
|
2057
|
+
margin-top: -6px;
|
|
2058
|
+
margin-left: -1px;
|
|
2059
|
+
-webkit-border-radius: 0 6px 6px 6px;
|
|
2060
|
+
-moz-border-radius: 0 6px 6px 6px;
|
|
2061
|
+
border-radius: 0 6px 6px 6px; }
|
|
2062
|
+
.tbs .dropdown-submenu:hover > .dropdown-menu {
|
|
2063
|
+
display: block; }
|
|
2064
|
+
.tbs .dropup .dropdown-submenu > .dropdown-menu {
|
|
2065
|
+
top: auto;
|
|
2066
|
+
bottom: 0;
|
|
2067
|
+
margin-top: 0;
|
|
2068
|
+
margin-bottom: -2px;
|
|
2069
|
+
-webkit-border-radius: 5px 5px 5px 0;
|
|
2070
|
+
-moz-border-radius: 5px 5px 5px 0;
|
|
2071
|
+
border-radius: 5px 5px 5px 0; }
|
|
2072
|
+
.tbs .dropdown-submenu > a:after {
|
|
2073
|
+
display: block;
|
|
2074
|
+
float: right;
|
|
2075
|
+
width: 0;
|
|
2076
|
+
height: 0;
|
|
2077
|
+
margin-top: 5px;
|
|
2078
|
+
margin-right: -10px;
|
|
2079
|
+
border-color: transparent;
|
|
2080
|
+
border-left-color: #cccccc;
|
|
2081
|
+
border-style: solid;
|
|
2082
|
+
border-width: 5px 0 5px 5px;
|
|
2083
|
+
content: " "; }
|
|
2084
|
+
.tbs .dropdown-submenu:hover > a:after {
|
|
2085
|
+
border-left-color: #ffffff; }
|
|
2086
|
+
.tbs .dropdown-submenu.pull-left {
|
|
2087
|
+
float: none; }
|
|
2088
|
+
.tbs .dropdown-submenu.pull-left > .dropdown-menu {
|
|
2089
|
+
left: -100%;
|
|
2090
|
+
margin-left: 10px;
|
|
2091
|
+
-webkit-border-radius: 6px 0 6px 6px;
|
|
2092
|
+
-moz-border-radius: 6px 0 6px 6px;
|
|
2093
|
+
border-radius: 6px 0 6px 6px; }
|
|
2094
|
+
.tbs .dropdown .dropdown-menu .nav-header {
|
|
2095
|
+
padding-right: 20px;
|
|
2096
|
+
padding-left: 20px; }
|
|
2097
|
+
.tbs .typeahead {
|
|
2098
|
+
z-index: 1051;
|
|
2099
|
+
margin-top: 2px;
|
|
2100
|
+
-webkit-border-radius: 4px;
|
|
2101
|
+
-moz-border-radius: 4px;
|
|
2102
|
+
border-radius: 4px; }
|
|
2103
|
+
.tbs .well {
|
|
2104
|
+
min-height: 20px;
|
|
2105
|
+
padding: 19px;
|
|
2106
|
+
margin-bottom: 20px;
|
|
2107
|
+
background-color: #f5f5f5;
|
|
2108
|
+
border: 1px solid #e3e3e3;
|
|
2109
|
+
-webkit-border-radius: 4px;
|
|
2110
|
+
-moz-border-radius: 4px;
|
|
2111
|
+
border-radius: 4px;
|
|
2112
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
2113
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
2114
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
|
|
2115
|
+
.tbs .well blockquote {
|
|
2116
|
+
border-color: #ddd;
|
|
2117
|
+
border-color: rgba(0, 0, 0, 0.15); }
|
|
2118
|
+
.tbs .well-large {
|
|
2119
|
+
padding: 24px;
|
|
2120
|
+
-webkit-border-radius: 6px;
|
|
2121
|
+
-moz-border-radius: 6px;
|
|
2122
|
+
border-radius: 6px; }
|
|
2123
|
+
.tbs .well-small {
|
|
2124
|
+
padding: 9px;
|
|
2125
|
+
-webkit-border-radius: 3px;
|
|
2126
|
+
-moz-border-radius: 3px;
|
|
2127
|
+
border-radius: 3px; }
|
|
2128
|
+
.tbs .fade {
|
|
2129
|
+
opacity: 0;
|
|
2130
|
+
-webkit-transition: opacity 0.15s linear;
|
|
2131
|
+
-moz-transition: opacity 0.15s linear;
|
|
2132
|
+
-o-transition: opacity 0.15s linear;
|
|
2133
|
+
transition: opacity 0.15s linear; }
|
|
2134
|
+
.tbs .fade.in {
|
|
2135
|
+
opacity: 1; }
|
|
2136
|
+
.tbs .collapse {
|
|
2137
|
+
position: relative;
|
|
2138
|
+
height: 0;
|
|
2139
|
+
overflow: hidden;
|
|
2140
|
+
-webkit-transition: height 0.35s ease;
|
|
2141
|
+
-moz-transition: height 0.35s ease;
|
|
2142
|
+
-o-transition: height 0.35s ease;
|
|
2143
|
+
transition: height 0.35s ease; }
|
|
2144
|
+
.tbs .collapse.in {
|
|
2145
|
+
height: auto; }
|
|
2146
|
+
.tbs .close {
|
|
2147
|
+
float: right;
|
|
2148
|
+
font-size: 20px;
|
|
2149
|
+
font-weight: bold;
|
|
2150
|
+
line-height: 20px;
|
|
2151
|
+
color: #000000;
|
|
2152
|
+
text-shadow: 0 1px 0 #ffffff;
|
|
2153
|
+
opacity: 0.2;
|
|
2154
|
+
filter: alpha(opacity=20); }
|
|
2155
|
+
.tbs .close:hover,
|
|
2156
|
+
.tbs .close:focus {
|
|
2157
|
+
color: #000000;
|
|
2158
|
+
text-decoration: none;
|
|
2159
|
+
cursor: pointer;
|
|
2160
|
+
opacity: 0.4;
|
|
2161
|
+
filter: alpha(opacity=40); }
|
|
2162
|
+
.tbs button.close {
|
|
2163
|
+
padding: 0;
|
|
2164
|
+
cursor: pointer;
|
|
2165
|
+
background: transparent;
|
|
2166
|
+
border: 0;
|
|
2167
|
+
-webkit-appearance: none; }
|
|
2168
|
+
.tbs .btn {
|
|
2169
|
+
display: inline-block;
|
|
2170
|
+
*display: inline;
|
|
2171
|
+
padding: 4px 12px;
|
|
2172
|
+
margin-bottom: 0;
|
|
2173
|
+
*margin-left: .3em;
|
|
2174
|
+
font-size: 14px;
|
|
2175
|
+
line-height: 20px;
|
|
2176
|
+
color: #333333;
|
|
2177
|
+
text-align: center;
|
|
2178
|
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
|
2179
|
+
vertical-align: middle;
|
|
2180
|
+
cursor: pointer;
|
|
2181
|
+
background-color: #f5f5f5;
|
|
2182
|
+
*background-color: #e6e6e6;
|
|
2183
|
+
background-image: -moz-linear-gradient(top, white, #e6e6e6);
|
|
2184
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6));
|
|
2185
|
+
background-image: -webkit-linear-gradient(top, white, #e6e6e6);
|
|
2186
|
+
background-image: -o-linear-gradient(top, white, #e6e6e6);
|
|
2187
|
+
background-image: linear-gradient(to bottom, white, #e6e6e6);
|
|
2188
|
+
background-repeat: repeat-x;
|
|
2189
|
+
border: 1px solid #cccccc;
|
|
2190
|
+
*border: 0;
|
|
2191
|
+
border-color: #e6e6e6 #e6e6e6 #bfbfbf;
|
|
2192
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2193
|
+
border-bottom-color: #b3b3b3;
|
|
2194
|
+
-webkit-border-radius: 4px;
|
|
2195
|
+
-moz-border-radius: 4px;
|
|
2196
|
+
border-radius: 4px;
|
|
2197
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
|
|
2198
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
2199
|
+
*zoom: 1;
|
|
2200
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2201
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2202
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
|
|
2203
|
+
.tbs .btn:hover,
|
|
2204
|
+
.tbs .btn:focus,
|
|
2205
|
+
.tbs .btn:active,
|
|
2206
|
+
.tbs .btn.active,
|
|
2207
|
+
.tbs .btn.disabled,
|
|
2208
|
+
.tbs .btn[disabled] {
|
|
2209
|
+
color: #333333;
|
|
2210
|
+
background-color: #e6e6e6;
|
|
2211
|
+
*background-color: #d9d9d9; }
|
|
2212
|
+
.tbs .btn:active,
|
|
2213
|
+
.tbs .btn.active {
|
|
2214
|
+
background-color: #cccccc \9; }
|
|
2215
|
+
.tbs .btn:first-child {
|
|
2216
|
+
*margin-left: 0; }
|
|
2217
|
+
.tbs .btn:hover,
|
|
2218
|
+
.tbs .btn:focus {
|
|
2219
|
+
color: #333333;
|
|
2220
|
+
text-decoration: none;
|
|
2221
|
+
background-position: 0 -15px;
|
|
2222
|
+
-webkit-transition: background-position 0.1s linear;
|
|
2223
|
+
-moz-transition: background-position 0.1s linear;
|
|
2224
|
+
-o-transition: background-position 0.1s linear;
|
|
2225
|
+
transition: background-position 0.1s linear; }
|
|
2226
|
+
.tbs .btn:focus {
|
|
2227
|
+
outline: thin dotted #333;
|
|
2228
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
2229
|
+
outline-offset: -2px; }
|
|
2230
|
+
.tbs .btn.active,
|
|
2231
|
+
.tbs .btn:active {
|
|
2232
|
+
background-image: none;
|
|
2233
|
+
outline: 0;
|
|
2234
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2235
|
+
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2236
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
|
|
2237
|
+
.tbs .btn.disabled,
|
|
2238
|
+
.tbs .btn[disabled] {
|
|
2239
|
+
cursor: default;
|
|
2240
|
+
background-image: none;
|
|
2241
|
+
opacity: 0.65;
|
|
2242
|
+
filter: alpha(opacity=65);
|
|
2243
|
+
-webkit-box-shadow: none;
|
|
2244
|
+
-moz-box-shadow: none;
|
|
2245
|
+
box-shadow: none; }
|
|
2246
|
+
.tbs .btn-large {
|
|
2247
|
+
padding: 11px 19px;
|
|
2248
|
+
font-size: 17.5px;
|
|
2249
|
+
-webkit-border-radius: 6px;
|
|
2250
|
+
-moz-border-radius: 6px;
|
|
2251
|
+
border-radius: 6px; }
|
|
2252
|
+
.tbs .btn-large [class^="icon-"],
|
|
2253
|
+
.tbs .btn-large [class*=" icon-"] {
|
|
2254
|
+
margin-top: 4px; }
|
|
2255
|
+
.tbs .btn-small {
|
|
2256
|
+
padding: 2px 10px;
|
|
2257
|
+
font-size: 11.9px;
|
|
2258
|
+
-webkit-border-radius: 3px;
|
|
2259
|
+
-moz-border-radius: 3px;
|
|
2260
|
+
border-radius: 3px; }
|
|
2261
|
+
.tbs .btn-small [class^="icon-"],
|
|
2262
|
+
.tbs .btn-small [class*=" icon-"] {
|
|
2263
|
+
margin-top: 0; }
|
|
2264
|
+
.tbs .btn-mini [class^="icon-"],
|
|
2265
|
+
.tbs .btn-mini [class*=" icon-"] {
|
|
2266
|
+
margin-top: -1px; }
|
|
2267
|
+
.tbs .btn-mini {
|
|
2268
|
+
padding: 0 6px;
|
|
2269
|
+
font-size: 10.5px;
|
|
2270
|
+
-webkit-border-radius: 3px;
|
|
2271
|
+
-moz-border-radius: 3px;
|
|
2272
|
+
border-radius: 3px; }
|
|
2273
|
+
.tbs .btn-block {
|
|
2274
|
+
display: block;
|
|
2275
|
+
width: 100%;
|
|
2276
|
+
padding-right: 0;
|
|
2277
|
+
padding-left: 0;
|
|
2278
|
+
-webkit-box-sizing: border-box;
|
|
2279
|
+
-moz-box-sizing: border-box;
|
|
2280
|
+
box-sizing: border-box; }
|
|
2281
|
+
.tbs .btn-block + .btn-block {
|
|
2282
|
+
margin-top: 5px; }
|
|
2283
|
+
.tbs input[type="submit"].btn-block,
|
|
2284
|
+
.tbs input[type="reset"].btn-block,
|
|
2285
|
+
.tbs input[type="button"].btn-block {
|
|
2286
|
+
width: 100%; }
|
|
2287
|
+
.tbs .btn-primary.active,
|
|
2288
|
+
.tbs .btn-warning.active,
|
|
2289
|
+
.tbs .btn-danger.active,
|
|
2290
|
+
.tbs .btn-success.active,
|
|
2291
|
+
.tbs .btn-info.active,
|
|
2292
|
+
.tbs .btn-inverse.active {
|
|
2293
|
+
color: rgba(255, 255, 255, 0.75); }
|
|
2294
|
+
.tbs .btn-primary {
|
|
2295
|
+
color: #ffffff;
|
|
2296
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
2297
|
+
background-color: #006dcc;
|
|
2298
|
+
*background-color: #0044cc;
|
|
2299
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
|
2300
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
|
2301
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
|
2302
|
+
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
|
2303
|
+
background-image: linear-gradient(to bottom, #0088cc, #0044cc);
|
|
2304
|
+
background-repeat: repeat-x;
|
|
2305
|
+
border-color: #0044cc #0044cc #002a80;
|
|
2306
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2307
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
|
|
2308
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2309
|
+
.tbs .btn-primary:hover,
|
|
2310
|
+
.tbs .btn-primary:focus,
|
|
2311
|
+
.tbs .btn-primary:active,
|
|
2312
|
+
.tbs .btn-primary.active,
|
|
2313
|
+
.tbs .btn-primary.disabled,
|
|
2314
|
+
.tbs .btn-primary[disabled] {
|
|
2315
|
+
color: #ffffff;
|
|
2316
|
+
background-color: #0044cc;
|
|
2317
|
+
*background-color: #003bb3; }
|
|
2318
|
+
.tbs .btn-primary:active,
|
|
2319
|
+
.tbs .btn-primary.active {
|
|
2320
|
+
background-color: #003399 \9; }
|
|
2321
|
+
.tbs .btn-warning {
|
|
2322
|
+
color: #ffffff;
|
|
2323
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
2324
|
+
background-color: #faa732;
|
|
2325
|
+
*background-color: #f89406;
|
|
2326
|
+
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
|
|
2327
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
|
|
2328
|
+
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
|
|
2329
|
+
background-image: -o-linear-gradient(top, #fbb450, #f89406);
|
|
2330
|
+
background-image: linear-gradient(to bottom, #fbb450, #f89406);
|
|
2331
|
+
background-repeat: repeat-x;
|
|
2332
|
+
border-color: #f89406 #f89406 #ad6704;
|
|
2333
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2334
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
|
|
2335
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2336
|
+
.tbs .btn-warning:hover,
|
|
2337
|
+
.tbs .btn-warning:focus,
|
|
2338
|
+
.tbs .btn-warning:active,
|
|
2339
|
+
.tbs .btn-warning.active,
|
|
2340
|
+
.tbs .btn-warning.disabled,
|
|
2341
|
+
.tbs .btn-warning[disabled] {
|
|
2342
|
+
color: #ffffff;
|
|
2343
|
+
background-color: #f89406;
|
|
2344
|
+
*background-color: #df8505; }
|
|
2345
|
+
.tbs .btn-warning:active,
|
|
2346
|
+
.tbs .btn-warning.active {
|
|
2347
|
+
background-color: #c67605 \9; }
|
|
2348
|
+
.tbs .btn-danger {
|
|
2349
|
+
color: #ffffff;
|
|
2350
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
2351
|
+
background-color: #da4f49;
|
|
2352
|
+
*background-color: #bd362f;
|
|
2353
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
|
|
2354
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
|
|
2355
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
|
|
2356
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
|
|
2357
|
+
background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
|
|
2358
|
+
background-repeat: repeat-x;
|
|
2359
|
+
border-color: #bd362f #bd362f #802420;
|
|
2360
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2361
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
|
|
2362
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2363
|
+
.tbs .btn-danger:hover,
|
|
2364
|
+
.tbs .btn-danger:focus,
|
|
2365
|
+
.tbs .btn-danger:active,
|
|
2366
|
+
.tbs .btn-danger.active,
|
|
2367
|
+
.tbs .btn-danger.disabled,
|
|
2368
|
+
.tbs .btn-danger[disabled] {
|
|
2369
|
+
color: #ffffff;
|
|
2370
|
+
background-color: #bd362f;
|
|
2371
|
+
*background-color: #a9302a; }
|
|
2372
|
+
.tbs .btn-danger:active,
|
|
2373
|
+
.tbs .btn-danger.active {
|
|
2374
|
+
background-color: #942a25 \9; }
|
|
2375
|
+
.tbs .btn-success {
|
|
2376
|
+
color: #ffffff;
|
|
2377
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
2378
|
+
background-color: #5bb75b;
|
|
2379
|
+
*background-color: #51a351;
|
|
2380
|
+
background-image: -moz-linear-gradient(top, #62c462, #51a351);
|
|
2381
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
|
|
2382
|
+
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
|
|
2383
|
+
background-image: -o-linear-gradient(top, #62c462, #51a351);
|
|
2384
|
+
background-image: linear-gradient(to bottom, #62c462, #51a351);
|
|
2385
|
+
background-repeat: repeat-x;
|
|
2386
|
+
border-color: #51a351 #51a351 #387038;
|
|
2387
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2388
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
|
|
2389
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2390
|
+
.tbs .btn-success:hover,
|
|
2391
|
+
.tbs .btn-success:focus,
|
|
2392
|
+
.tbs .btn-success:active,
|
|
2393
|
+
.tbs .btn-success.active,
|
|
2394
|
+
.tbs .btn-success.disabled,
|
|
2395
|
+
.tbs .btn-success[disabled] {
|
|
2396
|
+
color: #ffffff;
|
|
2397
|
+
background-color: #51a351;
|
|
2398
|
+
*background-color: #499249; }
|
|
2399
|
+
.tbs .btn-success:active,
|
|
2400
|
+
.tbs .btn-success.active {
|
|
2401
|
+
background-color: #408140 \9; }
|
|
2402
|
+
.tbs .btn-info {
|
|
2403
|
+
color: #ffffff;
|
|
2404
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
2405
|
+
background-color: #49afcd;
|
|
2406
|
+
*background-color: #2f96b4;
|
|
2407
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
|
|
2408
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
|
|
2409
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
|
|
2410
|
+
background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
|
|
2411
|
+
background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
|
|
2412
|
+
background-repeat: repeat-x;
|
|
2413
|
+
border-color: #2f96b4 #2f96b4 #1f6377;
|
|
2414
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2415
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
|
|
2416
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2417
|
+
.tbs .btn-info:hover,
|
|
2418
|
+
.tbs .btn-info:focus,
|
|
2419
|
+
.tbs .btn-info:active,
|
|
2420
|
+
.tbs .btn-info.active,
|
|
2421
|
+
.tbs .btn-info.disabled,
|
|
2422
|
+
.tbs .btn-info[disabled] {
|
|
2423
|
+
color: #ffffff;
|
|
2424
|
+
background-color: #2f96b4;
|
|
2425
|
+
*background-color: #2a85a0; }
|
|
2426
|
+
.tbs .btn-info:active,
|
|
2427
|
+
.tbs .btn-info.active {
|
|
2428
|
+
background-color: #24748c \9; }
|
|
2429
|
+
.tbs .btn-inverse {
|
|
2430
|
+
color: #ffffff;
|
|
2431
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
2432
|
+
background-color: #363636;
|
|
2433
|
+
*background-color: #222222;
|
|
2434
|
+
background-image: -moz-linear-gradient(top, #444444, #222222);
|
|
2435
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
|
|
2436
|
+
background-image: -webkit-linear-gradient(top, #444444, #222222);
|
|
2437
|
+
background-image: -o-linear-gradient(top, #444444, #222222);
|
|
2438
|
+
background-image: linear-gradient(to bottom, #444444, #222222);
|
|
2439
|
+
background-repeat: repeat-x;
|
|
2440
|
+
border-color: #222222 #222222 #000000;
|
|
2441
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
2442
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
|
|
2443
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
2444
|
+
.tbs .btn-inverse:hover,
|
|
2445
|
+
.tbs .btn-inverse:focus,
|
|
2446
|
+
.tbs .btn-inverse:active,
|
|
2447
|
+
.tbs .btn-inverse.active,
|
|
2448
|
+
.tbs .btn-inverse.disabled,
|
|
2449
|
+
.tbs .btn-inverse[disabled] {
|
|
2450
|
+
color: #ffffff;
|
|
2451
|
+
background-color: #222222;
|
|
2452
|
+
*background-color: #151515; }
|
|
2453
|
+
.tbs .btn-inverse:active,
|
|
2454
|
+
.tbs .btn-inverse.active {
|
|
2455
|
+
background-color: #080808 \9; }
|
|
2456
|
+
.tbs button.btn,
|
|
2457
|
+
.tbs input[type="submit"].btn {
|
|
2458
|
+
*padding-top: 3px;
|
|
2459
|
+
*padding-bottom: 3px; }
|
|
2460
|
+
.tbs button.btn::-moz-focus-inner,
|
|
2461
|
+
.tbs input[type="submit"].btn::-moz-focus-inner {
|
|
2462
|
+
padding: 0;
|
|
2463
|
+
border: 0; }
|
|
2464
|
+
.tbs button.btn.btn-large,
|
|
2465
|
+
.tbs input[type="submit"].btn.btn-large {
|
|
2466
|
+
*padding-top: 7px;
|
|
2467
|
+
*padding-bottom: 7px; }
|
|
2468
|
+
.tbs button.btn.btn-small,
|
|
2469
|
+
.tbs input[type="submit"].btn.btn-small {
|
|
2470
|
+
*padding-top: 3px;
|
|
2471
|
+
*padding-bottom: 3px; }
|
|
2472
|
+
.tbs button.btn.btn-mini,
|
|
2473
|
+
.tbs input[type="submit"].btn.btn-mini {
|
|
2474
|
+
*padding-top: 1px;
|
|
2475
|
+
*padding-bottom: 1px; }
|
|
2476
|
+
.tbs .btn-link,
|
|
2477
|
+
.tbs .btn-link:active,
|
|
2478
|
+
.tbs .btn-link[disabled] {
|
|
2479
|
+
background-color: transparent;
|
|
2480
|
+
background-image: none;
|
|
2481
|
+
-webkit-box-shadow: none;
|
|
2482
|
+
-moz-box-shadow: none;
|
|
2483
|
+
box-shadow: none; }
|
|
2484
|
+
.tbs .btn-link {
|
|
2485
|
+
color: #0088cc;
|
|
2486
|
+
cursor: pointer;
|
|
2487
|
+
border-color: transparent;
|
|
2488
|
+
-webkit-border-radius: 0;
|
|
2489
|
+
-moz-border-radius: 0;
|
|
2490
|
+
border-radius: 0; }
|
|
2491
|
+
.tbs .btn-link:hover,
|
|
2492
|
+
.tbs .btn-link:focus {
|
|
2493
|
+
color: #005580;
|
|
2494
|
+
text-decoration: underline;
|
|
2495
|
+
background-color: transparent; }
|
|
2496
|
+
.tbs .btn-link[disabled]:hover,
|
|
2497
|
+
.tbs .btn-link[disabled]:focus {
|
|
2498
|
+
color: #333333;
|
|
2499
|
+
text-decoration: none; }
|
|
2500
|
+
.tbs .btn-group {
|
|
2501
|
+
position: relative;
|
|
2502
|
+
display: inline-block;
|
|
2503
|
+
*display: inline;
|
|
2504
|
+
*margin-left: .3em;
|
|
2505
|
+
font-size: 0;
|
|
2506
|
+
white-space: nowrap;
|
|
2507
|
+
vertical-align: middle;
|
|
2508
|
+
*zoom: 1; }
|
|
2509
|
+
.tbs .btn-group:first-child {
|
|
2510
|
+
*margin-left: 0; }
|
|
2511
|
+
.tbs .btn-group + .btn-group {
|
|
2512
|
+
margin-left: 5px; }
|
|
2513
|
+
.tbs .btn-toolbar {
|
|
2514
|
+
margin-top: 10px;
|
|
2515
|
+
margin-bottom: 10px;
|
|
2516
|
+
font-size: 0; }
|
|
2517
|
+
.tbs .btn-toolbar > .btn + .btn,
|
|
2518
|
+
.tbs .btn-toolbar > .btn-group + .btn,
|
|
2519
|
+
.tbs .btn-toolbar > .btn + .btn-group {
|
|
2520
|
+
margin-left: 5px; }
|
|
2521
|
+
.tbs .btn-group > .btn {
|
|
2522
|
+
position: relative;
|
|
2523
|
+
-webkit-border-radius: 0;
|
|
2524
|
+
-moz-border-radius: 0;
|
|
2525
|
+
border-radius: 0; }
|
|
2526
|
+
.tbs .btn-group > .btn + .btn {
|
|
2527
|
+
margin-left: -1px; }
|
|
2528
|
+
.tbs .btn-group > .btn,
|
|
2529
|
+
.tbs .btn-group > .dropdown-menu,
|
|
2530
|
+
.tbs .btn-group > .popover {
|
|
2531
|
+
font-size: 14px; }
|
|
2532
|
+
.tbs .btn-group > .btn-mini {
|
|
2533
|
+
font-size: 10.5px; }
|
|
2534
|
+
.tbs .btn-group > .btn-small {
|
|
2535
|
+
font-size: 11.9px; }
|
|
2536
|
+
.tbs .btn-group > .btn-large {
|
|
2537
|
+
font-size: 17.5px; }
|
|
2538
|
+
.tbs .btn-group > .btn:first-child {
|
|
2539
|
+
margin-left: 0;
|
|
2540
|
+
-webkit-border-bottom-left-radius: 4px;
|
|
2541
|
+
border-bottom-left-radius: 4px;
|
|
2542
|
+
-webkit-border-top-left-radius: 4px;
|
|
2543
|
+
border-top-left-radius: 4px;
|
|
2544
|
+
-moz-border-radius-bottomleft: 4px;
|
|
2545
|
+
-moz-border-radius-topleft: 4px; }
|
|
2546
|
+
.tbs .btn-group > .btn:last-child,
|
|
2547
|
+
.tbs .btn-group > .dropdown-toggle {
|
|
2548
|
+
-webkit-border-top-right-radius: 4px;
|
|
2549
|
+
border-top-right-radius: 4px;
|
|
2550
|
+
-webkit-border-bottom-right-radius: 4px;
|
|
2551
|
+
border-bottom-right-radius: 4px;
|
|
2552
|
+
-moz-border-radius-topright: 4px;
|
|
2553
|
+
-moz-border-radius-bottomright: 4px; }
|
|
2554
|
+
.tbs .btn-group > .btn.large:first-child {
|
|
2555
|
+
margin-left: 0;
|
|
2556
|
+
-webkit-border-bottom-left-radius: 6px;
|
|
2557
|
+
border-bottom-left-radius: 6px;
|
|
2558
|
+
-webkit-border-top-left-radius: 6px;
|
|
2559
|
+
border-top-left-radius: 6px;
|
|
2560
|
+
-moz-border-radius-bottomleft: 6px;
|
|
2561
|
+
-moz-border-radius-topleft: 6px; }
|
|
2562
|
+
.tbs .btn-group > .btn.large:last-child,
|
|
2563
|
+
.tbs .btn-group > .large.dropdown-toggle {
|
|
2564
|
+
-webkit-border-top-right-radius: 6px;
|
|
2565
|
+
border-top-right-radius: 6px;
|
|
2566
|
+
-webkit-border-bottom-right-radius: 6px;
|
|
2567
|
+
border-bottom-right-radius: 6px;
|
|
2568
|
+
-moz-border-radius-topright: 6px;
|
|
2569
|
+
-moz-border-radius-bottomright: 6px; }
|
|
2570
|
+
.tbs .btn-group > .btn:hover,
|
|
2571
|
+
.tbs .btn-group > .btn:focus,
|
|
2572
|
+
.tbs .btn-group > .btn:active,
|
|
2573
|
+
.tbs .btn-group > .btn.active {
|
|
2574
|
+
z-index: 2; }
|
|
2575
|
+
.tbs .btn-group .dropdown-toggle:active,
|
|
2576
|
+
.tbs .btn-group.open .dropdown-toggle {
|
|
2577
|
+
outline: 0; }
|
|
2578
|
+
.tbs .btn-group > .btn + .dropdown-toggle {
|
|
2579
|
+
*padding-top: 5px;
|
|
2580
|
+
padding-right: 8px;
|
|
2581
|
+
*padding-bottom: 5px;
|
|
2582
|
+
padding-left: 8px;
|
|
2583
|
+
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2584
|
+
-moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2585
|
+
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); }
|
|
2586
|
+
.tbs .btn-group > .btn-mini + .dropdown-toggle {
|
|
2587
|
+
*padding-top: 2px;
|
|
2588
|
+
padding-right: 5px;
|
|
2589
|
+
*padding-bottom: 2px;
|
|
2590
|
+
padding-left: 5px; }
|
|
2591
|
+
.tbs .btn-group > .btn-small + .dropdown-toggle {
|
|
2592
|
+
*padding-top: 5px;
|
|
2593
|
+
*padding-bottom: 4px; }
|
|
2594
|
+
.tbs .btn-group > .btn-large + .dropdown-toggle {
|
|
2595
|
+
*padding-top: 7px;
|
|
2596
|
+
padding-right: 12px;
|
|
2597
|
+
*padding-bottom: 7px;
|
|
2598
|
+
padding-left: 12px; }
|
|
2599
|
+
.tbs .btn-group.open .dropdown-toggle {
|
|
2600
|
+
background-image: none;
|
|
2601
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2602
|
+
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
2603
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
|
|
2604
|
+
.tbs .btn-group.open .btn.dropdown-toggle {
|
|
2605
|
+
background-color: #e6e6e6; }
|
|
2606
|
+
.tbs .btn-group.open .btn-primary.dropdown-toggle {
|
|
2607
|
+
background-color: #0044cc; }
|
|
2608
|
+
.tbs .btn-group.open .btn-warning.dropdown-toggle {
|
|
2609
|
+
background-color: #f89406; }
|
|
2610
|
+
.tbs .btn-group.open .btn-danger.dropdown-toggle {
|
|
2611
|
+
background-color: #bd362f; }
|
|
2612
|
+
.tbs .btn-group.open .btn-success.dropdown-toggle {
|
|
2613
|
+
background-color: #51a351; }
|
|
2614
|
+
.tbs .btn-group.open .btn-info.dropdown-toggle {
|
|
2615
|
+
background-color: #2f96b4; }
|
|
2616
|
+
.tbs .btn-group.open .btn-inverse.dropdown-toggle {
|
|
2617
|
+
background-color: #222222; }
|
|
2618
|
+
.tbs .btn .caret {
|
|
2619
|
+
margin-top: 8px;
|
|
2620
|
+
margin-left: 0; }
|
|
2621
|
+
.tbs .btn-large .caret {
|
|
2622
|
+
margin-top: 6px; }
|
|
2623
|
+
.tbs .btn-large .caret {
|
|
2624
|
+
border-top-width: 5px;
|
|
2625
|
+
border-right-width: 5px;
|
|
2626
|
+
border-left-width: 5px; }
|
|
2627
|
+
.tbs .btn-mini .caret,
|
|
2628
|
+
.tbs .btn-small .caret {
|
|
2629
|
+
margin-top: 8px; }
|
|
2630
|
+
.tbs .dropup .btn-large .caret {
|
|
2631
|
+
border-bottom-width: 5px; }
|
|
2632
|
+
.tbs .btn-primary .caret,
|
|
2633
|
+
.tbs .btn-warning .caret,
|
|
2634
|
+
.tbs .btn-danger .caret,
|
|
2635
|
+
.tbs .btn-info .caret,
|
|
2636
|
+
.tbs .btn-success .caret,
|
|
2637
|
+
.tbs .btn-inverse .caret {
|
|
2638
|
+
border-top-color: #ffffff;
|
|
2639
|
+
border-bottom-color: #ffffff; }
|
|
2640
|
+
.tbs .btn-group-vertical {
|
|
2641
|
+
display: inline-block;
|
|
2642
|
+
*display: inline;
|
|
2643
|
+
/* IE7 inline-block hack */
|
|
2644
|
+
*zoom: 1; }
|
|
2645
|
+
.tbs .btn-group-vertical > .btn {
|
|
2646
|
+
display: block;
|
|
2647
|
+
float: none;
|
|
2648
|
+
max-width: 100%;
|
|
2649
|
+
-webkit-border-radius: 0;
|
|
2650
|
+
-moz-border-radius: 0;
|
|
2651
|
+
border-radius: 0; }
|
|
2652
|
+
.tbs .btn-group-vertical > .btn + .btn {
|
|
2653
|
+
margin-top: -1px;
|
|
2654
|
+
margin-left: 0; }
|
|
2655
|
+
.tbs .btn-group-vertical > .btn:first-child {
|
|
2656
|
+
-webkit-border-radius: 4px 4px 0 0;
|
|
2657
|
+
-moz-border-radius: 4px 4px 0 0;
|
|
2658
|
+
border-radius: 4px 4px 0 0; }
|
|
2659
|
+
.tbs .btn-group-vertical > .btn:last-child {
|
|
2660
|
+
-webkit-border-radius: 0 0 4px 4px;
|
|
2661
|
+
-moz-border-radius: 0 0 4px 4px;
|
|
2662
|
+
border-radius: 0 0 4px 4px; }
|
|
2663
|
+
.tbs .btn-group-vertical > .btn-large:first-child {
|
|
2664
|
+
-webkit-border-radius: 6px 6px 0 0;
|
|
2665
|
+
-moz-border-radius: 6px 6px 0 0;
|
|
2666
|
+
border-radius: 6px 6px 0 0; }
|
|
2667
|
+
.tbs .btn-group-vertical > .btn-large:last-child {
|
|
2668
|
+
-webkit-border-radius: 0 0 6px 6px;
|
|
2669
|
+
-moz-border-radius: 0 0 6px 6px;
|
|
2670
|
+
border-radius: 0 0 6px 6px; }
|
|
2671
|
+
.tbs .alert {
|
|
2672
|
+
padding: 8px 35px 8px 14px;
|
|
2673
|
+
margin-bottom: 20px;
|
|
2674
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
2675
|
+
background-color: #fcf8e3;
|
|
2676
|
+
border: 1px solid #fbeed5;
|
|
2677
|
+
-webkit-border-radius: 4px;
|
|
2678
|
+
-moz-border-radius: 4px;
|
|
2679
|
+
border-radius: 4px; }
|
|
2680
|
+
.tbs .alert,
|
|
2681
|
+
.tbs .alert h4 {
|
|
2682
|
+
color: #c09853; }
|
|
2683
|
+
.tbs .alert h4 {
|
|
2684
|
+
margin: 0; }
|
|
2685
|
+
.tbs .alert .close {
|
|
2686
|
+
position: relative;
|
|
2687
|
+
top: -2px;
|
|
2688
|
+
right: -21px;
|
|
2689
|
+
line-height: 20px; }
|
|
2690
|
+
.tbs .alert-success {
|
|
2691
|
+
color: #468847;
|
|
2692
|
+
background-color: #dff0d8;
|
|
2693
|
+
border-color: #d6e9c6; }
|
|
2694
|
+
.tbs .alert-success h4 {
|
|
2695
|
+
color: #468847; }
|
|
2696
|
+
.tbs .alert-danger,
|
|
2697
|
+
.tbs .alert-error {
|
|
2698
|
+
color: #b94a48;
|
|
2699
|
+
background-color: #f2dede;
|
|
2700
|
+
border-color: #eed3d7; }
|
|
2701
|
+
.tbs .alert-danger h4,
|
|
2702
|
+
.tbs .alert-error h4 {
|
|
2703
|
+
color: #b94a48; }
|
|
2704
|
+
.tbs .alert-info {
|
|
2705
|
+
color: #3a87ad;
|
|
2706
|
+
background-color: #d9edf7;
|
|
2707
|
+
border-color: #bce8f1; }
|
|
2708
|
+
.tbs .alert-info h4 {
|
|
2709
|
+
color: #3a87ad; }
|
|
2710
|
+
.tbs .alert-block {
|
|
2711
|
+
padding-top: 14px;
|
|
2712
|
+
padding-bottom: 14px; }
|
|
2713
|
+
.tbs .alert-block > p,
|
|
2714
|
+
.tbs .alert-block > ul {
|
|
2715
|
+
margin-bottom: 0; }
|
|
2716
|
+
.tbs .alert-block p + p {
|
|
2717
|
+
margin-top: 5px; }
|
|
2718
|
+
.tbs .nav {
|
|
2719
|
+
margin-bottom: 20px;
|
|
2720
|
+
margin-left: 0;
|
|
2721
|
+
list-style: none; }
|
|
2722
|
+
.tbs .nav > li > a {
|
|
2723
|
+
display: block; }
|
|
2724
|
+
.tbs .nav > li > a:hover,
|
|
2725
|
+
.tbs .nav > li > a:focus {
|
|
2726
|
+
text-decoration: none;
|
|
2727
|
+
background-color: #eeeeee; }
|
|
2728
|
+
.tbs .nav > li > a > img {
|
|
2729
|
+
max-width: none; }
|
|
2730
|
+
.tbs .nav > .pull-right {
|
|
2731
|
+
float: right; }
|
|
2732
|
+
.tbs .nav-header {
|
|
2733
|
+
display: block;
|
|
2734
|
+
padding: 3px 15px;
|
|
2735
|
+
font-size: 11px;
|
|
2736
|
+
font-weight: bold;
|
|
2737
|
+
line-height: 20px;
|
|
2738
|
+
color: #999999;
|
|
2739
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
|
2740
|
+
text-transform: uppercase; }
|
|
2741
|
+
.tbs .nav li + .nav-header {
|
|
2742
|
+
margin-top: 9px; }
|
|
2743
|
+
.tbs .nav-list {
|
|
2744
|
+
padding-right: 15px;
|
|
2745
|
+
padding-left: 15px;
|
|
2746
|
+
margin-bottom: 0; }
|
|
2747
|
+
.tbs .nav-list > li > a,
|
|
2748
|
+
.tbs .nav-list .nav-header {
|
|
2749
|
+
margin-right: -15px;
|
|
2750
|
+
margin-left: -15px;
|
|
2751
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
|
|
2752
|
+
.tbs .nav-list > li > a {
|
|
2753
|
+
padding: 3px 15px; }
|
|
2754
|
+
.tbs .nav-list > .active > a,
|
|
2755
|
+
.tbs .nav-list > .active > a:hover,
|
|
2756
|
+
.tbs .nav-list > .active > a:focus {
|
|
2757
|
+
color: #ffffff;
|
|
2758
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
|
2759
|
+
background-color: #0088cc; }
|
|
2760
|
+
.tbs .nav-list [class^="icon-"],
|
|
2761
|
+
.tbs .nav-list [class*=" icon-"] {
|
|
2762
|
+
margin-right: 2px; }
|
|
2763
|
+
.tbs .nav-list .divider {
|
|
2764
|
+
*width: 100%;
|
|
2765
|
+
height: 1px;
|
|
2766
|
+
margin: 9px 1px;
|
|
2767
|
+
*margin: -5px 0 5px;
|
|
2768
|
+
overflow: hidden;
|
|
2769
|
+
background-color: #e5e5e5;
|
|
2770
|
+
border-bottom: 1px solid #ffffff; }
|
|
2771
|
+
.tbs .nav-tabs,
|
|
2772
|
+
.tbs .nav-pills {
|
|
2773
|
+
*zoom: 1; }
|
|
2774
|
+
.tbs .nav-tabs:before,
|
|
2775
|
+
.tbs .nav-pills:before,
|
|
2776
|
+
.tbs .nav-tabs:after,
|
|
2777
|
+
.tbs .nav-pills:after {
|
|
2778
|
+
display: table;
|
|
2779
|
+
line-height: 0;
|
|
2780
|
+
content: ""; }
|
|
2781
|
+
.tbs .nav-tabs:after,
|
|
2782
|
+
.tbs .nav-pills:after {
|
|
2783
|
+
clear: both; }
|
|
2784
|
+
.tbs .nav-tabs > li,
|
|
2785
|
+
.tbs .nav-pills > li {
|
|
2786
|
+
float: left; }
|
|
2787
|
+
.tbs .nav-tabs > li > a,
|
|
2788
|
+
.tbs .nav-pills > li > a {
|
|
2789
|
+
padding-right: 12px;
|
|
2790
|
+
padding-left: 12px;
|
|
2791
|
+
margin-right: 2px;
|
|
2792
|
+
line-height: 14px; }
|
|
2793
|
+
.tbs .nav-tabs {
|
|
2794
|
+
border-bottom: 1px solid #ddd; }
|
|
2795
|
+
.tbs .nav-tabs > li {
|
|
2796
|
+
margin-bottom: -1px; }
|
|
2797
|
+
.tbs .nav-tabs > li > a {
|
|
2798
|
+
padding-top: 8px;
|
|
2799
|
+
padding-bottom: 8px;
|
|
2800
|
+
line-height: 20px;
|
|
2801
|
+
border: 1px solid transparent;
|
|
2802
|
+
-webkit-border-radius: 4px 4px 0 0;
|
|
2803
|
+
-moz-border-radius: 4px 4px 0 0;
|
|
2804
|
+
border-radius: 4px 4px 0 0; }
|
|
2805
|
+
.tbs .nav-tabs > li > a:hover,
|
|
2806
|
+
.tbs .nav-tabs > li > a:focus {
|
|
2807
|
+
border-color: #eeeeee #eeeeee #dddddd; }
|
|
2808
|
+
.tbs .nav-tabs > .active > a,
|
|
2809
|
+
.tbs .nav-tabs > .active > a:hover,
|
|
2810
|
+
.tbs .nav-tabs > .active > a:focus {
|
|
2811
|
+
color: #555555;
|
|
2812
|
+
cursor: default;
|
|
2813
|
+
background-color: #ffffff;
|
|
2814
|
+
border: 1px solid #ddd;
|
|
2815
|
+
border-bottom-color: transparent; }
|
|
2816
|
+
.tbs .nav-pills > li > a {
|
|
2817
|
+
padding-top: 8px;
|
|
2818
|
+
padding-bottom: 8px;
|
|
2819
|
+
margin-top: 2px;
|
|
2820
|
+
margin-bottom: 2px;
|
|
2821
|
+
-webkit-border-radius: 5px;
|
|
2822
|
+
-moz-border-radius: 5px;
|
|
2823
|
+
border-radius: 5px; }
|
|
2824
|
+
.tbs .nav-pills > .active > a,
|
|
2825
|
+
.tbs .nav-pills > .active > a:hover,
|
|
2826
|
+
.tbs .nav-pills > .active > a:focus {
|
|
2827
|
+
color: #ffffff;
|
|
2828
|
+
background-color: #0088cc; }
|
|
2829
|
+
.tbs .nav-stacked > li {
|
|
2830
|
+
float: none; }
|
|
2831
|
+
.tbs .nav-stacked > li > a {
|
|
2832
|
+
margin-right: 0; }
|
|
2833
|
+
.tbs .nav-tabs.nav-stacked {
|
|
2834
|
+
border-bottom: 0; }
|
|
2835
|
+
.tbs .nav-tabs.nav-stacked > li > a {
|
|
2836
|
+
border: 1px solid #ddd;
|
|
2837
|
+
-webkit-border-radius: 0;
|
|
2838
|
+
-moz-border-radius: 0;
|
|
2839
|
+
border-radius: 0; }
|
|
2840
|
+
.tbs .nav-tabs.nav-stacked > li:first-child > a {
|
|
2841
|
+
-webkit-border-top-right-radius: 4px;
|
|
2842
|
+
border-top-right-radius: 4px;
|
|
2843
|
+
-webkit-border-top-left-radius: 4px;
|
|
2844
|
+
border-top-left-radius: 4px;
|
|
2845
|
+
-moz-border-radius-topright: 4px;
|
|
2846
|
+
-moz-border-radius-topleft: 4px; }
|
|
2847
|
+
.tbs .nav-tabs.nav-stacked > li:last-child > a {
|
|
2848
|
+
-webkit-border-bottom-right-radius: 4px;
|
|
2849
|
+
border-bottom-right-radius: 4px;
|
|
2850
|
+
-webkit-border-bottom-left-radius: 4px;
|
|
2851
|
+
border-bottom-left-radius: 4px;
|
|
2852
|
+
-moz-border-radius-bottomright: 4px;
|
|
2853
|
+
-moz-border-radius-bottomleft: 4px; }
|
|
2854
|
+
.tbs .nav-tabs.nav-stacked > li > a:hover,
|
|
2855
|
+
.tbs .nav-tabs.nav-stacked > li > a:focus {
|
|
2856
|
+
z-index: 2;
|
|
2857
|
+
border-color: #ddd; }
|
|
2858
|
+
.tbs .nav-pills.nav-stacked > li > a {
|
|
2859
|
+
margin-bottom: 3px; }
|
|
2860
|
+
.tbs .nav-pills.nav-stacked > li:last-child > a {
|
|
2861
|
+
margin-bottom: 1px; }
|
|
2862
|
+
.tbs .nav-tabs .dropdown-menu {
|
|
2863
|
+
-webkit-border-radius: 0 0 6px 6px;
|
|
2864
|
+
-moz-border-radius: 0 0 6px 6px;
|
|
2865
|
+
border-radius: 0 0 6px 6px; }
|
|
2866
|
+
.tbs .nav-pills .dropdown-menu {
|
|
2867
|
+
-webkit-border-radius: 6px;
|
|
2868
|
+
-moz-border-radius: 6px;
|
|
2869
|
+
border-radius: 6px; }
|
|
2870
|
+
.tbs .nav .dropdown-toggle .caret {
|
|
2871
|
+
margin-top: 6px;
|
|
2872
|
+
border-top-color: #0088cc;
|
|
2873
|
+
border-bottom-color: #0088cc; }
|
|
2874
|
+
.tbs .nav .dropdown-toggle:hover .caret,
|
|
2875
|
+
.tbs .nav .dropdown-toggle:focus .caret {
|
|
2876
|
+
border-top-color: #005580;
|
|
2877
|
+
border-bottom-color: #005580; }
|
|
2878
|
+
.tbs .nav-tabs .dropdown-toggle .caret {
|
|
2879
|
+
margin-top: 8px; }
|
|
2880
|
+
.tbs .nav .active .dropdown-toggle .caret {
|
|
2881
|
+
border-top-color: #fff;
|
|
2882
|
+
border-bottom-color: #fff; }
|
|
2883
|
+
.tbs .nav-tabs .active .dropdown-toggle .caret {
|
|
2884
|
+
border-top-color: #555555;
|
|
2885
|
+
border-bottom-color: #555555; }
|
|
2886
|
+
.tbs .nav > .dropdown.active > a:hover,
|
|
2887
|
+
.tbs .nav > .dropdown.active > a:focus {
|
|
2888
|
+
cursor: pointer; }
|
|
2889
|
+
.tbs .nav-tabs .open .dropdown-toggle,
|
|
2890
|
+
.tbs .nav-pills .open .dropdown-toggle,
|
|
2891
|
+
.tbs .nav > li.dropdown.open.active > a:hover,
|
|
2892
|
+
.tbs .nav > li.dropdown.open.active > a:focus {
|
|
2893
|
+
color: #ffffff;
|
|
2894
|
+
background-color: #999999;
|
|
2895
|
+
border-color: #999999; }
|
|
2896
|
+
.tbs .nav li.dropdown.open .caret,
|
|
2897
|
+
.tbs .nav li.dropdown.open.active .caret,
|
|
2898
|
+
.tbs .nav li.dropdown.open a:hover .caret,
|
|
2899
|
+
.tbs .nav li.dropdown.open a:focus .caret {
|
|
2900
|
+
border-top-color: #ffffff;
|
|
2901
|
+
border-bottom-color: #ffffff;
|
|
2902
|
+
opacity: 1;
|
|
2903
|
+
filter: alpha(opacity=100); }
|
|
2904
|
+
.tbs .tabs-stacked .open > a:hover,
|
|
2905
|
+
.tbs .tabs-stacked .open > a:focus {
|
|
2906
|
+
border-color: #999999; }
|
|
2907
|
+
.tbs .tabbable {
|
|
2908
|
+
*zoom: 1; }
|
|
2909
|
+
.tbs .tabbable:before,
|
|
2910
|
+
.tbs .tabbable:after {
|
|
2911
|
+
display: table;
|
|
2912
|
+
line-height: 0;
|
|
2913
|
+
content: ""; }
|
|
2914
|
+
.tbs .tabbable:after {
|
|
2915
|
+
clear: both; }
|
|
2916
|
+
.tbs .tab-content {
|
|
2917
|
+
overflow: auto; }
|
|
2918
|
+
.tbs .tabs-below > .nav-tabs,
|
|
2919
|
+
.tbs .tabs-right > .nav-tabs,
|
|
2920
|
+
.tbs .tabs-left > .nav-tabs {
|
|
2921
|
+
border-bottom: 0; }
|
|
2922
|
+
.tbs .tab-content > .tab-pane,
|
|
2923
|
+
.tbs .pill-content > .pill-pane {
|
|
2924
|
+
display: none; }
|
|
2925
|
+
.tbs .tab-content > .active,
|
|
2926
|
+
.tbs .pill-content > .active {
|
|
2927
|
+
display: block; }
|
|
2928
|
+
.tbs .tabs-below > .nav-tabs {
|
|
2929
|
+
border-top: 1px solid #ddd; }
|
|
2930
|
+
.tbs .tabs-below > .nav-tabs > li {
|
|
2931
|
+
margin-top: -1px;
|
|
2932
|
+
margin-bottom: 0; }
|
|
2933
|
+
.tbs .tabs-below > .nav-tabs > li > a {
|
|
2934
|
+
-webkit-border-radius: 0 0 4px 4px;
|
|
2935
|
+
-moz-border-radius: 0 0 4px 4px;
|
|
2936
|
+
border-radius: 0 0 4px 4px; }
|
|
2937
|
+
.tbs .tabs-below > .nav-tabs > li > a:hover,
|
|
2938
|
+
.tbs .tabs-below > .nav-tabs > li > a:focus {
|
|
2939
|
+
border-top-color: #ddd;
|
|
2940
|
+
border-bottom-color: transparent; }
|
|
2941
|
+
.tbs .tabs-below > .nav-tabs > .active > a,
|
|
2942
|
+
.tbs .tabs-below > .nav-tabs > .active > a:hover,
|
|
2943
|
+
.tbs .tabs-below > .nav-tabs > .active > a:focus {
|
|
2944
|
+
border-color: transparent #ddd #ddd #ddd; }
|
|
2945
|
+
.tbs .tabs-left > .nav-tabs > li,
|
|
2946
|
+
.tbs .tabs-right > .nav-tabs > li {
|
|
2947
|
+
float: none; }
|
|
2948
|
+
.tbs .tabs-left > .nav-tabs > li > a,
|
|
2949
|
+
.tbs .tabs-right > .nav-tabs > li > a {
|
|
2950
|
+
min-width: 74px;
|
|
2951
|
+
margin-right: 0;
|
|
2952
|
+
margin-bottom: 3px; }
|
|
2953
|
+
.tbs .tabs-left > .nav-tabs {
|
|
2954
|
+
float: left;
|
|
2955
|
+
margin-right: 19px;
|
|
2956
|
+
border-right: 1px solid #ddd; }
|
|
2957
|
+
.tbs .tabs-left > .nav-tabs > li > a {
|
|
2958
|
+
margin-right: -1px;
|
|
2959
|
+
-webkit-border-radius: 4px 0 0 4px;
|
|
2960
|
+
-moz-border-radius: 4px 0 0 4px;
|
|
2961
|
+
border-radius: 4px 0 0 4px; }
|
|
2962
|
+
.tbs .tabs-left > .nav-tabs > li > a:hover,
|
|
2963
|
+
.tbs .tabs-left > .nav-tabs > li > a:focus {
|
|
2964
|
+
border-color: #eeeeee #dddddd #eeeeee #eeeeee; }
|
|
2965
|
+
.tbs .tabs-left > .nav-tabs .active > a,
|
|
2966
|
+
.tbs .tabs-left > .nav-tabs .active > a:hover,
|
|
2967
|
+
.tbs .tabs-left > .nav-tabs .active > a:focus {
|
|
2968
|
+
border-color: #ddd transparent #ddd #ddd;
|
|
2969
|
+
*border-right-color: #ffffff; }
|
|
2970
|
+
.tbs .tabs-right > .nav-tabs {
|
|
2971
|
+
float: right;
|
|
2972
|
+
margin-left: 19px;
|
|
2973
|
+
border-left: 1px solid #ddd; }
|
|
2974
|
+
.tbs .tabs-right > .nav-tabs > li > a {
|
|
2975
|
+
margin-left: -1px;
|
|
2976
|
+
-webkit-border-radius: 0 4px 4px 0;
|
|
2977
|
+
-moz-border-radius: 0 4px 4px 0;
|
|
2978
|
+
border-radius: 0 4px 4px 0; }
|
|
2979
|
+
.tbs .tabs-right > .nav-tabs > li > a:hover,
|
|
2980
|
+
.tbs .tabs-right > .nav-tabs > li > a:focus {
|
|
2981
|
+
border-color: #eeeeee #eeeeee #eeeeee #dddddd; }
|
|
2982
|
+
.tbs .tabs-right > .nav-tabs .active > a,
|
|
2983
|
+
.tbs .tabs-right > .nav-tabs .active > a:hover,
|
|
2984
|
+
.tbs .tabs-right > .nav-tabs .active > a:focus {
|
|
2985
|
+
border-color: #ddd #ddd #ddd transparent;
|
|
2986
|
+
*border-left-color: #ffffff; }
|
|
2987
|
+
.tbs .nav > .disabled > a {
|
|
2988
|
+
color: #999999; }
|
|
2989
|
+
.tbs .nav > .disabled > a:hover,
|
|
2990
|
+
.tbs .nav > .disabled > a:focus {
|
|
2991
|
+
text-decoration: none;
|
|
2992
|
+
cursor: default;
|
|
2993
|
+
background-color: transparent; }
|
|
2994
|
+
.tbs .navbar {
|
|
2995
|
+
*position: relative;
|
|
2996
|
+
*z-index: 2;
|
|
2997
|
+
margin-bottom: 20px;
|
|
2998
|
+
overflow: visible; }
|
|
2999
|
+
.tbs .navbar-inner {
|
|
3000
|
+
min-height: 40px;
|
|
3001
|
+
padding-right: 20px;
|
|
3002
|
+
padding-left: 20px;
|
|
3003
|
+
background-color: #fafafa;
|
|
3004
|
+
background-image: -moz-linear-gradient(top, white, #f2f2f2);
|
|
3005
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#f2f2f2));
|
|
3006
|
+
background-image: -webkit-linear-gradient(top, white, #f2f2f2);
|
|
3007
|
+
background-image: -o-linear-gradient(top, white, #f2f2f2);
|
|
3008
|
+
background-image: linear-gradient(to bottom, white, #f2f2f2);
|
|
3009
|
+
background-repeat: repeat-x;
|
|
3010
|
+
border: 1px solid #d4d4d4;
|
|
3011
|
+
-webkit-border-radius: 4px;
|
|
3012
|
+
-moz-border-radius: 4px;
|
|
3013
|
+
border-radius: 4px;
|
|
3014
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
|
|
3015
|
+
*zoom: 1;
|
|
3016
|
+
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
3017
|
+
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
|
3018
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065); }
|
|
3019
|
+
.tbs .navbar-inner:before,
|
|
3020
|
+
.tbs .navbar-inner:after {
|
|
3021
|
+
display: table;
|
|
3022
|
+
line-height: 0;
|
|
3023
|
+
content: ""; }
|
|
3024
|
+
.tbs .navbar-inner:after {
|
|
3025
|
+
clear: both; }
|
|
3026
|
+
.tbs .navbar .container {
|
|
3027
|
+
width: auto; }
|
|
3028
|
+
.tbs .nav-collapse.collapse {
|
|
3029
|
+
height: auto;
|
|
3030
|
+
overflow: visible; }
|
|
3031
|
+
.tbs .navbar .brand {
|
|
3032
|
+
display: block;
|
|
3033
|
+
float: left;
|
|
3034
|
+
padding: 10px 20px 10px;
|
|
3035
|
+
margin-left: -20px;
|
|
3036
|
+
font-size: 20px;
|
|
3037
|
+
font-weight: 200;
|
|
3038
|
+
color: #777777;
|
|
3039
|
+
text-shadow: 0 1px 0 #ffffff; }
|
|
3040
|
+
.tbs .navbar .brand:hover,
|
|
3041
|
+
.tbs .navbar .brand:focus {
|
|
3042
|
+
text-decoration: none; }
|
|
3043
|
+
.tbs .navbar-text {
|
|
3044
|
+
margin-bottom: 0;
|
|
3045
|
+
line-height: 40px;
|
|
3046
|
+
color: #777777; }
|
|
3047
|
+
.tbs .navbar-link {
|
|
3048
|
+
color: #777777; }
|
|
3049
|
+
.tbs .navbar-link:hover,
|
|
3050
|
+
.tbs .navbar-link:focus {
|
|
3051
|
+
color: #333333; }
|
|
3052
|
+
.tbs .navbar .divider-vertical {
|
|
3053
|
+
height: 40px;
|
|
3054
|
+
margin: 0 9px;
|
|
3055
|
+
border-right: 1px solid #ffffff;
|
|
3056
|
+
border-left: 1px solid #f2f2f2; }
|
|
3057
|
+
.tbs .navbar .btn,
|
|
3058
|
+
.tbs .navbar .btn-group {
|
|
3059
|
+
margin-top: 5px; }
|
|
3060
|
+
.tbs .navbar .btn-group .btn,
|
|
3061
|
+
.tbs .navbar .input-prepend .btn,
|
|
3062
|
+
.tbs .navbar .input-append .btn,
|
|
3063
|
+
.tbs .navbar .input-prepend .btn-group,
|
|
3064
|
+
.tbs .navbar .input-append .btn-group {
|
|
3065
|
+
margin-top: 0; }
|
|
3066
|
+
.tbs .navbar-form {
|
|
3067
|
+
margin-bottom: 0;
|
|
3068
|
+
*zoom: 1; }
|
|
3069
|
+
.tbs .navbar-form:before,
|
|
3070
|
+
.tbs .navbar-form:after {
|
|
3071
|
+
display: table;
|
|
3072
|
+
line-height: 0;
|
|
3073
|
+
content: ""; }
|
|
3074
|
+
.tbs .navbar-form:after {
|
|
3075
|
+
clear: both; }
|
|
3076
|
+
.tbs .navbar-form input,
|
|
3077
|
+
.tbs .navbar-form select,
|
|
3078
|
+
.tbs .navbar-form .radio,
|
|
3079
|
+
.tbs .navbar-form .checkbox {
|
|
3080
|
+
margin-top: 5px; }
|
|
3081
|
+
.tbs .navbar-form input,
|
|
3082
|
+
.tbs .navbar-form select,
|
|
3083
|
+
.tbs .navbar-form .btn {
|
|
3084
|
+
display: inline-block;
|
|
3085
|
+
margin-bottom: 0; }
|
|
3086
|
+
.tbs .navbar-form input[type="image"],
|
|
3087
|
+
.tbs .navbar-form input[type="checkbox"],
|
|
3088
|
+
.tbs .navbar-form input[type="radio"] {
|
|
3089
|
+
margin-top: 3px; }
|
|
3090
|
+
.tbs .navbar-form .input-append,
|
|
3091
|
+
.tbs .navbar-form .input-prepend {
|
|
3092
|
+
margin-top: 5px;
|
|
3093
|
+
white-space: nowrap; }
|
|
3094
|
+
.tbs .navbar-form .input-append input,
|
|
3095
|
+
.tbs .navbar-form .input-prepend input {
|
|
3096
|
+
margin-top: 0; }
|
|
3097
|
+
.tbs .navbar-search {
|
|
3098
|
+
position: relative;
|
|
3099
|
+
float: left;
|
|
3100
|
+
margin-top: 5px;
|
|
3101
|
+
margin-bottom: 0; }
|
|
3102
|
+
.tbs .navbar-search .search-query {
|
|
3103
|
+
padding: 4px 14px;
|
|
3104
|
+
margin-bottom: 0;
|
|
3105
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
3106
|
+
font-size: 13px;
|
|
3107
|
+
font-weight: normal;
|
|
3108
|
+
line-height: 1;
|
|
3109
|
+
-webkit-border-radius: 15px;
|
|
3110
|
+
-moz-border-radius: 15px;
|
|
3111
|
+
border-radius: 15px; }
|
|
3112
|
+
.tbs .navbar-static-top {
|
|
3113
|
+
position: static;
|
|
3114
|
+
margin-bottom: 0; }
|
|
3115
|
+
.tbs .navbar-static-top .navbar-inner {
|
|
3116
|
+
-webkit-border-radius: 0;
|
|
3117
|
+
-moz-border-radius: 0;
|
|
3118
|
+
border-radius: 0; }
|
|
3119
|
+
.tbs .navbar-fixed-top,
|
|
3120
|
+
.tbs .navbar-fixed-bottom {
|
|
3121
|
+
position: fixed;
|
|
3122
|
+
right: 0;
|
|
3123
|
+
left: 0;
|
|
3124
|
+
z-index: 1030;
|
|
3125
|
+
margin-bottom: 0; }
|
|
3126
|
+
.tbs .navbar-fixed-top .navbar-inner,
|
|
3127
|
+
.tbs .navbar-static-top .navbar-inner {
|
|
3128
|
+
border-width: 0 0 1px; }
|
|
3129
|
+
.tbs .navbar-fixed-bottom .navbar-inner {
|
|
3130
|
+
border-width: 1px 0 0; }
|
|
3131
|
+
.tbs .navbar-fixed-top .navbar-inner,
|
|
3132
|
+
.tbs .navbar-fixed-bottom .navbar-inner {
|
|
3133
|
+
padding-right: 0;
|
|
3134
|
+
padding-left: 0;
|
|
3135
|
+
-webkit-border-radius: 0;
|
|
3136
|
+
-moz-border-radius: 0;
|
|
3137
|
+
border-radius: 0; }
|
|
3138
|
+
.tbs .navbar-static-top .container,
|
|
3139
|
+
.tbs .navbar-fixed-top .container,
|
|
3140
|
+
.tbs .navbar-fixed-bottom .container {
|
|
3141
|
+
width: 940px; }
|
|
3142
|
+
.tbs .navbar-fixed-top {
|
|
3143
|
+
top: 0; }
|
|
3144
|
+
.tbs .navbar-fixed-top .navbar-inner,
|
|
3145
|
+
.tbs .navbar-static-top .navbar-inner {
|
|
3146
|
+
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
|
3147
|
+
-moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
|
|
3148
|
+
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1); }
|
|
3149
|
+
.tbs .navbar-fixed-bottom {
|
|
3150
|
+
bottom: 0; }
|
|
3151
|
+
.tbs .navbar-fixed-bottom .navbar-inner {
|
|
3152
|
+
-webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
|
|
3153
|
+
-moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
|
|
3154
|
+
box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1); }
|
|
3155
|
+
.tbs .navbar .nav {
|
|
3156
|
+
position: relative;
|
|
3157
|
+
left: 0;
|
|
3158
|
+
display: block;
|
|
3159
|
+
float: left;
|
|
3160
|
+
margin: 0 10px 0 0; }
|
|
3161
|
+
.tbs .navbar .nav.pull-right {
|
|
3162
|
+
float: right;
|
|
3163
|
+
margin-right: 0; }
|
|
3164
|
+
.tbs .navbar .nav > li {
|
|
3165
|
+
float: left; }
|
|
3166
|
+
.tbs .navbar .nav > li > a {
|
|
3167
|
+
float: none;
|
|
3168
|
+
padding: 10px 15px 10px;
|
|
3169
|
+
color: #777777;
|
|
3170
|
+
text-decoration: none;
|
|
3171
|
+
text-shadow: 0 1px 0 #ffffff; }
|
|
3172
|
+
.tbs .navbar .nav .dropdown-toggle .caret {
|
|
3173
|
+
margin-top: 8px; }
|
|
3174
|
+
.tbs .navbar .nav > li > a:focus,
|
|
3175
|
+
.tbs .navbar .nav > li > a:hover {
|
|
3176
|
+
color: #333333;
|
|
3177
|
+
text-decoration: none;
|
|
3178
|
+
background-color: transparent; }
|
|
3179
|
+
.tbs .navbar .nav > .active > a,
|
|
3180
|
+
.tbs .navbar .nav > .active > a:hover,
|
|
3181
|
+
.tbs .navbar .nav > .active > a:focus {
|
|
3182
|
+
color: #555555;
|
|
3183
|
+
text-decoration: none;
|
|
3184
|
+
background-color: #e5e5e5;
|
|
3185
|
+
-webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
|
|
3186
|
+
-moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
|
|
3187
|
+
box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); }
|
|
3188
|
+
.tbs .navbar .btn-navbar {
|
|
3189
|
+
display: none;
|
|
3190
|
+
float: right;
|
|
3191
|
+
padding: 7px 10px;
|
|
3192
|
+
margin-right: 5px;
|
|
3193
|
+
margin-left: 5px;
|
|
3194
|
+
color: #ffffff;
|
|
3195
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3196
|
+
background-color: #ededed;
|
|
3197
|
+
*background-color: #e5e5e5;
|
|
3198
|
+
background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
3199
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
|
|
3200
|
+
background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
3201
|
+
background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
|
|
3202
|
+
background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
|
|
3203
|
+
background-repeat: repeat-x;
|
|
3204
|
+
border-color: #e5e5e5 #e5e5e5 #bfbfbf;
|
|
3205
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3206
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
|
|
3207
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
|
3208
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
|
3209
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
|
|
3210
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); }
|
|
3211
|
+
.tbs .navbar .btn-navbar:hover,
|
|
3212
|
+
.tbs .navbar .btn-navbar:focus,
|
|
3213
|
+
.tbs .navbar .btn-navbar:active,
|
|
3214
|
+
.tbs .navbar .btn-navbar.active,
|
|
3215
|
+
.tbs .navbar .btn-navbar.disabled,
|
|
3216
|
+
.tbs .navbar .btn-navbar[disabled] {
|
|
3217
|
+
color: #ffffff;
|
|
3218
|
+
background-color: #e5e5e5;
|
|
3219
|
+
*background-color: #d9d9d9; }
|
|
3220
|
+
.tbs .navbar .btn-navbar:active,
|
|
3221
|
+
.tbs .navbar .btn-navbar.active {
|
|
3222
|
+
background-color: #cccccc \9; }
|
|
3223
|
+
.tbs .navbar .btn-navbar .icon-bar {
|
|
3224
|
+
display: block;
|
|
3225
|
+
width: 18px;
|
|
3226
|
+
height: 2px;
|
|
3227
|
+
background-color: #f5f5f5;
|
|
3228
|
+
-webkit-border-radius: 1px;
|
|
3229
|
+
-moz-border-radius: 1px;
|
|
3230
|
+
border-radius: 1px;
|
|
3231
|
+
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
|
3232
|
+
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
|
|
3233
|
+
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
|
|
3234
|
+
.tbs .btn-navbar .icon-bar + .icon-bar {
|
|
3235
|
+
margin-top: 3px; }
|
|
3236
|
+
.tbs .navbar .nav > li > .dropdown-menu:before {
|
|
3237
|
+
position: absolute;
|
|
3238
|
+
top: -7px;
|
|
3239
|
+
left: 9px;
|
|
3240
|
+
display: inline-block;
|
|
3241
|
+
border-right: 7px solid transparent;
|
|
3242
|
+
border-bottom: 7px solid #ccc;
|
|
3243
|
+
border-left: 7px solid transparent;
|
|
3244
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
3245
|
+
content: ''; }
|
|
3246
|
+
.tbs .navbar .nav > li > .dropdown-menu:after {
|
|
3247
|
+
position: absolute;
|
|
3248
|
+
top: -6px;
|
|
3249
|
+
left: 10px;
|
|
3250
|
+
display: inline-block;
|
|
3251
|
+
border-right: 6px solid transparent;
|
|
3252
|
+
border-bottom: 6px solid #ffffff;
|
|
3253
|
+
border-left: 6px solid transparent;
|
|
3254
|
+
content: ''; }
|
|
3255
|
+
.tbs .navbar-fixed-bottom .nav > li > .dropdown-menu:before {
|
|
3256
|
+
top: auto;
|
|
3257
|
+
bottom: -7px;
|
|
3258
|
+
border-top: 7px solid #ccc;
|
|
3259
|
+
border-bottom: 0;
|
|
3260
|
+
border-top-color: rgba(0, 0, 0, 0.2); }
|
|
3261
|
+
.tbs .navbar-fixed-bottom .nav > li > .dropdown-menu:after {
|
|
3262
|
+
top: auto;
|
|
3263
|
+
bottom: -6px;
|
|
3264
|
+
border-top: 6px solid #ffffff;
|
|
3265
|
+
border-bottom: 0; }
|
|
3266
|
+
.tbs .navbar .nav li.dropdown > a:hover .caret,
|
|
3267
|
+
.tbs .navbar .nav li.dropdown > a:focus .caret {
|
|
3268
|
+
border-top-color: #333333;
|
|
3269
|
+
border-bottom-color: #333333; }
|
|
3270
|
+
.tbs .navbar .nav li.dropdown.open > .dropdown-toggle,
|
|
3271
|
+
.tbs .navbar .nav li.dropdown.active > .dropdown-toggle,
|
|
3272
|
+
.tbs .navbar .nav li.dropdown.open.active > .dropdown-toggle {
|
|
3273
|
+
color: #555555;
|
|
3274
|
+
background-color: #e5e5e5; }
|
|
3275
|
+
.tbs .navbar .nav li.dropdown > .dropdown-toggle .caret {
|
|
3276
|
+
border-top-color: #777777;
|
|
3277
|
+
border-bottom-color: #777777; }
|
|
3278
|
+
.tbs .navbar .nav li.dropdown.open > .dropdown-toggle .caret,
|
|
3279
|
+
.tbs .navbar .nav li.dropdown.active > .dropdown-toggle .caret,
|
|
3280
|
+
.tbs .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
|
|
3281
|
+
border-top-color: #555555;
|
|
3282
|
+
border-bottom-color: #555555; }
|
|
3283
|
+
.tbs .navbar .pull-right > li > .dropdown-menu,
|
|
3284
|
+
.tbs .navbar .nav > li > .dropdown-menu.pull-right {
|
|
3285
|
+
right: 0;
|
|
3286
|
+
left: auto; }
|
|
3287
|
+
.tbs .navbar .pull-right > li > .dropdown-menu:before,
|
|
3288
|
+
.tbs .navbar .nav > li > .dropdown-menu.pull-right:before {
|
|
3289
|
+
right: 12px;
|
|
3290
|
+
left: auto; }
|
|
3291
|
+
.tbs .navbar .pull-right > li > .dropdown-menu:after,
|
|
3292
|
+
.tbs .navbar .nav > li > .dropdown-menu.pull-right:after {
|
|
3293
|
+
right: 13px;
|
|
3294
|
+
left: auto; }
|
|
3295
|
+
.tbs .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
|
|
3296
|
+
.tbs .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
|
|
3297
|
+
right: 100%;
|
|
3298
|
+
left: auto;
|
|
3299
|
+
margin-right: -1px;
|
|
3300
|
+
margin-left: 0;
|
|
3301
|
+
-webkit-border-radius: 6px 0 6px 6px;
|
|
3302
|
+
-moz-border-radius: 6px 0 6px 6px;
|
|
3303
|
+
border-radius: 6px 0 6px 6px; }
|
|
3304
|
+
.tbs .navbar-inverse .navbar-inner {
|
|
3305
|
+
background-color: #1b1b1b;
|
|
3306
|
+
background-image: -moz-linear-gradient(top, #222222, #111111);
|
|
3307
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
|
|
3308
|
+
background-image: -webkit-linear-gradient(top, #222222, #111111);
|
|
3309
|
+
background-image: -o-linear-gradient(top, #222222, #111111);
|
|
3310
|
+
background-image: linear-gradient(to bottom, #222222, #111111);
|
|
3311
|
+
background-repeat: repeat-x;
|
|
3312
|
+
border-color: #252525;
|
|
3313
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0); }
|
|
3314
|
+
.tbs .navbar-inverse .brand,
|
|
3315
|
+
.tbs .navbar-inverse .nav > li > a {
|
|
3316
|
+
color: #999999;
|
|
3317
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); }
|
|
3318
|
+
.tbs .navbar-inverse .brand:hover,
|
|
3319
|
+
.tbs .navbar-inverse .nav > li > a:hover,
|
|
3320
|
+
.tbs .navbar-inverse .brand:focus,
|
|
3321
|
+
.tbs .navbar-inverse .nav > li > a:focus {
|
|
3322
|
+
color: #ffffff; }
|
|
3323
|
+
.tbs .navbar-inverse .brand {
|
|
3324
|
+
color: #999999; }
|
|
3325
|
+
.tbs .navbar-inverse .navbar-text {
|
|
3326
|
+
color: #999999; }
|
|
3327
|
+
.tbs .navbar-inverse .nav > li > a:focus,
|
|
3328
|
+
.tbs .navbar-inverse .nav > li > a:hover {
|
|
3329
|
+
color: #ffffff;
|
|
3330
|
+
background-color: transparent; }
|
|
3331
|
+
.tbs .navbar-inverse .nav .active > a,
|
|
3332
|
+
.tbs .navbar-inverse .nav .active > a:hover,
|
|
3333
|
+
.tbs .navbar-inverse .nav .active > a:focus {
|
|
3334
|
+
color: #ffffff;
|
|
3335
|
+
background-color: #111111; }
|
|
3336
|
+
.tbs .navbar-inverse .navbar-link {
|
|
3337
|
+
color: #999999; }
|
|
3338
|
+
.tbs .navbar-inverse .navbar-link:hover,
|
|
3339
|
+
.tbs .navbar-inverse .navbar-link:focus {
|
|
3340
|
+
color: #ffffff; }
|
|
3341
|
+
.tbs .navbar-inverse .divider-vertical {
|
|
3342
|
+
border-right-color: #222222;
|
|
3343
|
+
border-left-color: #111111; }
|
|
3344
|
+
.tbs .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
|
|
3345
|
+
.tbs .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
|
|
3346
|
+
.tbs .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
|
|
3347
|
+
color: #ffffff;
|
|
3348
|
+
background-color: #111111; }
|
|
3349
|
+
.tbs .navbar-inverse .nav li.dropdown > a:hover .caret,
|
|
3350
|
+
.tbs .navbar-inverse .nav li.dropdown > a:focus .caret {
|
|
3351
|
+
border-top-color: #ffffff;
|
|
3352
|
+
border-bottom-color: #ffffff; }
|
|
3353
|
+
.tbs .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
|
|
3354
|
+
border-top-color: #999999;
|
|
3355
|
+
border-bottom-color: #999999; }
|
|
3356
|
+
.tbs .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
|
|
3357
|
+
.tbs .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
|
|
3358
|
+
.tbs .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
|
|
3359
|
+
border-top-color: #ffffff;
|
|
3360
|
+
border-bottom-color: #ffffff; }
|
|
3361
|
+
.tbs .navbar-inverse .navbar-search .search-query {
|
|
3362
|
+
color: #ffffff;
|
|
3363
|
+
background-color: #515151;
|
|
3364
|
+
border-color: #111111;
|
|
3365
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
|
|
3366
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
|
|
3367
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
|
|
3368
|
+
-webkit-transition: none;
|
|
3369
|
+
-moz-transition: none;
|
|
3370
|
+
-o-transition: none;
|
|
3371
|
+
transition: none; }
|
|
3372
|
+
.tbs .navbar-inverse .navbar-search .search-query:-moz-placeholder {
|
|
3373
|
+
color: #cccccc; }
|
|
3374
|
+
.tbs .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
|
|
3375
|
+
color: #cccccc; }
|
|
3376
|
+
.tbs .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
|
|
3377
|
+
color: #cccccc; }
|
|
3378
|
+
.tbs .navbar-inverse .navbar-search .search-query:focus,
|
|
3379
|
+
.tbs .navbar-inverse .navbar-search .search-query.focused {
|
|
3380
|
+
padding: 5px 15px;
|
|
3381
|
+
color: #333333;
|
|
3382
|
+
text-shadow: 0 1px 0 #ffffff;
|
|
3383
|
+
background-color: #ffffff;
|
|
3384
|
+
border: 0;
|
|
3385
|
+
outline: 0;
|
|
3386
|
+
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
|
3387
|
+
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
|
3388
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); }
|
|
3389
|
+
.tbs .navbar-inverse .btn-navbar {
|
|
3390
|
+
color: #ffffff;
|
|
3391
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3392
|
+
background-color: #0e0e0e;
|
|
3393
|
+
*background-color: #040404;
|
|
3394
|
+
background-image: -moz-linear-gradient(top, #151515, #040404);
|
|
3395
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
|
|
3396
|
+
background-image: -webkit-linear-gradient(top, #151515, #040404);
|
|
3397
|
+
background-image: -o-linear-gradient(top, #151515, #040404);
|
|
3398
|
+
background-image: linear-gradient(to bottom, #151515, #040404);
|
|
3399
|
+
background-repeat: repeat-x;
|
|
3400
|
+
border-color: #040404 #040404 #000000;
|
|
3401
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
|
3402
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
|
|
3403
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
|
|
3404
|
+
.tbs .navbar-inverse .btn-navbar:hover,
|
|
3405
|
+
.tbs .navbar-inverse .btn-navbar:focus,
|
|
3406
|
+
.tbs .navbar-inverse .btn-navbar:active,
|
|
3407
|
+
.tbs .navbar-inverse .btn-navbar.active,
|
|
3408
|
+
.tbs .navbar-inverse .btn-navbar.disabled,
|
|
3409
|
+
.tbs .navbar-inverse .btn-navbar[disabled] {
|
|
3410
|
+
color: #ffffff;
|
|
3411
|
+
background-color: #040404;
|
|
3412
|
+
*background-color: #000000; }
|
|
3413
|
+
.tbs .navbar-inverse .btn-navbar:active,
|
|
3414
|
+
.tbs .navbar-inverse .btn-navbar.active {
|
|
3415
|
+
background-color: #000000 \9; }
|
|
3416
|
+
.tbs .breadcrumb {
|
|
3417
|
+
padding: 8px 15px;
|
|
3418
|
+
margin: 0 0 20px;
|
|
3419
|
+
list-style: none;
|
|
3420
|
+
background-color: #f5f5f5;
|
|
3421
|
+
-webkit-border-radius: 4px;
|
|
3422
|
+
-moz-border-radius: 4px;
|
|
3423
|
+
border-radius: 4px; }
|
|
3424
|
+
.tbs .breadcrumb > li {
|
|
3425
|
+
display: inline-block;
|
|
3426
|
+
*display: inline;
|
|
3427
|
+
text-shadow: 0 1px 0 #ffffff;
|
|
3428
|
+
*zoom: 1; }
|
|
3429
|
+
.tbs .breadcrumb > li > .divider {
|
|
3430
|
+
padding: 0 5px;
|
|
3431
|
+
color: #ccc; }
|
|
3432
|
+
.tbs .breadcrumb > .active {
|
|
3433
|
+
color: #999999; }
|
|
3434
|
+
.tbs .pagination {
|
|
3435
|
+
margin: 20px 0; }
|
|
3436
|
+
.tbs .pagination ul {
|
|
3437
|
+
display: inline-block;
|
|
3438
|
+
*display: inline;
|
|
3439
|
+
margin-bottom: 0;
|
|
3440
|
+
margin-left: 0;
|
|
3441
|
+
-webkit-border-radius: 4px;
|
|
3442
|
+
-moz-border-radius: 4px;
|
|
3443
|
+
border-radius: 4px;
|
|
3444
|
+
*zoom: 1;
|
|
3445
|
+
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
3446
|
+
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
3447
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
|
|
3448
|
+
.tbs .pagination ul > li {
|
|
3449
|
+
display: inline; }
|
|
3450
|
+
.tbs .pagination ul > li > a,
|
|
3451
|
+
.tbs .pagination ul > li > span {
|
|
3452
|
+
float: left;
|
|
3453
|
+
padding: 4px 12px;
|
|
3454
|
+
line-height: 20px;
|
|
3455
|
+
text-decoration: none;
|
|
3456
|
+
background-color: #ffffff;
|
|
3457
|
+
border: 1px solid #dddddd;
|
|
3458
|
+
border-left-width: 0; }
|
|
3459
|
+
.tbs .pagination ul > li > a:hover,
|
|
3460
|
+
.tbs .pagination ul > li > a:focus,
|
|
3461
|
+
.tbs .pagination ul > .active > a,
|
|
3462
|
+
.tbs .pagination ul > .active > span {
|
|
3463
|
+
background-color: #f5f5f5; }
|
|
3464
|
+
.tbs .pagination ul > .active > a,
|
|
3465
|
+
.tbs .pagination ul > .active > span {
|
|
3466
|
+
color: #999999;
|
|
3467
|
+
cursor: default; }
|
|
3468
|
+
.tbs .pagination ul > .disabled > span,
|
|
3469
|
+
.tbs .pagination ul > .disabled > a,
|
|
3470
|
+
.tbs .pagination ul > .disabled > a:hover,
|
|
3471
|
+
.tbs .pagination ul > .disabled > a:focus {
|
|
3472
|
+
color: #999999;
|
|
3473
|
+
cursor: default;
|
|
3474
|
+
background-color: transparent; }
|
|
3475
|
+
.tbs .pagination ul > li:first-child > a,
|
|
3476
|
+
.tbs .pagination ul > li:first-child > span {
|
|
3477
|
+
border-left-width: 1px;
|
|
3478
|
+
-webkit-border-bottom-left-radius: 4px;
|
|
3479
|
+
border-bottom-left-radius: 4px;
|
|
3480
|
+
-webkit-border-top-left-radius: 4px;
|
|
3481
|
+
border-top-left-radius: 4px;
|
|
3482
|
+
-moz-border-radius-bottomleft: 4px;
|
|
3483
|
+
-moz-border-radius-topleft: 4px; }
|
|
3484
|
+
.tbs .pagination ul > li:last-child > a,
|
|
3485
|
+
.tbs .pagination ul > li:last-child > span {
|
|
3486
|
+
-webkit-border-top-right-radius: 4px;
|
|
3487
|
+
border-top-right-radius: 4px;
|
|
3488
|
+
-webkit-border-bottom-right-radius: 4px;
|
|
3489
|
+
border-bottom-right-radius: 4px;
|
|
3490
|
+
-moz-border-radius-topright: 4px;
|
|
3491
|
+
-moz-border-radius-bottomright: 4px; }
|
|
3492
|
+
.tbs .pagination-centered {
|
|
3493
|
+
text-align: center; }
|
|
3494
|
+
.tbs .pagination-right {
|
|
3495
|
+
text-align: right; }
|
|
3496
|
+
.tbs .pagination-large ul > li > a,
|
|
3497
|
+
.tbs .pagination-large ul > li > span {
|
|
3498
|
+
padding: 11px 19px;
|
|
3499
|
+
font-size: 17.5px; }
|
|
3500
|
+
.tbs .pagination-large ul > li:first-child > a,
|
|
3501
|
+
.tbs .pagination-large ul > li:first-child > span {
|
|
3502
|
+
-webkit-border-bottom-left-radius: 6px;
|
|
3503
|
+
border-bottom-left-radius: 6px;
|
|
3504
|
+
-webkit-border-top-left-radius: 6px;
|
|
3505
|
+
border-top-left-radius: 6px;
|
|
3506
|
+
-moz-border-radius-bottomleft: 6px;
|
|
3507
|
+
-moz-border-radius-topleft: 6px; }
|
|
3508
|
+
.tbs .pagination-large ul > li:last-child > a,
|
|
3509
|
+
.tbs .pagination-large ul > li:last-child > span {
|
|
3510
|
+
-webkit-border-top-right-radius: 6px;
|
|
3511
|
+
border-top-right-radius: 6px;
|
|
3512
|
+
-webkit-border-bottom-right-radius: 6px;
|
|
3513
|
+
border-bottom-right-radius: 6px;
|
|
3514
|
+
-moz-border-radius-topright: 6px;
|
|
3515
|
+
-moz-border-radius-bottomright: 6px; }
|
|
3516
|
+
.tbs .pagination-mini ul > li:first-child > a,
|
|
3517
|
+
.tbs .pagination-small ul > li:first-child > a,
|
|
3518
|
+
.tbs .pagination-mini ul > li:first-child > span,
|
|
3519
|
+
.tbs .pagination-small ul > li:first-child > span {
|
|
3520
|
+
-webkit-border-bottom-left-radius: 3px;
|
|
3521
|
+
border-bottom-left-radius: 3px;
|
|
3522
|
+
-webkit-border-top-left-radius: 3px;
|
|
3523
|
+
border-top-left-radius: 3px;
|
|
3524
|
+
-moz-border-radius-bottomleft: 3px;
|
|
3525
|
+
-moz-border-radius-topleft: 3px; }
|
|
3526
|
+
.tbs .pagination-mini ul > li:last-child > a,
|
|
3527
|
+
.tbs .pagination-small ul > li:last-child > a,
|
|
3528
|
+
.tbs .pagination-mini ul > li:last-child > span,
|
|
3529
|
+
.tbs .pagination-small ul > li:last-child > span {
|
|
3530
|
+
-webkit-border-top-right-radius: 3px;
|
|
3531
|
+
border-top-right-radius: 3px;
|
|
3532
|
+
-webkit-border-bottom-right-radius: 3px;
|
|
3533
|
+
border-bottom-right-radius: 3px;
|
|
3534
|
+
-moz-border-radius-topright: 3px;
|
|
3535
|
+
-moz-border-radius-bottomright: 3px; }
|
|
3536
|
+
.tbs .pagination-small ul > li > a,
|
|
3537
|
+
.tbs .pagination-small ul > li > span {
|
|
3538
|
+
padding: 2px 10px;
|
|
3539
|
+
font-size: 11.9px; }
|
|
3540
|
+
.tbs .pagination-mini ul > li > a,
|
|
3541
|
+
.tbs .pagination-mini ul > li > span {
|
|
3542
|
+
padding: 0 6px;
|
|
3543
|
+
font-size: 10.5px; }
|
|
3544
|
+
.tbs .pager {
|
|
3545
|
+
margin: 20px 0;
|
|
3546
|
+
text-align: center;
|
|
3547
|
+
list-style: none;
|
|
3548
|
+
*zoom: 1; }
|
|
3549
|
+
.tbs .pager:before,
|
|
3550
|
+
.tbs .pager:after {
|
|
3551
|
+
display: table;
|
|
3552
|
+
line-height: 0;
|
|
3553
|
+
content: ""; }
|
|
3554
|
+
.tbs .pager:after {
|
|
3555
|
+
clear: both; }
|
|
3556
|
+
.tbs .pager li {
|
|
3557
|
+
display: inline; }
|
|
3558
|
+
.tbs .pager li > a,
|
|
3559
|
+
.tbs .pager li > span {
|
|
3560
|
+
display: inline-block;
|
|
3561
|
+
padding: 5px 14px;
|
|
3562
|
+
background-color: #fff;
|
|
3563
|
+
border: 1px solid #ddd;
|
|
3564
|
+
-webkit-border-radius: 15px;
|
|
3565
|
+
-moz-border-radius: 15px;
|
|
3566
|
+
border-radius: 15px; }
|
|
3567
|
+
.tbs .pager li > a:hover,
|
|
3568
|
+
.tbs .pager li > a:focus {
|
|
3569
|
+
text-decoration: none;
|
|
3570
|
+
background-color: #f5f5f5; }
|
|
3571
|
+
.tbs .pager .next > a,
|
|
3572
|
+
.tbs .pager .next > span {
|
|
3573
|
+
float: right; }
|
|
3574
|
+
.tbs .pager .previous > a,
|
|
3575
|
+
.tbs .pager .previous > span {
|
|
3576
|
+
float: left; }
|
|
3577
|
+
.tbs .pager .disabled > a,
|
|
3578
|
+
.tbs .pager .disabled > a:hover,
|
|
3579
|
+
.tbs .pager .disabled > a:focus,
|
|
3580
|
+
.tbs .pager .disabled > span {
|
|
3581
|
+
color: #999999;
|
|
3582
|
+
cursor: default;
|
|
3583
|
+
background-color: #fff; }
|
|
3584
|
+
.tbs .modal-backdrop {
|
|
3585
|
+
position: fixed;
|
|
3586
|
+
top: 0;
|
|
3587
|
+
right: 0;
|
|
3588
|
+
bottom: 0;
|
|
3589
|
+
left: 0;
|
|
3590
|
+
z-index: 1040;
|
|
3591
|
+
background-color: #000000; }
|
|
3592
|
+
.tbs .modal-backdrop.fade {
|
|
3593
|
+
opacity: 0; }
|
|
3594
|
+
.tbs .modal-backdrop,
|
|
3595
|
+
.tbs .modal-backdrop.fade.in {
|
|
3596
|
+
opacity: 0.8;
|
|
3597
|
+
filter: alpha(opacity=80); }
|
|
3598
|
+
.tbs .modal {
|
|
3599
|
+
position: fixed;
|
|
3600
|
+
top: 10%;
|
|
3601
|
+
left: 50%;
|
|
3602
|
+
z-index: 1050;
|
|
3603
|
+
width: 560px;
|
|
3604
|
+
margin-left: -280px;
|
|
3605
|
+
background-color: #ffffff;
|
|
3606
|
+
border: 1px solid #999;
|
|
3607
|
+
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
3608
|
+
*border: 1px solid #999;
|
|
3609
|
+
-webkit-border-radius: 6px;
|
|
3610
|
+
-moz-border-radius: 6px;
|
|
3611
|
+
border-radius: 6px;
|
|
3612
|
+
outline: none;
|
|
3613
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
3614
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
3615
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
3616
|
+
-webkit-background-clip: padding-box;
|
|
3617
|
+
-moz-background-clip: padding-box;
|
|
3618
|
+
background-clip: padding-box; }
|
|
3619
|
+
.tbs .modal.fade {
|
|
3620
|
+
top: -25%;
|
|
3621
|
+
-webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
|
|
3622
|
+
-moz-transition: opacity 0.3s linear, top 0.3s ease-out;
|
|
3623
|
+
-o-transition: opacity 0.3s linear, top 0.3s ease-out;
|
|
3624
|
+
transition: opacity 0.3s linear, top 0.3s ease-out; }
|
|
3625
|
+
.tbs .modal.fade.in {
|
|
3626
|
+
top: 10%; }
|
|
3627
|
+
.tbs .modal-header {
|
|
3628
|
+
padding: 9px 15px;
|
|
3629
|
+
border-bottom: 1px solid #eee; }
|
|
3630
|
+
.tbs .modal-header .close {
|
|
3631
|
+
margin-top: 2px; }
|
|
3632
|
+
.tbs .modal-header h3 {
|
|
3633
|
+
margin: 0;
|
|
3634
|
+
line-height: 30px; }
|
|
3635
|
+
.tbs .modal-body {
|
|
3636
|
+
position: relative;
|
|
3637
|
+
max-height: 400px;
|
|
3638
|
+
padding: 15px;
|
|
3639
|
+
overflow-y: auto; }
|
|
3640
|
+
.tbs .modal-form {
|
|
3641
|
+
margin-bottom: 0; }
|
|
3642
|
+
.tbs .modal-footer {
|
|
3643
|
+
padding: 14px 15px 15px;
|
|
3644
|
+
margin-bottom: 0;
|
|
3645
|
+
text-align: right;
|
|
3646
|
+
background-color: #f5f5f5;
|
|
3647
|
+
border-top: 1px solid #ddd;
|
|
3648
|
+
-webkit-border-radius: 0 0 6px 6px;
|
|
3649
|
+
-moz-border-radius: 0 0 6px 6px;
|
|
3650
|
+
border-radius: 0 0 6px 6px;
|
|
3651
|
+
*zoom: 1;
|
|
3652
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
|
3653
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
|
3654
|
+
box-shadow: inset 0 1px 0 #ffffff; }
|
|
3655
|
+
.tbs .modal-footer:before,
|
|
3656
|
+
.tbs .modal-footer:after {
|
|
3657
|
+
display: table;
|
|
3658
|
+
line-height: 0;
|
|
3659
|
+
content: ""; }
|
|
3660
|
+
.tbs .modal-footer:after {
|
|
3661
|
+
clear: both; }
|
|
3662
|
+
.tbs .modal-footer .btn + .btn {
|
|
3663
|
+
margin-bottom: 0;
|
|
3664
|
+
margin-left: 5px; }
|
|
3665
|
+
.tbs .modal-footer .btn-group .btn + .btn {
|
|
3666
|
+
margin-left: -1px; }
|
|
3667
|
+
.tbs .modal-footer .btn-block + .btn-block {
|
|
3668
|
+
margin-left: 0; }
|
|
3669
|
+
.tbs .tooltip {
|
|
3670
|
+
position: absolute;
|
|
3671
|
+
z-index: 1030;
|
|
3672
|
+
display: block;
|
|
3673
|
+
font-size: 11px;
|
|
3674
|
+
line-height: 1.4;
|
|
3675
|
+
opacity: 0;
|
|
3676
|
+
filter: alpha(opacity=0);
|
|
3677
|
+
visibility: visible; }
|
|
3678
|
+
.tbs .tooltip.in {
|
|
3679
|
+
opacity: 0.8;
|
|
3680
|
+
filter: alpha(opacity=80); }
|
|
3681
|
+
.tbs .tooltip.top {
|
|
3682
|
+
padding: 5px 0;
|
|
3683
|
+
margin-top: -3px; }
|
|
3684
|
+
.tbs .tooltip.right {
|
|
3685
|
+
padding: 0 5px;
|
|
3686
|
+
margin-left: 3px; }
|
|
3687
|
+
.tbs .tooltip.bottom {
|
|
3688
|
+
padding: 5px 0;
|
|
3689
|
+
margin-top: 3px; }
|
|
3690
|
+
.tbs .tooltip.left {
|
|
3691
|
+
padding: 0 5px;
|
|
3692
|
+
margin-left: -3px; }
|
|
3693
|
+
.tbs .tooltip-inner {
|
|
3694
|
+
max-width: 200px;
|
|
3695
|
+
padding: 8px;
|
|
3696
|
+
color: #ffffff;
|
|
3697
|
+
text-align: center;
|
|
3698
|
+
text-decoration: none;
|
|
3699
|
+
background-color: #000000;
|
|
3700
|
+
-webkit-border-radius: 4px;
|
|
3701
|
+
-moz-border-radius: 4px;
|
|
3702
|
+
border-radius: 4px; }
|
|
3703
|
+
.tbs .tooltip-arrow {
|
|
3704
|
+
position: absolute;
|
|
3705
|
+
width: 0;
|
|
3706
|
+
height: 0;
|
|
3707
|
+
border-color: transparent;
|
|
3708
|
+
border-style: solid; }
|
|
3709
|
+
.tbs .tooltip.top .tooltip-arrow {
|
|
3710
|
+
bottom: 0;
|
|
3711
|
+
left: 50%;
|
|
3712
|
+
margin-left: -5px;
|
|
3713
|
+
border-top-color: #000000;
|
|
3714
|
+
border-width: 5px 5px 0; }
|
|
3715
|
+
.tbs .tooltip.right .tooltip-arrow {
|
|
3716
|
+
top: 50%;
|
|
3717
|
+
left: 0;
|
|
3718
|
+
margin-top: -5px;
|
|
3719
|
+
border-right-color: #000000;
|
|
3720
|
+
border-width: 5px 5px 5px 0; }
|
|
3721
|
+
.tbs .tooltip.left .tooltip-arrow {
|
|
3722
|
+
top: 50%;
|
|
3723
|
+
right: 0;
|
|
3724
|
+
margin-top: -5px;
|
|
3725
|
+
border-left-color: #000000;
|
|
3726
|
+
border-width: 5px 0 5px 5px; }
|
|
3727
|
+
.tbs .tooltip.bottom .tooltip-arrow {
|
|
3728
|
+
top: 0;
|
|
3729
|
+
left: 50%;
|
|
3730
|
+
margin-left: -5px;
|
|
3731
|
+
border-bottom-color: #000000;
|
|
3732
|
+
border-width: 0 5px 5px; }
|
|
3733
|
+
.tbs .popover {
|
|
3734
|
+
position: absolute;
|
|
3735
|
+
top: 0;
|
|
3736
|
+
left: 0;
|
|
3737
|
+
z-index: 1010;
|
|
3738
|
+
display: none;
|
|
3739
|
+
max-width: 276px;
|
|
3740
|
+
padding: 1px;
|
|
3741
|
+
text-align: left;
|
|
3742
|
+
white-space: normal;
|
|
3743
|
+
background-color: #ffffff;
|
|
3744
|
+
border: 1px solid #ccc;
|
|
3745
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
3746
|
+
-webkit-border-radius: 6px;
|
|
3747
|
+
-moz-border-radius: 6px;
|
|
3748
|
+
border-radius: 6px;
|
|
3749
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
3750
|
+
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
3751
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
3752
|
+
-webkit-background-clip: padding-box;
|
|
3753
|
+
-moz-background-clip: padding;
|
|
3754
|
+
background-clip: padding-box; }
|
|
3755
|
+
.tbs .popover.top {
|
|
3756
|
+
margin-top: -10px; }
|
|
3757
|
+
.tbs .popover.right {
|
|
3758
|
+
margin-left: 10px; }
|
|
3759
|
+
.tbs .popover.bottom {
|
|
3760
|
+
margin-top: 10px; }
|
|
3761
|
+
.tbs .popover.left {
|
|
3762
|
+
margin-left: -10px; }
|
|
3763
|
+
.tbs .popover-title {
|
|
3764
|
+
padding: 8px 14px;
|
|
3765
|
+
margin: 0;
|
|
3766
|
+
font-size: 14px;
|
|
3767
|
+
font-weight: normal;
|
|
3768
|
+
line-height: 18px;
|
|
3769
|
+
background-color: #f7f7f7;
|
|
3770
|
+
border-bottom: 1px solid #ebebeb;
|
|
3771
|
+
-webkit-border-radius: 5px 5px 0 0;
|
|
3772
|
+
-moz-border-radius: 5px 5px 0 0;
|
|
3773
|
+
border-radius: 5px 5px 0 0; }
|
|
3774
|
+
.tbs .popover-title:empty {
|
|
3775
|
+
display: none; }
|
|
3776
|
+
.tbs .popover-content {
|
|
3777
|
+
padding: 9px 14px; }
|
|
3778
|
+
.tbs .popover .arrow,
|
|
3779
|
+
.tbs .popover .arrow:after {
|
|
3780
|
+
position: absolute;
|
|
3781
|
+
display: block;
|
|
3782
|
+
width: 0;
|
|
3783
|
+
height: 0;
|
|
3784
|
+
border-color: transparent;
|
|
3785
|
+
border-style: solid; }
|
|
3786
|
+
.tbs .popover .arrow {
|
|
3787
|
+
border-width: 11px; }
|
|
3788
|
+
.tbs .popover .arrow:after {
|
|
3789
|
+
border-width: 10px;
|
|
3790
|
+
content: ""; }
|
|
3791
|
+
.tbs .popover.top .arrow {
|
|
3792
|
+
bottom: -11px;
|
|
3793
|
+
left: 50%;
|
|
3794
|
+
margin-left: -11px;
|
|
3795
|
+
border-top-color: #999;
|
|
3796
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
|
3797
|
+
border-bottom-width: 0; }
|
|
3798
|
+
.tbs .popover.top .arrow:after {
|
|
3799
|
+
bottom: 1px;
|
|
3800
|
+
margin-left: -10px;
|
|
3801
|
+
border-top-color: #ffffff;
|
|
3802
|
+
border-bottom-width: 0; }
|
|
3803
|
+
.tbs .popover.right .arrow {
|
|
3804
|
+
top: 50%;
|
|
3805
|
+
left: -11px;
|
|
3806
|
+
margin-top: -11px;
|
|
3807
|
+
border-right-color: #999;
|
|
3808
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
|
3809
|
+
border-left-width: 0; }
|
|
3810
|
+
.tbs .popover.right .arrow:after {
|
|
3811
|
+
bottom: -10px;
|
|
3812
|
+
left: 1px;
|
|
3813
|
+
border-right-color: #ffffff;
|
|
3814
|
+
border-left-width: 0; }
|
|
3815
|
+
.tbs .popover.bottom .arrow {
|
|
3816
|
+
top: -11px;
|
|
3817
|
+
left: 50%;
|
|
3818
|
+
margin-left: -11px;
|
|
3819
|
+
border-bottom-color: #999;
|
|
3820
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
|
3821
|
+
border-top-width: 0; }
|
|
3822
|
+
.tbs .popover.bottom .arrow:after {
|
|
3823
|
+
top: 1px;
|
|
3824
|
+
margin-left: -10px;
|
|
3825
|
+
border-bottom-color: #ffffff;
|
|
3826
|
+
border-top-width: 0; }
|
|
3827
|
+
.tbs .popover.left .arrow {
|
|
3828
|
+
top: 50%;
|
|
3829
|
+
right: -11px;
|
|
3830
|
+
margin-top: -11px;
|
|
3831
|
+
border-left-color: #999;
|
|
3832
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
|
3833
|
+
border-right-width: 0; }
|
|
3834
|
+
.tbs .popover.left .arrow:after {
|
|
3835
|
+
right: 1px;
|
|
3836
|
+
bottom: -10px;
|
|
3837
|
+
border-left-color: #ffffff;
|
|
3838
|
+
border-right-width: 0; }
|
|
3839
|
+
.tbs .thumbnails {
|
|
3840
|
+
margin-left: -20px;
|
|
3841
|
+
list-style: none;
|
|
3842
|
+
*zoom: 1; }
|
|
3843
|
+
.tbs .thumbnails:before,
|
|
3844
|
+
.tbs .thumbnails:after {
|
|
3845
|
+
display: table;
|
|
3846
|
+
line-height: 0;
|
|
3847
|
+
content: ""; }
|
|
3848
|
+
.tbs .thumbnails:after {
|
|
3849
|
+
clear: both; }
|
|
3850
|
+
.tbs .row-fluid .thumbnails {
|
|
3851
|
+
margin-left: 0; }
|
|
3852
|
+
.tbs .thumbnails > li {
|
|
3853
|
+
float: left;
|
|
3854
|
+
margin-bottom: 20px;
|
|
3855
|
+
margin-left: 20px; }
|
|
3856
|
+
.tbs .thumbnail {
|
|
3857
|
+
display: block;
|
|
3858
|
+
padding: 4px;
|
|
3859
|
+
line-height: 20px;
|
|
3860
|
+
border: 1px solid #ddd;
|
|
3861
|
+
-webkit-border-radius: 4px;
|
|
3862
|
+
-moz-border-radius: 4px;
|
|
3863
|
+
border-radius: 4px;
|
|
3864
|
+
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
|
|
3865
|
+
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
|
|
3866
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
|
|
3867
|
+
-webkit-transition: all 0.2s ease-in-out;
|
|
3868
|
+
-moz-transition: all 0.2s ease-in-out;
|
|
3869
|
+
-o-transition: all 0.2s ease-in-out;
|
|
3870
|
+
transition: all 0.2s ease-in-out; }
|
|
3871
|
+
.tbs a.thumbnail:hover,
|
|
3872
|
+
.tbs a.thumbnail:focus {
|
|
3873
|
+
border-color: #0088cc;
|
|
3874
|
+
-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
|
3875
|
+
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
|
3876
|
+
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); }
|
|
3877
|
+
.tbs .thumbnail > img {
|
|
3878
|
+
display: block;
|
|
3879
|
+
max-width: 100%;
|
|
3880
|
+
margin-right: auto;
|
|
3881
|
+
margin-left: auto; }
|
|
3882
|
+
.tbs .thumbnail .caption {
|
|
3883
|
+
padding: 9px;
|
|
3884
|
+
color: #555555; }
|
|
3885
|
+
.tbs .media,
|
|
3886
|
+
.tbs .media-body {
|
|
3887
|
+
overflow: hidden;
|
|
3888
|
+
*overflow: visible;
|
|
3889
|
+
zoom: 1; }
|
|
3890
|
+
.tbs .media,
|
|
3891
|
+
.tbs .media .media {
|
|
3892
|
+
margin-top: 15px; }
|
|
3893
|
+
.tbs .media:first-child {
|
|
3894
|
+
margin-top: 0; }
|
|
3895
|
+
.tbs .media-object {
|
|
3896
|
+
display: block; }
|
|
3897
|
+
.tbs .media-heading {
|
|
3898
|
+
margin: 0 0 5px; }
|
|
3899
|
+
.tbs .media > .pull-left {
|
|
3900
|
+
margin-right: 10px; }
|
|
3901
|
+
.tbs .media > .pull-right {
|
|
3902
|
+
margin-left: 10px; }
|
|
3903
|
+
.tbs .media-list {
|
|
3904
|
+
margin-left: 0;
|
|
3905
|
+
list-style: none; }
|
|
3906
|
+
.tbs .label,
|
|
3907
|
+
.tbs .badge {
|
|
3908
|
+
display: inline-block;
|
|
3909
|
+
padding: 2px 4px;
|
|
3910
|
+
font-size: 11.844px;
|
|
3911
|
+
font-weight: bold;
|
|
3912
|
+
line-height: 14px;
|
|
3913
|
+
color: #ffffff;
|
|
3914
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
3915
|
+
white-space: nowrap;
|
|
3916
|
+
vertical-align: baseline;
|
|
3917
|
+
background-color: #999999; }
|
|
3918
|
+
.tbs .label {
|
|
3919
|
+
-webkit-border-radius: 3px;
|
|
3920
|
+
-moz-border-radius: 3px;
|
|
3921
|
+
border-radius: 3px; }
|
|
3922
|
+
.tbs .badge {
|
|
3923
|
+
padding-right: 9px;
|
|
3924
|
+
padding-left: 9px;
|
|
3925
|
+
-webkit-border-radius: 9px;
|
|
3926
|
+
-moz-border-radius: 9px;
|
|
3927
|
+
border-radius: 9px; }
|
|
3928
|
+
.tbs .label:empty,
|
|
3929
|
+
.tbs .badge:empty {
|
|
3930
|
+
display: none; }
|
|
3931
|
+
.tbs a.label:hover,
|
|
3932
|
+
.tbs a.label:focus,
|
|
3933
|
+
.tbs a.badge:hover,
|
|
3934
|
+
.tbs a.badge:focus {
|
|
3935
|
+
color: #ffffff;
|
|
3936
|
+
text-decoration: none;
|
|
3937
|
+
cursor: pointer; }
|
|
3938
|
+
.tbs .label-important,
|
|
3939
|
+
.tbs .badge-important {
|
|
3940
|
+
background-color: #b94a48; }
|
|
3941
|
+
.tbs .label-important[href],
|
|
3942
|
+
.tbs .badge-important[href] {
|
|
3943
|
+
background-color: #953b39; }
|
|
3944
|
+
.tbs .label-warning,
|
|
3945
|
+
.tbs .badge-warning {
|
|
3946
|
+
background-color: #f89406; }
|
|
3947
|
+
.tbs .label-warning[href],
|
|
3948
|
+
.tbs .badge-warning[href] {
|
|
3949
|
+
background-color: #c67605; }
|
|
3950
|
+
.tbs .label-success,
|
|
3951
|
+
.tbs .badge-success {
|
|
3952
|
+
background-color: #468847; }
|
|
3953
|
+
.tbs .label-success[href],
|
|
3954
|
+
.tbs .badge-success[href] {
|
|
3955
|
+
background-color: #356635; }
|
|
3956
|
+
.tbs .label-info,
|
|
3957
|
+
.tbs .badge-info {
|
|
3958
|
+
background-color: #3a87ad; }
|
|
3959
|
+
.tbs .label-info[href],
|
|
3960
|
+
.tbs .badge-info[href] {
|
|
3961
|
+
background-color: #2d6987; }
|
|
3962
|
+
.tbs .label-inverse,
|
|
3963
|
+
.tbs .badge-inverse {
|
|
3964
|
+
background-color: #333333; }
|
|
3965
|
+
.tbs .label-inverse[href],
|
|
3966
|
+
.tbs .badge-inverse[href] {
|
|
3967
|
+
background-color: #1a1a1a; }
|
|
3968
|
+
.tbs .btn .label,
|
|
3969
|
+
.tbs .btn .badge {
|
|
3970
|
+
position: relative;
|
|
3971
|
+
top: -1px; }
|
|
3972
|
+
.tbs .btn-mini .label,
|
|
3973
|
+
.tbs .btn-mini .badge {
|
|
3974
|
+
top: 0; }
|
|
3975
|
+
.tbs .progress {
|
|
3976
|
+
height: 20px;
|
|
3977
|
+
margin-bottom: 20px;
|
|
3978
|
+
overflow: hidden;
|
|
3979
|
+
background-color: #f7f7f7;
|
|
3980
|
+
background-image: -moz-linear-gradient(top, whitesmoke, #f9f9f9);
|
|
3981
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(whitesmoke), to(#f9f9f9));
|
|
3982
|
+
background-image: -webkit-linear-gradient(top, whitesmoke, #f9f9f9);
|
|
3983
|
+
background-image: -o-linear-gradient(top, whitesmoke, #f9f9f9);
|
|
3984
|
+
background-image: linear-gradient(to bottom, whitesmoke, #f9f9f9);
|
|
3985
|
+
background-repeat: repeat-x;
|
|
3986
|
+
-webkit-border-radius: 4px;
|
|
3987
|
+
-moz-border-radius: 4px;
|
|
3988
|
+
border-radius: 4px;
|
|
3989
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
|
|
3990
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
3991
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
3992
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
|
|
3993
|
+
.tbs .progress .bar {
|
|
3994
|
+
float: left;
|
|
3995
|
+
width: 0;
|
|
3996
|
+
height: 100%;
|
|
3997
|
+
font-size: 12px;
|
|
3998
|
+
color: #ffffff;
|
|
3999
|
+
text-align: center;
|
|
4000
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
|
4001
|
+
background-color: #0e90d2;
|
|
4002
|
+
background-image: -moz-linear-gradient(top, #149bdf, #0480be);
|
|
4003
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
|
|
4004
|
+
background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
|
|
4005
|
+
background-image: -o-linear-gradient(top, #149bdf, #0480be);
|
|
4006
|
+
background-image: linear-gradient(to bottom, #149bdf, #0480be);
|
|
4007
|
+
background-repeat: repeat-x;
|
|
4008
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
|
|
4009
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
4010
|
+
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
4011
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
4012
|
+
-webkit-box-sizing: border-box;
|
|
4013
|
+
-moz-box-sizing: border-box;
|
|
4014
|
+
box-sizing: border-box;
|
|
4015
|
+
-webkit-transition: width 0.6s ease;
|
|
4016
|
+
-moz-transition: width 0.6s ease;
|
|
4017
|
+
-o-transition: width 0.6s ease;
|
|
4018
|
+
transition: width 0.6s ease; }
|
|
4019
|
+
.tbs .progress .bar + .bar {
|
|
4020
|
+
-webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
4021
|
+
-moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
|
4022
|
+
box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
|
|
4023
|
+
.tbs .progress-striped .bar {
|
|
4024
|
+
background-color: #149bdf;
|
|
4025
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
4026
|
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4027
|
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4028
|
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4029
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4030
|
+
-webkit-background-size: 40px 40px;
|
|
4031
|
+
-moz-background-size: 40px 40px;
|
|
4032
|
+
-o-background-size: 40px 40px;
|
|
4033
|
+
background-size: 40px 40px; }
|
|
4034
|
+
.tbs .progress.active .bar {
|
|
4035
|
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
|
4036
|
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
|
4037
|
+
-ms-animation: progress-bar-stripes 2s linear infinite;
|
|
4038
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
|
4039
|
+
animation: progress-bar-stripes 2s linear infinite; }
|
|
4040
|
+
.tbs .progress-danger .bar,
|
|
4041
|
+
.tbs .progress .bar-danger {
|
|
4042
|
+
background-color: #dd514c;
|
|
4043
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
|
4044
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
|
|
4045
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
|
4046
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
|
4047
|
+
background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
|
|
4048
|
+
background-repeat: repeat-x;
|
|
4049
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0); }
|
|
4050
|
+
.tbs .progress-danger.progress-striped .bar,
|
|
4051
|
+
.tbs .progress-striped .bar-danger {
|
|
4052
|
+
background-color: #ee5f5b;
|
|
4053
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
4054
|
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4055
|
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4056
|
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4057
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
|
|
4058
|
+
.tbs .progress-success .bar,
|
|
4059
|
+
.tbs .progress .bar-success {
|
|
4060
|
+
background-color: #5eb95e;
|
|
4061
|
+
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
|
4062
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
|
|
4063
|
+
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
|
4064
|
+
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
|
4065
|
+
background-image: linear-gradient(to bottom, #62c462, #57a957);
|
|
4066
|
+
background-repeat: repeat-x;
|
|
4067
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0); }
|
|
4068
|
+
.tbs .progress-success.progress-striped .bar,
|
|
4069
|
+
.tbs .progress-striped .bar-success {
|
|
4070
|
+
background-color: #62c462;
|
|
4071
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
4072
|
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4073
|
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4074
|
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4075
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
|
|
4076
|
+
.tbs .progress-info .bar,
|
|
4077
|
+
.tbs .progress .bar-info {
|
|
4078
|
+
background-color: #4bb1cf;
|
|
4079
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
|
4080
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
|
|
4081
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
|
4082
|
+
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
|
4083
|
+
background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
|
|
4084
|
+
background-repeat: repeat-x;
|
|
4085
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0); }
|
|
4086
|
+
.tbs .progress-info.progress-striped .bar,
|
|
4087
|
+
.tbs .progress-striped .bar-info {
|
|
4088
|
+
background-color: #5bc0de;
|
|
4089
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
4090
|
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4091
|
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4092
|
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4093
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
|
|
4094
|
+
.tbs .progress-warning .bar,
|
|
4095
|
+
.tbs .progress .bar-warning {
|
|
4096
|
+
background-color: #faa732;
|
|
4097
|
+
background-image: -moz-linear-gradient(top, #fbb450, #f89406);
|
|
4098
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
|
|
4099
|
+
background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
|
|
4100
|
+
background-image: -o-linear-gradient(top, #fbb450, #f89406);
|
|
4101
|
+
background-image: linear-gradient(to bottom, #fbb450, #f89406);
|
|
4102
|
+
background-repeat: repeat-x;
|
|
4103
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0); }
|
|
4104
|
+
.tbs .progress-warning.progress-striped .bar,
|
|
4105
|
+
.tbs .progress-striped .bar-warning {
|
|
4106
|
+
background-color: #fbb450;
|
|
4107
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
|
4108
|
+
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4109
|
+
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4110
|
+
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
|
4111
|
+
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
|
|
4112
|
+
.tbs .accordion {
|
|
4113
|
+
margin-bottom: 20px; }
|
|
4114
|
+
.tbs .accordion-group {
|
|
4115
|
+
margin-bottom: 2px;
|
|
4116
|
+
border: 1px solid #e5e5e5;
|
|
4117
|
+
-webkit-border-radius: 4px;
|
|
4118
|
+
-moz-border-radius: 4px;
|
|
4119
|
+
border-radius: 4px; }
|
|
4120
|
+
.tbs .accordion-heading {
|
|
4121
|
+
border-bottom: 0; }
|
|
4122
|
+
.tbs .accordion-heading .accordion-toggle {
|
|
4123
|
+
display: block;
|
|
4124
|
+
padding: 8px 15px; }
|
|
4125
|
+
.tbs .accordion-toggle {
|
|
4126
|
+
cursor: pointer; }
|
|
4127
|
+
.tbs .accordion-inner {
|
|
4128
|
+
padding: 9px 15px;
|
|
4129
|
+
border-top: 1px solid #e5e5e5; }
|
|
4130
|
+
.tbs .carousel {
|
|
4131
|
+
position: relative;
|
|
4132
|
+
margin-bottom: 20px;
|
|
4133
|
+
line-height: 1; }
|
|
4134
|
+
.tbs .carousel-inner {
|
|
4135
|
+
position: relative;
|
|
4136
|
+
width: 100%;
|
|
4137
|
+
overflow: hidden; }
|
|
4138
|
+
.tbs .carousel-inner > .item {
|
|
4139
|
+
position: relative;
|
|
4140
|
+
display: none;
|
|
4141
|
+
-webkit-transition: 0.6s ease-in-out left;
|
|
4142
|
+
-moz-transition: 0.6s ease-in-out left;
|
|
4143
|
+
-o-transition: 0.6s ease-in-out left;
|
|
4144
|
+
transition: 0.6s ease-in-out left; }
|
|
4145
|
+
.tbs .carousel-inner > .item > img,
|
|
4146
|
+
.tbs .carousel-inner > .item > a > img {
|
|
4147
|
+
display: block;
|
|
4148
|
+
line-height: 1; }
|
|
4149
|
+
.tbs .carousel-inner > .active,
|
|
4150
|
+
.tbs .carousel-inner > .next,
|
|
4151
|
+
.tbs .carousel-inner > .prev {
|
|
4152
|
+
display: block; }
|
|
4153
|
+
.tbs .carousel-inner > .active {
|
|
4154
|
+
left: 0; }
|
|
4155
|
+
.tbs .carousel-inner > .next,
|
|
4156
|
+
.tbs .carousel-inner > .prev {
|
|
4157
|
+
position: absolute;
|
|
4158
|
+
top: 0;
|
|
4159
|
+
width: 100%; }
|
|
4160
|
+
.tbs .carousel-inner > .next {
|
|
4161
|
+
left: 100%; }
|
|
4162
|
+
.tbs .carousel-inner > .prev {
|
|
4163
|
+
left: -100%; }
|
|
4164
|
+
.tbs .carousel-inner > .next.left,
|
|
4165
|
+
.tbs .carousel-inner > .prev.right {
|
|
4166
|
+
left: 0; }
|
|
4167
|
+
.tbs .carousel-inner > .active.left {
|
|
4168
|
+
left: -100%; }
|
|
4169
|
+
.tbs .carousel-inner > .active.right {
|
|
4170
|
+
left: 100%; }
|
|
4171
|
+
.tbs .carousel-control {
|
|
4172
|
+
position: absolute;
|
|
4173
|
+
top: 40%;
|
|
4174
|
+
left: 15px;
|
|
4175
|
+
width: 40px;
|
|
4176
|
+
height: 40px;
|
|
4177
|
+
margin-top: -20px;
|
|
4178
|
+
font-size: 60px;
|
|
4179
|
+
font-weight: 100;
|
|
4180
|
+
line-height: 30px;
|
|
4181
|
+
color: #ffffff;
|
|
4182
|
+
text-align: center;
|
|
4183
|
+
background: #222222;
|
|
4184
|
+
border: 3px solid #ffffff;
|
|
4185
|
+
-webkit-border-radius: 23px;
|
|
4186
|
+
-moz-border-radius: 23px;
|
|
4187
|
+
border-radius: 23px;
|
|
4188
|
+
opacity: 0.5;
|
|
4189
|
+
filter: alpha(opacity=50); }
|
|
4190
|
+
.tbs .carousel-control.right {
|
|
4191
|
+
right: 15px;
|
|
4192
|
+
left: auto; }
|
|
4193
|
+
.tbs .carousel-control:hover,
|
|
4194
|
+
.tbs .carousel-control:focus {
|
|
4195
|
+
color: #ffffff;
|
|
4196
|
+
text-decoration: none;
|
|
4197
|
+
opacity: 0.9;
|
|
4198
|
+
filter: alpha(opacity=90); }
|
|
4199
|
+
.tbs .carousel-indicators {
|
|
4200
|
+
position: absolute;
|
|
4201
|
+
top: 15px;
|
|
4202
|
+
right: 15px;
|
|
4203
|
+
z-index: 5;
|
|
4204
|
+
margin: 0;
|
|
4205
|
+
list-style: none; }
|
|
4206
|
+
.tbs .carousel-indicators li {
|
|
4207
|
+
display: block;
|
|
4208
|
+
float: left;
|
|
4209
|
+
width: 10px;
|
|
4210
|
+
height: 10px;
|
|
4211
|
+
margin-left: 5px;
|
|
4212
|
+
text-indent: -999px;
|
|
4213
|
+
background-color: #ccc;
|
|
4214
|
+
background-color: rgba(255, 255, 255, 0.25);
|
|
4215
|
+
border-radius: 5px; }
|
|
4216
|
+
.tbs .carousel-indicators .active {
|
|
4217
|
+
background-color: #fff; }
|
|
4218
|
+
.tbs .carousel-caption {
|
|
4219
|
+
position: absolute;
|
|
4220
|
+
right: 0;
|
|
4221
|
+
bottom: 0;
|
|
4222
|
+
left: 0;
|
|
4223
|
+
padding: 15px;
|
|
4224
|
+
background: #333333;
|
|
4225
|
+
background: rgba(0, 0, 0, 0.75); }
|
|
4226
|
+
.tbs .carousel-caption h4,
|
|
4227
|
+
.tbs .carousel-caption p {
|
|
4228
|
+
line-height: 20px;
|
|
4229
|
+
color: #ffffff; }
|
|
4230
|
+
.tbs .carousel-caption h4 {
|
|
4231
|
+
margin: 0 0 5px; }
|
|
4232
|
+
.tbs .carousel-caption p {
|
|
4233
|
+
margin-bottom: 0; }
|
|
4234
|
+
.tbs .hero-unit {
|
|
4235
|
+
padding: 60px;
|
|
4236
|
+
margin-bottom: 30px;
|
|
4237
|
+
font-size: 18px;
|
|
4238
|
+
font-weight: 200;
|
|
4239
|
+
line-height: 30px;
|
|
4240
|
+
color: inherit;
|
|
4241
|
+
background-color: #eeeeee;
|
|
4242
|
+
-webkit-border-radius: 6px;
|
|
4243
|
+
-moz-border-radius: 6px;
|
|
4244
|
+
border-radius: 6px; }
|
|
4245
|
+
.tbs .hero-unit h1 {
|
|
4246
|
+
margin-bottom: 0;
|
|
4247
|
+
font-size: 60px;
|
|
4248
|
+
line-height: 1;
|
|
4249
|
+
letter-spacing: -1px;
|
|
4250
|
+
color: inherit; }
|
|
4251
|
+
.tbs .hero-unit li {
|
|
4252
|
+
line-height: 30px; }
|
|
4253
|
+
.tbs .pull-right {
|
|
4254
|
+
float: right; }
|
|
4255
|
+
.tbs .pull-left {
|
|
4256
|
+
float: left; }
|
|
4257
|
+
.tbs .hide {
|
|
4258
|
+
display: none; }
|
|
4259
|
+
.tbs .show {
|
|
4260
|
+
display: block; }
|
|
4261
|
+
.tbs .invisible {
|
|
4262
|
+
visibility: hidden; }
|
|
4263
|
+
.tbs .affix {
|
|
4264
|
+
position: fixed; }
|
|
4265
|
+
/**
|
|
4266
|
+
* rubber ring specific styles. Here you shall not use any general elements or selectors at all.
|
|
4267
|
+
*/
|
|
4268
|
+
*[contenteditable] {
|
|
4269
|
+
outline: dashed green 1px;
|
|
4270
|
+
position: relative; }
|
|
4271
|
+
*[contenteditable] .reset-content, *[contenteditable] .duplicate-content, *[contenteditable] .remove-duplicat {
|
|
4272
|
+
-webkit-user-select: none;
|
|
4273
|
+
-moz-user-select: none;
|
|
4274
|
+
-ms-user-select: none;
|
|
4275
|
+
user-select: none;
|
|
4276
|
+
width: 12px;
|
|
4277
|
+
height: 13px;
|
|
4278
|
+
display: inline-block;
|
|
4279
|
+
outline: none;
|
|
4280
|
+
right: 1px;
|
|
4281
|
+
top: 1px;
|
|
4282
|
+
position: absolute;
|
|
4283
|
+
border: 0;
|
|
4284
|
+
cursor: pointer; }
|
|
4285
|
+
*[contenteditable] .reset-content {
|
|
4286
|
+
background: url("/assets/glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png") no-repeat -217px -25px; }
|
|
4287
|
+
*[contenteditable] .duplicate-content {
|
|
4288
|
+
background: url("/assets/glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png") no-repeat -1px -97px;
|
|
4289
|
+
margin-right: 13px; }
|
|
4290
|
+
*[contenteditable] .remove-duplicat {
|
|
4291
|
+
background: url("/assets/glyphicons-halflings-b47b2b03ec961163432b4cfe22cd6f31.png") no-repeat -25px -97px; }
|
|
4292
|
+
|
|
4293
|
+
#rubber-ring-application a {
|
|
4294
|
+
outline: none; }
|
|
4295
|
+
#rubber-ring-application [data-cms="page_title"] {
|
|
4296
|
+
display: block; }
|
|
4297
|
+
#rubber-ring-application .attachment-manager {
|
|
4298
|
+
display: none; }
|
|
4299
|
+
#rubber-ring-application .attachment-manager .uploaded-images img {
|
|
4300
|
+
width: 65px;
|
|
4301
|
+
cursor: -webkit-grab;
|
|
4302
|
+
cursor: -moz-grab; }
|
|
4303
|
+
#rubber-ring-application .attachment-manager .uploaded-attachments a {
|
|
4304
|
+
text-decoration: none;
|
|
4305
|
+
cursor: -webkit-grab;
|
|
4306
|
+
cursor: -moz-grab; }
|
|
4307
|
+
#rubber-ring-application .attachment-manager .remove_not_used_attachments {
|
|
4308
|
+
margin-top: 7px; }
|
|
4309
|
+
#rubber-ring-application .attachment-manager .image_upload_box {
|
|
4310
|
+
display: -webkit-flex;
|
|
4311
|
+
display: flex;
|
|
4312
|
+
height: 75px;
|
|
4313
|
+
border: dashed green 1px; }
|
|
4314
|
+
#rubber-ring-application .attachment-manager .image_upload_box.drag-hover {
|
|
4315
|
+
background-color: #abee9b; }
|
|
4316
|
+
#rubber-ring-application .attachment-manager .image_upload_box .image_upload_text {
|
|
4317
|
+
margin: auto; }
|
|
4318
|
+
#rubber-ring-application .attachment-manager .image_upload_box .preview {
|
|
4319
|
+
display: none; }
|
|
4320
|
+
#rubber-ring-application .attachment-manager .rubber_cache_preview {
|
|
4321
|
+
font-family: calibri,tahoma,arial,sans-serif;
|
|
4322
|
+
position: fixed;
|
|
4323
|
+
right: 0;
|
|
4324
|
+
top: 0; }
|
|
4325
|
+
#rubber-ring-application .attachment-manager .rubber_cache_preview a {
|
|
4326
|
+
color: green; }
|
|
4327
|
+
#rubber-ring-application .attachment-manager .rubber_cache_preview a:visited {
|
|
4328
|
+
color: green; }
|
|
4329
|
+
#rubber-ring-application .page-title-manager {
|
|
4330
|
+
display: none; }
|
|
4331
|
+
#rubber-ring-application #edit-link {
|
|
4332
|
+
display: none;
|
|
4333
|
+
position: absolute;
|
|
4334
|
+
top: 0;
|
|
4335
|
+
left: 0;
|
|
4336
|
+
z-index: 1000; }
|
|
4337
|
+
|
|
4338
|
+
.tbs * {
|
|
4339
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
|
|
4340
|
+
|
|
4341
|
+
.tbs .navbar {
|
|
4342
|
+
margin-bottom: 0;
|
|
4343
|
+
font-size: 15px; }
|
|
4344
|
+
|
|
4345
|
+
.tbs .well {
|
|
4346
|
+
min-height: 0; }
|
|
4347
|
+
|
|
4348
|
+
.tbs .alert-saved .alert {
|
|
4349
|
+
padding: 0;
|
|
4350
|
+
margin: 9px 0;
|
|
4351
|
+
font-weight: bold;
|
|
4352
|
+
opacity: 0;
|
|
4353
|
+
transition: opacity 1s ease-in; }
|
|
4354
|
+
.tbs .alert-saved .alert.show {
|
|
4355
|
+
opacity: 1; }
|
|
4356
|
+
|
|
4357
|
+
.tbs [class^="icon-"], .tbs [class*=" icon-"] {
|
|
4358
|
+
margin: 3px 0 0 5px; }
|