From f56125d94efba462869f09064dfa39aa780b8016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 4 Jun 2013 19:05:50 -0400 Subject: [PATCH] chore(ngdocs): setup bower as the package manager for the docs pages --- .gitignore | 1 + Gruntfile.js | 33 +- angularFiles.js | 6 +- bower.json | 10 + .../bootstrap-prettify.js | 0 .../bootstrap.js | 0 docs/components/bootstrap/css/bootstrap.css | 3990 ------- .../bootstrap/google-prettify/prettify.css | 30 - .../bootstrap/google-prettify/prettify.js | 1538 --- docs/content/misc/contribute.ngdoc | 11 +- docs/src/gen-docs.js | 19 +- docs/src/templates/css/bootstrap.min.css | 689 -- docs/src/templates/css/docs.css | 5 - docs/src/templates/css/font-awesome.css | 540 - docs/src/templates/css/prettify.css | 51 + docs/src/templates/font/FontAwesome.otf | Bin 48748 -> 0 bytes .../templates/font/fontawesome-webfont.eot | Bin 25395 -> 0 bytes .../templates/font/fontawesome-webfont.svg | 284 - .../templates/font/fontawesome-webfont.svgz | Bin 21845 -> 0 bytes .../templates/font/fontawesome-webfont.ttf | Bin 55096 -> 0 bytes .../templates/font/fontawesome-webfont.woff | Bin 29380 -> 0 bytes docs/src/templates/index.html | 12 +- docs/src/templates/js/jquery.js | 1 - docs/src/templates/js/jquery.min.js | 1 - docs/src/templates/js/lunr.js | 1560 --- docs/src/writer.js | 8 +- lib/jquery/jquery.js | 9440 ----------------- lib/jquery/jquery.min.js | 2 - lib/jquery/version.txt | 1 - package.json | 2 + 30 files changed, 122 insertions(+), 18112 deletions(-) create mode 100644 bower.json rename docs/components/{bootstrap => angular-bootstrap}/bootstrap-prettify.js (100%) rename docs/components/{bootstrap => angular-bootstrap}/bootstrap.js (100%) delete mode 100644 docs/components/bootstrap/css/bootstrap.css delete mode 100644 docs/components/bootstrap/google-prettify/prettify.css delete mode 100644 docs/components/bootstrap/google-prettify/prettify.js delete mode 100644 docs/src/templates/css/bootstrap.min.css delete mode 100755 docs/src/templates/css/font-awesome.css create mode 100644 docs/src/templates/css/prettify.css delete mode 100755 docs/src/templates/font/FontAwesome.otf delete mode 100755 docs/src/templates/font/fontawesome-webfont.eot delete mode 100755 docs/src/templates/font/fontawesome-webfont.svg delete mode 100755 docs/src/templates/font/fontawesome-webfont.svgz delete mode 100755 docs/src/templates/font/fontawesome-webfont.ttf delete mode 100755 docs/src/templates/font/fontawesome-webfont.woff delete mode 120000 docs/src/templates/js/jquery.js delete mode 120000 docs/src/templates/js/jquery.min.js delete mode 100644 docs/src/templates/js/lunr.js delete mode 100644 lib/jquery/jquery.js delete mode 100644 lib/jquery/jquery.min.js delete mode 100644 lib/jquery/version.txt diff --git a/.gitignore b/.gitignore index 3142dc3b..b455fd8e 100644 --- a/.gitignore +++ b/.gitignore @@ -10,5 +10,6 @@ performance/temp*.html *~ angular.js.tmproj node_modules +components angular.xcodeproj .idea diff --git a/Gruntfile.js b/Gruntfile.js index c20b1ea0..f0cb8ebc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -7,6 +7,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-connect'); grunt.loadNpmTasks('grunt-contrib-compress'); + grunt.loadNpmTasks('grunt-shell'); grunt.loadTasks('lib/grunt'); var NG_VERSION = util.getVersion(); @@ -63,11 +64,21 @@ module.exports = function(grunt) { clean: {build: ['build']}, + shell: { + bower: { + command: './node_modules/bower/bin/bower install', + options: { + stdout: false + } + } + }, + + build: { scenario: { dest: 'build/angular-scenario.js', src: [ - 'lib/jquery/jquery.js', + 'components/jquery/jquery.js', util.wrap([files['angularSrc'], files['angularScenario']], 'ngScenario/angular') ], styles: { @@ -124,18 +135,6 @@ module.exports = function(grunt) { cookies: { dest: 'build/angular-cookies.js', src: util.wrap(['src/ngCookies/cookies.js'], 'module') - }, - bootstrap: { - dest: 'build/docs/components/angular-bootstrap.js', - src: util.wrap(['docs/components/bootstrap/bootstrap.js'], 'module') - }, - bootstrapPrettify: { - dest: 'build/docs/components/angular-bootstrap-prettify.js', - src: util.wrap(['docs/components/bootstrap/bootstrap-prettify.js', 'docs/components/bootstrap/google-prettify/prettify.js'], 'module'), - styles: { - css: ['docs/components/bootstrap/google-prettify/prettify.css'], - minify: true - } } }, @@ -147,9 +146,7 @@ module.exports = function(grunt) { mobile: 'build/angular-mobile.js', resource: 'build/angular-resource.js', route: 'build/angular-route.js', - sanitize: 'build/angular-sanitize.js', - bootstrap: 'build/docs/components/angular-bootstrap.js', - bootstrapPrettify: 'build/docs/components/angular-bootstrap-prettify.js', + sanitize: 'build/angular-sanitize.js' }, @@ -184,9 +181,9 @@ module.exports = function(grunt) { //alias tasks grunt.registerTask('test:unit', ['test:jqlite', 'test:jquery', 'test:modules']); - grunt.registerTask('minify', ['clean', 'build', 'minall']); + grunt.registerTask('minify', ['shell:bower','clean', 'build', 'minall']); grunt.registerTask('test:e2e', ['connect:testserver', 'test:end2end']); grunt.registerTask('webserver', ['connect:devserver']); - grunt.registerTask('package', ['clean', 'buildall', 'minall', 'docs', 'copy', 'write', 'compress']); + grunt.registerTask('package', ['shell:bower','clean', 'buildall', 'minall', 'docs', 'copy', 'write', 'compress']); grunt.registerTask('default', ['package']); }; diff --git a/angularFiles.js b/angularFiles.js index db672383..d200ccde 100755 --- a/angularFiles.js +++ b/angularFiles.js @@ -79,7 +79,7 @@ angularFiles = { 'src/ngMobile/directive/ngClick.js', 'src/ngMobile/directive/ngSwipe.js', - 'docs/components/bootstrap/bootstrap.js' + 'docs/components/angular-bootstrap/bootstrap.js' ], 'angularScenario': [ @@ -120,7 +120,7 @@ angularFiles = { 'jstd': [ 'lib/jasmine/jasmine.js', 'lib/jasmine-jstd-adapter/JasmineAdapter.js', - 'lib/jquery/jquery.js', + 'components/jquery/jquery.js', 'test/jquery_remove.js', '@angularSrc', 'src/publishExternalApis.js', @@ -180,7 +180,7 @@ angularFiles = { 'jstdJquery': [ 'lib/jasmine/jasmine.js', 'lib/jasmine-jstd-adapter/JasmineAdapter.js', - 'lib/jquery/jquery.js', + 'components/jquery/jquery.js', 'test/jquery_alias.js', '@angularSrc', 'src/publishExternalApis.js', diff --git a/bower.json b/bower.json new file mode 100644 index 00000000..eff3df32 --- /dev/null +++ b/bower.json @@ -0,0 +1,10 @@ +{ + "name": "AngularJS", + "devDependencies": { + "jquery": "git://github.com/components/jquery.git#v1.8.3", + "lunr.js": "0.3.1", + "google-code-prettify": "1.0.0", + "components-font-awesome": "3.1.0", + "bootstrap": "https://raw.github.com/twitter/bootstrap/v2.0.2/docs/assets/bootstrap.zip" + } +} diff --git a/docs/components/bootstrap/bootstrap-prettify.js b/docs/components/angular-bootstrap/bootstrap-prettify.js similarity index 100% rename from docs/components/bootstrap/bootstrap-prettify.js rename to docs/components/angular-bootstrap/bootstrap-prettify.js diff --git a/docs/components/bootstrap/bootstrap.js b/docs/components/angular-bootstrap/bootstrap.js similarity index 100% rename from docs/components/bootstrap/bootstrap.js rename to docs/components/angular-bootstrap/bootstrap.js diff --git a/docs/components/bootstrap/css/bootstrap.css b/docs/components/bootstrap/css/bootstrap.css deleted file mode 100644 index d2e2a6bf..00000000 --- a/docs/components/bootstrap/css/bootstrap.css +++ /dev/null @@ -1,3990 +0,0 @@ -/*! - * Bootstrap v2.0.2 - * - * Copyright 2012 Twitter, Inc - * Licensed under the Apache License v2.0 - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Designed and built with all the love in the world @twitter by @mdo and @fat. - */ -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} -audio, -canvas, -video { - display: inline-block; - *display: inline; - *zoom: 1; -} -audio:not([controls]) { - display: none; -} -html { - font-size: 100%; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -a:focus { - outline: thin dotted #333; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -a:hover, -a:active { - outline: 0; -} -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - height: auto; - border: 0; - -ms-interpolation-mode: bicubic; - vertical-align: middle; -} -button, -input, -select, -textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; -} -button, -input { - *overflow: visible; - line-height: normal; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - padding: 0; - border: 0; -} -button, -input[type="button"], -input[type="reset"], -input[type="submit"] { - cursor: pointer; - -webkit-appearance: button; -} -input[type="search"] { - -webkit-appearance: textfield; - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-decoration, -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} -textarea { - overflow: auto; - vertical-align: top; -} -.clearfix { - *zoom: 1; -} -.clearfix:before, -.clearfix:after { - display: table; - content: ""; -} -.clearfix:after { - clear: both; -} -.hide-text { - overflow: hidden; - text-indent: 100%; - white-space: nowrap; -} -.input-block-level { - display: block; - width: 100%; - min-height: 28px; - /* Make inputs at least the height of their button counterpart */ - - /* Makes inputs behave like true block-level elements */ - - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - -ms-box-sizing: border-box; - box-sizing: border-box; -} -body { - margin: 0; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 18px; - color: #333333; - background-color: #ffffff; -} -a { - color: #0088cc; - text-decoration: none; -} -a:hover { - color: #005580; - text-decoration: underline; -} -.row { - margin-left: -20px; - *zoom: 1; -} -.row:before, -.row:after { - display: table; - content: ""; -} -.row:after { - clear: both; -} -[class*="span"] { - float: left; - margin-left: 20px; -} -.container, -.navbar-fixed-top .container, -.navbar-fixed-bottom .container { - width: 940px; -} -.span12 { - width: 940px; -} -.span11 { - width: 860px; -} -.span10 { - width: 780px; -} -.span9 { - width: 700px; -} -.span8 { - width: 620px; -} -.span7 { - width: 540px; -} -.span6 { - width: 460px; -} -.span5 { - width: 380px; -} -.span4 { - width: 300px; -} -.span3 { - width: 220px; -} -.span2 { - width: 140px; -} -.span1 { - width: 60px; -} -.offset12 { - margin-left: 980px; -} -.offset11 { - margin-left: 900px; -} -.offset10 { - margin-left: 820px; -} -.offset9 { - margin-left: 740px; -} -.offset8 { - margin-left: 660px; -} -.offset7 { - margin-left: 580px; -} -.offset6 { - margin-left: 500px; -} -.offset5 { - margin-left: 420px; -} -.offset4 { - margin-left: 340px; -} -.offset3 { - margin-left: 260px; -} -.offset2 { - margin-left: 180px; -} -.offset1 { - margin-left: 100px; -} -.row-fluid { - width: 100%; - *zoom: 1; -} -.row-fluid:before, -.row-fluid:after { - display: table; - content: ""; -} -.row-fluid:after { - clear: both; -} -.row-fluid > [class*="span"] { - float: left; - margin-left: 2.127659574%; -} -.row-fluid > [class*="span"]:first-child { - margin-left: 0; -} -.row-fluid > .span12 { - width: 99.99999998999999%; -} -.row-fluid > .span11 { - width: 91.489361693%; -} -.row-fluid > .span10 { - width: 82.97872339599999%; -} -.row-fluid > .span9 { - width: 74.468085099%; -} -.row-fluid > .span8 { - width: 65.95744680199999%; -} -.row-fluid > .span7 { - width: 57.446808505%; -} -.row-fluid > .span6 { - width: 48.93617020799999%; -} -.row-fluid > .span5 { - width: 40.425531911%; -} -.row-fluid > .span4 { - width: 31.914893614%; -} -.row-fluid > .span3 { - width: 23.404255317%; -} -.row-fluid > .span2 { - width: 14.89361702%; -} -.row-fluid > .span1 { - width: 6.382978723%; -} -.container { - margin-left: auto; - margin-right: auto; - *zoom: 1; -} -.container:before, -.container:after { - display: table; - content: ""; -} -.container:after { - clear: both; -} -.container-fluid { - padding-left: 20px; - padding-right: 20px; - *zoom: 1; -} -.container-fluid:before, -.container-fluid:after { - display: table; - content: ""; -} -.container-fluid:after { - clear: both; -} -p { - margin: 0 0 9px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 18px; -} -p small { - font-size: 11px; - color: #999999; -} -.lead { - margin-bottom: 18px; - font-size: 20px; - font-weight: 200; - line-height: 27px; -} -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 0; - font-family: inherit; - font-weight: bold; - color: inherit; - text-rendering: optimizelegibility; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small { - font-weight: normal; - color: #999999; -} -h1 { - font-size: 30px; - line-height: 36px; -} -h1 small { - font-size: 18px; -} -h2 { - font-size: 24px; - line-height: 36px; -} -h2 small { - font-size: 18px; -} -h3 { - line-height: 27px; - font-size: 18px; -} -h3 small { - font-size: 14px; -} -h4, -h5, -h6 { - line-height: 18px; -} -h4 { - font-size: 14px; -} -h4 small { - font-size: 12px; -} -h5 { - font-size: 12px; -} -h6 { - font-size: 11px; - color: #999999; - text-transform: uppercase; -} -.page-header { - padding-bottom: 17px; - margin: 18px 0; - border-bottom: 1px solid #eeeeee; -} -.page-header h1 { - line-height: 1; -} -ul, -ol { - padding: 0; - margin: 0 0 9px 25px; -} -ul ul, -ul ol, -ol ol, -ol ul { - margin-bottom: 0; -} -ul { - list-style: disc; -} -ol { - list-style: decimal; -} -li { - line-height: 18px; -} -ul.unstyled, -ol.unstyled { - margin-left: 0; - list-style: none; -} -dl { - margin-bottom: 18px; -} -dt, -dd { - line-height: 18px; -} -dt { - font-weight: bold; - line-height: 17px; -} -dd { - margin-left: 9px; -} -.dl-horizontal dt { - float: left; - clear: left; - width: 120px; - text-align: right; -} -.dl-horizontal dd { - margin-left: 130px; -} -hr { - margin: 18px 0; - border: 0; - border-top: 1px solid #eeeeee; - border-bottom: 1px solid #ffffff; -} -strong { - font-weight: bold; -} -em { - font-style: italic; -} -.muted { - color: #999999; -} -abbr[title] { - border-bottom: 1px dotted #ddd; - cursor: help; -} -abbr.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 0 0 0 15px; - margin: 0 0 18px; - border-left: 5px solid #eeeeee; -} -blockquote p { - margin-bottom: 0; - font-size: 16px; - font-weight: 300; - line-height: 22.5px; -} -blockquote small { - display: block; - line-height: 18px; - color: #999999; -} -blockquote small:before { - content: '\2014 \00A0'; -} -blockquote.pull-right { - float: right; - padding-left: 0; - padding-right: 15px; - border-left: 0; - border-right: 5px solid #eeeeee; -} -blockquote.pull-right p, -blockquote.pull-right small { - text-align: right; -} -q:before, -q:after, -blockquote:before, -blockquote:after { - content: ""; -} -address { - display: block; - margin-bottom: 18px; - line-height: 18px; - font-style: normal; -} -small { - font-size: 100%; -} -cite { - font-style: normal; -} -code, -pre { - padding: 0 3px 2px; - font-family: Menlo, Monaco, "Courier New", monospace; - font-size: 12px; - color: #333333; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -code { - padding: 2px 4px; - color: #d14; - background-color: #f7f7f9; - border: 1px solid #e1e1e8; -} -pre { - display: block; - padding: 8.5px; - margin: 0 0 9px; - font-size: 12.025px; - line-height: 18px; - background-color: #f5f5f5; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - white-space: pre; - white-space: pre-wrap; - word-break: break-all; - word-wrap: break-word; -} -pre.prettyprint { - margin-bottom: 18px; -} -pre code { - padding: 0; - color: inherit; - background-color: transparent; - border: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -form { - margin: 0 0 18px; -} -fieldset { - padding: 0; - margin: 0; - border: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 27px; - font-size: 19.5px; - line-height: 36px; - color: #333333; - border: 0; - border-bottom: 1px solid #eee; -} -legend small { - font-size: 13.5px; - color: #999999; -} -label, -input, -button, -select, -textarea { - font-size: 13px; - font-weight: normal; - line-height: 18px; -} -input, -button, -select, -textarea { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -} -label { - display: block; - margin-bottom: 5px; - color: #333333; -} -input, -textarea, -select, -.uneditable-input { - display: inline-block; - width: 210px; - height: 18px; - padding: 4px; - margin-bottom: 9px; - font-size: 13px; - line-height: 18px; - color: #555555; - border: 1px solid #cccccc; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.uneditable-textarea { - width: auto; - height: auto; -} -label input, -label textarea, -label select { - display: block; -} -input[type="image"], -input[type="checkbox"], -input[type="radio"] { - width: auto; - height: auto; - padding: 0; - margin: 3px 0; - *margin-top: 0; - /* IE7 */ - - line-height: normal; - cursor: pointer; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; - border: 0 \9; - /* IE9 and down */ - -} -input[type="image"] { - border: 0; -} -input[type="file"] { - width: auto; - padding: initial; - line-height: initial; - border: initial; - background-color: #ffffff; - background-color: initial; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -input[type="button"], -input[type="reset"], -input[type="submit"] { - width: auto; - height: auto; -} -select, -input[type="file"] { - height: 28px; - /* In IE7, the height of the select element cannot be changed by height, only font-size */ - - *margin-top: 4px; - /* For IE7, add top margin to align select with labels */ - - line-height: 28px; -} -input[type="file"] { - line-height: 18px \9; -} -select { - width: 220px; - background-color: #ffffff; -} -select[multiple], -select[size] { - height: auto; -} -input[type="image"] { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -textarea { - height: auto; -} -input[type="hidden"] { - display: none; -} -.radio, -.checkbox { - padding-left: 18px; -} -.radio input[type="radio"], -.checkbox input[type="checkbox"] { - float: left; - margin-left: -18px; -} -.controls > .radio:first-child, -.controls > .checkbox:first-child { - padding-top: 5px; -} -.radio.inline, -.checkbox.inline { - display: inline-block; - padding-top: 5px; - margin-bottom: 0; - vertical-align: middle; -} -.radio.inline + .radio.inline, -.checkbox.inline + .checkbox.inline { - margin-left: 10px; -} -input, -textarea { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; - -moz-transition: border linear 0.2s, box-shadow linear 0.2s; - -ms-transition: border linear 0.2s, box-shadow linear 0.2s; - -o-transition: border linear 0.2s, box-shadow linear 0.2s; - transition: border linear 0.2s, box-shadow linear 0.2s; -} -input:focus, -textarea:focus { - border-color: rgba(82, 168, 236, 0.8); - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); - outline: 0; - outline: thin dotted \9; - /* IE6-9 */ - -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus, -select:focus { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - outline: thin dotted #333; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.input-mini { - width: 60px; -} -.input-small { - width: 90px; -} -.input-medium { - width: 150px; -} -.input-large { - width: 210px; -} -.input-xlarge { - width: 270px; -} -.input-xxlarge { - width: 530px; -} -input[class*="span"], -select[class*="span"], -textarea[class*="span"], -.uneditable-input { - float: none; - margin-left: 0; -} -input, -textarea, -.uneditable-input { - margin-left: 0; -} -input.span12, textarea.span12, .uneditable-input.span12 { - width: 930px; -} -input.span11, textarea.span11, .uneditable-input.span11 { - width: 850px; -} -input.span10, textarea.span10, .uneditable-input.span10 { - width: 770px; -} -input.span9, textarea.span9, .uneditable-input.span9 { - width: 690px; -} -input.span8, textarea.span8, .uneditable-input.span8 { - width: 610px; -} -input.span7, textarea.span7, .uneditable-input.span7 { - width: 530px; -} -input.span6, textarea.span6, .uneditable-input.span6 { - width: 450px; -} -input.span5, textarea.span5, .uneditable-input.span5 { - width: 370px; -} -input.span4, textarea.span4, .uneditable-input.span4 { - width: 290px; -} -input.span3, textarea.span3, .uneditable-input.span3 { - width: 210px; -} -input.span2, textarea.span2, .uneditable-input.span2 { - width: 130px; -} -input.span1, textarea.span1, .uneditable-input.span1 { - width: 50px; -} -input[disabled], -select[disabled], -textarea[disabled], -input[readonly], -select[readonly], -textarea[readonly] { - background-color: #eeeeee; - border-color: #ddd; - cursor: not-allowed; -} -.control-group.warning > label, -.control-group.warning .help-block, -.control-group.warning .help-inline { - color: #c09853; -} -.control-group.warning input, -.control-group.warning select, -.control-group.warning textarea { - color: #c09853; - border-color: #c09853; -} -.control-group.warning input:focus, -.control-group.warning select:focus, -.control-group.warning textarea:focus { - border-color: #a47e3c; - -webkit-box-shadow: 0 0 6px #dbc59e; - -moz-box-shadow: 0 0 6px #dbc59e; - box-shadow: 0 0 6px #dbc59e; -} -.control-group.warning .input-prepend .add-on, -.control-group.warning .input-append .add-on { - color: #c09853; - background-color: #fcf8e3; - border-color: #c09853; -} -.control-group.error > label, -.control-group.error .help-block, -.control-group.error .help-inline { - color: #b94a48; -} -.control-group.error input, -.control-group.error select, -.control-group.error textarea { - color: #b94a48; - border-color: #b94a48; -} -.control-group.error input:focus, -.control-group.error select:focus, -.control-group.error textarea:focus { - border-color: #953b39; - -webkit-box-shadow: 0 0 6px #d59392; - -moz-box-shadow: 0 0 6px #d59392; - box-shadow: 0 0 6px #d59392; -} -.control-group.error .input-prepend .add-on, -.control-group.error .input-append .add-on { - color: #b94a48; - background-color: #f2dede; - border-color: #b94a48; -} -.control-group.success > label, -.control-group.success .help-block, -.control-group.success .help-inline { - color: #468847; -} -.control-group.success input, -.control-group.success select, -.control-group.success textarea { - color: #468847; - border-color: #468847; -} -.control-group.success input:focus, -.control-group.success select:focus, -.control-group.success textarea:focus { - border-color: #356635; - -webkit-box-shadow: 0 0 6px #7aba7b; - -moz-box-shadow: 0 0 6px #7aba7b; - box-shadow: 0 0 6px #7aba7b; -} -.control-group.success .input-prepend .add-on, -.control-group.success .input-append .add-on { - color: #468847; - background-color: #dff0d8; - border-color: #468847; -} -input:focus:required:invalid, -textarea:focus:required:invalid, -select:focus:required:invalid { - color: #b94a48; - border-color: #ee5f5b; -} -input:focus:required:invalid:focus, -textarea:focus:required:invalid:focus, -select:focus:required:invalid:focus { - border-color: #e9322d; - -webkit-box-shadow: 0 0 6px #f8b9b7; - -moz-box-shadow: 0 0 6px #f8b9b7; - box-shadow: 0 0 6px #f8b9b7; -} -.form-actions { - padding: 17px 20px 18px; - margin-top: 18px; - margin-bottom: 18px; - background-color: #eeeeee; - border-top: 1px solid #ddd; - *zoom: 1; -} -.form-actions:before, -.form-actions:after { - display: table; - content: ""; -} -.form-actions:after { - clear: both; -} -.uneditable-input { - display: block; - background-color: #ffffff; - border-color: #eee; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); - cursor: not-allowed; -} -:-moz-placeholder { - color: #999999; -} -::-webkit-input-placeholder { - color: #999999; -} -.help-block, -.help-inline { - color: #555555; -} -.help-block { - display: block; - margin-bottom: 9px; -} -.help-inline { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - vertical-align: middle; - padding-left: 5px; -} -.input-prepend, -.input-append { - margin-bottom: 5px; -} -.input-prepend input, -.input-append input, -.input-prepend select, -.input-append select, -.input-prepend .uneditable-input, -.input-append .uneditable-input { - *margin-left: 0; - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.input-prepend input:focus, -.input-append input:focus, -.input-prepend select:focus, -.input-append select:focus, -.input-prepend .uneditable-input:focus, -.input-append .uneditable-input:focus { - position: relative; - z-index: 2; -} -.input-prepend .uneditable-input, -.input-append .uneditable-input { - border-left-color: #ccc; -} -.input-prepend .add-on, -.input-append .add-on { - display: inline-block; - width: auto; - min-width: 16px; - height: 18px; - padding: 4px 5px; - font-weight: normal; - line-height: 18px; - text-align: center; - text-shadow: 0 1px 0 #ffffff; - vertical-align: middle; - background-color: #eeeeee; - border: 1px solid #ccc; -} -.input-prepend .add-on, -.input-append .add-on, -.input-prepend .btn, -.input-append .btn { - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.input-prepend .active, -.input-append .active { - background-color: #a9dba9; - border-color: #46a546; -} -.input-prepend .add-on, -.input-prepend .btn { - margin-right: -1px; -} -.input-append input, -.input-append select .uneditable-input { - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.input-append .uneditable-input { - border-left-color: #eee; - border-right-color: #ccc; -} -.input-append .add-on, -.input-append .btn { - margin-left: -1px; - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.input-prepend.input-append input, -.input-prepend.input-append select, -.input-prepend.input-append .uneditable-input { - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.input-prepend.input-append .add-on:first-child, -.input-prepend.input-append .btn:first-child { - margin-right: -1px; - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.input-prepend.input-append .add-on:last-child, -.input-prepend.input-append .btn:last-child { - margin-left: -1px; - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.search-query { - padding-left: 14px; - padding-right: 14px; - margin-bottom: 0; - -webkit-border-radius: 14px; - -moz-border-radius: 14px; - border-radius: 14px; -} -.form-search input, -.form-inline input, -.form-horizontal input, -.form-search textarea, -.form-inline textarea, -.form-horizontal textarea, -.form-search select, -.form-inline select, -.form-horizontal select, -.form-search .help-inline, -.form-inline .help-inline, -.form-horizontal .help-inline, -.form-search .uneditable-input, -.form-inline .uneditable-input, -.form-horizontal .uneditable-input, -.form-search .input-prepend, -.form-inline .input-prepend, -.form-horizontal .input-prepend, -.form-search .input-append, -.form-inline .input-append, -.form-horizontal .input-append { - display: inline-block; - margin-bottom: 0; -} -.form-search .hide, -.form-inline .hide, -.form-horizontal .hide { - display: none; -} -.form-search label, -.form-inline label { - display: inline-block; -} -.form-search .input-append, -.form-inline .input-append, -.form-search .input-prepend, -.form-inline .input-prepend { - margin-bottom: 0; -} -.form-search .radio, -.form-search .checkbox, -.form-inline .radio, -.form-inline .checkbox { - padding-left: 0; - margin-bottom: 0; - vertical-align: middle; -} -.form-search .radio input[type="radio"], -.form-search .checkbox input[type="checkbox"], -.form-inline .radio input[type="radio"], -.form-inline .checkbox input[type="checkbox"] { - float: left; - margin-left: 0; - margin-right: 3px; -} -.control-group { - margin-bottom: 9px; -} -legend + .control-group { - margin-top: 18px; - -webkit-margin-top-collapse: separate; -} -.form-horizontal .control-group { - margin-bottom: 18px; - *zoom: 1; -} -.form-horizontal .control-group:before, -.form-horizontal .control-group:after { - display: table; - content: ""; -} -.form-horizontal .control-group:after { - clear: both; -} -.form-horizontal .control-label { - float: left; - width: 140px; - padding-top: 5px; - text-align: right; -} -.form-horizontal .controls { - margin-left: 160px; - /* Super jank IE7 fix to ensure the inputs in .input-append and input-prepend don't inherit the margin of the parent, in this case .controls */ - - *display: inline-block; - *margin-left: 0; - *padding-left: 20px; -} -.form-horizontal .help-block { - margin-top: 9px; - margin-bottom: 0; -} -.form-horizontal .form-actions { - padding-left: 160px; -} -table { - max-width: 100%; - border-collapse: collapse; - border-spacing: 0; - background-color: transparent; -} -.table { - width: 100%; - margin-bottom: 18px; -} -.table th, -.table td { - padding: 8px; - line-height: 18px; - text-align: left; - vertical-align: top; - border-top: 1px solid #dddddd; -} -.table th { - font-weight: bold; -} -.table thead th { - vertical-align: bottom; -} -.table colgroup + thead tr:first-child th, -.table colgroup + thead tr:first-child td, -.table thead:first-child tr:first-child th, -.table thead:first-child tr:first-child td { - border-top: 0; -} -.table tbody + tbody { - border-top: 2px solid #dddddd; -} -.table-condensed th, -.table-condensed td { - padding: 4px 5px; -} -.table-bordered { - border: 1px solid #dddddd; - border-left: 0; - border-collapse: separate; - *border-collapse: collapsed; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.table-bordered th, -.table-bordered td { - border-left: 1px solid #dddddd; -} -.table-bordered thead:first-child tr:first-child th, -.table-bordered tbody:first-child tr:first-child th, -.table-bordered tbody:first-child tr:first-child td { - border-top: 0; -} -.table-bordered thead:first-child tr:first-child th:first-child, -.table-bordered tbody:first-child tr:first-child td:first-child { - -webkit-border-radius: 4px 0 0 0; - -moz-border-radius: 4px 0 0 0; - border-radius: 4px 0 0 0; -} -.table-bordered thead:first-child tr:first-child th:last-child, -.table-bordered tbody:first-child tr:first-child td:last-child { - -webkit-border-radius: 0 4px 0 0; - -moz-border-radius: 0 4px 0 0; - border-radius: 0 4px 0 0; -} -.table-bordered thead:last-child tr:last-child th:first-child, -.table-bordered tbody:last-child tr:last-child td:first-child { - -webkit-border-radius: 0 0 0 4px; - -moz-border-radius: 0 0 0 4px; - border-radius: 0 0 0 4px; -} -.table-bordered thead:last-child tr:last-child th:last-child, -.table-bordered tbody:last-child tr:last-child td:last-child { - -webkit-border-radius: 0 0 4px 0; - -moz-border-radius: 0 0 4px 0; - border-radius: 0 0 4px 0; -} -.table-striped tbody tr:nth-child(odd) td, -.table-striped tbody tr:nth-child(odd) th { - background-color: #f9f9f9; -} -.table tbody tr:hover td, -.table tbody tr:hover th { - background-color: #f5f5f5; -} -table .span1 { - float: none; - width: 44px; - margin-left: 0; -} -table .span2 { - float: none; - width: 124px; - margin-left: 0; -} -table .span3 { - float: none; - width: 204px; - margin-left: 0; -} -table .span4 { - float: none; - width: 284px; - margin-left: 0; -} -table .span5 { - float: none; - width: 364px; - margin-left: 0; -} -table .span6 { - float: none; - width: 444px; - margin-left: 0; -} -table .span7 { - float: none; - width: 524px; - margin-left: 0; -} -table .span8 { - float: none; - width: 604px; - margin-left: 0; -} -table .span9 { - float: none; - width: 684px; - margin-left: 0; -} -table .span10 { - float: none; - width: 764px; - margin-left: 0; -} -table .span11 { - float: none; - width: 844px; - margin-left: 0; -} -table .span12 { - float: none; - width: 924px; - margin-left: 0; -} -table .span13 { - float: none; - width: 1004px; - margin-left: 0; -} -table .span14 { - float: none; - width: 1084px; - margin-left: 0; -} -table .span15 { - float: none; - width: 1164px; - margin-left: 0; -} -table .span16 { - float: none; - width: 1244px; - margin-left: 0; -} -table .span17 { - float: none; - width: 1324px; - margin-left: 0; -} -table .span18 { - float: none; - width: 1404px; - margin-left: 0; -} -table .span19 { - float: none; - width: 1484px; - margin-left: 0; -} -table .span20 { - float: none; - width: 1564px; - margin-left: 0; -} -table .span21 { - float: none; - width: 1644px; - margin-left: 0; -} -table .span22 { - float: none; - width: 1724px; - margin-left: 0; -} -table .span23 { - float: none; - width: 1804px; - margin-left: 0; -} -table .span24 { - float: none; - width: 1884px; - margin-left: 0; -} -[class^="icon-"], -[class*=" icon-"] { - display: inline-block; - width: 14px; - height: 14px; - line-height: 14px; - vertical-align: text-top; - background-image: url("../../../docs/img/glyphicons-halflings.png"); - background-position: 14px 14px; - background-repeat: no-repeat; - *margin-right: .3em; -} -[class^="icon-"]:last-child, -[class*=" icon-"]:last-child { - *margin-left: 0; -} -.icon-white { - background-image: url("../../../docs/img/glyphicons-halflings-white.png"); -} -.icon-glass { - background-position: 0 0; -} -.icon-music { - background-position: -24px 0; -} -.icon-search { - background-position: -48px 0; -} -.icon-envelope { - background-position: -72px 0; -} -.icon-heart { - background-position: -96px 0; -} -.icon-star { - background-position: -120px 0; -} -.icon-star-empty { - background-position: -144px 0; -} -.icon-user { - background-position: -168px 0; -} -.icon-film { - background-position: -192px 0; -} -.icon-th-large { - background-position: -216px 0; -} -.icon-th { - background-position: -240px 0; -} -.icon-th-list { - background-position: -264px 0; -} -.icon-ok { - background-position: -288px 0; -} -.icon-remove { - background-position: -312px 0; -} -.icon-zoom-in { - background-position: -336px 0; -} -.icon-zoom-out { - background-position: -360px 0; -} -.icon-off { - background-position: -384px 0; -} -.icon-signal { - background-position: -408px 0; -} -.icon-cog { - background-position: -432px 0; -} -.icon-trash { - background-position: -456px 0; -} -.icon-home { - background-position: 0 -24px; -} -.icon-file { - background-position: -24px -24px; -} -.icon-time { - background-position: -48px -24px; -} -.icon-road { - background-position: -72px -24px; -} -.icon-download-alt { - background-position: -96px -24px; -} -.icon-download { - background-position: -120px -24px; -} -.icon-upload { - background-position: -144px -24px; -} -.icon-inbox { - background-position: -168px -24px; -} -.icon-play-circle { - background-position: -192px -24px; -} -.icon-repeat { - background-position: -216px -24px; -} -.icon-refresh { - background-position: -240px -24px; -} -.icon-list-alt { - background-position: -264px -24px; -} -.icon-lock { - background-position: -287px -24px; -} -.icon-flag { - background-position: -312px -24px; -} -.icon-headphones { - background-position: -336px -24px; -} -.icon-volume-off { - background-position: -360px -24px; -} -.icon-volume-down { - background-position: -384px -24px; -} -.icon-volume-up { - background-position: -408px -24px; -} -.icon-qrcode { - background-position: -432px -24px; -} -.icon-barcode { - background-position: -456px -24px; -} -.icon-tag { - background-position: 0 -48px; -} -.icon-tags { - background-position: -25px -48px; -} -.icon-book { - background-position: -48px -48px; -} -.icon-bookmark { - background-position: -72px -48px; -} -.icon-print { - background-position: -96px -48px; -} -.icon-camera { - background-position: -120px -48px; -} -.icon-font { - background-position: -144px -48px; -} -.icon-bold { - background-position: -167px -48px; -} -.icon-italic { - background-position: -192px -48px; -} -.icon-text-height { - background-position: -216px -48px; -} -.icon-text-width { - background-position: -240px -48px; -} -.icon-align-left { - background-position: -264px -48px; -} -.icon-align-center { - background-position: -288px -48px; -} -.icon-align-right { - background-position: -312px -48px; -} -.icon-align-justify { - background-position: -336px -48px; -} -.icon-list { - background-position: -360px -48px; -} -.icon-indent-left { - background-position: -384px -48px; -} -.icon-indent-right { - background-position: -408px -48px; -} -.icon-facetime-video { - background-position: -432px -48px; -} -.icon-picture { - background-position: -456px -48px; -} -.icon-pencil { - background-position: 0 -72px; -} -.icon-map-marker { - background-position: -24px -72px; -} -.icon-adjust { - background-position: -48px -72px; -} -.icon-tint { - background-position: -72px -72px; -} -.icon-edit { - background-position: -96px -72px; -} -.icon-share { - background-position: -120px -72px; -} -.icon-check { - background-position: -144px -72px; -} -.icon-move { - background-position: -168px -72px; -} -.icon-step-backward { - background-position: -192px -72px; -} -.icon-fast-backward { - background-position: -216px -72px; -} -.icon-backward { - background-position: -240px -72px; -} -.icon-play { - background-position: -264px -72px; -} -.icon-pause { - background-position: -288px -72px; -} -.icon-stop { - background-position: -312px -72px; -} -.icon-forward { - background-position: -336px -72px; -} -.icon-fast-forward { - background-position: -360px -72px; -} -.icon-step-forward { - background-position: -384px -72px; -} -.icon-eject { - background-position: -408px -72px; -} -.icon-chevron-left { - background-position: -432px -72px; -} -.icon-chevron-right { - background-position: -456px -72px; -} -.icon-plus-sign { - background-position: 0 -96px; -} -.icon-minus-sign { - background-position: -24px -96px; -} -.icon-remove-sign { - background-position: -48px -96px; -} -.icon-ok-sign { - background-position: -72px -96px; -} -.icon-question-sign { - background-position: -96px -96px; -} -.icon-info-sign { - background-position: -120px -96px; -} -.icon-screenshot { - background-position: -144px -96px; -} -.icon-remove-circle { - background-position: -168px -96px; -} -.icon-ok-circle { - background-position: -192px -96px; -} -.icon-ban-circle { - background-position: -216px -96px; -} -.icon-arrow-left { - background-position: -240px -96px; -} -.icon-arrow-right { - background-position: -264px -96px; -} -.icon-arrow-up { - background-position: -289px -96px; -} -.icon-arrow-down { - background-position: -312px -96px; -} -.icon-share-alt { - background-position: -336px -96px; -} -.icon-resize-full { - background-position: -360px -96px; -} -.icon-resize-small { - background-position: -384px -96px; -} -.icon-plus { - background-position: -408px -96px; -} -.icon-minus { - background-position: -433px -96px; -} -.icon-asterisk { - background-position: -456px -96px; -} -.icon-exclamation-sign { - background-position: 0 -120px; -} -.icon-gift { - background-position: -24px -120px; -} -.icon-leaf { - background-position: -48px -120px; -} -.icon-fire { - background-position: -72px -120px; -} -.icon-eye-open { - background-position: -96px -120px; -} -.icon-eye-close { - background-position: -120px -120px; -} -.icon-warning-sign { - background-position: -144px -120px; -} -.icon-plane { - background-position: -168px -120px; -} -.icon-calendar { - background-position: -192px -120px; -} -.icon-random { - background-position: -216px -120px; -} -.icon-comment { - background-position: -240px -120px; -} -.icon-magnet { - background-position: -264px -120px; -} -.icon-chevron-up { - background-position: -288px -120px; -} -.icon-chevron-down { - background-position: -313px -119px; -} -.icon-retweet { - background-position: -336px -120px; -} -.icon-shopping-cart { - background-position: -360px -120px; -} -.icon-folder-close { - background-position: -384px -120px; -} -.icon-folder-open { - background-position: -408px -120px; -} -.icon-resize-vertical { - background-position: -432px -119px; -} -.icon-resize-horizontal { - background-position: -456px -118px; -} -.dropdown { - position: relative; -} -.dropdown-toggle { - *margin-bottom: -3px; -} -.dropdown-toggle:active, -.open .dropdown-toggle { - outline: 0; -} -.caret { - display: inline-block; - width: 0; - height: 0; - vertical-align: top; - border-left: 4px solid transparent; - border-right: 4px solid transparent; - border-top: 4px solid #000000; - opacity: 0.3; - filter: alpha(opacity=30); - content: ""; -} -.dropdown .caret { - margin-top: 8px; - margin-left: 2px; -} -.dropdown:hover .caret, -.open.dropdown .caret { - opacity: 1; - filter: alpha(opacity=100); -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - float: left; - display: none; - min-width: 160px; - padding: 4px 0; - margin: 0; - list-style: none; - background-color: #ffffff; - border-color: #ccc; - border-color: rgba(0, 0, 0, 0.2); - border-style: solid; - border-width: 1px; - -webkit-border-radius: 0 0 5px 5px; - -moz-border-radius: 0 0 5px 5px; - border-radius: 0 0 5px 5px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; - *border-right-width: 2px; - *border-bottom-width: 2px; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 8px 1px; - overflow: hidden; - background-color: #e5e5e5; - border-bottom: 1px solid #ffffff; - *width: 100%; - *margin: -5px 0 5px; -} -.dropdown-menu a { - display: block; - padding: 3px 15px; - clear: both; - font-weight: normal; - line-height: 18px; - color: #333333; - white-space: nowrap; -} -.dropdown-menu li > a:hover, -.dropdown-menu .active > a, -.dropdown-menu .active > a:hover { - color: #ffffff; - text-decoration: none; - background-color: #0088cc; -} -.dropdown.open { - *z-index: 1000; -} -.dropdown.open .dropdown-toggle { - color: #ffffff; - background: #ccc; - background: rgba(0, 0, 0, 0.3); -} -.dropdown.open .dropdown-menu { - display: block; -} -.pull-right .dropdown-menu { - left: auto; - right: 0; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px solid #000000; - content: "\2191"; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 1px; -} -.typeahead { - margin-top: 2px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #eee; - border: 1px solid rgba(0, 0, 0, 0.05); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-large { - padding: 24px; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} -.well-small { - padding: 9px; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.fade { - -webkit-transition: opacity 0.15s linear; - -moz-transition: opacity 0.15s linear; - -ms-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; - opacity: 0; -} -.fade.in { - opacity: 1; -} -.collapse { - -webkit-transition: height 0.35s ease; - -moz-transition: height 0.35s ease; - -ms-transition: height 0.35s ease; - -o-transition: height 0.35s ease; - transition: height 0.35s ease; - position: relative; - overflow: hidden; - height: 0; -} -.collapse.in { - height: auto; -} -.close { - float: right; - font-size: 20px; - font-weight: bold; - line-height: 18px; - color: #000000; - text-shadow: 0 1px 0 #ffffff; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover { - color: #000000; - text-decoration: none; - opacity: 0.4; - filter: alpha(opacity=40); - cursor: pointer; -} -.btn { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - padding: 4px 10px 4px; - margin-bottom: 0; - font-size: 13px; - line-height: 18px; - color: #333333; - text-align: center; - text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); - vertical-align: middle; - background-color: #f5f5f5; - background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); - background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); - background-image: linear-gradient(top, #ffffff, #e6e6e6); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); - border-color: #e6e6e6 #e6e6e6 #bfbfbf; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); - border: 1px solid #cccccc; - border-bottom-color: #b3b3b3; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - cursor: pointer; - *margin-left: .3em; -} -.btn:hover, -.btn:active, -.btn.active, -.btn.disabled, -.btn[disabled] { - background-color: #e6e6e6; -} -.btn:active, -.btn.active { - background-color: #cccccc \9; -} -.btn:first-child { - *margin-left: 0; -} -.btn:hover { - color: #333333; - text-decoration: none; - background-color: #e6e6e6; - background-position: 0 -15px; - -webkit-transition: background-position 0.1s linear; - -moz-transition: background-position 0.1s linear; - -ms-transition: background-position 0.1s linear; - -o-transition: background-position 0.1s linear; - transition: background-position 0.1s linear; -} -.btn:focus { - outline: thin dotted #333; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn.active, -.btn:active { - background-image: none; - -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - background-color: #e6e6e6; - background-color: #d9d9d9 \9; - outline: 0; -} -.btn.disabled, -.btn[disabled] { - cursor: default; - background-image: none; - background-color: #e6e6e6; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.btn-large { - padding: 9px 14px; - font-size: 15px; - line-height: normal; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.btn-large [class^="icon-"] { - margin-top: 1px; -} -.btn-small { - padding: 5px 9px; - font-size: 11px; - line-height: 16px; -} -.btn-small [class^="icon-"] { - margin-top: -1px; -} -.btn-mini { - padding: 2px 6px; - font-size: 11px; - line-height: 14px; -} -.btn-primary, -.btn-primary:hover, -.btn-warning, -.btn-warning:hover, -.btn-danger, -.btn-danger:hover, -.btn-success, -.btn-success:hover, -.btn-info, -.btn-info:hover, -.btn-inverse, -.btn-inverse:hover { - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - color: #ffffff; -} -.btn-primary.active, -.btn-warning.active, -.btn-danger.active, -.btn-success.active, -.btn-info.active, -.btn-inverse.active { - color: rgba(255, 255, 255, 0.75); -} -.btn-primary { - background-color: #0074cc; - background-image: -moz-linear-gradient(top, #0088cc, #0055cc); - background-image: -ms-linear-gradient(top, #0088cc, #0055cc); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc)); - background-image: -webkit-linear-gradient(top, #0088cc, #0055cc); - background-image: -o-linear-gradient(top, #0088cc, #0055cc); - background-image: linear-gradient(top, #0088cc, #0055cc); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0); - border-color: #0055cc #0055cc #003580; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} -.btn-primary:hover, -.btn-primary:active, -.btn-primary.active, -.btn-primary.disabled, -.btn-primary[disabled] { - background-color: #0055cc; -} -.btn-primary:active, -.btn-primary.active { - background-color: #004099 \9; -} -.btn-warning { - background-color: #faa732; - background-image: -moz-linear-gradient(top, #fbb450, #f89406); - background-image: -ms-linear-gradient(top, #fbb450, #f89406); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); - background-image: -webkit-linear-gradient(top, #fbb450, #f89406); - background-image: -o-linear-gradient(top, #fbb450, #f89406); - background-image: linear-gradient(top, #fbb450, #f89406); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); - border-color: #f89406 #f89406 #ad6704; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} -.btn-warning:hover, -.btn-warning:active, -.btn-warning.active, -.btn-warning.disabled, -.btn-warning[disabled] { - background-color: #f89406; -} -.btn-warning:active, -.btn-warning.active { - background-color: #c67605 \9; -} -.btn-danger { - background-color: #da4f49; - background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); - background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); - background-image: linear-gradient(top, #ee5f5b, #bd362f); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); - border-color: #bd362f #bd362f #802420; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} -.btn-danger:hover, -.btn-danger:active, -.btn-danger.active, -.btn-danger.disabled, -.btn-danger[disabled] { - background-color: #bd362f; -} -.btn-danger:active, -.btn-danger.active { - background-color: #942a25 \9; -} -.btn-success { - background-color: #5bb75b; - background-image: -moz-linear-gradient(top, #62c462, #51a351); - background-image: -ms-linear-gradient(top, #62c462, #51a351); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); - background-image: -webkit-linear-gradient(top, #62c462, #51a351); - background-image: -o-linear-gradient(top, #62c462, #51a351); - background-image: linear-gradient(top, #62c462, #51a351); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); - border-color: #51a351 #51a351 #387038; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} -.btn-success:hover, -.btn-success:active, -.btn-success.active, -.btn-success.disabled, -.btn-success[disabled] { - background-color: #51a351; -} -.btn-success:active, -.btn-success.active { - background-color: #408140 \9; -} -.btn-info { - background-color: #49afcd; - background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); - background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); - background-image: linear-gradient(top, #5bc0de, #2f96b4); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); - border-color: #2f96b4 #2f96b4 #1f6377; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} -.btn-info:hover, -.btn-info:active, -.btn-info.active, -.btn-info.disabled, -.btn-info[disabled] { - background-color: #2f96b4; -} -.btn-info:active, -.btn-info.active { - background-color: #24748c \9; -} -.btn-inverse { - background-color: #414141; - background-image: -moz-linear-gradient(top, #555555, #222222); - background-image: -ms-linear-gradient(top, #555555, #222222); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222)); - background-image: -webkit-linear-gradient(top, #555555, #222222); - background-image: -o-linear-gradient(top, #555555, #222222); - background-image: linear-gradient(top, #555555, #222222); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0); - border-color: #222222 #222222 #000000; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} -.btn-inverse:hover, -.btn-inverse:active, -.btn-inverse.active, -.btn-inverse.disabled, -.btn-inverse[disabled] { - background-color: #222222; -} -.btn-inverse:active, -.btn-inverse.active { - background-color: #080808 \9; -} -button.btn, -input[type="submit"].btn { - *padding-top: 2px; - *padding-bottom: 2px; -} -button.btn::-moz-focus-inner, -input[type="submit"].btn::-moz-focus-inner { - padding: 0; - border: 0; -} -button.btn.btn-large, -input[type="submit"].btn.btn-large { - *padding-top: 7px; - *padding-bottom: 7px; -} -button.btn.btn-small, -input[type="submit"].btn.btn-small { - *padding-top: 3px; - *padding-bottom: 3px; -} -button.btn.btn-mini, -input[type="submit"].btn.btn-mini { - *padding-top: 1px; - *padding-bottom: 1px; -} -.btn-group { - position: relative; - *zoom: 1; - *margin-left: .3em; -} -.btn-group:before, -.btn-group:after { - display: table; - content: ""; -} -.btn-group:after { - clear: both; -} -.btn-group:first-child { - *margin-left: 0; -} -.btn-group + .btn-group { - margin-left: 5px; -} -.btn-toolbar { - margin-top: 9px; - margin-bottom: 9px; -} -.btn-toolbar .btn-group { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; -} -.btn-group .btn { - position: relative; - float: left; - margin-left: -1px; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.btn-group .btn:first-child { - margin-left: 0; - -webkit-border-top-left-radius: 4px; - -moz-border-radius-topleft: 4px; - border-top-left-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -moz-border-radius-bottomleft: 4px; - border-bottom-left-radius: 4px; -} -.btn-group .btn:last-child, -.btn-group .dropdown-toggle { - -webkit-border-top-right-radius: 4px; - -moz-border-radius-topright: 4px; - border-top-right-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -moz-border-radius-bottomright: 4px; - border-bottom-right-radius: 4px; -} -.btn-group .btn.large:first-child { - margin-left: 0; - -webkit-border-top-left-radius: 6px; - -moz-border-radius-topleft: 6px; - border-top-left-radius: 6px; - -webkit-border-bottom-left-radius: 6px; - -moz-border-radius-bottomleft: 6px; - border-bottom-left-radius: 6px; -} -.btn-group .btn.large:last-child, -.btn-group .large.dropdown-toggle { - -webkit-border-top-right-radius: 6px; - -moz-border-radius-topright: 6px; - border-top-right-radius: 6px; - -webkit-border-bottom-right-radius: 6px; - -moz-border-radius-bottomright: 6px; - border-bottom-right-radius: 6px; -} -.btn-group .btn:hover, -.btn-group .btn:focus, -.btn-group .btn:active, -.btn-group .btn.active { - z-index: 2; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; - -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); - -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); - 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); - *padding-top: 3px; - *padding-bottom: 3px; -} -.btn-group .btn-mini.dropdown-toggle { - padding-left: 5px; - padding-right: 5px; - *padding-top: 1px; - *padding-bottom: 1px; -} -.btn-group .btn-small.dropdown-toggle { - *padding-top: 4px; - *padding-bottom: 4px; -} -.btn-group .btn-large.dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} -.btn-group.open { - *z-index: 1000; -} -.btn-group.open .dropdown-menu { - display: block; - margin-top: 1px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.btn-group.open .dropdown-toggle { - background-image: none; - -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -} -.btn .caret { - margin-top: 7px; - margin-left: 0; -} -.btn:hover .caret, -.open.btn-group .caret { - opacity: 1; - filter: alpha(opacity=100); -} -.btn-mini .caret { - margin-top: 5px; -} -.btn-small .caret { - margin-top: 6px; -} -.btn-large .caret { - margin-top: 6px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #000000; -} -.btn-primary .caret, -.btn-warning .caret, -.btn-danger .caret, -.btn-info .caret, -.btn-success .caret, -.btn-inverse .caret { - border-top-color: #ffffff; - border-bottom-color: #ffffff; - opacity: 0.75; - filter: alpha(opacity=75); -} -.alert { - padding: 8px 35px 8px 14px; - margin-bottom: 18px; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); - background-color: #fcf8e3; - border: 1px solid #fbeed5; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - color: #c09853; -} -.alert-heading { - color: inherit; -} -.alert .close { - position: relative; - top: -2px; - right: -21px; - line-height: 18px; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #468847; -} -.alert-danger, -.alert-error { - background-color: #f2dede; - border-color: #eed3d7; - color: #b94a48; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #3a87ad; -} -.alert-block { - padding-top: 14px; - padding-bottom: 14px; -} -.alert-block > p, -.alert-block > ul { - margin-bottom: 0; -} -.alert-block p + p { - margin-top: 5px; -} -.nav { - margin-left: 0; - margin-bottom: 18px; - list-style: none; -} -.nav > li > a { - display: block; -} -.nav > li > a:hover { - text-decoration: none; - background-color: #eeeeee; -} -.nav .nav-header { - display: block; - padding: 3px 15px; - font-size: 11px; - font-weight: bold; - line-height: 18px; - color: #999999; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); - text-transform: uppercase; -} -.nav li + .nav-header { - margin-top: 9px; -} -.nav-list { - padding-left: 15px; - padding-right: 15px; - margin-bottom: 0; -} -.nav-list > li > a, -.nav-list .nav-header { - margin-left: -15px; - margin-right: -15px; - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); -} -.nav-list > li > a { - padding: 3px 15px; -} -.nav-list > .active > a, -.nav-list > .active > a:hover { - color: #ffffff; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); - background-color: #0088cc; -} -.nav-list [class^="icon-"] { - margin-right: 2px; -} -.nav-list .divider { - height: 1px; - margin: 8px 1px; - overflow: hidden; - background-color: #e5e5e5; - border-bottom: 1px solid #ffffff; - *width: 100%; - *margin: -5px 0 5px; -} -.nav-tabs, -.nav-pills { - *zoom: 1; -} -.nav-tabs:before, -.nav-pills:before, -.nav-tabs:after, -.nav-pills:after { - display: table; - content: ""; -} -.nav-tabs:after, -.nav-pills:after { - clear: both; -} -.nav-tabs > li, -.nav-pills > li { - float: left; -} -.nav-tabs > li > a, -.nav-pills > li > a { - padding-right: 12px; - padding-left: 12px; - margin-right: 2px; - line-height: 14px; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - margin-bottom: -1px; -} -.nav-tabs > li > a { - padding-top: 8px; - padding-bottom: 8px; - line-height: 18px; - border: 1px solid transparent; - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #dddddd; -} -.nav-tabs > .active > a, -.nav-tabs > .active > a:hover { - color: #555555; - background-color: #ffffff; - border: 1px solid #ddd; - border-bottom-color: transparent; - cursor: default; -} -.nav-pills > li > a { - padding-top: 8px; - padding-bottom: 8px; - margin-top: 2px; - margin-bottom: 2px; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} -.nav-pills > .active > a, -.nav-pills > .active > a:hover { - color: #ffffff; - background-color: #0088cc; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li > a { - margin-right: 0; -} -.nav-tabs.nav-stacked { - border-bottom: 0; -} -.nav-tabs.nav-stacked > li > a { - border: 1px solid #ddd; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.nav-tabs.nav-stacked > li:first-child > a { - -webkit-border-radius: 4px 4px 0 0; - -moz-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; -} -.nav-tabs.nav-stacked > li:last-child > a { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.nav-tabs.nav-stacked > li > a:hover { - border-color: #ddd; - z-index: 2; -} -.nav-pills.nav-stacked > li > a { - margin-bottom: 3px; -} -.nav-pills.nav-stacked > li:last-child > a { - margin-bottom: 1px; -} -.nav-tabs .dropdown-menu, -.nav-pills .dropdown-menu { - margin-top: 1px; - border-width: 1px; -} -.nav-pills .dropdown-menu { - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.nav-tabs .dropdown-toggle .caret, -.nav-pills .dropdown-toggle .caret { - border-top-color: #0088cc; - border-bottom-color: #0088cc; - margin-top: 6px; -} -.nav-tabs .dropdown-toggle:hover .caret, -.nav-pills .dropdown-toggle:hover .caret { - border-top-color: #005580; - border-bottom-color: #005580; -} -.nav-tabs .active .dropdown-toggle .caret, -.nav-pills .active .dropdown-toggle .caret { - border-top-color: #333333; - border-bottom-color: #333333; -} -.nav > .dropdown.active > a:hover { - color: #000000; - cursor: pointer; -} -.nav-tabs .open .dropdown-toggle, -.nav-pills .open .dropdown-toggle, -.nav > .open.active > a:hover { - color: #ffffff; - background-color: #999999; - border-color: #999999; -} -.nav .open .caret, -.nav .open.active .caret, -.nav .open a:hover .caret { - border-top-color: #ffffff; - border-bottom-color: #ffffff; - opacity: 1; - filter: alpha(opacity=100); -} -.tabs-stacked .open > a:hover { - border-color: #999999; -} -.tabbable { - *zoom: 1; -} -.tabbable:before, -.tabbable:after { - display: table; - content: ""; -} -.tabbable:after { - clear: both; -} -.tab-content { - display: table; - width: 100%; -} -.tabs-below .nav-tabs, -.tabs-right .nav-tabs, -.tabs-left .nav-tabs { - border-bottom: 0; -} -.tab-content > .tab-pane, -.pill-content > .pill-pane { - display: none; -} -.tab-content > .active, -.pill-content > .active { - display: block; -} -.tabs-below .nav-tabs { - border-top: 1px solid #ddd; -} -.tabs-below .nav-tabs > li { - margin-top: -1px; - margin-bottom: 0; -} -.tabs-below .nav-tabs > li > a { - -webkit-border-radius: 0 0 4px 4px; - -moz-border-radius: 0 0 4px 4px; - border-radius: 0 0 4px 4px; -} -.tabs-below .nav-tabs > li > a:hover { - border-bottom-color: transparent; - border-top-color: #ddd; -} -.tabs-below .nav-tabs .active > a, -.tabs-below .nav-tabs .active > a:hover { - border-color: transparent #ddd #ddd #ddd; -} -.tabs-left .nav-tabs > li, -.tabs-right .nav-tabs > li { - float: none; -} -.tabs-left .nav-tabs > li > a, -.tabs-right .nav-tabs > li > a { - min-width: 74px; - margin-right: 0; - margin-bottom: 3px; -} -.tabs-left .nav-tabs { - float: left; - margin-right: 19px; - border-right: 1px solid #ddd; -} -.tabs-left .nav-tabs > li > a { - margin-right: -1px; - -webkit-border-radius: 4px 0 0 4px; - -moz-border-radius: 4px 0 0 4px; - border-radius: 4px 0 0 4px; -} -.tabs-left .nav-tabs > li > a:hover { - border-color: #eeeeee #dddddd #eeeeee #eeeeee; -} -.tabs-left .nav-tabs .active > a, -.tabs-left .nav-tabs .active > a:hover { - border-color: #ddd transparent #ddd #ddd; - *border-right-color: #ffffff; -} -.tabs-right .nav-tabs { - float: right; - margin-left: 19px; - border-left: 1px solid #ddd; -} -.tabs-right .nav-tabs > li > a { - margin-left: -1px; - -webkit-border-radius: 0 4px 4px 0; - -moz-border-radius: 0 4px 4px 0; - border-radius: 0 4px 4px 0; -} -.tabs-right .nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #eeeeee #dddddd; -} -.tabs-right .nav-tabs .active > a, -.tabs-right .nav-tabs .active > a:hover { - border-color: #ddd #ddd #ddd transparent; - *border-left-color: #ffffff; -} -.navbar { - *position: relative; - *z-index: 2; - overflow: visible; - margin-bottom: 18px; -} -.navbar-inner { - padding-left: 20px; - padding-right: 20px; - background-color: #2c2c2c; - background-image: -moz-linear-gradient(top, #333333, #222222); - background-image: -ms-linear-gradient(top, #333333, #222222); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); - background-image: -webkit-linear-gradient(top, #333333, #222222); - background-image: -o-linear-gradient(top, #333333, #222222); - background-image: linear-gradient(top, #333333, #222222); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); - -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); -} -.navbar .container { - width: auto; -} -.btn-navbar { - display: none; - float: right; - padding: 7px 10px; - margin-left: 5px; - margin-right: 5px; - background-color: #2c2c2c; - background-image: -moz-linear-gradient(top, #333333, #222222); - background-image: -ms-linear-gradient(top, #333333, #222222); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); - background-image: -webkit-linear-gradient(top, #333333, #222222); - background-image: -o-linear-gradient(top, #333333, #222222); - background-image: linear-gradient(top, #333333, #222222); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); - border-color: #222222 #222222 #000000; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); -} -.btn-navbar:hover, -.btn-navbar:active, -.btn-navbar.active, -.btn-navbar.disabled, -.btn-navbar[disabled] { - background-color: #222222; -} -.btn-navbar:active, -.btn-navbar.active { - background-color: #080808 \9; -} -.btn-navbar .icon-bar { - display: block; - width: 18px; - height: 2px; - background-color: #f5f5f5; - -webkit-border-radius: 1px; - -moz-border-radius: 1px; - border-radius: 1px; - -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -} -.btn-navbar .icon-bar + .icon-bar { - margin-top: 3px; -} -.nav-collapse.collapse { - height: auto; -} -.navbar { - color: #999999; -} -.navbar .brand:hover { - text-decoration: none; -} -.navbar .brand { - float: left; - display: block; - padding: 8px 20px 12px; - margin-left: -20px; - font-size: 20px; - font-weight: 200; - line-height: 1; - color: #ffffff; -} -.navbar .navbar-text { - margin-bottom: 0; - line-height: 40px; -} -.navbar .btn, -.navbar .btn-group { - margin-top: 5px; -} -.navbar .btn-group .btn { - margin-top: 0; -} -.navbar-form { - margin-bottom: 0; - *zoom: 1; -} -.navbar-form:before, -.navbar-form:after { - display: table; - content: ""; -} -.navbar-form:after { - clear: both; -} -.navbar-form input, -.navbar-form select, -.navbar-form .radio, -.navbar-form .checkbox { - margin-top: 5px; -} -.navbar-form input, -.navbar-form select { - display: inline-block; - margin-bottom: 0; -} -.navbar-form input[type="image"], -.navbar-form input[type="checkbox"], -.navbar-form input[type="radio"] { - margin-top: 3px; -} -.navbar-form .input-append, -.navbar-form .input-prepend { - margin-top: 6px; - white-space: nowrap; -} -.navbar-form .input-append input, -.navbar-form .input-prepend input { - margin-top: 0; -} -.navbar-search { - position: relative; - float: left; - margin-top: 6px; - margin-bottom: 0; -} -.navbar-search .search-query { - padding: 4px 9px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - font-weight: normal; - line-height: 1; - color: #ffffff; - background-color: #626262; - border: 1px solid #151515; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); - -webkit-transition: none; - -moz-transition: none; - -ms-transition: none; - -o-transition: none; - transition: none; -} -.navbar-search .search-query:-moz-placeholder { - color: #cccccc; -} -.navbar-search .search-query::-webkit-input-placeholder { - color: #cccccc; -} -.navbar-search .search-query:focus, -.navbar-search .search-query.focused { - padding: 5px 10px; - color: #333333; - text-shadow: 0 1px 0 #ffffff; - background-color: #ffffff; - border: 0; - -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); - -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); - box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); - outline: 0; -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; - margin-bottom: 0; -} -.navbar-fixed-top .navbar-inner, -.navbar-fixed-bottom .navbar-inner { - padding-left: 0; - padding-right: 0; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} -.navbar-fixed-top .container, -.navbar-fixed-bottom .container { - width: 940px; -} -.navbar-fixed-top { - top: 0; -} -.navbar-fixed-bottom { - bottom: 0; -} -.navbar .nav { - position: relative; - left: 0; - display: block; - float: left; - margin: 0 10px 0 0; -} -.navbar .nav.pull-right { - float: right; -} -.navbar .nav > li { - display: block; - float: left; -} -.navbar .nav > li > a { - float: none; - padding: 10px 10px 11px; - line-height: 19px; - color: #999999; - text-decoration: none; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.navbar .nav > li > a:hover { - background-color: transparent; - color: #ffffff; - text-decoration: none; -} -.navbar .nav .active > a, -.navbar .nav .active > a:hover { - color: #ffffff; - text-decoration: none; - background-color: #222222; -} -.navbar .divider-vertical { - height: 40px; - width: 1px; - margin: 0 9px; - overflow: hidden; - background-color: #222222; - border-right: 1px solid #333333; -} -.navbar .nav.pull-right { - margin-left: 10px; - margin-right: 0; -} -.navbar .dropdown-menu { - margin-top: 1px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.navbar .dropdown-menu:before { - content: ''; - display: inline-block; - border-left: 7px solid transparent; - border-right: 7px solid transparent; - border-bottom: 7px solid #ccc; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; - top: -7px; - left: 9px; -} -.navbar .dropdown-menu:after { - content: ''; - display: inline-block; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #ffffff; - position: absolute; - top: -6px; - left: 10px; -} -.navbar-fixed-bottom .dropdown-menu:before { - border-top: 7px solid #ccc; - border-top-color: rgba(0, 0, 0, 0.2); - border-bottom: 0; - bottom: -7px; - top: auto; -} -.navbar-fixed-bottom .dropdown-menu:after { - border-top: 6px solid #ffffff; - border-bottom: 0; - bottom: -6px; - top: auto; -} -.navbar .nav .dropdown-toggle .caret, -.navbar .nav .open.dropdown .caret { - border-top-color: #ffffff; - border-bottom-color: #ffffff; -} -.navbar .nav .active .caret { - opacity: 1; - filter: alpha(opacity=100); -} -.navbar .nav .open > .dropdown-toggle, -.navbar .nav .active > .dropdown-toggle, -.navbar .nav .open.active > .dropdown-toggle { - background-color: transparent; -} -.navbar .nav .active > .dropdown-toggle:hover { - color: #ffffff; -} -.navbar .nav.pull-right .dropdown-menu, -.navbar .nav .dropdown-menu.pull-right { - left: auto; - right: 0; -} -.navbar .nav.pull-right .dropdown-menu:before, -.navbar .nav .dropdown-menu.pull-right:before { - left: auto; - right: 12px; -} -.navbar .nav.pull-right .dropdown-menu:after, -.navbar .nav .dropdown-menu.pull-right:after { - left: auto; - right: 13px; -} -.breadcrumb { - padding: 7px 14px; - margin: 0 0 18px; - list-style: none; - background-color: #fbfbfb; - background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5)); - background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5); - background-image: -o-linear-gradient(top, #ffffff, #f5f5f5); - background-image: linear-gradient(top, #ffffff, #f5f5f5); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0); - border: 1px solid #ddd; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - -webkit-box-shadow: inset 0 1px 0 #ffffff; - -moz-box-shadow: inset 0 1px 0 #ffffff; - box-shadow: inset 0 1px 0 #ffffff; -} -.breadcrumb li { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - text-shadow: 0 1px 0 #ffffff; -} -.breadcrumb .divider { - padding: 0 5px; - color: #999999; -} -.breadcrumb .active a { - color: #333333; -} -.pagination { - height: 36px; - margin: 18px 0; -} -.pagination ul { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; - margin-left: 0; - margin-bottom: 0; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); -} -.pagination li { - display: inline; -} -.pagination a { - float: left; - padding: 0 14px; - line-height: 34px; - text-decoration: none; - border: 1px solid #ddd; - border-left-width: 0; -} -.pagination a:hover, -.pagination .active a { - background-color: #f5f5f5; -} -.pagination .active a { - color: #999999; - cursor: default; -} -.pagination .disabled span, -.pagination .disabled a, -.pagination .disabled a:hover { - color: #999999; - background-color: transparent; - cursor: default; -} -.pagination li:first-child a { - border-left-width: 1px; - -webkit-border-radius: 3px 0 0 3px; - -moz-border-radius: 3px 0 0 3px; - border-radius: 3px 0 0 3px; -} -.pagination li:last-child a { - -webkit-border-radius: 0 3px 3px 0; - -moz-border-radius: 0 3px 3px 0; - border-radius: 0 3px 3px 0; -} -.pagination-centered { - text-align: center; -} -.pagination-right { - text-align: right; -} -.pager { - margin-left: 0; - margin-bottom: 18px; - list-style: none; - text-align: center; - *zoom: 1; -} -.pager:before, -.pager:after { - display: table; - content: ""; -} -.pager:after { - clear: both; -} -.pager li { - display: inline; -} -.pager a { - display: inline-block; - padding: 5px 14px; - background-color: #fff; - border: 1px solid #ddd; - -webkit-border-radius: 15px; - -moz-border-radius: 15px; - border-radius: 15px; -} -.pager a:hover { - text-decoration: none; - background-color: #f5f5f5; -} -.pager .next a { - float: right; -} -.pager .previous a { - float: left; -} -.pager .disabled a, -.pager .disabled a:hover { - color: #999999; - background-color: #fff; - cursor: default; -} -.modal-open .dropdown-menu { - z-index: 2050; -} -.modal-open .dropdown.open { - *z-index: 2050; -} -.modal-open .popover { - z-index: 2060; -} -.modal-open .tooltip { - z-index: 2070; -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop, -.modal-backdrop.fade.in { - opacity: 0.8; - filter: alpha(opacity=80); -} -.modal { - position: fixed; - top: 50%; - left: 50%; - z-index: 1050; - overflow: auto; - width: 560px; - margin: -250px 0 0 -280px; - background-color: #ffffff; - border: 1px solid #999; - border: 1px solid rgba(0, 0, 0, 0.3); - *border: 1px solid #999; - /* IE6-7 */ - - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; - -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - -webkit-background-clip: padding-box; - -moz-background-clip: padding-box; - background-clip: padding-box; -} -.modal.fade { - -webkit-transition: opacity .3s linear, top .3s ease-out; - -moz-transition: opacity .3s linear, top .3s ease-out; - -ms-transition: opacity .3s linear, top .3s ease-out; - -o-transition: opacity .3s linear, top .3s ease-out; - transition: opacity .3s linear, top .3s ease-out; - top: -25%; -} -.modal.fade.in { - top: 50%; -} -.modal-header { - padding: 9px 15px; - border-bottom: 1px solid #eee; -} -.modal-header .close { - margin-top: 2px; -} -.modal-body { - overflow-y: auto; - max-height: 400px; - padding: 15px; -} -.modal-form { - margin-bottom: 0; -} -.modal-footer { - padding: 14px 15px 15px; - margin-bottom: 0; - text-align: right; - background-color: #f5f5f5; - border-top: 1px solid #ddd; - -webkit-border-radius: 0 0 6px 6px; - -moz-border-radius: 0 0 6px 6px; - border-radius: 0 0 6px 6px; - -webkit-box-shadow: inset 0 1px 0 #ffffff; - -moz-box-shadow: inset 0 1px 0 #ffffff; - box-shadow: inset 0 1px 0 #ffffff; - *zoom: 1; -} -.modal-footer:before, -.modal-footer:after { - display: table; - content: ""; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.tooltip { - position: absolute; - z-index: 1020; - display: block; - visibility: visible; - padding: 5px; - font-size: 11px; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: 0.8; - filter: alpha(opacity=80); -} -.tooltip.top { - margin-top: -2px; -} -.tooltip.right { - margin-left: 2px; -} -.tooltip.bottom { - margin-top: 2px; -} -.tooltip.left { - margin-left: -2px; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #000000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-left: 5px solid #000000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-bottom: 5px solid #000000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-right: 5px solid #000000; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #ffffff; - text-align: center; - text-decoration: none; - background-color: #000000; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1010; - display: none; - padding: 5px; -} -.popover.top { - margin-top: -5px; -} -.popover.right { - margin-left: 5px; -} -.popover.bottom { - margin-top: 5px; -} -.popover.left { - margin-left: -5px; -} -.popover.top .arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-top: 5px solid #000000; -} -.popover.right .arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-right: 5px solid #000000; -} -.popover.bottom .arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-left: 5px solid transparent; - border-right: 5px solid transparent; - border-bottom: 5px solid #000000; -} -.popover.left .arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-top: 5px solid transparent; - border-bottom: 5px solid transparent; - border-left: 5px solid #000000; -} -.popover .arrow { - position: absolute; - width: 0; - height: 0; -} -.popover-inner { - padding: 3px; - width: 280px; - overflow: hidden; - background: #000000; - background: rgba(0, 0, 0, 0.8); - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; - -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); - box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); -} -.popover-title { - padding: 9px 15px; - line-height: 1; - background-color: #f5f5f5; - border-bottom: 1px solid #eee; - -webkit-border-radius: 3px 3px 0 0; - -moz-border-radius: 3px 3px 0 0; - border-radius: 3px 3px 0 0; -} -.popover-content { - padding: 14px; - background-color: #ffffff; - -webkit-border-radius: 0 0 3px 3px; - -moz-border-radius: 0 0 3px 3px; - border-radius: 0 0 3px 3px; - -webkit-background-clip: padding-box; - -moz-background-clip: padding-box; - background-clip: padding-box; -} -.popover-content p, -.popover-content ul, -.popover-content ol { - margin-bottom: 0; -} -.thumbnails { - margin-left: -20px; - list-style: none; - *zoom: 1; -} -.thumbnails:before, -.thumbnails:after { - display: table; - content: ""; -} -.thumbnails:after { - clear: both; -} -.thumbnails > li { - float: left; - margin: 0 0 18px 20px; -} -.thumbnail { - display: block; - padding: 4px; - line-height: 1; - border: 1px solid #ddd; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); -} -a.thumbnail:hover { - border-color: #0088cc; - -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); - -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); - box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); -} -.thumbnail > img { - display: block; - max-width: 100%; - margin-left: auto; - margin-right: auto; -} -.thumbnail .caption { - padding: 9px; -} -.label { - padding: 1px 4px 2px; - font-size: 10.998px; - font-weight: bold; - line-height: 13px; - color: #ffffff; - vertical-align: middle; - white-space: nowrap; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - background-color: #999999; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} -.label:hover { - color: #ffffff; - text-decoration: none; -} -.label-important { - background-color: #b94a48; -} -.label-important:hover { - background-color: #953b39; -} -.label-warning { - background-color: #f89406; -} -.label-warning:hover { - background-color: #c67605; -} -.label-success { - background-color: #468847; -} -.label-success:hover { - background-color: #356635; -} -.label-info { - background-color: #3a87ad; -} -.label-info:hover { - background-color: #2d6987; -} -.label-inverse { - background-color: #333333; -} -.label-inverse:hover { - background-color: #1a1a1a; -} -.badge { - padding: 1px 9px 2px; - font-size: 12.025px; - font-weight: bold; - white-space: nowrap; - color: #ffffff; - background-color: #999999; - -webkit-border-radius: 9px; - -moz-border-radius: 9px; - border-radius: 9px; -} -.badge:hover { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.badge-error { - background-color: #b94a48; -} -.badge-error:hover { - background-color: #953b39; -} -.badge-warning { - background-color: #f89406; -} -.badge-warning:hover { - background-color: #c67605; -} -.badge-success { - background-color: #468847; -} -.badge-success:hover { - background-color: #356635; -} -.badge-info { - background-color: #3a87ad; -} -.badge-info:hover { - background-color: #2d6987; -} -.badge-inverse { - background-color: #333333; -} -.badge-inverse:hover { - background-color: #1a1a1a; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -@-moz-keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -@-ms-keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 0 0; - } - to { - background-position: 40px 0; - } -} -.progress { - overflow: hidden; - height: 18px; - margin-bottom: 18px; - background-color: #f7f7f7; - background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); - background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); - background-image: linear-gradient(top, #f5f5f5, #f9f9f9); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0); - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.progress .bar { - width: 0%; - height: 18px; - color: #ffffff; - font-size: 12px; - text-align: center; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); - background-color: #0e90d2; - background-image: -moz-linear-gradient(top, #149bdf, #0480be); - background-image: -ms-linear-gradient(top, #149bdf, #0480be); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); - background-image: -webkit-linear-gradient(top, #149bdf, #0480be); - background-image: -o-linear-gradient(top, #149bdf, #0480be); - background-image: linear-gradient(top, #149bdf, #0480be); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0); - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - -ms-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: width 0.6s ease; - -moz-transition: width 0.6s ease; - -ms-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} -.progress-striped .bar { - background-color: #149bdf; - 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)); - 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); - 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); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - 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); - 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); - -webkit-background-size: 40px 40px; - -moz-background-size: 40px 40px; - -o-background-size: 40px 40px; - background-size: 40px 40px; -} -.progress.active .bar { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -moz-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-danger .bar { - background-color: #dd514c; - background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); - background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); - background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); - background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); - background-image: linear-gradient(top, #ee5f5b, #c43c35); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); -} -.progress-danger.progress-striped .bar { - background-color: #ee5f5b; - 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)); - 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); - 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); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - 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); - 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); -} -.progress-success .bar { - background-color: #5eb95e; - background-image: -moz-linear-gradient(top, #62c462, #57a957); - background-image: -ms-linear-gradient(top, #62c462, #57a957); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); - background-image: -webkit-linear-gradient(top, #62c462, #57a957); - background-image: -o-linear-gradient(top, #62c462, #57a957); - background-image: linear-gradient(top, #62c462, #57a957); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0); -} -.progress-success.progress-striped .bar { - background-color: #62c462; - 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)); - 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); - 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); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - 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); - 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); -} -.progress-info .bar { - background-color: #4bb1cf; - background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); - background-image: -ms-linear-gradient(top, #5bc0de, #339bb9); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); - background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); - background-image: -o-linear-gradient(top, #5bc0de, #339bb9); - background-image: linear-gradient(top, #5bc0de, #339bb9); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0); -} -.progress-info.progress-striped .bar { - background-color: #5bc0de; - 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)); - 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); - 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); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - 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); - 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); -} -.progress-warning .bar { - background-color: #faa732; - background-image: -moz-linear-gradient(top, #fbb450, #f89406); - background-image: -ms-linear-gradient(top, #fbb450, #f89406); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); - background-image: -webkit-linear-gradient(top, #fbb450, #f89406); - background-image: -o-linear-gradient(top, #fbb450, #f89406); - background-image: linear-gradient(top, #fbb450, #f89406); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); -} -.progress-warning.progress-striped .bar { - background-color: #fbb450; - 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)); - 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); - 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); - background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - 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); - 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); -} -.accordion { - margin-bottom: 18px; -} -.accordion-group { - margin-bottom: 2px; - border: 1px solid #e5e5e5; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} -.accordion-heading { - border-bottom: 0; -} -.accordion-heading .accordion-toggle { - display: block; - padding: 8px 15px; -} -.accordion-inner { - padding: 9px 15px; - border-top: 1px solid #e5e5e5; -} -.carousel { - position: relative; - margin-bottom: 18px; - line-height: 1; -} -.carousel-inner { - overflow: hidden; - width: 100%; - position: relative; -} -.carousel .item { - display: none; - position: relative; - -webkit-transition: 0.6s ease-in-out left; - -moz-transition: 0.6s ease-in-out left; - -ms-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel .item > img { - display: block; - line-height: 1; -} -.carousel .active, -.carousel .next, -.carousel .prev { - display: block; -} -.carousel .active { - left: 0; -} -.carousel .next, -.carousel .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel .next { - left: 100%; -} -.carousel .prev { - left: -100%; -} -.carousel .next.left, -.carousel .prev.right { - left: 0; -} -.carousel .active.left { - left: -100%; -} -.carousel .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 40%; - left: 15px; - width: 40px; - height: 40px; - margin-top: -20px; - font-size: 60px; - font-weight: 100; - line-height: 30px; - color: #ffffff; - text-align: center; - background: #222222; - border: 3px solid #ffffff; - -webkit-border-radius: 23px; - -moz-border-radius: 23px; - border-radius: 23px; - opacity: 0.5; - filter: alpha(opacity=50); -} -.carousel-control.right { - left: auto; - right: 15px; -} -.carousel-control:hover { - color: #ffffff; - text-decoration: none; - opacity: 0.9; - filter: alpha(opacity=90); -} -.carousel-caption { - position: absolute; - left: 0; - right: 0; - bottom: 0; - padding: 10px 15px 5px; - background: #333333; - background: rgba(0, 0, 0, 0.75); -} -.carousel-caption h4, -.carousel-caption p { - color: #ffffff; -} -.hero-unit { - padding: 60px; - margin-bottom: 30px; - background-color: #eeeeee; - -webkit-border-radius: 6px; - -moz-border-radius: 6px; - border-radius: 6px; -} -.hero-unit h1 { - margin-bottom: 0; - font-size: 60px; - line-height: 1; - color: inherit; - letter-spacing: -1px; -} -.hero-unit p { - font-size: 18px; - font-weight: 200; - line-height: 27px; - color: inherit; -} -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.hide { - display: none; -} -.show { - display: block; -} -.invisible { - visibility: hidden; -} diff --git a/docs/components/bootstrap/google-prettify/prettify.css b/docs/components/bootstrap/google-prettify/prettify.css deleted file mode 100644 index aedd8d1a..00000000 --- a/docs/components/bootstrap/google-prettify/prettify.css +++ /dev/null @@ -1,30 +0,0 @@ -.com { color: #93a1a1; } -.lit { color: #195f91; } -.pun, .opn, .clo { color: #93a1a1; } -.fun { color: #dc322f; } -.str, .atv { color: #D14; } -.kwd, .linenums .tag { color: #1e347b; } -.typ, .atn, .dec, .var { color: teal; } -.pln { color: #48484c; } - -.prettyprint { - padding: 8px; - background-color: #f7f7f9; - border: 1px solid #e1e1e8; -} -.prettyprint.linenums { - -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; - -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; - box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; -} - -/* Specify class=linenums on a pre to get line numbering */ -ol.linenums { - margin: 0 0 0 33px; /* IE indents via margin-left */ -} -ol.linenums li { - padding-left: 12px; - color: #bebec5; - line-height: 18px; - text-shadow: 0 1px 0 #fff; -} \ No newline at end of file diff --git a/docs/components/bootstrap/google-prettify/prettify.js b/docs/components/bootstrap/google-prettify/prettify.js deleted file mode 100644 index 63a12ad3..00000000 --- a/docs/components/bootstrap/google-prettify/prettify.js +++ /dev/null @@ -1,1538 +0,0 @@ -// Copyright (C) 2006 Google Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - - -/** - * @fileoverview - * some functions for browser-side pretty printing of code contained in html. - * - *

- * For a fairly comprehensive set of languages see the - * README - * file that came with this source. At a minimum, the lexer should work on a - * number of languages including C and friends, Java, Python, Bash, SQL, HTML, - * XML, CSS, Javascript, and Makefiles. It works passably on Ruby, PHP and Awk - * and a subset of Perl, but, because of commenting conventions, doesn't work on - * Smalltalk, Lisp-like, or CAML-like languages without an explicit lang class. - *

- * Usage:

    - *
  1. include this source file in an html page via - * {@code } - *
  2. define style rules. See the example page for examples. - *
  3. mark the {@code
    } and {@code } tags in your source with
    - *    {@code class=prettyprint.}
    - *    You can also use the (html deprecated) {@code } tag, but the pretty
    - *    printer needs to do more substantial DOM manipulations to support that, so
    - *    some css styles may not be preserved.
    - * </ol>
    - * That's it.  I wanted to keep the API as simple as possible, so there's no
    - * need to specify which language the code is in, but if you wish, you can add
    - * another class to the {@code <pre>} or {@code <code>} element to specify the
    - * language, as in {@code <pre class="prettyprint lang-java">}.  Any class that
    - * starts with "lang-" followed by a file extension, specifies the file type.
    - * See the "lang-*.js" files in this directory for code that implements
    - * per-language file handlers.
    - * <p>
    - * Change log:<br>
    - * cbeust, 2006/08/22
    - * <blockquote>
    - *   Java annotations (start with "@") are now captured as literals ("lit")
    - * </blockquote>
    - * @requires console
    - */
    -
    -// JSLint declarations
    -/*global console, document, navigator, setTimeout, window, define */
    -
    -/**
    - * Split {@code prettyPrint} into multiple timeouts so as not to interfere with
    - * UI events.
    - * If set to {@code false}, {@code prettyPrint()} is synchronous.
    - */
    -window['PR_SHOULD_USE_CONTINUATION'] = true;
    -
    -/**
    - * Find all the {@code <pre>} and {@code <code>} tags in the DOM with
    - * {@code class=prettyprint} and prettify them.
    - *
    - * @param {Function?} opt_whenDone if specified, called when the last entry
    - *     has been finished.
    - */
    -var prettyPrintOne;
    -/**
    - * Pretty print a chunk of code.
    - *
    - * @param {string} sourceCodeHtml code as html
    - * @return {string} code as html, but prettier
    - */
    -var prettyPrint;
    -
    -
    -(function () {
    -  var win = window;
    -  // Keyword lists for various languages.
    -  // We use things that coerce to strings to make them compact when minified
    -  // and to defeat aggressive optimizers that fold large string constants.
    -  var FLOW_CONTROL_KEYWORDS = ["break,continue,do,else,for,if,return,while"];
    -  var C_KEYWORDS = [FLOW_CONTROL_KEYWORDS,"auto,case,char,const,default," + 
    -      "double,enum,extern,float,goto,int,long,register,short,signed,sizeof," +
    -      "static,struct,switch,typedef,union,unsigned,void,volatile"];
    -  var COMMON_KEYWORDS = [C_KEYWORDS,"catch,class,delete,false,import," +
    -      "new,operator,private,protected,public,this,throw,true,try,typeof"];
    -  var CPP_KEYWORDS = [COMMON_KEYWORDS,"alignof,align_union,asm,axiom,bool," +
    -      "concept,concept_map,const_cast,constexpr,decltype," +
    -      "dynamic_cast,explicit,export,friend,inline,late_check," +
    -      "mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast," +
    -      "template,typeid,typename,using,virtual,where"];
    -  var JAVA_KEYWORDS = [COMMON_KEYWORDS,
    -      "abstract,boolean,byte,extends,final,finally,implements,import," +
    -      "instanceof,null,native,package,strictfp,super,synchronized,throws," +
    -      "transient"];
    -  var CSHARP_KEYWORDS = [JAVA_KEYWORDS,
    -      "as,base,by,checked,decimal,delegate,descending,dynamic,event," +
    -      "fixed,foreach,from,group,implicit,in,interface,internal,into,is,let," +
    -      "lock,object,out,override,orderby,params,partial,readonly,ref,sbyte," +
    -      "sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort," +
    -      "var,virtual,where"];
    -  var COFFEE_KEYWORDS = "all,and,by,catch,class,else,extends,false,finally," +
    -      "for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then," +
    -      "throw,true,try,unless,until,when,while,yes";
    -  var JSCRIPT_KEYWORDS = [COMMON_KEYWORDS,
    -      "debugger,eval,export,function,get,null,set,undefined,var,with," +
    -      "Infinity,NaN"];
    -  var PERL_KEYWORDS = "caller,delete,die,do,dump,elsif,eval,exit,foreach,for," +
    -      "goto,if,import,last,local,my,next,no,our,print,package,redo,require," +
    -      "sub,undef,unless,until,use,wantarray,while,BEGIN,END";
    -  var PYTHON_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "and,as,assert,class,def,del," +
    -      "elif,except,exec,finally,from,global,import,in,is,lambda," +
    -      "nonlocal,not,or,pass,print,raise,try,with,yield," +
    -      "False,True,None"];
    -  var RUBY_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "alias,and,begin,case,class," +
    -      "def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo," +
    -      "rescue,retry,self,super,then,true,undef,unless,until,when,yield," +
    -      "BEGIN,END"];
    -  var SH_KEYWORDS = [FLOW_CONTROL_KEYWORDS, "case,done,elif,esac,eval,fi," +
    -      "function,in,local,set,then,until"];
    -  var ALL_KEYWORDS = [
    -      CPP_KEYWORDS, CSHARP_KEYWORDS, JSCRIPT_KEYWORDS, PERL_KEYWORDS +
    -      PYTHON_KEYWORDS, RUBY_KEYWORDS, SH_KEYWORDS];
    -  var C_TYPES = /^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/;
    -
    -  // token style names.  correspond to css classes
    -  /**
    -   * token style for a string literal
    -   * @const
    -   */
    -  var PR_STRING = 'str';
    -  /**
    -   * token style for a keyword
    -   * @const
    -   */
    -  var PR_KEYWORD = 'kwd';
    -  /**
    -   * token style for a comment
    -   * @const
    -   */
    -  var PR_COMMENT = 'com';
    -  /**
    -   * token style for a type
    -   * @const
    -   */
    -  var PR_TYPE = 'typ';
    -  /**
    -   * token style for a literal value.  e.g. 1, null, true.
    -   * @const
    -   */
    -  var PR_LITERAL = 'lit';
    -  /**
    -   * token style for a punctuation string.
    -   * @const
    -   */
    -  var PR_PUNCTUATION = 'pun';
    -  /**
    -   * token style for plain text.
    -   * @const
    -   */
    -  var PR_PLAIN = 'pln';
    -
    -  /**
    -   * token style for an sgml tag.
    -   * @const
    -   */
    -  var PR_TAG = 'tag';
    -  /**
    -   * token style for a markup declaration such as a DOCTYPE.
    -   * @const
    -   */
    -  var PR_DECLARATION = 'dec';
    -  /**
    -   * token style for embedded source.
    -   * @const
    -   */
    -  var PR_SOURCE = 'src';
    -  /**
    -   * token style for an sgml attribute name.
    -   * @const
    -   */
    -  var PR_ATTRIB_NAME = 'atn';
    -  /**
    -   * token style for an sgml attribute value.
    -   * @const
    -   */
    -  var PR_ATTRIB_VALUE = 'atv';
    -
    -  /**
    -   * A class that indicates a section of markup that is not code, e.g. to allow
    -   * embedding of line numbers within code listings.
    -   * @const
    -   */
    -  var PR_NOCODE = 'nocode';
    -
    -
    -
    -/**
    - * A set of tokens that can precede a regular expression literal in
    - * javascript
    - * http://web.archive.org/web/20070717142515/http://www.mozilla.org/js/language/js20/rationale/syntax.html
    - * has the full list, but I've removed ones that might be problematic when
    - * seen in languages that don't support regular expression literals.
    - *
    - * <p>Specifically, I've removed any keywords that can't precede a regexp
    - * literal in a syntactically legal javascript program, and I've removed the
    - * "in" keyword since it's not a keyword in many languages, and might be used
    - * as a count of inches.
    - *
    - * <p>The link above does not accurately describe EcmaScript rules since
    - * it fails to distinguish between (a=++/b/i) and (a++/b/i) but it works
    - * very well in practice.
    - *
    - * @private
    - * @const
    - */
    -var REGEXP_PRECEDER_PATTERN = '(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<<?=?|>>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*';
    -
    -// CAVEAT: this does not properly handle the case where a regular
    -// expression immediately follows another since a regular expression may
    -// have flags for case-sensitivity and the like.  Having regexp tokens
    -// adjacent is not valid in any language I'm aware of, so I'm punting.
    -// TODO: maybe style special characters inside a regexp as punctuation.
    -
    -
    -  /**
    -   * Given a group of {@link RegExp}s, returns a {@code RegExp} that globally
    -   * matches the union of the sets of strings matched by the input RegExp.
    -   * Since it matches globally, if the input strings have a start-of-input
    -   * anchor (/^.../), it is ignored for the purposes of unioning.
    -   * @param {Array.<RegExp>} regexs non multiline, non-global regexs.
    -   * @return {RegExp} a global regex.
    -   */
    -  function combinePrefixPatterns(regexs) {
    -    var capturedGroupIndex = 0;
    -  
    -    var needToFoldCase = false;
    -    var ignoreCase = false;
    -    for (var i = 0, n = regexs.length; i < n; ++i) {
    -      var regex = regexs[i];
    -      if (regex.ignoreCase) {
    -        ignoreCase = true;
    -      } else if (/[a-z]/i.test(regex.source.replace(
    -                     /\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi, ''))) {
    -        needToFoldCase = true;
    -        ignoreCase = false;
    -        break;
    -      }
    -    }
    -  
    -    var escapeCharToCodeUnit = {
    -      'b': 8,
    -      't': 9,
    -      'n': 0xa,
    -      'v': 0xb,
    -      'f': 0xc,
    -      'r': 0xd
    -    };
    -  
    -    function decodeEscape(charsetPart) {
    -      var cc0 = charsetPart.charCodeAt(0);
    -      if (cc0 !== 92 /* \\ */) {
    -        return cc0;
    -      }
    -      var c1 = charsetPart.charAt(1);
    -      cc0 = escapeCharToCodeUnit[c1];
    -      if (cc0) {
    -        return cc0;
    -      } else if ('0' <= c1 && c1 <= '7') {
    -        return parseInt(charsetPart.substring(1), 8);
    -      } else if (c1 === 'u' || c1 === 'x') {
    -        return parseInt(charsetPart.substring(2), 16);
    -      } else {
    -        return charsetPart.charCodeAt(1);
    -      }
    -    }
    -  
    -    function encodeEscape(charCode) {
    -      if (charCode < 0x20) {
    -        return (charCode < 0x10 ? '\\x0' : '\\x') + charCode.toString(16);
    -      }
    -      var ch = String.fromCharCode(charCode);
    -      return (ch === '\\' || ch === '-' || ch === ']' || ch === '^')
    -          ? "\\" + ch : ch;
    -    }
    -  
    -    function caseFoldCharset(charSet) {
    -      var charsetParts = charSet.substring(1, charSet.length - 1).match(
    -          new RegExp(
    -              '\\\\u[0-9A-Fa-f]{4}'
    -              + '|\\\\x[0-9A-Fa-f]{2}'
    -              + '|\\\\[0-3][0-7]{0,2}'
    -              + '|\\\\[0-7]{1,2}'
    -              + '|\\\\[\\s\\S]'
    -              + '|-'
    -              + '|[^-\\\\]',
    -              'g'));
    -      var ranges = [];
    -      var inverse = charsetParts[0] === '^';
    -  
    -      var out = ['['];
    -      if (inverse) { out.push('^'); }
    -  
    -      for (var i = inverse ? 1 : 0, n = charsetParts.length; i < n; ++i) {
    -        var p = charsetParts[i];
    -        if (/\\[bdsw]/i.test(p)) {  // Don't muck with named groups.
    -          out.push(p);
    -        } else {
    -          var start = decodeEscape(p);
    -          var end;
    -          if (i + 2 < n && '-' === charsetParts[i + 1]) {
    -            end = decodeEscape(charsetParts[i + 2]);
    -            i += 2;
    -          } else {
    -            end = start;
    -          }
    -          ranges.push([start, end]);
    -          // If the range might intersect letters, then expand it.
    -          // This case handling is too simplistic.
    -          // It does not deal with non-latin case folding.
    -          // It works for latin source code identifiers though.
    -          if (!(end < 65 || start > 122)) {
    -            if (!(end < 65 || start > 90)) {
    -              ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
    -            }
    -            if (!(end < 97 || start > 122)) {
    -              ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
    -            }
    -          }
    -        }
    -      }
    -  
    -      // [[1, 10], [3, 4], [8, 12], [14, 14], [16, 16], [17, 17]]
    -      // -> [[1, 12], [14, 14], [16, 17]]
    -      ranges.sort(function (a, b) { return (a[0] - b[0]) || (b[1]  - a[1]); });
    -      var consolidatedRanges = [];
    -      var lastRange = [];
    -      for (var i = 0; i < ranges.length; ++i) {
    -        var range = ranges[i];
    -        if (range[0] <= lastRange[1] + 1) {
    -          lastRange[1] = Math.max(lastRange[1], range[1]);
    -        } else {
    -          consolidatedRanges.push(lastRange = range);
    -        }
    -      }
    -  
    -      for (var i = 0; i < consolidatedRanges.length; ++i) {
    -        var range = consolidatedRanges[i];
    -        out.push(encodeEscape(range[0]));
    -        if (range[1] > range[0]) {
    -          if (range[1] + 1 > range[0]) { out.push('-'); }
    -          out.push(encodeEscape(range[1]));
    -        }
    -      }
    -      out.push(']');
    -      return out.join('');
    -    }
    -  
    -    function allowAnywhereFoldCaseAndRenumberGroups(regex) {
    -      // Split into character sets, escape sequences, punctuation strings
    -      // like ('(', '(?:', ')', '^'), and runs of characters that do not
    -      // include any of the above.
    -      var parts = regex.source.match(
    -          new RegExp(
    -              '(?:'
    -              + '\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]'  // a character set
    -              + '|\\\\u[A-Fa-f0-9]{4}'  // a unicode escape
    -              + '|\\\\x[A-Fa-f0-9]{2}'  // a hex escape
    -              + '|\\\\[0-9]+'  // a back-reference or octal escape
    -              + '|\\\\[^ux0-9]'  // other escape sequence
    -              + '|\\(\\?[:!=]'  // start of a non-capturing group
    -              + '|[\\(\\)\\^]'  // start/end of a group, or line start
    -              + '|[^\\x5B\\x5C\\(\\)\\^]+'  // run of other characters
    -              + ')',
    -              'g'));
    -      var n = parts.length;
    -  
    -      // Maps captured group numbers to the number they will occupy in
    -      // the output or to -1 if that has not been determined, or to
    -      // undefined if they need not be capturing in the output.
    -      var capturedGroups = [];
    -  
    -      // Walk over and identify back references to build the capturedGroups
    -      // mapping.
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        var p = parts[i];
    -        if (p === '(') {
    -          // groups are 1-indexed, so max group index is count of '('
    -          ++groupIndex;
    -        } else if ('\\' === p.charAt(0)) {
    -          var decimalValue = +p.substring(1);
    -          if (decimalValue) {
    -            if (decimalValue <= groupIndex) {
    -              capturedGroups[decimalValue] = -1;
    -            } else {
    -              // Replace with an unambiguous escape sequence so that
    -              // an octal escape sequence does not turn into a backreference
    -              // to a capturing group from an earlier regex.
    -              parts[i] = encodeEscape(decimalValue);
    -            }
    -          }
    -        }
    -      }
    -  
    -      // Renumber groups and reduce capturing groups to non-capturing groups
    -      // where possible.
    -      for (var i = 1; i < capturedGroups.length; ++i) {
    -        if (-1 === capturedGroups[i]) {
    -          capturedGroups[i] = ++capturedGroupIndex;
    -        }
    -      }
    -      for (var i = 0, groupIndex = 0; i < n; ++i) {
    -        var p = parts[i];
    -        if (p === '(') {
    -          ++groupIndex;
    -          if (!capturedGroups[groupIndex]) {
    -            parts[i] = '(?:';
    -          }
    -        } else if ('\\' === p.charAt(0)) {
    -          var decimalValue = +p.substring(1);
    -          if (decimalValue && decimalValue <= groupIndex) {
    -            parts[i] = '\\' + capturedGroups[decimalValue];
    -          }
    -        }
    -      }
    -  
    -      // Remove any prefix anchors so that the output will match anywhere.
    -      // ^^ really does mean an anchored match though.
    -      for (var i = 0; i < n; ++i) {
    -        if ('^' === parts[i] && '^' !== parts[i + 1]) { parts[i] = ''; }
    -      }
    -  
    -      // Expand letters to groups to handle mixing of case-sensitive and
    -      // case-insensitive patterns if necessary.
    -      if (regex.ignoreCase && needToFoldCase) {
    -        for (var i = 0; i < n; ++i) {
    -          var p = parts[i];
    -          var ch0 = p.charAt(0);
    -          if (p.length >= 2 && ch0 === '[') {
    -            parts[i] = caseFoldCharset(p);
    -          } else if (ch0 !== '\\') {
    -            // TODO: handle letters in numeric escapes.
    -            parts[i] = p.replace(
    -                /[a-zA-Z]/g,
    -                function (ch) {
    -                  var cc = ch.charCodeAt(0);
    -                  return '[' + String.fromCharCode(cc & ~32, cc | 32) + ']';
    -                });
    -          }
    -        }
    -      }
    -  
    -      return parts.join('');
    -    }
    -  
    -    var rewritten = [];
    -    for (var i = 0, n = regexs.length; i < n; ++i) {
    -      var regex = regexs[i];
    -      if (regex.global || regex.multiline) { throw new Error('' + regex); }
    -      rewritten.push(
    -          '(?:' + allowAnywhereFoldCaseAndRenumberGroups(regex) + ')');
    -    }
    -  
    -    return new RegExp(rewritten.join('|'), ignoreCase ? 'gi' : 'g');
    -  }
    -
    -
    -  /**
    -   * Split markup into a string of source code and an array mapping ranges in
    -   * that string to the text nodes in which they appear.
    -   *
    -   * <p>
    -   * The HTML DOM structure:</p>
    -   * <pre>
    -   * (Element   "p"
    -   *   (Element "b"
    -   *     (Text  "print "))       ; #1
    -   *   (Text    "'Hello '")      ; #2
    -   *   (Element "br")            ; #3
    -   *   (Text    "  + 'World';")) ; #4
    -   * </pre>
    -   * <p>
    -   * corresponds to the HTML
    -   * {@code <p><b>print </b>'Hello '<br>  + 'World';</p>}.</p>
    -   *
    -   * <p>
    -   * It will produce the output:</p>
    -   * <pre>
    -   * {
    -   *   sourceCode: "print 'Hello '\n  + 'World';",
    -   *   //                     1          2
    -   *   //           012345678901234 5678901234567
    -   *   spans: [0, #1, 6, #2, 14, #3, 15, #4]
    -   * }
    -   * </pre>
    -   * <p>
    -   * where #1 is a reference to the {@code "print "} text node above, and so
    -   * on for the other text nodes.
    -   * </p>
    -   *
    -   * <p>
    -   * The {@code} spans array is an array of pairs.  Even elements are the start
    -   * indices of substrings, and odd elements are the text nodes (or BR elements)
    -   * that contain the text for those substrings.
    -   * Substrings continue until the next index or the end of the source.
    -   * </p>
    -   *
    -   * @param {Node} node an HTML DOM subtree containing source-code.
    -   * @param {boolean} isPreformatted true if white-space in text nodes should
    -   *    be considered significant.
    -   * @return {Object} source code and the text nodes in which they occur.
    -   */
    -  function extractSourceSpans(node, isPreformatted) {
    -    var nocode = /(?:^|\s)nocode(?:\s|$)/;
    -  
    -    var chunks = [];
    -    var length = 0;
    -    var spans = [];
    -    var k = 0;
    -  
    -    function walk(node) {
    -      switch (node.nodeType) {
    -        case 1:  // Element
    -          if (nocode.test(node.className)) { return; }
    -          for (var child = node.firstChild; child; child = child.nextSibling) {
    -            walk(child);
    -          }
    -          var nodeName = node.nodeName.toLowerCase();
    -          if ('br' === nodeName || 'li' === nodeName) {
    -            chunks[k] = '\n';
    -            spans[k << 1] = length++;
    -            spans[(k++ << 1) | 1] = node;
    -          }
    -          break;
    -        case 3: case 4:  // Text
    -          var text = node.nodeValue;
    -          if (text.length) {
    -            if (!isPreformatted) {
    -              text = text.replace(/[ \t\r\n]+/g, ' ');
    -            } else {
    -              text = text.replace(/\r\n?/g, '\n');  // Normalize newlines.
    -            }
    -            // TODO: handle tabs here?
    -            chunks[k] = text;
    -            spans[k << 1] = length;
    -            length += text.length;
    -            spans[(k++ << 1) | 1] = node;
    -          }
    -          break;
    -      }
    -    }
    -  
    -    walk(node);
    -  
    -    return {
    -      sourceCode: chunks.join('').replace(/\n$/, ''),
    -      spans: spans
    -    };
    -  }
    -
    -
    -  /**
    -   * Apply the given language handler to sourceCode and add the resulting
    -   * decorations to out.
    -   * @param {number} basePos the index of sourceCode within the chunk of source
    -   *    whose decorations are already present on out.
    -   */
    -  function appendDecorations(basePos, sourceCode, langHandler, out) {
    -    if (!sourceCode) { return; }
    -    var job = {
    -      sourceCode: sourceCode,
    -      basePos: basePos
    -    };
    -    langHandler(job);
    -    out.push.apply(out, job.decorations);
    -  }
    -
    -  var notWs = /\S/;
    -
    -  /**
    -   * Given an element, if it contains only one child element and any text nodes
    -   * it contains contain only space characters, return the sole child element.
    -   * Otherwise returns undefined.
    -   * <p>
    -   * This is meant to return the CODE element in {@code <pre><code ...>} when
    -   * there is a single child element that contains all the non-space textual
    -   * content, but not to return anything where there are multiple child elements
    -   * as in {@code <pre><code>...</code><code>...</code></pre>} or when there
    -   * is textual content.
    -   */
    -  function childContentWrapper(element) {
    -    var wrapper = undefined;
    -    for (var c = element.firstChild; c; c = c.nextSibling) {
    -      var type = c.nodeType;
    -      wrapper = (type === 1)  // Element Node
    -          ? (wrapper ? element : c)
    -          : (type === 3)  // Text Node
    -          ? (notWs.test(c.nodeValue) ? element : wrapper)
    -          : wrapper;
    -    }
    -    return wrapper === element ? undefined : wrapper;
    -  }
    -
    -  /** Given triples of [style, pattern, context] returns a lexing function,
    -    * The lexing function interprets the patterns to find token boundaries and
    -    * returns a decoration list of the form
    -    * [index_0, style_0, index_1, style_1, ..., index_n, style_n]
    -    * where index_n is an index into the sourceCode, and style_n is a style
    -    * constant like PR_PLAIN.  index_n-1 <= index_n, and style_n-1 applies to
    -    * all characters in sourceCode[index_n-1:index_n].
    -    *
    -    * The stylePatterns is a list whose elements have the form
    -    * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
    -    *
    -    * Style is a style constant like PR_PLAIN, or can be a string of the
    -    * form 'lang-FOO', where FOO is a language extension describing the
    -    * language of the portion of the token in $1 after pattern executes.
    -    * E.g., if style is 'lang-lisp', and group 1 contains the text
    -    * '(hello (world))', then that portion of the token will be passed to the
    -    * registered lisp handler for formatting.
    -    * The text before and after group 1 will be restyled using this decorator
    -    * so decorators should take care that this doesn't result in infinite
    -    * recursion.  For example, the HTML lexer rule for SCRIPT elements looks
    -    * something like ['lang-js', /<[s]cript>(.+?)<\/script>/].  This may match
    -    * '<script>foo()<\/script>', which would cause the current decorator to
    -    * be called with '<script>' which would not match the same rule since
    -    * group 1 must not be empty, so it would be instead styled as PR_TAG by
    -    * the generic tag rule.  The handler registered for the 'js' extension would
    -    * then be called with 'foo()', and finally, the current decorator would
    -    * be called with '<\/script>' which would not match the original rule and
    -    * so the generic tag rule would identify it as a tag.
    -    *
    -    * Pattern must only match prefixes, and if it matches a prefix, then that
    -    * match is considered a token with the same style.
    -    *
    -    * Context is applied to the last non-whitespace, non-comment token
    -    * recognized.
    -    *
    -    * Shortcut is an optional string of characters, any of which, if the first
    -    * character, guarantee that this pattern and only this pattern matches.
    -    *
    -    * @param {Array} shortcutStylePatterns patterns that always start with
    -    *   a known character.  Must have a shortcut string.
    -    * @param {Array} fallthroughStylePatterns patterns that will be tried in
    -    *   order if the shortcut ones fail.  May have shortcuts.
    -    *
    -    * @return {function (Object)} a
    -    *   function that takes source code and returns a list of decorations.
    -    */
    -  function createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns) {
    -    var shortcuts = {};
    -    var tokenizer;
    -    (function () {
    -      var allPatterns = shortcutStylePatterns.concat(fallthroughStylePatterns);
    -      var allRegexs = [];
    -      var regexKeys = {};
    -      for (var i = 0, n = allPatterns.length; i < n; ++i) {
    -        var patternParts = allPatterns[i];
    -        var shortcutChars = patternParts[3];
    -        if (shortcutChars) {
    -          for (var c = shortcutChars.length; --c >= 0;) {
    -            shortcuts[shortcutChars.charAt(c)] = patternParts;
    -          }
    -        }
    -        var regex = patternParts[1];
    -        var k = '' + regex;
    -        if (!regexKeys.hasOwnProperty(k)) {
    -          allRegexs.push(regex);
    -          regexKeys[k] = null;
    -        }
    -      }
    -      allRegexs.push(/[\0-\uffff]/);
    -      tokenizer = combinePrefixPatterns(allRegexs);
    -    })();
    -
    -    var nPatterns = fallthroughStylePatterns.length;
    -
    -    /**
    -     * Lexes job.sourceCode and produces an output array job.decorations of
    -     * style classes preceded by the position at which they start in
    -     * job.sourceCode in order.
    -     *
    -     * @param {Object} job an object like <pre>{
    -     *    sourceCode: {string} sourceText plain text,
    -     *    basePos: {int} position of job.sourceCode in the larger chunk of
    -     *        sourceCode.
    -     * }</pre>
    -     */
    -    var decorate = function (job) {
    -      var sourceCode = job.sourceCode, basePos = job.basePos;
    -      /** Even entries are positions in source in ascending order.  Odd enties
    -        * are style markers (e.g., PR_COMMENT) that run from that position until
    -        * the end.
    -        * @type {Array.<number|string>}
    -        */
    -      var decorations = [basePos, PR_PLAIN];
    -      var pos = 0;  // index into sourceCode
    -      var tokens = sourceCode.match(tokenizer) || [];
    -      var styleCache = {};
    -
    -      for (var ti = 0, nTokens = tokens.length; ti < nTokens; ++ti) {
    -        var token = tokens[ti];
    -        var style = styleCache[token];
    -        var match = void 0;
    -
    -        var isEmbedded;
    -        if (typeof style === 'string') {
    -          isEmbedded = false;
    -        } else {
    -          var patternParts = shortcuts[token.charAt(0)];
    -          if (patternParts) {
    -            match = token.match(patternParts[1]);
    -            style = patternParts[0];
    -          } else {
    -            for (var i = 0; i < nPatterns; ++i) {
    -              patternParts = fallthroughStylePatterns[i];
    -              match = token.match(patternParts[1]);
    -              if (match) {
    -                style = patternParts[0];
    -                break;
    -              }
    -            }
    -
    -            if (!match) {  // make sure that we make progress
    -              style = PR_PLAIN;
    -            }
    -          }
    -
    -          isEmbedded = style.length >= 5 && 'lang-' === style.substring(0, 5);
    -          if (isEmbedded && !(match && typeof match[1] === 'string')) {
    -            isEmbedded = false;
    -            style = PR_SOURCE;
    -          }
    -
    -          if (!isEmbedded) { styleCache[token] = style; }
    -        }
    -
    -        var tokenStart = pos;
    -        pos += token.length;
    -
    -        if (!isEmbedded) {
    -          decorations.push(basePos + tokenStart, style);
    -        } else {  // Treat group 1 as an embedded block of source code.
    -          var embeddedSource = match[1];
    -          var embeddedSourceStart = token.indexOf(embeddedSource);
    -          var embeddedSourceEnd = embeddedSourceStart + embeddedSource.length;
    -          if (match[2]) {
    -            // If embeddedSource can be blank, then it would match at the
    -            // beginning which would cause us to infinitely recurse on the
    -            // entire token, so we catch the right context in match[2].
    -            embeddedSourceEnd = token.length - match[2].length;
    -            embeddedSourceStart = embeddedSourceEnd - embeddedSource.length;
    -          }
    -          var lang = style.substring(5);
    -          // Decorate the left of the embedded source
    -          appendDecorations(
    -              basePos + tokenStart,
    -              token.substring(0, embeddedSourceStart),
    -              decorate, decorations);
    -          // Decorate the embedded source
    -          appendDecorations(
    -              basePos + tokenStart + embeddedSourceStart,
    -              embeddedSource,
    -              langHandlerForExtension(lang, embeddedSource),
    -              decorations);
    -          // Decorate the right of the embedded section
    -          appendDecorations(
    -              basePos + tokenStart + embeddedSourceEnd,
    -              token.substring(embeddedSourceEnd),
    -              decorate, decorations);
    -        }
    -      }
    -      job.decorations = decorations;
    -    };
    -    return decorate;
    -  }
    -
    -  /** returns a function that produces a list of decorations from source text.
    -    *
    -    * This code treats ", ', and ` as string delimiters, and \ as a string
    -    * escape.  It does not recognize perl's qq() style strings.
    -    * It has no special handling for double delimiter escapes as in basic, or
    -    * the tripled delimiters used in python, but should work on those regardless
    -    * although in those cases a single string literal may be broken up into
    -    * multiple adjacent string literals.
    -    *
    -    * It recognizes C, C++, and shell style comments.
    -    *
    -    * @param {Object} options a set of optional parameters.
    -    * @return {function (Object)} a function that examines the source code
    -    *     in the input job and builds the decoration list.
    -    */
    -  function sourceDecorator(options) {
    -    var shortcutStylePatterns = [], fallthroughStylePatterns = [];
    -    if (options['tripleQuotedStrings']) {
    -      // '''multi-line-string''', 'single-line-string', and double-quoted
    -      shortcutStylePatterns.push(
    -          [PR_STRING,  /^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,
    -           null, '\'"']);
    -    } else if (options['multiLineStrings']) {
    -      // 'multi-line-string', "multi-line-string"
    -      shortcutStylePatterns.push(
    -          [PR_STRING,  /^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,
    -           null, '\'"`']);
    -    } else {
    -      // 'single-line-string', "single-line-string"
    -      shortcutStylePatterns.push(
    -          [PR_STRING,
    -           /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,
    -           null, '"\'']);
    -    }
    -    if (options['verbatimStrings']) {
    -      // verbatim-string-literal production from the C# grammar.  See issue 93.
    -      fallthroughStylePatterns.push(
    -          [PR_STRING, /^@\"(?:[^\"]|\"\")*(?:\"|$)/, null]);
    -    }
    -    var hc = options['hashComments'];
    -    if (hc) {
    -      if (options['cStyleComments']) {
    -        if (hc > 1) {  // multiline hash comments
    -          shortcutStylePatterns.push(
    -              [PR_COMMENT, /^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/, null, '#']);
    -        } else {
    -          // Stop C preprocessor declarations at an unclosed open comment
    -          shortcutStylePatterns.push(
    -              [PR_COMMENT, /^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,
    -               null, '#']);
    -        }
    -        // #include <stdio.h>
    -        fallthroughStylePatterns.push(
    -            [PR_STRING,
    -             /^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,
    -             null]);
    -      } else {
    -        shortcutStylePatterns.push([PR_COMMENT, /^#[^\r\n]*/, null, '#']);
    -      }
    -    }
    -    if (options['cStyleComments']) {
    -      fallthroughStylePatterns.push([PR_COMMENT, /^\/\/[^\r\n]*/, null]);
    -      fallthroughStylePatterns.push(
    -          [PR_COMMENT, /^\/\*[\s\S]*?(?:\*\/|$)/, null]);
    -    }
    -    if (options['regexLiterals']) {
    -      /**
    -       * @const
    -       */
    -      var REGEX_LITERAL = (
    -          // A regular expression literal starts with a slash that is
    -          // not followed by * or / so that it is not confused with
    -          // comments.
    -          '/(?=[^/*])'
    -          // and then contains any number of raw characters,
    -          + '(?:[^/\\x5B\\x5C]'
    -          // escape sequences (\x5C),
    -          +    '|\\x5C[\\s\\S]'
    -          // or non-nesting character sets (\x5B\x5D);
    -          +    '|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+'
    -          // finally closed by a /.
    -          + '/');
    -      fallthroughStylePatterns.push(
    -          ['lang-regex',
    -           new RegExp('^' + REGEXP_PRECEDER_PATTERN + '(' + REGEX_LITERAL + ')')
    -           ]);
    -    }
    -
    -    var types = options['types'];
    -    if (types) {
    -      fallthroughStylePatterns.push([PR_TYPE, types]);
    -    }
    -
    -    var keywords = ("" + options['keywords']).replace(/^ | $/g, '');
    -    if (keywords.length) {
    -      fallthroughStylePatterns.push(
    -          [PR_KEYWORD,
    -           new RegExp('^(?:' + keywords.replace(/[\s,]+/g, '|') + ')\\b'),
    -           null]);
    -    }
    -
    -    shortcutStylePatterns.push([PR_PLAIN,       /^\s+/, null, ' \r\n\t\xA0']);
    -    fallthroughStylePatterns.push(
    -        // TODO(mikesamuel): recognize non-latin letters and numerals in idents
    -        [PR_LITERAL,     /^@[a-z_$][a-z_$@0-9]*/i, null],
    -        [PR_TYPE,        /^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/, null],
    -        [PR_PLAIN,       /^[a-z_$][a-z_$@0-9]*/i, null],
    -        [PR_LITERAL,
    -         new RegExp(
    -             '^(?:'
    -             // A hex number
    -             + '0x[a-f0-9]+'
    -             // or an octal or decimal number,
    -             + '|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)'
    -             // possibly in scientific notation
    -             + '(?:e[+\\-]?\\d+)?'
    -             + ')'
    -             // with an optional modifier like UL for unsigned long
    -             + '[a-z]*', 'i'),
    -         null, '0123456789'],
    -        // Don't treat escaped quotes in bash as starting strings.  See issue 144.
    -        [PR_PLAIN,       /^\\[\s\S]?/, null],
    -        [PR_PUNCTUATION, /^.[^\s\w\.$@\'\"\`\/\#\\]*/, null]);
    -
    -    return createSimpleLexer(shortcutStylePatterns, fallthroughStylePatterns);
    -  }
    -
    -  var decorateSource = sourceDecorator({
    -        'keywords': ALL_KEYWORDS,
    -        'hashComments': true,
    -        'cStyleComments': true,
    -        'multiLineStrings': true,
    -        'regexLiterals': true
    -      });
    -
    -  /**
    -   * Given a DOM subtree, wraps it in a list, and puts each line into its own
    -   * list item.
    -   *
    -   * @param {Node} node modified in place.  Its content is pulled into an
    -   *     HTMLOListElement, and each line is moved into a separate list item.
    -   *     This requires cloning elements, so the input might not have unique
    -   *     IDs after numbering.
    -   * @param {boolean} isPreformatted true iff white-space in text nodes should
    -   *     be treated as significant.
    -   */
    -  function numberLines(node, opt_startLineNum, isPreformatted) {
    -    var nocode = /(?:^|\s)nocode(?:\s|$)/;
    -    var lineBreak = /\r\n?|\n/;
    -  
    -    var document = node.ownerDocument;
    -  
    -    var li = document.createElement('li');
    -    while (node.firstChild) {
    -      li.appendChild(node.firstChild);
    -    }
    -    // An array of lines.  We split below, so this is initialized to one
    -    // un-split line.
    -    var listItems = [li];
    -  
    -    function walk(node) {
    -      switch (node.nodeType) {
    -        case 1:  // Element
    -          if (nocode.test(node.className)) { break; }
    -          if ('br' === node.nodeName) {
    -            breakAfter(node);
    -            // Discard the <BR> since it is now flush against a </LI>.
    -            if (node.parentNode) {
    -              node.parentNode.removeChild(node);
    -            }
    -          } else {
    -            for (var child = node.firstChild; child; child = child.nextSibling) {
    -              walk(child);
    -            }
    -          }
    -          break;
    -        case 3: case 4:  // Text
    -          if (isPreformatted) {
    -            var text = node.nodeValue;
    -            var match = text.match(lineBreak);
    -            if (match) {
    -              var firstLine = text.substring(0, match.index);
    -              node.nodeValue = firstLine;
    -              var tail = text.substring(match.index + match[0].length);
    -              if (tail) {
    -                var parent = node.parentNode;
    -                parent.insertBefore(
    -                    document.createTextNode(tail), node.nextSibling);
    -              }
    -              breakAfter(node);
    -              if (!firstLine) {
    -                // Don't leave blank text nodes in the DOM.
    -                node.parentNode.removeChild(node);
    -              }
    -            }
    -          }
    -          break;
    -      }
    -    }
    -  
    -    // Split a line after the given node.
    -    function breakAfter(lineEndNode) {
    -      // If there's nothing to the right, then we can skip ending the line
    -      // here, and move root-wards since splitting just before an end-tag
    -      // would require us to create a bunch of empty copies.
    -      while (!lineEndNode.nextSibling) {
    -        lineEndNode = lineEndNode.parentNode;
    -        if (!lineEndNode) { return; }
    -      }
    -  
    -      function breakLeftOf(limit, copy) {
    -        // Clone shallowly if this node needs to be on both sides of the break.
    -        var rightSide = copy ? limit.cloneNode(false) : limit;
    -        var parent = limit.parentNode;
    -        if (parent) {
    -          // We clone the parent chain.
    -          // This helps us resurrect important styling elements that cross lines.
    -          // E.g. in <i>Foo<br>Bar</i>
    -          // should be rewritten to <li><i>Foo</i></li><li><i>Bar</i></li>.
    -          var parentClone = breakLeftOf(parent, 1);
    -          // Move the clone and everything to the right of the original
    -          // onto the cloned parent.
    -          var next = limit.nextSibling;
    -          parentClone.appendChild(rightSide);
    -          for (var sibling = next; sibling; sibling = next) {
    -            next = sibling.nextSibling;
    -            parentClone.appendChild(sibling);
    -          }
    -        }
    -        return rightSide;
    -      }
    -  
    -      var copiedListItem = breakLeftOf(lineEndNode.nextSibling, 0);
    -  
    -      // Walk the parent chain until we reach an unattached LI.
    -      for (var parent;
    -           // Check nodeType since IE invents document fragments.
    -           (parent = copiedListItem.parentNode) && parent.nodeType === 1;) {
    -        copiedListItem = parent;
    -      }
    -      // Put it on the list of lines for later processing.
    -      listItems.push(copiedListItem);
    -    }
    -  
    -    // Split lines while there are lines left to split.
    -    for (var i = 0;  // Number of lines that have been split so far.
    -         i < listItems.length;  // length updated by breakAfter calls.
    -         ++i) {
    -      walk(listItems[i]);
    -    }
    -  
    -    // Make sure numeric indices show correctly.
    -    if (opt_startLineNum === (opt_startLineNum|0)) {
    -      listItems[0].setAttribute('value', opt_startLineNum);
    -    }
    -  
    -    var ol = document.createElement('ol');
    -    ol.className = 'linenums';
    -    var offset = Math.max(0, ((opt_startLineNum - 1 /* zero index */)) | 0) || 0;
    -    for (var i = 0, n = listItems.length; i < n; ++i) {
    -      li = listItems[i];
    -      // Stick a class on the LIs so that stylesheets can
    -      // color odd/even rows, or any other row pattern that
    -      // is co-prime with 10.
    -      li.className = 'L' + ((i + offset) % 10);
    -      if (!li.firstChild) {
    -        li.appendChild(document.createTextNode('\xA0'));
    -      }
    -      ol.appendChild(li);
    -    }
    -  
    -    node.appendChild(ol);
    -  }
    -
    -  /**
    -   * Breaks {@code job.sourceCode} around style boundaries in
    -   * {@code job.decorations} and modifies {@code job.sourceNode} in place.
    -   * @param {Object} job like <pre>{
    -   *    sourceCode: {string} source as plain text,
    -   *    spans: {Array.<number|Node>} alternating span start indices into source
    -   *       and the text node or element (e.g. {@code <BR>}) corresponding to that
    -   *       span.
    -   *    decorations: {Array.<number|string} an array of style classes preceded
    -   *       by the position at which they start in job.sourceCode in order
    -   * }</pre>
    -   * @private
    -   */
    -  function recombineTagsAndDecorations(job) {
    -    var isIE8OrEarlier = /\bMSIE\s(\d+)/.exec(navigator.userAgent);
    -    isIE8OrEarlier = isIE8OrEarlier && +isIE8OrEarlier[1] <= 8;
    -    var newlineRe = /\n/g;
    -  
    -    var source = job.sourceCode;
    -    var sourceLength = source.length;
    -    // Index into source after the last code-unit recombined.
    -    var sourceIndex = 0;
    -  
    -    var spans = job.spans;
    -    var nSpans = spans.length;
    -    // Index into spans after the last span which ends at or before sourceIndex.
    -    var spanIndex = 0;
    -  
    -    var decorations = job.decorations;
    -    var nDecorations = decorations.length;
    -    // Index into decorations after the last decoration which ends at or before
    -    // sourceIndex.
    -    var decorationIndex = 0;
    -  
    -    // Remove all zero-length decorations.
    -    decorations[nDecorations] = sourceLength;
    -    var decPos, i;
    -    for (i = decPos = 0; i < nDecorations;) {
    -      if (decorations[i] !== decorations[i + 2]) {
    -        decorations[decPos++] = decorations[i++];
    -        decorations[decPos++] = decorations[i++];
    -      } else {
    -        i += 2;
    -      }
    -    }
    -    nDecorations = decPos;
    -  
    -    // Simplify decorations.
    -    for (i = decPos = 0; i < nDecorations;) {
    -      var startPos = decorations[i];
    -      // Conflate all adjacent decorations that use the same style.
    -      var startDec = decorations[i + 1];
    -      var end = i + 2;
    -      while (end + 2 <= nDecorations && decorations[end + 1] === startDec) {
    -        end += 2;
    -      }
    -      decorations[decPos++] = startPos;
    -      decorations[decPos++] = startDec;
    -      i = end;
    -    }
    -  
    -    nDecorations = decorations.length = decPos;
    -  
    -    var sourceNode = job.sourceNode;
    -    var oldDisplay;
    -    if (sourceNode) {
    -      oldDisplay = sourceNode.style.display;
    -      sourceNode.style.display = 'none';
    -    }
    -    try {
    -      var decoration = null;
    -      while (spanIndex < nSpans) {
    -        var spanStart = spans[spanIndex];
    -        var spanEnd = spans[spanIndex + 2] || sourceLength;
    -  
    -        var decEnd = decorations[decorationIndex + 2] || sourceLength;
    -  
    -        var end = Math.min(spanEnd, decEnd);
    -  
    -        var textNode = spans[spanIndex + 1];
    -        var styledText;
    -        if (textNode.nodeType !== 1  // Don't muck with <BR>s or <LI>s
    -            // Don't introduce spans around empty text nodes.
    -            && (styledText = source.substring(sourceIndex, end))) {
    -          // This may seem bizarre, and it is.  Emitting LF on IE causes the
    -          // code to display with spaces instead of line breaks.
    -          // Emitting Windows standard issue linebreaks (CRLF) causes a blank
    -          // space to appear at the beginning of every line but the first.
    -          // Emitting an old Mac OS 9 line separator makes everything spiffy.
    -          if (isIE8OrEarlier) {
    -            styledText = styledText.replace(newlineRe, '\r');
    -          }
    -          textNode.nodeValue = styledText;
    -          var document = textNode.ownerDocument;
    -          var span = document.createElement('span');
    -          span.className = decorations[decorationIndex + 1];
    -          var parentNode = textNode.parentNode;
    -          parentNode.replaceChild(span, textNode);
    -          span.appendChild(textNode);
    -          if (sourceIndex < spanEnd) {  // Split off a text node.
    -            spans[spanIndex + 1] = textNode
    -                // TODO: Possibly optimize by using '' if there's no flicker.
    -                = document.createTextNode(source.substring(end, spanEnd));
    -            parentNode.insertBefore(textNode, span.nextSibling);
    -          }
    -        }
    -  
    -        sourceIndex = end;
    -  
    -        if (sourceIndex >= spanEnd) {
    -          spanIndex += 2;
    -        }
    -        if (sourceIndex >= decEnd) {
    -          decorationIndex += 2;
    -        }
    -      }
    -    } finally {
    -      if (sourceNode) {
    -        sourceNode.style.display = oldDisplay;
    -      }
    -    }
    -  }
    -
    -
    -  /** Maps language-specific file extensions to handlers. */
    -  var langHandlerRegistry = {};
    -  /** Register a language handler for the given file extensions.
    -    * @param {function (Object)} handler a function from source code to a list
    -    *      of decorations.  Takes a single argument job which describes the
    -    *      state of the computation.   The single parameter has the form
    -    *      {@code {
    -    *        sourceCode: {string} as plain text.
    -    *        decorations: {Array.<number|string>} an array of style classes
    -    *                     preceded by the position at which they start in
    -    *                     job.sourceCode in order.
    -    *                     The language handler should assigned this field.
    -    *        basePos: {int} the position of source in the larger source chunk.
    -    *                 All positions in the output decorations array are relative
    -    *                 to the larger source chunk.
    -    *      } }
    -    * @param {Array.<string>} fileExtensions
    -    */
    -  function registerLangHandler(handler, fileExtensions) {
    -    for (var i = fileExtensions.length; --i >= 0;) {
    -      var ext = fileExtensions[i];
    -      if (!langHandlerRegistry.hasOwnProperty(ext)) {
    -        langHandlerRegistry[ext] = handler;
    -      } else if (win['console']) {
    -        console['warn']('cannot override language handler %s', ext);
    -      }
    -    }
    -  }
    -  function langHandlerForExtension(extension, source) {
    -    if (!(extension && langHandlerRegistry.hasOwnProperty(extension))) {
    -      // Treat it as markup if the first non whitespace character is a < and
    -      // the last non-whitespace character is a >.
    -      extension = /^\s*</.test(source)
    -          ? 'default-markup'
    -          : 'default-code';
    -    }
    -    return langHandlerRegistry[extension];
    -  }
    -  registerLangHandler(decorateSource, ['default-code']);
    -  registerLangHandler(
    -      createSimpleLexer(
    -          [],
    -          [
    -           [PR_PLAIN,       /^[^<?]+/],
    -           [PR_DECLARATION, /^<!\w[^>]*(?:>|$)/],
    -           [PR_COMMENT,     /^<\!--[\s\S]*?(?:-\->|$)/],
    -           // Unescaped content in an unknown language
    -           ['lang-',        /^<\?([\s\S]+?)(?:\?>|$)/],
    -           ['lang-',        /^<%([\s\S]+?)(?:%>|$)/],
    -           [PR_PUNCTUATION, /^(?:<[%?]|[%?]>)/],
    -           ['lang-',        /^<xmp\b[^>]*>([\s\S]+?)<\/xmp\b[^>]*>/i],
    -           // Unescaped content in javascript.  (Or possibly vbscript).
    -           ['lang-js',      /^<script\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],
    -           // Contains unescaped stylesheet content
    -           ['lang-css',     /^<style\b[^>]*>([\s\S]*?)(<\/style\b[^>]*>)/i],
    -           ['lang-in.tag',  /^(<\/?[a-z][^<>]*>)/i]
    -          ]),
    -      ['default-markup', 'htm', 'html', 'mxml', 'xhtml', 'xml', 'xsl']);
    -  registerLangHandler(
    -      createSimpleLexer(
    -          [
    -           [PR_PLAIN,        /^[\s]+/, null, ' \t\r\n'],
    -           [PR_ATTRIB_VALUE, /^(?:\"[^\"]*\"?|\'[^\']*\'?)/, null, '\"\'']
    -           ],
    -          [
    -           [PR_TAG,          /^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],
    -           [PR_ATTRIB_NAME,  /^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],
    -           ['lang-uq.val',   /^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],
    -           [PR_PUNCTUATION,  /^[=<>\/]+/],
    -           ['lang-js',       /^on\w+\s*=\s*\"([^\"]+)\"/i],
    -           ['lang-js',       /^on\w+\s*=\s*\'([^\']+)\'/i],
    -           ['lang-js',       /^on\w+\s*=\s*([^\"\'>\s]+)/i],
    -           ['lang-css',      /^style\s*=\s*\"([^\"]+)\"/i],
    -           ['lang-css',      /^style\s*=\s*\'([^\']+)\'/i],
    -           ['lang-css',      /^style\s*=\s*([^\"\'>\s]+)/i]
    -           ]),
    -      ['in.tag']);
    -  registerLangHandler(
    -      createSimpleLexer([], [[PR_ATTRIB_VALUE, /^[\s\S]+/]]), ['uq.val']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': CPP_KEYWORDS,
    -          'hashComments': true,
    -          'cStyleComments': true,
    -          'types': C_TYPES
    -        }), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': 'null,true,false'
    -        }), ['json']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': CSHARP_KEYWORDS,
    -          'hashComments': true,
    -          'cStyleComments': true,
    -          'verbatimStrings': true,
    -          'types': C_TYPES
    -        }), ['cs']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': JAVA_KEYWORDS,
    -          'cStyleComments': true
    -        }), ['java']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': SH_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true
    -        }), ['bsh', 'csh', 'sh']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': PYTHON_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'tripleQuotedStrings': true
    -        }), ['cv', 'py']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': PERL_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'regexLiterals': true
    -        }), ['perl', 'pl', 'pm']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': RUBY_KEYWORDS,
    -          'hashComments': true,
    -          'multiLineStrings': true,
    -          'regexLiterals': true
    -        }), ['rb']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': JSCRIPT_KEYWORDS,
    -          'cStyleComments': true,
    -          'regexLiterals': true
    -        }), ['js']);
    -  registerLangHandler(sourceDecorator({
    -          'keywords': COFFEE_KEYWORDS,
    -          'hashComments': 3,  // ### style block comments
    -          'cStyleComments': true,
    -          'multilineStrings': true,
    -          'tripleQuotedStrings': true,
    -          'regexLiterals': true
    -        }), ['coffee']);
    -  registerLangHandler(
    -      createSimpleLexer([], [[PR_STRING, /^[\s\S]+/]]), ['regex']);
    -
    -  function applyDecorator(job) {
    -    var opt_langExtension = job.langExtension;
    -
    -    try {
    -      // Extract tags, and convert the source code to plain text.
    -      var sourceAndSpans = extractSourceSpans(job.sourceNode, job.pre);
    -      /** Plain text. @type {string} */
    -      var source = sourceAndSpans.sourceCode;
    -      job.sourceCode = source;
    -      job.spans = sourceAndSpans.spans;
    -      job.basePos = 0;
    -
    -      // Apply the appropriate language handler
    -      langHandlerForExtension(opt_langExtension, source)(job);
    -
    -      // Integrate the decorations and tags back into the source code,
    -      // modifying the sourceNode in place.
    -      recombineTagsAndDecorations(job);
    -    } catch (e) {
    -      if (win['console']) {
    -        console['log'](e && e['stack'] ? e['stack'] : e);
    -      }
    -    }
    -  }
    -
    -  /**
    -   * @param sourceCodeHtml {string} The HTML to pretty print.
    -   * @param opt_langExtension {string} The language name to use.
    -   *     Typically, a filename extension like 'cpp' or 'java'.
    -   * @param opt_numberLines {number|boolean} True to number lines,
    -   *     or the 1-indexed number of the first line in sourceCodeHtml.
    -   */
    -  function prettyPrintOne(sourceCodeHtml, opt_langExtension, opt_numberLines) {
    -    // PATCHED: http://code.google.com/p/google-code-prettify/issues/detail?id=213
    -    var container = document.createElement('div');
    -    // This could cause images to load and onload listeners to fire.
    -    // E.g. <img onerror="alert(1337)" src="nosuchimage.png">.
    -    // We assume that the inner HTML is from a trusted source.
    -    container.innerHTML = '<pre>' + sourceCodeHtml + '</pre>';
    -    container = container.firstChild;
    -    if (opt_numberLines) {
    -      numberLines(container, opt_numberLines, true);
    -    }
    -
    -    var job = {
    -      langExtension: opt_langExtension,
    -      numberLines: opt_numberLines,
    -      sourceNode: container,
    -      pre: 1
    -    };
    -    applyDecorator(job);
    -    return container.innerHTML;
    -  }
    -
    -  function prettyPrint(opt_whenDone) {
    -    function byTagName(tn) { return document.getElementsByTagName(tn); }
    -    // fetch a list of nodes to rewrite
    -    var codeSegments = [byTagName('pre'), byTagName('code'), byTagName('xmp')];
    -    var elements = [];
    -    for (var i = 0; i < codeSegments.length; ++i) {
    -      for (var j = 0, n = codeSegments[i].length; j < n; ++j) {
    -        elements.push(codeSegments[i][j]);
    -      }
    -    }
    -    codeSegments = null;
    -
    -    var clock = Date;
    -    if (!clock['now']) {
    -      clock = { 'now': function () { return +(new Date); } };
    -    }
    -
    -    // The loop is broken into a series of continuations to make sure that we
    -    // don't make the browser unresponsive when rewriting a large page.
    -    var k = 0;
    -    var prettyPrintingJob;
    -
    -    var langExtensionRe = /\blang(?:uage)?-([\w.]+)(?!\S)/;
    -    var prettyPrintRe = /\bprettyprint\b/;
    -    var prettyPrintedRe = /\bprettyprinted\b/;
    -    var preformattedTagNameRe = /pre|xmp/i;
    -    var codeRe = /^code$/i;
    -    var preCodeXmpRe = /^(?:pre|code|xmp)$/i;
    -
    -    function doWork() {
    -      var endTime = (win['PR_SHOULD_USE_CONTINUATION'] ?
    -                     clock['now']() + 250 /* ms */ :
    -                     Infinity);
    -      for (; k < elements.length && clock['now']() < endTime; k++) {
    -        var cs = elements[k];
    -        var className = cs.className;
    -        if (prettyPrintRe.test(className)
    -            // Don't redo this if we've already done it.
    -            // This allows recalling pretty print to just prettyprint elements
    -            // that have been added to the page since last call.
    -            && !prettyPrintedRe.test(className)) {
    -
    -          // make sure this is not nested in an already prettified element
    -          var nested = false;
    -          for (var p = cs.parentNode; p; p = p.parentNode) {
    -            var tn = p.tagName;
    -            if (preCodeXmpRe.test(tn)
    -                && p.className && prettyPrintRe.test(p.className)) {
    -              nested = true;
    -              break;
    -            }
    -          }
    -          if (!nested) {
    -            // Mark done.  If we fail to prettyprint for whatever reason,
    -            // we shouldn't try again.
    -            cs.className += ' prettyprinted';
    -
    -            // If the classes includes a language extensions, use it.
    -            // Language extensions can be specified like
    -            //     <pre class="prettyprint lang-cpp">
    -            // the language extension "cpp" is used to find a language handler
    -            // as passed to PR.registerLangHandler.
    -            // HTML5 recommends that a language be specified using "language-"
    -            // as the prefix instead.  Google Code Prettify supports both.
    -            // http://dev.w3.org/html5/spec-author-view/the-code-element.html
    -            var langExtension = className.match(langExtensionRe);
    -            // Support <pre class="prettyprint"><code class="language-c">
    -            var wrapper;
    -            if (!langExtension && (wrapper = childContentWrapper(cs))
    -                && codeRe.test(wrapper.tagName)) {
    -              langExtension = wrapper.className.match(langExtensionRe);
    -            }
    -
    -            if (langExtension) { langExtension = langExtension[1]; }
    -
    -            var preformatted;
    -            if (preformattedTagNameRe.test(cs.tagName)) {
    -              preformatted = 1;
    -            } else {
    -              var currentStyle = cs['currentStyle'];
    -              var whitespace = (
    -                  currentStyle
    -                  ? currentStyle['whiteSpace']
    -                  : (document.defaultView
    -                     && document.defaultView.getComputedStyle)
    -                  ? document.defaultView.getComputedStyle(cs, null)
    -                  .getPropertyValue('white-space')
    -                  : 0);
    -              preformatted = whitespace
    -                  && 'pre' === whitespace.substring(0, 3);
    -            }
    -
    -            // Look for a class like linenums or linenums:<n> where <n> is the
    -            // 1-indexed number of the first line.
    -            var lineNums = cs.className.match(/\blinenums\b(?::(\d+))?/);
    -            lineNums = lineNums
    -                ? lineNums[1] && lineNums[1].length ? +lineNums[1] : true
    -                : false;
    -            if (lineNums) { numberLines(cs, lineNums, preformatted); }
    -
    -            // do the pretty printing
    -            prettyPrintingJob = {
    -              langExtension: langExtension,
    -              sourceNode: cs,
    -              numberLines: lineNums,
    -              pre: preformatted
    -            };
    -            applyDecorator(prettyPrintingJob);
    -          }
    -        }
    -      }
    -      if (k < elements.length) {
    -        // finish up in a continuation
    -        setTimeout(doWork, 250);
    -      } else if (opt_whenDone) {
    -        opt_whenDone();
    -      }
    -    }
    -
    -    doWork();
    -  }
    -
    -  /**
    -   * Contains functions for creating and registering new language handlers.
    -   * @type {Object}
    -   */
    -  var PR = win['PR'] = {
    -        'createSimpleLexer': createSimpleLexer,
    -        'registerLangHandler': registerLangHandler,
    -        'sourceDecorator': sourceDecorator,
    -        'PR_ATTRIB_NAME': PR_ATTRIB_NAME,
    -        'PR_ATTRIB_VALUE': PR_ATTRIB_VALUE,
    -        'PR_COMMENT': PR_COMMENT,
    -        'PR_DECLARATION': PR_DECLARATION,
    -        'PR_KEYWORD': PR_KEYWORD,
    -        'PR_LITERAL': PR_LITERAL,
    -        'PR_NOCODE': PR_NOCODE,
    -        'PR_PLAIN': PR_PLAIN,
    -        'PR_PUNCTUATION': PR_PUNCTUATION,
    -        'PR_SOURCE': PR_SOURCE,
    -        'PR_STRING': PR_STRING,
    -        'PR_TAG': PR_TAG,
    -        'PR_TYPE': PR_TYPE,
    -        'prettyPrintOne': win['prettyPrintOne'] = prettyPrintOne,
    -        'prettyPrint': win['prettyPrint'] = prettyPrint
    -      };
    -
    -  // Make PR available via the Asynchronous Module Definition (AMD) API.
    -  // Per https://github.com/amdjs/amdjs-api/wiki/AMD:
    -  // The Asynchronous Module Definition (AMD) API specifies a
    -  // mechanism for defining modules such that the module and its
    -  // dependencies can be asynchronously loaded.
    -  // ...
    -  // To allow a clear indicator that a global define function (as
    -  // needed for script src browser loading) conforms to the AMD API,
    -  // any global define function SHOULD have a property called "amd"
    -  // whose value is an object. This helps avoid conflict with any
    -  // other existing JavaScript code that could have defined a define()
    -  // function that does not conform to the AMD API.
    -  if (typeof define === "function" && define['amd']) {
    -    define("google-code-prettify", [], function () {
    -      return PR; 
    -    });
    -  }
    -})();
    diff --git a/docs/content/misc/contribute.ngdoc b/docs/content/misc/contribute.ngdoc
    index 0e790f18..8b6a7627 100644
    --- a/docs/content/misc/contribute.ngdoc
    +++ b/docs/content/misc/contribute.ngdoc
    @@ -97,11 +97,16 @@ and included in your {@link http://docs.oracle.com/javase/tutorial/essential/env
     
       * `cd angular.js`
       * `npm install`
    +  * `bower install`
     
     * {@link http://gruntjs.com Grunt}: We use Grunt as our build system. Install the grunt command-line tool globally with:
     
       * `sudo npm install -g grunt-cli`
     
    +* {@link http://bower.io/ Bower}: Bower is used to manage packages for the docs. Install the bower tool globally with:
    +
    +  * `sudo npm install -g bower`
    +
     
     ## Creating a Github Account and Forking Angular
     
    @@ -131,7 +136,11 @@ minified AngularJS files:
     
             npm install
     
    -5. To build AngularJS, run:
    +5. To add docs components
    +
    +        bower install
    +
    +6. To build AngularJS, run:
     
             grunt package
     
    diff --git a/docs/src/gen-docs.js b/docs/src/gen-docs.js
    index 992c4527..da39698f 100755
    --- a/docs/src/gen-docs.js
    +++ b/docs/src/gen-docs.js
    @@ -10,6 +10,12 @@ var docs;
     
     writer.makeDir('build/docs/', true).then(function() {
       return writer.makeDir('build/docs/partials/');
    +}).then(function() {
    +  return writer.makeDir('build/docs/components/');
    +}).then(function() {
    +  return writer.makeDir('build/docs/components/bootstrap');
    +}).then(function() {
    +  return writer.makeDir('build/docs/components/font-awesome');
     }).then(function() {
       console.log('Generating AngularJS Reference Documentation...');
       return reader.collect();
    @@ -39,12 +45,23 @@ function writeTheRest(writesFuture) {
       var metadata = ngdoc.metadata(docs);
     
       writesFuture.push(writer.symlinkTemplate('css', 'dir'));
    -  writesFuture.push(writer.symlinkTemplate('font', 'dir'));
       writesFuture.push(writer.symlink('../../docs/img', 'build/docs/img', 'dir'));
       writesFuture.push(writer.symlinkTemplate('js', 'dir'));
     
       var manifest = 'manifest="/build/docs/appcache.manifest"';
     
    +  writesFuture.push(writer.copyDir('components/components-font-awesome/css', 'components/font-awesome/css'));
    +  writesFuture.push(writer.copyDir('components/components-font-awesome/font', 'components/font-awesome/font'));
    +  writesFuture.push(writer.copyDir('components/bootstrap', 'components/bootstrap'));
    +
    +  writesFuture.push(writer.copy('components/lunr.js/lunr.js', 'components/lunr.js'));
    +  writesFuture.push(writer.copy('components/lunr.js/lunr.min.js', 'components/lunr.min.js'));
    +  writesFuture.push(writer.copy('components/jquery/jquery.js', 'components/jquery.js'));
    +  writesFuture.push(writer.copy('components/jquery/jquery.min.js', 'components/jquery.min.js'));
    +  writesFuture.push(writer.copy('components/google-code-prettify/src/prettify.js', 'components/google-code-prettify.js'));
    +  writesFuture.push(writer.copy('docs/components/angular-bootstrap/bootstrap.js', 'components/angular-bootstrap.js'));
    +  writesFuture.push(writer.copy('docs/components/angular-bootstrap/bootstrap-prettify.js', 'components/angular-bootstrap-prettify.js'));
    +
       writesFuture.push(writer.copy('docs/src/templates/index.html', 'index.html',
                                     writer.replace, {'doc:manifest': ''})); //manifest //TODO(i): enable
     
    diff --git a/docs/src/templates/css/bootstrap.min.css b/docs/src/templates/css/bootstrap.min.css
    deleted file mode 100644
    index c9514677..00000000
    --- a/docs/src/templates/css/bootstrap.min.css
    +++ /dev/null
    @@ -1,689 +0,0 @@
    -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
    -audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
    -audio:not([controls]){display:none;}
    -html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
    -a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
    -a:hover,a:active{outline:0;}
    -sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
    -sup{top:-0.5em;}
    -sub{bottom:-0.25em;}
    -img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;}
    -button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;}
    -button,input{*overflow:visible;line-height:normal;}
    -button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
    -button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
    -input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
    -input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
    -textarea{overflow:auto;vertical-align:top;}
    -.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
    -.clearfix:after{clear:both;}
    -.hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;}
    -.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
    -body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;}
    -a{color:#0088cc;text-decoration:none;}
    -a:hover{color:#005580;text-decoration:underline;}
    -.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";}
    -.row:after{clear:both;}
    -[class*="span"]{float:left;margin-left:20px;}
    -.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
    -.span12{width:940px;}
    -.span11{width:860px;}
    -.span10{width:780px;}
    -.span9{width:700px;}
    -.span8{width:620px;}
    -.span7{width:540px;}
    -.span6{width:460px;}
    -.span5{width:380px;}
    -.span4{width:300px;}
    -.span3{width:220px;}
    -.span2{width:140px;}
    -.span1{width:60px;}
    -.offset12{margin-left:980px;}
    -.offset11{margin-left:900px;}
    -.offset10{margin-left:820px;}
    -.offset9{margin-left:740px;}
    -.offset8{margin-left:660px;}
    -.offset7{margin-left:580px;}
    -.offset6{margin-left:500px;}
    -.offset5{margin-left:420px;}
    -.offset4{margin-left:340px;}
    -.offset3{margin-left:260px;}
    -.offset2{margin-left:180px;}
    -.offset1{margin-left:100px;}
    -.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";}
    -.row-fluid:after{clear:both;}
    -.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;}
    -.row-fluid>[class*="span"]:first-child{margin-left:0;}
    -.row-fluid > .span12{width:99.99999998999999%;}
    -.row-fluid > .span11{width:91.489361693%;}
    -.row-fluid > .span10{width:82.97872339599999%;}
    -.row-fluid > .span9{width:74.468085099%;}
    -.row-fluid > .span8{width:65.95744680199999%;}
    -.row-fluid > .span7{width:57.446808505%;}
    -.row-fluid > .span6{width:48.93617020799999%;}
    -.row-fluid > .span5{width:40.425531911%;}
    -.row-fluid > .span4{width:31.914893614%;}
    -.row-fluid > .span3{width:23.404255317%;}
    -.row-fluid > .span2{width:14.89361702%;}
    -.row-fluid > .span1{width:6.382978723%;}
    -.container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";}
    -.container:after{clear:both;}
    -.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";}
    -.container-fluid:after{clear:both;}
    -p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;}
    -.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;}
    -h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;}
    -h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;}
    -h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;}
    -h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;}
    -h4,h5,h6{line-height:18px;}
    -h4{font-size:14px;}h4 small{font-size:12px;}
    -h5{font-size:12px;}
    -h6{font-size:11px;color:#999999;text-transform:uppercase;}
    -.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;}
    -.page-header h1{line-height:1;}
    -ul,ol{padding:0;margin:0 0 9px 25px;}
    -ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
    -ul{list-style:disc;}
    -ol{list-style:decimal;}
    -li{line-height:18px;}
    -ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}
    -dl{margin-bottom:18px;}
    -dt,dd{line-height:18px;}
    -dt{font-weight:bold;line-height:17px;}
    -dd{margin-left:9px;}
    -.dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;}
    -.dl-horizontal dd{margin-left:130px;}
    -hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;}
    -strong{font-weight:bold;}
    -em{font-style:italic;}
    -.muted{color:#999999;}
    -abbr[title]{border-bottom:1px dotted #ddd;cursor:help;}
    -abbr.initialism{font-size:90%;text-transform:uppercase;}
    -blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;}
    -blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';}
    -blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;}
    -q:before,q:after,blockquote:before,blockquote:after{content:"";}
    -address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;}
    -small{font-size:100%;}
    -cite{font-style:normal;}
    -code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
    -code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;}
    -pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;}
    -pre code{padding:0;color:inherit;background-color:transparent;border:0;}
    -.pre-scrollable{max-height:340px;overflow-y:scroll;}
    -form{margin:0 0 18px;}
    -fieldset{padding:0;margin:0;border:0;}
    -legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;}
    -label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;}
    -input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
    -label{display:block;margin-bottom:5px;color:#333333;}
    -input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
    -.uneditable-textarea{width:auto;height:auto;}
    -label input,label textarea,label select{display:block;}
    -input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;}
    -input[type="image"]{border:0;}
    -input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
    -input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;}
    -select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;}
    -input[type="file"]{line-height:18px \9;}
    -select{width:220px;background-color:#ffffff;}
    -select[multiple],select[size]{height:auto;}
    -input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
    -textarea{height:auto;}
    -input[type="hidden"]{display:none;}
    -.radio,.checkbox{padding-left:18px;}
    -.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;}
    -.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
    -.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
    -.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;}
    -input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;}
    -input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;}
    -input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
    -.input-mini{width:60px;}
    -.input-small{width:90px;}
    -.input-medium{width:150px;}
    -.input-large{width:210px;}
    -.input-xlarge{width:270px;}
    -.input-xxlarge{width:530px;}
    -input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;}
    -input,textarea,.uneditable-input{margin-left:0;}
    -input.span12, textarea.span12, .uneditable-input.span12{width:930px;}
    -input.span11, textarea.span11, .uneditable-input.span11{width:850px;}
    -input.span10, textarea.span10, .uneditable-input.span10{width:770px;}
    -input.span9, textarea.span9, .uneditable-input.span9{width:690px;}
    -input.span8, textarea.span8, .uneditable-input.span8{width:610px;}
    -input.span7, textarea.span7, .uneditable-input.span7{width:530px;}
    -input.span6, textarea.span6, .uneditable-input.span6{width:450px;}
    -input.span5, textarea.span5, .uneditable-input.span5{width:370px;}
    -input.span4, textarea.span4, .uneditable-input.span4{width:290px;}
    -input.span3, textarea.span3, .uneditable-input.span3{width:210px;}
    -input.span2, textarea.span2, .uneditable-input.span2{width:130px;}
    -input.span1, textarea.span1, .uneditable-input.span1{width:50px;}
    -input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;}
    -.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;}
    -.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;}
    -.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;}
    -.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;}
    -.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;}
    -.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;}
    -.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;}
    -.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;}
    -.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;}
    -input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
    -.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";}
    -.form-actions:after{clear:both;}
    -.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;}
    -:-moz-placeholder{color:#999999;}
    -::-webkit-input-placeholder{color:#999999;}
    -.help-block,.help-inline{color:#555555;}
    -.help-block{display:block;margin-bottom:9px;}
    -.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
    -.input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;}
    -.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;}
    -.input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;}
    -.input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
    -.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;}
    -.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
    -.input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
    -.input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;}
    -.input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
    -.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
    -.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
    -.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
    -.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;}
    -.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;}
    -.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;}
    -.form-search label,.form-inline label{display:inline-block;}
    -.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
    -.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
    -.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;}
    -.control-group{margin-bottom:9px;}
    -legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;}
    -.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";}
    -.form-horizontal .control-group:after{clear:both;}
    -.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;}
    -.form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;}
    -.form-horizontal .help-block{margin-top:9px;margin-bottom:0;}
    -.form-horizontal .form-actions{padding-left:160px;}
    -table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;}
    -.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;}
    -.table th{font-weight:bold;}
    -.table thead th{vertical-align:bottom;}
    -.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
    -.table tbody+tbody{border-top:2px solid #dddddd;}
    -.table-condensed th,.table-condensed td{padding:4px 5px;}
    -.table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;}
    -.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;}
    -.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;}
    -.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;}
    -.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;}
    -.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;}
    -.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;}
    -.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;}
    -table .span1{float:none;width:44px;margin-left:0;}
    -table .span2{float:none;width:124px;margin-left:0;}
    -table .span3{float:none;width:204px;margin-left:0;}
    -table .span4{float:none;width:284px;margin-left:0;}
    -table .span5{float:none;width:364px;margin-left:0;}
    -table .span6{float:none;width:444px;margin-left:0;}
    -table .span7{float:none;width:524px;margin-left:0;}
    -table .span8{float:none;width:604px;margin-left:0;}
    -table .span9{float:none;width:684px;margin-left:0;}
    -table .span10{float:none;width:764px;margin-left:0;}
    -table .span11{float:none;width:844px;margin-left:0;}
    -table .span12{float:none;width:924px;margin-left:0;}
    -table .span13{float:none;width:1004px;margin-left:0;}
    -table .span14{float:none;width:1084px;margin-left:0;}
    -table .span15{float:none;width:1164px;margin-left:0;}
    -table .span16{float:none;width:1244px;margin-left:0;}
    -table .span17{float:none;width:1324px;margin-left:0;}
    -table .span18{float:none;width:1404px;margin-left:0;}
    -table .span19{float:none;width:1484px;margin-left:0;}
    -table .span20{float:none;width:1564px;margin-left:0;}
    -table .span21{float:none;width:1644px;margin-left:0;}
    -table .span22{float:none;width:1724px;margin-left:0;}
    -table .span23{float:none;width:1804px;margin-left:0;}
    -table .span24{float:none;width:1884px;margin-left:0;}
    -[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;}
    -.icon-white{background-image:url("../img/glyphicons-halflings-white.png");}
    -.icon-glass{background-position:0 0;}
    -.icon-music{background-position:-24px 0;}
    -.icon-search{background-position:-48px 0;}
    -.icon-envelope{background-position:-72px 0;}
    -.icon-heart{background-position:-96px 0;}
    -.icon-star{background-position:-120px 0;}
    -.icon-star-empty{background-position:-144px 0;}
    -.icon-user{background-position:-168px 0;}
    -.icon-film{background-position:-192px 0;}
    -.icon-th-large{background-position:-216px 0;}
    -.icon-th{background-position:-240px 0;}
    -.icon-th-list{background-position:-264px 0;}
    -.icon-ok{background-position:-288px 0;}
    -.icon-remove{background-position:-312px 0;}
    -.icon-zoom-in{background-position:-336px 0;}
    -.icon-zoom-out{background-position:-360px 0;}
    -.icon-off{background-position:-384px 0;}
    -.icon-signal{background-position:-408px 0;}
    -.icon-cog{background-position:-432px 0;}
    -.icon-trash{background-position:-456px 0;}
    -.icon-home{background-position:0 -24px;}
    -.icon-file{background-position:-24px -24px;}
    -.icon-time{background-position:-48px -24px;}
    -.icon-road{background-position:-72px -24px;}
    -.icon-download-alt{background-position:-96px -24px;}
    -.icon-download{background-position:-120px -24px;}
    -.icon-upload{background-position:-144px -24px;}
    -.icon-inbox{background-position:-168px -24px;}
    -.icon-play-circle{background-position:-192px -24px;}
    -.icon-repeat{background-position:-216px -24px;}
    -.icon-refresh{background-position:-240px -24px;}
    -.icon-list-alt{background-position:-264px -24px;}
    -.icon-lock{background-position:-287px -24px;}
    -.icon-flag{background-position:-312px -24px;}
    -.icon-headphones{background-position:-336px -24px;}
    -.icon-volume-off{background-position:-360px -24px;}
    -.icon-volume-down{background-position:-384px -24px;}
    -.icon-volume-up{background-position:-408px -24px;}
    -.icon-qrcode{background-position:-432px -24px;}
    -.icon-barcode{background-position:-456px -24px;}
    -.icon-tag{background-position:0 -48px;}
    -.icon-tags{background-position:-25px -48px;}
    -.icon-book{background-position:-48px -48px;}
    -.icon-bookmark{background-position:-72px -48px;}
    -.icon-print{background-position:-96px -48px;}
    -.icon-camera{background-position:-120px -48px;}
    -.icon-font{background-position:-144px -48px;}
    -.icon-bold{background-position:-167px -48px;}
    -.icon-italic{background-position:-192px -48px;}
    -.icon-text-height{background-position:-216px -48px;}
    -.icon-text-width{background-position:-240px -48px;}
    -.icon-align-left{background-position:-264px -48px;}
    -.icon-align-center{background-position:-288px -48px;}
    -.icon-align-right{background-position:-312px -48px;}
    -.icon-align-justify{background-position:-336px -48px;}
    -.icon-list{background-position:-360px -48px;}
    -.icon-indent-left{background-position:-384px -48px;}
    -.icon-indent-right{background-position:-408px -48px;}
    -.icon-facetime-video{background-position:-432px -48px;}
    -.icon-picture{background-position:-456px -48px;}
    -.icon-pencil{background-position:0 -72px;}
    -.icon-map-marker{background-position:-24px -72px;}
    -.icon-adjust{background-position:-48px -72px;}
    -.icon-tint{background-position:-72px -72px;}
    -.icon-edit{background-position:-96px -72px;}
    -.icon-share{background-position:-120px -72px;}
    -.icon-check{background-position:-144px -72px;}
    -.icon-move{background-position:-168px -72px;}
    -.icon-step-backward{background-position:-192px -72px;}
    -.icon-fast-backward{background-position:-216px -72px;}
    -.icon-backward{background-position:-240px -72px;}
    -.icon-play{background-position:-264px -72px;}
    -.icon-pause{background-position:-288px -72px;}
    -.icon-stop{background-position:-312px -72px;}
    -.icon-forward{background-position:-336px -72px;}
    -.icon-fast-forward{background-position:-360px -72px;}
    -.icon-step-forward{background-position:-384px -72px;}
    -.icon-eject{background-position:-408px -72px;}
    -.icon-chevron-left{background-position:-432px -72px;}
    -.icon-chevron-right{background-position:-456px -72px;}
    -.icon-plus-sign{background-position:0 -96px;}
    -.icon-minus-sign{background-position:-24px -96px;}
    -.icon-remove-sign{background-position:-48px -96px;}
    -.icon-ok-sign{background-position:-72px -96px;}
    -.icon-question-sign{background-position:-96px -96px;}
    -.icon-info-sign{background-position:-120px -96px;}
    -.icon-screenshot{background-position:-144px -96px;}
    -.icon-remove-circle{background-position:-168px -96px;}
    -.icon-ok-circle{background-position:-192px -96px;}
    -.icon-ban-circle{background-position:-216px -96px;}
    -.icon-arrow-left{background-position:-240px -96px;}
    -.icon-arrow-right{background-position:-264px -96px;}
    -.icon-arrow-up{background-position:-289px -96px;}
    -.icon-arrow-down{background-position:-312px -96px;}
    -.icon-share-alt{background-position:-336px -96px;}
    -.icon-resize-full{background-position:-360px -96px;}
    -.icon-resize-small{background-position:-384px -96px;}
    -.icon-plus{background-position:-408px -96px;}
    -.icon-minus{background-position:-433px -96px;}
    -.icon-asterisk{background-position:-456px -96px;}
    -.icon-exclamation-sign{background-position:0 -120px;}
    -.icon-gift{background-position:-24px -120px;}
    -.icon-leaf{background-position:-48px -120px;}
    -.icon-fire{background-position:-72px -120px;}
    -.icon-eye-open{background-position:-96px -120px;}
    -.icon-eye-close{background-position:-120px -120px;}
    -.icon-warning-sign{background-position:-144px -120px;}
    -.icon-plane{background-position:-168px -120px;}
    -.icon-calendar{background-position:-192px -120px;}
    -.icon-random{background-position:-216px -120px;}
    -.icon-comment{background-position:-240px -120px;}
    -.icon-magnet{background-position:-264px -120px;}
    -.icon-chevron-up{background-position:-288px -120px;}
    -.icon-chevron-down{background-position:-313px -119px;}
    -.icon-retweet{background-position:-336px -120px;}
    -.icon-shopping-cart{background-position:-360px -120px;}
    -.icon-folder-close{background-position:-384px -120px;}
    -.icon-folder-open{background-position:-408px -120px;}
    -.icon-resize-vertical{background-position:-432px -119px;}
    -.icon-resize-horizontal{background-position:-456px -118px;}
    -.dropdown{position:relative;}
    -.dropdown-toggle{*margin-bottom:-3px;}
    -.dropdown-toggle:active,.open .dropdown-toggle{outline:0;}
    -.caret{display:inline-block;width:0;height:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"";}
    -.dropdown .caret{margin-top:8px;margin-left:2px;}
    -.dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);}
    -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.pull-right{right:0;left:auto;}
    -.dropdown-menu .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;}
    -.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333333;white-space:nowrap;}
    -.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;}
    -.dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);}
    -.dropdown.open .dropdown-menu{display:block;}
    -.pull-right .dropdown-menu{left:auto;right:0;}
    -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"\2191";}
    -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}
    -.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
    -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);}
    -.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
    -.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
    -.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;}
    -.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;}
    -.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;}
    -.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;}
    -.btn:active,.btn.active{background-color:#cccccc \9;}
    -.btn:first-child{*margin-left:0;}
    -.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
    -.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
    -.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;}
    -.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
    -.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
    -.btn-large [class^="icon-"]{margin-top:1px;}
    -.btn-small{padding:5px 9px;font-size:11px;line-height:16px;}
    -.btn-small [class^="icon-"]{margin-top:-1px;}
    -.btn-mini{padding:2px 6px;font-size:11px;line-height:14px;}
    -.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;}
    -.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);}
    -.btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;}
    -.btn-primary:active,.btn-primary.active{background-color:#004099 \9;}
    -.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;}
    -.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;}
    -.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;}
    -.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}
    -.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;}
    -.btn-success:active,.btn-success.active{background-color:#408140 \9;}
    -.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;}
    -.btn-info:active,.btn-info.active{background-color:#24748c \9;}
    -.btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;}
    -.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}
    -button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;}
    -button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;}
    -button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;}
    -button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;}
    -.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";}
    -.btn-group:after{clear:both;}
    -.btn-group:first-child{*margin-left:0;}
    -.btn-group+.btn-group{margin-left:5px;}
    -.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;}
    -.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
    -.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
    -.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
    -.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
    -.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
    -.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;}
    -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
    -.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-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);-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);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);*padding-top:3px;*padding-bottom:3px;}
    -.btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;}
    -.btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;}
    -.btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;}
    -.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
    -.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);}
    -.btn .caret{margin-top:7px;margin-left:0;}
    -.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);}
    -.btn-mini .caret{margin-top:5px;}
    -.btn-small .caret{margin-top:6px;}
    -.btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
    -.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);}
    -.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;}
    -.alert-heading{color:inherit;}
    -.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;}
    -.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;}
    -.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;}
    -.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;}
    -.alert-block{padding-top:14px;padding-bottom:14px;}
    -.alert-block>p,.alert-block>ul{margin-bottom:0;}
    -.alert-block p+p{margin-top:5px;}
    -.nav{margin-left:0;margin-bottom:18px;list-style:none;}
    -.nav>li>a{display:block;}
    -.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;}
    -.nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
    -.nav li+.nav-header{margin-top:9px;}
    -.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;}
    -.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
    -.nav-list>li>a{padding:3px 15px;}
    -.nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;}
    -.nav-list [class^="icon-"]{margin-right:2px;}
    -.nav-list .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;}
    -.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";}
    -.nav-tabs:after,.nav-pills:after{clear:both;}
    -.nav-tabs>li,.nav-pills>li{float:left;}
    -.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;}
    -.nav-tabs{border-bottom:1px solid #ddd;}
    -.nav-tabs>li{margin-bottom:-1px;}
    -.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:18px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;}
    -.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}
    -.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
    -.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;}
    -.nav-stacked>li{float:none;}
    -.nav-stacked>li>a{margin-right:0;}
    -.nav-tabs.nav-stacked{border-bottom:0;}
    -.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
    -.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}
    -.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}
    -.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;}
    -.nav-pills.nav-stacked>li>a{margin-bottom:3px;}
    -.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;}
    -.nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;}
    -.nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
    -.nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;}
    -.nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;}
    -.nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;border-bottom-color:#333333;}
    -.nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;}
    -.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;}
    -.nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);}
    -.tabs-stacked .open>a:hover{border-color:#999999;}
    -.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";}
    -.tabbable:after{clear:both;}
    -.tab-content{display:table;width:100%;}
    -.tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;}
    -.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;}
    -.tab-content>.active,.pill-content>.active{display:block;}
    -.tabs-below .nav-tabs{border-top:1px solid #ddd;}
    -.tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;}
    -.tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;}
    -.tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;}
    -.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;}
    -.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;}
    -.tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;}
    -.tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
    -.tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;}
    -.tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;}
    -.tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;}
    -.tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
    -.tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;}
    -.tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;}
    -.navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;}
    -.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);}
    -.navbar .container{width:auto;}
    -.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;}
    -.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;}
    -.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);}
    -.btn-navbar .icon-bar+.icon-bar{margin-top:3px;}
    -.nav-collapse.collapse{height:auto;}
    -.navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;}
    -.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;}
    -.navbar .navbar-text{margin-bottom:0;line-height:40px;}
    -.navbar .btn,.navbar .btn-group{margin-top:5px;}
    -.navbar .btn-group .btn{margin-top:0;}
    -.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";}
    -.navbar-form:after{clear:both;}
    -.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;}
    -.navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;}
    -.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;}
    -.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;}
    -.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;}
    -.navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;}
    -.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
    -.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;}
    -.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
    -.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
    -.navbar-fixed-top{top:0;}
    -.navbar-fixed-bottom{bottom:0;}
    -.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
    -.navbar .nav.pull-right{float:right;}
    -.navbar .nav>li{display:block;float:left;}
    -.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}
    -.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;}
    -.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;}
    -.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;}
    -.navbar .nav.pull-right{margin-left:10px;margin-right:0;}
    -.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;}
    -.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;}
    -.navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;}
    -.navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;}
    -.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
    -.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);}
    -.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;}
    -.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;}
    -.navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;}
    -.navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;}
    -.breadcrumb{padding:7px 14px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}
    -.breadcrumb .divider{padding:0 5px;color:#999999;}
    -.breadcrumb .active a{color:#333333;}
    -.pagination{height:36px;margin:18px 0;}
    -.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);}
    -.pagination li{display:inline;}
    -.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;}
    -.pagination a:hover,.pagination .active a{background-color:#f5f5f5;}
    -.pagination .active a{color:#999999;cursor:default;}
    -.pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;}
    -.pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
    -.pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
    -.pagination-centered{text-align:center;}
    -.pagination-right{text-align:right;}
    -.pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";}
    -.pager:after{clear:both;}
    -.pager li{display:inline;}
    -.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
    -.pager a:hover{text-decoration:none;background-color:#f5f5f5;}
    -.pager .next a{float:right;}
    -.pager .previous a{float:left;}
    -.pager .disabled a,.pager .disabled a:hover{color:#999999;background-color:#fff;cursor:default;}
    -.modal-open .dropdown-menu{z-index:2050;}
    -.modal-open .dropdown.open{*z-index:2050;}
    -.modal-open .popover{z-index:2060;}
    -.modal-open .tooltip{z-index:2070;}
    -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;}
    -.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);}
    -.modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;}
    -.modal.fade.in{top:50%;}
    -.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;}
    -.modal-body{overflow-y:auto;max-height:400px;padding:15px;}
    -.modal-form{margin-bottom:0;}
    -.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";}
    -.modal-footer:after{clear:both;}
    -.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;}
    -.modal-footer .btn-group .btn+.btn{margin-left:-1px;}
    -.tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
    -.tooltip.top{margin-top:-2px;}
    -.tooltip.right{margin-left:2px;}
    -.tooltip.bottom{margin-top:2px;}
    -.tooltip.left{margin-left:-2px;}
    -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
    -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}
    -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}
    -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}
    -.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
    -.tooltip-arrow{position:absolute;width:0;height:0;}
    -.popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;}
    -.popover.right{margin-left:5px;}
    -.popover.bottom{margin-top:5px;}
    -.popover.left{margin-left:-5px;}
    -.popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
    -.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;}
    -.popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;}
    -.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;}
    -.popover .arrow{position:absolute;width:0;height:0;}
    -.popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);}
    -.popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;}
    -.popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;}
    -.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";}
    -.thumbnails:after{clear:both;}
    -.thumbnails>li{float:left;margin:0 0 18px 20px;}
    -.thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);}
    -a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);}
    -.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;}
    -.thumbnail .caption{padding:9px;}
    -.label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
    -.label:hover{color:#ffffff;text-decoration:none;}
    -.label-important{background-color:#b94a48;}
    -.label-important:hover{background-color:#953b39;}
    -.label-warning{background-color:#f89406;}
    -.label-warning:hover{background-color:#c67605;}
    -.label-success{background-color:#468847;}
    -.label-success:hover{background-color:#356635;}
    -.label-info{background-color:#3a87ad;}
    -.label-info:hover{background-color:#2d6987;}
    -.label-inverse{background-color:#333333;}
    -.label-inverse:hover{background-color:#1a1a1a;}
    -.badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
    -.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;}
    -.badge-error{background-color:#b94a48;}
    -.badge-error:hover{background-color:#953b39;}
    -.badge-warning{background-color:#f89406;}
    -.badge-warning:hover{background-color:#c67605;}
    -.badge-success{background-color:#468847;}
    -.badge-success:hover{background-color:#356635;}
    -.badge-info{background-color:#3a87ad;}
    -.badge-info:hover{background-color:#2d6987;}
    -.badge-inverse{background-color:#333333;}
    -.badge-inverse:hover{background-color:#1a1a1a;}
    -@-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
    -.progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;}
    -.progress-striped .bar{background-color:#149bdf;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));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);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);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);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);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);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;}
    -.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;}
    -.progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);}
    -.progress-danger.progress-striped .bar{background-color:#ee5f5b;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));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);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);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);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);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);}
    -.progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);}
    -.progress-success.progress-striped .bar{background-color:#62c462;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));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);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);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);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);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);}
    -.progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);}
    -.progress-info.progress-striped .bar{background-color:#5bc0de;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));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);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);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);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);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);}
    -.progress-warning .bar{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);}
    -.progress-warning.progress-striped .bar{background-color:#fbb450;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));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);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);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);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);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);}
    -.accordion{margin-bottom:18px;}
    -.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
    -.accordion-heading{border-bottom:0;}
    -.accordion-heading .accordion-toggle{display:block;padding:8px 15px;}
    -.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;}
    -.carousel{position:relative;margin-bottom:18px;line-height:1;}
    -.carousel-inner{overflow:hidden;width:100%;position:relative;}
    -.carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}
    -.carousel .item>img{display:block;line-height:1;}
    -.carousel .active,.carousel .next,.carousel .prev{display:block;}
    -.carousel .active{left:0;}
    -.carousel .next,.carousel .prev{position:absolute;top:0;width:100%;}
    -.carousel .next{left:100%;}
    -.carousel .prev{left:-100%;}
    -.carousel .next.left,.carousel .prev.right{left:0;}
    -.carousel .active.left{left:-100%;}
    -.carousel .active.right{left:100%;}
    -.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;}
    -.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);}
    -.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);}
    -.carousel-caption h4,.carousel-caption p{color:#ffffff;}
    -.hero-unit{padding:60px;margin-bottom:30px;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;}
    -.hero-unit p{font-size:18px;font-weight:200;line-height:27px;color:inherit;}
    -.pull-right{float:right;}
    -.pull-left{float:left;}
    -.hide{display:none;}
    -.show{display:block;}
    -.invisible{visibility:hidden;}
    diff --git a/docs/src/templates/css/docs.css b/docs/src/templates/css/docs.css
    index 00aac98d..a98f7429 100644
    --- a/docs/src/templates/css/docs.css
    +++ b/docs/src/templates/css/docs.css
    @@ -1,8 +1,3 @@
    -img.AngularJS-small {
    -  width: 95px;
    -  height: 25px;
    -}
    -
     /* this is here to avoid the display=block shuffling of ngShow */
     .breadcrumb li > * {
       float:left;
    diff --git a/docs/src/templates/css/font-awesome.css b/docs/src/templates/css/font-awesome.css
    deleted file mode 100755
    index 88750989..00000000
    --- a/docs/src/templates/css/font-awesome.css
    +++ /dev/null
    @@ -1,540 +0,0 @@
    -/*!
    - *  Font Awesome 3.0.2
    - *  the iconic font designed for use with Twitter Bootstrap
    - *  -------------------------------------------------------
    - *  The full suite of pictographic icons, examples, and documentation
    - *  can be found at: http://fortawesome.github.com/Font-Awesome/
    - *
    - *  License
    - *  -------------------------------------------------------
    - *  - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL
    - *  - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
    - *    http://opensource.org/licenses/mit-license.html
    - *  - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/
    - *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
    - *    "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"
    -
    - *  Contact
    - *  -------------------------------------------------------
    - *  Email: dave@davegandy.com
    - *  Twitter: http://twitter.com/fortaweso_me
    - *  Work: Lead Product Designer @ http://kyruus.com
    - */
    -@font-face {
    -  font-family: 'FontAwesome';
    -  src: url('../font/fontawesome-webfont.eot?v=3.0.1');
    -  src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
    -    url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'),
    -    url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype');
    -  font-weight: normal;
    -  font-style: normal;
    -}
    -/*  Font Awesome styles
    -    ------------------------------------------------------- */
    -[class^="icon-"],
    -[class*=" icon-"] {
    -  font-family: FontAwesome;
    -  font-weight: normal;
    -  font-style: normal;
    -  text-decoration: inherit;
    -  -webkit-font-smoothing: antialiased;
    -
    -  /* sprites.less reset */
    -  display: inline;
    -  width: auto;
    -  height: auto;
    -  line-height: normal;
    -  vertical-align: baseline;
    -  background-image: none;
    -  background-position: 0% 0%;
    -  background-repeat: repeat;
    -  margin-top: 0;
    -}
    -/* more sprites.less reset */
    -.icon-white,
    -.nav-pills > .active > a > [class^="icon-"],
    -.nav-pills > .active > a > [class*=" icon-"],
    -.nav-list > .active > a > [class^="icon-"],
    -.nav-list > .active > a > [class*=" icon-"],
    -.navbar-inverse .nav > .active > a > [class^="icon-"],
    -.navbar-inverse .nav > .active > a > [class*=" icon-"],
    -.dropdown-menu > li > a:hover > [class^="icon-"],
    -.dropdown-menu > li > a:hover > [class*=" icon-"],
    -.dropdown-menu > .active > a > [class^="icon-"],
    -.dropdown-menu > .active > a > [class*=" icon-"],
    -.dropdown-submenu:hover > a > [class^="icon-"],
    -.dropdown-submenu:hover > a > [class*=" icon-"] {
    -  background-image: none;
    -}
    -[class^="icon-"]:before,
    -[class*=" icon-"]:before {
    -  text-decoration: inherit;
    -  display: inline-block;
    -  speak: none;
    -}
    -/* makes sure icons active on rollover in links */
    -a [class^="icon-"],
    -a [class*=" icon-"] {
    -  display: inline-block;
    -}
    -/* makes the font 33% larger relative to the icon container */
    -.icon-large:before {
    -  vertical-align: -10%;
    -  font-size: 1.3333333333333333em;
    -}
    -.btn [class^="icon-"],
    -.nav [class^="icon-"],
    -.btn [class*=" icon-"],
    -.nav [class*=" icon-"] {
    -  display: inline;
    -  /* keeps button heights with and without icons the same */
    -
    -}
    -.btn [class^="icon-"].icon-large,
    -.nav [class^="icon-"].icon-large,
    -.btn [class*=" icon-"].icon-large,
    -.nav [class*=" icon-"].icon-large {
    -  line-height: .9em;
    -}
    -.btn [class^="icon-"].icon-spin,
    -.nav [class^="icon-"].icon-spin,
    -.btn [class*=" icon-"].icon-spin,
    -.nav [class*=" icon-"].icon-spin {
    -  display: inline-block;
    -}
    -.nav-tabs [class^="icon-"],
    -.nav-pills [class^="icon-"],
    -.nav-tabs [class*=" icon-"],
    -.nav-pills [class*=" icon-"] {
    -  /* keeps button heights with and without icons the same */
    -
    -}
    -.nav-tabs [class^="icon-"],
    -.nav-pills [class^="icon-"],
    -.nav-tabs [class*=" icon-"],
    -.nav-pills [class*=" icon-"],
    -.nav-tabs [class^="icon-"].icon-large,
    -.nav-pills [class^="icon-"].icon-large,
    -.nav-tabs [class*=" icon-"].icon-large,
    -.nav-pills [class*=" icon-"].icon-large {
    -  line-height: .9em;
    -}
    -li [class^="icon-"],
    -.nav li [class^="icon-"],
    -li [class*=" icon-"],
    -.nav li [class*=" icon-"] {
    -  display: inline-block;
    -  width: 1.25em;
    -  text-align: center;
    -}
    -li [class^="icon-"].icon-large,
    -.nav li [class^="icon-"].icon-large,
    -li [class*=" icon-"].icon-large,
    -.nav li [class*=" icon-"].icon-large {
    -  /* increased font size for icon-large */
    -
    -  width: 1.5625em;
    -}
    -ul.icons {
    -  list-style-type: none;
    -  text-indent: -0.75em;
    -}
    -ul.icons li [class^="icon-"],
    -ul.icons li [class*=" icon-"] {
    -  width: .75em;
    -}
    -.icon-muted {
    -  color: #eeeeee;
    -}
    -.icon-border {
    -  border: solid 1px #eeeeee;
    -  padding: .2em .25em .15em;
    -  -webkit-border-radius: 3px;
    -  -moz-border-radius: 3px;
    -  border-radius: 3px;
    -}
    -.icon-2x {
    -  font-size: 2em;
    -}
    -.icon-2x.icon-border {
    -  border-width: 2px;
    -  -webkit-border-radius: 4px;
    -  -moz-border-radius: 4px;
    -  border-radius: 4px;
    -}
    -.icon-3x {
    -  font-size: 3em;
    -}
    -.icon-3x.icon-border {
    -  border-width: 3px;
    -  -webkit-border-radius: 5px;
    -  -moz-border-radius: 5px;
    -  border-radius: 5px;
    -}
    -.icon-4x {
    -  font-size: 4em;
    -}
    -.icon-4x.icon-border {
    -  border-width: 4px;
    -  -webkit-border-radius: 6px;
    -  -moz-border-radius: 6px;
    -  border-radius: 6px;
    -}
    -.pull-right {
    -  float: right;
    -}
    -.pull-left {
    -  float: left;
    -}
    -[class^="icon-"].pull-left,
    -[class*=" icon-"].pull-left {
    -  margin-right: .3em;
    -}
    -[class^="icon-"].pull-right,
    -[class*=" icon-"].pull-right {
    -  margin-left: .3em;
    -}
    -.btn [class^="icon-"].pull-left.icon-2x,
    -.btn [class*=" icon-"].pull-left.icon-2x,
    -.btn [class^="icon-"].pull-right.icon-2x,
    -.btn [class*=" icon-"].pull-right.icon-2x {
    -  margin-top: .18em;
    -}
    -.btn [class^="icon-"].icon-spin.icon-large,
    -.btn [class*=" icon-"].icon-spin.icon-large {
    -  line-height: .8em;
    -}
    -.btn.btn-small [class^="icon-"].pull-left.icon-2x,
    -.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
    -.btn.btn-small [class^="icon-"].pull-right.icon-2x,
    -.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
    -  margin-top: .25em;
    -}
    -.btn.btn-large [class^="icon-"],
    -.btn.btn-large [class*=" icon-"] {
    -  margin-top: 0;
    -}
    -.btn.btn-large [class^="icon-"].pull-left.icon-2x,
    -.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
    -.btn.btn-large [class^="icon-"].pull-right.icon-2x,
    -.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
    -  margin-top: .05em;
    -}
    -.btn.btn-large [class^="icon-"].pull-left.icon-2x,
    -.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
    -  margin-right: .2em;
    -}
    -.btn.btn-large [class^="icon-"].pull-right.icon-2x,
    -.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
    -  margin-left: .2em;
    -}
    -.icon-spin {
    -  display: inline-block;
    -  -moz-animation: spin 2s infinite linear;
    -  -o-animation: spin 2s infinite linear;
    -  -webkit-animation: spin 2s infinite linear;
    -  animation: spin 2s infinite linear;
    -}
    -@-moz-keyframes spin {
    -  0% { -moz-transform: rotate(0deg); }
    -  100% { -moz-transform: rotate(359deg); }
    -}
    -@-webkit-keyframes spin {
    -  0% { -webkit-transform: rotate(0deg); }
    -  100% { -webkit-transform: rotate(359deg); }
    -}
    -@-o-keyframes spin {
    -  0% { -o-transform: rotate(0deg); }
    -  100% { -o-transform: rotate(359deg); }
    -}
    -@-ms-keyframes spin {
    -  0% { -ms-transform: rotate(0deg); }
    -  100% { -ms-transform: rotate(359deg); }
    -}
    -@keyframes spin {
    -  0% { transform: rotate(0deg); }
    -  100% { transform: rotate(359deg); }
    -}
    -@-moz-document url-prefix() {
    -  .icon-spin {
    -    height: .9em;
    -  }
    -  .btn .icon-spin {
    -    height: auto;
    -  }
    -  .icon-spin.icon-large {
    -    height: 1.25em;
    -  }
    -  .btn .icon-spin.icon-large {
    -    height: .75em;
    -  }
    -}
    -/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
    -    readers do not read off random characters that represent icons */
    -.icon-glass:before                { content: "\f000"; }
    -.icon-music:before                { content: "\f001"; }
    -.icon-search:before               { content: "\f002"; }
    -.icon-envelope:before             { content: "\f003"; }
    -.icon-heart:before                { content: "\f004"; }
    -.icon-star:before                 { content: "\f005"; }
    -.icon-star-empty:before           { content: "\f006"; }
    -.icon-user:before                 { content: "\f007"; }
    -.icon-film:before                 { content: "\f008"; }
    -.icon-th-large:before             { content: "\f009"; }
    -.icon-th:before                   { content: "\f00a"; }
    -.icon-th-list:before              { content: "\f00b"; }
    -.icon-ok:before                   { content: "\f00c"; }
    -.icon-remove:before               { content: "\f00d"; }
    -.icon-zoom-in:before              { content: "\f00e"; }
    -
    -.icon-zoom-out:before             { content: "\f010"; }
    -.icon-off:before                  { content: "\f011"; }
    -.icon-signal:before               { content: "\f012"; }
    -.icon-cog:before                  { content: "\f013"; }
    -.icon-trash:before                { content: "\f014"; }
    -.icon-home:before                 { content: "\f015"; }
    -.icon-file:before                 { content: "\f016"; }
    -.icon-time:before                 { content: "\f017"; }
    -.icon-road:before                 { content: "\f018"; }
    -.icon-download-alt:before         { content: "\f019"; }
    -.icon-download:before             { content: "\f01a"; }
    -.icon-upload:before               { content: "\f01b"; }
    -.icon-inbox:before                { content: "\f01c"; }
    -.icon-play-circle:before          { content: "\f01d"; }
    -.icon-repeat:before               { content: "\f01e"; }
    -
    -/* \f020 doesn't work in Safari. all shifted one down */
    -.icon-refresh:before              { content: "\f021"; }
    -.icon-list-alt:before             { content: "\f022"; }
    -.icon-lock:before                 { content: "\f023"; }
    -.icon-flag:before                 { content: "\f024"; }
    -.icon-headphones:before           { content: "\f025"; }
    -.icon-volume-off:before           { content: "\f026"; }
    -.icon-volume-down:before          { content: "\f027"; }
    -.icon-volume-up:before            { content: "\f028"; }
    -.icon-qrcode:before               { content: "\f029"; }
    -.icon-barcode:before              { content: "\f02a"; }
    -.icon-tag:before                  { content: "\f02b"; }
    -.icon-tags:before                 { content: "\f02c"; }
    -.icon-book:before                 { content: "\f02d"; }
    -.icon-bookmark:before             { content: "\f02e"; }
    -.icon-print:before                { content: "\f02f"; }
    -
    -.icon-camera:before               { content: "\f030"; }
    -.icon-font:before                 { content: "\f031"; }
    -.icon-bold:before                 { content: "\f032"; }
    -.icon-italic:before               { content: "\f033"; }
    -.icon-text-height:before          { content: "\f034"; }
    -.icon-text-width:before           { content: "\f035"; }
    -.icon-align-left:before           { content: "\f036"; }
    -.icon-align-center:before         { content: "\f037"; }
    -.icon-align-right:before          { content: "\f038"; }
    -.icon-align-justify:before        { content: "\f039"; }
    -.icon-list:before                 { content: "\f03a"; }
    -.icon-indent-left:before          { content: "\f03b"; }
    -.icon-indent-right:before         { content: "\f03c"; }
    -.icon-facetime-video:before       { content: "\f03d"; }
    -.icon-picture:before              { content: "\f03e"; }
    -
    -.icon-pencil:before               { content: "\f040"; }
    -.icon-map-marker:before           { content: "\f041"; }
    -.icon-adjust:before               { content: "\f042"; }
    -.icon-tint:before                 { content: "\f043"; }
    -.icon-edit:before                 { content: "\f044"; }
    -.icon-share:before                { content: "\f045"; }
    -.icon-check:before                { content: "\f046"; }
    -.icon-move:before                 { content: "\f047"; }
    -.icon-step-backward:before        { content: "\f048"; }
    -.icon-fast-backward:before        { content: "\f049"; }
    -.icon-backward:before             { content: "\f04a"; }
    -.icon-play:before                 { content: "\f04b"; }
    -.icon-pause:before                { content: "\f04c"; }
    -.icon-stop:before                 { content: "\f04d"; }
    -.icon-forward:before              { content: "\f04e"; }
    -
    -.icon-fast-forward:before         { content: "\f050"; }
    -.icon-step-forward:before         { content: "\f051"; }
    -.icon-eject:before                { content: "\f052"; }
    -.icon-chevron-left:before         { content: "\f053"; }
    -.icon-chevron-right:before        { content: "\f054"; }
    -.icon-plus-sign:before            { content: "\f055"; }
    -.icon-minus-sign:before           { content: "\f056"; }
    -.icon-remove-sign:before          { content: "\f057"; }
    -.icon-ok-sign:before              { content: "\f058"; }
    -.icon-question-sign:before        { content: "\f059"; }
    -.icon-info-sign:before            { content: "\f05a"; }
    -.icon-screenshot:before           { content: "\f05b"; }
    -.icon-remove-circle:before        { content: "\f05c"; }
    -.icon-ok-circle:before            { content: "\f05d"; }
    -.icon-ban-circle:before           { content: "\f05e"; }
    -
    -.icon-arrow-left:before           { content: "\f060"; }
    -.icon-arrow-right:before          { content: "\f061"; }
    -.icon-arrow-up:before             { content: "\f062"; }
    -.icon-arrow-down:before           { content: "\f063"; }
    -.icon-share-alt:before            { content: "\f064"; }
    -.icon-resize-full:before          { content: "\f065"; }
    -.icon-resize-small:before         { content: "\f066"; }
    -.icon-plus:before                 { content: "\f067"; }
    -.icon-minus:before                { content: "\f068"; }
    -.icon-asterisk:before             { content: "\f069"; }
    -.icon-exclamation-sign:before     { content: "\f06a"; }
    -.icon-gift:before                 { content: "\f06b"; }
    -.icon-leaf:before                 { content: "\f06c"; }
    -.icon-fire:before                 { content: "\f06d"; }
    -.icon-eye-open:before             { content: "\f06e"; }
    -
    -.icon-eye-close:before            { content: "\f070"; }
    -.icon-warning-sign:before         { content: "\f071"; }
    -.icon-plane:before                { content: "\f072"; }
    -.icon-calendar:before             { content: "\f073"; }
    -.icon-random:before               { content: "\f074"; }
    -.icon-comment:before              { content: "\f075"; }
    -.icon-magnet:before               { content: "\f076"; }
    -.icon-chevron-up:before           { content: "\f077"; }
    -.icon-chevron-down:before         { content: "\f078"; }
    -.icon-retweet:before              { content: "\f079"; }
    -.icon-shopping-cart:before        { content: "\f07a"; }
    -.icon-folder-close:before         { content: "\f07b"; }
    -.icon-folder-open:before          { content: "\f07c"; }
    -.icon-resize-vertical:before      { content: "\f07d"; }
    -.icon-resize-horizontal:before    { content: "\f07e"; }
    -
    -.icon-bar-chart:before            { content: "\f080"; }
    -.icon-twitter-sign:before         { content: "\f081"; }
    -.icon-facebook-sign:before        { content: "\f082"; }
    -.icon-camera-retro:before         { content: "\f083"; }
    -.icon-key:before                  { content: "\f084"; }
    -.icon-cogs:before                 { content: "\f085"; }
    -.icon-comments:before             { content: "\f086"; }
    -.icon-thumbs-up:before            { content: "\f087"; }
    -.icon-thumbs-down:before          { content: "\f088"; }
    -.icon-star-half:before            { content: "\f089"; }
    -.icon-heart-empty:before          { content: "\f08a"; }
    -.icon-signout:before              { content: "\f08b"; }
    -.icon-linkedin-sign:before        { content: "\f08c"; }
    -.icon-pushpin:before              { content: "\f08d"; }
    -.icon-external-link:before        { content: "\f08e"; }
    -
    -.icon-signin:before               { content: "\f090"; }
    -.icon-trophy:before               { content: "\f091"; }
    -.icon-github-sign:before          { content: "\f092"; }
    -.icon-upload-alt:before           { content: "\f093"; }
    -.icon-lemon:before                { content: "\f094"; }
    -.icon-phone:before                { content: "\f095"; }
    -.icon-check-empty:before          { content: "\f096"; }
    -.icon-bookmark-empty:before       { content: "\f097"; }
    -.icon-phone-sign:before           { content: "\f098"; }
    -.icon-twitter:before              { content: "\f099"; }
    -.icon-facebook:before             { content: "\f09a"; }
    -.icon-github:before               { content: "\f09b"; }
    -.icon-unlock:before               { content: "\f09c"; }
    -.icon-credit-card:before          { content: "\f09d"; }
    -.icon-rss:before                  { content: "\f09e"; }
    -
    -.icon-hdd:before                  { content: "\f0a0"; }
    -.icon-bullhorn:before             { content: "\f0a1"; }
    -.icon-bell:before                 { content: "\f0a2"; }
    -.icon-certificate:before          { content: "\f0a3"; }
    -.icon-hand-right:before           { content: "\f0a4"; }
    -.icon-hand-left:before            { content: "\f0a5"; }
    -.icon-hand-up:before              { content: "\f0a6"; }
    -.icon-hand-down:before            { content: "\f0a7"; }
    -.icon-circle-arrow-left:before    { content: "\f0a8"; }
    -.icon-circle-arrow-right:before   { content: "\f0a9"; }
    -.icon-circle-arrow-up:before      { content: "\f0aa"; }
    -.icon-circle-arrow-down:before    { content: "\f0ab"; }
    -.icon-globe:before                { content: "\f0ac"; }
    -.icon-wrench:before               { content: "\f0ad"; }
    -.icon-tasks:before                { content: "\f0ae"; }
    -
    -.icon-filter:before               { content: "\f0b0"; }
    -.icon-briefcase:before            { content: "\f0b1"; }
    -.icon-fullscreen:before           { content: "\f0b2"; }
    -
    -.icon-group:before                { content: "\f0c0"; }
    -.icon-link:before                 { content: "\f0c1"; }
    -.icon-cloud:before                { content: "\f0c2"; }
    -.icon-beaker:before               { content: "\f0c3"; }
    -.icon-cut:before                  { content: "\f0c4"; }
    -.icon-copy:before                 { content: "\f0c5"; }
    -.icon-paper-clip:before           { content: "\f0c6"; }
    -.icon-save:before                 { content: "\f0c7"; }
    -.icon-sign-blank:before           { content: "\f0c8"; }
    -.icon-reorder:before              { content: "\f0c9"; }
    -.icon-list-ul:before              { content: "\f0ca"; }
    -.icon-list-ol:before              { content: "\f0cb"; }
    -.icon-strikethrough:before        { content: "\f0cc"; }
    -.icon-underline:before            { content: "\f0cd"; }
    -.icon-table:before                { content: "\f0ce"; }
    -
    -.icon-magic:before                { content: "\f0d0"; }
    -.icon-truck:before                { content: "\f0d1"; }
    -.icon-pinterest:before            { content: "\f0d2"; }
    -.icon-pinterest-sign:before       { content: "\f0d3"; }
    -.icon-google-plus-sign:before     { content: "\f0d4"; }
    -.icon-google-plus:before          { content: "\f0d5"; }
    -.icon-money:before                { content: "\f0d6"; }
    -.icon-caret-down:before           { content: "\f0d7"; }
    -.icon-caret-up:before             { content: "\f0d8"; }
    -.icon-caret-left:before           { content: "\f0d9"; }
    -.icon-caret-right:before          { content: "\f0da"; }
    -.icon-columns:before              { content: "\f0db"; }
    -.icon-sort:before                 { content: "\f0dc"; }
    -.icon-sort-down:before            { content: "\f0dd"; }
    -.icon-sort-up:before              { content: "\f0de"; }
    -
    -.icon-envelope-alt:before         { content: "\f0e0"; }
    -.icon-linkedin:before             { content: "\f0e1"; }
    -.icon-undo:before                 { content: "\f0e2"; }
    -.icon-legal:before                { content: "\f0e3"; }
    -.icon-dashboard:before            { content: "\f0e4"; }
    -.icon-comment-alt:before          { content: "\f0e5"; }
    -.icon-comments-alt:before         { content: "\f0e6"; }
    -.icon-bolt:before                 { content: "\f0e7"; }
    -.icon-sitemap:before              { content: "\f0e8"; }
    -.icon-umbrella:before             { content: "\f0e9"; }
    -.icon-paste:before                { content: "\f0ea"; }
    -.icon-lightbulb:before            { content: "\f0eb"; }
    -.icon-exchange:before             { content: "\f0ec"; }
    -.icon-cloud-download:before       { content: "\f0ed"; }
    -.icon-cloud-upload:before         { content: "\f0ee"; }
    -
    -.icon-user-md:before              { content: "\f0f0"; }
    -.icon-stethoscope:before          { content: "\f0f1"; }
    -.icon-suitcase:before             { content: "\f0f2"; }
    -.icon-bell-alt:before             { content: "\f0f3"; }
    -.icon-coffee:before               { content: "\f0f4"; }
    -.icon-food:before                 { content: "\f0f5"; }
    -.icon-file-alt:before             { content: "\f0f6"; }
    -.icon-building:before             { content: "\f0f7"; }
    -.icon-hospital:before             { content: "\f0f8"; }
    -.icon-ambulance:before            { content: "\f0f9"; }
    -.icon-medkit:before               { content: "\f0fa"; }
    -.icon-fighter-jet:before          { content: "\f0fb"; }
    -.icon-beer:before                 { content: "\f0fc"; }
    -.icon-h-sign:before               { content: "\f0fd"; }
    -.icon-plus-sign-alt:before        { content: "\f0fe"; }
    -
    -.icon-double-angle-left:before    { content: "\f100"; }
    -.icon-double-angle-right:before   { content: "\f101"; }
    -.icon-double-angle-up:before      { content: "\f102"; }
    -.icon-double-angle-down:before    { content: "\f103"; }
    -.icon-angle-left:before           { content: "\f104"; }
    -.icon-angle-right:before          { content: "\f105"; }
    -.icon-angle-up:before             { content: "\f106"; }
    -.icon-angle-down:before           { content: "\f107"; }
    -.icon-desktop:before              { content: "\f108"; }
    -.icon-laptop:before               { content: "\f109"; }
    -.icon-tablet:before               { content: "\f10a"; }
    -.icon-mobile-phone:before         { content: "\f10b"; }
    -.icon-circle-blank:before         { content: "\f10c"; }
    -.icon-quote-left:before           { content: "\f10d"; }
    -.icon-quote-right:before          { content: "\f10e"; }
    -
    -.icon-spinner:before              { content: "\f110"; }
    -.icon-circle:before               { content: "\f111"; }
    -.icon-reply:before                { content: "\f112"; }
    -.icon-github-alt:before           { content: "\f113"; }
    -.icon-folder-close-alt:before     { content: "\f114"; }
    -.icon-folder-open-alt:before      { content: "\f115"; }
    diff --git a/docs/src/templates/css/prettify.css b/docs/src/templates/css/prettify.css
    new file mode 100644
    index 00000000..16e0cafb
    --- /dev/null
    +++ b/docs/src/templates/css/prettify.css
    @@ -0,0 +1,51 @@
    +.pln { color: #000 }  /* plain text */
    +
    +@media screen {
    +  .str { color: #080 }  /* string content */
    +  .kwd { color: #008 }  /* a keyword */
    +  .com { color: #800 }  /* a comment */
    +  .typ { color: #606 }  /* a type name */
    +  .lit { color: #066 }  /* a literal value */
    +  /* punctuation, lisp open bracket, lisp close bracket */
    +  .pun, .opn, .clo { color: #660 }
    +  .tag { color: #008 }  /* a markup tag name */
    +  .atn { color: #606 }  /* a markup attribute name */
    +  .atv { color: #080 }  /* a markup attribute value */
    +  .dec, .var { color: #606 }  /* a declaration; a variable name */
    +  .fun { color: red }  /* a function name */
    +}
    +
    +/* Use higher contrast and text-weight for printable form. */
    +@media print, projection {
    +  .str { color: #060 }
    +  .kwd { color: #006; font-weight: bold }
    +  .com { color: #600; font-style: italic }
    +  .typ { color: #404; font-weight: bold }
    +  .lit { color: #044 }
    +  .pun, .opn, .clo { color: #440 }
    +  .tag { color: #006; font-weight: bold }
    +  .atn { color: #404 }
    +  .atv { color: #060 }
    +}
    +
    +pre.prettyprint {
    +  padding: 8px;
    +  background-color: #f7f7f9;
    +  border: 1px solid #e1e1e8;
    +}
    +pre.prettyprint.linenums {
    +  -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
    +     -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
    +          box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
    +}
    +ol.linenums {
    +  margin: 0 0 0 33px; /* IE indents via margin-left */
    +} 
    +ol.linenums li {
    +  padding-left: 12px;
    +  font-size:12px;
    +  color: #bebec5;
    +  line-height: 18px;
    +  text-shadow: 0 1px 0 #fff;
    +  list-style-type:decimal!important;
    +}
    diff --git a/docs/src/templates/font/FontAwesome.otf b/docs/src/templates/font/FontAwesome.otf
    deleted file mode 100755
    index 64049bf2e79940063b59be135872baadc37df6f6..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 48748
    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
    
    diff --git a/docs/src/templates/font/fontawesome-webfont.eot b/docs/src/templates/font/fontawesome-webfont.eot
    deleted file mode 100755
    index 7d81019e4f174caaf5ccd785fc361f6bff196b53..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 25395
    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
    
    diff --git a/docs/src/templates/font/fontawesome-webfont.svg b/docs/src/templates/font/fontawesome-webfont.svg
    deleted file mode 100755
    index ba0afe5e..00000000
    --- a/docs/src/templates/font/fontawesome-webfont.svg
    +++ /dev/null
    @@ -1,284 +0,0 @@
    -<?xml version="1.0" standalone="no"?>
    -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
    -<svg xmlns="http://www.w3.org/2000/svg">
    -<metadata></metadata>
    -<defs>
    -<font id="fontawesomeregular" horiz-adv-x="1536" >
    -<font-face units-per-em="1792" ascent="1536" descent="-256" />
    -<missing-glyph horiz-adv-x="448" />
    -<glyph unicode=" "  horiz-adv-x="448" />
    -<glyph unicode="&#x09;" horiz-adv-x="448" />
    -<glyph unicode="&#xa0;" horiz-adv-x="448" />
    -<glyph unicode="&#xa8;" horiz-adv-x="1792" />
    -<glyph unicode="&#xa9;" horiz-adv-x="1792" />
    -<glyph unicode="&#xae;" horiz-adv-x="1792" />
    -<glyph unicode="&#xb4;" horiz-adv-x="1792" />
    -<glyph unicode="&#xc6;" horiz-adv-x="1792" />
    -<glyph unicode="&#x2000;" horiz-adv-x="768" />
    -<glyph unicode="&#x2001;" />
    -<glyph unicode="&#x2002;" horiz-adv-x="768" />
    -<glyph unicode="&#x2003;" />
    -<glyph unicode="&#x2004;" horiz-adv-x="512" />
    -<glyph unicode="&#x2005;" horiz-adv-x="384" />
    -<glyph unicode="&#x2006;" horiz-adv-x="256" />
    -<glyph unicode="&#x2007;" horiz-adv-x="256" />
    -<glyph unicode="&#x2008;" horiz-adv-x="192" />
    -<glyph unicode="&#x2009;" horiz-adv-x="307" />
    -<glyph unicode="&#x200a;" horiz-adv-x="85" />
    -<glyph unicode="&#x202f;" horiz-adv-x="307" />
    -<glyph unicode="&#x205f;" horiz-adv-x="384" />
    -<glyph unicode="&#x2122;" horiz-adv-x="1792" />
    -<glyph unicode="&#x221e;" horiz-adv-x="1792" />
    -<glyph unicode="&#x2260;" horiz-adv-x="1792" />
    -<glyph unicode="&#xe000;" horiz-adv-x="500" d="M0 0z" />
    -<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
    -<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
    -<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
    -<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
    -<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
    -<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
    -<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
    -<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
    -<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
    -<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
    -<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
    -<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
    -<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
    -<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
    -<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
    -<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
    -<glyph unicode="&#xf016;" horiz-adv-x="1280" d="M128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280zM768 896h299l-299 299v-299zM1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544q40 0 88 -20t76 -48l408 -408q28 -28 48 -76t20 -88z" />
    -<glyph unicode="&#xf017;" d="M1088 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-384q-13 0 -22.5 9.5t-9.5 22.5v448q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-352h288q13 0 22.5 -9.5t9.5 -22.5zM1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5 t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5 t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
    -<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1339 729q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39zM1632 512q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-1600q-14 0 -23 9t-9 23v576q0 14 9 23 t23 9h192q14 0 23 -9t9 -23v-352h1152v352q0 14 9 23t23 9h192z" />
    -<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-9 -9 -23 -9t-23 9l-320 320q-9 9 -9 23q0 13 9.5 22.5t22.5 9.5h192v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352h192q14 0 23 -9t9 -23zM1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5 t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5 t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf01b;" d="M1120 672q0 -13 -9.5 -22.5t-22.5 -9.5h-192v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q9 9 23 9t23 -9l320 -320q9 -9 9 -23zM1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5 t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
    -<glyph unicode="&#xf01d;" d="M1152 640q0 -37 -33 -56l-512 -288q-14 -8 -31 -8t-32 9q-32 18 -32 55v576q0 37 32 55q31 20 63 1l512 -288q33 -19 33 -56zM1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5 t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q169 0 304 99.5t185 261.5q7 23 30 23h199 q16 0 25 -12q10 -13 7 -27q-39 -175 -147.5 -312t-266 -213t-336.5 -76q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
    -<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
    -<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
    -<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M704 512q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5q0 -37 19 -67t51 -47l-69 -229q-5 -15 5 -28t26 -13h192q16 0 26 13t5 28l-69 229q32 17 51 47t19 67zM320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68 t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
    -<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
    -<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
    -<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
    -<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
    -<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M672 1408v-1536h-64v1536h64zM1408 1408v-1536h-64v1536h64zM1568 1408v-1536h-64v1536h64zM576 1408v-1536h-64v1536h64zM1280 1408v-1536h-256v1536h256zM896 1408v-1536h-128v1536h128zM448 1408v-1536h-128v1536h128zM1792 1408v-1536h-128v1536h128zM256 1408v-1536 h-256v1536h256z" />
    -<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
    -<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
    -<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
    -<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
    -<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
    -<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
    -<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q73 -1 153.5 -2t119 -1.5t52.5 -0.5l29 2q-32 95 -92 241q-53 132 -92 211zM21 -128h-21l2 79q22 7 80 18q89 16 110 31q20 16 48 68l237 616l280 724h75h53l11 -21l205 -480q103 -242 124 -297q39 -102 96 -235q26 -58 65 -164q24 -67 65 -149 q22 -49 35 -57q22 -19 69 -23q47 -6 103 -27q6 -39 6 -57q0 -14 -1 -26q-80 0 -192 8q-93 8 -189 8q-79 0 -135 -2l-200 -11l-58 -2q0 45 4 78l131 28q56 13 68 23q12 12 12 27t-6 32l-47 114l-92 228l-450 2q-29 -65 -104 -274q-23 -64 -23 -84q0 -31 17 -43 q26 -21 103 -32q3 0 13.5 -2t30 -5t40.5 -6q1 -28 1 -58q0 -17 -2 -27q-66 0 -349 20l-48 -8q-81 -14 -167 -14z" />
    -<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q76 -32 140 -32q131 0 216 41t122 113q38 70 38 181q0 114 -41 180q-58 94 -141 126q-80 32 -247 32q-74 0 -101 -10v-144l-1 -173l3 -270q0 -15 12 -44zM541 761q43 -7 109 -7q175 0 264 65t89 224q0 112 -85 187q-84 75 -255 75q-52 0 -130 -13q0 -44 2 -77 q7 -122 6 -279l-1 -98q0 -43 1 -77zM0 -128l2 94q45 9 68 12q77 12 123 31q17 27 21 51q9 66 9 194l-2 497q-5 256 -9 404q-1 87 -11 109q-1 4 -12 12q-18 12 -69 15q-30 2 -114 13l-4 83l260 6l380 13l45 1q5 0 14 0.5t14 0.5q1 0 21.5 -0.5t40.5 -0.5h74q88 0 191 -27 q43 -13 96 -39q57 -29 102 -76q44 -47 65 -104t21 -122q0 -70 -32 -128t-95 -105q-26 -20 -150 -77q177 -41 267 -146q92 -106 92 -236q0 -76 -29 -161q-21 -62 -71 -117q-66 -72 -140 -108q-73 -36 -203 -60q-82 -15 -198 -11l-197 4q-84 2 -298 -11q-33 -3 -272 -11z" />
    -<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q4 1 77 20q76 19 116 39q29 37 41 101l27 139l56 268l12 64q8 44 17 84.5t16 67t12.5 46.5t9 30.5t3.5 11.5l29 157l16 63l22 135l8 50v38q-41 22 -144 28q-28 2 -38 4l19 103l317 -14q39 -2 73 -2q66 0 214 9q33 2 68 4.5t36 2.5q-2 -19 -6 -38 q-7 -29 -13 -51q-55 -19 -109 -31q-64 -16 -101 -31q-12 -31 -24 -88q-9 -44 -13 -82q-44 -199 -66 -306l-61 -311l-38 -158l-43 -235l-12 -45q-2 -7 1 -27q64 -15 119 -21q36 -5 66 -10q-1 -29 -7 -58q-7 -31 -9 -41q-18 0 -23 -1q-24 -2 -42 -2q-9 0 -28 3q-19 4 -145 17 l-198 2q-41 1 -174 -11q-74 -7 -98 -9z" />
    -<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l215 -1h293l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -42.5 2t-103.5 -1t-111 -1 q-34 0 -67 -5q-10 -97 -8 -136l1 -152v-332l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-88 0 -233 -14q-48 -4 -70 -4q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q8 192 6 433l-5 428q-1 62 -0.5 118.5t0.5 102.5t-2 57t-6 15q-6 5 -14 6q-38 6 -148 6q-43 0 -100 -13.5t-73 -24.5q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1744 128q33 0 42 -18.5t-11 -44.5 l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80z" />
    -<glyph unicode="&#xf035;" d="M81 1407l54 -27q20 -5 211 -5h130l19 3l115 1l446 -1h318l34 -2q14 -1 28 7t21 16l7 8l42 1q15 0 28 -1v-104.5t1 -131.5l1 -100l-1 -58q0 -32 -4 -51q-39 -15 -68 -18q-25 43 -54 128q-8 24 -15.5 62.5t-11.5 65.5t-6 29q-13 15 -27 19q-7 2 -58.5 2t-138.5 -1t-128 -1 q-94 0 -127 -5q-10 -97 -8 -136l1 -152v52l3 -359l-1 -147q-1 -46 11 -85q49 -25 89 -32q2 0 18 -5t44 -13t43 -12q30 -8 50 -18q5 -45 5 -50q0 -10 -3 -29q-14 -1 -34 -1q-110 0 -187 10q-72 8 -238 8q-82 0 -233 -13q-45 -5 -70 -5q-2 22 -2 26l-1 26v9q21 33 79 49 q139 38 159 50q9 21 12 56q6 137 6 433l-5 44q0 265 -2 278q-2 11 -6 15q-6 5 -14 6q-38 6 -148 6q-50 0 -168.5 -14t-132.5 -24q-13 -9 -22 -33t-22 -75t-24 -84q-6 -19 -19.5 -32t-20.5 -13q-44 27 -56 44v297v86zM1505 113q26 -20 26 -49t-26 -49l-162 -126 q-26 -20 -44.5 -11t-18.5 42v80h-1024v-80q0 -33 -18.5 -42t-44.5 11l-162 126q-26 20 -26 49t26 49l162 126q26 20 44.5 11t18.5 -42v-80h1024v80q0 33 18.5 42t44.5 -11z" />
    -<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf03d;" horiz-adv-x="1920" d="M1900 1278q20 -8 20 -30v-1216q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-585 586v-307q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-307l585 586q16 15 35 7z" />
    -<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
    -<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
    -<glyph unicode="&#xf042;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM256 640q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5v1024q-104 0 -198.5 -40.5 t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5z" />
    -<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
    -<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
    -<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
    -<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
    -<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
    -<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
    -<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
    -<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
    -<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
    -<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
    -<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
    -<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
    -<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
    -<glyph unicode="&#xf053;" horiz-adv-x="1152" d="M742 -37l-652 651q-37 37 -37 90.5t37 90.5l652 651q37 37 90.5 37t90.5 -37l75 -75q37 -37 37 -90.5t-37 -90.5l-486 -486l486 -485q37 -38 37 -91t-37 -90l-75 -75q-37 -37 -90.5 -37t-90.5 37z" />
    -<glyph unicode="&#xf054;" horiz-adv-x="1152" d="M1099 704q0 -52 -37 -91l-652 -651q-37 -37 -90 -37t-90 37l-76 75q-37 39 -37 91q0 53 37 90l486 486l-486 485q-37 39 -37 91q0 53 37 90l76 75q36 38 90 38t90 -38l652 -651q37 -37 37 -90z" />
    -<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
    -<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf059;" d="M896 160v192q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-192q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1152 832q0 97 -58.5 172t-144.5 111.5t-181 36.5t-181 -36.5t-144.5 -111.5t-58.5 -172v-11v-13t1 -11.5t3 -11.5t5.5 -8t9 -7 t13.5 -2h192q14 0 23 9t9 23q0 12 11 27q19 31 50.5 50t66.5 19q39 0 83 -21.5t44 -57.5q0 -33 -26.5 -58t-63.5 -44t-74.5 -41.5t-64 -63.5t-26.5 -98v-11v-13t1 -11.5t3 -11.5t5.5 -8t9 -7t13.5 -2h192q17 0 24 10.5t8 24.5t13.5 33t37.5 32q60 33 70 39q62 44 98.5 108 t36.5 137zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf05a;" d="M1024 160v64q0 14 -9 23t-23 9h-96v480q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h96v-384h-96q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 928v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf05c;" d="M1125 448q0 -27 -18 -45l-102 -102q-18 -18 -45 -18t-45 18l-147 147l-147 -147q-18 -18 -45 -18t-45 18l-102 102q-18 18 -18 45t18 45l147 147l-147 147q-18 18 -18 45t18 45l102 102q18 18 45 18t45 -18l147 -147l147 147q18 18 45 18t45 -18l102 -102q18 -18 18 -45 t-18 -45l-147 -147l147 -147q18 -18 18 -45zM1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5 t40.5 198.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf05d;" d="M1189 768q0 -27 -18 -45l-320 -320l-102 -102q-18 -18 -45 -18t-45 18l-102 102l-192 192q-18 18 -18 45t18 45l102 102q18 18 45 18t45 -18l147 -147l275 275q18 18 45 18t45 -18l102 -102q18 -18 18 -45zM1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5 t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf05e;" d="M1280 640q0 139 -71 260l-701 -701q121 -71 260 -71q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM327 380l701 701q-121 71 -260 71q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5q0 -139 71 -260zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
    -<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
    -<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
    -<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
    -<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
    -<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
    -<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
    -<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
    -<glyph unicode="&#xf06b;" d="M928 180v716h-320v-716q0 -25 18.5 -38.5t45.5 -13.5h192q27 0 45.5 13.5t18.5 38.5zM472 1024h195l-126 161q-24 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-45 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -10 -22t-27 -10.5t-32 -2.5t-34.5 1.5t-24.5 1.5v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416q-5 0 -24.5 -1.5t-34.5 -1.5t-32 2.5t-27 10.5t-10 22v320q0 13 9.5 22.5t22.5 9.5h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 q108 0 168 -77l128 -165l128 165q60 77 168 77q93 0 158.5 -65.5t65.5 -158.5t-65.5 -158.5t-158.5 -65.5h440q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
    -<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
    -<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
    -<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
    -<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
    -<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1397 1324q0 -87 -149 -236l-240 -240l143 -746l1 -6q0 -14 -9 -23l-64 -64q-9 -9 -23 -9q-21 0 -29 18l-274 575l-245 -245q68 -238 68 -252t-9 -23l-64 -64q-9 -9 -23 -9q-18 0 -28 16l-155 280l-280 155q-17 9 -17 28q0 14 9 23l64 65q9 9 23 9t252 -68l245 245 l-575 274q-18 8 -18 29q0 14 9 23l64 64q9 9 23 9q4 0 6 -1l746 -143l240 240q149 149 236 149q32 0 52.5 -20.5t20.5 -52.5z" />
    -<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
    -<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
    -<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
    -<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf077;" horiz-adv-x="1664" d="M1611 320q0 -53 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-486 485l-486 -485q-36 -38 -90 -38t-90 38l-75 75q-38 36 -38 90q0 53 38 91l651 651q37 37 90 37q52 0 91 -37l650 -651q38 -38 38 -91z" />
    -<glyph unicode="&#xf078;" horiz-adv-x="1664" d="M1611 832q0 -53 -37 -90l-651 -651q-38 -38 -91 -38q-54 0 -90 38l-651 651q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l486 -486l486 486q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
    -<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
    -<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5 l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5 t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
    -<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
    -<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
    -<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
    -<glyph unicode="&#xf080;" horiz-adv-x="1920" d="M512 512v-384h-256v384h256zM896 1024v-896h-256v896h256zM1280 768v-640h-256v640h256zM1664 1152v-1024h-256v1024h256zM1792 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5z M1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf081;" d="M1280 958q0 13 -9.5 22.5t-22.5 9.5q-5 0 -15 -4q20 34 20 55q0 13 -9.5 22.5t-22.5 9.5q-7 0 -17 -5q-60 -34 -97 -43q-65 63 -154 63q-98 0 -164.5 -72.5t-64.5 -169.5v-12q-107 14 -187.5 64t-156.5 139q-10 12 -28 12q-26 0 -41 -50.5t-15 -86.5q0 -62 29 -117 q-13 -2 -21.5 -11.5t-8.5 -22.5q0 -112 81 -185q-12 -8 -12 -25q0 -6 1 -9q15 -51 50.5 -91.5t84.5 -60.5q-77 -43 -165 -43q-8 0 -24 1.5t-23 1.5q-13 0 -22.5 -9.5t-9.5 -22.5q0 -17 14 -26q63 -47 150 -73.5t170 -26.5q130 0 248 58q166 79 256 232.5t88 339.5v12 q27 22 62.5 63t35.5 61zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-350q-2 0 -2 1v671h177q31 0 32 23l12 164q2 15 -8 25q-10 12 -24 12h-189v72q0 44 11.5 57t54.5 13q57 0 117 -13q13 -3 26 5q11 8 13 22l23 166q2 12 -5.5 22.5t-19.5 13.5 q-93 26 -197 26q-311 0 -311 -299v-85h-95q-13 0 -23 -10.5t-10 -24.5v-172q0 -8 5.5 -12t10 -4.5t17.5 -0.5h95v-671l10 -1h-330q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
    -<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
    -<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
    -<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
    -<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
    -<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
    -<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
    -<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
    -<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
    -<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
    -<glyph unicode="&#xf08c;" d="M512 160v640q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-640q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM503 1028q0 51 -36 87.5t-88 36.5q-51 0 -87 -36.5t-36 -87.5t36 -87.5t87 -36.5q52 0 88 36.5t36 87.5zM1280 160v435 q0 127 -73.5 192.5t-202.5 65.5q-90 0 -158 -45q-12 -8 -14 -12q0 36 -35 36h-176q-14 0 -29.5 -7.5t-15.5 -20.5v-644q0 -13 15.5 -22.5t29.5 -9.5h182q12 0 20.5 9.5t8.5 22.5v349q0 140 114 140q49 0 63.5 -22.5t14.5 -73.5v-393q0 -13 12 -22.5t26 -9.5h186 q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
    -<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
    -<glyph unicode="&#xf092;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -26t19 -63zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -52 41 -77v-3q-113 -37 -113 -139q0 -60 36 -98t84 -51t107 -13q224 0 224 187q0 48 -25.5 78t-62.5 42.5t-74 21.5t-62.5 23.5t-25.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q30 7 49 13zM771 350h137q-2 20 -2 90v372q0 59 2 76h-137q3 -26 3 -79v-377 q0 -55 -3 -82zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q4 0 11.5 -0.5t11.5 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1664 480v-576q0 -13 -9.5 -22.5t-22.5 -9.5h-1600q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352h1152v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1344 832q0 -26 -19 -45t-45 -19h-256v-448 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    -<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
    -<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
    -<glyph unicode="&#xf096;" horiz-adv-x="1664" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
    -<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf099;" horiz-adv-x="1920" d="M1875 1202q0 -10 -5 -18q-64 -104 -179 -190v-33q4 -227 -100 -457q-134 -297 -397.5 -464.5t-591.5 -167.5q-265 0 -500 122q-64 33 -87 50q-15 12 -15 27q0 13 9.5 22.5t22.5 9.5q14 0 44 -2.5t45 -2.5q204 0 375 106q-103 24 -181 96t-111 173q-2 8 -2 11q0 12 9 21.5 t22 9.5q5 0 14 -2t12 -2q-89 55 -142 147t-53 196q0 15 11.5 25.5t27.5 10.5q10 0 35 -11.5t30 -13.5q-92 110 -92 256q0 51 14.5 108t40.5 95q10 16 25 16q16 0 27 -12q76 -84 110 -115q123 -111 276 -177.5t317 -80.5q-4 21 -4 49q0 167 118.5 285.5t285.5 118.5 q163 0 282 -114q95 20 209 82q8 5 16 5q13 0 22.5 -9.5t9.5 -22.5q0 -24 -28 -73t-51 -76q7 2 30 10.5t43 16t24 7.5q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf09a;" horiz-adv-x="768" d="M560 1125q-49 0 -62 -15.5t-13 -66.5v-88h217q16 0 27 -12q11 -13 10 -29l-14 -200q-2 -15 -12.5 -25.5t-25.5 -10.5h-202v-768q0 -16 -11 -27t-26 -11h-250q-16 0 -27 11t-11 27v768h-122q-16 0 -27 11.5t-11 27.5v200q0 16 11 27t27 11h122v103q0 177 88 263.5 t267 86.5q120 0 225 -30q14 -4 22 -16t6 -26l-27 -195q-2 -16 -16 -26q-14 -9 -30 -6q-76 16 -135 16z" />
    -<glyph unicode="&#xf09b;" d="M1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5q0 -209 124.5 -378.5t323.5 -231.5v169q-54 -7 -69 -7q-110 0 -153 100q-15 38 -36 63q-5 6 -21 19t-28.5 24t-12.5 16q0 12 28 12q29 0 51.5 -14.5t38 -35 t31.5 -41.5t40.5 -35.5t56.5 -14.5q42 0 81 14q16 57 63 89q-166 16 -246 83.5t-80 224.5q0 118 73 198q-14 42 -14 84q0 58 27 109q57 0 101 -19.5t101 -60.5q76 18 169 18q80 0 153 -16q57 40 100.5 59t99.5 19q27 -51 27 -109q0 -43 -14 -83q73 -82 73 -199 q0 -157 -80 -225.5t-245 -83.5q69 -47 69 -131v-226q199 62 323.5 231.5t124.5 378.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M704 160q0 6 -15 57t-35 115.5t-20 65.5q32 16 51 47t19 67q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5q0 -36 19 -66.5t51 -47.5q0 -2 -20 -66t-35 -115t-15 -57q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1664 960v-256q0 -26 -19 -45t-45 -19 h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5z" />
    -<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
    -<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
    -<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
    -<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
    -<glyph unicode="&#xf0a2;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM183 128h1298q-164 181 -246.5 411.5t-82.5 484.5q0 256 -320 256t-320 -256q0 -254 -82.5 -484.5t-246.5 -411.5zM1664 128q0 -52 -38 -90t-90 -38 h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
    -<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
    -<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
    -<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67 11.5t-64 38.5t-48 44t-50 55q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
    -<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
    -<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -46 -25 -91t-52 -72t-72 -66q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33t55 33 t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580q0 -142 -77.5 -230 t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100q3 2 17 14t21.5 19 t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
    -<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf0ac;" d="M1193 993q11 7 25 22v-1q0 -2 -9.5 -10t-11.5 -12q-1 1 -4 1zM1187 992q-1 1 -2.5 3t-1.5 3q3 -2 10 -5q-6 -4 -6 -1zM728 1175q-16 2 -26 5q1 0 6.5 -1t10.5 -2t9 -2zM773 1212q7 4 13.5 2.5t7.5 -7.5q-5 3 -21 5zM765 1206l-3 2q-2 3 -5.5 5t-4.5 2q2 -1 21 -3 q-6 -4 -8 -6zM663 1290v2q1 -2 3 -5.5t3 -5.5zM558 1250q0 -2 -1 -2l-1 2h2zM933 206v-1v1zM768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1240 162 l5 5q-7 10 -29 12q1 12 -14 26.5t-27 15.5q0 4 -10.5 11t-17.5 8q-9 2 -27 -9q-7 -3 -4 -5q-3 3 -12 11t-16 11q-2 1 -7.5 1t-8.5 2q-1 1 -6 4.5t-7 4.5t-6.5 3t-7.5 1.5t-7.5 -2.5t-8.5 -6t-4.5 -15.5t-2.5 -14.5q-8 6 -0.5 20t1.5 20q-7 7 -21 0.5t-21 -15.5 q-1 -1 -9.5 -5.5t-11.5 -7.5q-4 -6 -9 -17.5t-6 -13.5q0 2 -2.5 6.5t-2.5 6.5q-12 -2 -16 3q5 -16 8 -17l-4 2q-1 -6 3 -15t4 -11q1 -5 -1.5 -13t-2.5 -11q0 -2 5 -11q4 -19 -2 -32q0 -1 -3.5 -7t-6.5 -11l-2 -5l-2 1q-1 1 -2 0q-1 -6 -9 -13t-10 -11q-15 -23 -9 -38 q3 -8 10 -10q3 -1 3 2q1 -9 -11 -27q1 -1 4 -3q-17 0 -10 -14q202 36 352 181h-3zM680 347q16 3 30.5 -16t22.5 -23q41 -20 59 -11q0 -9 14 -28q3 -4 6.5 -11.5t5.5 -10.5q5 -7 19 -16t19 -16q6 3 9 9q13 -35 24 -34q5 0 8 8q0 -1 -0.5 -3t-1.5 -3q7 15 5 26l6 4q5 4 5 5 q-6 6 -9 -3q-30 -14 -48 22q-2 3 -4.5 8t-5 12t-1.5 11.5t6 4.5q11 0 12.5 1.5t-2.5 6t-4 7.5q-1 4 -1.5 12.5t-1.5 12.5l-5 6q-5 6 -11.5 13.5t-7.5 9.5q-4 -10 -16.5 -8.5t-18.5 9.5q1 -2 -0.5 -6.5t-1.5 -6.5q-14 0 -17 1q1 6 3 21t4 22q1 5 5.5 13.5t8 15.5t4.5 14 t-4.5 10.5t-18.5 2.5q-20 -1 -29 -22q-1 -3 -3 -11.5t-5 -12.5t-9 -7q-8 -3 -27 -2t-26 5q-14 8 -24 30.5t-11 41.5q0 10 3 27.5t3 27t-6 26.5q3 2 10 10.5t11 11.5q2 2 5 2h5t4 2t3 6q-1 1 -4 3q-3 3 -4 3q4 -3 19 -1t19 2q0 1 22 0q17 -13 24 2q0 1 -2.5 10.5t-0.5 14.5 q5 -29 32 -10q3 -4 16.5 -6t18.5 -5q3 -2 7 -5.5t6 -5t6 -0.5t9 7q11 -17 13 -25q11 -43 20 -48q8 -2 12.5 -2t5 10.5t0 15.5t-1.5 13l-2 37q-16 3 -20 12.5t1.5 20t16.5 19.5q1 1 16.5 8t21.5 12q24 19 17 39q9 -2 11 9l-5 3q-4 3 -8 5.5t-5 1.5q11 7 2 18q5 3 8 11.5 t9 11.5q9 -14 22 -3q8 9 2 18q5 8 22 11.5t20 9.5q5 -1 7 0t2 4.5v7.5t1 8.5t3 7.5q4 6 16 10.5t14 5.5l19 12q4 4 0 4q18 -2 32 11q13 12 -5 23q2 7 -4 10.5t-16 5.5q3 1 12 0.5t12 1.5q15 11 -7 17q-20 5 -47 -13q-3 -2 -13 -12t-17 -11q15 18 5 22q8 -1 22.5 9t15.5 11 q4 2 10.5 2.5t8.5 1.5q71 25 92 -1q8 11 11 15t9.5 9t15.5 8q21 7 23 9l1 23q-12 -1 -18 8t-7 22l-6 -8q0 6 -3.5 7.5t-7.5 0.5t-9.5 -2t-7.5 0q-9 2 -19.5 15.5t-14.5 16.5q9 0 9 5q-2 5 -10 8q1 6 -2 8t-9 0q-2 12 -1 13q-6 1 -11 11t-8 10q-2 0 -4.5 -2t-5 -5.5l-5 -7 t-3.5 -5.5l-2 -2q-12 6 -24 -10q-9 1 -17 -2q15 6 2 13q-11 5 -21 2q12 5 10 14t-12 16q1 0 4 -1t4 -1q-1 5 -9.5 9.5t-19.5 9t-14 6.5q-7 5 -36 10.5t-36 1.5q-5 -3 -6 -6t1.5 -8.5t3.5 -8.5q6 -23 5 -27q-1 -3 -8.5 -8t-5.5 -12q1 -4 11.5 -10t12.5 -12q5 -13 -4 -25 q-4 -5 -15 -11t-14 -10q-5 -5 -3.5 -11.5t0.5 -9.5q1 1 1 2.5t1 2.5q0 -13 11 -22q8 -6 -16 -18q-20 -11 -20 -4q1 8 -7.5 16t-10.5 12t-3.5 19t-9.5 21q-6 4 -19 4t-18 -5q0 10 -49 30q-17 8 -58 4q7 1 0 17q-8 16 -21 12q-8 25 -4 35q2 5 9 14t9 15q1 3 15.5 6t16.5 8 q1 4 -2.5 6.5t-9.5 4.5q53 -6 63 18q5 9 3 14q0 -1 2 -1t2 -1q12 3 7 17q19 8 26 8q5 -1 11 -6t10 -5q17 -3 21.5 10t-9.5 23q7 -4 7 6q-1 13 -7 19q-3 2 -6.5 2.5t-6.5 0t-7 0.5q-1 0 -8 2q-1 -1 -2 -1h-8q-4 -2 -4 -5v-1q-1 -3 4 -6l5 -1l3 -2q-1 0 -2.5 -2.5t-2.5 -2.5 q0 -3 3 -5q-2 -1 -14 -7.5t-17 -10.5q-1 -1 -4 -2.5t-4 -2.5q-2 -1 -4 2t-4 9t-4 11.5t-4.5 10t-5.5 4.5q-12 0 -18 -17q3 10 -13 17.5t-25 7.5q20 15 -9 30l-1 1q-30 -4 -45 -7q-2 -6 3 -12q-1 -7 6 -9q0 -1 0.5 -1t0.5 -1q0 1 -0.5 1t-0.5 1q3 -1 10.5 -1.5t9.5 -1.5 q3 -1 4.5 -2l7.5 -5t5.5 -6t-2.5 -5q-2 -1 -9 -4t-12.5 -5.5t-6.5 -3.5q-3 -5 0 -16t-2 -15q-5 5 -10 18.5t-8 17.5q8 -9 -30 -6l-8 1q-4 0 -15 -2t-16 -1q-7 0 -29 6q7 17 5 25q5 0 7 2l-6 3q-3 -1 -25 -9q2 -3 8 -9.5t9 -11.5q-22 6 -27 -2q0 -1 -9 0q-25 1 -24 -7 q1 -4 9 -12q0 -9 -1 -9q-27 22 -30 23q-172 -83 -276 -248q1 -2 2.5 -11t3.5 -8.5t11 4.5q9 -9 3 -21q2 2 36 -21q56 -40 22 -53v5.5t1 6.5q-9 -1 -19 5q-3 -6 0.5 -20t11.5 -14q-8 0 -10.5 -17t-2.5 -38.5t-1 -25.5l2 -1q-3 -13 6 -37.5t24 -20.5q-4 -18 5 -21q-1 -4 0 -8 t4.5 -8.5t6 -7l7.5 -7.5l6 -6q28 -11 41 -29q4 -6 10.5 -24.5t15.5 -25.5q-2 -6 10 -21.5t11 -25.5q-1 0 -2.5 -0.5t-2.5 -0.5q3 -8 16.5 -16t16.5 -14q2 -3 2.5 -10.5t3 -12t8.5 -2.5q3 24 -26 68q-16 27 -18 31q-3 5 -5.5 16.5t-4.5 15.5q27 -9 26 -13q-5 -10 26 -52 q2 -3 10 -10t11 -12q3 -4 9.5 -14.5t10.5 -15.5q-1 0 -3 -2l-3 -3q4 -2 9 -5t8 -4.5t7.5 -5t7.5 -7.5q16 -18 20 -33q1 -4 0.5 -15.5t1.5 -16.5q2 -6 6 -11t11.5 -10t11.5 -7t14.5 -6.5t11.5 -5.5q2 -1 18 -11t25 -14q10 -4 16.5 -4.5t16 2.5t15.5 4z" />
    -<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
    -<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
    -<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM1792 512v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 512v-128h-256v128h256zM1792 992v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
    -<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
    -<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
    -<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
    -<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
    -<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
    -<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
    -<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
    -<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
    -<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
    -<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
    -<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
    -<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
    -<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
    -<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
    -<glyph unicode="&#xf0d4;" d="M678 -57q0 -38 -10 -71h-380q-95 0 -171.5 56.5t-103.5 147.5q24 45 69 77.5t100 49.5t107 24t107 7q32 0 49 -2q6 -4 30.5 -21t33 -23t31 -23t32 -25.5t27.5 -25.5t26.5 -29.5t21 -30.5t17.5 -34.5t9.5 -36t4.5 -40.5zM385 294q-234 -7 -385 -85v433q103 -118 273 -118 q32 0 70 5q-21 -61 -21 -86q0 -67 63 -149zM558 805q0 -100 -43.5 -160.5t-140.5 -60.5q-51 0 -97 26t-78 67.5t-56 93.5t-35.5 104t-11.5 99q0 96 51.5 165t144.5 69q66 0 119 -41t84 -104t47 -130t16 -128zM1536 896v-736q0 -119 -84.5 -203.5t-203.5 -84.5h-468 q39 73 39 157q0 66 -22 122.5t-55.5 93t-72 71t-72 59.5t-55.5 54.5t-22 59.5q0 36 23 68t56 61.5t65.5 64.5t55.5 93t23 131t-26.5 145.5t-75.5 118.5q-6 6 -14 11t-12.5 7.5t-10 9.5t-10.5 17h135l135 64h-437q-138 0 -244.5 -38.5t-182.5 -133.5q0 126 81 213t207 87h960 q119 0 203.5 -84.5t84.5 -203.5v-96h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
    -<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M876 71q0 21 -4.5 40.5t-9.5 36t-17.5 34.5t-21 30.5t-26.5 29.5t-27.5 25.5t-32 25.5t-31 23t-33 23t-30.5 21q-17 2 -50 2q-54 0 -106 -7t-108 -25t-98 -46t-69 -75t-27 -107q0 -68 35.5 -121.5t93 -84t120.5 -45.5t127 -15q59 0 112.5 12.5t100.5 39t74.5 73.5 t27.5 110zM756 933q0 60 -16.5 127.5t-47 130.5t-84 104t-119.5 41q-93 0 -144 -69t-51 -165q0 -47 11.5 -99t35.5 -104t56 -93.5t78 -67.5t97 -26q97 0 140.5 60.5t43.5 160.5zM625 1408h437l-135 -79h-135q71 -45 110 -126t39 -169q0 -74 -23 -131.5t-56 -92.5t-66 -64.5 t-56 -61t-23 -67.5q0 -26 16.5 -51t43 -48t58.5 -48t64 -55.5t58.5 -66t43 -85t16.5 -106.5q0 -160 -140 -282q-152 -131 -420 -131q-59 0 -119.5 10t-122 33.5t-108.5 58t-77 89t-30 121.5q0 61 37 135q32 64 96 110.5t145 71t155 36t150 13.5q-64 83 -64 149q0 12 2 23.5 t5 19.5t8 21.5t7 21.5q-40 -5 -70 -5q-149 0 -255.5 98t-106.5 246q0 140 95 250.5t234 141.5q94 20 187 20zM1664 1152v-128h-256v-256h-128v256h-256v128h256v256h128v-256h256z" />
    -<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    -<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
    -<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
    -<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    -<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
    -<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
    -<glyph unicode="&#xf0e1;" horiz-adv-x="1379" d="M1014 961q171 0 268 -85.5t97 -254.5v-586q0 -14 -10.5 -24.5t-24.5 -10.5h-252q-14 0 -24.5 10.5t-10.5 24.5v529q0 71 -26.5 104t-95.5 33q-88 0 -123.5 -51.5t-35.5 -143.5v-471q0 -14 -10.5 -24.5t-25.5 -10.5h-246q-14 0 -24.5 10.5t-10.5 24.5v868q0 14 10.5 24.5 t24.5 10.5h239q13 0 21 -5t10.5 -18.5t3 -18t0.5 -22.5q93 87 246 87zM290 938q14 0 24.5 -10.5t10.5 -24.5v-868q0 -14 -10.5 -24.5t-24.5 -10.5h-246q-14 0 -24.5 10.5t-10.5 24.5v868q0 14 10.5 24.5t24.5 10.5h246zM167 1371q69 0 118 -49t49 -118t-49 -118t-118 -49 t-118 49t-49 118t49 118t118 49z" />
    -<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-179 0 -336.5 76t-266 213t-147.5 312q-3 14 7 27q9 12 25 12h199q23 0 30 -23q50 -162 185 -261.5t304 -99.5q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5 t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
    -<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
    -<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
    -<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
    -<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
    -<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
    -<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
    -<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
    -<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
    -<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
    -<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
    -<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
    -<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
    -<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
    -<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
    -<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
    -<glyph unicode="&#xf0f3;" horiz-adv-x="1664" d="M848 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1664 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q190 161 287 397.5t97 498.5 q0 165 96 262t264 117q-8 18 -8 37q0 40 28 68t68 28t68 -28t28 -68q0 -19 -8 -37q168 -20 264 -117t96 -262q0 -262 97 -498.5t287 -397.5z" />
    -<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
    -<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0f6;" horiz-adv-x="1280" d="M1024 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1024 608v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM128 0h1024v768h-416q-40 0 -68 28t-28 68v416h-512v-1280z M768 896h299l-299 299v-299zM1280 768v-800q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h544q40 0 88 -20t76 -48l408 -408q28 -28 48 -76t20 -88z" />
    -<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
    -<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
    -<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1632 800q261 -58 287 -93l1 -3q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416 h-64v32h64h160h96q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64z" />
    -<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-160q0 -45 2 -76t7.5 -56.5t14.5 -40t23 -26.5t33.5 -15.5t45 -7.5t58 -2.5t72.5 0.5zM1664 192v-192h-1152v192l128 192h-97q-211 0 -313 102.5t-102 314.5v287l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
    -<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
    -<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
    -<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    -<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    -<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    -<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    -<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    -<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
    -<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
    -<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
    -<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
    -<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
    -<glyph unicode="&#xf10c;" d="M1280 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
    -<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
    -<glyph unicode="&#xf110;" horiz-adv-x="1568" d="M496 192q0 -60 -42.5 -102t-101.5 -42q-60 0 -102 42t-42 102t42 102t102 42q59 0 101.5 -42t42.5 -102zM928 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -66 -47 -113t-113 -47t-113 47t-47 113 t47 113t113 47t113 -47t47 -113zM1360 192q0 -46 -33 -79t-79 -33t-79 33t-33 79t33 79t79 33t79 -33t33 -79zM528 1088q0 -73 -51.5 -124.5t-124.5 -51.5t-124.5 51.5t-51.5 124.5t51.5 124.5t124.5 51.5t124.5 -51.5t51.5 -124.5zM992 1280q0 -80 -56 -136t-136 -56 t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1536 640q0 -40 -28 -68t-68 -28t-68 28t-28 68t28 68t68 28t68 -28t28 -68zM1328 1088q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5z" />
    -<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
    -<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
    -<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
    -<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
    -<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
    -</font>
    -</defs></svg> 
    \ No newline at end of file
    diff --git a/docs/src/templates/font/fontawesome-webfont.svgz b/docs/src/templates/font/fontawesome-webfont.svgz
    deleted file mode 100755
    index 2a73cd7c10f25c9ca99aa864ba1fdccce215c990..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 21845
    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
    U{{;X50RR630De+Ok3Am&03Hq9T>t<8
    
    diff --git a/docs/src/templates/font/fontawesome-webfont.ttf b/docs/src/templates/font/fontawesome-webfont.ttf
    deleted file mode 100755
    index d46172476a3c7caf4f44946e3c40218559f3edfa..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 55096
    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%0D$gSMd
    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
    
    diff --git a/docs/src/templates/font/fontawesome-webfont.woff b/docs/src/templates/font/fontawesome-webfont.woff
    deleted file mode 100755
    index 3c89ae09b88b38d3bc8563ca69f7f401b7301f45..0000000000000000000000000000000000000000
    GIT binary patch
    literal 0
    HcmV?d00001
    
    literal 29380
    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
    
    diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html
    index 83b02596..87b76bad 100644
    --- a/docs/src/templates/index.html
    +++ b/docs/src/templates/index.html
    @@ -31,11 +31,12 @@
               };
     
           addTag('base', {href: baseUrl});
    -      addTag('link', {rel: 'stylesheet', href: 'css/bootstrap.min.css', type: 'text/css'});
    -      addTag('link', {rel: 'stylesheet', href: 'css/font-awesome.css', type: 'text/css'});
    +      addTag('link', {rel: 'stylesheet', href: 'components/bootstrap/css/' + (debug ? 'bootstrap.css' : 'bootstrap.min.css'), type: 'text/css'});
    +      addTag('link', {rel: 'stylesheet', href: 'components/font-awesome/css/' + (debug ? 'font-awesome.css' : 'font-awesome.min.css'), type: 'text/css'});
    +      addTag('link', {rel: 'stylesheet', href: 'css/prettify.css', type: 'text/css'});
           addTag('link', {rel: 'stylesheet', href: 'css/docs.css', type: 'text/css'});
           addTag('link', {rel: 'stylesheet', href: 'css/animations.css', type: 'text/css'});
    -      if (jQuery) addTag('script', {src: debug ? 'js/jquery.js' : 'js/jquery.min.js'});
    +      if (jQuery) addTag('script', {src: (debug ? 'components/jquery.js' : 'components/jquery.min.js')});
           addTag('script', {src: path('angular.js')}, sync);
           addTag('script', {src: path('angular-resource.js') }, sync);
           addTag('script', {src: path('angular-route.js') }, sync);
    @@ -44,7 +45,8 @@
           addTag('script', {src: path('angular-mobile.js') }, sync);
           addTag('script', {src: 'components/angular-bootstrap.js' }, sync);
           addTag('script', {src: 'components/angular-bootstrap-prettify.js' }, sync);
    -      addTag('script', {src: 'js/lunr.js' }, sync);
    +      addTag('script', {src: 'components/google-code-prettify.js' }, sync);
    +      addTag('script', {src: 'components/' + (debug ? 'lunr.js' : 'lunr.min.js') }, sync);
           addTag('script', {src: 'js/docs.js'}, sync);
           addTag('script', {src: 'docs-keywords.js'}, sync);
     
    @@ -115,7 +117,7 @@
     
     <body>
       <header class="header" ng-controller="DocsNavigationCtrl">
    -    <div class="navbar navbar-fixed-top">
    +    <div class="navbar navbar-inverse navbar-fixed-top">
           <div class="navbar-inner">
             <div class="container">
               <a class="brand" href="http://angularjs.org" style="padding-top: 6px; padding-bottom: 0px;">
    diff --git a/docs/src/templates/js/jquery.js b/docs/src/templates/js/jquery.js
    deleted file mode 120000
    index 557f2716..00000000
    --- a/docs/src/templates/js/jquery.js
    +++ /dev/null
    @@ -1 +0,0 @@
    -../../../../lib/jquery/jquery.js
    \ No newline at end of file
    diff --git a/docs/src/templates/js/jquery.min.js b/docs/src/templates/js/jquery.min.js
    deleted file mode 120000
    index 3bb8805c..00000000
    --- a/docs/src/templates/js/jquery.min.js
    +++ /dev/null
    @@ -1 +0,0 @@
    -../../../../lib/jquery/jquery.min.js
    \ No newline at end of file
    diff --git a/docs/src/templates/js/lunr.js b/docs/src/templates/js/lunr.js
    deleted file mode 100644
    index 6bbd38b3..00000000
    --- a/docs/src/templates/js/lunr.js
    +++ /dev/null
    @@ -1,1560 +0,0 @@
    -/**
    - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.3.1
    - * Copyright (C) 2013 Oliver Nightingale
    - * MIT Licensed
    - * @license
    - */
    -
    -/**
    - * Convenience function for instantiating a new lunr index and configuring it
    - * with the default pipeline functions and the passed config function.
    - *
    - * When using this convenience function a new index will be created with the
    - * following functions already in the pipeline:
    - *
    - * lunr.StopWordFilter - filters out any stop words before they enter the
    - * index
    - *
    - * lunr.stemmer - stems the tokens before entering the index.
    - *
    - * Example:
    - *
    - *     var idx = lunr(function () {
    - *       this.field('title', 10)
    - *       this.field('tags', 100)
    - *       this.field('body')
    - *       
    - *       this.ref('cid')
    - *       
    - *       this.pipeline.add(function () {
    - *         // some custom pipeline function
    - *       })
    - *       
    - *     })
    - *
    - * @param {Function} config A function that will be called with the new instance
    - * of the lunr.Index as both its context and first parameter. It can be used to
    - * customize the instance of new lunr.Index.
    - * @namespace
    - * @module
    - * @returns {lunr.Index}
    - *
    - */
    -var lunr = function (config) {
    -  var idx = new lunr.Index
    -
    -  idx.pipeline.add(lunr.stopWordFilter, lunr.stemmer)
    -
    -  if (config) config.call(idx, idx)
    -
    -  return idx
    -}
    -
    -lunr.version = "0.3.1"
    -
    -if (typeof module !== 'undefined') {
    -  module.exports = lunr
    -}
    -/*!
    - * lunr.tokenizer
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * A function for splitting a string into tokens ready to be inserted into
    - * the search index.
    - *
    - * @module
    - * @param {String} str The string to convert into tokens
    - * @returns {Array}
    - */
    -lunr.tokenizer = function (str) {
    -  if (Array.isArray(str)) return str
    -
    -  var str = str.replace(/^\s+/, '')
    -
    -  for (var i = str.length - 1; i >= 0; i--) {
    -    if (/\S/.test(str.charAt(i))) {
    -      str = str.substring(0, i + 1)
    -      break
    -    }
    -  }
    -
    -  return str
    -    .split(/\s+/)
    -    .map(function (token) {
    -      return token.replace(/^\W+/, '').replace(/\W+$/, '').toLowerCase()
    -    })
    -}
    -/*!
    - * lunr.Pipeline
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * lunr.Pipelines maintain an ordered list of functions to be applied to all
    - * tokens in documents entering the search index and queries being ran against
    - * the index.
    - *
    - * An instance of lunr.Index created with the lunr shortcut will contain a
    - * pipeline with a stop word filter and an English language stemmer. Extra
    - * functions can be added before or after either of these functions or these
    - * default functions can be removed.
    - *
    - * When run the pipeline will call each function in turn, passing a token, the
    - * index of that token in the original list of all tokens and finally a list of
    - * all the original tokens.
    - *
    - * The output of functions in the pipeline will be passed to the next function
    - * in the pipeline. To exclude a token from entering the index the function
    - * should return undefined, the rest of the pipeline will not be called with
    - * this token.
    - *
    - * For serialisation of pipelines to work, all functions used in an instance of
    - * a pipeline should be registered with lunr.Pipeline. Registered functions can
    - * then be loaded. If trying to load a serialised pipeline that uses functions
    - * that are not registered an error will be thrown.
    - *
    - * If not planning on serialising the pipeline then registering pipeline functions
    - * is not necessary.
    - *
    - * @constructor
    - */
    -lunr.Pipeline = function () {
    -  this._stack = []
    -}
    -
    -lunr.Pipeline.registeredFunctions = {}
    -
    -/**
    - * Register a function with the pipeline.
    - *
    - * Functions that are used in the pipeline should be registered if the pipeline
    - * needs to be serialised, or a serialised pipeline needs to be loaded.
    - *
    - * Registering a function does not add it to a pipeline, functions must still be
    - * added to instances of the pipeline for them to be used when running a pipeline.
    - *
    - * @param {Function} fn The function to check for.
    - * @param {String} label The label to register this function with
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.registerFunction = function (fn, label) {
    -  if (console && console.warn && (label in this.registeredFunctions)) {
    -    console.warn('Overwriting existing registered function: ' + label)
    -  }
    -
    -  fn.label = label
    -  lunr.Pipeline.registeredFunctions[fn.label] = fn
    -}
    -
    -/**
    - * Warns if the function is not registered as a Pipeline function.
    - *
    - * @param {Function} fn The function to check for.
    - * @private
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {
    -  var isRegistered = fn.label && (fn.label in this.registeredFunctions)
    -
    -  if (!isRegistered && console && console.warn) {
    -    console.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn)
    -  }
    -}
    -
    -/**
    - * Loads a previously serialised pipeline.
    - *
    - * All functions to be loaded must already be registered with lunr.Pipeline.
    - * If any function from the serialised data has not been registered then an
    - * error will be thrown.
    - *
    - * @param {Object} serialised The serialised pipeline to load.
    - * @returns {lunr.Pipeline}
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.load = function (serialised) {
    -  var pipeline = new lunr.Pipeline
    -
    -  serialised.forEach(function (fnName) {
    -    var fn = lunr.Pipeline.registeredFunctions[fnName]
    -
    -    if (fn) {
    -      pipeline.add(fn)
    -    } else {
    -      throw new Error ('Cannot load un-registered function: ' + fnName)
    -    }
    -  })
    -
    -  return pipeline
    -}
    -
    -/**
    - * Adds new functions to the end of the pipeline.
    - *
    - * Logs a warning if the function has not been registered.
    - *
    - * @param {Function} functions Any number of functions to add to the pipeline.
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.prototype.add = function () {
    -  var fns = Array.prototype.slice.call(arguments)
    -
    -  fns.forEach(function (fn) {
    -    lunr.Pipeline.warnIfFunctionNotRegistered(fn)
    -    this._stack.push(fn)
    -  }, this)
    -}
    -
    -/**
    - * Adds a single function after a function that already exists in the
    - * pipeline.
    - *
    - * Logs a warning if the function has not been registered.
    - *
    - * @param {Function} existingFn A function that already exists in the pipeline.
    - * @param {Function} newFn The new function to add to the pipeline.
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.prototype.after = function (existingFn, newFn) {
    -  lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
    -
    -  var pos = this._stack.indexOf(existingFn) + 1
    -  this._stack.splice(pos, 0, newFn)
    -}
    -
    -/**
    - * Adds a single function before a function that already exists in the
    - * pipeline.
    - *
    - * Logs a warning if the function has not been registered.
    - *
    - * @param {Function} existingFn A function that already exists in the pipeline.
    - * @param {Function} newFn The new function to add to the pipeline.
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.prototype.before = function (existingFn, newFn) {
    -  lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
    -
    -  var pos = this._stack.indexOf(existingFn)
    -  this._stack.splice(pos, 0, newFn)
    -}
    -
    -/**
    - * Removes a function from the pipeline.
    - *
    - * @param {Function} fn The function to remove from the pipeline.
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.prototype.remove = function (fn) {
    -  var pos = this._stack.indexOf(fn)
    -  this._stack.splice(pos, 1)
    -}
    -
    -/**
    - * Runs the current list of functions that make up the pipeline against the
    - * passed tokens.
    - *
    - * @param {Array} tokens The tokens to run through the pipeline.
    - * @returns {Array}
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.prototype.run = function (tokens) {
    -  var out = [],
    -      tokenLength = tokens.length,
    -      stackLength = this._stack.length
    -
    -  for (var i = 0; i < tokenLength; i++) {
    -    var token = tokens[i]
    -
    -    for (var j = 0; j < stackLength; j++) {
    -      token = this._stack[j](token, i, tokens)
    -      if (token === void 0) break
    -    };
    -
    -    if (token !== void 0) out.push(token)
    -  };
    -
    -  return out
    -}
    -
    -/**
    - * Returns a representation of the pipeline ready for serialisation.
    - *
    - * Logs a warning if the function has not been registered.
    - *
    - * @returns {Array}
    - * @memberOf Pipeline
    - */
    -lunr.Pipeline.prototype.toJSON = function () {
    -  return this._stack.map(function (fn) {
    -    lunr.Pipeline.warnIfFunctionNotRegistered(fn)
    -
    -    return fn.label
    -  })
    -}
    -/*!
    - * lunr.Vector
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * lunr.Vectors wrap arrays and add vector related operations for the array
    - * elements.
    - *
    - * @constructor
    - * @param {Array} elements Elements that make up the vector.
    - */
    -lunr.Vector = function (elements) {
    -  this.elements = elements
    -
    -  for (var i = 0; i < elements.length; i++) {
    -    if (!(i in this.elements)) this.elements[i] = 0
    -  }
    -}
    -
    -/**
    - * Calculates the magnitude of this vector.
    - *
    - * @returns {Number}
    - * @memberOf Vector
    - */
    -lunr.Vector.prototype.magnitude = function () {
    -  if (this._magnitude) return this._magnitude
    -
    -  var sumOfSquares = 0,
    -      elems = this.elements,
    -      len = elems.length,
    -      el
    -
    -  for (var i = 0; i < len; i++) {
    -    el = elems[i]
    -    sumOfSquares += el * el
    -  };
    -
    -  return this._magnitude = Math.sqrt(sumOfSquares)
    -}
    -
    -/**
    - * Calculates the dot product of this vector and another vector.
    - *
    - * @param {lunr.Vector} otherVector The vector to compute the dot product with.
    - * @returns {Number}
    - * @memberOf Vector
    - */
    -lunr.Vector.prototype.dot = function (otherVector) {
    -  var elem1 = this.elements,
    -      elem2 = otherVector.elements,
    -      length = elem1.length,
    -      dotProduct = 0
    -
    -  for (var i = 0; i < length; i++) {
    -    dotProduct += elem1[i] * elem2[i]
    -  };
    -
    -  return dotProduct
    -}
    -
    -/**
    - * Calculates the cosine similarity between this vector and another
    - * vector.
    - *
    - * @param {lunr.Vector} otherVector The other vector to calculate the
    - * similarity with.
    - * @returns {Number}
    - * @memberOf Vector
    - */
    -lunr.Vector.prototype.similarity = function (otherVector) {
    -  return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())
    -}
    -
    -/**
    - * Converts this vector back into an array.
    - *
    - * @returns {Array}
    - * @memberOf Vector
    - */
    -lunr.Vector.prototype.toArray = function () {
    -  return this.elements
    -}
    -/*!
    - * lunr.SortedSet
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * lunr.SortedSets are used to maintain an array of uniq values in a sorted
    - * order.
    - *
    - * @constructor
    - */
    -lunr.SortedSet = function () {
    -  this.length = 0
    -  this.elements = []
    -}
    -
    -/**
    - * Loads a previously serialised sorted set.
    - *
    - * @param {Array} serialisedData The serialised set to load.
    - * @returns {lunr.SortedSet}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.load = function (serialisedData) {
    -  var set = new this
    -
    -  set.elements = serialisedData
    -  set.length = serialisedData.length
    -
    -  return set
    -}
    -
    -/**
    - * Inserts new items into the set in the correct position to maintain the
    - * order.
    - *
    - * @param {Object} The objects to add to this set.
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.add = function () {
    -  Array.prototype.slice.call(arguments).forEach(function (element) {
    -    if (~this.indexOf(element)) return
    -    this.elements.splice(this.locationFor(element), 0, element)
    -  }, this)
    -
    -  this.length = this.elements.length
    -}
    -
    -/**
    - * Converts this sorted set into an array.
    - *
    - * @returns {Array}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.toArray = function () {
    -  return this.elements.slice()
    -}
    -
    -/**
    - * Creates a new array with the results of calling a provided function on every
    - * element in this sorted set.
    - *
    - * Delegates to Array.prototype.map and has the same signature.
    - *
    - * @param {Function} fn The function that is called on each element of the
    - * set.
    - * @param {Object} ctx An optional object that can be used as the context
    - * for the function fn.
    - * @returns {Array}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.map = function (fn, ctx) {
    -  return this.elements.map(fn, ctx)
    -}
    -
    -/**
    - * Executes a provided function once per sorted set element.
    - *
    - * Delegates to Array.prototype.forEach and has the same signature.
    - *
    - * @param {Function} fn The function that is called on each element of the
    - * set.
    - * @param {Object} ctx An optional object that can be used as the context
    - * @memberOf SortedSet
    - * for the function fn.
    - */
    -lunr.SortedSet.prototype.forEach = function (fn, ctx) {
    -  return this.elements.forEach(fn, ctx)
    -}
    -
    -/**
    - * Returns the index at which a given element can be found in the
    - * sorted set, or -1 if it is not present.
    - *
    - * @param {Object} elem The object to locate in the sorted set.
    - * @param {Number} start An optional index at which to start searching from
    - * within the set.
    - * @param {Number} end An optional index at which to stop search from within
    - * the set.
    - * @returns {Number}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.indexOf = function (elem, start, end) {
    -  var start = start || 0,
    -      end = end || this.elements.length,
    -      sectionLength = end - start,
    -      pivot = start + Math.floor(sectionLength / 2),
    -      pivotElem = this.elements[pivot]
    -
    -  if (sectionLength <= 1) {
    -    if (pivotElem === elem) {
    -      return pivot
    -    } else {
    -      return -1
    -    }
    -  }
    -
    -  if (pivotElem < elem) return this.indexOf(elem, pivot, end)
    -  if (pivotElem > elem) return this.indexOf(elem, start, pivot)
    -  if (pivotElem === elem) return pivot
    -}
    -
    -/**
    - * Returns the position within the sorted set that an element should be
    - * inserted at to maintain the current order of the set.
    - *
    - * This function assumes that the element to search for does not already exist
    - * in the sorted set.
    - *
    - * @param {Object} elem The elem to find the position for in the set
    - * @param {Number} start An optional index at which to start searching from
    - * within the set.
    - * @param {Number} end An optional index at which to stop search from within
    - * the set.
    - * @returns {Number}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.locationFor = function (elem, start, end) {
    -  var start = start || 0,
    -      end = end || this.elements.length,
    -      sectionLength = end - start,
    -      pivot = start + Math.floor(sectionLength / 2),
    -      pivotElem = this.elements[pivot]
    -
    -  if (sectionLength <= 1) {
    -    if (pivotElem > elem) return pivot
    -    if (pivotElem < elem) return pivot + 1
    -  }
    -
    -  if (pivotElem < elem) return this.locationFor(elem, pivot, end)
    -  if (pivotElem > elem) return this.locationFor(elem, start, pivot)
    -}
    -
    -/**
    - * Creates a new lunr.SortedSet that contains the elements in the intersection
    - * of this set and the passed set.
    - *
    - * @param {lunr.SortedSet} otherSet The set to intersect with this set.
    - * @returns {lunr.SortedSet}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.intersect = function (otherSet) {
    -  var intersectSet = new lunr.SortedSet,
    -      i = 0, j = 0,
    -      a_len = this.length, b_len = otherSet.length,
    -      a = this.elements, b = otherSet.elements
    -
    -  while (true) {
    -    if (i > a_len - 1 || j > b_len - 1) break
    -
    -    if (a[i] === b[j]) {
    -      intersectSet.add(a[i])
    -      i++, j++
    -      continue
    -    }
    -
    -    if (a[i] < b[j]) {
    -      i++
    -      continue
    -    }
    -
    -    if (a[i] > b[j]) {
    -      j++
    -      continue
    -    }
    -  };
    -
    -  return intersectSet
    -}
    -
    -/**
    - * Makes a copy of this set
    - *
    - * @returns {lunr.SortedSet}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.clone = function () {
    -  var clone = new lunr.SortedSet
    -
    -  clone.elements = this.toArray()
    -  clone.length = clone.elements.length
    -
    -  return clone
    -}
    -
    -/**
    - * Creates a new lunr.SortedSet that contains the elements in the union
    - * of this set and the passed set.
    - *
    - * @param {lunr.SortedSet} otherSet The set to union with this set.
    - * @returns {lunr.SortedSet}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.union = function (otherSet) {
    -  var longSet, shortSet, unionSet
    -
    -  if (this.length >= otherSet.length) {
    -    longSet = this, shortSet = otherSet
    -  } else {
    -    longSet = otherSet, shortSet = this
    -  }
    -
    -  unionSet = longSet.clone()
    -
    -  unionSet.add.apply(unionSet, shortSet.toArray())
    -
    -  return unionSet
    -}
    -
    -/**
    - * Returns a representation of the sorted set ready for serialisation.
    - *
    - * @returns {Array}
    - * @memberOf SortedSet
    - */
    -lunr.SortedSet.prototype.toJSON = function () {
    -  return this.toArray()
    -}
    -/*!
    - * lunr.Index
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * lunr.Index is object that manages a search index.  It contains the indexes
    - * and stores all the tokens and document lookups.  It also provides the main
    - * user facing API for the library.
    - *
    - * @constructor
    - */
    -lunr.Index = function () {
    -  this._fields = []
    -  this._ref = 'id'
    -  this.pipeline = new lunr.Pipeline
    -  this.documentStore = new lunr.Store
    -  this.tokenStore = new lunr.TokenStore
    -  this.corpusTokens = new lunr.SortedSet
    -}
    -
    -
    -/**
    - * Loads a previously serialised index.
    - *
    - * Issues a warning if the index being imported was serialised
    - * by a different version of lunr.
    - *
    - * @param {Object} serialisedData The serialised set to load.
    - * @returns {lunr.Index}
    - * @memberOf Index
    - */
    -lunr.Index.load = function (serialisedData) {
    -  if (serialisedData.version !== lunr.version && console && console.warn) {
    -    console.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)
    -  }
    -
    -  var idx = new this
    -
    -  idx._fields = serialisedData.fields
    -  idx._ref = serialisedData.ref
    -
    -  idx.documentStore = lunr.Store.load(serialisedData.documentStore)
    -  idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)
    -  idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)
    -  idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)
    -
    -  return idx
    -}
    -
    -/**
    - * Adds a field to the list of fields that will be searchable within documents
    - * in the index.
    - *
    - * An optional boost param can be passed to affect how much tokens in this field
    - * rank in search results, by default the boost value is 1.
    - *
    - * Fields should be added before any documents are added to the index, fields
    - * that are added after documents are added to the index will only apply to new
    - * documents added to the index.
    - *
    - * @param {String} fieldName The name of the field within the document that
    - * should be indexed
    - * @param {Number} boost An optional boost that can be applied to terms in this
    - * field.
    - * @returns {lunr.Index}
    - * @memberOf Index
    - */
    -lunr.Index.prototype.field = function (fieldName, opts) {
    -  var opts = opts || {},
    -      field = { name: fieldName, boost: opts.boost || 1 }
    -
    -  this._fields.push(field)
    -  return this
    -}
    -
    -/**
    - * Sets the property used to uniquely identify documents added to the index,
    - * by default this property is 'id'.
    - *
    - * This should only be changed before adding documents to the index, changing
    - * the ref property without resetting the index can lead to unexpected results.
    - *
    - * @param {String} refName The property to use to uniquely identify the
    - * documents in the index.
    - * @returns {lunr.Index}
    - * @memberOf Index
    - */
    -lunr.Index.prototype.ref = function (refName) {
    -  this._ref = refName
    -  return this
    -}
    -
    -/**
    - * Add a document to the index.
    - *
    - * This is the way new documents enter the index, this function will run the
    - * fields from the document through the index's pipeline and then add it to
    - * the index, it will then show up in search results.
    - *
    - * @param {Object} doc The document to add to the index.
    - * @memberOf Index
    - */
    -lunr.Index.prototype.add = function (doc) {
    -  var docTokens = {},
    -      allDocumentTokens = new lunr.SortedSet,
    -      docRef = doc[this._ref]
    -
    -  this._fields.forEach(function (field) {
    -    var fieldTokens = this.pipeline.run(lunr.tokenizer(doc[field.name]))
    -
    -    docTokens[field.name] = fieldTokens
    -    lunr.SortedSet.prototype.add.apply(allDocumentTokens, fieldTokens)
    -  }, this)
    -
    -  this.documentStore.set(docRef, allDocumentTokens)
    -  lunr.SortedSet.prototype.add.apply(this.corpusTokens, allDocumentTokens.toArray())
    -
    -  for (var i = 0; i < allDocumentTokens.length; i++) {
    -    var token = allDocumentTokens.elements[i]
    -    var tf = this._fields.reduce(function (memo, field) {
    -      var tokenCount = docTokens[field.name].filter(function (t) { return t === token }).length,
    -          fieldLength = docTokens[field.name].length
    -
    -      return memo + (tokenCount / fieldLength * field.boost)
    -    }, 0)
    -
    -    this.tokenStore.add(token, { ref: docRef, tf: tf })
    -  };
    -}
    -
    -/**
    - * Removes a document from the index.
    - *
    - * To make sure documents no longer show up in search results they can be
    - * removed from the index using this method.
    - *
    - * The document passed only needs to have the same ref property value as the
    - * document that was added to the index, they could be completely different
    - * objects.
    - *
    - * @param {Object} doc The document to remove from the index.
    - * @memberOf Index
    - */
    -lunr.Index.prototype.remove = function (doc) {
    -  var docRef = doc[this._ref]
    -
    -  if (!this.documentStore.has(docRef)) return
    -
    -  var docTokens = this.documentStore.get(docRef)
    -
    -  this.documentStore.remove(docRef)
    -
    -  docTokens.forEach(function (token) {
    -    this.tokenStore.remove(token, docRef)
    -  }, this)
    -}
    -
    -/**
    - * Updates a document in the index.
    - *
    - * When a document contained within the index gets updated, fields changed,
    - * added or removed, to make sure it correctly matched against search queries,
    - * it should be updated in the index.
    - *
    - * This method is just a wrapper around `remove` and `add`
    - *
    - * @param {Object} doc The document to update in the index.
    - * @see Index.prototype.remove
    - * @see Index.prototype.add
    - * @memberOf Index
    - */
    -lunr.Index.prototype.update = function (doc) {
    -  this.remove(doc)
    -  this.add(doc)
    -}
    -
    -/**
    - * Calculates the inverse document frequency for a token within the index.
    - *
    - * @param {String} token The token to calculate the idf of.
    - * @see Index.prototype.idf
    - * @private
    - * @memberOf Index
    - */
    -lunr.Index.prototype.idf = function (term) {
    -  var documentFrequency = Object.keys(this.tokenStore.get(term)).length
    -
    -  if (documentFrequency === 0) {
    -    return 1
    -  } else {
    -    return 1 + Math.log(this.tokenStore.length / documentFrequency)
    -  }
    -}
    -
    -/**
    - * Searches the index using the passed query.
    - *
    - * Queries should be a string, multiple words are allowed and will lead to an
    - * AND based query, e.g. `idx.search('foo bar')` will run a search for
    - * documents containing both 'foo' and 'bar'.
    - *
    - * All query tokens are passed through the same pipeline that document tokens
    - * are passed through, so any language processing involved will be run on every
    - * query term.
    - *
    - * Each query term is expanded, so that the term 'he' might be expanded to
    - * 'hello' and 'help' if those terms were already included in the index.
    - *
    - * Matching documents are returned as an array of objects, each object contains
    - * the matching document ref, as set for this index, and the similarity score
    - * for this document against the query.
    - *
    - * @param {String} query The query to search the index with.
    - * @returns {Object}
    - * @see Index.prototype.idf
    - * @see Index.prototype.documentVector
    - * @memberOf Index
    - */
    -lunr.Index.prototype.search = function (query) {
    -  var queryTokens = this.pipeline.run(lunr.tokenizer(query)),
    -      queryArr = new Array (this.corpusTokens.length),
    -      documentSets = [],
    -      fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)
    -
    -  var hasSomeToken = queryTokens.some(function (token) {
    -    return this.tokenStore.has(token)
    -  }, this)
    -
    -  if (!hasSomeToken) return []
    -
    -  queryTokens
    -    .forEach(function (token, i, tokens) {
    -      var tf = 1 / tokens.length * this._fields.length * fieldBoosts,
    -          self = this
    -
    -      var set = this.tokenStore.expand(token).reduce(function (memo, key) {
    -        var pos = self.corpusTokens.indexOf(key),
    -            idf = self.idf(key),
    -            exactMatchBoost = (key === token ? 10 : 1),
    -            set = new lunr.SortedSet
    -
    -        // calculate the query tf-idf score for this token
    -        // applying an exactMatchBoost to ensure these rank
    -        // higher than expanded terms
    -        if (pos > -1) queryArr[pos] = tf * idf * exactMatchBoost
    -
    -        // add all the documents that have this key into a set
    -        Object.keys(self.tokenStore.get(key)).forEach(function (ref) { set.add(ref) })
    -
    -        return memo.union(set)
    -      }, new lunr.SortedSet)
    -
    -      documentSets.push(set)
    -    }, this)
    -
    -  var documentSet = documentSets.reduce(function (memo, set) {
    -    return memo.intersect(set)
    -  })
    -
    -  var queryVector = new lunr.Vector (queryArr)
    -
    -  return documentSet
    -    .map(function (ref) {
    -      return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }
    -    }, this)
    -    .sort(function (a, b) {
    -      return b.score - a.score
    -    })
    -}
    -
    -/**
    - * Generates a vector containing all the tokens in the document matching the
    - * passed documentRef.
    - *
    - * The vector contains the tf-idf score for each token contained in the
    - * document with the passed documentRef.  The vector will contain an element
    - * for every token in the indexes corpus, if the document does not contain that
    - * token the element will be 0.
    - *
    - * @param {Object} documentRef The ref to find the document with.
    - * @returns {lunr.Vector}
    - * @private
    - * @memberOf Index
    - */
    -lunr.Index.prototype.documentVector = function (documentRef) {
    -  var documentTokens = this.documentStore.get(documentRef),
    -      documentTokensLength = documentTokens.length,
    -      documentArr = new Array (this.corpusTokens.length)
    -
    -  for (var i = 0; i < documentTokensLength; i++) {
    -    var token = documentTokens.elements[i],
    -        tf = this.tokenStore.get(token)[documentRef].tf,
    -        idf = this.idf(token)
    -
    -    documentArr[this.corpusTokens.indexOf(token)] = tf * idf
    -  };
    -
    -  return new lunr.Vector (documentArr)
    -}
    -
    -/**
    - * Returns a representation of the index ready for serialisation.
    - *
    - * @returns {Object}
    - * @memberOf Index
    - */
    -lunr.Index.prototype.toJSON = function () {
    -  return {
    -    version: lunr.version,
    -    fields: this._fields,
    -    ref: this._ref,
    -    documentStore: this.documentStore.toJSON(),
    -    tokenStore: this.tokenStore.toJSON(),
    -    corpusTokens: this.corpusTokens.toJSON(),
    -    pipeline: this.pipeline.toJSON()
    -  }
    -}
    -/*!
    - * lunr.Store
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * lunr.Store is a simple key-value store used for storing sets of tokens for
    - * documents stored in index.
    - *
    - * @constructor
    - * @module
    - */
    -lunr.Store = function () {
    -  this.store = {}
    -  this.length = 0
    -}
    -
    -/**
    - * Loads a previously serialised store
    - *
    - * @param {Object} serialisedData The serialised store to load.
    - * @returns {lunr.Store}
    - * @memberOf Store
    - */
    -lunr.Store.load = function (serialisedData) {
    -  var store = new this
    -
    -  store.length = serialisedData.length
    -  store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {
    -    memo[key] = lunr.SortedSet.load(serialisedData.store[key])
    -    return memo
    -  }, {})
    -
    -  return store
    -}
    -
    -/**
    - * Stores the given tokens in the store against the given id.
    - *
    - * @param {Object} id The key used to store the tokens against.
    - * @param {Object} tokens The tokens to store against the key.
    - * @memberOf Store
    - */
    -lunr.Store.prototype.set = function (id, tokens) {
    -  this.store[id] = tokens
    -  this.length = Object.keys(this.store).length
    -}
    -
    -/**
    - * Retrieves the tokens from the store for a given key.
    - *
    - * @param {Object} id The key to lookup and retrieve from the store.
    - * @returns {Object}
    - * @memberOf Store
    - */
    -lunr.Store.prototype.get = function (id) {
    -  return this.store[id]
    -}
    -
    -/**
    - * Checks whether the store contains a key.
    - *
    - * @param {Object} id The id to look up in the store.
    - * @returns {Boolean}
    - * @memberOf Store
    - */
    -lunr.Store.prototype.has = function (id) {
    -  return id in this.store
    -}
    -
    -/**
    - * Removes the value for a key in the store.
    - *
    - * @param {Object} id The id to remove from the store.
    - * @memberOf Store
    - */
    -lunr.Store.prototype.remove = function (id) {
    -  if (!this.has(id)) return
    -
    -  delete this.store[id]
    -  this.length--
    -}
    -
    -/**
    - * Returns a representation of the store ready for serialisation.
    - *
    - * @returns {Object}
    - * @memberOf Store
    - */
    -lunr.Store.prototype.toJSON = function () {
    -  return {
    -    store: this.store,
    -    length: this.length
    -  }
    -}
    -
    -/*!
    - * lunr.stemmer
    - * Copyright (C) 2013 Oliver Nightingale
    - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
    - */
    -
    -/**
    - * lunr.stemmer is an english language stemmer, this is a JavaScript
    - * implementation of the PorterStemmer taken from http://tartaurs.org/~martin
    - *
    - * @module
    - * @param {String} str The string to stem
    - * @returns {String}
    - * @see lunr.Pipeline
    - */
    -lunr.stemmer = (function(){
    -  var step2list = {
    -      "ational" : "ate",
    -      "tional" : "tion",
    -      "enci" : "ence",
    -      "anci" : "ance",
    -      "izer" : "ize",
    -      "bli" : "ble",
    -      "alli" : "al",
    -      "entli" : "ent",
    -      "eli" : "e",
    -      "ousli" : "ous",
    -      "ization" : "ize",
    -      "ation" : "ate",
    -      "ator" : "ate",
    -      "alism" : "al",
    -      "iveness" : "ive",
    -      "fulness" : "ful",
    -      "ousness" : "ous",
    -      "aliti" : "al",
    -      "iviti" : "ive",
    -      "biliti" : "ble",
    -      "logi" : "log"
    -    },
    -
    -    step3list = {
    -      "icate" : "ic",
    -      "ative" : "",
    -      "alize" : "al",
    -      "iciti" : "ic",
    -      "ical" : "ic",
    -      "ful" : "",
    -      "ness" : ""
    -    },
    -
    -    c = "[^aeiou]",          // consonant
    -    v = "[aeiouy]",          // vowel
    -    C = c + "[^aeiouy]*",    // consonant sequence
    -    V = v + "[aeiou]*",      // vowel sequence
    -
    -    mgr0 = "^(" + C + ")?" + V + C,               // [C]VC... is m>0
    -    meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$",  // [C]VC[V] is m=1
    -    mgr1 = "^(" + C + ")?" + V + C + V + C,       // [C]VCVC... is m>1
    -    s_v = "^(" + C + ")?" + v;                   // vowel in stem
    -
    -  return function (w) {
    -    var   stem,
    -      suffix,
    -      firstch,
    -      re,
    -      re2,
    -      re3,
    -      re4;
    -
    -    if (w.length < 3) { return w; }
    -
    -    firstch = w.substr(0,1);
    -    if (firstch == "y") {
    -      w = firstch.toUpperCase() + w.substr(1);
    -    }
    -
    -    // Step 1a
    -    re = /^(.+?)(ss|i)es$/;
    -    re2 = /^(.+?)([^s])s$/;
    -
    -    if (re.test(w)) { w = w.replace(re,"$1$2"); }
    -    else if (re2.test(w)) { w = w.replace(re2,"$1$2"); }
    -
    -    // Step 1b
    -    re = /^(.+?)eed$/;
    -    re2 = /^(.+?)(ed|ing)$/;
    -    if (re.test(w)) {
    -      var fp = re.exec(w);
    -      re = new RegExp(mgr0);
    -      if (re.test(fp[1])) {
    -        re = /.$/;
    -        w = w.replace(re,"");
    -      }
    -    } else if (re2.test(w)) {
    -      var fp = re2.exec(w);
    -      stem = fp[1];
    -      re2 = new RegExp(s_v);
    -      if (re2.test(stem)) {
    -        w = stem;
    -        re2 = /(at|bl|iz)$/;
    -        re3 = new RegExp("([^aeiouylsz])\\1$");
    -        re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
    -        if (re2.test(w)) {  w = w + "e"; }
    -        else if (re3.test(w)) { re = /.$/; w = w.replace(re,""); }
    -        else if (re4.test(w)) { w = w + "e"; }
    -      }
    -    }
    -
    -    // Step 1c
    -    re = /^(.+?)y$/;
    -    if (re.test(w)) {
    -      var fp = re.exec(w);
    -      stem = fp[1];
    -      re = new RegExp(s_v);
    -      if (re.test(stem)) { w = stem + "i"; }
    -    }
    -
    -    // Step 2
    -    re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
    -    if (re.test(w)) {
    -      var fp = re.exec(w);
    -      stem = fp[1];
    -      suffix = fp[2];
    -      re = new RegExp(mgr0);
    -      if (re.test(stem)) {
    -        w = stem + step2list[suffix];
    -      }
    -    }
    -
    -    // Step 3
    -    re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
    -    if (re.test(w)) {
    -      var fp = re.exec(w);
    -      stem = fp[1];
    -      suffix = fp[2];
    -      re = new RegExp(mgr0);
    -      if (re.test(stem)) {
    -        w = stem + step3list[suffix];
    -      }
    -    }
    -
    -    // Step 4
    -    re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
    -    re2 = /^(.+?)(s|t)(ion)$/;
    -    if (re.test(w)) {
    -      var fp = re.exec(w);
    -      stem = fp[1];
    -      re = new RegExp(mgr1);
    -      if (re.test(stem)) {
    -        w = stem;
    -      }
    -    } else if (re2.test(w)) {
    -      var fp = re2.exec(w);
    -      stem = fp[1] + fp[2];
    -      re2 = new RegExp(mgr1);
    -      if (re2.test(stem)) {
    -        w = stem;
    -      }
    -    }
    -
    -    // Step 5
    -    re = /^(.+?)e$/;
    -    if (re.test(w)) {
    -      var fp = re.exec(w);
    -      stem = fp[1];
    -      re = new RegExp(mgr1);
    -      re2 = new RegExp(meq1);
    -      re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
    -      if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {
    -        w = stem;
    -      }
    -    }
    -
    -    re = /ll$/;
    -    re2 = new RegExp(mgr1);
    -    if (re.test(w) && re2.test(w)) {
    -      re = /.$/;
    -      w = w.replace(re,"");
    -    }
    -
    -    // and turn initial Y back to y
    -
    -    if (firstch == "y") {
    -      w = firstch.toLowerCase() + w.substr(1);
    -    }
    -
    -    return w;
    -  }
    -})();
    -
    -lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')
    -/*!
    - * lunr.stopWordFilter
    - * Copyright (C) 2013 Oliver Nightingale
    - */
    -
    -/**
    - * lunr.stopWordFilter is an English language stop word list filter, any words
    - * contained in the list will not be passed through the filter.
    - *
    - * This is intended to be used in the Pipeline. If the token does not pass the
    - * filter then undefined will be returned.
    - *
    - * @module
    - * @param {String} token The token to pass through the filter
    - * @returns {String}
    - * @see lunr.Pipeline
    - */
    -lunr.stopWordFilter = function (token) {
    -  if (lunr.stopWordFilter.stopWords.indexOf(token) === -1) return token
    -}
    -
    -lunr.stopWordFilter.stopWords = new lunr.SortedSet
    -lunr.stopWordFilter.stopWords.length = 119
    -lunr.stopWordFilter.stopWords.elements = [
    -  "a",
    -  "able",
    -  "about",
    -  "across",
    -  "after",
    -  "all",
    -  "almost",
    -  "also",
    -  "am",
    -  "among",
    -  "an",
    -  "and",
    -  "any",
    -  "are",
    -  "as",
    -  "at",
    -  "be",
    -  "because",
    -  "been",
    -  "but",
    -  "by",
    -  "can",
    -  "cannot",
    -  "could",
    -  "dear",
    -  "did",
    -  "do",
    -  "does",
    -  "either",
    -  "else",
    -  "ever",
    -  "every",
    -  "for",
    -  "from",
    -  "get",
    -  "got",
    -  "had",
    -  "has",
    -  "have",
    -  "he",
    -  "her",
    -  "hers",
    -  "him",
    -  "his",
    -  "how",
    -  "however",
    -  "i",
    -  "if",
    -  "in",
    -  "into",
    -  "is",
    -  "it",
    -  "its",
    -  "just",
    -  "least",
    -  "let",
    -  "like",
    -  "likely",
    -  "may",
    -  "me",
    -  "might",
    -  "most",
    -  "must",
    -  "my",
    -  "neither",
    -  "no",
    -  "nor",
    -  "not",
    -  "of",
    -  "off",
    -  "often",
    -  "on",
    -  "only",
    -  "or",
    -  "other",
    -  "our",
    -  "own",
    -  "rather",
    -  "said",
    -  "say",
    -  "says",
    -  "she",
    -  "should",
    -  "since",
    -  "so",
    -  "some",
    -  "than",
    -  "that",
    -  "the",
    -  "their",
    -  "them",
    -  "then",
    -  "there",
    -  "these",
    -  "they",
    -  "this",
    -  "tis",
    -  "to",
    -  "too",
    -  "twas",
    -  "us",
    -  "wants",
    -  "was",
    -  "we",
    -  "were",
    -  "what",
    -  "when",
    -  "where",
    -  "which",
    -  "while",
    -  "who",
    -  "whom",
    -  "why",
    -  "will",
    -  "with",
    -  "would",
    -  "yet",
    -  "you",
    -  "your"
    -]
    -
    -lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')
    -/*!
    - * lunr.stemmer
    - * Copyright (C) 2013 Oliver Nightingale
    - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
    - */
    -
    -/**
    - * lunr.TokenStore is used for efficient storing and lookup of the reverse
    - * index of token to document ref.
    - *
    - * @constructor
    - */
    -lunr.TokenStore = function () {
    -  this.root = { docs: {} }
    -  this.length = 0
    -}
    -
    -/**
    - * Loads a previously serialised token store
    - *
    - * @param {Object} serialisedData The serialised token store to load.
    - * @returns {lunr.TokenStore}
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.load = function (serialisedData) {
    -  var store = new this
    -
    -  store.root = serialisedData.root
    -  store.length = serialisedData.length
    -
    -  return store
    -}
    -
    -/**
    - * Adds a new token doc pair to the store.
    - *
    - * By default this function starts at the root of the current store, however
    - * it can start at any node of any token store if required.
    - *
    - * @param {String} token The token to store the doc under
    - * @param {Object} doc The doc to store against the token
    - * @param {Object} root An optional node at which to start looking for the
    - * correct place to enter the doc, by default the root of this lunr.TokenStore
    - * is used.
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.add = function (token, doc, root) {
    -  var root = root || this.root,
    -      key = token[0],
    -      rest = token.slice(1)
    -
    -  if (!(key in root)) root[key] = {docs: {}}
    -
    -  if (rest.length === 0) {
    -    root[key].docs[doc.ref] = doc
    -    this.length += 1
    -    return
    -  } else {
    -    return this.add(rest, doc, root[key])
    -  }
    -}
    -
    -/**
    - * Checks whether this key is contained within this lunr.TokenStore.
    - *
    - * By default this function starts at the root of the current store, however
    - * it can start at any node of any token store if required.
    - *
    - * @param {String} token The token to check for
    - * @param {Object} root An optional node at which to start
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.has = function (token, root) {
    -  var root = root || this.root,
    -      key = token[0],
    -      rest = token.slice(1)
    -
    -  if (!(key in root)) return false
    -
    -  if (rest.length === 0) {
    -    return true
    -  } else {
    -    return this.has(rest, root[key])
    -  }
    -}
    -
    -/**
    - * Retrieve a node from the token store for a given token.
    - *
    - * By default this function starts at the root of the current store, however
    - * it can start at any node of any token store if required.
    - *
    - * @param {String} token The token to get the node for.
    - * @param {Object} root An optional node at which to start.
    - * @returns {Object}
    - * @see TokenStore.prototype.get
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.getNode = function (token, root) {
    -  var root = root || this.root,
    -      key = token[0],
    -      rest = token.slice(1)
    -
    -  if (!(key in root)) return {}
    -
    -  if (rest.length === 0) {
    -    return root[key]
    -  } else {
    -    return this.getNode(rest, root[key])
    -  }
    -}
    -
    -/**
    - * Retrieve the documents for a node for the given token.
    - *
    - * By default this function starts at the root of the current store, however
    - * it can start at any node of any token store if required.
    - *
    - * @param {String} token The token to get the documents for.
    - * @param {Object} root An optional node at which to start.
    - * @returns {Object}
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.get = function (token, root) {
    -  return this.getNode(token, root).docs || {}
    -}
    -
    -/**
    - * Remove the document identified by ref from the token in the store.
    - *
    - * By default this function starts at the root of the current store, however
    - * it can start at any node of any token store if required.
    - *
    - * @param {String} token The token to get the documents for.
    - * @param {String} ref The ref of the document to remove from this token.
    - * @param {Object} root An optional node at which to start.
    - * @returns {Object}
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.remove = function (token, ref, root) {
    -  var root = root || this.root,
    -      key = token[0],
    -      rest = token.slice(1)
    -
    -  if (!(key in root)) return
    -
    -  if (rest.length === 0) {
    -    delete root[key].docs[ref]
    -  } else {
    -    return this.remove(rest, ref, root[key])
    -  }
    -}
    -
    -/**
    - * Find all the possible suffixes of the passed token using tokens
    - * currently in the store.
    - *
    - * @param {String} token The token to expand.
    - * @returns {Array}
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.expand = function (token, memo) {
    -  var root = this.getNode(token),
    -      docs = root.docs || {},
    -      memo = memo || []
    -
    -  if (Object.keys(docs).length) memo.push(token)
    -
    -  Object.keys(root)
    -    .forEach(function (key) {
    -      if (key === 'docs') return
    -
    -      memo.concat(this.expand(token + key, memo))
    -    }, this)
    -
    -  return memo
    -}
    -
    -/**
    - * Returns a representation of the token store ready for serialisation.
    - *
    - * @returns {Object}
    - * @memberOf TokenStore
    - */
    -lunr.TokenStore.prototype.toJSON = function () {
    -  return {
    -    root: this.root,
    -    length: this.length
    -  }
    -}
    -
    diff --git a/docs/src/writer.js b/docs/src/writer.js
    index b6403e34..ef33b4db 100644
    --- a/docs/src/writer.js
    +++ b/docs/src/writer.js
    @@ -90,10 +90,12 @@ exports.replace = function(content, replacements) {
       return content;
     }
     
    -exports.copyDir = function copyDir(dir) {
    -  return qfs.listTree('docs/' + dir).then(function(files) {
    +exports.copyDir = function copyDir(from, to) {
    +  return qfs.listTree(from).then(function(files) {
         files.forEach(function(file) {
    -      exports.copy(file, file.replace(/^docs\//, ''));
    +      var path = to ? file.replace(from, to) : from;
    +      path = path.replace('/docs/build', '');
    +      exports.copy(file, path);
         });
       });
     };
    diff --git a/lib/jquery/jquery.js b/lib/jquery/jquery.js
    deleted file mode 100644
    index 12c7797f..00000000
    --- a/lib/jquery/jquery.js
    +++ /dev/null
    @@ -1,9440 +0,0 @@
    -/*!
    - * jQuery JavaScript Library v1.8.2
    - * http://jquery.com/
    - *
    - * Includes Sizzle.js
    - * http://sizzlejs.com/
    - *
    - * Copyright 2012 jQuery Foundation and other contributors
    - * Released under the MIT license
    - * http://jquery.org/license
    - *
    - * Date: Thu Sep 20 2012 21:13:05 GMT-0400 (Eastern Daylight Time)
    - */
    -(function( window, undefined ) {
    -var
    -	// A central reference to the root jQuery(document)
    -	rootjQuery,
    -
    -	// The deferred used on DOM ready
    -	readyList,
    -
    -	// Use the correct document accordingly with window argument (sandbox)
    -	document = window.document,
    -	location = window.location,
    -	navigator = window.navigator,
    -
    -	// Map over jQuery in case of overwrite
    -	_jQuery = window.jQuery,
    -
    -	// Map over the $ in case of overwrite
    -	_$ = window.$,
    -
    -	// Save a reference to some core methods
    -	core_push = Array.prototype.push,
    -	core_slice = Array.prototype.slice,
    -	core_indexOf = Array.prototype.indexOf,
    -	core_toString = Object.prototype.toString,
    -	core_hasOwn = Object.prototype.hasOwnProperty,
    -	core_trim = String.prototype.trim,
    -
    -	// Define a local copy of jQuery
    -	jQuery = function( selector, context ) {
    -		// The jQuery object is actually just the init constructor 'enhanced'
    -		return new jQuery.fn.init( selector, context, rootjQuery );
    -	},
    -
    -	// Used for matching numbers
    -	core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,
    -
    -	// Used for detecting and trimming whitespace
    -	core_rnotwhite = /\S/,
    -	core_rspace = /\s+/,
    -
    -	// Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE)
    -	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
    -
    -	// A simple way to check for HTML strings
    -	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
    -	rquickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,
    -
    -	// Match a standalone tag
    -	rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
    -
    -	// JSON RegExp
    -	rvalidchars = /^[\],:{}\s]*$/,
    -	rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g,
    -	rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,
    -	rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,
    -
    -	// Matches dashed string for camelizing
    -	rmsPrefix = /^-ms-/,
    -	rdashAlpha = /-([\da-z])/gi,
    -
    -	// Used by jQuery.camelCase as callback to replace()
    -	fcamelCase = function( all, letter ) {
    -		return ( letter + "" ).toUpperCase();
    -	},
    -
    -	// The ready event handler and self cleanup method
    -	DOMContentLoaded = function() {
    -		if ( document.addEventListener ) {
    -			document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false );
    -			jQuery.ready();
    -		} else if ( document.readyState === "complete" ) {
    -			// we're here because readyState === "complete" in oldIE
    -			// which is good enough for us to call the dom ready!
    -			document.detachEvent( "onreadystatechange", DOMContentLoaded );
    -			jQuery.ready();
    -		}
    -	},
    -
    -	// [[Class]] -> type pairs
    -	class2type = {};
    -
    -jQuery.fn = jQuery.prototype = {
    -	constructor: jQuery,
    -	init: function( selector, context, rootjQuery ) {
    -		var match, elem, ret, doc;
    -
    -		// Handle $(""), $(null), $(undefined), $(false)
    -		if ( !selector ) {
    -			return this;
    -		}
    -
    -		// Handle $(DOMElement)
    -		if ( selector.nodeType ) {
    -			this.context = this[0] = selector;
    -			this.length = 1;
    -			return this;
    -		}
    -
    -		// Handle HTML strings
    -		if ( typeof selector === "string" ) {
    -			if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
    -				// Assume that strings that start and end with <> are HTML and skip the regex check
    -				match = [ null, selector, null ];
    -
    -			} else {
    -				match = rquickExpr.exec( selector );
    -			}
    -
    -			// Match html or make sure no context is specified for #id
    -			if ( match && (match[1] || !context) ) {
    -
    -				// HANDLE: $(html) -> $(array)
    -				if ( match[1] ) {
    -					context = context instanceof jQuery ? context[0] : context;
    -					doc = ( context && context.nodeType ? context.ownerDocument || context : document );
    -
    -					// scripts is true for back-compat
    -					selector = jQuery.parseHTML( match[1], doc, true );
    -					if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
    -						this.attr.call( selector, context, true );
    -					}
    -
    -					return jQuery.merge( this, selector );
    -
    -				// HANDLE: $(#id)
    -				} else {
    -					elem = document.getElementById( match[2] );
    -
    -					// Check parentNode to catch when Blackberry 4.6 returns
    -					// nodes that are no longer in the document #6963
    -					if ( elem && elem.parentNode ) {
    -						// Handle the case where IE and Opera return items
    -						// by name instead of ID
    -						if ( elem.id !== match[2] ) {
    -							return rootjQuery.find( selector );
    -						}
    -
    -						// Otherwise, we inject the element directly into the jQuery object
    -						this.length = 1;
    -						this[0] = elem;
    -					}
    -
    -					this.context = document;
    -					this.selector = selector;
    -					return this;
    -				}
    -
    -			// HANDLE: $(expr, $(...))
    -			} else if ( !context || context.jquery ) {
    -				return ( context || rootjQuery ).find( selector );
    -
    -			// HANDLE: $(expr, context)
    -			// (which is just equivalent to: $(context).find(expr)
    -			} else {
    -				return this.constructor( context ).find( selector );
    -			}
    -
    -		// HANDLE: $(function)
    -		// Shortcut for document ready
    -		} else if ( jQuery.isFunction( selector ) ) {
    -			return rootjQuery.ready( selector );
    -		}
    -
    -		if ( selector.selector !== undefined ) {
    -			this.selector = selector.selector;
    -			this.context = selector.context;
    -		}
    -
    -		return jQuery.makeArray( selector, this );
    -	},
    -
    -	// Start with an empty selector
    -	selector: "",
    -
    -	// The current version of jQuery being used
    -	jquery: "1.8.2",
    -
    -	// The default length of a jQuery object is 0
    -	length: 0,
    -
    -	// The number of elements contained in the matched element set
    -	size: function() {
    -		return this.length;
    -	},
    -
    -	toArray: function() {
    -		return core_slice.call( this );
    -	},
    -
    -	// Get the Nth element in the matched element set OR
    -	// Get the whole matched element set as a clean array
    -	get: function( num ) {
    -		return num == null ?
    -
    -			// Return a 'clean' array
    -			this.toArray() :
    -
    -			// Return just the object
    -			( num < 0 ? this[ this.length + num ] : this[ num ] );
    -	},
    -
    -	// Take an array of elements and push it onto the stack
    -	// (returning the new matched element set)
    -	pushStack: function( elems, name, selector ) {
    -
    -		// Build a new jQuery matched element set
    -		var ret = jQuery.merge( this.constructor(), elems );
    -
    -		// Add the old object onto the stack (as a reference)
    -		ret.prevObject = this;
    -
    -		ret.context = this.context;
    -
    -		if ( name === "find" ) {
    -			ret.selector = this.selector + ( this.selector ? " " : "" ) + selector;
    -		} else if ( name ) {
    -			ret.selector = this.selector + "." + name + "(" + selector + ")";
    -		}
    -
    -		// Return the newly-formed element set
    -		return ret;
    -	},
    -
    -	// Execute a callback for every element in the matched set.
    -	// (You can seed the arguments with an array of args, but this is
    -	// only used internally.)
    -	each: function( callback, args ) {
    -		return jQuery.each( this, callback, args );
    -	},
    -
    -	ready: function( fn ) {
    -		// Add the callback
    -		jQuery.ready.promise().done( fn );
    -
    -		return this;
    -	},
    -
    -	eq: function( i ) {
    -		i = +i;
    -		return i === -1 ?
    -			this.slice( i ) :
    -			this.slice( i, i + 1 );
    -	},
    -
    -	first: function() {
    -		return this.eq( 0 );
    -	},
    -
    -	last: function() {
    -		return this.eq( -1 );
    -	},
    -
    -	slice: function() {
    -		return this.pushStack( core_slice.apply( this, arguments ),
    -			"slice", core_slice.call(arguments).join(",") );
    -	},
    -
    -	map: function( callback ) {
    -		return this.pushStack( jQuery.map(this, function( elem, i ) {
    -			return callback.call( elem, i, elem );
    -		}));
    -	},
    -
    -	end: function() {
    -		return this.prevObject || this.constructor(null);
    -	},
    -
    -	// For internal use only.
    -	// Behaves like an Array's method, not like a jQuery method.
    -	push: core_push,
    -	sort: [].sort,
    -	splice: [].splice
    -};
    -
    -// Give the init function the jQuery prototype for later instantiation
    -jQuery.fn.init.prototype = jQuery.fn;
    -
    -jQuery.extend = jQuery.fn.extend = function() {
    -	var options, name, src, copy, copyIsArray, clone,
    -		target = arguments[0] || {},
    -		i = 1,
    -		length = arguments.length,
    -		deep = false;
    -
    -	// Handle a deep copy situation
    -	if ( typeof target === "boolean" ) {
    -		deep = target;
    -		target = arguments[1] || {};
    -		// skip the boolean and the target
    -		i = 2;
    -	}
    -
    -	// Handle case when target is a string or something (possible in deep copy)
    -	if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
    -		target = {};
    -	}
    -
    -	// extend jQuery itself if only one argument is passed
    -	if ( length === i ) {
    -		target = this;
    -		--i;
    -	}
    -
    -	for ( ; i < length; i++ ) {
    -		// Only deal with non-null/undefined values
    -		if ( (options = arguments[ i ]) != null ) {
    -			// Extend the base object
    -			for ( name in options ) {
    -				src = target[ name ];
    -				copy = options[ name ];
    -
    -				// Prevent never-ending loop
    -				if ( target === copy ) {
    -					continue;
    -				}
    -
    -				// Recurse if we're merging plain objects or arrays
    -				if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
    -					if ( copyIsArray ) {
    -						copyIsArray = false;
    -						clone = src && jQuery.isArray(src) ? src : [];
    -
    -					} else {
    -						clone = src && jQuery.isPlainObject(src) ? src : {};
    -					}
    -
    -					// Never move original objects, clone them
    -					target[ name ] = jQuery.extend( deep, clone, copy );
    -
    -				// Don't bring in undefined values
    -				} else if ( copy !== undefined ) {
    -					target[ name ] = copy;
    -				}
    -			}
    -		}
    -	}
    -
    -	// Return the modified object
    -	return target;
    -};
    -
    -jQuery.extend({
    -	noConflict: function( deep ) {
    -		if ( window.$ === jQuery ) {
    -			window.$ = _$;
    -		}
    -
    -		if ( deep && window.jQuery === jQuery ) {
    -			window.jQuery = _jQuery;
    -		}
    -
    -		return jQuery;
    -	},
    -
    -	// Is the DOM ready to be used? Set to true once it occurs.
    -	isReady: false,
    -
    -	// A counter to track how many items to wait for before
    -	// the ready event fires. See #6781
    -	readyWait: 1,
    -
    -	// Hold (or release) the ready event
    -	holdReady: function( hold ) {
    -		if ( hold ) {
    -			jQuery.readyWait++;
    -		} else {
    -			jQuery.ready( true );
    -		}
    -	},
    -
    -	// Handle when the DOM is ready
    -	ready: function( wait ) {
    -
    -		// Abort if there are pending holds or we're already ready
    -		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
    -			return;
    -		}
    -
    -		// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
    -		if ( !document.body ) {
    -			return setTimeout( jQuery.ready, 1 );
    -		}
    -
    -		// Remember that the DOM is ready
    -		jQuery.isReady = true;
    -
    -		// If a normal DOM Ready event fired, decrement, and wait if need be
    -		if ( wait !== true && --jQuery.readyWait > 0 ) {
    -			return;
    -		}
    -
    -		// If there are functions bound, to execute
    -		readyList.resolveWith( document, [ jQuery ] );
    -
    -		// Trigger any bound ready events
    -		if ( jQuery.fn.trigger ) {
    -			jQuery( document ).trigger("ready").off("ready");
    -		}
    -	},
    -
    -	// See test/unit/core.js for details concerning isFunction.
    -	// Since version 1.3, DOM methods and functions like alert
    -	// aren't supported. They return false on IE (#2968).
    -	isFunction: function( obj ) {
    -		return jQuery.type(obj) === "function";
    -	},
    -
    -	isArray: Array.isArray || function( obj ) {
    -		return jQuery.type(obj) === "array";
    -	},
    -
    -	isWindow: function( obj ) {
    -		return obj != null && obj == obj.window;
    -	},
    -
    -	isNumeric: function( obj ) {
    -		return !isNaN( parseFloat(obj) ) && isFinite( obj );
    -	},
    -
    -	type: function( obj ) {
    -		return obj == null ?
    -			String( obj ) :
    -			class2type[ core_toString.call(obj) ] || "object";
    -	},
    -
    -	isPlainObject: function( obj ) {
    -		// Must be an Object.
    -		// Because of IE, we also have to check the presence of the constructor property.
    -		// Make sure that DOM nodes and window objects don't pass through, as well
    -		if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) {
    -			return false;
    -		}
    -
    -		try {
    -			// Not own constructor property must be Object
    -			if ( obj.constructor &&
    -				!core_hasOwn.call(obj, "constructor") &&
    -				!core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) {
    -				return false;
    -			}
    -		} catch ( e ) {
    -			// IE8,9 Will throw exceptions on certain host objects #9897
    -			return false;
    -		}
    -
    -		// Own properties are enumerated firstly, so to speed up,
    -		// if last one is own, then all properties are own.
    -
    -		var key;
    -		for ( key in obj ) {}
    -
    -		return key === undefined || core_hasOwn.call( obj, key );
    -	},
    -
    -	isEmptyObject: function( obj ) {
    -		var name;
    -		for ( name in obj ) {
    -			return false;
    -		}
    -		return true;
    -	},
    -
    -	error: function( msg ) {
    -		throw new Error( msg );
    -	},
    -
    -	// data: string of html
    -	// context (optional): If specified, the fragment will be created in this context, defaults to document
    -	// scripts (optional): If true, will include scripts passed in the html string
    -	parseHTML: function( data, context, scripts ) {
    -		var parsed;
    -		if ( !data || typeof data !== "string" ) {
    -			return null;
    -		}
    -		if ( typeof context === "boolean" ) {
    -			scripts = context;
    -			context = 0;
    -		}
    -		context = context || document;
    -
    -		// Single tag
    -		if ( (parsed = rsingleTag.exec( data )) ) {
    -			return [ context.createElement( parsed[1] ) ];
    -		}
    -
    -		parsed = jQuery.buildFragment( [ data ], context, scripts ? null : [] );
    -		return jQuery.merge( [],
    -			(parsed.cacheable ? jQuery.clone( parsed.fragment ) : parsed.fragment).childNodes );
    -	},
    -
    -	parseJSON: function( data ) {
    -		if ( !data || typeof data !== "string") {
    -			return null;
    -		}
    -
    -		// Make sure leading/trailing whitespace is removed (IE can't handle it)
    -		data = jQuery.trim( data );
    -
    -		// Attempt to parse using the native JSON parser first
    -		if ( window.JSON && window.JSON.parse ) {
    -			return window.JSON.parse( data );
    -		}
    -
    -		// Make sure the incoming data is actual JSON
    -		// Logic borrowed from http://json.org/json2.js
    -		if ( rvalidchars.test( data.replace( rvalidescape, "@" )
    -			.replace( rvalidtokens, "]" )
    -			.replace( rvalidbraces, "")) ) {
    -
    -			return ( new Function( "return " + data ) )();
    -
    -		}
    -		jQuery.error( "Invalid JSON: " + data );
    -	},
    -
    -	// Cross-browser xml parsing
    -	parseXML: function( data ) {
    -		var xml, tmp;
    -		if ( !data || typeof data !== "string" ) {
    -			return null;
    -		}
    -		try {
    -			if ( window.DOMParser ) { // Standard
    -				tmp = new DOMParser();
    -				xml = tmp.parseFromString( data , "text/xml" );
    -			} else { // IE
    -				xml = new ActiveXObject( "Microsoft.XMLDOM" );
    -				xml.async = "false";
    -				xml.loadXML( data );
    -			}
    -		} catch( e ) {
    -			xml = undefined;
    -		}
    -		if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) {
    -			jQuery.error( "Invalid XML: " + data );
    -		}
    -		return xml;
    -	},
    -
    -	noop: function() {},
    -
    -	// Evaluates a script in a global context
    -	// Workarounds based on findings by Jim Driscoll
    -	// http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context
    -	globalEval: function( data ) {
    -		if ( data && core_rnotwhite.test( data ) ) {
    -			// We use execScript on Internet Explorer
    -			// We use an anonymous function so that context is window
    -			// rather than jQuery in Firefox
    -			( window.execScript || function( data ) {
    -				window[ "eval" ].call( window, data );
    -			} )( data );
    -		}
    -	},
    -
    -	// Convert dashed to camelCase; used by the css and data modules
    -	// Microsoft forgot to hump their vendor prefix (#9572)
    -	camelCase: function( string ) {
    -		return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
    -	},
    -
    -	nodeName: function( elem, name ) {
    -		return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
    -	},
    -
    -	// args is for internal usage only
    -	each: function( obj, callback, args ) {
    -		var name,
    -			i = 0,
    -			length = obj.length,
    -			isObj = length === undefined || jQuery.isFunction( obj );
    -
    -		if ( args ) {
    -			if ( isObj ) {
    -				for ( name in obj ) {
    -					if ( callback.apply( obj[ name ], args ) === false ) {
    -						break;
    -					}
    -				}
    -			} else {
    -				for ( ; i < length; ) {
    -					if ( callback.apply( obj[ i++ ], args ) === false ) {
    -						break;
    -					}
    -				}
    -			}
    -
    -		// A special, fast, case for the most common use of each
    -		} else {
    -			if ( isObj ) {
    -				for ( name in obj ) {
    -					if ( callback.call( obj[ name ], name, obj[ name ] ) === false ) {
    -						break;
    -					}
    -				}
    -			} else {
    -				for ( ; i < length; ) {
    -					if ( callback.call( obj[ i ], i, obj[ i++ ] ) === false ) {
    -						break;
    -					}
    -				}
    -			}
    -		}
    -
    -		return obj;
    -	},
    -
    -	// Use native String.trim function wherever possible
    -	trim: core_trim && !core_trim.call("\uFEFF\xA0") ?
    -		function( text ) {
    -			return text == null ?
    -				"" :
    -				core_trim.call( text );
    -		} :
    -
    -		// Otherwise use our own trimming functionality
    -		function( text ) {
    -			return text == null ?
    -				"" :
    -				( text + "" ).replace( rtrim, "" );
    -		},
    -
    -	// results is for internal usage only
    -	makeArray: function( arr, results ) {
    -		var type,
    -			ret = results || [];
    -
    -		if ( arr != null ) {
    -			// The window, strings (and functions) also have 'length'
    -			// Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930
    -			type = jQuery.type( arr );
    -
    -			if ( arr.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( arr ) ) {
    -				core_push.call( ret, arr );
    -			} else {
    -				jQuery.merge( ret, arr );
    -			}
    -		}
    -
    -		return ret;
    -	},
    -
    -	inArray: function( elem, arr, i ) {
    -		var len;
    -
    -		if ( arr ) {
    -			if ( core_indexOf ) {
    -				return core_indexOf.call( arr, elem, i );
    -			}
    -
    -			len = arr.length;
    -			i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0;
    -
    -			for ( ; i < len; i++ ) {
    -				// Skip accessing in sparse arrays
    -				if ( i in arr && arr[ i ] === elem ) {
    -					return i;
    -				}
    -			}
    -		}
    -
    -		return -1;
    -	},
    -
    -	merge: function( first, second ) {
    -		var l = second.length,
    -			i = first.length,
    -			j = 0;
    -
    -		if ( typeof l === "number" ) {
    -			for ( ; j < l; j++ ) {
    -				first[ i++ ] = second[ j ];
    -			}
    -
    -		} else {
    -			while ( second[j] !== undefined ) {
    -				first[ i++ ] = second[ j++ ];
    -			}
    -		}
    -
    -		first.length = i;
    -
    -		return first;
    -	},
    -
    -	grep: function( elems, callback, inv ) {
    -		var retVal,
    -			ret = [],
    -			i = 0,
    -			length = elems.length;
    -		inv = !!inv;
    -
    -		// Go through the array, only saving the items
    -		// that pass the validator function
    -		for ( ; i < length; i++ ) {
    -			retVal = !!callback( elems[ i ], i );
    -			if ( inv !== retVal ) {
    -				ret.push( elems[ i ] );
    -			}
    -		}
    -
    -		return ret;
    -	},
    -
    -	// arg is for internal usage only
    -	map: function( elems, callback, arg ) {
    -		var value, key,
    -			ret = [],
    -			i = 0,
    -			length = elems.length,
    -			// jquery objects are treated as arrays
    -			isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ;
    -
    -		// Go through the array, translating each of the items to their
    -		if ( isArray ) {
    -			for ( ; i < length; i++ ) {
    -				value = callback( elems[ i ], i, arg );
    -
    -				if ( value != null ) {
    -					ret[ ret.length ] = value;
    -				}
    -			}
    -
    -		// Go through every key on the object,
    -		} else {
    -			for ( key in elems ) {
    -				value = callback( elems[ key ], key, arg );
    -
    -				if ( value != null ) {
    -					ret[ ret.length ] = value;
    -				}
    -			}
    -		}
    -
    -		// Flatten any nested arrays
    -		return ret.concat.apply( [], ret );
    -	},
    -
    -	// A global GUID counter for objects
    -	guid: 1,
    -
    -	// Bind a function to a context, optionally partially applying any
    -	// arguments.
    -	proxy: function( fn, context ) {
    -		var tmp, args, proxy;
    -
    -		if ( typeof context === "string" ) {
    -			tmp = fn[ context ];
    -			context = fn;
    -			fn = tmp;
    -		}
    -
    -		// Quick check to determine if target is callable, in the spec
    -		// this throws a TypeError, but we will just return undefined.
    -		if ( !jQuery.isFunction( fn ) ) {
    -			return undefined;
    -		}
    -
    -		// Simulated bind
    -		args = core_slice.call( arguments, 2 );
    -		proxy = function() {
    -			return fn.apply( context, args.concat( core_slice.call( arguments ) ) );
    -		};
    -
    -		// Set the guid of unique handler to the same of original handler, so it can be removed
    -		proxy.guid = fn.guid = fn.guid || jQuery.guid++;
    -
    -		return proxy;
    -	},
    -
    -	// Multifunctional method to get and set values of a collection
    -	// The value/s can optionally be executed if it's a function
    -	access: function( elems, fn, key, value, chainable, emptyGet, pass ) {
    -		var exec,
    -			bulk = key == null,
    -			i = 0,
    -			length = elems.length;
    -
    -		// Sets many values
    -		if ( key && typeof key === "object" ) {
    -			for ( i in key ) {
    -				jQuery.access( elems, fn, i, key[i], 1, emptyGet, value );
    -			}
    -			chainable = 1;
    -
    -		// Sets one value
    -		} else if ( value !== undefined ) {
    -			// Optionally, function values get executed if exec is true
    -			exec = pass === undefined && jQuery.isFunction( value );
    -
    -			if ( bulk ) {
    -				// Bulk operations only iterate when executing function values
    -				if ( exec ) {
    -					exec = fn;
    -					fn = function( elem, key, value ) {
    -						return exec.call( jQuery( elem ), value );
    -					};
    -
    -				// Otherwise they run against the entire set
    -				} else {
    -					fn.call( elems, value );
    -					fn = null;
    -				}
    -			}
    -
    -			if ( fn ) {
    -				for (; i < length; i++ ) {
    -					fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );
    -				}
    -			}
    -
    -			chainable = 1;
    -		}
    -
    -		return chainable ?
    -			elems :
    -
    -			// Gets
    -			bulk ?
    -				fn.call( elems ) :
    -				length ? fn( elems[0], key ) : emptyGet;
    -	},
    -
    -	now: function() {
    -		return ( new Date() ).getTime();
    -	}
    -});
    -
    -jQuery.ready.promise = function( obj ) {
    -	if ( !readyList ) {
    -
    -		readyList = jQuery.Deferred();
    -
    -		// Catch cases where $(document).ready() is called after the browser event has already occurred.
    -		// we once tried to use readyState "interactive" here, but it caused issues like the one
    -		// discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
    -		if ( document.readyState === "complete" ) {
    -			// Handle it asynchronously to allow scripts the opportunity to delay ready
    -			setTimeout( jQuery.ready, 1 );
    -
    -		// Standards-based browsers support DOMContentLoaded
    -		} else if ( document.addEventListener ) {
    -			// Use the handy event callback
    -			document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );
    -
    -			// A fallback to window.onload, that will always work
    -			window.addEventListener( "load", jQuery.ready, false );
    -
    -		// If IE event model is used
    -		} else {
    -			// Ensure firing before onload, maybe late but safe also for iframes
    -			document.attachEvent( "onreadystatechange", DOMContentLoaded );
    -
    -			// A fallback to window.onload, that will always work
    -			window.attachEvent( "onload", jQuery.ready );
    -
    -			// If IE and not a frame
    -			// continually check to see if the document is ready
    -			var top = false;
    -
    -			try {
    -				top = window.frameElement == null && document.documentElement;
    -			} catch(e) {}
    -
    -			if ( top && top.doScroll ) {
    -				(function doScrollCheck() {
    -					if ( !jQuery.isReady ) {
    -
    -						try {
    -							// Use the trick by Diego Perini
    -							// http://javascript.nwbox.com/IEContentLoaded/
    -							top.doScroll("left");
    -						} catch(e) {
    -							return setTimeout( doScrollCheck, 50 );
    -						}
    -
    -						// and execute any waiting functions
    -						jQuery.ready();
    -					}
    -				})();
    -			}
    -		}
    -	}
    -	return readyList.promise( obj );
    -};
    -
    -// Populate the class2type map
    -jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) {
    -	class2type[ "[object " + name + "]" ] = name.toLowerCase();
    -});
    -
    -// All jQuery objects should point back to these
    -rootjQuery = jQuery(document);
    -// String to Object options format cache
    -var optionsCache = {};
    -
    -// Convert String-formatted options into Object-formatted ones and store in cache
    -function createOptions( options ) {
    -	var object = optionsCache[ options ] = {};
    -	jQuery.each( options.split( core_rspace ), function( _, flag ) {
    -		object[ flag ] = true;
    -	});
    -	return object;
    -}
    -
    -/*
    - * Create a callback list using the following parameters:
    - *
    - *	options: an optional list of space-separated options that will change how
    - *			the callback list behaves or a more traditional option object
    - *
    - * By default a callback list will act like an event callback list and can be
    - * "fired" multiple times.
    - *
    - * Possible options:
    - *
    - *	once:			will ensure the callback list can only be fired once (like a Deferred)
    - *
    - *	memory:			will keep track of previous values and will call any callback added
    - *					after the list has been fired right away with the latest "memorized"
    - *					values (like a Deferred)
    - *
    - *	unique:			will ensure a callback can only be added once (no duplicate in the list)
    - *
    - *	stopOnFalse:	interrupt callings when a callback returns false
    - *
    - */
    -jQuery.Callbacks = function( options ) {
    -
    -	// Convert options from String-formatted to Object-formatted if needed
    -	// (we check in cache first)
    -	options = typeof options === "string" ?
    -		( optionsCache[ options ] || createOptions( options ) ) :
    -		jQuery.extend( {}, options );
    -
    -	var // Last fire value (for non-forgettable lists)
    -		memory,
    -		// Flag to know if list was already fired
    -		fired,
    -		// Flag to know if list is currently firing
    -		firing,
    -		// First callback to fire (used internally by add and fireWith)
    -		firingStart,
    -		// End of the loop when firing
    -		firingLength,
    -		// Index of currently firing callback (modified by remove if needed)
    -		firingIndex,
    -		// Actual callback list
    -		list = [],
    -		// Stack of fire calls for repeatable lists
    -		stack = !options.once && [],
    -		// Fire callbacks
    -		fire = function( data ) {
    -			memory = options.memory && data;
    -			fired = true;
    -			firingIndex = firingStart || 0;
    -			firingStart = 0;
    -			firingLength = list.length;
    -			firing = true;
    -			for ( ; list && firingIndex < firingLength; firingIndex++ ) {
    -				if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) {
    -					memory = false; // To prevent further calls using add
    -					break;
    -				}
    -			}
    -			firing = false;
    -			if ( list ) {
    -				if ( stack ) {
    -					if ( stack.length ) {
    -						fire( stack.shift() );
    -					}
    -				} else if ( memory ) {
    -					list = [];
    -				} else {
    -					self.disable();
    -				}
    -			}
    -		},
    -		// Actual Callbacks object
    -		self = {
    -			// Add a callback or a collection of callbacks to the list
    -			add: function() {
    -				if ( list ) {
    -					// First, we save the current length
    -					var start = list.length;
    -					(function add( args ) {
    -						jQuery.each( args, function( _, arg ) {
    -							var type = jQuery.type( arg );
    -							if ( type === "function" && ( !options.unique || !self.has( arg ) ) ) {
    -								list.push( arg );
    -							} else if ( arg && arg.length && type !== "string" ) {
    -								// Inspect recursively
    -								add( arg );
    -							}
    -						});
    -					})( arguments );
    -					// Do we need to add the callbacks to the
    -					// current firing batch?
    -					if ( firing ) {
    -						firingLength = list.length;
    -					// With memory, if we're not firing then
    -					// we should call right away
    -					} else if ( memory ) {
    -						firingStart = start;
    -						fire( memory );
    -					}
    -				}
    -				return this;
    -			},
    -			// Remove a callback from the list
    -			remove: function() {
    -				if ( list ) {
    -					jQuery.each( arguments, function( _, arg ) {
    -						var index;
    -						while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
    -							list.splice( index, 1 );
    -							// Handle firing indexes
    -							if ( firing ) {
    -								if ( index <= firingLength ) {
    -									firingLength--;
    -								}
    -								if ( index <= firingIndex ) {
    -									firingIndex--;
    -								}
    -							}
    -						}
    -					});
    -				}
    -				return this;
    -			},
    -			// Control if a given callback is in the list
    -			has: function( fn ) {
    -				return jQuery.inArray( fn, list ) > -1;
    -			},
    -			// Remove all callbacks from the list
    -			empty: function() {
    -				list = [];
    -				return this;
    -			},
    -			// Have the list do nothing anymore
    -			disable: function() {
    -				list = stack = memory = undefined;
    -				return this;
    -			},
    -			// Is it disabled?
    -			disabled: function() {
    -				return !list;
    -			},
    -			// Lock the list in its current state
    -			lock: function() {
    -				stack = undefined;
    -				if ( !memory ) {
    -					self.disable();
    -				}
    -				return this;
    -			},
    -			// Is it locked?
    -			locked: function() {
    -				return !stack;
    -			},
    -			// Call all callbacks with the given context and arguments
    -			fireWith: function( context, args ) {
    -				args = args || [];
    -				args = [ context, args.slice ? args.slice() : args ];
    -				if ( list && ( !fired || stack ) ) {
    -					if ( firing ) {
    -						stack.push( args );
    -					} else {
    -						fire( args );
    -					}
    -				}
    -				return this;
    -			},
    -			// Call all the callbacks with the given arguments
    -			fire: function() {
    -				self.fireWith( this, arguments );
    -				return this;
    -			},
    -			// To know if the callbacks have already been called at least once
    -			fired: function() {
    -				return !!fired;
    -			}
    -		};
    -
    -	return self;
    -};
    -jQuery.extend({
    -
    -	Deferred: function( func ) {
    -		var tuples = [
    -				// action, add listener, listener list, final state
    -				[ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ],
    -				[ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ],
    -				[ "notify", "progress", jQuery.Callbacks("memory") ]
    -			],
    -			state = "pending",
    -			promise = {
    -				state: function() {
    -					return state;
    -				},
    -				always: function() {
    -					deferred.done( arguments ).fail( arguments );
    -					return this;
    -				},
    -				then: function( /* fnDone, fnFail, fnProgress */ ) {
    -					var fns = arguments;
    -					return jQuery.Deferred(function( newDefer ) {
    -						jQuery.each( tuples, function( i, tuple ) {
    -							var action = tuple[ 0 ],
    -								fn = fns[ i ];
    -							// deferred[ done | fail | progress ] for forwarding actions to newDefer
    -							deferred[ tuple[1] ]( jQuery.isFunction( fn ) ?
    -								function() {
    -									var returned = fn.apply( this, arguments );
    -									if ( returned && jQuery.isFunction( returned.promise ) ) {
    -										returned.promise()
    -											.done( newDefer.resolve )
    -											.fail( newDefer.reject )
    -											.progress( newDefer.notify );
    -									} else {
    -										newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] );
    -									}
    -								} :
    -								newDefer[ action ]
    -							);
    -						});
    -						fns = null;
    -					}).promise();
    -				},
    -				// Get a promise for this deferred
    -				// If obj is provided, the promise aspect is added to the object
    -				promise: function( obj ) {
    -					return obj != null ? jQuery.extend( obj, promise ) : promise;
    -				}
    -			},
    -			deferred = {};
    -
    -		// Keep pipe for back-compat
    -		promise.pipe = promise.then;
    -
    -		// Add list-specific methods
    -		jQuery.each( tuples, function( i, tuple ) {
    -			var list = tuple[ 2 ],
    -				stateString = tuple[ 3 ];
    -
    -			// promise[ done | fail | progress ] = list.add
    -			promise[ tuple[1] ] = list.add;
    -
    -			// Handle state
    -			if ( stateString ) {
    -				list.add(function() {
    -					// state = [ resolved | rejected ]
    -					state = stateString;
    -
    -				// [ reject_list | resolve_list ].disable; progress_list.lock
    -				}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );
    -			}
    -
    -			// deferred[ resolve | reject | notify ] = list.fire
    -			deferred[ tuple[0] ] = list.fire;
    -			deferred[ tuple[0] + "With" ] = list.fireWith;
    -		});
    -
    -		// Make the deferred a promise
    -		promise.promise( deferred );
    -
    -		// Call given func if any
    -		if ( func ) {
    -			func.call( deferred, deferred );
    -		}
    -
    -		// All done!
    -		return deferred;
    -	},
    -
    -	// Deferred helper
    -	when: function( subordinate /* , ..., subordinateN */ ) {
    -		var i = 0,
    -			resolveValues = core_slice.call( arguments ),
    -			length = resolveValues.length,
    -
    -			// the count of uncompleted subordinates
    -			remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,
    -
    -			// the master Deferred. If resolveValues consist of only a single Deferred, just use that.
    -			deferred = remaining === 1 ? subordinate : jQuery.Deferred(),
    -
    -			// Update function for both resolve and progress values
    -			updateFunc = function( i, contexts, values ) {
    -				return function( value ) {
    -					contexts[ i ] = this;
    -					values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value;
    -					if( values === progressValues ) {
    -						deferred.notifyWith( contexts, values );
    -					} else if ( !( --remaining ) ) {
    -						deferred.resolveWith( contexts, values );
    -					}
    -				};
    -			},
    -
    -			progressValues, progressContexts, resolveContexts;
    -
    -		// add listeners to Deferred subordinates; treat others as resolved
    -		if ( length > 1 ) {
    -			progressValues = new Array( length );
    -			progressContexts = new Array( length );
    -			resolveContexts = new Array( length );
    -			for ( ; i < length; i++ ) {
    -				if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {
    -					resolveValues[ i ].promise()
    -						.done( updateFunc( i, resolveContexts, resolveValues ) )
    -						.fail( deferred.reject )
    -						.progress( updateFunc( i, progressContexts, progressValues ) );
    -				} else {
    -					--remaining;
    -				}
    -			}
    -		}
    -
    -		// if we're not waiting on anything, resolve the master
    -		if ( !remaining ) {
    -			deferred.resolveWith( resolveContexts, resolveValues );
    -		}
    -
    -		return deferred.promise();
    -	}
    -});
    -jQuery.support = (function() {
    -
    -	var support,
    -		all,
    -		a,
    -		select,
    -		opt,
    -		input,
    -		fragment,
    -		eventName,
    -		i,
    -		isSupported,
    -		clickFn,
    -		div = document.createElement("div");
    -
    -	// Preliminary tests
    -	div.setAttribute( "className", "t" );
    -	div.innerHTML = "  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>";
    -
    -	all = div.getElementsByTagName("*");
    -	a = div.getElementsByTagName("a")[ 0 ];
    -	a.style.cssText = "top:1px;float:left;opacity:.5";
    -
    -	// Can't get basic test support
    -	if ( !all || !all.length ) {
    -		return {};
    -	}
    -
    -	// First batch of supports tests
    -	select = document.createElement("select");
    -	opt = select.appendChild( document.createElement("option") );
    -	input = div.getElementsByTagName("input")[ 0 ];
    -
    -	support = {
    -		// IE strips leading whitespace when .innerHTML is used
    -		leadingWhitespace: ( div.firstChild.nodeType === 3 ),
    -
    -		// Make sure that tbody elements aren't automatically inserted
    -		// IE will insert them into empty tables
    -		tbody: !div.getElementsByTagName("tbody").length,
    -
    -		// Make sure that link elements get serialized correctly by innerHTML
    -		// This requires a wrapper element in IE
    -		htmlSerialize: !!div.getElementsByTagName("link").length,
    -
    -		// Get the style information from getAttribute
    -		// (IE uses .cssText instead)
    -		style: /top/.test( a.getAttribute("style") ),
    -
    -		// Make sure that URLs aren't manipulated
    -		// (IE normalizes it by default)
    -		hrefNormalized: ( a.getAttribute("href") === "/a" ),
    -
    -		// Make sure that element opacity exists
    -		// (IE uses filter instead)
    -		// Use a regex to work around a WebKit issue. See #5145
    -		opacity: /^0.5/.test( a.style.opacity ),
    -
    -		// Verify style float existence
    -		// (IE uses styleFloat instead of cssFloat)
    -		cssFloat: !!a.style.cssFloat,
    -
    -		// Make sure that if no value is specified for a checkbox
    -		// that it defaults to "on".
    -		// (WebKit defaults to "" instead)
    -		checkOn: ( input.value === "on" ),
    -
    -		// Make sure that a selected-by-default option has a working selected property.
    -		// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
    -		optSelected: opt.selected,
    -
    -		// Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7)
    -		getSetAttribute: div.className !== "t",
    -
    -		// Tests for enctype support on a form(#6743)
    -		enctype: !!document.createElement("form").enctype,
    -
    -		// Makes sure cloning an html5 element does not cause problems
    -		// Where outerHTML is undefined, this still works
    -		html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav></:nav>",
    -
    -		// jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode
    -		boxModel: ( document.compatMode === "CSS1Compat" ),
    -
    -		// Will be defined later
    -		submitBubbles: true,
    -		changeBubbles: true,
    -		focusinBubbles: false,
    -		deleteExpando: true,
    -		noCloneEvent: true,
    -		inlineBlockNeedsLayout: false,
    -		shrinkWrapBlocks: false,
    -		reliableMarginRight: true,
    -		boxSizingReliable: true,
    -		pixelPosition: false
    -	};
    -
    -	// Make sure checked status is properly cloned
    -	input.checked = true;
    -	support.noCloneChecked = input.cloneNode( true ).checked;
    -
    -	// Make sure that the options inside disabled selects aren't marked as disabled
    -	// (WebKit marks them as disabled)
    -	select.disabled = true;
    -	support.optDisabled = !opt.disabled;
    -
    -	// Test to see if it's possible to delete an expando from an element
    -	// Fails in Internet Explorer
    -	try {
    -		delete div.test;
    -	} catch( e ) {
    -		support.deleteExpando = false;
    -	}
    -
    -	if ( !div.addEventListener && div.attachEvent && div.fireEvent ) {
    -		div.attachEvent( "onclick", clickFn = function() {
    -			// Cloning a node shouldn't copy over any
    -			// bound event handlers (IE does this)
    -			support.noCloneEvent = false;
    -		});
    -		div.cloneNode( true ).fireEvent("onclick");
    -		div.detachEvent( "onclick", clickFn );
    -	}
    -
    -	// Check if a radio maintains its value
    -	// after being appended to the DOM
    -	input = document.createElement("input");
    -	input.value = "t";
    -	input.setAttribute( "type", "radio" );
    -	support.radioValue = input.value === "t";
    -
    -	input.setAttribute( "checked", "checked" );
    -
    -	// #11217 - WebKit loses check when the name is after the checked attribute
    -	input.setAttribute( "name", "t" );
    -
    -	div.appendChild( input );
    -	fragment = document.createDocumentFragment();
    -	fragment.appendChild( div.lastChild );
    -
    -	// WebKit doesn't clone checked state correctly in fragments
    -	support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked;
    -
    -	// Check if a disconnected checkbox will retain its checked
    -	// value of true after appended to the DOM (IE6/7)
    -	support.appendChecked = input.checked;
    -
    -	fragment.removeChild( input );
    -	fragment.appendChild( div );
    -
    -	// Technique from Juriy Zaytsev
    -	// http://perfectionkills.com/detecting-event-support-without-browser-sniffing/
    -	// We only care about the case where non-standard event systems
    -	// are used, namely in IE. Short-circuiting here helps us to
    -	// avoid an eval call (in setAttribute) which can cause CSP
    -	// to go haywire. See: https://developer.mozilla.org/en/Security/CSP
    -	if ( div.attachEvent ) {
    -		for ( i in {
    -			submit: true,
    -			change: true,
    -			focusin: true
    -		}) {
    -			eventName = "on" + i;
    -			isSupported = ( eventName in div );
    -			if ( !isSupported ) {
    -				div.setAttribute( eventName, "return;" );
    -				isSupported = ( typeof div[ eventName ] === "function" );
    -			}
    -			support[ i + "Bubbles" ] = isSupported;
    -		}
    -	}
    -
    -	// Run tests that need a body at doc ready
    -	jQuery(function() {
    -		var container, div, tds, marginDiv,
    -			divReset = "padding:0;margin:0;border:0;display:block;overflow:hidden;",
    -			body = document.getElementsByTagName("body")[0];
    -
    -		if ( !body ) {
    -			// Return for frameset docs that don't have a body
    -			return;
    -		}
    -
    -		container = document.createElement("div");
    -		container.style.cssText = "visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px";
    -		body.insertBefore( container, body.firstChild );
    -
    -		// Construct the test element
    -		div = document.createElement("div");
    -		container.appendChild( div );
    -
    -		// Check if table cells still have offsetWidth/Height when they are set
    -		// to display:none and there are still other visible table cells in a
    -		// table row; if so, offsetWidth/Height are not reliable for use when
    -		// determining if an element has been hidden directly using
    -		// display:none (it is still safe to use offsets if a parent element is
    -		// hidden; don safety goggles and see bug #4512 for more information).
    -		// (only IE 8 fails this test)
    -		div.innerHTML = "<table><tr><td></td><td>t</td></tr></table>";
    -		tds = div.getElementsByTagName("td");
    -		tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none";
    -		isSupported = ( tds[ 0 ].offsetHeight === 0 );
    -
    -		tds[ 0 ].style.display = "";
    -		tds[ 1 ].style.display = "none";
    -
    -		// Check if empty table cells still have offsetWidth/Height
    -		// (IE <= 8 fail this test)
    -		support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 );
    -
    -		// Check box-sizing and margin behavior
    -		div.innerHTML = "";
    -		div.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%;";
    -		support.boxSizing = ( div.offsetWidth === 4 );
    -		support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 );
    -
    -		// NOTE: To any future maintainer, we've window.getComputedStyle
    -		// because jsdom on node.js will break without it.
    -		if ( window.getComputedStyle ) {
    -			support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
    -			support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";
    -
    -			// Check if div with explicit width and no margin-right incorrectly
    -			// gets computed margin-right based on width of container. For more
    -			// info see bug #3333
    -			// Fails in WebKit before Feb 2011 nightlies
    -			// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
    -			marginDiv = document.createElement("div");
    -			marginDiv.style.cssText = div.style.cssText = divReset;
    -			marginDiv.style.marginRight = marginDiv.style.width = "0";
    -			div.style.width = "1px";
    -			div.appendChild( marginDiv );
    -			support.reliableMarginRight =
    -				!parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight );
    -		}
    -
    -		if ( typeof div.style.zoom !== "undefined" ) {
    -			// Check if natively block-level elements act like inline-block
    -			// elements when setting their display to 'inline' and giving
    -			// them layout
    -			// (IE < 8 does this)
    -			div.innerHTML = "";
    -			div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1";
    -			support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 );
    -
    -			// Check if elements with layout shrink-wrap their children
    -			// (IE 6 does this)
    -			div.style.display = "block";
    -			div.style.overflow = "visible";
    -			div.innerHTML = "<div></div>";
    -			div.firstChild.style.width = "5px";
    -			support.shrinkWrapBlocks = ( div.offsetWidth !== 3 );
    -
    -			container.style.zoom = 1;
    -		}
    -
    -		// Null elements to avoid leaks in IE
    -		body.removeChild( container );
    -		container = div = tds = marginDiv = null;
    -	});
    -
    -	// Null elements to avoid leaks in IE
    -	fragment.removeChild( div );
    -	all = a = select = opt = input = fragment = div = null;
    -
    -	return support;
    -})();
    -var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/,
    -	rmultiDash = /([A-Z])/g;
    -
    -jQuery.extend({
    -	cache: {},
    -
    -	deletedIds: [],
    -
    -	// Remove at next major release (1.9/2.0)
    -	uuid: 0,
    -
    -	// Unique for each copy of jQuery on the page
    -	// Non-digits removed to match rinlinejQuery
    -	expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ),
    -
    -	// The following elements throw uncatchable exceptions if you
    -	// attempt to add expando properties to them.
    -	noData: {
    -		"embed": true,
    -		// Ban all objects except for Flash (which handle expandos)
    -		"object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",
    -		"applet": true
    -	},
    -
    -	hasData: function( elem ) {
    -		elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ];
    -		return !!elem && !isEmptyDataObject( elem );
    -	},
    -
    -	data: function( elem, name, data, pvt /* Internal Use Only */ ) {
    -		if ( !jQuery.acceptData( elem ) ) {
    -			return;
    -		}
    -
    -		var thisCache, ret,
    -			internalKey = jQuery.expando,
    -			getByName = typeof name === "string",
    -
    -			// We have to handle DOM nodes and JS objects differently because IE6-7
    -			// can't GC object references properly across the DOM-JS boundary
    -			isNode = elem.nodeType,
    -
    -			// Only DOM nodes need the global jQuery cache; JS object data is
    -			// attached directly to the object so GC can occur automatically
    -			cache = isNode ? jQuery.cache : elem,
    -
    -			// Only defining an ID for JS objects if its cache already exists allows
    -			// the code to shortcut on the same path as a DOM node with no cache
    -			id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey;
    -
    -		// Avoid doing any more work than we need to when trying to get data on an
    -		// object that has no data at all
    -		if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) {
    -			return;
    -		}
    -
    -		if ( !id ) {
    -			// Only DOM nodes need a new unique ID for each element since their data
    -			// ends up in the global cache
    -			if ( isNode ) {
    -				elem[ internalKey ] = id = jQuery.deletedIds.pop() || jQuery.guid++;
    -			} else {
    -				id = internalKey;
    -			}
    -		}
    -
    -		if ( !cache[ id ] ) {
    -			cache[ id ] = {};
    -
    -			// Avoids exposing jQuery metadata on plain JS objects when the object
    -			// is serialized using JSON.stringify
    -			if ( !isNode ) {
    -				cache[ id ].toJSON = jQuery.noop;
    -			}
    -		}
    -
    -		// An object can be passed to jQuery.data instead of a key/value pair; this gets
    -		// shallow copied over onto the existing cache
    -		if ( typeof name === "object" || typeof name === "function" ) {
    -			if ( pvt ) {
    -				cache[ id ] = jQuery.extend( cache[ id ], name );
    -			} else {
    -				cache[ id ].data = jQuery.extend( cache[ id ].data, name );
    -			}
    -		}
    -
    -		thisCache = cache[ id ];
    -
    -		// jQuery data() is stored in a separate object inside the object's internal data
    -		// cache in order to avoid key collisions between internal data and user-defined
    -		// data.
    -		if ( !pvt ) {
    -			if ( !thisCache.data ) {
    -				thisCache.data = {};
    -			}
    -
    -			thisCache = thisCache.data;
    -		}
    -
    -		if ( data !== undefined ) {
    -			thisCache[ jQuery.camelCase( name ) ] = data;
    -		}
    -
    -		// Check for both converted-to-camel and non-converted data property names
    -		// If a data property was specified
    -		if ( getByName ) {
    -
    -			// First Try to find as-is property data
    -			ret = thisCache[ name ];
    -
    -			// Test for null|undefined property data
    -			if ( ret == null ) {
    -
    -				// Try to find the camelCased property
    -				ret = thisCache[ jQuery.camelCase( name ) ];
    -			}
    -		} else {
    -			ret = thisCache;
    -		}
    -
    -		return ret;
    -	},
    -
    -	removeData: function( elem, name, pvt /* Internal Use Only */ ) {
    -		if ( !jQuery.acceptData( elem ) ) {
    -			return;
    -		}
    -
    -		var thisCache, i, l,
    -
    -			isNode = elem.nodeType,
    -
    -			// See jQuery.data for more information
    -			cache = isNode ? jQuery.cache : elem,
    -			id = isNode ? elem[ jQuery.expando ] : jQuery.expando;
    -
    -		// If there is already no cache entry for this object, there is no
    -		// purpose in continuing
    -		if ( !cache[ id ] ) {
    -			return;
    -		}
    -
    -		if ( name ) {
    -
    -			thisCache = pvt ? cache[ id ] : cache[ id ].data;
    -
    -			if ( thisCache ) {
    -
    -				// Support array or space separated string names for data keys
    -				if ( !jQuery.isArray( name ) ) {
    -
    -					// try the string as a key before any manipulation
    -					if ( name in thisCache ) {
    -						name = [ name ];
    -					} else {
    -
    -						// split the camel cased version by spaces unless a key with the spaces exists
    -						name = jQuery.camelCase( name );
    -						if ( name in thisCache ) {
    -							name = [ name ];
    -						} else {
    -							name = name.split(" ");
    -						}
    -					}
    -				}
    -
    -				for ( i = 0, l = name.length; i < l; i++ ) {
    -					delete thisCache[ name[i] ];
    -				}
    -
    -				// If there is no data left in the cache, we want to continue
    -				// and let the cache object itself get destroyed
    -				if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) {
    -					return;
    -				}
    -			}
    -		}
    -
    -		// See jQuery.data for more information
    -		if ( !pvt ) {
    -			delete cache[ id ].data;
    -
    -			// Don't destroy the parent cache unless the internal data object
    -			// had been the only thing left in it
    -			if ( !isEmptyDataObject( cache[ id ] ) ) {
    -				return;
    -			}
    -		}
    -
    -		// Destroy the cache
    -		if ( isNode ) {
    -			jQuery.cleanData( [ elem ], true );
    -
    -		// Use delete when supported for expandos or `cache` is not a window per isWindow (#10080)
    -		} else if ( jQuery.support.deleteExpando || cache != cache.window ) {
    -			delete cache[ id ];
    -
    -		// When all else fails, null
    -		} else {
    -			cache[ id ] = null;
    -		}
    -	},
    -
    -	// For internal use only.
    -	_data: function( elem, name, data ) {
    -		return jQuery.data( elem, name, data, true );
    -	},
    -
    -	// A method for determining if a DOM node can handle the data expando
    -	acceptData: function( elem ) {
    -		var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];
    -
    -		// nodes accept data unless otherwise specified; rejection can be conditional
    -		return !noData || noData !== true && elem.getAttribute("classid") === noData;
    -	}
    -});
    -
    -jQuery.fn.extend({
    -	data: function( key, value ) {
    -		var parts, part, attr, name, l,
    -			elem = this[0],
    -			i = 0,
    -			data = null;
    -
    -		// Gets all values
    -		if ( key === undefined ) {
    -			if ( this.length ) {
    -				data = jQuery.data( elem );
    -
    -				if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) {
    -					attr = elem.attributes;
    -					for ( l = attr.length; i < l; i++ ) {
    -						name = attr[i].name;
    -
    -						if ( !name.indexOf( "data-" ) ) {
    -							name = jQuery.camelCase( name.substring(5) );
    -
    -							dataAttr( elem, name, data[ name ] );
    -						}
    -					}
    -					jQuery._data( elem, "parsedAttrs", true );
    -				}
    -			}
    -
    -			return data;
    -		}
    -
    -		// Sets multiple values
    -		if ( typeof key === "object" ) {
    -			return this.each(function() {
    -				jQuery.data( this, key );
    -			});
    -		}
    -
    -		parts = key.split( ".", 2 );
    -		parts[1] = parts[1] ? "." + parts[1] : "";
    -		part = parts[1] + "!";
    -
    -		return jQuery.access( this, function( value ) {
    -
    -			if ( value === undefined ) {
    -				data = this.triggerHandler( "getData" + part, [ parts[0] ] );
    -
    -				// Try to fetch any internally stored data first
    -				if ( data === undefined && elem ) {
    -					data = jQuery.data( elem, key );
    -					data = dataAttr( elem, key, data );
    -				}
    -
    -				return data === undefined && parts[1] ?
    -					this.data( parts[0] ) :
    -					data;
    -			}
    -
    -			parts[1] = value;
    -			this.each(function() {
    -				var self = jQuery( this );
    -
    -				self.triggerHandler( "setData" + part, parts );
    -				jQuery.data( this, key, value );
    -				self.triggerHandler( "changeData" + part, parts );
    -			});
    -		}, null, value, arguments.length > 1, null, false );
    -	},
    -
    -	removeData: function( key ) {
    -		return this.each(function() {
    -			jQuery.removeData( this, key );
    -		});
    -	}
    -});
    -
    -function dataAttr( elem, key, data ) {
    -	// If nothing was found internally, try to fetch any
    -	// data from the HTML5 data-* attribute
    -	if ( data === undefined && elem.nodeType === 1 ) {
    -
    -		var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase();
    -
    -		data = elem.getAttribute( name );
    -
    -		if ( typeof data === "string" ) {
    -			try {
    -				data = data === "true" ? true :
    -				data === "false" ? false :
    -				data === "null" ? null :
    -				// Only convert to a number if it doesn't change the string
    -				+data + "" === data ? +data :
    -				rbrace.test( data ) ? jQuery.parseJSON( data ) :
    -					data;
    -			} catch( e ) {}
    -
    -			// Make sure we set the data so it isn't changed later
    -			jQuery.data( elem, key, data );
    -
    -		} else {
    -			data = undefined;
    -		}
    -	}
    -
    -	return data;
    -}
    -
    -// checks a cache object for emptiness
    -function isEmptyDataObject( obj ) {
    -	var name;
    -	for ( name in obj ) {
    -
    -		// if the public data object is empty, the private is still empty
    -		if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) {
    -			continue;
    -		}
    -		if ( name !== "toJSON" ) {
    -			return false;
    -		}
    -	}
    -
    -	return true;
    -}
    -jQuery.extend({
    -	queue: function( elem, type, data ) {
    -		var queue;
    -
    -		if ( elem ) {
    -			type = ( type || "fx" ) + "queue";
    -			queue = jQuery._data( elem, type );
    -
    -			// Speed up dequeue by getting out quickly if this is just a lookup
    -			if ( data ) {
    -				if ( !queue || jQuery.isArray(data) ) {
    -					queue = jQuery._data( elem, type, jQuery.makeArray(data) );
    -				} else {
    -					queue.push( data );
    -				}
    -			}
    -			return queue || [];
    -		}
    -	},
    -
    -	dequeue: function( elem, type ) {
    -		type = type || "fx";
    -
    -		var queue = jQuery.queue( elem, type ),
    -			startLength = queue.length,
    -			fn = queue.shift(),
    -			hooks = jQuery._queueHooks( elem, type ),
    -			next = function() {
    -				jQuery.dequeue( elem, type );
    -			};
    -
    -		// If the fx queue is dequeued, always remove the progress sentinel
    -		if ( fn === "inprogress" ) {
    -			fn = queue.shift();
    -			startLength--;
    -		}
    -
    -		if ( fn ) {
    -
    -			// Add a progress sentinel to prevent the fx queue from being
    -			// automatically dequeued
    -			if ( type === "fx" ) {
    -				queue.unshift( "inprogress" );
    -			}
    -
    -			// clear up the last queue stop function
    -			delete hooks.stop;
    -			fn.call( elem, next, hooks );
    -		}
    -
    -		if ( !startLength && hooks ) {
    -			hooks.empty.fire();
    -		}
    -	},
    -
    -	// not intended for public consumption - generates a queueHooks object, or returns the current one
    -	_queueHooks: function( elem, type ) {
    -		var key = type + "queueHooks";
    -		return jQuery._data( elem, key ) || jQuery._data( elem, key, {
    -			empty: jQuery.Callbacks("once memory").add(function() {
    -				jQuery.removeData( elem, type + "queue", true );
    -				jQuery.removeData( elem, key, true );
    -			})
    -		});
    -	}
    -});
    -
    -jQuery.fn.extend({
    -	queue: function( type, data ) {
    -		var setter = 2;
    -
    -		if ( typeof type !== "string" ) {
    -			data = type;
    -			type = "fx";
    -			setter--;
    -		}
    -
    -		if ( arguments.length < setter ) {
    -			return jQuery.queue( this[0], type );
    -		}
    -
    -		return data === undefined ?
    -			this :
    -			this.each(function() {
    -				var queue = jQuery.queue( this, type, data );
    -
    -				// ensure a hooks for this queue
    -				jQuery._queueHooks( this, type );
    -
    -				if ( type === "fx" && queue[0] !== "inprogress" ) {
    -					jQuery.dequeue( this, type );
    -				}
    -			});
    -	},
    -	dequeue: function( type ) {
    -		return this.each(function() {
    -			jQuery.dequeue( this, type );
    -		});
    -	},
    -	// Based off of the plugin by Clint Helfers, with permission.
    -	// http://blindsignals.com/index.php/2009/07/jquery-delay/
    -	delay: function( time, type ) {
    -		time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
    -		type = type || "fx";
    -
    -		return this.queue( type, function( next, hooks ) {
    -			var timeout = setTimeout( next, time );
    -			hooks.stop = function() {
    -				clearTimeout( timeout );
    -			};
    -		});
    -	},
    -	clearQueue: function( type ) {
    -		return this.queue( type || "fx", [] );
    -	},
    -	// Get a promise resolved when queues of a certain type
    -	// are emptied (fx is the type by default)
    -	promise: function( type, obj ) {
    -		var tmp,
    -			count = 1,
    -			defer = jQuery.Deferred(),
    -			elements = this,
    -			i = this.length,
    -			resolve = function() {
    -				if ( !( --count ) ) {
    -					defer.resolveWith( elements, [ elements ] );
    -				}
    -			};
    -
    -		if ( typeof type !== "string" ) {
    -			obj = type;
    -			type = undefined;
    -		}
    -		type = type || "fx";
    -
    -		while( i-- ) {
    -			tmp = jQuery._data( elements[ i ], type + "queueHooks" );
    -			if ( tmp && tmp.empty ) {
    -				count++;
    -				tmp.empty.add( resolve );
    -			}
    -		}
    -		resolve();
    -		return defer.promise( obj );
    -	}
    -});
    -var nodeHook, boolHook, fixSpecified,
    -	rclass = /[\t\r\n]/g,
    -	rreturn = /\r/g,
    -	rtype = /^(?:button|input)$/i,
    -	rfocusable = /^(?:button|input|object|select|textarea)$/i,
    -	rclickable = /^a(?:rea|)$/i,
    -	rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
    -	getSetAttribute = jQuery.support.getSetAttribute;
    -
    -jQuery.fn.extend({
    -	attr: function( name, value ) {
    -		return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );
    -	},
    -
    -	removeAttr: function( name ) {
    -		return this.each(function() {
    -			jQuery.removeAttr( this, name );
    -		});
    -	},
    -
    -	prop: function( name, value ) {
    -		return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );
    -	},
    -
    -	removeProp: function( name ) {
    -		name = jQuery.propFix[ name ] || name;
    -		return this.each(function() {
    -			// try/catch handles cases where IE balks (such as removing a property on window)
    -			try {
    -				this[ name ] = undefined;
    -				delete this[ name ];
    -			} catch( e ) {}
    -		});
    -	},
    -
    -	addClass: function( value ) {
    -		var classNames, i, l, elem,
    -			setClass, c, cl;
    -
    -		if ( jQuery.isFunction( value ) ) {
    -			return this.each(function( j ) {
    -				jQuery( this ).addClass( value.call(this, j, this.className) );
    -			});
    -		}
    -
    -		if ( value && typeof value === "string" ) {
    -			classNames = value.split( core_rspace );
    -
    -			for ( i = 0, l = this.length; i < l; i++ ) {
    -				elem = this[ i ];
    -
    -				if ( elem.nodeType === 1 ) {
    -					if ( !elem.className && classNames.length === 1 ) {
    -						elem.className = value;
    -
    -					} else {
    -						setClass = " " + elem.className + " ";
    -
    -						for ( c = 0, cl = classNames.length; c < cl; c++ ) {
    -							if ( setClass.indexOf( " " + classNames[ c ] + " " ) < 0 ) {
    -								setClass += classNames[ c ] + " ";
    -							}
    -						}
    -						elem.className = jQuery.trim( setClass );
    -					}
    -				}
    -			}
    -		}
    -
    -		return this;
    -	},
    -
    -	removeClass: function( value ) {
    -		var removes, className, elem, c, cl, i, l;
    -
    -		if ( jQuery.isFunction( value ) ) {
    -			return this.each(function( j ) {
    -				jQuery( this ).removeClass( value.call(this, j, this.className) );
    -			});
    -		}
    -		if ( (value && typeof value === "string") || value === undefined ) {
    -			removes = ( value || "" ).split( core_rspace );
    -
    -			for ( i = 0, l = this.length; i < l; i++ ) {
    -				elem = this[ i ];
    -				if ( elem.nodeType === 1 && elem.className ) {
    -
    -					className = (" " + elem.className + " ").replace( rclass, " " );
    -
    -					// loop over each item in the removal list
    -					for ( c = 0, cl = removes.length; c < cl; c++ ) {
    -						// Remove until there is nothing to remove,
    -						while ( className.indexOf(" " + removes[ c ] + " ") >= 0 ) {
    -							className = className.replace( " " + removes[ c ] + " " , " " );
    -						}
    -					}
    -					elem.className = value ? jQuery.trim( className ) : "";
    -				}
    -			}
    -		}
    -
    -		return this;
    -	},
    -
    -	toggleClass: function( value, stateVal ) {
    -		var type = typeof value,
    -			isBool = typeof stateVal === "boolean";
    -
    -		if ( jQuery.isFunction( value ) ) {
    -			return this.each(function( i ) {
    -				jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
    -			});
    -		}
    -
    -		return this.each(function() {
    -			if ( type === "string" ) {
    -				// toggle individual class names
    -				var className,
    -					i = 0,
    -					self = jQuery( this ),
    -					state = stateVal,
    -					classNames = value.split( core_rspace );
    -
    -				while ( (className = classNames[ i++ ]) ) {
    -					// check each className given, space separated list
    -					state = isBool ? state : !self.hasClass( className );
    -					self[ state ? "addClass" : "removeClass" ]( className );
    -				}
    -
    -			} else if ( type === "undefined" || type === "boolean" ) {
    -				if ( this.className ) {
    -					// store className if set
    -					jQuery._data( this, "__className__", this.className );
    -				}
    -
    -				// toggle whole className
    -				this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
    -			}
    -		});
    -	},
    -
    -	hasClass: function( selector ) {
    -		var className = " " + selector + " ",
    -			i = 0,
    -			l = this.length;
    -		for ( ; i < l; i++ ) {
    -			if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
    -				return true;
    -			}
    -		}
    -
    -		return false;
    -	},
    -
    -	val: function( value ) {
    -		var hooks, ret, isFunction,
    -			elem = this[0];
    -
    -		if ( !arguments.length ) {
    -			if ( elem ) {
    -				hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
    -
    -				if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
    -					return ret;
    -				}
    -
    -				ret = elem.value;
    -
    -				return typeof ret === "string" ?
    -					// handle most common string cases
    -					ret.replace(rreturn, "") :
    -					// handle cases where value is null/undef or number
    -					ret == null ? "" : ret;
    -			}
    -
    -			return;
    -		}
    -
    -		isFunction = jQuery.isFunction( value );
    -
    -		return this.each(function( i ) {
    -			var val,
    -				self = jQuery(this);
    -
    -			if ( this.nodeType !== 1 ) {
    -				return;
    -			}
    -
    -			if ( isFunction ) {
    -				val = value.call( this, i, self.val() );
    -			} else {
    -				val = value;
    -			}
    -
    -			// Treat null/undefined as ""; convert numbers to string
    -			if ( val == null ) {
    -				val = "";
    -			} else if ( typeof val === "number" ) {
    -				val += "";
    -			} else if ( jQuery.isArray( val ) ) {
    -				val = jQuery.map(val, function ( value ) {
    -					return value == null ? "" : value + "";
    -				});
    -			}
    -
    -			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
    -
    -			// If set returns undefined, fall back to normal setting
    -			if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
    -				this.value = val;
    -			}
    -		});
    -	}
    -});
    -
    -jQuery.extend({
    -	valHooks: {
    -		option: {
    -			get: function( elem ) {
    -				// attributes.value is undefined in Blackberry 4.7 but
    -				// uses .value. See #6932
    -				var val = elem.attributes.value;
    -				return !val || val.specified ? elem.value : elem.text;
    -			}
    -		},
    -		select: {
    -			get: function( elem ) {
    -				var value, i, max, option,
    -					index = elem.selectedIndex,
    -					values = [],
    -					options = elem.options,
    -					one = elem.type === "select-one";
    -
    -				// Nothing was selected
    -				if ( index < 0 ) {
    -					return null;
    -				}
    -
    -				// Loop through all the selected options
    -				i = one ? index : 0;
    -				max = one ? index + 1 : options.length;
    -				for ( ; i < max; i++ ) {
    -					option = options[ i ];
    -
    -					// Don't return options that are disabled or in a disabled optgroup
    -					if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) &&
    -							(!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) {
    -
    -						// Get the specific value for the option
    -						value = jQuery( option ).val();
    -
    -						// We don't need an array for one selects
    -						if ( one ) {
    -							return value;
    -						}
    -
    -						// Multi-Selects return an array
    -						values.push( value );
    -					}
    -				}
    -
    -				// Fixes Bug #2551 -- select.val() broken in IE after form.reset()
    -				if ( one && !values.length && options.length ) {
    -					return jQuery( options[ index ] ).val();
    -				}
    -
    -				return values;
    -			},
    -
    -			set: function( elem, value ) {
    -				var values = jQuery.makeArray( value );
    -
    -				jQuery(elem).find("option").each(function() {
    -					this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;
    -				});
    -
    -				if ( !values.length ) {
    -					elem.selectedIndex = -1;
    -				}
    -				return values;
    -			}
    -		}
    -	},
    -
    -	// Unused in 1.8, left in so attrFn-stabbers won't die; remove in 1.9
    -	attrFn: {},
    -
    -	attr: function( elem, name, value, pass ) {
    -		var ret, hooks, notxml,
    -			nType = elem.nodeType;
    -
    -		// don't get/set attributes on text, comment and attribute nodes
    -		if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
    -			return;
    -		}
    -
    -		if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) {
    -			return jQuery( elem )[ name ]( value );
    -		}
    -
    -		// Fallback to prop when attributes are not supported
    -		if ( typeof elem.getAttribute === "undefined" ) {
    -			return jQuery.prop( elem, name, value );
    -		}
    -
    -		notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
    -
    -		// All attributes are lowercase
    -		// Grab necessary hook if one is defined
    -		if ( notxml ) {
    -			name = name.toLowerCase();
    -			hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );
    -		}
    -
    -		if ( value !== undefined ) {
    -
    -			if ( value === null ) {
    -				jQuery.removeAttr( elem, name );
    -				return;
    -
    -			} else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) {
    -				return ret;
    -
    -			} else {
    -				elem.setAttribute( name, value + "" );
    -				return value;
    -			}
    -
    -		} else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) {
    -			return ret;
    -
    -		} else {
    -
    -			ret = elem.getAttribute( name );
    -
    -			// Non-existent attributes return null, we normalize to undefined
    -			return ret === null ?
    -				undefined :
    -				ret;
    -		}
    -	},
    -
    -	removeAttr: function( elem, value ) {
    -		var propName, attrNames, name, isBool,
    -			i = 0;
    -
    -		if ( value && elem.nodeType === 1 ) {
    -
    -			attrNames = value.split( core_rspace );
    -
    -			for ( ; i < attrNames.length; i++ ) {
    -				name = attrNames[ i ];
    -
    -				if ( name ) {
    -					propName = jQuery.propFix[ name ] || name;
    -					isBool = rboolean.test( name );
    -
    -					// See #9699 for explanation of this approach (setting first, then removal)
    -					// Do not do this for boolean attributes (see #10870)
    -					if ( !isBool ) {
    -						jQuery.attr( elem, name, "" );
    -					}
    -					elem.removeAttribute( getSetAttribute ? name : propName );
    -
    -					// Set corresponding property to false for boolean attributes
    -					if ( isBool && propName in elem ) {
    -						elem[ propName ] = false;
    -					}
    -				}
    -			}
    -		}
    -	},
    -
    -	attrHooks: {
    -		type: {
    -			set: function( elem, value ) {
    -				// We can't allow the type property to be changed (since it causes problems in IE)
    -				if ( rtype.test( elem.nodeName ) && elem.parentNode ) {
    -					jQuery.error( "type property can't be changed" );
    -				} else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
    -					// Setting the type on a radio button after the value resets the value in IE6-9
    -					// Reset value to it's default in case type is set after value
    -					// This is for element creation
    -					var val = elem.value;
    -					elem.setAttribute( "type", value );
    -					if ( val ) {
    -						elem.value = val;
    -					}
    -					return value;
    -				}
    -			}
    -		},
    -		// Use the value property for back compat
    -		// Use the nodeHook for button elements in IE6/7 (#1954)
    -		value: {
    -			get: function( elem, name ) {
    -				if ( nodeHook && jQuery.nodeName( elem, "button" ) ) {
    -					return nodeHook.get( elem, name );
    -				}
    -				return name in elem ?
    -					elem.value :
    -					null;
    -			},
    -			set: function( elem, value, name ) {
    -				if ( nodeHook && jQuery.nodeName( elem, "button" ) ) {
    -					return nodeHook.set( elem, value, name );
    -				}
    -				// Does not return so that setAttribute is also used
    -				elem.value = value;
    -			}
    -		}
    -	},
    -
    -	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( elem, name, value ) {
    -		var ret, hooks, notxml,
    -			nType = elem.nodeType;
    -
    -		// don't get/set properties on text, comment and attribute nodes
    -		if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
    -			return;
    -		}
    -
    -		notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
    -
    -		if ( notxml ) {
    -			// Fix name and attach hooks
    -			name = jQuery.propFix[ name ] || name;
    -			hooks = jQuery.propHooks[ name ];
    -		}
    -
    -		if ( value !== undefined ) {
    -			if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
    -				return ret;
    -
    -			} else {
    -				return ( elem[ name ] = value );
    -			}
    -
    -		} else {
    -			if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
    -				return ret;
    -
    -			} else {
    -				return elem[ name ];
    -			}
    -		}
    -	},
    -
    -	propHooks: {
    -		tabIndex: {
    -			get: function( elem ) {
    -				// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
    -				// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
    -				var attributeNode = elem.getAttributeNode("tabindex");
    -
    -				return attributeNode && attributeNode.specified ?
    -					parseInt( attributeNode.value, 10 ) :
    -					rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
    -						0 :
    -						undefined;
    -			}
    -		}
    -	}
    -});
    -
    -// Hook for boolean attributes
    -boolHook = {
    -	get: function( elem, name ) {
    -		// Align boolean attributes with corresponding properties
    -		// Fall back to attribute presence where some booleans are not supported
    -		var attrNode,
    -			property = jQuery.prop( elem, name );
    -		return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
    -			name.toLowerCase() :
    -			undefined;
    -	},
    -	set: function( elem, value, name ) {
    -		var propName;
    -		if ( value === false ) {
    -			// Remove boolean attributes when set to false
    -			jQuery.removeAttr( elem, name );
    -		} else {
    -			// value is true since we know at this point it's type boolean and not false
    -			// Set boolean attributes to the same name and set the DOM property
    -			propName = jQuery.propFix[ name ] || name;
    -			if ( propName in elem ) {
    -				// Only set the IDL specifically if it already exists on the element
    -				elem[ propName ] = true;
    -			}
    -
    -			elem.setAttribute( name, name.toLowerCase() );
    -		}
    -		return name;
    -	}
    -};
    -
    -// IE6/7 do not support getting/setting some attributes with get/setAttribute
    -if ( !getSetAttribute ) {
    -
    -	fixSpecified = {
    -		name: true,
    -		id: true,
    -		coords: true
    -	};
    -
    -	// Use this for any attribute in IE6/7
    -	// This fixes almost every IE6/7 issue
    -	nodeHook = jQuery.valHooks.button = {
    -		get: function( elem, name ) {
    -			var ret;
    -			ret = elem.getAttributeNode( name );
    -			return ret && ( fixSpecified[ name ] ? ret.value !== "" : ret.specified ) ?
    -				ret.value :
    -				undefined;
    -		},
    -		set: function( elem, value, name ) {
    -			// Set the existing or create a new attribute node
    -			var ret = elem.getAttributeNode( name );
    -			if ( !ret ) {
    -				ret = document.createAttribute( name );
    -				elem.setAttributeNode( ret );
    -			}
    -			return ( ret.value = value + "" );
    -		}
    -	};
    -
    -	// Set width and height to auto instead of 0 on empty string( Bug #8150 )
    -	// This is for removals
    -	jQuery.each([ "width", "height" ], function( i, name ) {
    -		jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
    -			set: function( elem, value ) {
    -				if ( value === "" ) {
    -					elem.setAttribute( name, "auto" );
    -					return value;
    -				}
    -			}
    -		});
    -	});
    -
    -	// Set contenteditable to false on removals(#10429)
    -	// Setting to empty string throws an error as an invalid value
    -	jQuery.attrHooks.contenteditable = {
    -		get: nodeHook.get,
    -		set: function( elem, value, name ) {
    -			if ( value === "" ) {
    -				value = "false";
    -			}
    -			nodeHook.set( elem, value, name );
    -		}
    -	};
    -}
    -
    -
    -// Some attributes require a special call on IE
    -if ( !jQuery.support.hrefNormalized ) {
    -	jQuery.each([ "href", "src", "width", "height" ], function( i, name ) {
    -		jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
    -			get: function( elem ) {
    -				var ret = elem.getAttribute( name, 2 );
    -				return ret === null ? undefined : ret;
    -			}
    -		});
    -	});
    -}
    -
    -if ( !jQuery.support.style ) {
    -	jQuery.attrHooks.style = {
    -		get: function( elem ) {
    -			// Return undefined in the case of empty string
    -			// Normalize to lowercase since IE uppercases css property names
    -			return elem.style.cssText.toLowerCase() || undefined;
    -		},
    -		set: function( elem, value ) {
    -			return ( elem.style.cssText = value + "" );
    -		}
    -	};
    -}
    -
    -// Safari mis-reports the default selected property of an option
    -// Accessing the parent's selectedIndex property fixes it
    -if ( !jQuery.support.optSelected ) {
    -	jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {
    -		get: function( elem ) {
    -			var parent = elem.parentNode;
    -
    -			if ( parent ) {
    -				parent.selectedIndex;
    -
    -				// Make sure that it also works with optgroups, see #5701
    -				if ( parent.parentNode ) {
    -					parent.parentNode.selectedIndex;
    -				}
    -			}
    -			return null;
    -		}
    -	});
    -}
    -
    -// IE6/7 call enctype encoding
    -if ( !jQuery.support.enctype ) {
    -	jQuery.propFix.enctype = "encoding";
    -}
    -
    -// Radios and checkboxes getter/setter
    -if ( !jQuery.support.checkOn ) {
    -	jQuery.each([ "radio", "checkbox" ], function() {
    -		jQuery.valHooks[ this ] = {
    -			get: function( elem ) {
    -				// Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified
    -				return elem.getAttribute("value") === null ? "on" : elem.value;
    -			}
    -		};
    -	});
    -}
    -jQuery.each([ "radio", "checkbox" ], function() {
    -	jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {
    -		set: function( elem, value ) {
    -			if ( jQuery.isArray( value ) ) {
    -				return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
    -			}
    -		}
    -	});
    -});
    -var rformElems = /^(?:textarea|input|select)$/i,
    -	rtypenamespace = /^([^\.]*|)(?:\.(.+)|)$/,
    -	rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
    -	rkeyEvent = /^key/,
    -	rmouseEvent = /^(?:mouse|contextmenu)|click/,
    -	rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
    -	hoverHack = function( events ) {
    -		return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
    -	};
    -
    -/*
    - * Helper functions for managing events -- not part of the public interface.
    - * Props to Dean Edwards' addEvent library for many of the ideas.
    - */
    -jQuery.event = {
    -
    -	add: function( elem, types, handler, data, selector ) {
    -
    -		var elemData, eventHandle, events,
    -			t, tns, type, namespaces, handleObj,
    -			handleObjIn, handlers, special;
    -
    -		// Don't attach events to noData or text/comment nodes (allow plain objects tho)
    -		if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) {
    -			return;
    -		}
    -
    -		// Caller can pass in an object of custom data in lieu of the handler
    -		if ( handler.handler ) {
    -			handleObjIn = handler;
    -			handler = handleObjIn.handler;
    -			selector = handleObjIn.selector;
    -		}
    -
    -		// Make sure that the handler has a unique ID, used to find/remove it later
    -		if ( !handler.guid ) {
    -			handler.guid = jQuery.guid++;
    -		}
    -
    -		// Init the element's event structure and main handler, if this is the first
    -		events = elemData.events;
    -		if ( !events ) {
    -			elemData.events = events = {};
    -		}
    -		eventHandle = elemData.handle;
    -		if ( !eventHandle ) {
    -			elemData.handle = eventHandle = function( e ) {
    -				// Discard the second event of a jQuery.event.trigger() and
    -				// when an event is called after a page has unloaded
    -				return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ?
    -					jQuery.event.dispatch.apply( eventHandle.elem, arguments ) :
    -					undefined;
    -			};
    -			// Add elem as a property of the handle fn to prevent a memory leak with IE non-native events
    -			eventHandle.elem = elem;
    -		}
    -
    -		// Handle multiple events separated by a space
    -		// jQuery(...).bind("mouseover mouseout", fn);
    -		types = jQuery.trim( hoverHack(types) ).split( " " );
    -		for ( t = 0; t < types.length; t++ ) {
    -
    -			tns = rtypenamespace.exec( types[t] ) || [];
    -			type = tns[1];
    -			namespaces = ( tns[2] || "" ).split( "." ).sort();
    -
    -			// If event changes its type, use the special event handlers for the changed type
    -			special = jQuery.event.special[ type ] || {};
    -
    -			// If selector defined, determine special event api type, otherwise given type
    -			type = ( selector ? special.delegateType : special.bindType ) || type;
    -
    -			// Update special based on newly reset type
    -			special = jQuery.event.special[ type ] || {};
    -
    -			// handleObj is passed to all event handlers
    -			handleObj = jQuery.extend({
    -				type: type,
    -				origType: tns[1],
    -				data: data,
    -				handler: handler,
    -				guid: handler.guid,
    -				selector: selector,
    -				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
    -				namespace: namespaces.join(".")
    -			}, handleObjIn );
    -
    -			// Init the event handler queue if we're the first
    -			handlers = events[ type ];
    -			if ( !handlers ) {
    -				handlers = events[ type ] = [];
    -				handlers.delegateCount = 0;
    -
    -				// Only use addEventListener/attachEvent if the special events handler returns false
    -				if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
    -					// Bind the global event handler to the element
    -					if ( elem.addEventListener ) {
    -						elem.addEventListener( type, eventHandle, false );
    -
    -					} else if ( elem.attachEvent ) {
    -						elem.attachEvent( "on" + type, eventHandle );
    -					}
    -				}
    -			}
    -
    -			if ( special.add ) {
    -				special.add.call( elem, handleObj );
    -
    -				if ( !handleObj.handler.guid ) {
    -					handleObj.handler.guid = handler.guid;
    -				}
    -			}
    -
    -			// Add to the element's handler list, delegates in front
    -			if ( selector ) {
    -				handlers.splice( handlers.delegateCount++, 0, handleObj );
    -			} else {
    -				handlers.push( handleObj );
    -			}
    -
    -			// Keep track of which events have ever been used, for event optimization
    -			jQuery.event.global[ type ] = true;
    -		}
    -
    -		// Nullify elem to prevent memory leaks in IE
    -		elem = null;
    -	},
    -
    -	global: {},
    -
    -	// Detach an event or set of events from an element
    -	remove: function( elem, types, handler, selector, mappedTypes ) {
    -
    -		var t, tns, type, origType, namespaces, origCount,
    -			j, events, special, eventType, handleObj,
    -			elemData = jQuery.hasData( elem ) && jQuery._data( elem );
    -
    -		if ( !elemData || !(events = elemData.events) ) {
    -			return;
    -		}
    -
    -		// Once for each type.namespace in types; type may be omitted
    -		types = jQuery.trim( hoverHack( types || "" ) ).split(" ");
    -		for ( t = 0; t < types.length; t++ ) {
    -			tns = rtypenamespace.exec( types[t] ) || [];
    -			type = origType = tns[1];
    -			namespaces = tns[2];
    -
    -			// Unbind all events (on this namespace, if provided) for the element
    -			if ( !type ) {
    -				for ( type in events ) {
    -					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
    -				}
    -				continue;
    -			}
    -
    -			special = jQuery.event.special[ type ] || {};
    -			type = ( selector? special.delegateType : special.bindType ) || type;
    -			eventType = events[ type ] || [];
    -			origCount = eventType.length;
    -			namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.|)") + "(\\.|$)") : null;
    -
    -			// Remove matching events
    -			for ( j = 0; j < eventType.length; j++ ) {
    -				handleObj = eventType[ j ];
    -
    -				if ( ( mappedTypes || origType === handleObj.origType ) &&
    -					 ( !handler || handler.guid === handleObj.guid ) &&
    -					 ( !namespaces || namespaces.test( handleObj.namespace ) ) &&
    -					 ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) {
    -					eventType.splice( j--, 1 );
    -
    -					if ( handleObj.selector ) {
    -						eventType.delegateCount--;
    -					}
    -					if ( special.remove ) {
    -						special.remove.call( elem, handleObj );
    -					}
    -				}
    -			}
    -
    -			// Remove generic event handler if we removed something and no more handlers exist
    -			// (avoids potential for endless recursion during removal of special event handlers)
    -			if ( eventType.length === 0 && origCount !== eventType.length ) {
    -				if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
    -					jQuery.removeEvent( elem, type, elemData.handle );
    -				}
    -
    -				delete events[ type ];
    -			}
    -		}
    -
    -		// Remove the expando if it's no longer used
    -		if ( jQuery.isEmptyObject( events ) ) {
    -			delete elemData.handle;
    -
    -			// removeData also checks for emptiness and clears the expando if empty
    -			// so use it instead of delete
    -			jQuery.removeData( elem, "events", true );
    -		}
    -	},
    -
    -	// Events that are safe to short-circuit if no handlers are attached.
    -	// Native DOM events should not be added, they may have inline handlers.
    -	customEvent: {
    -		"getData": true,
    -		"setData": true,
    -		"changeData": true
    -	},
    -
    -	trigger: function( event, data, elem, onlyHandlers ) {
    -		// Don't do events on text and comment nodes
    -		if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) {
    -			return;
    -		}
    -
    -		// Event object or event type
    -		var cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType,
    -			type = event.type || event,
    -			namespaces = [];
    -
    -		// focus/blur morphs to focusin/out; ensure we're not firing them right now
    -		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
    -			return;
    -		}
    -
    -		if ( type.indexOf( "!" ) >= 0 ) {
    -			// Exclusive events trigger only for the exact event (no namespaces)
    -			type = type.slice(0, -1);
    -			exclusive = true;
    -		}
    -
    -		if ( type.indexOf( "." ) >= 0 ) {
    -			// Namespaced trigger; create a regexp to match event type in handle()
    -			namespaces = type.split(".");
    -			type = namespaces.shift();
    -			namespaces.sort();
    -		}
    -
    -		if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) {
    -			// No jQuery handlers for this event type, and it can't have inline handlers
    -			return;
    -		}
    -
    -		// Caller can pass in an Event, Object, or just an event type string
    -		event = typeof event === "object" ?
    -			// jQuery.Event object
    -			event[ jQuery.expando ] ? event :
    -			// Object literal
    -			new jQuery.Event( type, event ) :
    -			// Just the event type (string)
    -			new jQuery.Event( type );
    -
    -		event.type = type;
    -		event.isTrigger = true;
    -		event.exclusive = exclusive;
    -		event.namespace = namespaces.join( "." );
    -		event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)") : null;
    -		ontype = type.indexOf( ":" ) < 0 ? "on" + type : "";
    -
    -		// Handle a global trigger
    -		if ( !elem ) {
    -
    -			// TODO: Stop taunting the data cache; remove global events and always attach to document
    -			cache = jQuery.cache;
    -			for ( i in cache ) {
    -				if ( cache[ i ].events && cache[ i ].events[ type ] ) {
    -					jQuery.event.trigger( event, data, cache[ i ].handle.elem, true );
    -				}
    -			}
    -			return;
    -		}
    -
    -		// Clean up the event in case it is being reused
    -		event.result = undefined;
    -		if ( !event.target ) {
    -			event.target = elem;
    -		}
    -
    -		// Clone any incoming data and prepend the event, creating the handler arg list
    -		data = data != null ? jQuery.makeArray( data ) : [];
    -		data.unshift( event );
    -
    -		// Allow special events to draw outside the lines
    -		special = jQuery.event.special[ type ] || {};
    -		if ( special.trigger && special.trigger.apply( elem, data ) === false ) {
    -			return;
    -		}
    -
    -		// Determine event propagation path in advance, per W3C events spec (#9951)
    -		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
    -		eventPath = [[ elem, special.bindType || type ]];
    -		if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {
    -
    -			bubbleType = special.delegateType || type;
    -			cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode;
    -			for ( old = elem; cur; cur = cur.parentNode ) {
    -				eventPath.push([ cur, bubbleType ]);
    -				old = cur;
    -			}
    -
    -			// Only add window if we got to document (e.g., not plain obj or detached DOM)
    -			if ( old === (elem.ownerDocument || document) ) {
    -				eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]);
    -			}
    -		}
    -
    -		// Fire handlers on the event path
    -		for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) {
    -
    -			cur = eventPath[i][0];
    -			event.type = eventPath[i][1];
    -
    -			handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" );
    -			if ( handle ) {
    -				handle.apply( cur, data );
    -			}
    -			// Note that this is a bare JS function and not a jQuery handler
    -			handle = ontype && cur[ ontype ];
    -			if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) {
    -				event.preventDefault();
    -			}
    -		}
    -		event.type = type;
    -
    -		// If nobody prevented the default action, do it now
    -		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
    -
    -			if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) &&
    -				!(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) {
    -
    -				// Call a native DOM method on the target with the same name name as the event.
    -				// Can't use an .isFunction() check here because IE6/7 fails that test.
    -				// Don't do default actions on window, that's where global variables be (#6170)
    -				// IE<9 dies on focus/blur to hidden element (#1486)
    -				if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) {
    -
    -					// Don't re-trigger an onFOO event when we call its FOO() method
    -					old = elem[ ontype ];
    -
    -					if ( old ) {
    -						elem[ ontype ] = null;
    -					}
    -
    -					// Prevent re-triggering of the same event, since we already bubbled it above
    -					jQuery.event.triggered = type;
    -					elem[ type ]();
    -					jQuery.event.triggered = undefined;
    -
    -					if ( old ) {
    -						elem[ ontype ] = old;
    -					}
    -				}
    -			}
    -		}
    -
    -		return event.result;
    -	},
    -
    -	dispatch: function( event ) {
    -
    -		// Make a writable jQuery.Event from the native event object
    -		event = jQuery.event.fix( event || window.event );
    -
    -		var i, j, cur, ret, selMatch, matched, matches, handleObj, sel, related,
    -			handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []),
    -			delegateCount = handlers.delegateCount,
    -			args = core_slice.call( arguments ),
    -			run_all = !event.exclusive && !event.namespace,
    -			special = jQuery.event.special[ event.type ] || {},
    -			handlerQueue = [];
    -
    -		// Use the fix-ed jQuery.Event rather than the (read-only) native event
    -		args[0] = event;
    -		event.delegateTarget = this;
    -
    -		// Call the preDispatch hook for the mapped type, and let it bail if desired
    -		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
    -			return;
    -		}
    -
    -		// Determine handlers that should run if there are delegated events
    -		// Avoid non-left-click bubbling in Firefox (#3861)
    -		if ( delegateCount && !(event.button && event.type === "click") ) {
    -
    -			for ( cur = event.target; cur != this; cur = cur.parentNode || this ) {
    -
    -				// Don't process clicks (ONLY) on disabled elements (#6911, #8165, #11382, #11764)
    -				if ( cur.disabled !== true || event.type !== "click" ) {
    -					selMatch = {};
    -					matches = [];
    -					for ( i = 0; i < delegateCount; i++ ) {
    -						handleObj = handlers[ i ];
    -						sel = handleObj.selector;
    -
    -						if ( selMatch[ sel ] === undefined ) {
    -							selMatch[ sel ] = handleObj.needsContext ?
    -								jQuery( sel, this ).index( cur ) >= 0 :
    -								jQuery.find( sel, this, null, [ cur ] ).length;
    -						}
    -						if ( selMatch[ sel ] ) {
    -							matches.push( handleObj );
    -						}
    -					}
    -					if ( matches.length ) {
    -						handlerQueue.push({ elem: cur, matches: matches });
    -					}
    -				}
    -			}
    -		}
    -
    -		// Add the remaining (directly-bound) handlers
    -		if ( handlers.length > delegateCount ) {
    -			handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) });
    -		}
    -
    -		// Run delegates first; they may want to stop propagation beneath us
    -		for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) {
    -			matched = handlerQueue[ i ];
    -			event.currentTarget = matched.elem;
    -
    -			for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) {
    -				handleObj = matched.matches[ j ];
    -
    -				// Triggered event must either 1) be non-exclusive and have no namespace, or
    -				// 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace).
    -				if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) {
    -
    -					event.data = handleObj.data;
    -					event.handleObj = handleObj;
    -
    -					ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler )
    -							.apply( matched.elem, args );
    -
    -					if ( ret !== undefined ) {
    -						event.result = ret;
    -						if ( ret === false ) {
    -							event.preventDefault();
    -							event.stopPropagation();
    -						}
    -					}
    -				}
    -			}
    -		}
    -
    -		// Call the postDispatch hook for the mapped type
    -		if ( special.postDispatch ) {
    -			special.postDispatch.call( this, event );
    -		}
    -
    -		return event.result;
    -	},
    -
    -	// Includes some event props shared by KeyEvent and MouseEvent
    -	// *** attrChange attrName relatedNode srcElement  are not normalized, non-W3C, deprecated, will be removed in 1.8 ***
    -	props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),
    -
    -	fixHooks: {},
    -
    -	keyHooks: {
    -		props: "char charCode key keyCode".split(" "),
    -		filter: function( event, original ) {
    -
    -			// Add which for key events
    -			if ( event.which == null ) {
    -				event.which = original.charCode != null ? original.charCode : original.keyCode;
    -			}
    -
    -			return event;
    -		}
    -	},
    -
    -	mouseHooks: {
    -		props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),
    -		filter: function( event, original ) {
    -			var eventDoc, doc, body,
    -				button = original.button,
    -				fromElement = original.fromElement;
    -
    -			// Calculate pageX/Y if missing and clientX/Y available
    -			if ( event.pageX == null && original.clientX != null ) {
    -				eventDoc = event.target.ownerDocument || document;
    -				doc = eventDoc.documentElement;
    -				body = eventDoc.body;
    -
    -				event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 );
    -				event.pageY = original.clientY + ( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) - ( doc && doc.clientTop  || body && body.clientTop  || 0 );
    -			}
    -
    -			// Add relatedTarget, if necessary
    -			if ( !event.relatedTarget && fromElement ) {
    -				event.relatedTarget = fromElement === event.target ? original.toElement : fromElement;
    -			}
    -
    -			// Add which for click: 1 === left; 2 === middle; 3 === right
    -			// Note: button is not normalized, so don't use it
    -			if ( !event.which && button !== undefined ) {
    -				event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );
    -			}
    -
    -			return event;
    -		}
    -	},
    -
    -	fix: function( event ) {
    -		if ( event[ jQuery.expando ] ) {
    -			return event;
    -		}
    -
    -		// Create a writable copy of the event object and normalize some properties
    -		var i, prop,
    -			originalEvent = event,
    -			fixHook = jQuery.event.fixHooks[ event.type ] || {},
    -			copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;
    -
    -		event = jQuery.Event( originalEvent );
    -
    -		for ( i = copy.length; i; ) {
    -			prop = copy[ --i ];
    -			event[ prop ] = originalEvent[ prop ];
    -		}
    -
    -		// Fix target property, if necessary (#1925, IE 6/7/8 & Safari2)
    -		if ( !event.target ) {
    -			event.target = originalEvent.srcElement || document;
    -		}
    -
    -		// Target should not be a text node (#504, Safari)
    -		if ( event.target.nodeType === 3 ) {
    -			event.target = event.target.parentNode;
    -		}
    -
    -		// For mouse/key events, metaKey==false if it's undefined (#3368, #11328; IE6/7/8)
    -		event.metaKey = !!event.metaKey;
    -
    -		return fixHook.filter? fixHook.filter( event, originalEvent ) : event;
    -	},
    -
    -	special: {
    -		load: {
    -			// Prevent triggered image.load events from bubbling to window.load
    -			noBubble: true
    -		},
    -
    -		focus: {
    -			delegateType: "focusin"
    -		},
    -		blur: {
    -			delegateType: "focusout"
    -		},
    -
    -		beforeunload: {
    -			setup: function( data, namespaces, eventHandle ) {
    -				// We only want to do this special case on windows
    -				if ( jQuery.isWindow( this ) ) {
    -					this.onbeforeunload = eventHandle;
    -				}
    -			},
    -
    -			teardown: function( namespaces, eventHandle ) {
    -				if ( this.onbeforeunload === eventHandle ) {
    -					this.onbeforeunload = null;
    -				}
    -			}
    -		}
    -	},
    -
    -	simulate: function( type, elem, event, bubble ) {
    -		// Piggyback on a donor event to simulate a different one.
    -		// Fake originalEvent to avoid donor's stopPropagation, but if the
    -		// simulated event prevents default then we do the same on the donor.
    -		var e = jQuery.extend(
    -			new jQuery.Event(),
    -			event,
    -			{ type: type,
    -				isSimulated: true,
    -				originalEvent: {}
    -			}
    -		);
    -		if ( bubble ) {
    -			jQuery.event.trigger( e, null, elem );
    -		} else {
    -			jQuery.event.dispatch.call( elem, e );
    -		}
    -		if ( e.isDefaultPrevented() ) {
    -			event.preventDefault();
    -		}
    -	}
    -};
    -
    -// Some plugins are using, but it's undocumented/deprecated and will be removed.
    -// The 1.7 special event interface should provide all the hooks needed now.
    -jQuery.event.handle = jQuery.event.dispatch;
    -
    -jQuery.removeEvent = document.removeEventListener ?
    -	function( elem, type, handle ) {
    -		if ( elem.removeEventListener ) {
    -			elem.removeEventListener( type, handle, false );
    -		}
    -	} :
    -	function( elem, type, handle ) {
    -		var name = "on" + type;
    -
    -		if ( elem.detachEvent ) {
    -
    -			// #8545, #7054, preventing memory leaks for custom events in IE6-8 –
    -			// detachEvent needed property on element, by name of that event, to properly expose it to GC
    -			if ( typeof elem[ name ] === "undefined" ) {
    -				elem[ name ] = null;
    -			}
    -
    -			elem.detachEvent( name, handle );
    -		}
    -	};
    -
    -jQuery.Event = function( src, props ) {
    -	// Allow instantiation without the 'new' keyword
    -	if ( !(this instanceof jQuery.Event) ) {
    -		return new jQuery.Event( src, props );
    -	}
    -
    -	// Event object
    -	if ( src && src.type ) {
    -		this.originalEvent = src;
    -		this.type = src.type;
    -
    -		// Events bubbling up the document may have been marked as prevented
    -		// by a handler lower down the tree; reflect the correct value.
    -		this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false ||
    -			src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;
    -
    -	// Event type
    -	} else {
    -		this.type = src;
    -	}
    -
    -	// Put explicitly provided properties onto the event object
    -	if ( props ) {
    -		jQuery.extend( this, props );
    -	}
    -
    -	// Create a timestamp if incoming event doesn't have one
    -	this.timeStamp = src && src.timeStamp || jQuery.now();
    -
    -	// Mark it as fixed
    -	this[ jQuery.expando ] = true;
    -};
    -
    -function returnFalse() {
    -	return false;
    -}
    -function returnTrue() {
    -	return true;
    -}
    -
    -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
    -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
    -jQuery.Event.prototype = {
    -	preventDefault: function() {
    -		this.isDefaultPrevented = returnTrue;
    -
    -		var e = this.originalEvent;
    -		if ( !e ) {
    -			return;
    -		}
    -
    -		// if preventDefault exists run it on the original event
    -		if ( e.preventDefault ) {
    -			e.preventDefault();
    -
    -		// otherwise set the returnValue property of the original event to false (IE)
    -		} else {
    -			e.returnValue = false;
    -		}
    -	},
    -	stopPropagation: function() {
    -		this.isPropagationStopped = returnTrue;
    -
    -		var e = this.originalEvent;
    -		if ( !e ) {
    -			return;
    -		}
    -		// if stopPropagation exists run it on the original event
    -		if ( e.stopPropagation ) {
    -			e.stopPropagation();
    -		}
    -		// otherwise set the cancelBubble property of the original event to true (IE)
    -		e.cancelBubble = true;
    -	},
    -	stopImmediatePropagation: function() {
    -		this.isImmediatePropagationStopped = returnTrue;
    -		this.stopPropagation();
    -	},
    -	isDefaultPrevented: returnFalse,
    -	isPropagationStopped: returnFalse,
    -	isImmediatePropagationStopped: returnFalse
    -};
    -
    -// Create mouseenter/leave events using mouseover/out and event-time checks
    -jQuery.each({
    -	mouseenter: "mouseover",
    -	mouseleave: "mouseout"
    -}, function( orig, fix ) {
    -	jQuery.event.special[ orig ] = {
    -		delegateType: fix,
    -		bindType: fix,
    -
    -		handle: function( event ) {
    -			var ret,
    -				target = this,
    -				related = event.relatedTarget,
    -				handleObj = event.handleObj,
    -				selector = handleObj.selector;
    -
    -			// For mousenter/leave call the handler if related is outside the target.
    -			// NB: No relatedTarget if the mouse left/entered the browser window
    -			if ( !related || (related !== target && !jQuery.contains( target, related )) ) {
    -				event.type = handleObj.origType;
    -				ret = handleObj.handler.apply( this, arguments );
    -				event.type = fix;
    -			}
    -			return ret;
    -		}
    -	};
    -});
    -
    -// IE submit delegation
    -if ( !jQuery.support.submitBubbles ) {
    -
    -	jQuery.event.special.submit = {
    -		setup: function() {
    -			// Only need this for delegated form submit events
    -			if ( jQuery.nodeName( this, "form" ) ) {
    -				return false;
    -			}
    -
    -			// Lazy-add a submit handler when a descendant form may potentially be submitted
    -			jQuery.event.add( this, "click._submit keypress._submit", function( e ) {
    -				// Node name check avoids a VML-related crash in IE (#9807)
    -				var elem = e.target,
    -					form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined;
    -				if ( form && !jQuery._data( form, "_submit_attached" ) ) {
    -					jQuery.event.add( form, "submit._submit", function( event ) {
    -						event._submit_bubble = true;
    -					});
    -					jQuery._data( form, "_submit_attached", true );
    -				}
    -			});
    -			// return undefined since we don't need an event listener
    -		},
    -
    -		postDispatch: function( event ) {
    -			// If form was submitted by the user, bubble the event up the tree
    -			if ( event._submit_bubble ) {
    -				delete event._submit_bubble;
    -				if ( this.parentNode && !event.isTrigger ) {
    -					jQuery.event.simulate( "submit", this.parentNode, event, true );
    -				}
    -			}
    -		},
    -
    -		teardown: function() {
    -			// Only need this for delegated form submit events
    -			if ( jQuery.nodeName( this, "form" ) ) {
    -				return false;
    -			}
    -
    -			// Remove delegated handlers; cleanData eventually reaps submit handlers attached above
    -			jQuery.event.remove( this, "._submit" );
    -		}
    -	};
    -}
    -
    -// IE change delegation and checkbox/radio fix
    -if ( !jQuery.support.changeBubbles ) {
    -
    -	jQuery.event.special.change = {
    -
    -		setup: function() {
    -
    -			if ( rformElems.test( this.nodeName ) ) {
    -				// IE doesn't fire change on a check/radio until blur; trigger it on click
    -				// after a propertychange. Eat the blur-change in special.change.handle.
    -				// This still fires onchange a second time for check/radio after blur.
    -				if ( this.type === "checkbox" || this.type === "radio" ) {
    -					jQuery.event.add( this, "propertychange._change", function( event ) {
    -						if ( event.originalEvent.propertyName === "checked" ) {
    -							this._just_changed = true;
    -						}
    -					});
    -					jQuery.event.add( this, "click._change", function( event ) {
    -						if ( this._just_changed && !event.isTrigger ) {
    -							this._just_changed = false;
    -						}
    -						// Allow triggered, simulated change events (#11500)
    -						jQuery.event.simulate( "change", this, event, true );
    -					});
    -				}
    -				return false;
    -			}
    -			// Delegated event; lazy-add a change handler on descendant inputs
    -			jQuery.event.add( this, "beforeactivate._change", function( e ) {
    -				var elem = e.target;
    -
    -				if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "_change_attached" ) ) {
    -					jQuery.event.add( elem, "change._change", function( event ) {
    -						if ( this.parentNode && !event.isSimulated && !event.isTrigger ) {
    -							jQuery.event.simulate( "change", this.parentNode, event, true );
    -						}
    -					});
    -					jQuery._data( elem, "_change_attached", true );
    -				}
    -			});
    -		},
    -
    -		handle: function( event ) {
    -			var elem = event.target;
    -
    -			// Swallow native change events from checkbox/radio, we already triggered them above
    -			if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) {
    -				return event.handleObj.handler.apply( this, arguments );
    -			}
    -		},
    -
    -		teardown: function() {
    -			jQuery.event.remove( this, "._change" );
    -
    -			return !rformElems.test( this.nodeName );
    -		}
    -	};
    -}
    -
    -// Create "bubbling" focus and blur events
    -if ( !jQuery.support.focusinBubbles ) {
    -	jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) {
    -
    -		// Attach a single capturing handler while someone wants focusin/focusout
    -		var attaches = 0,
    -			handler = function( event ) {
    -				jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true );
    -			};
    -
    -		jQuery.event.special[ fix ] = {
    -			setup: function() {
    -				if ( attaches++ === 0 ) {
    -					document.addEventListener( orig, handler, true );
    -				}
    -			},
    -			teardown: function() {
    -				if ( --attaches === 0 ) {
    -					document.removeEventListener( orig, handler, true );
    -				}
    -			}
    -		};
    -	});
    -}
    -
    -jQuery.fn.extend({
    -
    -	on: function( types, selector, data, fn, /*INTERNAL*/ one ) {
    -		var origFn, type;
    -
    -		// Types can be a map of types/handlers
    -		if ( typeof types === "object" ) {
    -			// ( types-Object, selector, data )
    -			if ( typeof selector !== "string" ) { // && selector != null
    -				// ( types-Object, data )
    -				data = data || selector;
    -				selector = undefined;
    -			}
    -			for ( type in types ) {
    -				this.on( type, selector, data, types[ type ], one );
    -			}
    -			return this;
    -		}
    -
    -		if ( data == null && fn == null ) {
    -			// ( types, fn )
    -			fn = selector;
    -			data = selector = undefined;
    -		} else if ( fn == null ) {
    -			if ( typeof selector === "string" ) {
    -				// ( types, selector, fn )
    -				fn = data;
    -				data = undefined;
    -			} else {
    -				// ( types, data, fn )
    -				fn = data;
    -				data = selector;
    -				selector = undefined;
    -			}
    -		}
    -		if ( fn === false ) {
    -			fn = returnFalse;
    -		} else if ( !fn ) {
    -			return this;
    -		}
    -
    -		if ( one === 1 ) {
    -			origFn = fn;
    -			fn = function( event ) {
    -				// Can use an empty set, since event contains the info
    -				jQuery().off( event );
    -				return origFn.apply( this, arguments );
    -			};
    -			// Use same guid so caller can remove using origFn
    -			fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
    -		}
    -		return this.each( function() {
    -			jQuery.event.add( this, types, fn, data, selector );
    -		});
    -	},
    -	one: function( types, selector, data, fn ) {
    -		return this.on( types, selector, data, fn, 1 );
    -	},
    -	off: function( types, selector, fn ) {
    -		var handleObj, type;
    -		if ( types && types.preventDefault && types.handleObj ) {
    -			// ( event )  dispatched jQuery.Event
    -			handleObj = types.handleObj;
    -			jQuery( types.delegateTarget ).off(
    -				handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType,
    -				handleObj.selector,
    -				handleObj.handler
    -			);
    -			return this;
    -		}
    -		if ( typeof types === "object" ) {
    -			// ( types-object [, selector] )
    -			for ( type in types ) {
    -				this.off( type, selector, types[ type ] );
    -			}
    -			return this;
    -		}
    -		if ( selector === false || typeof selector === "function" ) {
    -			// ( types [, fn] )
    -			fn = selector;
    -			selector = undefined;
    -		}
    -		if ( fn === false ) {
    -			fn = returnFalse;
    -		}
    -		return this.each(function() {
    -			jQuery.event.remove( this, types, fn, selector );
    -		});
    -	},
    -
    -	bind: function( types, data, fn ) {
    -		return this.on( types, null, data, fn );
    -	},
    -	unbind: function( types, fn ) {
    -		return this.off( types, null, fn );
    -	},
    -
    -	live: function( types, data, fn ) {
    -		jQuery( this.context ).on( types, this.selector, data, fn );
    -		return this;
    -	},
    -	die: function( types, fn ) {
    -		jQuery( this.context ).off( types, this.selector || "**", fn );
    -		return this;
    -	},
    -
    -	delegate: function( selector, types, data, fn ) {
    -		return this.on( types, selector, data, fn );
    -	},
    -	undelegate: function( selector, types, fn ) {
    -		// ( namespace ) or ( selector, types [, fn] )
    -		return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
    -	},
    -
    -	trigger: function( type, data ) {
    -		return this.each(function() {
    -			jQuery.event.trigger( type, data, this );
    -		});
    -	},
    -	triggerHandler: function( type, data ) {
    -		if ( this[0] ) {
    -			return jQuery.event.trigger( type, data, this[0], true );
    -		}
    -	},
    -
    -	toggle: function( fn ) {
    -		// Save reference to arguments for access in closure
    -		var args = arguments,
    -			guid = fn.guid || jQuery.guid++,
    -			i = 0,
    -			toggler = function( event ) {
    -				// Figure out which function to execute
    -				var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
    -				jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
    -
    -				// Make sure that clicks stop
    -				event.preventDefault();
    -
    -				// and execute the function
    -				return args[ lastToggle ].apply( this, arguments ) || false;
    -			};
    -
    -		// link all the functions, so any of them can unbind this click handler
    -		toggler.guid = guid;
    -		while ( i < args.length ) {
    -			args[ i++ ].guid = guid;
    -		}
    -
    -		return this.click( toggler );
    -	},
    -
    -	hover: function( fnOver, fnOut ) {
    -		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
    -	}
    -});
    -
    -jQuery.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( i, name ) {
    -
    -	// Handle event binding
    -	jQuery.fn[ name ] = function( data, fn ) {
    -		if ( fn == null ) {
    -			fn = data;
    -			data = null;
    -		}
    -
    -		return arguments.length > 0 ?
    -			this.on( name, null, data, fn ) :
    -			this.trigger( name );
    -	};
    -
    -	if ( rkeyEvent.test( name ) ) {
    -		jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks;
    -	}
    -
    -	if ( rmouseEvent.test( name ) ) {
    -		jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks;
    -	}
    -});
    -/*!
    - * Sizzle CSS Selector Engine
    - * Copyright 2012 jQuery Foundation and other contributors
    - * Released under the MIT license
    - * http://sizzlejs.com/
    - */
    -(function( window, undefined ) {
    -
    -var cachedruns,
    -	assertGetIdNotName,
    -	Expr,
    -	getText,
    -	isXML,
    -	contains,
    -	compile,
    -	sortOrder,
    -	hasDuplicate,
    -	outermostContext,
    -
    -	baseHasDuplicate = true,
    -	strundefined = "undefined",
    -
    -	expando = ( "sizcache" + Math.random() ).replace( ".", "" ),
    -
    -	Token = String,
    -	document = window.document,
    -	docElem = document.documentElement,
    -	dirruns = 0,
    -	done = 0,
    -	pop = [].pop,
    -	push = [].push,
    -	slice = [].slice,
    -	// Use a stripped-down indexOf if a native one is unavailable
    -	indexOf = [].indexOf || function( elem ) {
    -		var i = 0,
    -			len = this.length;
    -		for ( ; i < len; i++ ) {
    -			if ( this[i] === elem ) {
    -				return i;
    -			}
    -		}
    -		return -1;
    -	},
    -
    -	// Augment a function for special use by Sizzle
    -	markFunction = function( fn, value ) {
    -		fn[ expando ] = value == null || value;
    -		return fn;
    -	},
    -
    -	createCache = function() {
    -		var cache = {},
    -			keys = [];
    -
    -		return markFunction(function( key, value ) {
    -			// Only keep the most recent entries
    -			if ( keys.push( key ) > Expr.cacheLength ) {
    -				delete cache[ keys.shift() ];
    -			}
    -
    -			return (cache[ key ] = value);
    -		}, cache );
    -	},
    -
    -	classCache = createCache(),
    -	tokenCache = createCache(),
    -	compilerCache = createCache(),
    -
    -	// Regex
    -
    -	// Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace
    -	whitespace = "[\\x20\\t\\r\\n\\f]",
    -	// http://www.w3.org/TR/css3-syntax/#characters
    -	characterEncoding = "(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",
    -
    -	// Loosely modeled on CSS identifier characters
    -	// An unquoted value should be a CSS identifier (http://www.w3.org/TR/css3-selectors/#attribute-selectors)
    -	// Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
    -	identifier = characterEncoding.replace( "w", "w#" ),
    -
    -	// Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors
    -	operators = "([*^$|!~]?=)",
    -	attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace +
    -		"*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]",
    -
    -	// Prefer arguments not in parens/brackets,
    -	//   then attribute selectors and non-pseudos (denoted by :),
    -	//   then anything else
    -	// These preferences are here to reduce the number of selectors
    -	//   needing tokenize in the PSEUDO preFilter
    -	pseudos = ":(" + characterEncoding + ")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:" + attributes + ")|[^:]|\\\\.)*|.*))\\)|)",
    -
    -	// For matchExpr.POS and matchExpr.needsContext
    -	pos = ":(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace +
    -		"*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)",
    -
    -	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
    -	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
    -
    -	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
    -	rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ),
    -	rpseudo = new RegExp( pseudos ),
    -
    -	// Easily-parseable/retrievable ID or TAG or CLASS selectors
    -	rquickExpr = /^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,
    -
    -	rnot = /^:not/,
    -	rsibling = /[\x20\t\r\n\f]*[+~]/,
    -	rendsWithNot = /:not\($/,
    -
    -	rheader = /h\d/i,
    -	rinputs = /input|select|textarea|button/i,
    -
    -	rbackslash = /\\(?!\\)/g,
    -
    -	matchExpr = {
    -		"ID": new RegExp( "^#(" + characterEncoding + ")" ),
    -		"CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ),
    -		"NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ),
    -		"TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ),
    -		"ATTR": new RegExp( "^" + attributes ),
    -		"PSEUDO": new RegExp( "^" + pseudos ),
    -		"POS": new RegExp( pos, "i" ),
    -		"CHILD": new RegExp( "^:(only|nth|first|last)-child(?:\\(" + whitespace +
    -			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
    -			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
    -		// For use in libraries implementing .is()
    -		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|" + pos, "i" )
    -	},
    -
    -	// Support
    -
    -	// Used for testing something on an element
    -	assert = function( fn ) {
    -		var div = document.createElement("div");
    -
    -		try {
    -			return fn( div );
    -		} catch (e) {
    -			return false;
    -		} finally {
    -			// release memory in IE
    -			div = null;
    -		}
    -	},
    -
    -	// Check if getElementsByTagName("*") returns only elements
    -	assertTagNameNoComments = assert(function( div ) {
    -		div.appendChild( document.createComment("") );
    -		return !div.getElementsByTagName("*").length;
    -	}),
    -
    -	// Check if getAttribute returns normalized href attributes
    -	assertHrefNotNormalized = assert(function( div ) {
    -		div.innerHTML = "<a href='#'></a>";
    -		return div.firstChild && typeof div.firstChild.getAttribute !== strundefined &&
    -			div.firstChild.getAttribute("href") === "#";
    -	}),
    -
    -	// Check if attributes should be retrieved by attribute nodes
    -	assertAttributes = assert(function( div ) {
    -		div.innerHTML = "<select></select>";
    -		var type = typeof div.lastChild.getAttribute("multiple");
    -		// IE8 returns a string for some attributes even when not present
    -		return type !== "boolean" && type !== "string";
    -	}),
    -
    -	// Check if getElementsByClassName can be trusted
    -	assertUsableClassName = assert(function( div ) {
    -		// Opera can't find a second classname (in 9.6)
    -		div.innerHTML = "<div class='hidden e'></div><div class='hidden'></div>";
    -		if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) {
    -			return false;
    -		}
    -
    -		// Safari 3.2 caches class attributes and doesn't catch changes
    -		div.lastChild.className = "e";
    -		return div.getElementsByClassName("e").length === 2;
    -	}),
    -
    -	// Check if getElementById returns elements by name
    -	// Check if getElementsByName privileges form controls or returns elements by ID
    -	assertUsableName = assert(function( div ) {
    -		// Inject content
    -		div.id = expando + 0;
    -		div.innerHTML = "<a name='" + expando + "'></a><div name='" + expando + "'></div>";
    -		docElem.insertBefore( div, docElem.firstChild );
    -
    -		// Test
    -		var pass = document.getElementsByName &&
    -			// buggy browsers will return fewer than the correct 2
    -			document.getElementsByName( expando ).length === 2 +
    -			// buggy browsers will return more than the correct 0
    -			document.getElementsByName( expando + 0 ).length;
    -		assertGetIdNotName = !document.getElementById( expando );
    -
    -		// Cleanup
    -		docElem.removeChild( div );
    -
    -		return pass;
    -	});
    -
    -// If slice is not available, provide a backup
    -try {
    -	slice.call( docElem.childNodes, 0 )[0].nodeType;
    -} catch ( e ) {
    -	slice = function( i ) {
    -		var elem,
    -			results = [];
    -		for ( ; (elem = this[i]); i++ ) {
    -			results.push( elem );
    -		}
    -		return results;
    -	};
    -}
    -
    -function Sizzle( selector, context, results, seed ) {
    -	results = results || [];
    -	context = context || document;
    -	var match, elem, xml, m,
    -		nodeType = context.nodeType;
    -
    -	if ( !selector || typeof selector !== "string" ) {
    -		return results;
    -	}
    -
    -	if ( nodeType !== 1 && nodeType !== 9 ) {
    -		return [];
    -	}
    -
    -	xml = isXML( context );
    -
    -	if ( !xml && !seed ) {
    -		if ( (match = rquickExpr.exec( selector )) ) {
    -			// Speed-up: Sizzle("#ID")
    -			if ( (m = match[1]) ) {
    -				if ( nodeType === 9 ) {
    -					elem = context.getElementById( m );
    -					// Check parentNode to catch when Blackberry 4.6 returns
    -					// nodes that are no longer in the document #6963
    -					if ( elem && elem.parentNode ) {
    -						// Handle the case where IE, Opera, and Webkit return items
    -						// by name instead of ID
    -						if ( elem.id === m ) {
    -							results.push( elem );
    -							return results;
    -						}
    -					} else {
    -						return results;
    -					}
    -				} else {
    -					// Context is not a document
    -					if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) &&
    -						contains( context, elem ) && elem.id === m ) {
    -						results.push( elem );
    -						return results;
    -					}
    -				}
    -
    -			// Speed-up: Sizzle("TAG")
    -			} else if ( match[2] ) {
    -				push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) );
    -				return results;
    -
    -			// Speed-up: Sizzle(".CLASS")
    -			} else if ( (m = match[3]) && assertUsableClassName && context.getElementsByClassName ) {
    -				push.apply( results, slice.call(context.getElementsByClassName( m ), 0) );
    -				return results;
    -			}
    -		}
    -	}
    -
    -	// All others
    -	return select( selector.replace( rtrim, "$1" ), context, results, seed, xml );
    -}
    -
    -Sizzle.matches = function( expr, elements ) {
    -	return Sizzle( expr, null, null, elements );
    -};
    -
    -Sizzle.matchesSelector = function( elem, expr ) {
    -	return Sizzle( expr, null, null, [ elem ] ).length > 0;
    -};
    -
    -// Returns a function to use in pseudos for input types
    -function createInputPseudo( type ) {
    -	return function( elem ) {
    -		var name = elem.nodeName.toLowerCase();
    -		return name === "input" && elem.type === type;
    -	};
    -}
    -
    -// Returns a function to use in pseudos for buttons
    -function createButtonPseudo( type ) {
    -	return function( elem ) {
    -		var name = elem.nodeName.toLowerCase();
    -		return (name === "input" || name === "button") && elem.type === type;
    -	};
    -}
    -
    -// Returns a function to use in pseudos for positionals
    -function createPositionalPseudo( fn ) {
    -	return markFunction(function( argument ) {
    -		argument = +argument;
    -		return markFunction(function( seed, matches ) {
    -			var j,
    -				matchIndexes = fn( [], seed.length, argument ),
    -				i = matchIndexes.length;
    -
    -			// Match elements found at the specified indexes
    -			while ( i-- ) {
    -				if ( seed[ (j = matchIndexes[i]) ] ) {
    -					seed[j] = !(matches[j] = seed[j]);
    -				}
    -			}
    -		});
    -	});
    -}
    -
    -/**
    - * Utility function for retrieving the text value of an array of DOM nodes
    - * @param {Array|Element} elem
    - */
    -getText = Sizzle.getText = function( elem ) {
    -	var node,
    -		ret = "",
    -		i = 0,
    -		nodeType = elem.nodeType;
    -
    -	if ( nodeType ) {
    -		if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
    -			// Use textContent for elements
    -			// innerText usage removed for consistency of new lines (see #11153)
    -			if ( typeof elem.textContent === "string" ) {
    -				return elem.textContent;
    -			} else {
    -				// Traverse its children
    -				for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
    -					ret += getText( elem );
    -				}
    -			}
    -		} else if ( nodeType === 3 || nodeType === 4 ) {
    -			return elem.nodeValue;
    -		}
    -		// Do not include comment or processing instruction nodes
    -	} else {
    -
    -		// If no nodeType, this is expected to be an array
    -		for ( ; (node = elem[i]); i++ ) {
    -			// Do not traverse comment nodes
    -			ret += getText( node );
    -		}
    -	}
    -	return ret;
    -};
    -
    -isXML = Sizzle.isXML = function( elem ) {
    -	// documentElement is verified for cases where it doesn't yet exist
    -	// (such as loading iframes in IE - #4833)
    -	var documentElement = elem && (elem.ownerDocument || elem).documentElement;
    -	return documentElement ? documentElement.nodeName !== "HTML" : false;
    -};
    -
    -// Element contains another
    -contains = Sizzle.contains = docElem.contains ?
    -	function( a, b ) {
    -		var adown = a.nodeType === 9 ? a.documentElement : a,
    -			bup = b && b.parentNode;
    -		return a === bup || !!( bup && bup.nodeType === 1 && adown.contains && adown.contains(bup) );
    -	} :
    -	docElem.compareDocumentPosition ?
    -	function( a, b ) {
    -		return b && !!( a.compareDocumentPosition( b ) & 16 );
    -	} :
    -	function( a, b ) {
    -		while ( (b = b.parentNode) ) {
    -			if ( b === a ) {
    -				return true;
    -			}
    -		}
    -		return false;
    -	};
    -
    -Sizzle.attr = function( elem, name ) {
    -	var val,
    -		xml = isXML( elem );
    -
    -	if ( !xml ) {
    -		name = name.toLowerCase();
    -	}
    -	if ( (val = Expr.attrHandle[ name ]) ) {
    -		return val( elem );
    -	}
    -	if ( xml || assertAttributes ) {
    -		return elem.getAttribute( name );
    -	}
    -	val = elem.getAttributeNode( name );
    -	return val ?
    -		typeof elem[ name ] === "boolean" ?
    -			elem[ name ] ? name : null :
    -			val.specified ? val.value : null :
    -		null;
    -};
    -
    -Expr = Sizzle.selectors = {
    -
    -	// Can be adjusted by the user
    -	cacheLength: 50,
    -
    -	createPseudo: markFunction,
    -
    -	match: matchExpr,
    -
    -	// IE6/7 return a modified href
    -	attrHandle: assertHrefNotNormalized ?
    -		{} :
    -		{
    -			"href": function( elem ) {
    -				return elem.getAttribute( "href", 2 );
    -			},
    -			"type": function( elem ) {
    -				return elem.getAttribute("type");
    -			}
    -		},
    -
    -	find: {
    -		"ID": assertGetIdNotName ?
    -			function( id, context, xml ) {
    -				if ( typeof context.getElementById !== strundefined && !xml ) {
    -					var m = context.getElementById( id );
    -					// Check parentNode to catch when Blackberry 4.6 returns
    -					// nodes that are no longer in the document #6963
    -					return m && m.parentNode ? [m] : [];
    -				}
    -			} :
    -			function( id, context, xml ) {
    -				if ( typeof context.getElementById !== strundefined && !xml ) {
    -					var m = context.getElementById( id );
    -
    -					return m ?
    -						m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ?
    -							[m] :
    -							undefined :
    -						[];
    -				}
    -			},
    -
    -		"TAG": assertTagNameNoComments ?
    -			function( tag, context ) {
    -				if ( typeof context.getElementsByTagName !== strundefined ) {
    -					return context.getElementsByTagName( tag );
    -				}
    -			} :
    -			function( tag, context ) {
    -				var results = context.getElementsByTagName( tag );
    -
    -				// Filter out possible comments
    -				if ( tag === "*" ) {
    -					var elem,
    -						tmp = [],
    -						i = 0;
    -
    -					for ( ; (elem = results[i]); i++ ) {
    -						if ( elem.nodeType === 1 ) {
    -							tmp.push( elem );
    -						}
    -					}
    -
    -					return tmp;
    -				}
    -				return results;
    -			},
    -
    -		"NAME": assertUsableName && function( tag, context ) {
    -			if ( typeof context.getElementsByName !== strundefined ) {
    -				return context.getElementsByName( name );
    -			}
    -		},
    -
    -		"CLASS": assertUsableClassName && function( className, context, xml ) {
    -			if ( typeof context.getElementsByClassName !== strundefined && !xml ) {
    -				return context.getElementsByClassName( className );
    -			}
    -		}
    -	},
    -
    -	relative: {
    -		">": { dir: "parentNode", first: true },
    -		" ": { dir: "parentNode" },
    -		"+": { dir: "previousSibling", first: true },
    -		"~": { dir: "previousSibling" }
    -	},
    -
    -	preFilter: {
    -		"ATTR": function( match ) {
    -			match[1] = match[1].replace( rbackslash, "" );
    -
    -			// Move the given value to match[3] whether quoted or unquoted
    -			match[3] = ( match[4] || match[5] || "" ).replace( rbackslash, "" );
    -
    -			if ( match[2] === "~=" ) {
    -				match[3] = " " + match[3] + " ";
    -			}
    -
    -			return match.slice( 0, 4 );
    -		},
    -
    -		"CHILD": function( match ) {
    -			/* matches from matchExpr["CHILD"]
    -				1 type (only|nth|...)
    -				2 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
    -				3 xn-component of xn+y argument ([+-]?\d*n|)
    -				4 sign of xn-component
    -				5 x of xn-component
    -				6 sign of y-component
    -				7 y of y-component
    -			*/
    -			match[1] = match[1].toLowerCase();
    -
    -			if ( match[1] === "nth" ) {
    -				// nth-child requires argument
    -				if ( !match[2] ) {
    -					Sizzle.error( match[0] );
    -				}
    -
    -				// numeric x and y parameters for Expr.filter.CHILD
    -				// remember that false/true cast respectively to 0/1
    -				match[3] = +( match[3] ? match[4] + (match[5] || 1) : 2 * ( match[2] === "even" || match[2] === "odd" ) );
    -				match[4] = +( ( match[6] + match[7] ) || match[2] === "odd" );
    -
    -			// other types prohibit arguments
    -			} else if ( match[2] ) {
    -				Sizzle.error( match[0] );
    -			}
    -
    -			return match;
    -		},
    -
    -		"PSEUDO": function( match ) {
    -			var unquoted, excess;
    -			if ( matchExpr["CHILD"].test( match[0] ) ) {
    -				return null;
    -			}
    -
    -			if ( match[3] ) {
    -				match[2] = match[3];
    -			} else if ( (unquoted = match[4]) ) {
    -				// Only check arguments that contain a pseudo
    -				if ( rpseudo.test(unquoted) &&
    -					// Get excess from tokenize (recursively)
    -					(excess = tokenize( unquoted, true )) &&
    -					// advance to the next closing parenthesis
    -					(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
    -
    -					// excess is a negative index
    -					unquoted = unquoted.slice( 0, excess );
    -					match[0] = match[0].slice( 0, excess );
    -				}
    -				match[2] = unquoted;
    -			}
    -
    -			// Return only captures needed by the pseudo filter method (type and argument)
    -			return match.slice( 0, 3 );
    -		}
    -	},
    -
    -	filter: {
    -		"ID": assertGetIdNotName ?
    -			function( id ) {
    -				id = id.replace( rbackslash, "" );
    -				return function( elem ) {
    -					return elem.getAttribute("id") === id;
    -				};
    -			} :
    -			function( id ) {
    -				id = id.replace( rbackslash, "" );
    -				return function( elem ) {
    -					var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id");
    -					return node && node.value === id;
    -				};
    -			},
    -
    -		"TAG": function( nodeName ) {
    -			if ( nodeName === "*" ) {
    -				return function() { return true; };
    -			}
    -			nodeName = nodeName.replace( rbackslash, "" ).toLowerCase();
    -
    -			return function( elem ) {
    -				return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
    -			};
    -		},
    -
    -		"CLASS": function( className ) {
    -			var pattern = classCache[ expando ][ className ];
    -			if ( !pattern ) {
    -				pattern = classCache( className, new RegExp("(^|" + whitespace + ")" + className + "(" + whitespace + "|$)") );
    -			}
    -			return function( elem ) {
    -				return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" );
    -			};
    -		},
    -
    -		"ATTR": function( name, operator, check ) {
    -			return function( elem, context ) {
    -				var result = Sizzle.attr( elem, name );
    -
    -				if ( result == null ) {
    -					return operator === "!=";
    -				}
    -				if ( !operator ) {
    -					return true;
    -				}
    -
    -				result += "";
    -
    -				return operator === "=" ? result === check :
    -					operator === "!=" ? result !== check :
    -					operator === "^=" ? check && result.indexOf( check ) === 0 :
    -					operator === "*=" ? check && result.indexOf( check ) > -1 :
    -					operator === "$=" ? check && result.substr( result.length - check.length ) === check :
    -					operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 :
    -					operator === "|=" ? result === check || result.substr( 0, check.length + 1 ) === check + "-" :
    -					false;
    -			};
    -		},
    -
    -		"CHILD": function( type, argument, first, last ) {
    -
    -			if ( type === "nth" ) {
    -				return function( elem ) {
    -					var node, diff,
    -						parent = elem.parentNode;
    -
    -					if ( first === 1 && last === 0 ) {
    -						return true;
    -					}
    -
    -					if ( parent ) {
    -						diff = 0;
    -						for ( node = parent.firstChild; node; node = node.nextSibling ) {
    -							if ( node.nodeType === 1 ) {
    -								diff++;
    -								if ( elem === node ) {
    -									break;
    -								}
    -							}
    -						}
    -					}
    -
    -					// Incorporate the offset (or cast to NaN), then check against cycle size
    -					diff -= last;
    -					return diff === first || ( diff % first === 0 && diff / first >= 0 );
    -				};
    -			}
    -
    -			return function( elem ) {
    -				var node = elem;
    -
    -				switch ( type ) {
    -					case "only":
    -					case "first":
    -						while ( (node = node.previousSibling) ) {
    -							if ( node.nodeType === 1 ) {
    -								return false;
    -							}
    -						}
    -
    -						if ( type === "first" ) {
    -							return true;
    -						}
    -
    -						node = elem;
    -
    -						/* falls through */
    -					case "last":
    -						while ( (node = node.nextSibling) ) {
    -							if ( node.nodeType === 1 ) {
    -								return false;
    -							}
    -						}
    -
    -						return true;
    -				}
    -			};
    -		},
    -
    -		"PSEUDO": function( pseudo, argument ) {
    -			// pseudo-class names are case-insensitive
    -			// http://www.w3.org/TR/selectors/#pseudo-classes
    -			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
    -			// Remember that setFilters inherits from pseudos
    -			var args,
    -				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
    -					Sizzle.error( "unsupported pseudo: " + pseudo );
    -
    -			// The user may use createPseudo to indicate that
    -			// arguments are needed to create the filter function
    -			// just as Sizzle does
    -			if ( fn[ expando ] ) {
    -				return fn( argument );
    -			}
    -
    -			// But maintain support for old signatures
    -			if ( fn.length > 1 ) {
    -				args = [ pseudo, pseudo, "", argument ];
    -				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
    -					markFunction(function( seed, matches ) {
    -						var idx,
    -							matched = fn( seed, argument ),
    -							i = matched.length;
    -						while ( i-- ) {
    -							idx = indexOf.call( seed, matched[i] );
    -							seed[ idx ] = !( matches[ idx ] = matched[i] );
    -						}
    -					}) :
    -					function( elem ) {
    -						return fn( elem, 0, args );
    -					};
    -			}
    -
    -			return fn;
    -		}
    -	},
    -
    -	pseudos: {
    -		"not": markFunction(function( selector ) {
    -			// Trim the selector passed to compile
    -			// to avoid treating leading and trailing
    -			// spaces as combinators
    -			var input = [],
    -				results = [],
    -				matcher = compile( selector.replace( rtrim, "$1" ) );
    -
    -			return matcher[ expando ] ?
    -				markFunction(function( seed, matches, context, xml ) {
    -					var elem,
    -						unmatched = matcher( seed, null, xml, [] ),
    -						i = seed.length;
    -
    -					// Match elements unmatched by `matcher`
    -					while ( i-- ) {
    -						if ( (elem = unmatched[i]) ) {
    -							seed[i] = !(matches[i] = elem);
    -						}
    -					}
    -				}) :
    -				function( elem, context, xml ) {
    -					input[0] = elem;
    -					matcher( input, null, xml, results );
    -					return !results.pop();
    -				};
    -		}),
    -
    -		"has": markFunction(function( selector ) {
    -			return function( elem ) {
    -				return Sizzle( selector, elem ).length > 0;
    -			};
    -		}),
    -
    -		"contains": markFunction(function( text ) {
    -			return function( elem ) {
    -				return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;
    -			};
    -		}),
    -
    -		"enabled": function( elem ) {
    -			return elem.disabled === false;
    -		},
    -
    -		"disabled": function( elem ) {
    -			return elem.disabled === true;
    -		},
    -
    -		"checked": function( elem ) {
    -			// In CSS3, :checked should return both checked and selected elements
    -			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
    -			var nodeName = elem.nodeName.toLowerCase();
    -			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
    -		},
    -
    -		"selected": function( elem ) {
    -			// Accessing this property makes selected-by-default
    -			// options in Safari work properly
    -			if ( elem.parentNode ) {
    -				elem.parentNode.selectedIndex;
    -			}
    -
    -			return elem.selected === true;
    -		},
    -
    -		"parent": function( elem ) {
    -			return !Expr.pseudos["empty"]( elem );
    -		},
    -
    -		"empty": function( elem ) {
    -			// http://www.w3.org/TR/selectors/#empty-pseudo
    -			// :empty is only affected by element nodes and content nodes(including text(3), cdata(4)),
    -			//   not comment, processing instructions, or others
    -			// Thanks to Diego Perini for the nodeName shortcut
    -			//   Greater than "@" means alpha characters (specifically not starting with "#" or "?")
    -			var nodeType;
    -			elem = elem.firstChild;
    -			while ( elem ) {
    -				if ( elem.nodeName > "@" || (nodeType = elem.nodeType) === 3 || nodeType === 4 ) {
    -					return false;
    -				}
    -				elem = elem.nextSibling;
    -			}
    -			return true;
    -		},
    -
    -		"header": function( elem ) {
    -			return rheader.test( elem.nodeName );
    -		},
    -
    -		"text": function( elem ) {
    -			var type, attr;
    -			// IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc)
    -			// use getAttribute instead to test this case
    -			return elem.nodeName.toLowerCase() === "input" &&
    -				(type = elem.type) === "text" &&
    -				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === type );
    -		},
    -
    -		// Input types
    -		"radio": createInputPseudo("radio"),
    -		"checkbox": createInputPseudo("checkbox"),
    -		"file": createInputPseudo("file"),
    -		"password": createInputPseudo("password"),
    -		"image": createInputPseudo("image"),
    -
    -		"submit": createButtonPseudo("submit"),
    -		"reset": createButtonPseudo("reset"),
    -
    -		"button": function( elem ) {
    -			var name = elem.nodeName.toLowerCase();
    -			return name === "input" && elem.type === "button" || name === "button";
    -		},
    -
    -		"input": function( elem ) {
    -			return rinputs.test( elem.nodeName );
    -		},
    -
    -		"focus": function( elem ) {
    -			var doc = elem.ownerDocument;
    -			return elem === doc.activeElement && (!doc.hasFocus || doc.hasFocus()) && !!(elem.type || elem.href);
    -		},
    -
    -		"active": function( elem ) {
    -			return elem === elem.ownerDocument.activeElement;
    -		},
    -
    -		// Positional types
    -		"first": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			return [ 0 ];
    -		}),
    -
    -		"last": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			return [ length - 1 ];
    -		}),
    -
    -		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			return [ argument < 0 ? argument + length : argument ];
    -		}),
    -
    -		"even": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			for ( var i = 0; i < length; i += 2 ) {
    -				matchIndexes.push( i );
    -			}
    -			return matchIndexes;
    -		}),
    -
    -		"odd": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			for ( var i = 1; i < length; i += 2 ) {
    -				matchIndexes.push( i );
    -			}
    -			return matchIndexes;
    -		}),
    -
    -		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			for ( var i = argument < 0 ? argument + length : argument; --i >= 0; ) {
    -				matchIndexes.push( i );
    -			}
    -			return matchIndexes;
    -		}),
    -
    -		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
    -			for ( var i = argument < 0 ? argument + length : argument; ++i < length; ) {
    -				matchIndexes.push( i );
    -			}
    -			return matchIndexes;
    -		})
    -	}
    -};
    -
    -function siblingCheck( a, b, ret ) {
    -	if ( a === b ) {
    -		return ret;
    -	}
    -
    -	var cur = a.nextSibling;
    -
    -	while ( cur ) {
    -		if ( cur === b ) {
    -			return -1;
    -		}
    -
    -		cur = cur.nextSibling;
    -	}
    -
    -	return 1;
    -}
    -
    -sortOrder = docElem.compareDocumentPosition ?
    -	function( a, b ) {
    -		if ( a === b ) {
    -			hasDuplicate = true;
    -			return 0;
    -		}
    -
    -		return ( !a.compareDocumentPosition || !b.compareDocumentPosition ?
    -			a.compareDocumentPosition :
    -			a.compareDocumentPosition(b) & 4
    -		) ? -1 : 1;
    -	} :
    -	function( a, b ) {
    -		// The nodes are identical, we can exit early
    -		if ( a === b ) {
    -			hasDuplicate = true;
    -			return 0;
    -
    -		// Fallback to using sourceIndex (in IE) if it's available on both nodes
    -		} else if ( a.sourceIndex && b.sourceIndex ) {
    -			return a.sourceIndex - b.sourceIndex;
    -		}
    -
    -		var al, bl,
    -			ap = [],
    -			bp = [],
    -			aup = a.parentNode,
    -			bup = b.parentNode,
    -			cur = aup;
    -
    -		// If the nodes are siblings (or identical) we can do a quick check
    -		if ( aup === bup ) {
    -			return siblingCheck( a, b );
    -
    -		// If no parents were found then the nodes are disconnected
    -		} else if ( !aup ) {
    -			return -1;
    -
    -		} else if ( !bup ) {
    -			return 1;
    -		}
    -
    -		// Otherwise they're somewhere else in the tree so we need
    -		// to build up a full list of the parentNodes for comparison
    -		while ( cur ) {
    -			ap.unshift( cur );
    -			cur = cur.parentNode;
    -		}
    -
    -		cur = bup;
    -
    -		while ( cur ) {
    -			bp.unshift( cur );
    -			cur = cur.parentNode;
    -		}
    -
    -		al = ap.length;
    -		bl = bp.length;
    -
    -		// Start walking down the tree looking for a discrepancy
    -		for ( var i = 0; i < al && i < bl; i++ ) {
    -			if ( ap[i] !== bp[i] ) {
    -				return siblingCheck( ap[i], bp[i] );
    -			}
    -		}
    -
    -		// We ended someplace up the tree so do a sibling check
    -		return i === al ?
    -			siblingCheck( a, bp[i], -1 ) :
    -			siblingCheck( ap[i], b, 1 );
    -	};
    -
    -// Always assume the presence of duplicates if sort doesn't
    -// pass them to our comparison function (as in Google Chrome).
    -[0, 0].sort( sortOrder );
    -baseHasDuplicate = !hasDuplicate;
    -
    -// Document sorting and removing duplicates
    -Sizzle.uniqueSort = function( results ) {
    -	var elem,
    -		i = 1;
    -
    -	hasDuplicate = baseHasDuplicate;
    -	results.sort( sortOrder );
    -
    -	if ( hasDuplicate ) {
    -		for ( ; (elem = results[i]); i++ ) {
    -			if ( elem === results[ i - 1 ] ) {
    -				results.splice( i--, 1 );
    -			}
    -		}
    -	}
    -
    -	return results;
    -};
    -
    -Sizzle.error = function( msg ) {
    -	throw new Error( "Syntax error, unrecognized expression: " + msg );
    -};
    -
    -function tokenize( selector, parseOnly ) {
    -	var matched, match, tokens, type, soFar, groups, preFilters,
    -		cached = tokenCache[ expando ][ selector ];
    -
    -	if ( cached ) {
    -		return parseOnly ? 0 : cached.slice( 0 );
    -	}
    -
    -	soFar = selector;
    -	groups = [];
    -	preFilters = Expr.preFilter;
    -
    -	while ( soFar ) {
    -
    -		// Comma and first run
    -		if ( !matched || (match = rcomma.exec( soFar )) ) {
    -			if ( match ) {
    -				soFar = soFar.slice( match[0].length );
    -			}
    -			groups.push( tokens = [] );
    -		}
    -
    -		matched = false;
    -
    -		// Combinators
    -		if ( (match = rcombinators.exec( soFar )) ) {
    -			tokens.push( matched = new Token( match.shift() ) );
    -			soFar = soFar.slice( matched.length );
    -
    -			// Cast descendant combinators to space
    -			matched.type = match[0].replace( rtrim, " " );
    -		}
    -
    -		// Filters
    -		for ( type in Expr.filter ) {
    -			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
    -				// The last two arguments here are (context, xml) for backCompat
    -				(match = preFilters[ type ]( match, document, true ))) ) {
    -
    -				tokens.push( matched = new Token( match.shift() ) );
    -				soFar = soFar.slice( matched.length );
    -				matched.type = type;
    -				matched.matches = match;
    -			}
    -		}
    -
    -		if ( !matched ) {
    -			break;
    -		}
    -	}
    -
    -	// Return the length of the invalid excess
    -	// if we're just parsing
    -	// Otherwise, throw an error or return tokens
    -	return parseOnly ?
    -		soFar.length :
    -		soFar ?
    -			Sizzle.error( selector ) :
    -			// Cache the tokens
    -			tokenCache( selector, groups ).slice( 0 );
    -}
    -
    -function addCombinator( matcher, combinator, base ) {
    -	var dir = combinator.dir,
    -		checkNonElements = base && combinator.dir === "parentNode",
    -		doneName = done++;
    -
    -	return combinator.first ?
    -		// Check against closest ancestor/preceding element
    -		function( elem, context, xml ) {
    -			while ( (elem = elem[ dir ]) ) {
    -				if ( checkNonElements || elem.nodeType === 1  ) {
    -					return matcher( elem, context, xml );
    -				}
    -			}
    -		} :
    -
    -		// Check against all ancestor/preceding elements
    -		function( elem, context, xml ) {
    -			// We can't set arbitrary data on XML nodes, so they don't benefit from dir caching
    -			if ( !xml ) {
    -				var cache,
    -					dirkey = dirruns + " " + doneName + " ",
    -					cachedkey = dirkey + cachedruns;
    -				while ( (elem = elem[ dir ]) ) {
    -					if ( checkNonElements || elem.nodeType === 1 ) {
    -						if ( (cache = elem[ expando ]) === cachedkey ) {
    -							return elem.sizset;
    -						} else if ( typeof cache === "string" && cache.indexOf(dirkey) === 0 ) {
    -							if ( elem.sizset ) {
    -								return elem;
    -							}
    -						} else {
    -							elem[ expando ] = cachedkey;
    -							if ( matcher( elem, context, xml ) ) {
    -								elem.sizset = true;
    -								return elem;
    -							}
    -							elem.sizset = false;
    -						}
    -					}
    -				}
    -			} else {
    -				while ( (elem = elem[ dir ]) ) {
    -					if ( checkNonElements || elem.nodeType === 1 ) {
    -						if ( matcher( elem, context, xml ) ) {
    -							return elem;
    -						}
    -					}
    -				}
    -			}
    -		};
    -}
    -
    -function elementMatcher( matchers ) {
    -	return matchers.length > 1 ?
    -		function( elem, context, xml ) {
    -			var i = matchers.length;
    -			while ( i-- ) {
    -				if ( !matchers[i]( elem, context, xml ) ) {
    -					return false;
    -				}
    -			}
    -			return true;
    -		} :
    -		matchers[0];
    -}
    -
    -function condense( unmatched, map, filter, context, xml ) {
    -	var elem,
    -		newUnmatched = [],
    -		i = 0,
    -		len = unmatched.length,
    -		mapped = map != null;
    -
    -	for ( ; i < len; i++ ) {
    -		if ( (elem = unmatched[i]) ) {
    -			if ( !filter || filter( elem, context, xml ) ) {
    -				newUnmatched.push( elem );
    -				if ( mapped ) {
    -					map.push( i );
    -				}
    -			}
    -		}
    -	}
    -
    -	return newUnmatched;
    -}
    -
    -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
    -	if ( postFilter && !postFilter[ expando ] ) {
    -		postFilter = setMatcher( postFilter );
    -	}
    -	if ( postFinder && !postFinder[ expando ] ) {
    -		postFinder = setMatcher( postFinder, postSelector );
    -	}
    -	return markFunction(function( seed, results, context, xml ) {
    -		// Positional selectors apply to seed elements, so it is invalid to follow them with relative ones
    -		if ( seed && postFinder ) {
    -			return;
    -		}
    -
    -		var i, elem, postFilterIn,
    -			preMap = [],
    -			postMap = [],
    -			preexisting = results.length,
    -
    -			// Get initial elements from seed or context
    -			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [], seed ),
    -
    -			// Prefilter to get matcher input, preserving a map for seed-results synchronization
    -			matcherIn = preFilter && ( seed || !selector ) ?
    -				condense( elems, preMap, preFilter, context, xml ) :
    -				elems,
    -
    -			matcherOut = matcher ?
    -				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
    -				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
    -
    -					// ...intermediate processing is necessary
    -					[] :
    -
    -					// ...otherwise use results directly
    -					results :
    -				matcherIn;
    -
    -		// Find primary matches
    -		if ( matcher ) {
    -			matcher( matcherIn, matcherOut, context, xml );
    -		}
    -
    -		// Apply postFilter
    -		if ( postFilter ) {
    -			postFilterIn = condense( matcherOut, postMap );
    -			postFilter( postFilterIn, [], context, xml );
    -
    -			// Un-match failing elements by moving them back to matcherIn
    -			i = postFilterIn.length;
    -			while ( i-- ) {
    -				if ( (elem = postFilterIn[i]) ) {
    -					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
    -				}
    -			}
    -		}
    -
    -		// Keep seed and results synchronized
    -		if ( seed ) {
    -			// Ignore postFinder because it can't coexist with seed
    -			i = preFilter && matcherOut.length;
    -			while ( i-- ) {
    -				if ( (elem = matcherOut[i]) ) {
    -					seed[ preMap[i] ] = !(results[ preMap[i] ] = elem);
    -				}
    -			}
    -		} else {
    -			matcherOut = condense(
    -				matcherOut === results ?
    -					matcherOut.splice( preexisting, matcherOut.length ) :
    -					matcherOut
    -			);
    -			if ( postFinder ) {
    -				postFinder( null, results, matcherOut, xml );
    -			} else {
    -				push.apply( results, matcherOut );
    -			}
    -		}
    -	});
    -}
    -
    -function matcherFromTokens( tokens ) {
    -	var checkContext, matcher, j,
    -		len = tokens.length,
    -		leadingRelative = Expr.relative[ tokens[0].type ],
    -		implicitRelative = leadingRelative || Expr.relative[" "],
    -		i = leadingRelative ? 1 : 0,
    -
    -		// The foundational matcher ensures that elements are reachable from top-level context(s)
    -		matchContext = addCombinator( function( elem ) {
    -			return elem === checkContext;
    -		}, implicitRelative, true ),
    -		matchAnyContext = addCombinator( function( elem ) {
    -			return indexOf.call( checkContext, elem ) > -1;
    -		}, implicitRelative, true ),
    -		matchers = [ function( elem, context, xml ) {
    -			return ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
    -				(checkContext = context).nodeType ?
    -					matchContext( elem, context, xml ) :
    -					matchAnyContext( elem, context, xml ) );
    -		} ];
    -
    -	for ( ; i < len; i++ ) {
    -		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
    -			matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];
    -		} else {
    -			// The concatenated values are (context, xml) for backCompat
    -			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
    -
    -			// Return special upon seeing a positional matcher
    -			if ( matcher[ expando ] ) {
    -				// Find the next relative operator (if any) for proper handling
    -				j = ++i;
    -				for ( ; j < len; j++ ) {
    -					if ( Expr.relative[ tokens[j].type ] ) {
    -						break;
    -					}
    -				}
    -				return setMatcher(
    -					i > 1 && elementMatcher( matchers ),
    -					i > 1 && tokens.slice( 0, i - 1 ).join("").replace( rtrim, "$1" ),
    -					matcher,
    -					i < j && matcherFromTokens( tokens.slice( i, j ) ),
    -					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
    -					j < len && tokens.join("")
    -				);
    -			}
    -			matchers.push( matcher );
    -		}
    -	}
    -
    -	return elementMatcher( matchers );
    -}
    -
    -function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
    -	var bySet = setMatchers.length > 0,
    -		byElement = elementMatchers.length > 0,
    -		superMatcher = function( seed, context, xml, results, expandContext ) {
    -			var elem, j, matcher,
    -				setMatched = [],
    -				matchedCount = 0,
    -				i = "0",
    -				unmatched = seed && [],
    -				outermost = expandContext != null,
    -				contextBackup = outermostContext,
    -				// We must always have either seed elements or context
    -				elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ),
    -				// Nested matchers should use non-integer dirruns
    -				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.E);
    -
    -			if ( outermost ) {
    -				outermostContext = context !== document && context;
    -				cachedruns = superMatcher.el;
    -			}
    -
    -			// Add elements passing elementMatchers directly to results
    -			for ( ; (elem = elems[i]) != null; i++ ) {
    -				if ( byElement && elem ) {
    -					for ( j = 0; (matcher = elementMatchers[j]); j++ ) {
    -						if ( matcher( elem, context, xml ) ) {
    -							results.push( elem );
    -							break;
    -						}
    -					}
    -					if ( outermost ) {
    -						dirruns = dirrunsUnique;
    -						cachedruns = ++superMatcher.el;
    -					}
    -				}
    -
    -				// Track unmatched elements for set filters
    -				if ( bySet ) {
    -					// They will have gone through all possible matchers
    -					if ( (elem = !matcher && elem) ) {
    -						matchedCount--;
    -					}
    -
    -					// Lengthen the array for every element, matched or not
    -					if ( seed ) {
    -						unmatched.push( elem );
    -					}
    -				}
    -			}
    -
    -			// Apply set filters to unmatched elements
    -			matchedCount += i;
    -			if ( bySet && i !== matchedCount ) {
    -				for ( j = 0; (matcher = setMatchers[j]); j++ ) {
    -					matcher( unmatched, setMatched, context, xml );
    -				}
    -
    -				if ( seed ) {
    -					// Reintegrate element matches to eliminate the need for sorting
    -					if ( matchedCount > 0 ) {
    -						while ( i-- ) {
    -							if ( !(unmatched[i] || setMatched[i]) ) {
    -								setMatched[i] = pop.call( results );
    -							}
    -						}
    -					}
    -
    -					// Discard index placeholder values to get only actual matches
    -					setMatched = condense( setMatched );
    -				}
    -
    -				// Add matches to results
    -				push.apply( results, setMatched );
    -
    -				// Seedless set matches succeeding multiple successful matchers stipulate sorting
    -				if ( outermost && !seed && setMatched.length > 0 &&
    -					( matchedCount + setMatchers.length ) > 1 ) {
    -
    -					Sizzle.uniqueSort( results );
    -				}
    -			}
    -
    -			// Override manipulation of globals by nested matchers
    -			if ( outermost ) {
    -				dirruns = dirrunsUnique;
    -				outermostContext = contextBackup;
    -			}
    -
    -			return unmatched;
    -		};
    -
    -	superMatcher.el = 0;
    -	return bySet ?
    -		markFunction( superMatcher ) :
    -		superMatcher;
    -}
    -
    -compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) {
    -	var i,
    -		setMatchers = [],
    -		elementMatchers = [],
    -		cached = compilerCache[ expando ][ selector ];
    -
    -	if ( !cached ) {
    -		// Generate a function of recursive functions that can be used to check each element
    -		if ( !group ) {
    -			group = tokenize( selector );
    -		}
    -		i = group.length;
    -		while ( i-- ) {
    -			cached = matcherFromTokens( group[i] );
    -			if ( cached[ expando ] ) {
    -				setMatchers.push( cached );
    -			} else {
    -				elementMatchers.push( cached );
    -			}
    -		}
    -
    -		// Cache the compiled function
    -		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
    -	}
    -	return cached;
    -};
    -
    -function multipleContexts( selector, contexts, results, seed ) {
    -	var i = 0,
    -		len = contexts.length;
    -	for ( ; i < len; i++ ) {
    -		Sizzle( selector, contexts[i], results, seed );
    -	}
    -	return results;
    -}
    -
    -function select( selector, context, results, seed, xml ) {
    -	var i, tokens, token, type, find,
    -		match = tokenize( selector ),
    -		j = match.length;
    -
    -	if ( !seed ) {
    -		// Try to minimize operations if there is only one group
    -		if ( match.length === 1 ) {
    -
    -			// Take a shortcut and set the context if the root selector is an ID
    -			tokens = match[0] = match[0].slice( 0 );
    -			if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
    -					context.nodeType === 9 && !xml &&
    -					Expr.relative[ tokens[1].type ] ) {
    -
    -				context = Expr.find["ID"]( token.matches[0].replace( rbackslash, "" ), context, xml )[0];
    -				if ( !context ) {
    -					return results;
    -				}
    -
    -				selector = selector.slice( tokens.shift().length );
    -			}
    -
    -			// Fetch a seed set for right-to-left matching
    -			for ( i = matchExpr["POS"].test( selector ) ? -1 : tokens.length - 1; i >= 0; i-- ) {
    -				token = tokens[i];
    -
    -				// Abort if we hit a combinator
    -				if ( Expr.relative[ (type = token.type) ] ) {
    -					break;
    -				}
    -				if ( (find = Expr.find[ type ]) ) {
    -					// Search, expanding context for leading sibling combinators
    -					if ( (seed = find(
    -						token.matches[0].replace( rbackslash, "" ),
    -						rsibling.test( tokens[0].type ) && context.parentNode || context,
    -						xml
    -					)) ) {
    -
    -						// If seed is empty or no tokens remain, we can return early
    -						tokens.splice( i, 1 );
    -						selector = seed.length && tokens.join("");
    -						if ( !selector ) {
    -							push.apply( results, slice.call( seed, 0 ) );
    -							return results;
    -						}
    -
    -						break;
    -					}
    -				}
    -			}
    -		}
    -	}
    -
    -	// Compile and execute a filtering function
    -	// Provide `match` to avoid retokenization if we modified the selector above
    -	compile( selector, match )(
    -		seed,
    -		context,
    -		xml,
    -		results,
    -		rsibling.test( selector )
    -	);
    -	return results;
    -}
    -
    -if ( document.querySelectorAll ) {
    -	(function() {
    -		var disconnectedMatch,
    -			oldSelect = select,
    -			rescape = /'|\\/g,
    -			rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,
    -
    -			// qSa(:focus) reports false when true (Chrome 21),
    -			// A support test would require too much code (would include document ready)
    -			rbuggyQSA = [":focus"],
    -
    -			// matchesSelector(:focus) reports false when true (Chrome 21),
    -			// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
    -			// A support test would require too much code (would include document ready)
    -			// just skip matchesSelector for :active
    -			rbuggyMatches = [ ":active", ":focus" ],
    -			matches = docElem.matchesSelector ||
    -				docElem.mozMatchesSelector ||
    -				docElem.webkitMatchesSelector ||
    -				docElem.oMatchesSelector ||
    -				docElem.msMatchesSelector;
    -
    -		// Build QSA regex
    -		// Regex strategy adopted from Diego Perini
    -		assert(function( div ) {
    -			// Select is set to empty string on purpose
    -			// This is to test IE's treatment of not explictly
    -			// setting a boolean content attribute,
    -			// since its presence should be enough
    -			// http://bugs.jquery.com/ticket/12359
    -			div.innerHTML = "<select><option selected=''></option></select>";
    -
    -			// IE8 - Some boolean attributes are not treated correctly
    -			if ( !div.querySelectorAll("[selected]").length ) {
    -				rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" );
    -			}
    -
    -			// Webkit/Opera - :checked should return selected option elements
    -			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
    -			// IE8 throws error here (do not put tests after this one)
    -			if ( !div.querySelectorAll(":checked").length ) {
    -				rbuggyQSA.push(":checked");
    -			}
    -		});
    -
    -		assert(function( div ) {
    -
    -			// Opera 10-12/IE9 - ^= $= *= and empty values
    -			// Should not select anything
    -			div.innerHTML = "<p test=''></p>";
    -			if ( div.querySelectorAll("[test^='']").length ) {
    -				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" );
    -			}
    -
    -			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
    -			// IE8 throws error here (do not put tests after this one)
    -			div.innerHTML = "<input type='hidden'/>";
    -			if ( !div.querySelectorAll(":enabled").length ) {
    -				rbuggyQSA.push(":enabled", ":disabled");
    -			}
    -		});
    -
    -		// rbuggyQSA always contains :focus, so no need for a length check
    -		rbuggyQSA = /* rbuggyQSA.length && */ new RegExp( rbuggyQSA.join("|") );
    -
    -		select = function( selector, context, results, seed, xml ) {
    -			// Only use querySelectorAll when not filtering,
    -			// when this is not xml,
    -			// and when no QSA bugs apply
    -			if ( !seed && !xml && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
    -				var groups, i,
    -					old = true,
    -					nid = expando,
    -					newContext = context,
    -					newSelector = context.nodeType === 9 && selector;
    -
    -				// qSA works strangely on Element-rooted queries
    -				// We can work around this by specifying an extra ID on the root
    -				// and working up from there (Thanks to Andrew Dupont for the technique)
    -				// IE 8 doesn't work on object elements
    -				if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) {
    -					groups = tokenize( selector );
    -
    -					if ( (old = context.getAttribute("id")) ) {
    -						nid = old.replace( rescape, "\\$&" );
    -					} else {
    -						context.setAttribute( "id", nid );
    -					}
    -					nid = "[id='" + nid + "'] ";
    -
    -					i = groups.length;
    -					while ( i-- ) {
    -						groups[i] = nid + groups[i].join("");
    -					}
    -					newContext = rsibling.test( selector ) && context.parentNode || context;
    -					newSelector = groups.join(",");
    -				}
    -
    -				if ( newSelector ) {
    -					try {
    -						push.apply( results, slice.call( newContext.querySelectorAll(
    -							newSelector
    -						), 0 ) );
    -						return results;
    -					} catch(qsaError) {
    -					} finally {
    -						if ( !old ) {
    -							context.removeAttribute("id");
    -						}
    -					}
    -				}
    -			}
    -
    -			return oldSelect( selector, context, results, seed, xml );
    -		};
    -
    -		if ( matches ) {
    -			assert(function( div ) {
    -				// Check to see if it's possible to do matchesSelector
    -				// on a disconnected node (IE 9)
    -				disconnectedMatch = matches.call( div, "div" );
    -
    -				// This should fail with an exception
    -				// Gecko does not error, returns false instead
    -				try {
    -					matches.call( div, "[test!='']:sizzle" );
    -					rbuggyMatches.push( "!=", pseudos );
    -				} catch ( e ) {}
    -			});
    -
    -			// rbuggyMatches always contains :active and :focus, so no need for a length check
    -			rbuggyMatches = /* rbuggyMatches.length && */ new RegExp( rbuggyMatches.join("|") );
    -
    -			Sizzle.matchesSelector = function( elem, expr ) {
    -				// Make sure that attribute selectors are quoted
    -				expr = expr.replace( rattributeQuotes, "='$1']" );
    -
    -				// rbuggyMatches always contains :active, so no need for an existence check
    -				if ( !isXML( elem ) && !rbuggyMatches.test( expr ) && (!rbuggyQSA || !rbuggyQSA.test( expr )) ) {
    -					try {
    -						var ret = matches.call( elem, expr );
    -
    -						// IE 9's matchesSelector returns false on disconnected nodes
    -						if ( ret || disconnectedMatch ||
    -								// As well, disconnected nodes are said to be in a document
    -								// fragment in IE 9
    -								elem.document && elem.document.nodeType !== 11 ) {
    -							return ret;
    -						}
    -					} catch(e) {}
    -				}
    -
    -				return Sizzle( expr, null, null, [ elem ] ).length > 0;
    -			};
    -		}
    -	})();
    -}
    -
    -// Deprecated
    -Expr.pseudos["nth"] = Expr.pseudos["eq"];
    -
    -// Back-compat
    -function setFilters() {}
    -Expr.filters = setFilters.prototype = Expr.pseudos;
    -Expr.setFilters = new setFilters();
    -
    -// Override sizzle attribute retrieval
    -Sizzle.attr = jQuery.attr;
    -jQuery.find = Sizzle;
    -jQuery.expr = Sizzle.selectors;
    -jQuery.expr[":"] = jQuery.expr.pseudos;
    -jQuery.unique = Sizzle.uniqueSort;
    -jQuery.text = Sizzle.getText;
    -jQuery.isXMLDoc = Sizzle.isXML;
    -jQuery.contains = Sizzle.contains;
    -
    -
    -})( window );
    -var runtil = /Until$/,
    -	rparentsprev = /^(?:parents|prev(?:Until|All))/,
    -	isSimple = /^.[^:#\[\.,]*$/,
    -	rneedsContext = jQuery.expr.match.needsContext,
    -	// methods guaranteed to produce a unique set when starting from a unique set
    -	guaranteedUnique = {
    -		children: true,
    -		contents: true,
    -		next: true,
    -		prev: true
    -	};
    -
    -jQuery.fn.extend({
    -	find: function( selector ) {
    -		var i, l, length, n, r, ret,
    -			self = this;
    -
    -		if ( typeof selector !== "string" ) {
    -			return jQuery( selector ).filter(function() {
    -				for ( i = 0, l = self.length; i < l; i++ ) {
    -					if ( jQuery.contains( self[ i ], this ) ) {
    -						return true;
    -					}
    -				}
    -			});
    -		}
    -
    -		ret = this.pushStack( "", "find", selector );
    -
    -		for ( i = 0, l = this.length; i < l; i++ ) {
    -			length = ret.length;
    -			jQuery.find( selector, this[i], ret );
    -
    -			if ( i > 0 ) {
    -				// Make sure that the results are unique
    -				for ( n = length; n < ret.length; n++ ) {
    -					for ( r = 0; r < length; r++ ) {
    -						if ( ret[r] === ret[n] ) {
    -							ret.splice(n--, 1);
    -							break;
    -						}
    -					}
    -				}
    -			}
    -		}
    -
    -		return ret;
    -	},
    -
    -	has: function( target ) {
    -		var i,
    -			targets = jQuery( target, this ),
    -			len = targets.length;
    -
    -		return this.filter(function() {
    -			for ( i = 0; i < len; i++ ) {
    -				if ( jQuery.contains( this, targets[i] ) ) {
    -					return true;
    -				}
    -			}
    -		});
    -	},
    -
    -	not: function( selector ) {
    -		return this.pushStack( winnow(this, selector, false), "not", selector);
    -	},
    -
    -	filter: function( selector ) {
    -		return this.pushStack( winnow(this, selector, true), "filter", selector );
    -	},
    -
    -	is: function( selector ) {
    -		return !!selector && (
    -			typeof selector === "string" ?
    -				// If this is a positional/relative selector, check membership in the returned set
    -				// so $("p:first").is("p:last") won't return true for a doc with two "p".
    -				rneedsContext.test( selector ) ?
    -					jQuery( selector, this.context ).index( this[0] ) >= 0 :
    -					jQuery.filter( selector, this ).length > 0 :
    -				this.filter( selector ).length > 0 );
    -	},
    -
    -	closest: function( selectors, context ) {
    -		var cur,
    -			i = 0,
    -			l = this.length,
    -			ret = [],
    -			pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ?
    -				jQuery( selectors, context || this.context ) :
    -				0;
    -
    -		for ( ; i < l; i++ ) {
    -			cur = this[i];
    -
    -			while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) {
    -				if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {
    -					ret.push( cur );
    -					break;
    -				}
    -				cur = cur.parentNode;
    -			}
    -		}
    -
    -		ret = ret.length > 1 ? jQuery.unique( ret ) : ret;
    -
    -		return this.pushStack( ret, "closest", selectors );
    -	},
    -
    -	// Determine the position of an element within
    -	// the matched set of elements
    -	index: function( elem ) {
    -
    -		// No argument, return index in parent
    -		if ( !elem ) {
    -			return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1;
    -		}
    -
    -		// index in selector
    -		if ( typeof elem === "string" ) {
    -			return jQuery.inArray( this[0], jQuery( elem ) );
    -		}
    -
    -		// Locate the position of the desired element
    -		return jQuery.inArray(
    -			// If it receives a jQuery object, the first element is used
    -			elem.jquery ? elem[0] : elem, this );
    -	},
    -
    -	add: function( selector, context ) {
    -		var set = typeof selector === "string" ?
    -				jQuery( selector, context ) :
    -				jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ),
    -			all = jQuery.merge( this.get(), set );
    -
    -		return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
    -			all :
    -			jQuery.unique( all ) );
    -	},
    -
    -	addBack: function( selector ) {
    -		return this.add( selector == null ?
    -			this.prevObject : this.prevObject.filter(selector)
    -		);
    -	}
    -});
    -
    -jQuery.fn.andSelf = jQuery.fn.addBack;
    -
    -// A painfully simple check to see if an element is disconnected
    -// from a document (should be improved, where feasible).
    -function isDisconnected( node ) {
    -	return !node || !node.parentNode || node.parentNode.nodeType === 11;
    -}
    -
    -function sibling( cur, dir ) {
    -	do {
    -		cur = cur[ dir ];
    -	} while ( cur && cur.nodeType !== 1 );
    -
    -	return cur;
    -}
    -
    -jQuery.each({
    -	parent: function( elem ) {
    -		var parent = elem.parentNode;
    -		return parent && parent.nodeType !== 11 ? parent : null;
    -	},
    -	parents: function( elem ) {
    -		return jQuery.dir( elem, "parentNode" );
    -	},
    -	parentsUntil: function( elem, i, until ) {
    -		return jQuery.dir( elem, "parentNode", until );
    -	},
    -	next: function( elem ) {
    -		return sibling( elem, "nextSibling" );
    -	},
    -	prev: function( elem ) {
    -		return sibling( elem, "previousSibling" );
    -	},
    -	nextAll: function( elem ) {
    -		return jQuery.dir( elem, "nextSibling" );
    -	},
    -	prevAll: function( elem ) {
    -		return jQuery.dir( elem, "previousSibling" );
    -	},
    -	nextUntil: function( elem, i, until ) {
    -		return jQuery.dir( elem, "nextSibling", until );
    -	},
    -	prevUntil: function( elem, i, until ) {
    -		return jQuery.dir( elem, "previousSibling", until );
    -	},
    -	siblings: function( elem ) {
    -		return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem );
    -	},
    -	children: function( elem ) {
    -		return jQuery.sibling( elem.firstChild );
    -	},
    -	contents: function( elem ) {
    -		return jQuery.nodeName( elem, "iframe" ) ?
    -			elem.contentDocument || elem.contentWindow.document :
    -			jQuery.merge( [], elem.childNodes );
    -	}
    -}, function( name, fn ) {
    -	jQuery.fn[ name ] = function( until, selector ) {
    -		var ret = jQuery.map( this, fn, until );
    -
    -		if ( !runtil.test( name ) ) {
    -			selector = until;
    -		}
    -
    -		if ( selector && typeof selector === "string" ) {
    -			ret = jQuery.filter( selector, ret );
    -		}
    -
    -		ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret;
    -
    -		if ( this.length > 1 && rparentsprev.test( name ) ) {
    -			ret = ret.reverse();
    -		}
    -
    -		return this.pushStack( ret, name, core_slice.call( arguments ).join(",") );
    -	};
    -});
    -
    -jQuery.extend({
    -	filter: function( expr, elems, not ) {
    -		if ( not ) {
    -			expr = ":not(" + expr + ")";
    -		}
    -
    -		return elems.length === 1 ?
    -			jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] :
    -			jQuery.find.matches(expr, elems);
    -	},
    -
    -	dir: function( elem, dir, until ) {
    -		var matched = [],
    -			cur = elem[ dir ];
    -
    -		while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
    -			if ( cur.nodeType === 1 ) {
    -				matched.push( cur );
    -			}
    -			cur = cur[dir];
    -		}
    -		return matched;
    -	},
    -
    -	sibling: function( n, elem ) {
    -		var r = [];
    -
    -		for ( ; n; n = n.nextSibling ) {
    -			if ( n.nodeType === 1 && n !== elem ) {
    -				r.push( n );
    -			}
    -		}
    -
    -		return r;
    -	}
    -});
    -
    -// Implement the identical functionality for filter and not
    -function winnow( elements, qualifier, keep ) {
    -
    -	// Can't pass null or undefined to indexOf in Firefox 4
    -	// Set to 0 to skip string check
    -	qualifier = qualifier || 0;
    -
    -	if ( jQuery.isFunction( qualifier ) ) {
    -		return jQuery.grep(elements, function( elem, i ) {
    -			var retVal = !!qualifier.call( elem, i, elem );
    -			return retVal === keep;
    -		});
    -
    -	} else if ( qualifier.nodeType ) {
    -		return jQuery.grep(elements, function( elem, i ) {
    -			return ( elem === qualifier ) === keep;
    -		});
    -
    -	} else if ( typeof qualifier === "string" ) {
    -		var filtered = jQuery.grep(elements, function( elem ) {
    -			return elem.nodeType === 1;
    -		});
    -
    -		if ( isSimple.test( qualifier ) ) {
    -			return jQuery.filter(qualifier, filtered, !keep);
    -		} else {
    -			qualifier = jQuery.filter( qualifier, filtered );
    -		}
    -	}
    -
    -	return jQuery.grep(elements, function( elem, i ) {
    -		return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;
    -	});
    -}
    -function createSafeFragment( document ) {
    -	var list = nodeNames.split( "|" ),
    -	safeFrag = document.createDocumentFragment();
    -
    -	if ( safeFrag.createElement ) {
    -		while ( list.length ) {
    -			safeFrag.createElement(
    -				list.pop()
    -			);
    -		}
    -	}
    -	return safeFrag;
    -}
    -
    -var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
    -		"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
    -	rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g,
    -	rleadingWhitespace = /^\s+/,
    -	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,
    -	rtagName = /<([\w:]+)/,
    -	rtbody = /<tbody/i,
    -	rhtml = /<|&#?\w+;/,
    -	rnoInnerhtml = /<(?:script|style|link)/i,
    -	rnocache = /<(?:script|object|embed|option|style)/i,
    -	rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"),
    -	rcheckableType = /^(?:checkbox|radio)$/,
    -	// checked="checked" or checked
    -	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
    -	rscriptType = /\/(java|ecma)script/i,
    -	rcleanScript = /^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,
    -	wrapMap = {
    -		option: [ 1, "<select multiple='multiple'>", "</select>" ],
    -		legend: [ 1, "<fieldset>", "</fieldset>" ],
    -		thead: [ 1, "<table>", "</table>" ],
    -		tr: [ 2, "<table><tbody>", "</tbody></table>" ],
    -		td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
    -		col: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ],
    -		area: [ 1, "<map>", "</map>" ],
    -		_default: [ 0, "", "" ]
    -	},
    -	safeFragment = createSafeFragment( document ),
    -	fragmentDiv = safeFragment.appendChild( document.createElement("div") );
    -
    -wrapMap.optgroup = wrapMap.option;
    -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
    -wrapMap.th = wrapMap.td;
    -
    -// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags,
    -// unless wrapped in a div with non-breaking characters in front of it.
    -if ( !jQuery.support.htmlSerialize ) {
    -	wrapMap._default = [ 1, "X<div>", "</div>" ];
    -}
    -
    -jQuery.fn.extend({
    -	text: function( value ) {
    -		return jQuery.access( this, function( value ) {
    -			return value === undefined ?
    -				jQuery.text( this ) :
    -				this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) );
    -		}, null, value, arguments.length );
    -	},
    -
    -	wrapAll: function( html ) {
    -		if ( jQuery.isFunction( html ) ) {
    -			return this.each(function(i) {
    -				jQuery(this).wrapAll( html.call(this, i) );
    -			});
    -		}
    -
    -		if ( this[0] ) {
    -			// The elements to wrap the target around
    -			var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true);
    -
    -			if ( this[0].parentNode ) {
    -				wrap.insertBefore( this[0] );
    -			}
    -
    -			wrap.map(function() {
    -				var elem = this;
    -
    -				while ( elem.firstChild && elem.firstChild.nodeType === 1 ) {
    -					elem = elem.firstChild;
    -				}
    -
    -				return elem;
    -			}).append( this );
    -		}
    -
    -		return this;
    -	},
    -
    -	wrapInner: function( html ) {
    -		if ( jQuery.isFunction( html ) ) {
    -			return this.each(function(i) {
    -				jQuery(this).wrapInner( html.call(this, i) );
    -			});
    -		}
    -
    -		return this.each(function() {
    -			var self = jQuery( this ),
    -				contents = self.contents();
    -
    -			if ( contents.length ) {
    -				contents.wrapAll( html );
    -
    -			} else {
    -				self.append( html );
    -			}
    -		});
    -	},
    -
    -	wrap: function( html ) {
    -		var isFunction = jQuery.isFunction( html );
    -
    -		return this.each(function(i) {
    -			jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html );
    -		});
    -	},
    -
    -	unwrap: function() {
    -		return this.parent().each(function() {
    -			if ( !jQuery.nodeName( this, "body" ) ) {
    -				jQuery( this ).replaceWith( this.childNodes );
    -			}
    -		}).end();
    -	},
    -
    -	append: function() {
    -		return this.domManip(arguments, true, function( elem ) {
    -			if ( this.nodeType === 1 || this.nodeType === 11 ) {
    -				this.appendChild( elem );
    -			}
    -		});
    -	},
    -
    -	prepend: function() {
    -		return this.domManip(arguments, true, function( elem ) {
    -			if ( this.nodeType === 1 || this.nodeType === 11 ) {
    -				this.insertBefore( elem, this.firstChild );
    -			}
    -		});
    -	},
    -
    -	before: function() {
    -		if ( !isDisconnected( this[0] ) ) {
    -			return this.domManip(arguments, false, function( elem ) {
    -				this.parentNode.insertBefore( elem, this );
    -			});
    -		}
    -
    -		if ( arguments.length ) {
    -			var set = jQuery.clean( arguments );
    -			return this.pushStack( jQuery.merge( set, this ), "before", this.selector );
    -		}
    -	},
    -
    -	after: function() {
    -		if ( !isDisconnected( this[0] ) ) {
    -			return this.domManip(arguments, false, function( elem ) {
    -				this.parentNode.insertBefore( elem, this.nextSibling );
    -			});
    -		}
    -
    -		if ( arguments.length ) {
    -			var set = jQuery.clean( arguments );
    -			return this.pushStack( jQuery.merge( this, set ), "after", this.selector );
    -		}
    -	},
    -
    -	// keepData is for internal use only--do not document
    -	remove: function( selector, keepData ) {
    -		var elem,
    -			i = 0;
    -
    -		for ( ; (elem = this[i]) != null; i++ ) {
    -			if ( !selector || jQuery.filter( selector, [ elem ] ).length ) {
    -				if ( !keepData && elem.nodeType === 1 ) {
    -					jQuery.cleanData( elem.getElementsByTagName("*") );
    -					jQuery.cleanData( [ elem ] );
    -				}
    -
    -				if ( elem.parentNode ) {
    -					elem.parentNode.removeChild( elem );
    -				}
    -			}
    -		}
    -
    -		return this;
    -	},
    -
    -	empty: function() {
    -		var elem,
    -			i = 0;
    -
    -		for ( ; (elem = this[i]) != null; i++ ) {
    -			// Remove element nodes and prevent memory leaks
    -			if ( elem.nodeType === 1 ) {
    -				jQuery.cleanData( elem.getElementsByTagName("*") );
    -			}
    -
    -			// Remove any remaining nodes
    -			while ( elem.firstChild ) {
    -				elem.removeChild( elem.firstChild );
    -			}
    -		}
    -
    -		return this;
    -	},
    -
    -	clone: function( dataAndEvents, deepDataAndEvents ) {
    -		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
    -		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
    -
    -		return this.map( function () {
    -			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
    -		});
    -	},
    -
    -	html: function( value ) {
    -		return jQuery.access( this, function( value ) {
    -			var elem = this[0] || {},
    -				i = 0,
    -				l = this.length;
    -
    -			if ( value === undefined ) {
    -				return elem.nodeType === 1 ?
    -					elem.innerHTML.replace( rinlinejQuery, "" ) :
    -					undefined;
    -			}
    -
    -			// See if we can take a shortcut and just use innerHTML
    -			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
    -				( jQuery.support.htmlSerialize || !rnoshimcache.test( value )  ) &&
    -				( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) &&
    -				!wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) {
    -
    -				value = value.replace( rxhtmlTag, "<$1></$2>" );
    -
    -				try {
    -					for (; i < l; i++ ) {
    -						// Remove element nodes and prevent memory leaks
    -						elem = this[i] || {};
    -						if ( elem.nodeType === 1 ) {
    -							jQuery.cleanData( elem.getElementsByTagName( "*" ) );
    -							elem.innerHTML = value;
    -						}
    -					}
    -
    -					elem = 0;
    -
    -				// If using innerHTML throws an exception, use the fallback method
    -				} catch(e) {}
    -			}
    -
    -			if ( elem ) {
    -				this.empty().append( value );
    -			}
    -		}, null, value, arguments.length );
    -	},
    -
    -	replaceWith: function( value ) {
    -		if ( !isDisconnected( this[0] ) ) {
    -			// Make sure that the elements are removed from the DOM before they are inserted
    -			// this can help fix replacing a parent with child elements
    -			if ( jQuery.isFunction( value ) ) {
    -				return this.each(function(i) {
    -					var self = jQuery(this), old = self.html();
    -					self.replaceWith( value.call( this, i, old ) );
    -				});
    -			}
    -
    -			if ( typeof value !== "string" ) {
    -				value = jQuery( value ).detach();
    -			}
    -
    -			return this.each(function() {
    -				var next = this.nextSibling,
    -					parent = this.parentNode;
    -
    -				jQuery( this ).remove();
    -
    -				if ( next ) {
    -					jQuery(next).before( value );
    -				} else {
    -					jQuery(parent).append( value );
    -				}
    -			});
    -		}
    -
    -		return this.length ?
    -			this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) :
    -			this;
    -	},
    -
    -	detach: function( selector ) {
    -		return this.remove( selector, true );
    -	},
    -
    -	domManip: function( args, table, callback ) {
    -
    -		// Flatten any nested arrays
    -		args = [].concat.apply( [], args );
    -
    -		var results, first, fragment, iNoClone,
    -			i = 0,
    -			value = args[0],
    -			scripts = [],
    -			l = this.length;
    -
    -		// We can't cloneNode fragments that contain checked, in WebKit
    -		if ( !jQuery.support.checkClone && l > 1 && typeof value === "string" && rchecked.test( value ) ) {
    -			return this.each(function() {
    -				jQuery(this).domManip( args, table, callback );
    -			});
    -		}
    -
    -		if ( jQuery.isFunction(value) ) {
    -			return this.each(function(i) {
    -				var self = jQuery(this);
    -				args[0] = value.call( this, i, table ? self.html() : undefined );
    -				self.domManip( args, table, callback );
    -			});
    -		}
    -
    -		if ( this[0] ) {
    -			results = jQuery.buildFragment( args, this, scripts );
    -			fragment = results.fragment;
    -			first = fragment.firstChild;
    -
    -			if ( fragment.childNodes.length === 1 ) {
    -				fragment = first;
    -			}
    -
    -			if ( first ) {
    -				table = table && jQuery.nodeName( first, "tr" );
    -
    -				// Use the original fragment for the last item instead of the first because it can end up
    -				// being emptied incorrectly in certain situations (#8070).
    -				// Fragments from the fragment cache must always be cloned and never used in place.
    -				for ( iNoClone = results.cacheable || l - 1; i < l; i++ ) {
    -					callback.call(
    -						table && jQuery.nodeName( this[i], "table" ) ?
    -							findOrAppend( this[i], "tbody" ) :
    -							this[i],
    -						i === iNoClone ?
    -							fragment :
    -							jQuery.clone( fragment, true, true )
    -					);
    -				}
    -			}
    -
    -			// Fix #11809: Avoid leaking memory
    -			fragment = first = null;
    -
    -			if ( scripts.length ) {
    -				jQuery.each( scripts, function( i, elem ) {
    -					if ( elem.src ) {
    -						if ( jQuery.ajax ) {
    -							jQuery.ajax({
    -								url: elem.src,
    -								type: "GET",
    -								dataType: "script",
    -								async: false,
    -								global: false,
    -								"throws": true
    -							});
    -						} else {
    -							jQuery.error("no ajax");
    -						}
    -					} else {
    -						jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "" ) );
    -					}
    -
    -					if ( elem.parentNode ) {
    -						elem.parentNode.removeChild( elem );
    -					}
    -				});
    -			}
    -		}
    -
    -		return this;
    -	}
    -});
    -
    -function findOrAppend( elem, tag ) {
    -	return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) );
    -}
    -
    -function cloneCopyEvent( src, dest ) {
    -
    -	if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) {
    -		return;
    -	}
    -
    -	var type, i, l,
    -		oldData = jQuery._data( src ),
    -		curData = jQuery._data( dest, oldData ),
    -		events = oldData.events;
    -
    -	if ( events ) {
    -		delete curData.handle;
    -		curData.events = {};
    -
    -		for ( type in events ) {
    -			for ( i = 0, l = events[ type ].length; i < l; i++ ) {
    -				jQuery.event.add( dest, type, events[ type ][ i ] );
    -			}
    -		}
    -	}
    -
    -	// make the cloned public data object a copy from the original
    -	if ( curData.data ) {
    -		curData.data = jQuery.extend( {}, curData.data );
    -	}
    -}
    -
    -function cloneFixAttributes( src, dest ) {
    -	var nodeName;
    -
    -	// We do not need to do anything for non-Elements
    -	if ( dest.nodeType !== 1 ) {
    -		return;
    -	}
    -
    -	// clearAttributes removes the attributes, which we don't want,
    -	// but also removes the attachEvent events, which we *do* want
    -	if ( dest.clearAttributes ) {
    -		dest.clearAttributes();
    -	}
    -
    -	// mergeAttributes, in contrast, only merges back on the
    -	// original attributes, not the events
    -	if ( dest.mergeAttributes ) {
    -		dest.mergeAttributes( src );
    -	}
    -
    -	nodeName = dest.nodeName.toLowerCase();
    -
    -	if ( nodeName === "object" ) {
    -		// IE6-10 improperly clones children of object elements using classid.
    -		// IE10 throws NoModificationAllowedError if parent is null, #12132.
    -		if ( dest.parentNode ) {
    -			dest.outerHTML = src.outerHTML;
    -		}
    -
    -		// This path appears unavoidable for IE9. When cloning an object
    -		// element in IE9, the outerHTML strategy above is not sufficient.
    -		// If the src has innerHTML and the destination does not,
    -		// copy the src.innerHTML into the dest.innerHTML. #10324
    -		if ( jQuery.support.html5Clone && (src.innerHTML && !jQuery.trim(dest.innerHTML)) ) {
    -			dest.innerHTML = src.innerHTML;
    -		}
    -
    -	} else if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
    -		// IE6-8 fails to persist the checked state of a cloned checkbox
    -		// or radio button. Worse, IE6-7 fail to give the cloned element
    -		// a checked appearance if the defaultChecked value isn't also set
    -
    -		dest.defaultChecked = dest.checked = src.checked;
    -
    -		// IE6-7 get confused and end up setting the value of a cloned
    -		// checkbox/radio button to an empty string instead of "on"
    -		if ( dest.value !== src.value ) {
    -			dest.value = src.value;
    -		}
    -
    -	// IE6-8 fails to return the selected option to the default selected
    -	// state when cloning options
    -	} else if ( nodeName === "option" ) {
    -		dest.selected = src.defaultSelected;
    -
    -	// IE6-8 fails to set the defaultValue to the correct value when
    -	// cloning other types of input fields
    -	} else if ( nodeName === "input" || nodeName === "textarea" ) {
    -		dest.defaultValue = src.defaultValue;
    -
    -	// IE blanks contents when cloning scripts
    -	} else if ( nodeName === "script" && dest.text !== src.text ) {
    -		dest.text = src.text;
    -	}
    -
    -	// Event data gets referenced instead of copied if the expando
    -	// gets copied too
    -	dest.removeAttribute( jQuery.expando );
    -}
    -
    -jQuery.buildFragment = function( args, context, scripts ) {
    -	var fragment, cacheable, cachehit,
    -		first = args[ 0 ];
    -
    -	// Set context from what may come in as undefined or a jQuery collection or a node
    -	// Updated to fix #12266 where accessing context[0] could throw an exception in IE9/10 &
    -	// also doubles as fix for #8950 where plain objects caused createDocumentFragment exception
    -	context = context || document;
    -	context = !context.nodeType && context[0] || context;
    -	context = context.ownerDocument || context;
    -
    -	// Only cache "small" (1/2 KB) HTML strings that are associated with the main document
    -	// Cloning options loses the selected state, so don't cache them
    -	// IE 6 doesn't like it when you put <object> or <embed> elements in a fragment
    -	// Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache
    -	// Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501
    -	if ( args.length === 1 && typeof first === "string" && first.length < 512 && context === document &&
    -		first.charAt(0) === "<" && !rnocache.test( first ) &&
    -		(jQuery.support.checkClone || !rchecked.test( first )) &&
    -		(jQuery.support.html5Clone || !rnoshimcache.test( first )) ) {
    -
    -		// Mark cacheable and look for a hit
    -		cacheable = true;
    -		fragment = jQuery.fragments[ first ];
    -		cachehit = fragment !== undefined;
    -	}
    -
    -	if ( !fragment ) {
    -		fragment = context.createDocumentFragment();
    -		jQuery.clean( args, context, fragment, scripts );
    -
    -		// Update the cache, but only store false
    -		// unless this is a second parsing of the same content
    -		if ( cacheable ) {
    -			jQuery.fragments[ first ] = cachehit && fragment;
    -		}
    -	}
    -
    -	return { fragment: fragment, cacheable: cacheable };
    -};
    -
    -jQuery.fragments = {};
    -
    -jQuery.each({
    -	appendTo: "append",
    -	prependTo: "prepend",
    -	insertBefore: "before",
    -	insertAfter: "after",
    -	replaceAll: "replaceWith"
    -}, function( name, original ) {
    -	jQuery.fn[ name ] = function( selector ) {
    -		var elems,
    -			i = 0,
    -			ret = [],
    -			insert = jQuery( selector ),
    -			l = insert.length,
    -			parent = this.length === 1 && this[0].parentNode;
    -
    -		if ( (parent == null || parent && parent.nodeType === 11 && parent.childNodes.length === 1) && l === 1 ) {
    -			insert[ original ]( this[0] );
    -			return this;
    -		} else {
    -			for ( ; i < l; i++ ) {
    -				elems = ( i > 0 ? this.clone(true) : this ).get();
    -				jQuery( insert[i] )[ original ]( elems );
    -				ret = ret.concat( elems );
    -			}
    -
    -			return this.pushStack( ret, name, insert.selector );
    -		}
    -	};
    -});
    -
    -function getAll( elem ) {
    -	if ( typeof elem.getElementsByTagName !== "undefined" ) {
    -		return elem.getElementsByTagName( "*" );
    -
    -	} else if ( typeof elem.querySelectorAll !== "undefined" ) {
    -		return elem.querySelectorAll( "*" );
    -
    -	} else {
    -		return [];
    -	}
    -}
    -
    -// Used in clean, fixes the defaultChecked property
    -function fixDefaultChecked( elem ) {
    -	if ( rcheckableType.test( elem.type ) ) {
    -		elem.defaultChecked = elem.checked;
    -	}
    -}
    -
    -jQuery.extend({
    -	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
    -		var srcElements,
    -			destElements,
    -			i,
    -			clone;
    -
    -		if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) {
    -			clone = elem.cloneNode( true );
    -
    -		// IE<=8 does not properly clone detached, unknown element nodes
    -		} else {
    -			fragmentDiv.innerHTML = elem.outerHTML;
    -			fragmentDiv.removeChild( clone = fragmentDiv.firstChild );
    -		}
    -
    -		if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) &&
    -				(elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) {
    -			// IE copies events bound via attachEvent when using cloneNode.
    -			// Calling detachEvent on the clone will also remove the events
    -			// from the original. In order to get around this, we use some
    -			// proprietary methods to clear the events. Thanks to MooTools
    -			// guys for this hotness.
    -
    -			cloneFixAttributes( elem, clone );
    -
    -			// Using Sizzle here is crazy slow, so we use getElementsByTagName instead
    -			srcElements = getAll( elem );
    -			destElements = getAll( clone );
    -
    -			// Weird iteration because IE will replace the length property
    -			// with an element if you are cloning the body and one of the
    -			// elements on the page has a name or id of "length"
    -			for ( i = 0; srcElements[i]; ++i ) {
    -				// Ensure that the destination node is not null; Fixes #9587
    -				if ( destElements[i] ) {
    -					cloneFixAttributes( srcElements[i], destElements[i] );
    -				}
    -			}
    -		}
    -
    -		// Copy the events from the original to the clone
    -		if ( dataAndEvents ) {
    -			cloneCopyEvent( elem, clone );
    -
    -			if ( deepDataAndEvents ) {
    -				srcElements = getAll( elem );
    -				destElements = getAll( clone );
    -
    -				for ( i = 0; srcElements[i]; ++i ) {
    -					cloneCopyEvent( srcElements[i], destElements[i] );
    -				}
    -			}
    -		}
    -
    -		srcElements = destElements = null;
    -
    -		// Return the cloned set
    -		return clone;
    -	},
    -
    -	clean: function( elems, context, fragment, scripts ) {
    -		var i, j, elem, tag, wrap, depth, div, hasBody, tbody, len, handleScript, jsTags,
    -			safe = context === document && safeFragment,
    -			ret = [];
    -
    -		// Ensure that context is a document
    -		if ( !context || typeof context.createDocumentFragment === "undefined" ) {
    -			context = document;
    -		}
    -
    -		// Use the already-created safe fragment if context permits
    -		for ( i = 0; (elem = elems[i]) != null; i++ ) {
    -			if ( typeof elem === "number" ) {
    -				elem += "";
    -			}
    -
    -			if ( !elem ) {
    -				continue;
    -			}
    -
    -			// Convert html string into DOM nodes
    -			if ( typeof elem === "string" ) {
    -				if ( !rhtml.test( elem ) ) {
    -					elem = context.createTextNode( elem );
    -				} else {
    -					// Ensure a safe container in which to render the html
    -					safe = safe || createSafeFragment( context );
    -					div = context.createElement("div");
    -					safe.appendChild( div );
    -
    -					// Fix "XHTML"-style tags in all browsers
    -					elem = elem.replace(rxhtmlTag, "<$1></$2>");
    -
    -					// Go to html and back, then peel off extra wrappers
    -					tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase();
    -					wrap = wrapMap[ tag ] || wrapMap._default;
    -					depth = wrap[0];
    -					div.innerHTML = wrap[1] + elem + wrap[2];
    -
    -					// Move to the right depth
    -					while ( depth-- ) {
    -						div = div.lastChild;
    -					}
    -
    -					// Remove IE's autoinserted <tbody> from table fragments
    -					if ( !jQuery.support.tbody ) {
    -
    -						// String was a <table>, *may* have spurious <tbody>
    -						hasBody = rtbody.test(elem);
    -							tbody = tag === "table" && !hasBody ?
    -								div.firstChild && div.firstChild.childNodes :
    -
    -								// String was a bare <thead> or <tfoot>
    -								wrap[1] === "<table>" && !hasBody ?
    -									div.childNodes :
    -									[];
    -
    -						for ( j = tbody.length - 1; j >= 0 ; --j ) {
    -							if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) {
    -								tbody[ j ].parentNode.removeChild( tbody[ j ] );
    -							}
    -						}
    -					}
    -
    -					// IE completely kills leading whitespace when innerHTML is used
    -					if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) {
    -						div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild );
    -					}
    -
    -					elem = div.childNodes;
    -
    -					// Take out of fragment container (we need a fresh div each time)
    -					div.parentNode.removeChild( div );
    -				}
    -			}
    -
    -			if ( elem.nodeType ) {
    -				ret.push( elem );
    -			} else {
    -				jQuery.merge( ret, elem );
    -			}
    -		}
    -
    -		// Fix #11356: Clear elements from safeFragment
    -		if ( div ) {
    -			elem = div = safe = null;
    -		}
    -
    -		// Reset defaultChecked for any radios and checkboxes
    -		// about to be appended to the DOM in IE 6/7 (#8060)
    -		if ( !jQuery.support.appendChecked ) {
    -			for ( i = 0; (elem = ret[i]) != null; i++ ) {
    -				if ( jQuery.nodeName( elem, "input" ) ) {
    -					fixDefaultChecked( elem );
    -				} else if ( typeof elem.getElementsByTagName !== "undefined" ) {
    -					jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked );
    -				}
    -			}
    -		}
    -
    -		// Append elements to a provided document fragment
    -		if ( fragment ) {
    -			// Special handling of each script element
    -			handleScript = function( elem ) {
    -				// Check if we consider it executable
    -				if ( !elem.type || rscriptType.test( elem.type ) ) {
    -					// Detach the script and store it in the scripts array (if provided) or the fragment
    -					// Return truthy to indicate that it has been handled
    -					return scripts ?
    -						scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
    -						fragment.appendChild( elem );
    -				}
    -			};
    -
    -			for ( i = 0; (elem = ret[i]) != null; i++ ) {
    -				// Check if we're done after handling an executable script
    -				if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
    -					// Append to fragment and handle embedded scripts
    -					fragment.appendChild( elem );
    -					if ( typeof elem.getElementsByTagName !== "undefined" ) {
    -						// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
    -						jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
    -
    -						// Splice the scripts into ret after their former ancestor and advance our index beyond them
    -						ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
    -						i += jsTags.length;
    -					}
    -				}
    -			}
    -		}
    -
    -		return ret;
    -	},
    -
    -	cleanData: function( elems, /* internal */ acceptData ) {
    -		var data, id, elem, type,
    -			i = 0,
    -			internalKey = jQuery.expando,
    -			cache = jQuery.cache,
    -			deleteExpando = jQuery.support.deleteExpando,
    -			special = jQuery.event.special;
    -
    -		for ( ; (elem = elems[i]) != null; i++ ) {
    -
    -			if ( acceptData || jQuery.acceptData( elem ) ) {
    -
    -				id = elem[ internalKey ];
    -				data = id && cache[ id ];
    -
    -				if ( data ) {
    -					if ( data.events ) {
    -						for ( type in data.events ) {
    -							if ( special[ type ] ) {
    -								jQuery.event.remove( elem, type );
    -
    -							// This is a shortcut to avoid jQuery.event.remove's overhead
    -							} else {
    -								jQuery.removeEvent( elem, type, data.handle );
    -							}
    -						}
    -					}
    -
    -					// Remove cache only if it was not already removed by jQuery.event.remove
    -					if ( cache[ id ] ) {
    -
    -						delete cache[ id ];
    -
    -						// IE does not allow us to delete expando properties from nodes,
    -						// nor does it have a removeAttribute function on Document nodes;
    -						// we must handle all of these cases
    -						if ( deleteExpando ) {
    -							delete elem[ internalKey ];
    -
    -						} else if ( elem.removeAttribute ) {
    -							elem.removeAttribute( internalKey );
    -
    -						} else {
    -							elem[ internalKey ] = null;
    -						}
    -
    -						jQuery.deletedIds.push( id );
    -					}
    -				}
    -			}
    -		}
    -	}
    -});
    -// Limit scope pollution from any deprecated API
    -(function() {
    -
    -var matched, browser;
    -
    -// Use of jQuery.browser is frowned upon.
    -// More details: http://api.jquery.com/jQuery.browser
    -// jQuery.uaMatch maintained for back-compat
    -jQuery.uaMatch = function( ua ) {
    -	ua = ua.toLowerCase();
    -
    -	var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
    -		/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
    -		/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
    -		/(msie) ([\w.]+)/.exec( ua ) ||
    -		ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
    -		[];
    -
    -	return {
    -		browser: match[ 1 ] || "",
    -		version: match[ 2 ] || "0"
    -	};
    -};
    -
    -matched = jQuery.uaMatch( navigator.userAgent );
    -browser = {};
    -
    -if ( matched.browser ) {
    -	browser[ matched.browser ] = true;
    -	browser.version = matched.version;
    -}
    -
    -// Chrome is Webkit, but Webkit is also Safari.
    -if ( browser.chrome ) {
    -	browser.webkit = true;
    -} else if ( browser.webkit ) {
    -	browser.safari = true;
    -}
    -
    -jQuery.browser = browser;
    -
    -jQuery.sub = function() {
    -	function jQuerySub( selector, context ) {
    -		return new jQuerySub.fn.init( selector, context );
    -	}
    -	jQuery.extend( true, jQuerySub, this );
    -	jQuerySub.superclass = this;
    -	jQuerySub.fn = jQuerySub.prototype = this();
    -	jQuerySub.fn.constructor = jQuerySub;
    -	jQuerySub.sub = this.sub;
    -	jQuerySub.fn.init = function init( selector, context ) {
    -		if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {
    -			context = jQuerySub( context );
    -		}
    -
    -		return jQuery.fn.init.call( this, selector, context, rootjQuerySub );
    -	};
    -	jQuerySub.fn.init.prototype = jQuerySub.fn;
    -	var rootjQuerySub = jQuerySub(document);
    -	return jQuerySub;
    -};
    -
    -})();
    -var curCSS, iframe, iframeDoc,
    -	ralpha = /alpha\([^)]*\)/i,
    -	ropacity = /opacity=([^)]*)/,
    -	rposition = /^(top|right|bottom|left)$/,
    -	// swappable if display is none or starts with table except "table", "table-cell", or "table-caption"
    -	// see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
    -	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
    -	rmargin = /^margin/,
    -	rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ),
    -	rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ),
    -	rrelNum = new RegExp( "^([-+])=(" + core_pnum + ")", "i" ),
    -	elemdisplay = {},
    -
    -	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
    -	cssNormalTransform = {
    -		letterSpacing: 0,
    -		fontWeight: 400
    -	},
    -
    -	cssExpand = [ "Top", "Right", "Bottom", "Left" ],
    -	cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
    -
    -	eventsToggle = jQuery.fn.toggle;
    -
    -// return a css property mapped to a potentially vendor prefixed property
    -function vendorPropName( style, name ) {
    -
    -	// shortcut for names that are not vendor prefixed
    -	if ( name in style ) {
    -		return name;
    -	}
    -
    -	// check for vendor prefixed names
    -	var capName = name.charAt(0).toUpperCase() + name.slice(1),
    -		origName = name,
    -		i = cssPrefixes.length;
    -
    -	while ( i-- ) {
    -		name = cssPrefixes[ i ] + capName;
    -		if ( name in style ) {
    -			return name;
    -		}
    -	}
    -
    -	return origName;
    -}
    -
    -function isHidden( elem, el ) {
    -	elem = el || elem;
    -	return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
    -}
    -
    -function showHide( elements, show ) {
    -	var elem, display,
    -		values = [],
    -		index = 0,
    -		length = elements.length;
    -
    -	for ( ; index < length; index++ ) {
    -		elem = elements[ index ];
    -		if ( !elem.style ) {
    -			continue;
    -		}
    -		values[ index ] = jQuery._data( elem, "olddisplay" );
    -		if ( show ) {
    -			// Reset the inline display of this element to learn if it is
    -			// being hidden by cascaded rules or not
    -			if ( !values[ index ] && elem.style.display === "none" ) {
    -				elem.style.display = "";
    -			}
    -
    -			// Set elements which have been overridden with display: none
    -			// in a stylesheet to whatever the default browser style is
    -			// for such an element
    -			if ( elem.style.display === "" && isHidden( elem ) ) {
    -				values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) );
    -			}
    -		} else {
    -			display = curCSS( elem, "display" );
    -
    -			if ( !values[ index ] && display !== "none" ) {
    -				jQuery._data( elem, "olddisplay", display );
    -			}
    -		}
    -	}
    -
    -	// Set the display of most of the elements in a second loop
    -	// to avoid the constant reflow
    -	for ( index = 0; index < length; index++ ) {
    -		elem = elements[ index ];
    -		if ( !elem.style ) {
    -			continue;
    -		}
    -		if ( !show || elem.style.display === "none" || elem.style.display === "" ) {
    -			elem.style.display = show ? values[ index ] || "" : "none";
    -		}
    -	}
    -
    -	return elements;
    -}
    -
    -jQuery.fn.extend({
    -	css: function( name, value ) {
    -		return jQuery.access( this, function( elem, name, value ) {
    -			return value !== undefined ?
    -				jQuery.style( elem, name, value ) :
    -				jQuery.css( elem, name );
    -		}, name, value, arguments.length > 1 );
    -	},
    -	show: function() {
    -		return showHide( this, true );
    -	},
    -	hide: function() {
    -		return showHide( this );
    -	},
    -	toggle: function( state, fn2 ) {
    -		var bool = typeof state === "boolean";
    -
    -		if ( jQuery.isFunction( state ) && jQuery.isFunction( fn2 ) ) {
    -			return eventsToggle.apply( this, arguments );
    -		}
    -
    -		return this.each(function() {
    -			if ( bool ? state : isHidden( this ) ) {
    -				jQuery( this ).show();
    -			} else {
    -				jQuery( this ).hide();
    -			}
    -		});
    -	}
    -});
    -
    -jQuery.extend({
    -	// Add in style property hooks for overriding the default
    -	// behavior of getting and setting a style property
    -	cssHooks: {
    -		opacity: {
    -			get: function( elem, computed ) {
    -				if ( computed ) {
    -					// We should always get a number back from opacity
    -					var ret = curCSS( elem, "opacity" );
    -					return ret === "" ? "1" : ret;
    -
    -				}
    -			}
    -		}
    -	},
    -
    -	// Exclude the following css properties to add px
    -	cssNumber: {
    -		"fillOpacity": true,
    -		"fontWeight": true,
    -		"lineHeight": true,
    -		"opacity": true,
    -		"orphans": true,
    -		"widows": true,
    -		"zIndex": true,
    -		"zoom": true
    -	},
    -
    -	// Add in properties whose names you wish to fix before
    -	// setting or getting the value
    -	cssProps: {
    -		// normalize float css property
    -		"float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat"
    -	},
    -
    -	// Get and set the style property on a DOM Node
    -	style: function( elem, name, value, extra ) {
    -		// Don't set styles on text and comment nodes
    -		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
    -			return;
    -		}
    -
    -		// Make sure that we're working with the right name
    -		var ret, type, hooks,
    -			origName = jQuery.camelCase( name ),
    -			style = elem.style;
    -
    -		name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) );
    -
    -		// gets hook for the prefixed version
    -		// followed by the unprefixed version
    -		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
    -
    -		// Check if we're setting a value
    -		if ( value !== undefined ) {
    -			type = typeof value;
    -
    -			// convert relative number strings (+= or -=) to relative numbers. #7345
    -			if ( type === "string" && (ret = rrelNum.exec( value )) ) {
    -				value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) );
    -				// Fixes bug #9237
    -				type = "number";
    -			}
    -
    -			// Make sure that NaN and null values aren't set. See: #7116
    -			if ( value == null || type === "number" && isNaN( value ) ) {
    -				return;
    -			}
    -
    -			// If a number was passed in, add 'px' to the (except for certain CSS properties)
    -			if ( type === "number" && !jQuery.cssNumber[ origName ] ) {
    -				value += "px";
    -			}
    -
    -			// If a hook was provided, use that value, otherwise just set the specified value
    -			if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) {
    -				// Wrapped to prevent IE from throwing errors when 'invalid' values are provided
    -				// Fixes bug #5509
    -				try {
    -					style[ name ] = value;
    -				} catch(e) {}
    -			}
    -
    -		} else {
    -			// If a hook was provided get the non-computed value from there
    -			if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) {
    -				return ret;
    -			}
    -
    -			// Otherwise just get the value from the style object
    -			return style[ name ];
    -		}
    -	},
    -
    -	css: function( elem, name, numeric, extra ) {
    -		var val, num, hooks,
    -			origName = jQuery.camelCase( name );
    -
    -		// Make sure that we're working with the right name
    -		name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) );
    -
    -		// gets hook for the prefixed version
    -		// followed by the unprefixed version
    -		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
    -
    -		// If a hook was provided get the computed value from there
    -		if ( hooks && "get" in hooks ) {
    -			val = hooks.get( elem, true, extra );
    -		}
    -
    -		// Otherwise, if a way to get the computed value exists, use that
    -		if ( val === undefined ) {
    -			val = curCSS( elem, name );
    -		}
    -
    -		//convert "normal" to computed value
    -		if ( val === "normal" && name in cssNormalTransform ) {
    -			val = cssNormalTransform[ name ];
    -		}
    -
    -		// Return, converting to number if forced or a qualifier was provided and val looks numeric
    -		if ( numeric || extra !== undefined ) {
    -			num = parseFloat( val );
    -			return numeric || jQuery.isNumeric( num ) ? num || 0 : val;
    -		}
    -		return val;
    -	},
    -
    -	// A method for quickly swapping in/out CSS properties to get correct calculations
    -	swap: function( elem, options, callback ) {
    -		var ret, name,
    -			old = {};
    -
    -		// Remember the old values, and insert the new ones
    -		for ( name in options ) {
    -			old[ name ] = elem.style[ name ];
    -			elem.style[ name ] = options[ name ];
    -		}
    -
    -		ret = callback.call( elem );
    -
    -		// Revert the old values
    -		for ( name in options ) {
    -			elem.style[ name ] = old[ name ];
    -		}
    -
    -		return ret;
    -	}
    -});
    -
    -// NOTE: To any future maintainer, we've window.getComputedStyle
    -// because jsdom on node.js will break without it.
    -if ( window.getComputedStyle ) {
    -	curCSS = function( elem, name ) {
    -		var ret, width, minWidth, maxWidth,
    -			computed = window.getComputedStyle( elem, null ),
    -			style = elem.style;
    -
    -		if ( computed ) {
    -
    -			ret = computed[ name ];
    -			if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) {
    -				ret = jQuery.style( elem, name );
    -			}
    -
    -			// A tribute to the "awesome hack by Dean Edwards"
    -			// Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right
    -			// Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels
    -			// this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values
    -			if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) {
    -				width = style.width;
    -				minWidth = style.minWidth;
    -				maxWidth = style.maxWidth;
    -
    -				style.minWidth = style.maxWidth = style.width = ret;
    -				ret = computed.width;
    -
    -				style.width = width;
    -				style.minWidth = minWidth;
    -				style.maxWidth = maxWidth;
    -			}
    -		}
    -
    -		return ret;
    -	};
    -} else if ( document.documentElement.currentStyle ) {
    -	curCSS = function( elem, name ) {
    -		var left, rsLeft,
    -			ret = elem.currentStyle && elem.currentStyle[ name ],
    -			style = elem.style;
    -
    -		// Avoid setting ret to empty string here
    -		// so we don't default to auto
    -		if ( ret == null && style && style[ name ] ) {
    -			ret = style[ name ];
    -		}
    -
    -		// From the awesome hack by Dean Edwards
    -		// http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
    -
    -		// If we're not dealing with a regular pixel number
    -		// but a number that has a weird ending, we need to convert it to pixels
    -		// but not position css attributes, as those are proportional to the parent element instead
    -		// and we can't measure the parent instead because it might trigger a "stacking dolls" problem
    -		if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {
    -
    -			// Remember the original values
    -			left = style.left;
    -			rsLeft = elem.runtimeStyle && elem.runtimeStyle.left;
    -
    -			// Put in the new values to get a computed value out
    -			if ( rsLeft ) {
    -				elem.runtimeStyle.left = elem.currentStyle.left;
    -			}
    -			style.left = name === "fontSize" ? "1em" : ret;
    -			ret = style.pixelLeft + "px";
    -
    -			// Revert the changed values
    -			style.left = left;
    -			if ( rsLeft ) {
    -				elem.runtimeStyle.left = rsLeft;
    -			}
    -		}
    -
    -		return ret === "" ? "auto" : ret;
    -	};
    -}
    -
    -function setPositiveNumber( elem, value, subtract ) {
    -	var matches = rnumsplit.exec( value );
    -	return matches ?
    -			Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) :
    -			value;
    -}
    -
    -function augmentWidthOrHeight( elem, name, extra, isBorderBox ) {
    -	var i = extra === ( isBorderBox ? "border" : "content" ) ?
    -		// If we already have the right measurement, avoid augmentation
    -		4 :
    -		// Otherwise initialize for horizontal or vertical properties
    -		name === "width" ? 1 : 0,
    -
    -		val = 0;
    -
    -	for ( ; i < 4; i += 2 ) {
    -		// both box models exclude margin, so add it if we want it
    -		if ( extra === "margin" ) {
    -			// we use jQuery.css instead of curCSS here
    -			// because of the reliableMarginRight CSS hook!
    -			val += jQuery.css( elem, extra + cssExpand[ i ], true );
    -		}
    -
    -		// From this point on we use curCSS for maximum performance (relevant in animations)
    -		if ( isBorderBox ) {
    -			// border-box includes padding, so remove it if we want content
    -			if ( extra === "content" ) {
    -				val -= parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
    -			}
    -
    -			// at this point, extra isn't border nor margin, so remove border
    -			if ( extra !== "margin" ) {
    -				val -= parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
    -			}
    -		} else {
    -			// at this point, extra isn't content, so add padding
    -			val += parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0;
    -
    -			// at this point, extra isn't content nor padding, so add border
    -			if ( extra !== "padding" ) {
    -				val += parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0;
    -			}
    -		}
    -	}
    -
    -	return val;
    -}
    -
    -function getWidthOrHeight( elem, name, extra ) {
    -
    -	// Start with offset property, which is equivalent to the border-box value
    -	var val = name === "width" ? elem.offsetWidth : elem.offsetHeight,
    -		valueIsBorderBox = true,
    -		isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box";
    -
    -	// some non-html elements return undefined for offsetWidth, so check for null/undefined
    -	// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285
    -	// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668
    -	if ( val <= 0 || val == null ) {
    -		// Fall back to computed then uncomputed css if necessary
    -		val = curCSS( elem, name );
    -		if ( val < 0 || val == null ) {
    -			val = elem.style[ name ];
    -		}
    -
    -		// Computed unit is not pixels. Stop here and return.
    -		if ( rnumnonpx.test(val) ) {
    -			return val;
    -		}
    -
    -		// we need the check for style in case a browser which returns unreliable values
    -		// for getComputedStyle silently falls back to the reliable elem.style
    -		valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] );
    -
    -		// Normalize "", auto, and prepare for extra
    -		val = parseFloat( val ) || 0;
    -	}
    -
    -	// use the active box-sizing model to add/subtract irrelevant styles
    -	return ( val +
    -		augmentWidthOrHeight(
    -			elem,
    -			name,
    -			extra || ( isBorderBox ? "border" : "content" ),
    -			valueIsBorderBox
    -		)
    -	) + "px";
    -}
    -
    -
    -// Try to determine the default display value of an element
    -function css_defaultDisplay( nodeName ) {
    -	if ( elemdisplay[ nodeName ] ) {
    -		return elemdisplay[ nodeName ];
    -	}
    -
    -	var elem = jQuery( "<" + nodeName + ">" ).appendTo( document.body ),
    -		display = elem.css("display");
    -	elem.remove();
    -
    -	// If the simple way fails,
    -	// get element's real default display by attaching it to a temp iframe
    -	if ( display === "none" || display === "" ) {
    -		// Use the already-created iframe if possible
    -		iframe = document.body.appendChild(
    -			iframe || jQuery.extend( document.createElement("iframe"), {
    -				frameBorder: 0,
    -				width: 0,
    -				height: 0
    -			})
    -		);
    -
    -		// Create a cacheable copy of the iframe document on first call.
    -		// IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML
    -		// document to it; WebKit & Firefox won't allow reusing the iframe document.
    -		if ( !iframeDoc || !iframe.createElement ) {
    -			iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document;
    -			iframeDoc.write("<!doctype html><html><body>");
    -			iframeDoc.close();
    -		}
    -
    -		elem = iframeDoc.body.appendChild( iframeDoc.createElement(nodeName) );
    -
    -		display = curCSS( elem, "display" );
    -		document.body.removeChild( iframe );
    -	}
    -
    -	// Store the correct default display
    -	elemdisplay[ nodeName ] = display;
    -
    -	return display;
    -}
    -
    -jQuery.each([ "height", "width" ], function( i, name ) {
    -	jQuery.cssHooks[ name ] = {
    -		get: function( elem, computed, extra ) {
    -			if ( computed ) {
    -				// certain elements can have dimension info if we invisibly show them
    -				// however, it must have a current display style that would benefit from this
    -				if ( elem.offsetWidth === 0 && rdisplayswap.test( curCSS( elem, "display" ) ) ) {
    -					return jQuery.swap( elem, cssShow, function() {
    -						return getWidthOrHeight( elem, name, extra );
    -					});
    -				} else {
    -					return getWidthOrHeight( elem, name, extra );
    -				}
    -			}
    -		},
    -
    -		set: function( elem, value, extra ) {
    -			return setPositiveNumber( elem, value, extra ?
    -				augmentWidthOrHeight(
    -					elem,
    -					name,
    -					extra,
    -					jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box"
    -				) : 0
    -			);
    -		}
    -	};
    -});
    -
    -if ( !jQuery.support.opacity ) {
    -	jQuery.cssHooks.opacity = {
    -		get: function( elem, computed ) {
    -			// IE uses filters for opacity
    -			return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ?
    -				( 0.01 * parseFloat( RegExp.$1 ) ) + "" :
    -				computed ? "1" : "";
    -		},
    -
    -		set: function( elem, value ) {
    -			var style = elem.style,
    -				currentStyle = elem.currentStyle,
    -				opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "",
    -				filter = currentStyle && currentStyle.filter || style.filter || "";
    -
    -			// IE has trouble with opacity if it does not have layout
    -			// Force it by setting the zoom level
    -			style.zoom = 1;
    -
    -			// if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652
    -			if ( value >= 1 && jQuery.trim( filter.replace( ralpha, "" ) ) === "" &&
    -				style.removeAttribute ) {
    -
    -				// Setting style.filter to null, "" & " " still leave "filter:" in the cssText
    -				// if "filter:" is present at all, clearType is disabled, we want to avoid this
    -				// style.removeAttribute is IE Only, but so apparently is this code path...
    -				style.removeAttribute( "filter" );
    -
    -				// if there there is no filter style applied in a css rule, we are done
    -				if ( currentStyle && !currentStyle.filter ) {
    -					return;
    -				}
    -			}
    -
    -			// otherwise, set new filter values
    -			style.filter = ralpha.test( filter ) ?
    -				filter.replace( ralpha, opacity ) :
    -				filter + " " + opacity;
    -		}
    -	};
    -}
    -
    -// These hooks cannot be added until DOM ready because the support test
    -// for it is not run until after DOM ready
    -jQuery(function() {
    -	if ( !jQuery.support.reliableMarginRight ) {
    -		jQuery.cssHooks.marginRight = {
    -			get: function( elem, computed ) {
    -				// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
    -				// Work around by temporarily setting element display to inline-block
    -				return jQuery.swap( elem, { "display": "inline-block" }, function() {
    -					if ( computed ) {
    -						return curCSS( elem, "marginRight" );
    -					}
    -				});
    -			}
    -		};
    -	}
    -
    -	// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
    -	// getComputedStyle returns percent when specified for top/left/bottom/right
    -	// rather than make the css module depend on the offset module, we just check for it here
    -	if ( !jQuery.support.pixelPosition && jQuery.fn.position ) {
    -		jQuery.each( [ "top", "left" ], function( i, prop ) {
    -			jQuery.cssHooks[ prop ] = {
    -				get: function( elem, computed ) {
    -					if ( computed ) {
    -						var ret = curCSS( elem, prop );
    -						// if curCSS returns percentage, fallback to offset
    -						return rnumnonpx.test( ret ) ? jQuery( elem ).position()[ prop ] + "px" : ret;
    -					}
    -				}
    -			};
    -		});
    -	}
    -
    -});
    -
    -if ( jQuery.expr && jQuery.expr.filters ) {
    -	jQuery.expr.filters.hidden = function( elem ) {
    -		return ( elem.offsetWidth === 0 && elem.offsetHeight === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || curCSS( elem, "display" )) === "none");
    -	};
    -
    -	jQuery.expr.filters.visible = function( elem ) {
    -		return !jQuery.expr.filters.hidden( elem );
    -	};
    -}
    -
    -// These hooks are used by animate to expand properties
    -jQuery.each({
    -	margin: "",
    -	padding: "",
    -	border: "Width"
    -}, function( prefix, suffix ) {
    -	jQuery.cssHooks[ prefix + suffix ] = {
    -		expand: function( value ) {
    -			var i,
    -
    -				// assumes a single number if not a string
    -				parts = typeof value === "string" ? value.split(" ") : [ value ],
    -				expanded = {};
    -
    -			for ( i = 0; i < 4; i++ ) {
    -				expanded[ prefix + cssExpand[ i ] + suffix ] =
    -					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
    -			}
    -
    -			return expanded;
    -		}
    -	};
    -
    -	if ( !rmargin.test( prefix ) ) {
    -		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
    -	}
    -});
    -var r20 = /%20/g,
    -	rbracket = /\[\]$/,
    -	rCRLF = /\r?\n/g,
    -	rinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
    -	rselectTextarea = /^(?:select|textarea)/i;
    -
    -jQuery.fn.extend({
    -	serialize: function() {
    -		return jQuery.param( this.serializeArray() );
    -	},
    -	serializeArray: function() {
    -		return this.map(function(){
    -			return this.elements ? jQuery.makeArray( this.elements ) : this;
    -		})
    -		.filter(function(){
    -			return this.name && !this.disabled &&
    -				( this.checked || rselectTextarea.test( this.nodeName ) ||
    -					rinput.test( this.type ) );
    -		})
    -		.map(function( i, elem ){
    -			var val = jQuery( this ).val();
    -
    -			return val == null ?
    -				null :
    -				jQuery.isArray( val ) ?
    -					jQuery.map( val, function( val, i ){
    -						return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
    -					}) :
    -					{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
    -		}).get();
    -	}
    -});
    -
    -//Serialize an array of form elements or a set of
    -//key/values into a query string
    -jQuery.param = function( a, traditional ) {
    -	var prefix,
    -		s = [],
    -		add = function( key, value ) {
    -			// If value is a function, invoke it and return its value
    -			value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value );
    -			s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value );
    -		};
    -
    -	// Set traditional to true for jQuery <= 1.3.2 behavior.
    -	if ( traditional === undefined ) {
    -		traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;
    -	}
    -
    -	// If an array was passed in, assume that it is an array of form elements.
    -	if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
    -		// Serialize the form elements
    -		jQuery.each( a, function() {
    -			add( this.name, this.value );
    -		});
    -
    -	} else {
    -		// If traditional, encode the "old" way (the way 1.3.2 or older
    -		// did it), otherwise encode params recursively.
    -		for ( prefix in a ) {
    -			buildParams( prefix, a[ prefix ], traditional, add );
    -		}
    -	}
    -
    -	// Return the resulting serialization
    -	return s.join( "&" ).replace( r20, "+" );
    -};
    -
    -function buildParams( prefix, obj, traditional, add ) {
    -	var name;
    -
    -	if ( jQuery.isArray( obj ) ) {
    -		// Serialize array item.
    -		jQuery.each( obj, function( i, v ) {
    -			if ( traditional || rbracket.test( prefix ) ) {
    -				// Treat each array item as a scalar.
    -				add( prefix, v );
    -
    -			} else {
    -				// If array item is non-scalar (array or object), encode its
    -				// numeric index to resolve deserialization ambiguity issues.
    -				// Note that rack (as of 1.0.0) can't currently deserialize
    -				// nested arrays properly, and attempting to do so may cause
    -				// a server error. Possible fixes are to modify rack's
    -				// deserialization algorithm or to provide an option or flag
    -				// to force array serialization to be shallow.
    -				buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add );
    -			}
    -		});
    -
    -	} else if ( !traditional && jQuery.type( obj ) === "object" ) {
    -		// Serialize object item.
    -		for ( name in obj ) {
    -			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
    -		}
    -
    -	} else {
    -		// Serialize scalar item.
    -		add( prefix, obj );
    -	}
    -}
    -var
    -	// Document location
    -	ajaxLocParts,
    -	ajaxLocation,
    -
    -	rhash = /#.*$/,
    -	rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
    -	// #7653, #8125, #8152: local protocol detection
    -	rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,
    -	rnoContent = /^(?:GET|HEAD)$/,
    -	rprotocol = /^\/\//,
    -	rquery = /\?/,
    -	rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
    -	rts = /([?&])_=[^&]*/,
    -	rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,
    -
    -	// Keep a copy of the old load method
    -	_load = jQuery.fn.load,
    -
    -	/* Prefilters
    -	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
    -	 * 2) These are called:
    -	 *    - BEFORE asking for a transport
    -	 *    - AFTER param serialization (s.data is a string if s.processData is true)
    -	 * 3) key is the dataType
    -	 * 4) the catchall symbol "*" can be used
    -	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
    -	 */
    -	prefilters = {},
    -
    -	/* Transports bindings
    -	 * 1) key is the dataType
    -	 * 2) the catchall symbol "*" can be used
    -	 * 3) selection will start with transport dataType and THEN go to "*" if needed
    -	 */
    -	transports = {},
    -
    -	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
    -	allTypes = ["*/"] + ["*"];
    -
    -// #8138, IE may throw an exception when accessing
    -// a field from window.location if document.domain has been set
    -try {
    -	ajaxLocation = location.href;
    -} catch( e ) {
    -	// Use the href attribute of an A element
    -	// since IE will modify it given document.location
    -	ajaxLocation = document.createElement( "a" );
    -	ajaxLocation.href = "";
    -	ajaxLocation = ajaxLocation.href;
    -}
    -
    -// Segment location into parts
    -ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
    -
    -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
    -function addToPrefiltersOrTransports( structure ) {
    -
    -	// dataTypeExpression is optional and defaults to "*"
    -	return function( dataTypeExpression, func ) {
    -
    -		if ( typeof dataTypeExpression !== "string" ) {
    -			func = dataTypeExpression;
    -			dataTypeExpression = "*";
    -		}
    -
    -		var dataType, list, placeBefore,
    -			dataTypes = dataTypeExpression.toLowerCase().split( core_rspace ),
    -			i = 0,
    -			length = dataTypes.length;
    -
    -		if ( jQuery.isFunction( func ) ) {
    -			// For each dataType in the dataTypeExpression
    -			for ( ; i < length; i++ ) {
    -				dataType = dataTypes[ i ];
    -				// We control if we're asked to add before
    -				// any existing element
    -				placeBefore = /^\+/.test( dataType );
    -				if ( placeBefore ) {
    -					dataType = dataType.substr( 1 ) || "*";
    -				}
    -				list = structure[ dataType ] = structure[ dataType ] || [];
    -				// then we add to the structure accordingly
    -				list[ placeBefore ? "unshift" : "push" ]( func );
    -			}
    -		}
    -	};
    -}
    -
    -// Base inspection function for prefilters and transports
    -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR,
    -		dataType /* internal */, inspected /* internal */ ) {
    -
    -	dataType = dataType || options.dataTypes[ 0 ];
    -	inspected = inspected || {};
    -
    -	inspected[ dataType ] = true;
    -
    -	var selection,
    -		list = structure[ dataType ],
    -		i = 0,
    -		length = list ? list.length : 0,
    -		executeOnly = ( structure === prefilters );
    -
    -	for ( ; i < length && ( executeOnly || !selection ); i++ ) {
    -		selection = list[ i ]( options, originalOptions, jqXHR );
    -		// If we got redirected to another dataType
    -		// we try there if executing only and not done already
    -		if ( typeof selection === "string" ) {
    -			if ( !executeOnly || inspected[ selection ] ) {
    -				selection = undefined;
    -			} else {
    -				options.dataTypes.unshift( selection );
    -				selection = inspectPrefiltersOrTransports(
    -						structure, options, originalOptions, jqXHR, selection, inspected );
    -			}
    -		}
    -	}
    -	// If we're only executing or nothing was selected
    -	// we try the catchall dataType if not done already
    -	if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) {
    -		selection = inspectPrefiltersOrTransports(
    -				structure, options, originalOptions, jqXHR, "*", inspected );
    -	}
    -	// unnecessary when only executing (prefilters)
    -	// but it'll be ignored by the caller in that case
    -	return selection;
    -}
    -
    -// A special extend for ajax options
    -// that takes "flat" options (not to be deep extended)
    -// Fixes #9887
    -function ajaxExtend( target, src ) {
    -	var key, deep,
    -		flatOptions = jQuery.ajaxSettings.flatOptions || {};
    -	for ( key in src ) {
    -		if ( src[ key ] !== undefined ) {
    -			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
    -		}
    -	}
    -	if ( deep ) {
    -		jQuery.extend( true, target, deep );
    -	}
    -}
    -
    -jQuery.fn.load = function( url, params, callback ) {
    -	if ( typeof url !== "string" && _load ) {
    -		return _load.apply( this, arguments );
    -	}
    -
    -	// Don't do a request if no elements are being requested
    -	if ( !this.length ) {
    -		return this;
    -	}
    -
    -	var selector, type, response,
    -		self = this,
    -		off = url.indexOf(" ");
    -
    -	if ( off >= 0 ) {
    -		selector = url.slice( off, url.length );
    -		url = url.slice( 0, off );
    -	}
    -
    -	// If it's a function
    -	if ( jQuery.isFunction( params ) ) {
    -
    -		// We assume that it's the callback
    -		callback = params;
    -		params = undefined;
    -
    -	// Otherwise, build a param string
    -	} else if ( params && typeof params === "object" ) {
    -		type = "POST";
    -	}
    -
    -	// Request the remote document
    -	jQuery.ajax({
    -		url: url,
    -
    -		// if "type" variable is undefined, then "GET" method will be used
    -		type: type,
    -		dataType: "html",
    -		data: params,
    -		complete: function( jqXHR, status ) {
    -			if ( callback ) {
    -				self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] );
    -			}
    -		}
    -	}).done(function( responseText ) {
    -
    -		// Save response for use in complete callback
    -		response = arguments;
    -
    -		// See if a selector was specified
    -		self.html( selector ?
    -
    -			// Create a dummy div to hold the results
    -			jQuery("<div>")
    -
    -				// inject the contents of the document in, removing the scripts
    -				// to avoid any 'Permission Denied' errors in IE
    -				.append( responseText.replace( rscript, "" ) )
    -
    -				// Locate the specified elements
    -				.find( selector ) :
    -
    -			// If not, just inject the full result
    -			responseText );
    -
    -	});
    -
    -	return this;
    -};
    -
    -// Attach a bunch of functions for handling common AJAX events
    -jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){
    -	jQuery.fn[ o ] = function( f ){
    -		return this.on( o, f );
    -	};
    -});
    -
    -jQuery.each( [ "get", "post" ], function( i, method ) {
    -	jQuery[ method ] = function( url, data, callback, type ) {
    -		// shift arguments if data argument was omitted
    -		if ( jQuery.isFunction( data ) ) {
    -			type = type || callback;
    -			callback = data;
    -			data = undefined;
    -		}
    -
    -		return jQuery.ajax({
    -			type: method,
    -			url: url,
    -			data: data,
    -			success: callback,
    -			dataType: type
    -		});
    -	};
    -});
    -
    -jQuery.extend({
    -
    -	getScript: function( url, callback ) {
    -		return jQuery.get( url, undefined, callback, "script" );
    -	},
    -
    -	getJSON: function( url, data, callback ) {
    -		return jQuery.get( url, data, callback, "json" );
    -	},
    -
    -	// Creates a full fledged settings object into target
    -	// with both ajaxSettings and settings fields.
    -	// If target is omitted, writes into ajaxSettings.
    -	ajaxSetup: function( target, settings ) {
    -		if ( settings ) {
    -			// Building a settings object
    -			ajaxExtend( target, jQuery.ajaxSettings );
    -		} else {
    -			// Extending ajaxSettings
    -			settings = target;
    -			target = jQuery.ajaxSettings;
    -		}
    -		ajaxExtend( target, settings );
    -		return target;
    -	},
    -
    -	ajaxSettings: {
    -		url: ajaxLocation,
    -		isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
    -		global: true,
    -		type: "GET",
    -		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
    -		processData: true,
    -		async: true,
    -		/*
    -		timeout: 0,
    -		data: null,
    -		dataType: null,
    -		username: null,
    -		password: null,
    -		cache: null,
    -		throws: false,
    -		traditional: false,
    -		headers: {},
    -		*/
    -
    -		accepts: {
    -			xml: "application/xml, text/xml",
    -			html: "text/html",
    -			text: "text/plain",
    -			json: "application/json, text/javascript",
    -			"*": allTypes
    -		},
    -
    -		contents: {
    -			xml: /xml/,
    -			html: /html/,
    -			json: /json/
    -		},
    -
    -		responseFields: {
    -			xml: "responseXML",
    -			text: "responseText"
    -		},
    -
    -		// List of data converters
    -		// 1) key format is "source_type destination_type" (a single space in-between)
    -		// 2) the catchall symbol "*" can be used for source_type
    -		converters: {
    -
    -			// Convert anything to text
    -			"* text": window.String,
    -
    -			// Text to html (true = no transformation)
    -			"text html": true,
    -
    -			// Evaluate text as a json expression
    -			"text json": jQuery.parseJSON,
    -
    -			// Parse text as xml
    -			"text xml": jQuery.parseXML
    -		},
    -
    -		// For options that shouldn't be deep extended:
    -		// you can add your own custom options here if
    -		// and when you create one that shouldn't be
    -		// deep extended (see ajaxExtend)
    -		flatOptions: {
    -			context: true,
    -			url: true
    -		}
    -	},
    -
    -	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
    -	ajaxTransport: addToPrefiltersOrTransports( transports ),
    -
    -	// Main method
    -	ajax: function( url, options ) {
    -
    -		// If url is an object, simulate pre-1.5 signature
    -		if ( typeof url === "object" ) {
    -			options = url;
    -			url = undefined;
    -		}
    -
    -		// Force options to be an object
    -		options = options || {};
    -
    -		var // ifModified key
    -			ifModifiedKey,
    -			// Response headers
    -			responseHeadersString,
    -			responseHeaders,
    -			// transport
    -			transport,
    -			// timeout handle
    -			timeoutTimer,
    -			// Cross-domain detection vars
    -			parts,
    -			// To know if global events are to be dispatched
    -			fireGlobals,
    -			// Loop variable
    -			i,
    -			// Create the final options object
    -			s = jQuery.ajaxSetup( {}, options ),
    -			// Callbacks context
    -			callbackContext = s.context || s,
    -			// Context for global events
    -			// It's the callbackContext if one was provided in the options
    -			// and if it's a DOM node or a jQuery collection
    -			globalEventContext = callbackContext !== s &&
    -				( callbackContext.nodeType || callbackContext instanceof jQuery ) ?
    -						jQuery( callbackContext ) : jQuery.event,
    -			// Deferreds
    -			deferred = jQuery.Deferred(),
    -			completeDeferred = jQuery.Callbacks( "once memory" ),
    -			// Status-dependent callbacks
    -			statusCode = s.statusCode || {},
    -			// Headers (they are sent all at once)
    -			requestHeaders = {},
    -			requestHeadersNames = {},
    -			// The jqXHR state
    -			state = 0,
    -			// Default abort message
    -			strAbort = "canceled",
    -			// Fake xhr
    -			jqXHR = {
    -
    -				readyState: 0,
    -
    -				// Caches the header
    -				setRequestHeader: function( name, value ) {
    -					if ( !state ) {
    -						var lname = name.toLowerCase();
    -						name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
    -						requestHeaders[ name ] = value;
    -					}
    -					return this;
    -				},
    -
    -				// Raw string
    -				getAllResponseHeaders: function() {
    -					return state === 2 ? responseHeadersString : null;
    -				},
    -
    -				// Builds headers hashtable if needed
    -				getResponseHeader: function( key ) {
    -					var match;
    -					if ( state === 2 ) {
    -						if ( !responseHeaders ) {
    -							responseHeaders = {};
    -							while( ( match = rheaders.exec( responseHeadersString ) ) ) {
    -								responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
    -							}
    -						}
    -						match = responseHeaders[ key.toLowerCase() ];
    -					}
    -					return match === undefined ? null : match;
    -				},
    -
    -				// Overrides response content-type header
    -				overrideMimeType: function( type ) {
    -					if ( !state ) {
    -						s.mimeType = type;
    -					}
    -					return this;
    -				},
    -
    -				// Cancel the request
    -				abort: function( statusText ) {
    -					statusText = statusText || strAbort;
    -					if ( transport ) {
    -						transport.abort( statusText );
    -					}
    -					done( 0, statusText );
    -					return this;
    -				}
    -			};
    -
    -		// Callback for when everything is done
    -		// It is defined here because jslint complains if it is declared
    -		// at the end of the function (which would be more logical and readable)
    -		function done( status, nativeStatusText, responses, headers ) {
    -			var isSuccess, success, error, response, modified,
    -				statusText = nativeStatusText;
    -
    -			// Called once
    -			if ( state === 2 ) {
    -				return;
    -			}
    -
    -			// State is "done" now
    -			state = 2;
    -
    -			// Clear timeout if it exists
    -			if ( timeoutTimer ) {
    -				clearTimeout( timeoutTimer );
    -			}
    -
    -			// Dereference transport for early garbage collection
    -			// (no matter how long the jqXHR object will be used)
    -			transport = undefined;
    -
    -			// Cache response headers
    -			responseHeadersString = headers || "";
    -
    -			// Set readyState
    -			jqXHR.readyState = status > 0 ? 4 : 0;
    -
    -			// Get response data
    -			if ( responses ) {
    -				response = ajaxHandleResponses( s, jqXHR, responses );
    -			}
    -
    -			// If successful, handle type chaining
    -			if ( status >= 200 && status < 300 || status === 304 ) {
    -
    -				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
    -				if ( s.ifModified ) {
    -
    -					modified = jqXHR.getResponseHeader("Last-Modified");
    -					if ( modified ) {
    -						jQuery.lastModified[ ifModifiedKey ] = modified;
    -					}
    -					modified = jqXHR.getResponseHeader("Etag");
    -					if ( modified ) {
    -						jQuery.etag[ ifModifiedKey ] = modified;
    -					}
    -				}
    -
    -				// If not modified
    -				if ( status === 304 ) {
    -
    -					statusText = "notmodified";
    -					isSuccess = true;
    -
    -				// If we have data
    -				} else {
    -
    -					isSuccess = ajaxConvert( s, response );
    -					statusText = isSuccess.state;
    -					success = isSuccess.data;
    -					error = isSuccess.error;
    -					isSuccess = !error;
    -				}
    -			} else {
    -				// We extract error from statusText
    -				// then normalize statusText and status for non-aborts
    -				error = statusText;
    -				if ( !statusText || status ) {
    -					statusText = "error";
    -					if ( status < 0 ) {
    -						status = 0;
    -					}
    -				}
    -			}
    -
    -			// Set data for the fake xhr object
    -			jqXHR.status = status;
    -			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
    -
    -			// Success/Error
    -			if ( isSuccess ) {
    -				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
    -			} else {
    -				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
    -			}
    -
    -			// Status-dependent callbacks
    -			jqXHR.statusCode( statusCode );
    -			statusCode = undefined;
    -
    -			if ( fireGlobals ) {
    -				globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ),
    -						[ jqXHR, s, isSuccess ? success : error ] );
    -			}
    -
    -			// Complete
    -			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
    -
    -			if ( fireGlobals ) {
    -				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
    -				// Handle the global AJAX counter
    -				if ( !( --jQuery.active ) ) {
    -					jQuery.event.trigger( "ajaxStop" );
    -				}
    -			}
    -		}
    -
    -		// Attach deferreds
    -		deferred.promise( jqXHR );
    -		jqXHR.success = jqXHR.done;
    -		jqXHR.error = jqXHR.fail;
    -		jqXHR.complete = completeDeferred.add;
    -
    -		// Status-dependent callbacks
    -		jqXHR.statusCode = function( map ) {
    -			if ( map ) {
    -				var tmp;
    -				if ( state < 2 ) {
    -					for ( tmp in map ) {
    -						statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];
    -					}
    -				} else {
    -					tmp = map[ jqXHR.status ];
    -					jqXHR.always( tmp );
    -				}
    -			}
    -			return this;
    -		};
    -
    -		// Remove hash character (#7531: and string promotion)
    -		// Add protocol if not provided (#5866: IE7 issue with protocol-less urls)
    -		// We also use the url parameter if available
    -		s.url = ( ( url || s.url ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
    -
    -		// Extract dataTypes list
    -		s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( core_rspace );
    -
    -		// A cross-domain request is in order when we have a protocol:host:port mismatch
    -		if ( s.crossDomain == null ) {
    -			parts = rurl.exec( s.url.toLowerCase() ) || false;
    -			s.crossDomain = parts && ( parts.join(":") + ( parts[ 3 ] ? "" : parts[ 1 ] === "http:" ? 80 : 443 ) ) !==
    -				( ajaxLocParts.join(":") + ( ajaxLocParts[ 3 ] ? "" : ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) );
    -		}
    -
    -		// Convert data if not already a string
    -		if ( s.data && s.processData && typeof s.data !== "string" ) {
    -			s.data = jQuery.param( s.data, s.traditional );
    -		}
    -
    -		// Apply prefilters
    -		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
    -
    -		// If request was aborted inside a prefilter, stop there
    -		if ( state === 2 ) {
    -			return jqXHR;
    -		}
    -
    -		// We can fire global events as of now if asked to
    -		fireGlobals = s.global;
    -
    -		// Uppercase the type
    -		s.type = s.type.toUpperCase();
    -
    -		// Determine if request has content
    -		s.hasContent = !rnoContent.test( s.type );
    -
    -		// Watch for a new set of requests
    -		if ( fireGlobals && jQuery.active++ === 0 ) {
    -			jQuery.event.trigger( "ajaxStart" );
    -		}
    -
    -		// More options handling for requests with no content
    -		if ( !s.hasContent ) {
    -
    -			// If data is available, append data to url
    -			if ( s.data ) {
    -				s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
    -				// #9682: remove data so that it's not used in an eventual retry
    -				delete s.data;
    -			}
    -
    -			// Get ifModifiedKey before adding the anti-cache parameter
    -			ifModifiedKey = s.url;
    -
    -			// Add anti-cache in url if needed
    -			if ( s.cache === false ) {
    -
    -				var ts = jQuery.now(),
    -					// try replacing _= if it is there
    -					ret = s.url.replace( rts, "$1_=" + ts );
    -
    -				// if nothing was replaced, add timestamp to the end
    -				s.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" );
    -			}
    -		}
    -
    -		// Set the correct header, if data is being sent
    -		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
    -			jqXHR.setRequestHeader( "Content-Type", s.contentType );
    -		}
    -
    -		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
    -		if ( s.ifModified ) {
    -			ifModifiedKey = ifModifiedKey || s.url;
    -			if ( jQuery.lastModified[ ifModifiedKey ] ) {
    -				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ ifModifiedKey ] );
    -			}
    -			if ( jQuery.etag[ ifModifiedKey ] ) {
    -				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ ifModifiedKey ] );
    -			}
    -		}
    -
    -		// Set the Accepts header for the server, depending on the dataType
    -		jqXHR.setRequestHeader(
    -			"Accept",
    -			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
    -				s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
    -				s.accepts[ "*" ]
    -		);
    -
    -		// Check for headers option
    -		for ( i in s.headers ) {
    -			jqXHR.setRequestHeader( i, s.headers[ i ] );
    -		}
    -
    -		// Allow custom headers/mimetypes and early abort
    -		if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
    -				// Abort if not done already and return
    -				return jqXHR.abort();
    -
    -		}
    -
    -		// aborting is no longer a cancellation
    -		strAbort = "abort";
    -
    -		// Install callbacks on deferreds
    -		for ( i in { success: 1, error: 1, complete: 1 } ) {
    -			jqXHR[ i ]( s[ i ] );
    -		}
    -
    -		// Get transport
    -		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
    -
    -		// If no transport, we auto-abort
    -		if ( !transport ) {
    -			done( -1, "No Transport" );
    -		} else {
    -			jqXHR.readyState = 1;
    -			// Send global event
    -			if ( fireGlobals ) {
    -				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
    -			}
    -			// Timeout
    -			if ( s.async && s.timeout > 0 ) {
    -				timeoutTimer = setTimeout( function(){
    -					jqXHR.abort( "timeout" );
    -				}, s.timeout );
    -			}
    -
    -			try {
    -				state = 1;
    -				transport.send( requestHeaders, done );
    -			} catch (e) {
    -				// Propagate exception as error if not done
    -				if ( state < 2 ) {
    -					done( -1, e );
    -				// Simply rethrow otherwise
    -				} else {
    -					throw e;
    -				}
    -			}
    -		}
    -
    -		return jqXHR;
    -	},
    -
    -	// Counter for holding the number of active queries
    -	active: 0,
    -
    -	// Last-Modified header cache for next request
    -	lastModified: {},
    -	etag: {}
    -
    -});
    -
    -/* Handles responses to an ajax request:
    - * - sets all responseXXX fields accordingly
    - * - finds the right dataType (mediates between content-type and expected dataType)
    - * - returns the corresponding response
    - */
    -function ajaxHandleResponses( s, jqXHR, responses ) {
    -
    -	var ct, type, finalDataType, firstDataType,
    -		contents = s.contents,
    -		dataTypes = s.dataTypes,
    -		responseFields = s.responseFields;
    -
    -	// Fill responseXXX fields
    -	for ( type in responseFields ) {
    -		if ( type in responses ) {
    -			jqXHR[ responseFields[type] ] = responses[ type ];
    -		}
    -	}
    -
    -	// Remove auto dataType and get content-type in the process
    -	while( dataTypes[ 0 ] === "*" ) {
    -		dataTypes.shift();
    -		if ( ct === undefined ) {
    -			ct = s.mimeType || jqXHR.getResponseHeader( "content-type" );
    -		}
    -	}
    -
    -	// Check if we're dealing with a known content-type
    -	if ( ct ) {
    -		for ( type in contents ) {
    -			if ( contents[ type ] && contents[ type ].test( ct ) ) {
    -				dataTypes.unshift( type );
    -				break;
    -			}
    -		}
    -	}
    -
    -	// Check to see if we have a response for the expected dataType
    -	if ( dataTypes[ 0 ] in responses ) {
    -		finalDataType = dataTypes[ 0 ];
    -	} else {
    -		// Try convertible dataTypes
    -		for ( type in responses ) {
    -			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
    -				finalDataType = type;
    -				break;
    -			}
    -			if ( !firstDataType ) {
    -				firstDataType = type;
    -			}
    -		}
    -		// Or just use first one
    -		finalDataType = finalDataType || firstDataType;
    -	}
    -
    -	// If we found a dataType
    -	// We add the dataType to the list if needed
    -	// and return the corresponding response
    -	if ( finalDataType ) {
    -		if ( finalDataType !== dataTypes[ 0 ] ) {
    -			dataTypes.unshift( finalDataType );
    -		}
    -		return responses[ finalDataType ];
    -	}
    -}
    -
    -// Chain conversions given the request and the original response
    -function ajaxConvert( s, response ) {
    -
    -	var conv, conv2, current, tmp,
    -		// Work with a copy of dataTypes in case we need to modify it for conversion
    -		dataTypes = s.dataTypes.slice(),
    -		prev = dataTypes[ 0 ],
    -		converters = {},
    -		i = 0;
    -
    -	// Apply the dataFilter if provided
    -	if ( s.dataFilter ) {
    -		response = s.dataFilter( response, s.dataType );
    -	}
    -
    -	// Create converters map with lowercased keys
    -	if ( dataTypes[ 1 ] ) {
    -		for ( conv in s.converters ) {
    -			converters[ conv.toLowerCase() ] = s.converters[ conv ];
    -		}
    -	}
    -
    -	// Convert to each sequential dataType, tolerating list modification
    -	for ( ; (current = dataTypes[++i]); ) {
    -
    -		// There's only work to do if current dataType is non-auto
    -		if ( current !== "*" ) {
    -
    -			// Convert response if prev dataType is non-auto and differs from current
    -			if ( prev !== "*" && prev !== current ) {
    -
    -				// Seek a direct converter
    -				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
    -
    -				// If none found, seek a pair
    -				if ( !conv ) {
    -					for ( conv2 in converters ) {
    -
    -						// If conv2 outputs current
    -						tmp = conv2.split(" ");
    -						if ( tmp[ 1 ] === current ) {
    -
    -							// If prev can be converted to accepted input
    -							conv = converters[ prev + " " + tmp[ 0 ] ] ||
    -								converters[ "* " + tmp[ 0 ] ];
    -							if ( conv ) {
    -								// Condense equivalence converters
    -								if ( conv === true ) {
    -									conv = converters[ conv2 ];
    -
    -								// Otherwise, insert the intermediate dataType
    -								} else if ( converters[ conv2 ] !== true ) {
    -									current = tmp[ 0 ];
    -									dataTypes.splice( i--, 0, current );
    -								}
    -
    -								break;
    -							}
    -						}
    -					}
    -				}
    -
    -				// Apply converter (if not an equivalence)
    -				if ( conv !== true ) {
    -
    -					// Unless errors are allowed to bubble, catch and return them
    -					if ( conv && s["throws"] ) {
    -						response = conv( response );
    -					} else {
    -						try {
    -							response = conv( response );
    -						} catch ( e ) {
    -							return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
    -						}
    -					}
    -				}
    -			}
    -
    -			// Update prev for next iteration
    -			prev = current;
    -		}
    -	}
    -
    -	return { state: "success", data: response };
    -}
    -var oldCallbacks = [],
    -	rquestion = /\?/,
    -	rjsonp = /(=)\?(?=&|$)|\?\?/,
    -	nonce = jQuery.now();
    -
    -// Default jsonp settings
    -jQuery.ajaxSetup({
    -	jsonp: "callback",
    -	jsonpCallback: function() {
    -		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
    -		this[ callback ] = true;
    -		return callback;
    -	}
    -});
    -
    -// Detect, normalize options and install callbacks for jsonp requests
    -jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
    -
    -	var callbackName, overwritten, responseContainer,
    -		data = s.data,
    -		url = s.url,
    -		hasCallback = s.jsonp !== false,
    -		replaceInUrl = hasCallback && rjsonp.test( url ),
    -		replaceInData = hasCallback && !replaceInUrl && typeof data === "string" &&
    -			!( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") &&
    -			rjsonp.test( data );
    -
    -	// Handle iff the expected data type is "jsonp" or we have a parameter to set
    -	if ( s.dataTypes[ 0 ] === "jsonp" || replaceInUrl || replaceInData ) {
    -
    -		// Get callback name, remembering preexisting value associated with it
    -		callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?
    -			s.jsonpCallback() :
    -			s.jsonpCallback;
    -		overwritten = window[ callbackName ];
    -
    -		// Insert callback into url or form data
    -		if ( replaceInUrl ) {
    -			s.url = url.replace( rjsonp, "$1" + callbackName );
    -		} else if ( replaceInData ) {
    -			s.data = data.replace( rjsonp, "$1" + callbackName );
    -		} else if ( hasCallback ) {
    -			s.url += ( rquestion.test( url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
    -		}
    -
    -		// Use data converter to retrieve json after script execution
    -		s.converters["script json"] = function() {
    -			if ( !responseContainer ) {
    -				jQuery.error( callbackName + " was not called" );
    -			}
    -			return responseContainer[ 0 ];
    -		};
    -
    -		// force json dataType
    -		s.dataTypes[ 0 ] = "json";
    -
    -		// Install callback
    -		window[ callbackName ] = function() {
    -			responseContainer = arguments;
    -		};
    -
    -		// Clean-up function (fires after converters)
    -		jqXHR.always(function() {
    -			// Restore preexisting value
    -			window[ callbackName ] = overwritten;
    -
    -			// Save back as free
    -			if ( s[ callbackName ] ) {
    -				// make sure that re-using the options doesn't screw things around
    -				s.jsonpCallback = originalSettings.jsonpCallback;
    -
    -				// save the callback name for future use
    -				oldCallbacks.push( callbackName );
    -			}
    -
    -			// Call if it was a function and we have a response
    -			if ( responseContainer && jQuery.isFunction( overwritten ) ) {
    -				overwritten( responseContainer[ 0 ] );
    -			}
    -
    -			responseContainer = overwritten = undefined;
    -		});
    -
    -		// Delegate to script
    -		return "script";
    -	}
    -});
    -// Install script dataType
    -jQuery.ajaxSetup({
    -	accepts: {
    -		script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
    -	},
    -	contents: {
    -		script: /javascript|ecmascript/
    -	},
    -	converters: {
    -		"text script": function( text ) {
    -			jQuery.globalEval( text );
    -			return text;
    -		}
    -	}
    -});
    -
    -// Handle cache's special case and global
    -jQuery.ajaxPrefilter( "script", function( s ) {
    -	if ( s.cache === undefined ) {
    -		s.cache = false;
    -	}
    -	if ( s.crossDomain ) {
    -		s.type = "GET";
    -		s.global = false;
    -	}
    -});
    -
    -// Bind script tag hack transport
    -jQuery.ajaxTransport( "script", function(s) {
    -
    -	// This transport only deals with cross domain requests
    -	if ( s.crossDomain ) {
    -
    -		var script,
    -			head = document.head || document.getElementsByTagName( "head" )[0] || document.documentElement;
    -
    -		return {
    -
    -			send: function( _, callback ) {
    -
    -				script = document.createElement( "script" );
    -
    -				script.async = "async";
    -
    -				if ( s.scriptCharset ) {
    -					script.charset = s.scriptCharset;
    -				}
    -
    -				script.src = s.url;
    -
    -				// Attach handlers for all browsers
    -				script.onload = script.onreadystatechange = function( _, isAbort ) {
    -
    -					if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
    -
    -						// Handle memory leak in IE
    -						script.onload = script.onreadystatechange = null;
    -
    -						// Remove the script
    -						if ( head && script.parentNode ) {
    -							head.removeChild( script );
    -						}
    -
    -						// Dereference the script
    -						script = undefined;
    -
    -						// Callback if not abort
    -						if ( !isAbort ) {
    -							callback( 200, "success" );
    -						}
    -					}
    -				};
    -				// Use insertBefore instead of appendChild  to circumvent an IE6 bug.
    -				// This arises when a base node is used (#2709 and #4378).
    -				head.insertBefore( script, head.firstChild );
    -			},
    -
    -			abort: function() {
    -				if ( script ) {
    -					script.onload( 0, 1 );
    -				}
    -			}
    -		};
    -	}
    -});
    -var xhrCallbacks,
    -	// #5280: Internet Explorer will keep connections alive if we don't abort on unload
    -	xhrOnUnloadAbort = window.ActiveXObject ? function() {
    -		// Abort all pending requests
    -		for ( var key in xhrCallbacks ) {
    -			xhrCallbacks[ key ]( 0, 1 );
    -		}
    -	} : false,
    -	xhrId = 0;
    -
    -// Functions to create xhrs
    -function createStandardXHR() {
    -	try {
    -		return new window.XMLHttpRequest();
    -	} catch( e ) {}
    -}
    -
    -function createActiveXHR() {
    -	try {
    -		return new window.ActiveXObject( "Microsoft.XMLHTTP" );
    -	} catch( e ) {}
    -}
    -
    -// Create the request object
    -// (This is still attached to ajaxSettings for backward compatibility)
    -jQuery.ajaxSettings.xhr = window.ActiveXObject ?
    -	/* Microsoft failed to properly
    -	 * implement the XMLHttpRequest in IE7 (can't request local files),
    -	 * so we use the ActiveXObject when it is available
    -	 * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
    -	 * we need a fallback.
    -	 */
    -	function() {
    -		return !this.isLocal && createStandardXHR() || createActiveXHR();
    -	} :
    -	// For all other browsers, use the standard XMLHttpRequest object
    -	createStandardXHR;
    -
    -// Determine support properties
    -(function( xhr ) {
    -	jQuery.extend( jQuery.support, {
    -		ajax: !!xhr,
    -		cors: !!xhr && ( "withCredentials" in xhr )
    -	});
    -})( jQuery.ajaxSettings.xhr() );
    -
    -// Create transport if the browser can provide an xhr
    -if ( jQuery.support.ajax ) {
    -
    -	jQuery.ajaxTransport(function( s ) {
    -		// Cross domain only allowed if supported through XMLHttpRequest
    -		if ( !s.crossDomain || jQuery.support.cors ) {
    -
    -			var callback;
    -
    -			return {
    -				send: function( headers, complete ) {
    -
    -					// Get a new xhr
    -					var handle, i,
    -						xhr = s.xhr();
    -
    -					// Open the socket
    -					// Passing null username, generates a login popup on Opera (#2865)
    -					if ( s.username ) {
    -						xhr.open( s.type, s.url, s.async, s.username, s.password );
    -					} else {
    -						xhr.open( s.type, s.url, s.async );
    -					}
    -
    -					// Apply custom fields if provided
    -					if ( s.xhrFields ) {
    -						for ( i in s.xhrFields ) {
    -							xhr[ i ] = s.xhrFields[ i ];
    -						}
    -					}
    -
    -					// Override mime type if needed
    -					if ( s.mimeType && xhr.overrideMimeType ) {
    -						xhr.overrideMimeType( s.mimeType );
    -					}
    -
    -					// X-Requested-With header
    -					// For cross-domain requests, seeing as conditions for a preflight are
    -					// akin to a jigsaw puzzle, we simply never set it to be sure.
    -					// (it can always be set on a per-request basis or even using ajaxSetup)
    -					// For same-domain requests, won't change header if already provided.
    -					if ( !s.crossDomain && !headers["X-Requested-With"] ) {
    -						headers[ "X-Requested-With" ] = "XMLHttpRequest";
    -					}
    -
    -					// Need an extra try/catch for cross domain requests in Firefox 3
    -					try {
    -						for ( i in headers ) {
    -							xhr.setRequestHeader( i, headers[ i ] );
    -						}
    -					} catch( _ ) {}
    -
    -					// Do send the request
    -					// This may raise an exception which is actually
    -					// handled in jQuery.ajax (so no try/catch here)
    -					xhr.send( ( s.hasContent && s.data ) || null );
    -
    -					// Listener
    -					callback = function( _, isAbort ) {
    -
    -						var status,
    -							statusText,
    -							responseHeaders,
    -							responses,
    -							xml;
    -
    -						// Firefox throws exceptions when accessing properties
    -						// of an xhr when a network error occurred
    -						// http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE)
    -						try {
    -
    -							// Was never called and is aborted or complete
    -							if ( callback && ( isAbort || xhr.readyState === 4 ) ) {
    -
    -								// Only called once
    -								callback = undefined;
    -
    -								// Do not keep as active anymore
    -								if ( handle ) {
    -									xhr.onreadystatechange = jQuery.noop;
    -									if ( xhrOnUnloadAbort ) {
    -										delete xhrCallbacks[ handle ];
    -									}
    -								}
    -
    -								// If it's an abort
    -								if ( isAbort ) {
    -									// Abort it manually if needed
    -									if ( xhr.readyState !== 4 ) {
    -										xhr.abort();
    -									}
    -								} else {
    -									status = xhr.status;
    -									responseHeaders = xhr.getAllResponseHeaders();
    -									responses = {};
    -									xml = xhr.responseXML;
    -
    -									// Construct response list
    -									if ( xml && xml.documentElement /* #4958 */ ) {
    -										responses.xml = xml;
    -									}
    -
    -									// When requesting binary data, IE6-9 will throw an exception
    -									// on any attempt to access responseText (#11426)
    -									try {
    -										responses.text = xhr.responseText;
    -									} catch( _ ) {
    -									}
    -
    -									// Firefox throws an exception when accessing
    -									// statusText for faulty cross-domain requests
    -									try {
    -										statusText = xhr.statusText;
    -									} catch( e ) {
    -										// We normalize with Webkit giving an empty statusText
    -										statusText = "";
    -									}
    -
    -									// Filter status for non standard behaviors
    -
    -									// If the request is local and we have data: assume a success
    -									// (success with no data won't get notified, that's the best we
    -									// can do given current implementations)
    -									if ( !status && s.isLocal && !s.crossDomain ) {
    -										status = responses.text ? 200 : 404;
    -									// IE - #1450: sometimes returns 1223 when it should be 204
    -									} else if ( status === 1223 ) {
    -										status = 204;
    -									}
    -								}
    -							}
    -						} catch( firefoxAccessException ) {
    -							if ( !isAbort ) {
    -								complete( -1, firefoxAccessException );
    -							}
    -						}
    -
    -						// Call complete if needed
    -						if ( responses ) {
    -							complete( status, statusText, responses, responseHeaders );
    -						}
    -					};
    -
    -					if ( !s.async ) {
    -						// if we're in sync mode we fire the callback
    -						callback();
    -					} else if ( xhr.readyState === 4 ) {
    -						// (IE6 & IE7) if it's in cache and has been
    -						// retrieved directly we need to fire the callback
    -						setTimeout( callback, 0 );
    -					} else {
    -						handle = ++xhrId;
    -						if ( xhrOnUnloadAbort ) {
    -							// Create the active xhrs callbacks list if needed
    -							// and attach the unload handler
    -							if ( !xhrCallbacks ) {
    -								xhrCallbacks = {};
    -								jQuery( window ).unload( xhrOnUnloadAbort );
    -							}
    -							// Add to list of active xhrs callbacks
    -							xhrCallbacks[ handle ] = callback;
    -						}
    -						xhr.onreadystatechange = callback;
    -					}
    -				},
    -
    -				abort: function() {
    -					if ( callback ) {
    -						callback(0,1);
    -					}
    -				}
    -			};
    -		}
    -	});
    -}
    -var fxNow, timerId,
    -	rfxtypes = /^(?:toggle|show|hide)$/,
    -	rfxnum = new RegExp( "^(?:([-+])=|)(" + core_pnum + ")([a-z%]*)$", "i" ),
    -	rrun = /queueHooks$/,
    -	animationPrefilters = [ defaultPrefilter ],
    -	tweeners = {
    -		"*": [function( prop, value ) {
    -			var end, unit,
    -				tween = this.createTween( prop, value ),
    -				parts = rfxnum.exec( value ),
    -				target = tween.cur(),
    -				start = +target || 0,
    -				scale = 1,
    -				maxIterations = 20;
    -
    -			if ( parts ) {
    -				end = +parts[2];
    -				unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" );
    -
    -				// We need to compute starting value
    -				if ( unit !== "px" && start ) {
    -					// Iteratively approximate from a nonzero starting point
    -					// Prefer the current property, because this process will be trivial if it uses the same units
    -					// Fallback to end or a simple constant
    -					start = jQuery.css( tween.elem, prop, true ) || end || 1;
    -
    -					do {
    -						// If previous iteration zeroed out, double until we get *something*
    -						// Use a string for doubling factor so we don't accidentally see scale as unchanged below
    -						scale = scale || ".5";
    -
    -						// Adjust and apply
    -						start = start / scale;
    -						jQuery.style( tween.elem, prop, start + unit );
    -
    -					// Update scale, tolerating zero or NaN from tween.cur()
    -					// And breaking the loop if scale is unchanged or perfect, or if we've just had enough
    -					} while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
    -				}
    -
    -				tween.unit = unit;
    -				tween.start = start;
    -				// If a +=/-= token was provided, we're doing a relative animation
    -				tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end;
    -			}
    -			return tween;
    -		}]
    -	};
    -
    -// Animations created synchronously will run synchronously
    -function createFxNow() {
    -	setTimeout(function() {
    -		fxNow = undefined;
    -	}, 0 );
    -	return ( fxNow = jQuery.now() );
    -}
    -
    -function createTweens( animation, props ) {
    -	jQuery.each( props, function( prop, value ) {
    -		var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ),
    -			index = 0,
    -			length = collection.length;
    -		for ( ; index < length; index++ ) {
    -			if ( collection[ index ].call( animation, prop, value ) ) {
    -
    -				// we're done with this property
    -				return;
    -			}
    -		}
    -	});
    -}
    -
    -function Animation( elem, properties, options ) {
    -	var result,
    -		index = 0,
    -		tweenerIndex = 0,
    -		length = animationPrefilters.length,
    -		deferred = jQuery.Deferred().always( function() {
    -			// don't match elem in the :animated selector
    -			delete tick.elem;
    -		}),
    -		tick = function() {
    -			var currentTime = fxNow || createFxNow(),
    -				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
    -				percent = 1 - ( remaining / animation.duration || 0 ),
    -				index = 0,
    -				length = animation.tweens.length;
    -
    -			for ( ; index < length ; index++ ) {
    -				animation.tweens[ index ].run( percent );
    -			}
    -
    -			deferred.notifyWith( elem, [ animation, percent, remaining ]);
    -
    -			if ( percent < 1 && length ) {
    -				return remaining;
    -			} else {
    -				deferred.resolveWith( elem, [ animation ] );
    -				return false;
    -			}
    -		},
    -		animation = deferred.promise({
    -			elem: elem,
    -			props: jQuery.extend( {}, properties ),
    -			opts: jQuery.extend( true, { specialEasing: {} }, options ),
    -			originalProperties: properties,
    -			originalOptions: options,
    -			startTime: fxNow || createFxNow(),
    -			duration: options.duration,
    -			tweens: [],
    -			createTween: function( prop, end, easing ) {
    -				var tween = jQuery.Tween( elem, animation.opts, prop, end,
    -						animation.opts.specialEasing[ prop ] || animation.opts.easing );
    -				animation.tweens.push( tween );
    -				return tween;
    -			},
    -			stop: function( gotoEnd ) {
    -				var index = 0,
    -					// if we are going to the end, we want to run all the tweens
    -					// otherwise we skip this part
    -					length = gotoEnd ? animation.tweens.length : 0;
    -
    -				for ( ; index < length ; index++ ) {
    -					animation.tweens[ index ].run( 1 );
    -				}
    -
    -				// resolve when we played the last frame
    -				// otherwise, reject
    -				if ( gotoEnd ) {
    -					deferred.resolveWith( elem, [ animation, gotoEnd ] );
    -				} else {
    -					deferred.rejectWith( elem, [ animation, gotoEnd ] );
    -				}
    -				return this;
    -			}
    -		}),
    -		props = animation.props;
    -
    -	propFilter( props, animation.opts.specialEasing );
    -
    -	for ( ; index < length ; index++ ) {
    -		result = animationPrefilters[ index ].call( animation, elem, props, animation.opts );
    -		if ( result ) {
    -			return result;
    -		}
    -	}
    -
    -	createTweens( animation, props );
    -
    -	if ( jQuery.isFunction( animation.opts.start ) ) {
    -		animation.opts.start.call( elem, animation );
    -	}
    -
    -	jQuery.fx.timer(
    -		jQuery.extend( tick, {
    -			anim: animation,
    -			queue: animation.opts.queue,
    -			elem: elem
    -		})
    -	);
    -
    -	// attach callbacks from options
    -	return animation.progress( animation.opts.progress )
    -		.done( animation.opts.done, animation.opts.complete )
    -		.fail( animation.opts.fail )
    -		.always( animation.opts.always );
    -}
    -
    -function propFilter( props, specialEasing ) {
    -	var index, name, easing, value, hooks;
    -
    -	// camelCase, specialEasing and expand cssHook pass
    -	for ( index in props ) {
    -		name = jQuery.camelCase( index );
    -		easing = specialEasing[ name ];
    -		value = props[ index ];
    -		if ( jQuery.isArray( value ) ) {
    -			easing = value[ 1 ];
    -			value = props[ index ] = value[ 0 ];
    -		}
    -
    -		if ( index !== name ) {
    -			props[ name ] = value;
    -			delete props[ index ];
    -		}
    -
    -		hooks = jQuery.cssHooks[ name ];
    -		if ( hooks && "expand" in hooks ) {
    -			value = hooks.expand( value );
    -			delete props[ name ];
    -
    -			// not quite $.extend, this wont overwrite keys already present.
    -			// also - reusing 'index' from above because we have the correct "name"
    -			for ( index in value ) {
    -				if ( !( index in props ) ) {
    -					props[ index ] = value[ index ];
    -					specialEasing[ index ] = easing;
    -				}
    -			}
    -		} else {
    -			specialEasing[ name ] = easing;
    -		}
    -	}
    -}
    -
    -jQuery.Animation = jQuery.extend( Animation, {
    -
    -	tweener: function( props, callback ) {
    -		if ( jQuery.isFunction( props ) ) {
    -			callback = props;
    -			props = [ "*" ];
    -		} else {
    -			props = props.split(" ");
    -		}
    -
    -		var prop,
    -			index = 0,
    -			length = props.length;
    -
    -		for ( ; index < length ; index++ ) {
    -			prop = props[ index ];
    -			tweeners[ prop ] = tweeners[ prop ] || [];
    -			tweeners[ prop ].unshift( callback );
    -		}
    -	},
    -
    -	prefilter: function( callback, prepend ) {
    -		if ( prepend ) {
    -			animationPrefilters.unshift( callback );
    -		} else {
    -			animationPrefilters.push( callback );
    -		}
    -	}
    -});
    -
    -function defaultPrefilter( elem, props, opts ) {
    -	var index, prop, value, length, dataShow, tween, hooks, oldfire,
    -		anim = this,
    -		style = elem.style,
    -		orig = {},
    -		handled = [],
    -		hidden = elem.nodeType && isHidden( elem );
    -
    -	// handle queue: false promises
    -	if ( !opts.queue ) {
    -		hooks = jQuery._queueHooks( elem, "fx" );
    -		if ( hooks.unqueued == null ) {
    -			hooks.unqueued = 0;
    -			oldfire = hooks.empty.fire;
    -			hooks.empty.fire = function() {
    -				if ( !hooks.unqueued ) {
    -					oldfire();
    -				}
    -			};
    -		}
    -		hooks.unqueued++;
    -
    -		anim.always(function() {
    -			// doing this makes sure that the complete handler will be called
    -			// before this completes
    -			anim.always(function() {
    -				hooks.unqueued--;
    -				if ( !jQuery.queue( elem, "fx" ).length ) {
    -					hooks.empty.fire();
    -				}
    -			});
    -		});
    -	}
    -
    -	// height/width overflow pass
    -	if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
    -		// Make sure that nothing sneaks out
    -		// Record all 3 overflow attributes because IE does not
    -		// change the overflow attribute when overflowX and
    -		// overflowY are set to the same value
    -		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
    -
    -		// Set display property to inline-block for height/width
    -		// animations on inline elements that are having width/height animated
    -		if ( jQuery.css( elem, "display" ) === "inline" &&
    -				jQuery.css( elem, "float" ) === "none" ) {
    -
    -			// inline-level elements accept inline-block;
    -			// block-level elements need to be inline with layout
    -			if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) {
    -				style.display = "inline-block";
    -
    -			} else {
    -				style.zoom = 1;
    -			}
    -		}
    -	}
    -
    -	if ( opts.overflow ) {
    -		style.overflow = "hidden";
    -		if ( !jQuery.support.shrinkWrapBlocks ) {
    -			anim.done(function() {
    -				style.overflow = opts.overflow[ 0 ];
    -				style.overflowX = opts.overflow[ 1 ];
    -				style.overflowY = opts.overflow[ 2 ];
    -			});
    -		}
    -	}
    -
    -
    -	// show/hide pass
    -	for ( index in props ) {
    -		value = props[ index ];
    -		if ( rfxtypes.exec( value ) ) {
    -			delete props[ index ];
    -			if ( value === ( hidden ? "hide" : "show" ) ) {
    -				continue;
    -			}
    -			handled.push( index );
    -		}
    -	}
    -
    -	length = handled.length;
    -	if ( length ) {
    -		dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} );
    -		if ( hidden ) {
    -			jQuery( elem ).show();
    -		} else {
    -			anim.done(function() {
    -				jQuery( elem ).hide();
    -			});
    -		}
    -		anim.done(function() {
    -			var prop;
    -			jQuery.removeData( elem, "fxshow", true );
    -			for ( prop in orig ) {
    -				jQuery.style( elem, prop, orig[ prop ] );
    -			}
    -		});
    -		for ( index = 0 ; index < length ; index++ ) {
    -			prop = handled[ index ];
    -			tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 );
    -			orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop );
    -
    -			if ( !( prop in dataShow ) ) {
    -				dataShow[ prop ] = tween.start;
    -				if ( hidden ) {
    -					tween.end = tween.start;
    -					tween.start = prop === "width" || prop === "height" ? 1 : 0;
    -				}
    -			}
    -		}
    -	}
    -}
    -
    -function Tween( elem, options, prop, end, easing ) {
    -	return new Tween.prototype.init( elem, options, prop, end, easing );
    -}
    -jQuery.Tween = Tween;
    -
    -Tween.prototype = {
    -	constructor: Tween,
    -	init: function( elem, options, prop, end, easing, unit ) {
    -		this.elem = elem;
    -		this.prop = prop;
    -		this.easing = easing || "swing";
    -		this.options = options;
    -		this.start = this.now = this.cur();
    -		this.end = end;
    -		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
    -	},
    -	cur: function() {
    -		var hooks = Tween.propHooks[ this.prop ];
    -
    -		return hooks && hooks.get ?
    -			hooks.get( this ) :
    -			Tween.propHooks._default.get( this );
    -	},
    -	run: function( percent ) {
    -		var eased,
    -			hooks = Tween.propHooks[ this.prop ];
    -
    -		if ( this.options.duration ) {
    -			this.pos = eased = jQuery.easing[ this.easing ](
    -				percent, this.options.duration * percent, 0, 1, this.options.duration
    -			);
    -		} else {
    -			this.pos = eased = percent;
    -		}
    -		this.now = ( this.end - this.start ) * eased + this.start;
    -
    -		if ( this.options.step ) {
    -			this.options.step.call( this.elem, this.now, this );
    -		}
    -
    -		if ( hooks && hooks.set ) {
    -			hooks.set( this );
    -		} else {
    -			Tween.propHooks._default.set( this );
    -		}
    -		return this;
    -	}
    -};
    -
    -Tween.prototype.init.prototype = Tween.prototype;
    -
    -Tween.propHooks = {
    -	_default: {
    -		get: function( tween ) {
    -			var result;
    -
    -			if ( tween.elem[ tween.prop ] != null &&
    -				(!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
    -				return tween.elem[ tween.prop ];
    -			}
    -
    -			// passing any value as a 4th parameter to .css will automatically
    -			// attempt a parseFloat and fallback to a string if the parse fails
    -			// so, simple values such as "10px" are parsed to Float.
    -			// complex values such as "rotate(1rad)" are returned as is.
    -			result = jQuery.css( tween.elem, tween.prop, false, "" );
    -			// Empty strings, null, undefined and "auto" are converted to 0.
    -			return !result || result === "auto" ? 0 : result;
    -		},
    -		set: function( tween ) {
    -			// use step hook for back compat - use cssHook if its there - use .style if its
    -			// available and use plain properties where available
    -			if ( jQuery.fx.step[ tween.prop ] ) {
    -				jQuery.fx.step[ tween.prop ]( tween );
    -			} else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
    -				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
    -			} else {
    -				tween.elem[ tween.prop ] = tween.now;
    -			}
    -		}
    -	}
    -};
    -
    -// Remove in 2.0 - this supports IE8's panic based approach
    -// to setting things on disconnected nodes
    -
    -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
    -	set: function( tween ) {
    -		if ( tween.elem.nodeType && tween.elem.parentNode ) {
    -			tween.elem[ tween.prop ] = tween.now;
    -		}
    -	}
    -};
    -
    -jQuery.each([ "toggle", "show", "hide" ], function( i, name ) {
    -	var cssFn = jQuery.fn[ name ];
    -	jQuery.fn[ name ] = function( speed, easing, callback ) {
    -		return speed == null || typeof speed === "boolean" ||
    -			// special check for .toggle( handler, handler, ... )
    -			( !i && jQuery.isFunction( speed ) && jQuery.isFunction( easing ) ) ?
    -			cssFn.apply( this, arguments ) :
    -			this.animate( genFx( name, true ), speed, easing, callback );
    -	};
    -});
    -
    -jQuery.fn.extend({
    -	fadeTo: function( speed, to, easing, callback ) {
    -
    -		// show any hidden elements after setting opacity to 0
    -		return this.filter( isHidden ).css( "opacity", 0 ).show()
    -
    -			// animate to the value specified
    -			.end().animate({ opacity: to }, speed, easing, callback );
    -	},
    -	animate: function( prop, speed, easing, callback ) {
    -		var empty = jQuery.isEmptyObject( prop ),
    -			optall = jQuery.speed( speed, easing, callback ),
    -			doAnimation = function() {
    -				// Operate on a copy of prop so per-property easing won't be lost
    -				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
    -
    -				// Empty animations resolve immediately
    -				if ( empty ) {
    -					anim.stop( true );
    -				}
    -			};
    -
    -		return empty || optall.queue === false ?
    -			this.each( doAnimation ) :
    -			this.queue( optall.queue, doAnimation );
    -	},
    -	stop: function( type, clearQueue, gotoEnd ) {
    -		var stopQueue = function( hooks ) {
    -			var stop = hooks.stop;
    -			delete hooks.stop;
    -			stop( gotoEnd );
    -		};
    -
    -		if ( typeof type !== "string" ) {
    -			gotoEnd = clearQueue;
    -			clearQueue = type;
    -			type = undefined;
    -		}
    -		if ( clearQueue && type !== false ) {
    -			this.queue( type || "fx", [] );
    -		}
    -
    -		return this.each(function() {
    -			var dequeue = true,
    -				index = type != null && type + "queueHooks",
    -				timers = jQuery.timers,
    -				data = jQuery._data( this );
    -
    -			if ( index ) {
    -				if ( data[ index ] && data[ index ].stop ) {
    -					stopQueue( data[ index ] );
    -				}
    -			} else {
    -				for ( index in data ) {
    -					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
    -						stopQueue( data[ index ] );
    -					}
    -				}
    -			}
    -
    -			for ( index = timers.length; index--; ) {
    -				if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) {
    -					timers[ index ].anim.stop( gotoEnd );
    -					dequeue = false;
    -					timers.splice( index, 1 );
    -				}
    -			}
    -
    -			// start the next in the queue if the last step wasn't forced
    -			// timers currently will call their complete callbacks, which will dequeue
    -			// but only if they were gotoEnd
    -			if ( dequeue || !gotoEnd ) {
    -				jQuery.dequeue( this, type );
    -			}
    -		});
    -	}
    -});
    -
    -// Generate parameters to create a standard animation
    -function genFx( type, includeWidth ) {
    -	var which,
    -		attrs = { height: type },
    -		i = 0;
    -
    -	// if we include width, step value is 1 to do all cssExpand values,
    -	// if we don't include width, step value is 2 to skip over Left and Right
    -	includeWidth = includeWidth? 1 : 0;
    -	for( ; i < 4 ; i += 2 - includeWidth ) {
    -		which = cssExpand[ i ];
    -		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
    -	}
    -
    -	if ( includeWidth ) {
    -		attrs.opacity = attrs.width = type;
    -	}
    -
    -	return attrs;
    -}
    -
    -// Generate shortcuts for custom animations
    -jQuery.each({
    -	slideDown: genFx("show"),
    -	slideUp: genFx("hide"),
    -	slideToggle: genFx("toggle"),
    -	fadeIn: { opacity: "show" },
    -	fadeOut: { opacity: "hide" },
    -	fadeToggle: { opacity: "toggle" }
    -}, function( name, props ) {
    -	jQuery.fn[ name ] = function( speed, easing, callback ) {
    -		return this.animate( props, speed, easing, callback );
    -	};
    -});
    -
    -jQuery.speed = function( speed, easing, fn ) {
    -	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
    -		complete: fn || !fn && easing ||
    -			jQuery.isFunction( speed ) && speed,
    -		duration: speed,
    -		easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing
    -	};
    -
    -	opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
    -		opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
    -
    -	// normalize opt.queue - true/undefined/null -> "fx"
    -	if ( opt.queue == null || opt.queue === true ) {
    -		opt.queue = "fx";
    -	}
    -
    -	// Queueing
    -	opt.old = opt.complete;
    -
    -	opt.complete = function() {
    -		if ( jQuery.isFunction( opt.old ) ) {
    -			opt.old.call( this );
    -		}
    -
    -		if ( opt.queue ) {
    -			jQuery.dequeue( this, opt.queue );
    -		}
    -	};
    -
    -	return opt;
    -};
    -
    -jQuery.easing = {
    -	linear: function( p ) {
    -		return p;
    -	},
    -	swing: function( p ) {
    -		return 0.5 - Math.cos( p*Math.PI ) / 2;
    -	}
    -};
    -
    -jQuery.timers = [];
    -jQuery.fx = Tween.prototype.init;
    -jQuery.fx.tick = function() {
    -	var timer,
    -		timers = jQuery.timers,
    -		i = 0;
    -
    -	for ( ; i < timers.length; i++ ) {
    -		timer = timers[ i ];
    -		// Checks the timer has not already been removed
    -		if ( !timer() && timers[ i ] === timer ) {
    -			timers.splice( i--, 1 );
    -		}
    -	}
    -
    -	if ( !timers.length ) {
    -		jQuery.fx.stop();
    -	}
    -};
    -
    -jQuery.fx.timer = function( timer ) {
    -	if ( timer() && jQuery.timers.push( timer ) && !timerId ) {
    -		timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval );
    -	}
    -};
    -
    -jQuery.fx.interval = 13;
    -
    -jQuery.fx.stop = function() {
    -	clearInterval( timerId );
    -	timerId = null;
    -};
    -
    -jQuery.fx.speeds = {
    -	slow: 600,
    -	fast: 200,
    -	// Default speed
    -	_default: 400
    -};
    -
    -// Back Compat <1.8 extension point
    -jQuery.fx.step = {};
    -
    -if ( jQuery.expr && jQuery.expr.filters ) {
    -	jQuery.expr.filters.animated = function( elem ) {
    -		return jQuery.grep(jQuery.timers, function( fn ) {
    -			return elem === fn.elem;
    -		}).length;
    -	};
    -}
    -var rroot = /^(?:body|html)$/i;
    -
    -jQuery.fn.offset = function( options ) {
    -	if ( arguments.length ) {
    -		return options === undefined ?
    -			this :
    -			this.each(function( i ) {
    -				jQuery.offset.setOffset( this, options, i );
    -			});
    -	}
    -
    -	var docElem, body, win, clientTop, clientLeft, scrollTop, scrollLeft,
    -		box = { top: 0, left: 0 },
    -		elem = this[ 0 ],
    -		doc = elem && elem.ownerDocument;
    -
    -	if ( !doc ) {
    -		return;
    -	}
    -
    -	if ( (body = doc.body) === elem ) {
    -		return jQuery.offset.bodyOffset( elem );
    -	}
    -
    -	docElem = doc.documentElement;
    -
    -	// Make sure it's not a disconnected DOM node
    -	if ( !jQuery.contains( docElem, elem ) ) {
    -		return box;
    -	}
    -
    -	// If we don't have gBCR, just use 0,0 rather than error
    -	// BlackBerry 5, iOS 3 (original iPhone)
    -	if ( typeof elem.getBoundingClientRect !== "undefined" ) {
    -		box = elem.getBoundingClientRect();
    -	}
    -	win = getWindow( doc );
    -	clientTop  = docElem.clientTop  || body.clientTop  || 0;
    -	clientLeft = docElem.clientLeft || body.clientLeft || 0;
    -	scrollTop  = win.pageYOffset || docElem.scrollTop;
    -	scrollLeft = win.pageXOffset || docElem.scrollLeft;
    -	return {
    -		top: box.top  + scrollTop  - clientTop,
    -		left: box.left + scrollLeft - clientLeft
    -	};
    -};
    -
    -jQuery.offset = {
    -
    -	bodyOffset: function( body ) {
    -		var top = body.offsetTop,
    -			left = body.offsetLeft;
    -
    -		if ( jQuery.support.doesNotIncludeMarginInBodyOffset ) {
    -			top  += parseFloat( jQuery.css(body, "marginTop") ) || 0;
    -			left += parseFloat( jQuery.css(body, "marginLeft") ) || 0;
    -		}
    -
    -		return { top: top, left: left };
    -	},
    -
    -	setOffset: function( elem, options, i ) {
    -		var position = jQuery.css( elem, "position" );
    -
    -		// set position first, in-case top/left are set even on static elem
    -		if ( position === "static" ) {
    -			elem.style.position = "relative";
    -		}
    -
    -		var curElem = jQuery( elem ),
    -			curOffset = curElem.offset(),
    -			curCSSTop = jQuery.css( elem, "top" ),
    -			curCSSLeft = jQuery.css( elem, "left" ),
    -			calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1,
    -			props = {}, curPosition = {}, curTop, curLeft;
    -
    -		// need to be able to calculate position if either top or left is auto and position is either absolute or fixed
    -		if ( calculatePosition ) {
    -			curPosition = curElem.position();
    -			curTop = curPosition.top;
    -			curLeft = curPosition.left;
    -		} else {
    -			curTop = parseFloat( curCSSTop ) || 0;
    -			curLeft = parseFloat( curCSSLeft ) || 0;
    -		}
    -
    -		if ( jQuery.isFunction( options ) ) {
    -			options = options.call( elem, i, curOffset );
    -		}
    -
    -		if ( options.top != null ) {
    -			props.top = ( options.top - curOffset.top ) + curTop;
    -		}
    -		if ( options.left != null ) {
    -			props.left = ( options.left - curOffset.left ) + curLeft;
    -		}
    -
    -		if ( "using" in options ) {
    -			options.using.call( elem, props );
    -		} else {
    -			curElem.css( props );
    -		}
    -	}
    -};
    -
    -
    -jQuery.fn.extend({
    -
    -	position: function() {
    -		if ( !this[0] ) {
    -			return;
    -		}
    -
    -		var elem = this[0],
    -
    -		// Get *real* offsetParent
    -		offsetParent = this.offsetParent(),
    -
    -		// Get correct offsets
    -		offset       = this.offset(),
    -		parentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset();
    -
    -		// Subtract element margins
    -		// note: when an element has margin: auto the offsetLeft and marginLeft
    -		// are the same in Safari causing offset.left to incorrectly be 0
    -		offset.top  -= parseFloat( jQuery.css(elem, "marginTop") ) || 0;
    -		offset.left -= parseFloat( jQuery.css(elem, "marginLeft") ) || 0;
    -
    -		// Add offsetParent borders
    -		parentOffset.top  += parseFloat( jQuery.css(offsetParent[0], "borderTopWidth") ) || 0;
    -		parentOffset.left += parseFloat( jQuery.css(offsetParent[0], "borderLeftWidth") ) || 0;
    -
    -		// Subtract the two offsets
    -		return {
    -			top:  offset.top  - parentOffset.top,
    -			left: offset.left - parentOffset.left
    -		};
    -	},
    -
    -	offsetParent: function() {
    -		return this.map(function() {
    -			var offsetParent = this.offsetParent || document.body;
    -			while ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, "position") === "static") ) {
    -				offsetParent = offsetParent.offsetParent;
    -			}
    -			return offsetParent || document.body;
    -		});
    -	}
    -});
    -
    -
    -// Create scrollLeft and scrollTop methods
    -jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) {
    -	var top = /Y/.test( prop );
    -
    -	jQuery.fn[ method ] = function( val ) {
    -		return jQuery.access( this, function( elem, method, val ) {
    -			var win = getWindow( elem );
    -
    -			if ( val === undefined ) {
    -				return win ? (prop in win) ? win[ prop ] :
    -					win.document.documentElement[ method ] :
    -					elem[ method ];
    -			}
    -
    -			if ( win ) {
    -				win.scrollTo(
    -					!top ? val : jQuery( win ).scrollLeft(),
    -					 top ? val : jQuery( win ).scrollTop()
    -				);
    -
    -			} else {
    -				elem[ method ] = val;
    -			}
    -		}, method, val, arguments.length, null );
    -	};
    -});
    -
    -function getWindow( elem ) {
    -	return jQuery.isWindow( elem ) ?
    -		elem :
    -		elem.nodeType === 9 ?
    -			elem.defaultView || elem.parentWindow :
    -			false;
    -}
    -// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
    -jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
    -	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) {
    -		// margin is only for outerHeight, outerWidth
    -		jQuery.fn[ funcName ] = function( margin, value ) {
    -			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
    -				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
    -
    -			return jQuery.access( this, function( elem, type, value ) {
    -				var doc;
    -
    -				if ( jQuery.isWindow( elem ) ) {
    -					// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there
    -					// isn't a whole lot we can do. See pull request at this URL for discussion:
    -					// https://github.com/jquery/jquery/pull/764
    -					return elem.document.documentElement[ "client" + name ];
    -				}
    -
    -				// Get document width or height
    -				if ( elem.nodeType === 9 ) {
    -					doc = elem.documentElement;
    -
    -					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest
    -					// unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it.
    -					return Math.max(
    -						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
    -						elem.body[ "offset" + name ], doc[ "offset" + name ],
    -						doc[ "client" + name ]
    -					);
    -				}
    -
    -				return value === undefined ?
    -					// Get width or height on the element, requesting but not forcing parseFloat
    -					jQuery.css( elem, type, value, extra ) :
    -
    -					// Set width or height on the element
    -					jQuery.style( elem, type, value, extra );
    -			}, type, chainable ? margin : undefined, chainable, null );
    -		};
    -	});
    -});
    -// Expose jQuery to the global object
    -window.jQuery = window.$ = jQuery;
    -
    -// Expose jQuery as an AMD module, but only for AMD loaders that
    -// understand the issues with loading multiple versions of jQuery
    -// in a page that all might call define(). The loader will indicate
    -// they have special allowances for multiple jQuery versions by
    -// specifying define.amd.jQuery = true. Register as a named module,
    -// since jQuery can be concatenated with other files that may use define,
    -// but not use a proper concatenation script that understands anonymous
    -// AMD modules. A named AMD is safest and most robust way to register.
    -// Lowercase jquery is used because AMD module names are derived from
    -// file names, and jQuery is normally delivered in a lowercase file name.
    -// Do this after creating the global so that if an AMD module wants to call
    -// noConflict to hide this version of jQuery, it will work.
    -if ( typeof define === "function" && define.amd && define.amd.jQuery ) {
    -	define( "jquery", [], function () { return jQuery; } );
    -}
    -
    -})( window );
    diff --git a/lib/jquery/jquery.min.js b/lib/jquery/jquery.min.js
    deleted file mode 100644
    index bc3fbc81..00000000
    --- a/lib/jquery/jquery.min.js
    +++ /dev/null
    @@ -1,2 +0,0 @@
    -/*! jQuery v1.8.2 jquery.com | jquery.org/license */
    -(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.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%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},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(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.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(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);
    \ No newline at end of file
    diff --git a/lib/jquery/version.txt b/lib/jquery/version.txt
    deleted file mode 100644
    index 53adb84c..00000000
    --- a/lib/jquery/version.txt
    +++ /dev/null
    @@ -1 +0,0 @@
    -1.8.2
    diff --git a/package.json b/package.json
    index c9964644..7441037a 100644
    --- a/package.json
    +++ b/package.json
    @@ -5,10 +5,12 @@
       "codename": "spooky-giraffe",
       "devDependencies": {
         "grunt": "0.4.0",
    +    "bower": "0.9.2",
         "grunt-contrib-clean": "0.4.0",
         "grunt-contrib-compress": "0.4.1",
         "grunt-contrib-connect": "0.1.2",
         "grunt-contrib-copy": "0.4.1",
    +    "grunt-shell": "~0.2.2",
         "jasmine-node": "1.2.3",
         "closure-compiler" : "0.2.0",
         "q": "~0.9.2",