From 291a23aa4fc62e7593d4471af2b438aa1017a86a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 11 Sep 2013 21:14:10 -0700 Subject: [PATCH] Massive customizer audit and overhaul MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I probably missed a few things and screwed up a few others, but this takes the place of much of #9910. I haven't added many variables—that should be reserved for v3.1—but I have rejiggered the layout, added missing ones, corrected wrong values, etc. /cc @cvrebert @juthilo @saas786 --- assets/css/docs.css | 13 +- assets/js/raw-files.js | 2 +- customize.html | 853 +++++++++++++++++++++++++++-------------- less/variables.less | 9 +- 4 files changed, 572 insertions(+), 305 deletions(-) diff --git a/assets/css/docs.css b/assets/css/docs.css index 5f41ce2e22..4c36e5717b 100644 --- a/assets/css/docs.css +++ b/assets/css/docs.css @@ -1006,15 +1006,23 @@ h1[id] { .bs-customizer label { margin-top: 10px; font-weight: 500; - color: #444; + color: #555; } .bs-customizer h2 { margin-top: 0; margin-bottom: 5px; padding-top: 30px; } -.bs-customizer .bs-docs-section > h4 { +.bs-customizer h3 { + margin-bottom: 0; +} +.bs-customizer h4 { margin-top: 15px; + margin-bottom: 0; +} +.bs-customizer .bs-callout h4 { + margin-top: 0; /* lame, but due to specificity we have to duplicate */ + magin-bottom: 5px; } .bs-customizer input[type="text"] { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; @@ -1022,6 +1030,7 @@ h1[id] { } .bs-customizer .help-block { font-size: 12px; + margin-bottom: 5px; } /* For the variables, use regular weight */ diff --git a/assets/js/raw-files.js b/assets/js/raw-files.js index 1d1a339901..e0c093df85 100644 --- a/assets/js/raw-files.js +++ b/assets/js/raw-files.js @@ -1,3 +1,3 @@ var __js = {"affix.js":"/* ========================================================================\n * Bootstrap: affix.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#affix\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // AFFIX CLASS DEFINITION\n // ======================\n\n var Affix = function (element, options) {\n this.options = $.extend({}, Affix.DEFAULTS, options)\n this.$window = $(window)\n .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))\n .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))\n\n this.$element = $(element)\n this.affixed =\n this.unpin = null\n\n this.checkPosition()\n }\n\n Affix.RESET = 'affix affix-top affix-bottom'\n\n Affix.DEFAULTS = {\n offset: 0\n }\n\n Affix.prototype.checkPositionWithEventLoop = function () {\n setTimeout($.proxy(this.checkPosition, this), 1)\n }\n\n Affix.prototype.checkPosition = function () {\n if (!this.$element.is(':visible')) return\n\n var scrollHeight = $(document).height()\n var scrollTop = this.$window.scrollTop()\n var position = this.$element.offset()\n var offset = this.options.offset\n var offsetTop = offset.top\n var offsetBottom = offset.bottom\n\n if (typeof offset != 'object') offsetBottom = offsetTop = offset\n if (typeof offsetTop == 'function') offsetTop = offset.top()\n if (typeof offsetBottom == 'function') offsetBottom = offset.bottom()\n\n var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false :\n offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :\n offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false\n\n if (this.affixed === affix) return\n if (this.unpin) this.$element.css('top', '')\n\n this.affixed = affix\n this.unpin = affix == 'bottom' ? position.top - scrollTop : null\n\n this.$element.removeClass(Affix.RESET).addClass('affix' + (affix ? '-' + affix : ''))\n\n if (affix == 'bottom') {\n this.$element.offset({ top: document.body.offsetHeight - offsetBottom - this.$element.height() })\n }\n }\n\n\n // AFFIX PLUGIN DEFINITION\n // =======================\n\n var old = $.fn.affix\n\n $.fn.affix = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.affix')\n var options = typeof option == 'object' && option\n\n if (!data) $this.data('bs.affix', (data = new Affix(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.affix.Constructor = Affix\n\n\n // AFFIX NO CONFLICT\n // =================\n\n $.fn.affix.noConflict = function () {\n $.fn.affix = old\n return this\n }\n\n\n // AFFIX DATA-API\n // ==============\n\n $(window).on('load', function () {\n $('[data-spy=\"affix\"]').each(function () {\n var $spy = $(this)\n var data = $spy.data()\n\n data.offset = data.offset || {}\n\n if (data.offsetBottom) data.offset.bottom = data.offsetBottom\n if (data.offsetTop) data.offset.top = data.offsetTop\n\n $spy.affix(data)\n })\n })\n\n}(window.jQuery);\n","alert.js":"/* ========================================================================\n * Bootstrap: alert.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#alerts\n * ========================================================================\n * Copyright 2013 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // ALERT CLASS DEFINITION\n // ======================\n\n var dismiss = '[data-dismiss=\"alert\"]'\n var Alert = function (el) {\n $(el).on('click', dismiss, this.close)\n }\n\n Alert.prototype.close = function (e) {\n var $this = $(this)\n var selector = $this.attr('data-target')\n\n if (!selector) {\n selector = $this.attr('href')\n selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n }\n\n var $parent = $(selector)\n\n if (e) e.preventDefault()\n\n if (!$parent.length) {\n $parent = $this.hasClass('alert') ? $this : $this.parent()\n }\n\n $parent.trigger(e = $.Event('close.bs.alert'))\n\n if (e.isDefaultPrevented()) return\n\n $parent.removeClass('in')\n\n function removeElement() {\n $parent.trigger('closed.bs.alert').remove()\n }\n\n $.support.transition && $parent.hasClass('fade') ?\n $parent\n .one($.support.transition.end, removeElement)\n .emulateTransitionEnd(150) :\n removeElement()\n }\n\n\n // ALERT PLUGIN DEFINITION\n // =======================\n\n var old = $.fn.alert\n\n $.fn.alert = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.alert')\n\n if (!data) $this.data('bs.alert', (data = new Alert(this)))\n if (typeof option == 'string') data[option].call($this)\n })\n }\n\n $.fn.alert.Constructor = Alert\n\n\n // ALERT NO CONFLICT\n // =================\n\n $.fn.alert.noConflict = function () {\n $.fn.alert = old\n return this\n }\n\n\n // ALERT DATA-API\n // ==============\n\n $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)\n\n}(window.jQuery);\n","button.js":"/* ========================================================================\n * Bootstrap: button.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#buttons\n * ========================================================================\n * Copyright 2013 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // BUTTON PUBLIC CLASS DEFINITION\n // ==============================\n\n var Button = function (element, options) {\n this.$element = $(element)\n this.options = $.extend({}, Button.DEFAULTS, options)\n }\n\n Button.DEFAULTS = {\n loadingText: 'loading...'\n }\n\n Button.prototype.setState = function (state) {\n var d = 'disabled'\n var $el = this.$element\n var val = $el.is('input') ? 'val' : 'html'\n var data = $el.data()\n\n state = state + 'Text'\n\n if (!data.resetText) $el.data('resetText', $el[val]())\n\n $el[val](data[state] || this.options[state])\n\n // push to event loop to allow forms to submit\n setTimeout(function () {\n state == 'loadingText' ?\n $el.addClass(d).attr(d, d) :\n $el.removeClass(d).removeAttr(d);\n }, 0)\n }\n\n Button.prototype.toggle = function () {\n var $parent = this.$element.closest('[data-toggle=\"buttons\"]')\n\n if ($parent.length) {\n var $input = this.$element.find('input')\n .prop('checked', !this.$element.hasClass('active'))\n .trigger('change')\n if ($input.prop('type') === 'radio') $parent.find('.active').removeClass('active')\n }\n\n this.$element.toggleClass('active')\n }\n\n\n // BUTTON PLUGIN DEFINITION\n // ========================\n\n var old = $.fn.button\n\n $.fn.button = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.button')\n var options = typeof option == 'object' && option\n\n if (!data) $this.data('bs.button', (data = new Button(this, options)))\n\n if (option == 'toggle') data.toggle()\n else if (option) data.setState(option)\n })\n }\n\n $.fn.button.Constructor = Button\n\n\n // BUTTON NO CONFLICT\n // ==================\n\n $.fn.button.noConflict = function () {\n $.fn.button = old\n return this\n }\n\n\n // BUTTON DATA-API\n // ===============\n\n $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {\n var $btn = $(e.target)\n if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')\n $btn.button('toggle')\n e.preventDefault()\n })\n\n}(window.jQuery);\n","carousel.js":"/* ========================================================================\n * Bootstrap: carousel.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#carousel\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // CAROUSEL CLASS DEFINITION\n // =========================\n\n var Carousel = function (element, options) {\n this.$element = $(element)\n this.$indicators = this.$element.find('.carousel-indicators')\n this.options = options\n this.paused =\n this.sliding =\n this.interval =\n this.$active =\n this.$items = null\n\n this.options.pause == 'hover' && this.$element\n .on('mouseenter', $.proxy(this.pause, this))\n .on('mouseleave', $.proxy(this.cycle, this))\n }\n\n Carousel.DEFAULTS = {\n interval: 5000\n , pause: 'hover'\n , wrap: true\n }\n\n Carousel.prototype.cycle = function (e) {\n e || (this.paused = false)\n\n this.interval && clearInterval(this.interval)\n\n this.options.interval\n && !this.paused\n && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))\n\n return this\n }\n\n Carousel.prototype.getActiveIndex = function () {\n this.$active = this.$element.find('.item.active')\n this.$items = this.$active.parent().children()\n\n return this.$items.index(this.$active)\n }\n\n Carousel.prototype.to = function (pos) {\n var that = this\n var activeIndex = this.getActiveIndex()\n\n if (pos > (this.$items.length - 1) || pos < 0) return\n\n if (this.sliding) return this.$element.one('slid', function () { that.to(pos) })\n if (activeIndex == pos) return this.pause().cycle()\n\n return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))\n }\n\n Carousel.prototype.pause = function (e) {\n e || (this.paused = true)\n\n if (this.$element.find('.next, .prev').length && $.support.transition.end) {\n this.$element.trigger($.support.transition.end)\n this.cycle(true)\n }\n\n this.interval = clearInterval(this.interval)\n\n return this\n }\n\n Carousel.prototype.next = function () {\n if (this.sliding) return\n return this.slide('next')\n }\n\n Carousel.prototype.prev = function () {\n if (this.sliding) return\n return this.slide('prev')\n }\n\n Carousel.prototype.slide = function (type, next) {\n var $active = this.$element.find('.item.active')\n var $next = next || $active[type]()\n var isCycling = this.interval\n var direction = type == 'next' ? 'left' : 'right'\n var fallback = type == 'next' ? 'first' : 'last'\n var that = this\n\n if (!$next.length) {\n if (!this.options.wrap) return\n $next = this.$element.find('.item')[fallback]()\n }\n\n this.sliding = true\n\n isCycling && this.pause()\n\n var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })\n\n if ($next.hasClass('active')) return\n\n if (this.$indicators.length) {\n this.$indicators.find('.active').removeClass('active')\n this.$element.one('slid', function () {\n var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])\n $nextIndicator && $nextIndicator.addClass('active')\n })\n }\n\n if ($.support.transition && this.$element.hasClass('slide')) {\n this.$element.trigger(e)\n if (e.isDefaultPrevented()) return\n $next.addClass(type)\n $next[0].offsetWidth // force reflow\n $active.addClass(direction)\n $next.addClass(direction)\n $active\n .one($.support.transition.end, function () {\n $next.removeClass([type, direction].join(' ')).addClass('active')\n $active.removeClass(['active', direction].join(' '))\n that.sliding = false\n setTimeout(function () { that.$element.trigger('slid') }, 0)\n })\n .emulateTransitionEnd(600)\n } else {\n this.$element.trigger(e)\n if (e.isDefaultPrevented()) return\n $active.removeClass('active')\n $next.addClass('active')\n this.sliding = false\n this.$element.trigger('slid')\n }\n\n isCycling && this.cycle()\n\n return this\n }\n\n\n // CAROUSEL PLUGIN DEFINITION\n // ==========================\n\n var old = $.fn.carousel\n\n $.fn.carousel = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.carousel')\n var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)\n var action = typeof option == 'string' ? option : options.slide\n\n if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))\n if (typeof option == 'number') data.to(option)\n else if (action) data[action]()\n else if (options.interval) data.pause().cycle()\n })\n }\n\n $.fn.carousel.Constructor = Carousel\n\n\n // CAROUSEL NO CONFLICT\n // ====================\n\n $.fn.carousel.noConflict = function () {\n $.fn.carousel = old\n return this\n }\n\n\n // CAROUSEL DATA-API\n // =================\n\n $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {\n var $this = $(this), href\n var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '')) //strip for ie7\n var options = $.extend({}, $target.data(), $this.data())\n var slideIndex = $this.attr('data-slide-to')\n if (slideIndex) options.interval = false\n\n $target.carousel(options)\n\n if (slideIndex = $this.attr('data-slide-to')) {\n $target.data('bs.carousel').to(slideIndex)\n }\n\n e.preventDefault()\n })\n\n $(window).on('load', function () {\n $('[data-ride=\"carousel\"]').each(function () {\n var $carousel = $(this)\n $carousel.carousel($carousel.data())\n })\n })\n\n}(window.jQuery);\n","collapse.js":"/* ========================================================================\n * Bootstrap: collapse.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#collapse\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // COLLAPSE PUBLIC CLASS DEFINITION\n // ================================\n\n var Collapse = function (element, options) {\n this.$element = $(element)\n this.options = $.extend({}, Collapse.DEFAULTS, options)\n this.transitioning = null\n\n if (this.options.parent) this.$parent = $(this.options.parent)\n if (this.options.toggle) this.toggle()\n }\n\n Collapse.DEFAULTS = {\n toggle: true\n }\n\n Collapse.prototype.dimension = function () {\n var hasWidth = this.$element.hasClass('width')\n return hasWidth ? 'width' : 'height'\n }\n\n Collapse.prototype.show = function () {\n if (this.transitioning || this.$element.hasClass('in')) return\n\n var startEvent = $.Event('show.bs.collapse')\n this.$element.trigger(startEvent)\n if (startEvent.isDefaultPrevented()) return\n\n var actives = this.$parent && this.$parent.find('> .panel > .in')\n\n if (actives && actives.length) {\n var hasData = actives.data('bs.collapse')\n if (hasData && hasData.transitioning) return\n actives.collapse('hide')\n hasData || actives.data('bs.collapse', null)\n }\n\n var dimension = this.dimension()\n\n this.$element\n .removeClass('collapse')\n .addClass('collapsing')\n [dimension](0)\n\n this.transitioning = 1\n\n var complete = function () {\n this.$element\n .removeClass('collapsing')\n .addClass('in')\n [dimension]('auto')\n this.transitioning = 0\n this.$element.trigger('shown.bs.collapse')\n }\n\n if (!$.support.transition) return complete.call(this)\n\n var scrollSize = $.camelCase(['scroll', dimension].join('-'))\n\n this.$element\n .one($.support.transition.end, $.proxy(complete, this))\n .emulateTransitionEnd(350)\n [dimension](this.$element[0][scrollSize])\n }\n\n Collapse.prototype.hide = function () {\n if (this.transitioning || !this.$element.hasClass('in')) return\n\n var startEvent = $.Event('hide.bs.collapse')\n this.$element.trigger(startEvent)\n if (startEvent.isDefaultPrevented()) return\n\n var dimension = this.dimension()\n\n this.$element\n [dimension](this.$element[dimension]())\n [0].offsetHeight\n\n this.$element\n .addClass('collapsing')\n .removeClass('collapse')\n .removeClass('in')\n\n this.transitioning = 1\n\n var complete = function () {\n this.transitioning = 0\n this.$element\n .trigger('hidden.bs.collapse')\n .removeClass('collapsing')\n .addClass('collapse')\n }\n\n if (!$.support.transition) return complete.call(this)\n\n this.$element\n [dimension](0)\n .one($.support.transition.end, $.proxy(complete, this))\n .emulateTransitionEnd(350)\n }\n\n Collapse.prototype.toggle = function () {\n this[this.$element.hasClass('in') ? 'hide' : 'show']()\n }\n\n\n // COLLAPSE PLUGIN DEFINITION\n // ==========================\n\n var old = $.fn.collapse\n\n $.fn.collapse = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.collapse')\n var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.collapse.Constructor = Collapse\n\n\n // COLLAPSE NO CONFLICT\n // ====================\n\n $.fn.collapse.noConflict = function () {\n $.fn.collapse = old\n return this\n }\n\n\n // COLLAPSE DATA-API\n // =================\n\n $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {\n var $this = $(this), href\n var target = $this.attr('data-target')\n || e.preventDefault()\n || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '') //strip for ie7\n var $target = $(target)\n var data = $target.data('bs.collapse')\n var option = data ? 'toggle' : $this.data()\n var parent = $this.attr('data-parent')\n var $parent = parent && $(parent)\n\n if (!data || !data.transitioning) {\n if ($parent) $parent.find('[data-toggle=collapse][data-parent=\"' + parent + '\"]').not($this).addClass('collapsed')\n $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')\n }\n\n $target.collapse(option)\n })\n\n}(window.jQuery);\n","dropdown.js":"/* ========================================================================\n * Bootstrap: dropdown.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#dropdowns\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // DROPDOWN CLASS DEFINITION\n // =========================\n\n var backdrop = '.dropdown-backdrop'\n var toggle = '[data-toggle=dropdown]'\n var Dropdown = function (element) {\n var $el = $(element).on('click.bs.dropdown', this.toggle)\n }\n\n Dropdown.prototype.toggle = function (e) {\n var $this = $(this)\n\n if ($this.is('.disabled, :disabled')) return\n\n var $parent = getParent($this)\n var isActive = $parent.hasClass('open')\n\n clearMenus()\n\n if (!isActive) {\n if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {\n // if mobile we we use a backdrop because click events don't delegate\n $('
').insertAfter($(this)).on('click', clearMenus)\n }\n\n $parent.trigger(e = $.Event('show.bs.dropdown'))\n\n if (e.isDefaultPrevented()) return\n\n $parent\n .toggleClass('open')\n .trigger('shown.bs.dropdown')\n\n $this.focus()\n }\n\n return false\n }\n\n Dropdown.prototype.keydown = function (e) {\n if (!/(38|40|27)/.test(e.keyCode)) return\n\n var $this = $(this)\n\n e.preventDefault()\n e.stopPropagation()\n\n if ($this.is('.disabled, :disabled')) return\n\n var $parent = getParent($this)\n var isActive = $parent.hasClass('open')\n\n if (!isActive || (isActive && e.keyCode == 27)) {\n if (e.which == 27) $parent.find(toggle).focus()\n return $this.click()\n }\n\n var $items = $('[role=menu] li:not(.divider):visible a', $parent)\n\n if (!$items.length) return\n\n var index = $items.index($items.filter(':focus'))\n\n if (e.keyCode == 38 && index > 0) index-- // up\n if (e.keyCode == 40 && index < $items.length - 1) index++ // down\n if (!~index) index=0\n\n $items.eq(index).focus()\n }\n\n function clearMenus() {\n $(backdrop).remove()\n $(toggle).each(function (e) {\n var $parent = getParent($(this))\n if (!$parent.hasClass('open')) return\n $parent.trigger(e = $.Event('hide.bs.dropdown'))\n if (e.isDefaultPrevented()) return\n $parent.removeClass('open').trigger('hidden.bs.dropdown')\n })\n }\n\n function getParent($this) {\n var selector = $this.attr('data-target')\n\n if (!selector) {\n selector = $this.attr('href')\n selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\\s]*$)/, '') //strip for ie7\n }\n\n var $parent = selector && $(selector)\n\n return $parent && $parent.length ? $parent : $this.parent()\n }\n\n\n // DROPDOWN PLUGIN DEFINITION\n // ==========================\n\n var old = $.fn.dropdown\n\n $.fn.dropdown = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('dropdown')\n\n if (!data) $this.data('dropdown', (data = new Dropdown(this)))\n if (typeof option == 'string') data[option].call($this)\n })\n }\n\n $.fn.dropdown.Constructor = Dropdown\n\n\n // DROPDOWN NO CONFLICT\n // ====================\n\n $.fn.dropdown.noConflict = function () {\n $.fn.dropdown = old\n return this\n }\n\n\n // APPLY TO STANDARD DROPDOWN ELEMENTS\n // ===================================\n\n $(document)\n .on('click.bs.dropdown.data-api', clearMenus)\n .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })\n .on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)\n .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)\n\n}(window.jQuery);\n","modal.js":"/* ========================================================================\n * Bootstrap: modal.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#modals\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // MODAL CLASS DEFINITION\n // ======================\n\n var Modal = function (element, options) {\n this.options = options\n this.$element = $(element)\n this.$backdrop =\n this.isShown = null\n\n if (this.options.remote) this.$element.load(this.options.remote)\n }\n\n Modal.DEFAULTS = {\n backdrop: true\n , keyboard: true\n , show: true\n }\n\n Modal.prototype.toggle = function (_relatedTarget) {\n return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)\n }\n\n Modal.prototype.show = function (_relatedTarget) {\n var that = this\n var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })\n\n this.$element.trigger(e)\n\n if (this.isShown || e.isDefaultPrevented()) return\n\n this.isShown = true\n\n this.escape()\n\n this.$element.on('click.dismiss.modal', '[data-dismiss=\"modal\"]', $.proxy(this.hide, this))\n\n this.backdrop(function () {\n var transition = $.support.transition && that.$element.hasClass('fade')\n\n if (!that.$element.parent().length) {\n that.$element.appendTo(document.body) // don't move modals dom position\n }\n\n that.$element.show()\n\n if (transition) {\n that.$element[0].offsetWidth // force reflow\n }\n\n that.$element\n .addClass('in')\n .attr('aria-hidden', false)\n\n that.enforceFocus()\n\n var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })\n\n transition ?\n that.$element.find('.modal-dialog') // wait for modal to slide in\n .one($.support.transition.end, function () {\n that.$element.focus().trigger(e)\n })\n .emulateTransitionEnd(300) :\n that.$element.focus().trigger(e)\n })\n }\n\n Modal.prototype.hide = function (e) {\n if (e) e.preventDefault()\n\n e = $.Event('hide.bs.modal')\n\n this.$element.trigger(e)\n\n if (!this.isShown || e.isDefaultPrevented()) return\n\n this.isShown = false\n\n this.escape()\n\n $(document).off('focusin.bs.modal')\n\n this.$element\n .removeClass('in')\n .attr('aria-hidden', true)\n .off('click.dismiss.modal')\n\n $.support.transition && this.$element.hasClass('fade') ?\n this.$element\n .one($.support.transition.end, $.proxy(this.hideModal, this))\n .emulateTransitionEnd(300) :\n this.hideModal()\n }\n\n Modal.prototype.enforceFocus = function () {\n $(document)\n .off('focusin.bs.modal') // guard against infinite focus loop\n .on('focusin.bs.modal', $.proxy(function (e) {\n if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {\n this.$element.focus()\n }\n }, this))\n }\n\n Modal.prototype.escape = function () {\n if (this.isShown && this.options.keyboard) {\n this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {\n e.which == 27 && this.hide()\n }, this))\n } else if (!this.isShown) {\n this.$element.off('keyup.dismiss.bs.modal')\n }\n }\n\n Modal.prototype.hideModal = function () {\n var that = this\n this.$element.hide()\n this.backdrop(function () {\n that.removeBackdrop()\n that.$element.trigger('hidden.bs.modal')\n })\n }\n\n Modal.prototype.removeBackdrop = function () {\n this.$backdrop && this.$backdrop.remove()\n this.$backdrop = null\n }\n\n Modal.prototype.backdrop = function (callback) {\n var that = this\n var animate = this.$element.hasClass('fade') ? 'fade' : ''\n\n if (this.isShown && this.options.backdrop) {\n var doAnimate = $.support.transition && animate\n\n this.$backdrop = $('
')\n .appendTo(document.body)\n\n this.$element.on('click.dismiss.modal', $.proxy(function (e) {\n if (e.target !== e.currentTarget) return\n this.options.backdrop == 'static'\n ? this.$element[0].focus.call(this.$element[0])\n : this.hide.call(this)\n }, this))\n\n if (doAnimate) this.$backdrop[0].offsetWidth // force reflow\n\n this.$backdrop.addClass('in')\n\n if (!callback) return\n\n doAnimate ?\n this.$backdrop\n .one($.support.transition.end, callback)\n .emulateTransitionEnd(150) :\n callback()\n\n } else if (!this.isShown && this.$backdrop) {\n this.$backdrop.removeClass('in')\n\n $.support.transition && this.$element.hasClass('fade')?\n this.$backdrop\n .one($.support.transition.end, callback)\n .emulateTransitionEnd(150) :\n callback()\n\n } else if (callback) {\n callback()\n }\n }\n\n\n // MODAL PLUGIN DEFINITION\n // =======================\n\n var old = $.fn.modal\n\n $.fn.modal = function (option, _relatedTarget) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.modal')\n var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n if (!data) $this.data('bs.modal', (data = new Modal(this, options)))\n if (typeof option == 'string') data[option](_relatedTarget)\n else if (options.show) data.show(_relatedTarget)\n })\n }\n\n $.fn.modal.Constructor = Modal\n\n\n // MODAL NO CONFLICT\n // =================\n\n $.fn.modal.noConflict = function () {\n $.fn.modal = old\n return this\n }\n\n\n // MODAL DATA-API\n // ==============\n\n $(document).on('click.bs.modal.data-api', '[data-toggle=\"modal\"]', function (e) {\n var $this = $(this)\n var href = $this.attr('href')\n var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\\s]+$)/, ''))) //strip for ie7\n var option = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())\n\n e.preventDefault()\n\n $target\n .modal(option, this)\n .one('hide', function () {\n $this.is(':visible') && $this.focus()\n })\n })\n\n $(document)\n .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })\n .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })\n\n}(window.jQuery);\n","popover.js":"/* ========================================================================\n * Bootstrap: popover.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#popovers\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // POPOVER PUBLIC CLASS DEFINITION\n // ===============================\n\n var Popover = function (element, options) {\n this.init('popover', element, options)\n }\n\n if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')\n\n Popover.DEFAULTS = $.extend({} , $.fn.tooltip.Constructor.DEFAULTS, {\n placement: 'right'\n , trigger: 'click'\n , content: ''\n , template: '

'\n })\n\n\n // NOTE: POPOVER EXTENDS tooltip.js\n // ================================\n\n Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)\n\n Popover.prototype.constructor = Popover\n\n Popover.prototype.getDefaults = function () {\n return Popover.DEFAULTS\n }\n\n Popover.prototype.setContent = function () {\n var $tip = this.tip()\n var title = this.getTitle()\n var content = this.getContent()\n\n $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)\n $tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)\n\n $tip.removeClass('fade top bottom left right in')\n\n // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do\n // this manually by checking the contents.\n if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()\n }\n\n Popover.prototype.hasContent = function () {\n return this.getTitle() || this.getContent()\n }\n\n Popover.prototype.getContent = function () {\n var $e = this.$element\n var o = this.options\n\n return $e.attr('data-content')\n || (typeof o.content == 'function' ?\n o.content.call($e[0]) :\n o.content)\n }\n\n Popover.prototype.arrow = function () {\n return this.$arrow = this.$arrow || this.tip().find('.arrow')\n }\n\n Popover.prototype.tip = function () {\n if (!this.$tip) this.$tip = $(this.options.template)\n return this.$tip\n }\n\n\n // POPOVER PLUGIN DEFINITION\n // =========================\n\n var old = $.fn.popover\n\n $.fn.popover = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.popover')\n var options = typeof option == 'object' && option\n\n if (!data) $this.data('bs.popover', (data = new Popover(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.popover.Constructor = Popover\n\n\n // POPOVER NO CONFLICT\n // ===================\n\n $.fn.popover.noConflict = function () {\n $.fn.popover = old\n return this\n }\n\n}(window.jQuery);\n","scrollspy.js":"/* ========================================================================\n * Bootstrap: scrollspy.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#scrollspy\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // SCROLLSPY CLASS DEFINITION\n // ==========================\n\n function ScrollSpy(element, options) {\n var href\n var process = $.proxy(this.process, this)\n\n this.$element = $(element).is('body') ? $(window) : $(element)\n this.$body = $('body')\n this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)\n this.options = $.extend({}, ScrollSpy.DEFAULTS, options)\n this.selector = (this.options.target\n || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '')) //strip for ie7\n || '') + ' .nav li > a'\n this.offsets = $([])\n this.targets = $([])\n this.activeTarget = null\n\n this.refresh()\n this.process()\n }\n\n ScrollSpy.DEFAULTS = {\n offset: 10\n }\n\n ScrollSpy.prototype.refresh = function () {\n var offsetMethod = this.$element[0] == window ? 'offset' : 'position'\n\n this.offsets = $([])\n this.targets = $([])\n\n var self = this\n var $targets = this.$body\n .find(this.selector)\n .map(function () {\n var $el = $(this)\n var href = $el.data('target') || $el.attr('href')\n var $href = /^#\\w/.test(href) && $(href)\n\n return ($href\n && $href.length\n && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null\n })\n .sort(function (a, b) { return a[0] - b[0] })\n .each(function () {\n self.offsets.push(this[0])\n self.targets.push(this[1])\n })\n }\n\n ScrollSpy.prototype.process = function () {\n var scrollTop = this.$scrollElement.scrollTop() + this.options.offset\n var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight\n var maxScroll = scrollHeight - this.$scrollElement.height()\n var offsets = this.offsets\n var targets = this.targets\n var activeTarget = this.activeTarget\n var i\n\n if (scrollTop >= maxScroll) {\n return activeTarget != (i = targets.last()[0]) && this.activate(i)\n }\n\n for (i = offsets.length; i--;) {\n activeTarget != targets[i]\n && scrollTop >= offsets[i]\n && (!offsets[i + 1] || scrollTop <= offsets[i + 1])\n && this.activate( targets[i] )\n }\n }\n\n ScrollSpy.prototype.activate = function (target) {\n this.activeTarget = target\n\n $(this.selector)\n .parents('.active')\n .removeClass('active')\n\n var selector = this.selector\n + '[data-target=\"' + target + '\"],'\n + this.selector + '[href=\"' + target + '\"]'\n\n var active = $(selector)\n .parents('li')\n .addClass('active')\n\n if (active.parent('.dropdown-menu').length) {\n active = active\n .closest('li.dropdown')\n .addClass('active')\n }\n\n active.trigger('activate')\n }\n\n\n // SCROLLSPY PLUGIN DEFINITION\n // ===========================\n\n var old = $.fn.scrollspy\n\n $.fn.scrollspy = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.scrollspy')\n var options = typeof option == 'object' && option\n\n if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.scrollspy.Constructor = ScrollSpy\n\n\n // SCROLLSPY NO CONFLICT\n // =====================\n\n $.fn.scrollspy.noConflict = function () {\n $.fn.scrollspy = old\n return this\n }\n\n\n // SCROLLSPY DATA-API\n // ==================\n\n $(window).on('load', function () {\n $('[data-spy=\"scroll\"]').each(function () {\n var $spy = $(this)\n $spy.scrollspy($spy.data())\n })\n })\n\n}(window.jQuery);\n","tab.js":"/* ========================================================================\n * Bootstrap: tab.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#tabs\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // TAB CLASS DEFINITION\n // ====================\n\n var Tab = function (element) {\n this.element = $(element)\n }\n\n Tab.prototype.show = function () {\n var $this = this.element\n var $ul = $this.closest('ul:not(.dropdown-menu)')\n var selector = $this.attr('data-target')\n\n if (!selector) {\n selector = $this.attr('href')\n selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') //strip for ie7\n }\n\n if ($this.parent('li').hasClass('active')) return\n\n var previous = $ul.find('.active:last a')[0]\n var e = $.Event('show.bs.tab', {\n relatedTarget: previous\n })\n\n $this.trigger(e)\n\n if (e.isDefaultPrevented()) return\n\n var $target = $(selector)\n\n this.activate($this.parent('li'), $ul)\n this.activate($target, $target.parent(), function () {\n $this.trigger({\n type: 'shown.bs.tab'\n , relatedTarget: previous\n })\n })\n }\n\n Tab.prototype.activate = function (element, container, callback) {\n var $active = container.find('> .active')\n var transition = callback\n && $.support.transition\n && $active.hasClass('fade')\n\n function next() {\n $active\n .removeClass('active')\n .find('> .dropdown-menu > .active')\n .removeClass('active')\n\n element.addClass('active')\n\n if (transition) {\n element[0].offsetWidth // reflow for transition\n element.addClass('in')\n } else {\n element.removeClass('fade')\n }\n\n if (element.parent('.dropdown-menu')) {\n element.closest('li.dropdown').addClass('active')\n }\n\n callback && callback()\n }\n\n transition ?\n $active\n .one($.support.transition.end, next)\n .emulateTransitionEnd(150) :\n next()\n\n $active.removeClass('in')\n }\n\n\n // TAB PLUGIN DEFINITION\n // =====================\n\n var old = $.fn.tab\n\n $.fn.tab = function ( option ) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.tab')\n\n if (!data) $this.data('bs.tab', (data = new Tab(this)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.tab.Constructor = Tab\n\n\n // TAB NO CONFLICT\n // ===============\n\n $.fn.tab.noConflict = function () {\n $.fn.tab = old\n return this\n }\n\n\n // TAB DATA-API\n // ============\n\n $(document).on('click.bs.tab.data-api', '[data-toggle=\"tab\"], [data-toggle=\"pill\"]', function (e) {\n e.preventDefault()\n $(this).tab('show')\n })\n\n}(window.jQuery);\n","tooltip.js":"/* ========================================================================\n * Bootstrap: tooltip.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#tooltip\n * Inspired by the original jQuery.tipsy by Jason Frame\n * ========================================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // TOOLTIP PUBLIC CLASS DEFINITION\n // ===============================\n\n var Tooltip = function (element, options) {\n this.type =\n this.options =\n this.enabled =\n this.timeout =\n this.hoverState =\n this.$element = null\n\n this.init('tooltip', element, options)\n }\n\n Tooltip.DEFAULTS = {\n animation: true\n , placement: 'top'\n , selector: false\n , template: '
'\n , trigger: 'hover focus'\n , title: ''\n , delay: 0\n , html: false\n , container: false\n }\n\n Tooltip.prototype.init = function (type, element, options) {\n this.enabled = true\n this.type = type\n this.$element = $(element)\n this.options = this.getOptions(options)\n\n var triggers = this.options.trigger.split(' ')\n\n for (var i = triggers.length; i--;) {\n var trigger = triggers[i]\n\n if (trigger == 'click') {\n this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))\n } else if (trigger != 'manual') {\n var eventIn = trigger == 'hover' ? 'mouseenter' : 'focus'\n var eventOut = trigger == 'hover' ? 'mouseleave' : 'blur'\n\n this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))\n this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))\n }\n }\n\n this.options.selector ?\n (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :\n this.fixTitle()\n }\n\n Tooltip.prototype.getDefaults = function () {\n return Tooltip.DEFAULTS\n }\n\n Tooltip.prototype.getOptions = function (options) {\n options = $.extend({}, this.getDefaults(), this.$element.data(), options)\n\n if (options.delay && typeof options.delay == 'number') {\n options.delay = {\n show: options.delay\n , hide: options.delay\n }\n }\n\n return options\n }\n\n Tooltip.prototype.getDelegateOptions = function () {\n var options = {}\n var defaults = this.getDefaults()\n\n this._options && $.each(this._options, function (key, value) {\n if (defaults[key] != value) options[key] = value\n })\n\n return options\n }\n\n Tooltip.prototype.enter = function (obj) {\n var self = obj instanceof this.constructor ?\n obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)\n\n clearTimeout(self.timeout)\n\n self.hoverState = 'in'\n\n if (!self.options.delay || !self.options.delay.show) return self.show()\n\n self.timeout = setTimeout(function () {\n if (self.hoverState == 'in') self.show()\n }, self.options.delay.show)\n }\n\n Tooltip.prototype.leave = function (obj) {\n var self = obj instanceof this.constructor ?\n obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)\n\n clearTimeout(self.timeout)\n\n self.hoverState = 'out'\n\n if (!self.options.delay || !self.options.delay.hide) return self.hide()\n\n self.timeout = setTimeout(function () {\n if (self.hoverState == 'out') self.hide()\n }, self.options.delay.hide)\n }\n\n Tooltip.prototype.show = function () {\n var e = $.Event('show.bs.'+ this.type)\n\n if (this.hasContent() && this.enabled) {\n this.$element.trigger(e)\n\n if (e.isDefaultPrevented()) return\n\n var $tip = this.tip()\n\n this.setContent()\n\n if (this.options.animation) $tip.addClass('fade')\n\n var placement = typeof this.options.placement == 'function' ?\n this.options.placement.call(this, $tip[0], this.$element[0]) :\n this.options.placement\n\n var autoToken = /\\s?auto?\\s?/i\n var autoPlace = autoToken.test(placement)\n if (autoPlace) placement = placement.replace(autoToken, '') || 'top'\n\n $tip\n .detach()\n .css({ top: 0, left: 0, display: 'block' })\n .addClass(placement)\n\n this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)\n\n var pos = this.getPosition()\n var actualWidth = $tip[0].offsetWidth\n var actualHeight = $tip[0].offsetHeight\n\n if (autoPlace) {\n var $parent = this.$element.parent()\n\n var orgPlacement = placement\n var docScroll = document.documentElement.scrollTop || document.body.scrollTop\n var parentWidth = this.options.container == 'body' ? window.innerWidth : $parent.outerWidth()\n var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()\n var parentLeft = this.options.container == 'body' ? 0 : $parent.offset().left\n\n placement = placement == 'bottom' && pos.top + pos.height + actualHeight - docScroll > parentHeight ? 'top' :\n placement == 'top' && pos.top - docScroll - actualHeight < 0 ? 'bottom' :\n placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' :\n placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' :\n placement\n\n $tip\n .removeClass(orgPlacement)\n .addClass(placement)\n }\n\n var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)\n\n this.applyPlacement(calculatedOffset, placement)\n this.$element.trigger('shown.bs.' + this.type)\n }\n }\n\n Tooltip.prototype.applyPlacement = function(offset, placement) {\n var replace\n var $tip = this.tip()\n var width = $tip[0].offsetWidth\n var height = $tip[0].offsetHeight\n\n // manually read margins because getBoundingClientRect includes difference\n var marginTop = parseInt($tip.css('margin-top'), 10)\n var marginLeft = parseInt($tip.css('margin-left'), 10)\n\n // we must check for NaN for ie 8/9\n if (isNaN(marginTop)) marginTop = 0\n if (isNaN(marginLeft)) marginLeft = 0\n\n offset.top = offset.top + marginTop\n offset.left = offset.left + marginLeft\n\n $tip\n .offset(offset)\n .addClass('in')\n\n // check to see if placing tip in new offset caused the tip to resize itself\n var actualWidth = $tip[0].offsetWidth\n var actualHeight = $tip[0].offsetHeight\n\n if (placement == 'top' && actualHeight != height) {\n replace = true\n offset.top = offset.top + height - actualHeight\n }\n\n if (/bottom|top/.test(placement)) {\n var delta = 0\n\n if (offset.left < 0) {\n delta = offset.left * -2\n offset.left = 0\n\n $tip.offset(offset)\n\n actualWidth = $tip[0].offsetWidth\n actualHeight = $tip[0].offsetHeight\n }\n\n this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')\n } else {\n this.replaceArrow(actualHeight - height, actualHeight, 'top')\n }\n\n if (replace) $tip.offset(offset)\n }\n\n Tooltip.prototype.replaceArrow = function(delta, dimension, position) {\n this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + \"%\") : '')\n }\n\n Tooltip.prototype.setContent = function () {\n var $tip = this.tip()\n var title = this.getTitle()\n\n $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)\n $tip.removeClass('fade in top bottom left right')\n }\n\n Tooltip.prototype.hide = function () {\n var that = this\n var $tip = this.tip()\n var e = $.Event('hide.bs.' + this.type)\n\n function complete() {\n if (that.hoverState != 'in') $tip.detach()\n }\n\n this.$element.trigger(e)\n\n if (e.isDefaultPrevented()) return\n\n $tip.removeClass('in')\n\n $.support.transition && this.$tip.hasClass('fade') ?\n $tip\n .one($.support.transition.end, complete)\n .emulateTransitionEnd(150) :\n complete()\n\n this.$element.trigger('hidden.bs.' + this.type)\n\n return this\n }\n\n Tooltip.prototype.fixTitle = function () {\n var $e = this.$element\n if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {\n $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')\n }\n }\n\n Tooltip.prototype.hasContent = function () {\n return this.getTitle()\n }\n\n Tooltip.prototype.getPosition = function () {\n var el = this.$element[0]\n return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {\n width: el.offsetWidth\n , height: el.offsetHeight\n }, this.$element.offset())\n }\n\n Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {\n return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :\n placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :\n placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :\n /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }\n }\n\n Tooltip.prototype.getTitle = function () {\n var title\n var $e = this.$element\n var o = this.options\n\n title = $e.attr('data-original-title')\n || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)\n\n return title\n }\n\n Tooltip.prototype.tip = function () {\n return this.$tip = this.$tip || $(this.options.template)\n }\n\n Tooltip.prototype.arrow = function () {\n return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')\n }\n\n Tooltip.prototype.validate = function () {\n if (!this.$element[0].parentNode) {\n this.hide()\n this.$element = null\n this.options = null\n }\n }\n\n Tooltip.prototype.enable = function () {\n this.enabled = true\n }\n\n Tooltip.prototype.disable = function () {\n this.enabled = false\n }\n\n Tooltip.prototype.toggleEnabled = function () {\n this.enabled = !this.enabled\n }\n\n Tooltip.prototype.toggle = function (e) {\n var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this\n self.tip().hasClass('in') ? self.leave(self) : self.enter(self)\n }\n\n Tooltip.prototype.destroy = function () {\n this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)\n }\n\n\n // TOOLTIP PLUGIN DEFINITION\n // =========================\n\n var old = $.fn.tooltip\n\n $.fn.tooltip = function (option) {\n return this.each(function () {\n var $this = $(this)\n var data = $this.data('bs.tooltip')\n var options = typeof option == 'object' && option\n\n if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))\n if (typeof option == 'string') data[option]()\n })\n }\n\n $.fn.tooltip.Constructor = Tooltip\n\n\n // TOOLTIP NO CONFLICT\n // ===================\n\n $.fn.tooltip.noConflict = function () {\n $.fn.tooltip = old\n return this\n }\n\n}(window.jQuery);\n","transition.js":"/* ========================================================================\n * Bootstrap: transition.js v3.0.0\n * http://twbs.github.com/bootstrap/javascript.html#transitions\n * ========================================================================\n * Copyright 2013 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ======================================================================== */\n\n\n+function ($) { \"use strict\";\n\n // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)\n // ============================================================\n\n function transitionEnd() {\n var el = document.createElement('bootstrap')\n\n var transEndEventNames = {\n 'WebkitTransition' : 'webkitTransitionEnd'\n , 'MozTransition' : 'transitionend'\n , 'OTransition' : 'oTransitionEnd otransitionend'\n , 'transition' : 'transitionend'\n }\n\n for (var name in transEndEventNames) {\n if (el.style[name] !== undefined) {\n return { end: transEndEventNames[name] }\n }\n }\n }\n\n // http://blog.alexmaccaw.com/css-transitions\n $.fn.emulateTransitionEnd = function (duration) {\n var called = false, $el = this\n $(this).one($.support.transition.end, function () { called = true })\n var callback = function () { if (!called) $($el).trigger($.support.transition.end) }\n setTimeout(callback, duration)\n return this\n }\n\n $(function () {\n $.support.transition = transitionEnd()\n })\n\n}(window.jQuery);\n"} -var __less = {"alerts.less":"//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headingsColor\n color: inherit;\n }\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissable alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","badges.less":"//\n// Badges\n// --------------------------------------------------\n\n\n// Base classes\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n}\n\n// Hover state, but only for links\na.badge {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n}\n\n// Quick fix for labels/badges in buttons\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n// Account for counters in navs\na.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n","bootstrap.less":"// Core variables and mixins\n@import \"variables.less\";\n@import \"mixins.less\";\n\n// Reset\n@import \"normalize.less\";\n@import \"print.less\";\n\n// Core CSS\n@import \"scaffolding.less\";\n@import \"type.less\";\n@import \"code.less\";\n@import \"grid.less\";\n@import \"tables.less\";\n@import \"forms.less\";\n@import \"buttons.less\";\n\n// Components\n@import \"component-animations.less\";\n@import \"glyphicons.less\";\n@import \"dropdowns.less\";\n@import \"button-groups.less\";\n@import \"input-groups.less\";\n@import \"navs.less\";\n@import \"navbar.less\";\n@import \"breadcrumbs.less\";\n@import \"pagination.less\";\n@import \"pager.less\";\n@import \"labels.less\";\n@import \"badges.less\";\n@import \"jumbotron.less\";\n@import \"thumbnails.less\";\n@import \"alerts.less\";\n@import \"progress-bars.less\";\n@import \"media.less\";\n@import \"list-group.less\";\n@import \"panels.less\";\n@import \"wells.less\";\n@import \"close.less\";\n\n// Components w/ JavaScript\n@import \"modals.less\";\n@import \"tooltip.less\";\n@import \"popovers.less\";\n@import \"carousel.less\";\n\n// Utility classes\n@import \"utilities.less\";\n@import \"responsive-utilities.less\";\n","breadcrumbs.less":"//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n > li {\n display: inline-block;\n &+li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","button-groups.less":"//\n// Button groups\n// --------------------------------------------------\n\n// Button carets\n//\n// Match the button text color to the arrow/caret for indicating dropdown-ness.\n\n.caret {\n .btn-default & {\n border-top-color: @btn-default-color;\n }\n .btn-primary &,\n .btn-success &,\n .btn-warning &,\n .btn-danger &,\n .btn-info & {\n border-top-color: #fff;\n }\n}\n.dropup {\n & .btn-default .caret {\n border-bottom-color: @btn-default-color;\n }\n .btn-primary,\n .btn-success,\n .btn-warning,\n .btn-danger,\n .btn-info {\n .caret {\n border-bottom-color: #fff;\n }\n }\n}\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n &:focus {\n // Remove focus outline when dropdown JS adds it after closing the menu\n outline: none;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n .clearfix();\n\n .btn-group {\n float: left;\n }\n // Space out series of button groups\n > .btn,\n > .btn-group {\n + .btn,\n + .btn-group {\n margin-left: 5px;\n }\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { .btn-xs(); }\n.btn-group-sm > .btn { .btn-sm(); }\n.btn-group-lg > .btn { .btn-lg(); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n .clearfix();\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n border-top-right-radius: @border-radius-base;\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n border-bottom-left-radius: @border-radius-base;\n .border-top-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n .btn {\n float: none;\n display: table-cell;\n width: 1%;\n }\n}\n\n\n// Checkbox and radio options\n[data-toggle=\"buttons\"] > .btn > input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn > input[type=\"checkbox\"] {\n display: none;\n}\n","buttons.less":"//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n// Core styles\n.btn {\n display: inline-block;\n padding: @padding-base-vertical @padding-base-horizontal;\n margin-bottom: 0; // For input.btn\n font-size: @font-size-base;\n font-weight: @btn-font-weight;\n line-height: @line-height-base;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n white-space: nowrap;\n .user-select(none);\n\n &:focus {\n .tab-focus();\n }\n\n &:hover,\n &:focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n pointer-events: none; // Future-proof disabling of clicks\n .opacity(.65);\n .box-shadow(none);\n }\n\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n cursor: pointer;\n border-radius: 0;\n\n &,\n &:active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n.btn-sm,\n.btn-xs {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n.btn-xs {\n padding: 1px 5px;\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","carousel.less":"//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n .img-responsive();\n line-height: 1;\n }\n }\n\n > .active,\n > .next,\n > .prev { display: block; }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n // We can't have this transition here because webkit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n margin-left: -10px;\n font-family: serif;\n }\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicons-chevron-left,\n .glyphicons-chevron-right,\n .icon-prev,\n .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n margin-left: -15px;\n font-size: 30px;\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","close.less":"//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","code.less":"//\n// Code (inline and blocK)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkdb,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n white-space: nowrap;\n border-radius: @border-radius-base;\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","component-animations.less":"//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n &.in {\n display: block;\n }\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition(height .35s ease);\n}\n","dropdowns.less":"//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base solid @dropdown-caret-color;\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n // Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once fixed,\n // we can just straight up remove this.\n border-bottom: 0 dotted;\n content: \"\";\n}\n\n// The dropdown wrapper (div)\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n}\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: not-allowed;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: @zindex-dropdown - 10;\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n // Firefox fix for https://github.com/twbs/bootstrap/issues/9538. Once this\n // gets fixed, restore `border-top: 0;`.\n border-top: 0 dotted;\n border-bottom: 4px solid @dropdown-caret-color;\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 1px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .pull-right > .dropdown-menu();\n }\n }\n}\n\n","forms.less":"//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; /* IE8-9 */\n line-height: normal;\n}\n\n// Set the height of select and file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Fix optgroup Firefox bug per https://github.com/twbs/bootstrap/issues/7611\nselect optgroup {\n font-size: inherit;\n font-style: inherit;\n font-family: inherit;\n}\n\n// Focus for select, file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Fix for Chrome number input\n// Setting certain font-sizes causes the `I` bar to appear on hover of the bottom increment button.\n// See https://github.com/twbs/bootstrap/issues/8350 for more.\ninput[type=\"number\"] {\n &::-webkit-outer-spin-button,\n &::-webkit-inner-spin-button {\n height: auto;\n }\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n vertical-align: middle;\n}\n\n// Placeholder\n//\n// Placeholder text gets special styles because when browsers invalidate entire\n// lines if it doesn't understand a selector/\n.form-control {\n .placeholder();\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n vertical-align: middle;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Disabled and read-only inputs\n // Note: HTML5 says that controls under a fieldset > legend:first-child won't\n // be disabled if the fieldset is disabled. Due to implementation difficulty,\n // we don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: not-allowed;\n background-color: @input-bg-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: 15px;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n display: block;\n min-height: @line-height-computed; // clear the floating input if there is no label text\n margin-top: 10px;\n margin-bottom: 10px;\n padding-left: 20px;\n vertical-align: middle;\n label {\n display: inline;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n float: left;\n margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"],\n.radio,\n.radio-inline,\n.checkbox,\n.checkbox-inline {\n &[disabled],\n fieldset[disabled] & {\n cursor: not-allowed;\n }\n}\n\n// Form control sizing\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n// Warning\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n// Error\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n// Success\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n margin-bottom: 0; // Remove default margin from `p`\n padding-top: (@padding-base-vertical + 1);\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match (which also avoids\n // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n padding-left: 0;\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n float: none;\n margin-left: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of labels, radios, and checkboxes\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Only right align form labels here when the columns stop stacking\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n }\n }\n}\n","glyphicons.less":"//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#glyphicons-halflingsregular') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n\n &:empty{\n width: 1em;\n }\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-briefcase { &:before { content: \"\\1f4bc\"; } }\n.glyphicon-calendar { &:before { content: \"\\1f4c5\"; } }\n.glyphicon-pushpin { &:before { content: \"\\1f4cc\"; } }\n.glyphicon-paperclip { &:before { content: \"\\1f4ce\"; } }\n.glyphicon-camera { &:before { content: \"\\1f4f7\"; } }\n.glyphicon-lock { &:before { content: \"\\1f512\"; } }\n.glyphicon-bell { &:before { content: \"\\1f514\"; } }\n.glyphicon-bookmark { &:before { content: \"\\1f516\"; } }\n.glyphicon-fire { &:before { content: \"\\1f525\"; } }\n.glyphicon-wrench { &:before { content: \"\\1f527\"; } }\n","grid.less":"//\n// Grid system\n// --------------------------------------------------\n\n\n// Set the container width, and override it for fixed navbars in media queries\n.container {\n .container-fixed();\n}\n\n// mobile first defaults\n.row {\n .make-row();\n}\n\n// Common styles for small and large grid columns\n.col-xs-1,\n.col-xs-2,\n.col-xs-3,\n.col-xs-4,\n.col-xs-5,\n.col-xs-6,\n.col-xs-7,\n.col-xs-8,\n.col-xs-9,\n.col-xs-10,\n.col-xs-11,\n.col-xs-12,\n.col-sm-1,\n.col-sm-2,\n.col-sm-3,\n.col-sm-4,\n.col-sm-5,\n.col-sm-6,\n.col-sm-7,\n.col-sm-8,\n.col-sm-9,\n.col-sm-10,\n.col-sm-11,\n.col-sm-12,\n.col-md-1,\n.col-md-2,\n.col-md-3,\n.col-md-4,\n.col-md-5,\n.col-md-6,\n.col-md-7,\n.col-md-8,\n.col-md-9,\n.col-md-10,\n.col-md-11,\n.col-md-12,\n.col-lg-1,\n.col-lg-2,\n.col-lg-3,\n.col-lg-4,\n.col-lg-5,\n.col-lg-6,\n.col-lg-7,\n.col-lg-8,\n.col-lg-9,\n.col-lg-10,\n.col-lg-11,\n.col-lg-12 {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n}\n\n\n// Extra small grid\n//\n// Grid classes for extra small devices like smartphones. No offset, push, or\n// pull classes are present here due to the size of the target.\n//\n// Note that `.col-xs-12` doesn't get floated on purpose--there's no need since\n// it's full-width.\n\n.col-xs-1,\n.col-xs-2,\n.col-xs-3,\n.col-xs-4,\n.col-xs-5,\n.col-xs-6,\n.col-xs-7,\n.col-xs-8,\n.col-xs-9,\n.col-xs-10,\n.col-xs-11 {\n float: left;\n}\n.col-xs-1 { width: percentage((1 / @grid-columns)); }\n.col-xs-2 { width: percentage((2 / @grid-columns)); }\n.col-xs-3 { width: percentage((3 / @grid-columns)); }\n.col-xs-4 { width: percentage((4 / @grid-columns)); }\n.col-xs-5 { width: percentage((5 / @grid-columns)); }\n.col-xs-6 { width: percentage((6 / @grid-columns)); }\n.col-xs-7 { width: percentage((7 / @grid-columns)); }\n.col-xs-8 { width: percentage((8 / @grid-columns)); }\n.col-xs-9 { width: percentage((9 / @grid-columns)); }\n.col-xs-10 { width: percentage((10/ @grid-columns)); }\n.col-xs-11 { width: percentage((11/ @grid-columns)); }\n.col-xs-12 { width: 100%; }\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n//\n// Note that `.col-sm-12` doesn't get floated on purpose--there's no need since\n// it's full-width.\n\n@media (min-width: @screen-sm) {\n .container {\n width: @container-sm;\n }\n\n .col-sm-1,\n .col-sm-2,\n .col-sm-3,\n .col-sm-4,\n .col-sm-5,\n .col-sm-6,\n .col-sm-7,\n .col-sm-8,\n .col-sm-9,\n .col-sm-10,\n .col-sm-11 {\n float: left;\n }\n .col-sm-1 { width: percentage((1 / @grid-columns)); }\n .col-sm-2 { width: percentage((2 / @grid-columns)); }\n .col-sm-3 { width: percentage((3 / @grid-columns)); }\n .col-sm-4 { width: percentage((4 / @grid-columns)); }\n .col-sm-5 { width: percentage((5 / @grid-columns)); }\n .col-sm-6 { width: percentage((6 / @grid-columns)); }\n .col-sm-7 { width: percentage((7 / @grid-columns)); }\n .col-sm-8 { width: percentage((8 / @grid-columns)); }\n .col-sm-9 { width: percentage((9 / @grid-columns)); }\n .col-sm-10 { width: percentage((10/ @grid-columns)); }\n .col-sm-11 { width: percentage((11/ @grid-columns)); }\n .col-sm-12 { width: 100%; }\n\n // Push and pull columns for source order changes\n .col-sm-push-1 { left: percentage((1 / @grid-columns)); }\n .col-sm-push-2 { left: percentage((2 / @grid-columns)); }\n .col-sm-push-3 { left: percentage((3 / @grid-columns)); }\n .col-sm-push-4 { left: percentage((4 / @grid-columns)); }\n .col-sm-push-5 { left: percentage((5 / @grid-columns)); }\n .col-sm-push-6 { left: percentage((6 / @grid-columns)); }\n .col-sm-push-7 { left: percentage((7 / @grid-columns)); }\n .col-sm-push-8 { left: percentage((8 / @grid-columns)); }\n .col-sm-push-9 { left: percentage((9 / @grid-columns)); }\n .col-sm-push-10 { left: percentage((10/ @grid-columns)); }\n .col-sm-push-11 { left: percentage((11/ @grid-columns)); }\n\n .col-sm-pull-1 { right: percentage((1 / @grid-columns)); }\n .col-sm-pull-2 { right: percentage((2 / @grid-columns)); }\n .col-sm-pull-3 { right: percentage((3 / @grid-columns)); }\n .col-sm-pull-4 { right: percentage((4 / @grid-columns)); }\n .col-sm-pull-5 { right: percentage((5 / @grid-columns)); }\n .col-sm-pull-6 { right: percentage((6 / @grid-columns)); }\n .col-sm-pull-7 { right: percentage((7 / @grid-columns)); }\n .col-sm-pull-8 { right: percentage((8 / @grid-columns)); }\n .col-sm-pull-9 { right: percentage((9 / @grid-columns)); }\n .col-sm-pull-10 { right: percentage((10/ @grid-columns)); }\n .col-sm-pull-11 { right: percentage((11/ @grid-columns)); }\n\n // Offsets\n .col-sm-offset-1 { margin-left: percentage((1 / @grid-columns)); }\n .col-sm-offset-2 { margin-left: percentage((2 / @grid-columns)); }\n .col-sm-offset-3 { margin-left: percentage((3 / @grid-columns)); }\n .col-sm-offset-4 { margin-left: percentage((4 / @grid-columns)); }\n .col-sm-offset-5 { margin-left: percentage((5 / @grid-columns)); }\n .col-sm-offset-6 { margin-left: percentage((6 / @grid-columns)); }\n .col-sm-offset-7 { margin-left: percentage((7 / @grid-columns)); }\n .col-sm-offset-8 { margin-left: percentage((8 / @grid-columns)); }\n .col-sm-offset-9 { margin-left: percentage((9 / @grid-columns)); }\n .col-sm-offset-10 { margin-left: percentage((10/ @grid-columns)); }\n .col-sm-offset-11 { margin-left: percentage((11/ @grid-columns)); }\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n//\n// Note that `.col-md-12` doesn't get floated on purpose--there's no need since\n// it's full-width.\n\n@media (min-width: @screen-md) {\n .container {\n width: @container-md;\n }\n .col-md-1,\n .col-md-2,\n .col-md-3,\n .col-md-4,\n .col-md-5,\n .col-md-6,\n .col-md-7,\n .col-md-8,\n .col-md-9,\n .col-md-10,\n .col-md-11 {\n float: left;\n }\n .col-md-1 { width: percentage((1 / @grid-columns)); }\n .col-md-2 { width: percentage((2 / @grid-columns)); }\n .col-md-3 { width: percentage((3 / @grid-columns)); }\n .col-md-4 { width: percentage((4 / @grid-columns)); }\n .col-md-5 { width: percentage((5 / @grid-columns)); }\n .col-md-6 { width: percentage((6 / @grid-columns)); }\n .col-md-7 { width: percentage((7 / @grid-columns)); }\n .col-md-8 { width: percentage((8 / @grid-columns)); }\n .col-md-9 { width: percentage((9 / @grid-columns)); }\n .col-md-10 { width: percentage((10/ @grid-columns)); }\n .col-md-11 { width: percentage((11/ @grid-columns)); }\n .col-md-12 { width: 100%; }\n\n // Push and pull columns for source order changes\n .col-md-push-0 { left: auto; }\n .col-md-push-1 { left: percentage((1 / @grid-columns)); }\n .col-md-push-2 { left: percentage((2 / @grid-columns)); }\n .col-md-push-3 { left: percentage((3 / @grid-columns)); }\n .col-md-push-4 { left: percentage((4 / @grid-columns)); }\n .col-md-push-5 { left: percentage((5 / @grid-columns)); }\n .col-md-push-6 { left: percentage((6 / @grid-columns)); }\n .col-md-push-7 { left: percentage((7 / @grid-columns)); }\n .col-md-push-8 { left: percentage((8 / @grid-columns)); }\n .col-md-push-9 { left: percentage((9 / @grid-columns)); }\n .col-md-push-10 { left: percentage((10/ @grid-columns)); }\n .col-md-push-11 { left: percentage((11/ @grid-columns)); }\n\n .col-md-pull-0 { right: auto; }\n .col-md-pull-1 { right: percentage((1 / @grid-columns)); }\n .col-md-pull-2 { right: percentage((2 / @grid-columns)); }\n .col-md-pull-3 { right: percentage((3 / @grid-columns)); }\n .col-md-pull-4 { right: percentage((4 / @grid-columns)); }\n .col-md-pull-5 { right: percentage((5 / @grid-columns)); }\n .col-md-pull-6 { right: percentage((6 / @grid-columns)); }\n .col-md-pull-7 { right: percentage((7 / @grid-columns)); }\n .col-md-pull-8 { right: percentage((8 / @grid-columns)); }\n .col-md-pull-9 { right: percentage((9 / @grid-columns)); }\n .col-md-pull-10 { right: percentage((10/ @grid-columns)); }\n .col-md-pull-11 { right: percentage((11/ @grid-columns)); }\n\n // Offsets\n .col-md-offset-0 { margin-left: 0; }\n .col-md-offset-1 { margin-left: percentage((1 / @grid-columns)); }\n .col-md-offset-2 { margin-left: percentage((2 / @grid-columns)); }\n .col-md-offset-3 { margin-left: percentage((3 / @grid-columns)); }\n .col-md-offset-4 { margin-left: percentage((4 / @grid-columns)); }\n .col-md-offset-5 { margin-left: percentage((5 / @grid-columns)); }\n .col-md-offset-6 { margin-left: percentage((6 / @grid-columns)); }\n .col-md-offset-7 { margin-left: percentage((7 / @grid-columns)); }\n .col-md-offset-8 { margin-left: percentage((8 / @grid-columns)); }\n .col-md-offset-9 { margin-left: percentage((9 / @grid-columns)); }\n .col-md-offset-10 { margin-left: percentage((10/ @grid-columns)); }\n .col-md-offset-11 { margin-left: percentage((11/ @grid-columns)); }\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n//\n// Note that `.col-lg-12` doesn't get floated on purpose--there's no need since\n// it's full-width.\n\n@media (min-width: @screen-lg-min) {\n .container {\n width: @container-lg;\n }\n\n .col-lg-1,\n .col-lg-2,\n .col-lg-3,\n .col-lg-4,\n .col-lg-5,\n .col-lg-6,\n .col-lg-7,\n .col-lg-8,\n .col-lg-9,\n .col-lg-10,\n .col-lg-11 {\n float: left;\n }\n .col-lg-1 { width: percentage((1 / @grid-columns)); }\n .col-lg-2 { width: percentage((2 / @grid-columns)); }\n .col-lg-3 { width: percentage((3 / @grid-columns)); }\n .col-lg-4 { width: percentage((4 / @grid-columns)); }\n .col-lg-5 { width: percentage((5 / @grid-columns)); }\n .col-lg-6 { width: percentage((6 / @grid-columns)); }\n .col-lg-7 { width: percentage((7 / @grid-columns)); }\n .col-lg-8 { width: percentage((8 / @grid-columns)); }\n .col-lg-9 { width: percentage((9 / @grid-columns)); }\n .col-lg-10 { width: percentage((10/ @grid-columns)); }\n .col-lg-11 { width: percentage((11/ @grid-columns)); }\n .col-lg-12 { width: 100%; }\n\n // Push and pull columns for source order changes\n .col-lg-push-0 { left: auto; }\n .col-lg-push-1 { left: percentage((1 / @grid-columns)); }\n .col-lg-push-2 { left: percentage((2 / @grid-columns)); }\n .col-lg-push-3 { left: percentage((3 / @grid-columns)); }\n .col-lg-push-4 { left: percentage((4 / @grid-columns)); }\n .col-lg-push-5 { left: percentage((5 / @grid-columns)); }\n .col-lg-push-6 { left: percentage((6 / @grid-columns)); }\n .col-lg-push-7 { left: percentage((7 / @grid-columns)); }\n .col-lg-push-8 { left: percentage((8 / @grid-columns)); }\n .col-lg-push-9 { left: percentage((9 / @grid-columns)); }\n .col-lg-push-10 { left: percentage((10/ @grid-columns)); }\n .col-lg-push-11 { left: percentage((11/ @grid-columns)); }\n\n .col-lg-pull-0 { right: auto; }\n .col-lg-pull-1 { right: percentage((1 / @grid-columns)); }\n .col-lg-pull-2 { right: percentage((2 / @grid-columns)); }\n .col-lg-pull-3 { right: percentage((3 / @grid-columns)); }\n .col-lg-pull-4 { right: percentage((4 / @grid-columns)); }\n .col-lg-pull-5 { right: percentage((5 / @grid-columns)); }\n .col-lg-pull-6 { right: percentage((6 / @grid-columns)); }\n .col-lg-pull-7 { right: percentage((7 / @grid-columns)); }\n .col-lg-pull-8 { right: percentage((8 / @grid-columns)); }\n .col-lg-pull-9 { right: percentage((9 / @grid-columns)); }\n .col-lg-pull-10 { right: percentage((10/ @grid-columns)); }\n .col-lg-pull-11 { right: percentage((11/ @grid-columns)); }\n\n // Offsets\n .col-lg-offset-0 { margin-left: 0; }\n .col-lg-offset-1 { margin-left: percentage((1 / @grid-columns)); }\n .col-lg-offset-2 { margin-left: percentage((2 / @grid-columns)); }\n .col-lg-offset-3 { margin-left: percentage((3 / @grid-columns)); }\n .col-lg-offset-4 { margin-left: percentage((4 / @grid-columns)); }\n .col-lg-offset-5 { margin-left: percentage((5 / @grid-columns)); }\n .col-lg-offset-6 { margin-left: percentage((6 / @grid-columns)); }\n .col-lg-offset-7 { margin-left: percentage((7 / @grid-columns)); }\n .col-lg-offset-8 { margin-left: percentage((8 / @grid-columns)); }\n .col-lg-offset-9 { margin-left: percentage((9 / @grid-columns)); }\n .col-lg-offset-10 { margin-left: percentage((10/ @grid-columns)); }\n .col-lg-offset-11 { margin-left: percentage((11/ @grid-columns)); }\n}\n","input-groups.less":"//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &.col {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n width: 100%;\n margin-bottom: 0;\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn { .input-lg(); }\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn { .input-sm(); }\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @border-radius-base;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child) {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n white-space: nowrap;\n\n // Negative margin to only have a 1px border between the two\n &:first-child > .btn {\n margin-right: -1px;\n }\n &:last-child > .btn {\n margin-left: -1px;\n }\n}\n.input-group-btn > .btn {\n position: relative;\n // Jankily prevent input button groups from wrapping\n + .btn {\n margin-left: -4px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:active {\n z-index: 2;\n }\n}\n","jumbotron.less":"//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n font-size: (@font-size-base * 1.5);\n font-weight: 200;\n line-height: (@line-height-base * 1.5);\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1 {\n line-height: 1;\n color: @jumbotron-heading-color;\n }\n p {\n line-height: 1.4;\n }\n\n .container & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n }\n\n @media screen and (min-width: @screen-sm) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1 {\n font-size: (@font-size-base * 4.5);\n }\n }\n}\n","labels.less":"//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n &[href] {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","list-group.less":"//\n// List groups\n// --------------------------------------------------\n\n// Base class\n//\n// Easily usable on
    ,
      , or
      .\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n// Individual list items\n// -------------------------\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n\n // Align badges within list items\n > .badge {\n float: right;\n }\n > .badge + .badge {\n margin-right: 5px;\n }\n\n // Linked list items\n a& {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @list-group-hover-bg;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: lighten(@list-group-active-bg, 40%);\n }\n }\n}\n\n// Custom content options\n// -------------------------\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","media.less":"// Media objects\n// Source: http://stubbornella.org/content/?p=497\n// --------------------------------------------------\n\n\n// Common styles\n// -------------------------\n\n// Clear the floats\n.media,\n.media-body {\n overflow: hidden;\n zoom: 1;\n}\n\n// Proper spacing between instances of .media\n.media,\n.media .media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n\n// For images and videos, set to block\n.media-object {\n display: block;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin: 0 0 5px;\n}\n\n\n// Media image alignment\n// -------------------------\n\n.media {\n > .pull-left {\n margin-right: 10px;\n }\n > .pull-right {\n margin-left: 10px;\n }\n}\n\n\n// Media list variation\n// -------------------------\n\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","mixins.less":"//\n// Mixins\n// --------------------------------------------------\n\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; /* 1 */\n display: table; /* 2 */\n }\n &:after {\n clear: both;\n }\n}\n\n// Webkit-style focus\n.tab-focus() {\n // Default\n outline: thin dotted #333;\n // Webkit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n\n// Center-align a block level element\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n\n// Sizing shortcuts\n.size(@width; @height) {\n width: @width;\n height: @height;\n}\n.square(@size) {\n .size(@size; @size);\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n &:-moz-placeholder { color: @color; } // Firefox 4-18\n &::-moz-placeholder { color: @color; } // Firefox 19+\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Text overflow\n// Requires inline-block or block for proper styling\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n// CSS image replacement\n//\n// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note\n// that we cannot chain the mixins together in Less, so they are repeated.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (will be removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n// New mixin to use as of v3.0.1\n.text-hide() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n\n\n// CSS3 PROPERTIES\n// --------------------------------------------------\n\n// Single side border-radius\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n\n// Drop shadows\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Transitions\n.transition(@transition) {\n -webkit-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n// Transformations\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9+\n transform: rotate(@degrees);\n}\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9+\n transform: scale(@ratio);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9+\n transform: translate(@x, @y);\n}\n.skew(@x; @y) {\n -webkit-transform: skew(@x, @y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n transform: skew(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9+\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9+\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin){\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n transform-origin: @origin;\n}\n\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// User select\n// For selecting text on the page\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n -o-user-select: @select;\n user-select: @select;\n}\n\n// Resize anything\n.resizable(@direction) {\n resize: @direction; // Options: horizontal, vertical, both\n overflow: auto; // Safari fix\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Opacity\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n\n\n\n// GRADIENTS\n// --------------------------------------------------\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-gradient(linear, @start-percent top, @end-percent top, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+\n background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1+, Chrome 10+\n background-image: -moz-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // FF 3.6+\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-gradient(linear, left @start-percent, left @end-percent, from(@start-color), to(@end-color)); // Safari 4+, Chrome 2+\n background-image: -webkit-linear-gradient(top, @start-color, @start-percent, @end-color, @end-percent); // Safari 5.1+, Chrome 10+\n background-image: -moz-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // FF 3.6+\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1+, Chrome 10+\n background-image: -moz-linear-gradient(@deg, @start-color, @end-color); // FF 3.6+\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -moz-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@start-color), color-stop(@color-stop, @mid-color), to(@end-color));\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -moz-linear-gradient(top, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-gradient(radial, center center, 0, center center, 460, from(@inner-color), to(@outer-color));\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: -moz-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, @color), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, @color), color-stop(.75, @color), color-stop(.75, transparent), to(transparent));\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -moz-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n\n// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n\n\n\n// Retina images\n//\n// Short retina mixin for setting background-image and -size\n\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n.img-responsive(@display: block;) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// COMPONENT MIXINS\n// --------------------------------------------------\n\n// Horizontal dividers\n// -------------------------\n// Dividers (basically an hr) within dropdowns and nav lists\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n\n// Panels\n// -------------------------\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border;) {\n border-color: @border;\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n + .panel-collapse .panel-body {\n border-top-color: @border;\n }\n }\n & > .panel-footer {\n + .panel-collapse .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n\n// Alerts\n// -------------------------\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n\n// Tables\n// -------------------------\n.table-row-variant(@state; @background; @border) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n border-color: @border;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n border-color: darken(@border, 5%);\n }\n }\n}\n\n// Button variants\n// -------------------------\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:hover,\n &:focus,\n &:active,\n &.active,\n .open .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 8%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &:active,\n &.active {\n background-color: @background;\n border-color: @border;\n }\n }\n}\n\n// Button sizes\n// -------------------------\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n\n// Pagination\n// -------------------------\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n\n// Labels\n// -------------------------\n.label-variant(@color) {\n background-color: @color;\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n\n// Navbar vertical align\n// -------------------------\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n\n// Progress bars\n// -------------------------\n.progress-bar-variant(@color) {\n background-color: @color;\n .progress-striped & {\n #gradient > .striped();\n }\n}\n\n// Responsive utilities\n// -------------------------\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n tr& { display: none !important; }\n th&,\n td& { display: none !important; }\n}\n\n// Grid System\n// -----------\n\n// Centered container element\n.container-fixed() {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n .clearfix();\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n .clearfix();\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n // Calculate width based on number of columns available\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the small column offsets\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n // Calculate width based on number of columns available\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium column offsets\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n // Calculate width based on number of columns available\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large column offsets\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n\n// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n}\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-focus-border` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. ``\n// element gets special love because it's special, and that's a fact!\n\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea& {\n height: auto;\n }\n}\n","modals.less":"//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n\n\n // Account for hiding of scrollbar\n body&,\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n margin-right: 15px\n }\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: auto;\n overflow-y: scroll;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0)}\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n margin-left: auto;\n margin-right: auto;\n width: auto;\n padding: 10px;\n z-index: (@zindex-modal-background + 10);\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: none;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: (@zindex-modal-background - 10);\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(.5); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n min-height: (@modal-title-padding + @modal-title-line-height);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n margin-top: 15px;\n padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n .clearfix(); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Scale up the modal\n@media screen and (min-width: @screen-sm) {\n\n .modal-dialog {\n width: 600px;\n padding-top: 30px;\n padding-bottom: 30px;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n}\n","navbar.less":"//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n z-index: @zindex-navbar;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n .clearfix();\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n .clearfix();\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n max-height: 340px;\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n .clearfix();\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Account for first and last children spacing\n .navbar-nav.navbar-left:first-child {\n margin-left: -@navbar-padding-horizontal;\n }\n .navbar-nav.navbar-right:last-child {\n margin-right: -@navbar-padding-horizontal;\n }\n .navbar-text:last-child {\n margin-right: 0;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container > .navbar-header,\n.container > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirity of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n border-width: 0 0 1px;\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n border-width: 0 0 1px;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n z-index: @zindex-navbar-fixed;\n top: 0;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with it's own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @screen-xs-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: ((@navbar-height - @line-height-computed) / 2);\n padding-bottom: ((@navbar-height - @line-height-computed) / 2);\n }\n }\n }\n\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specifity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right { .pull-right(); }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @screen-xs-max) {\n margin-bottom: 5px;\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n .border-bottom-radius(0);\n}\n\n// Right aligned menus need alt position\n.navbar-nav.pull-right > li > .dropdown-menu,\n.navbar-nav > li > .dropdown-menu.pull-right {\n left: auto;\n right: 0;\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n float: left;\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-default-bg, 7%);\n }\n\n // Dropdown menu items and carets\n .navbar-nav {\n // Caret should match text color on hover\n > .dropdown > a:hover .caret,\n > .dropdown > a:focus .caret {\n border-top-color: @navbar-default-link-hover-color;\n border-bottom-color: @navbar-default-link-hover-color;\n }\n\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n .caret {\n border-top-color: @navbar-default-link-active-color;\n border-bottom-color: @navbar-default-link-active-color;\n }\n }\n }\n > .dropdown > a .caret {\n border-top-color: @navbar-default-link-color;\n border-bottom-color: @navbar-default-link-color;\n }\n\n\n @media (max-width: @screen-xs-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n > .dropdown > a:hover .caret {\n border-top-color: @navbar-inverse-link-hover-color;\n border-bottom-color: @navbar-inverse-link-hover-color;\n }\n > .dropdown > a .caret {\n border-top-color: @navbar-inverse-link-color;\n border-bottom-color: @navbar-inverse-link-color;\n }\n > .open > a {\n &,\n &:hover,\n &:focus {\n .caret {\n border-top-color: @navbar-inverse-link-active-color;\n border-bottom-color: @navbar-inverse-link-active-color;\n }\n }\n }\n\n @media (max-width: @screen-xs-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n}\n","navs.less":"//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n .clearfix();\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and it's :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: 5px;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Clear any floats\n.tabbable {\n .clearfix();\n}\n\n// Show/hide tabbable areas\n.tab-content > .tab-pane,\n.pill-content > .pill-pane {\n display: none;\n}\n.tab-content,\n.pill-content {\n > .active {\n display: block;\n }\n}\n\n\n\n// Dropdowns\n// -------------------------\n\n// Make dropdown carets use link color in navs\n.nav .caret {\n border-top-color: @link-color;\n border-bottom-color: @link-color;\n}\n.nav a:hover .caret {\n border-top-color: @link-hover-color;\n border-bottom-color: @link-hover-color;\n}\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","normalize.less":"/*! normalize.css v2.1.0 | MIT License | git.io/normalize */\n\n// ==========================================================================\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined in IE 8/9.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// Correct `inline-block` display not defined in IE 8/9.\n//\n\naudio,\ncanvas,\nvideo {\n display: inline-block;\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\n[hidden] {\n display: none;\n}\n\n// ==========================================================================\n// Base\n// ==========================================================================\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -webkit-text-size-adjust: 100%; // 2\n -ms-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// ==========================================================================\n// Links\n// ==========================================================================\n\n//\n// Address `outline` inconsistency between Chrome and other browsers.\n//\n\na:focus {\n outline: thin dotted;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// ==========================================================================\n// Typography\n// ==========================================================================\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari 5, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9, Safari 5, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari 5 and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Correct font family set oddly in Safari 5 and Chrome.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, serif;\n font-size: 1em;\n}\n\n//\n// Improve readability of pre-formatted text in all browsers.\n//\n\npre {\n white-space: pre-wrap;\n}\n\n//\n// Set consistent quote types.\n//\n\nq {\n quotes: \"\\201C\" \"\\201D\" \"\\2018\" \"\\2019\";\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// ==========================================================================\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow displayed oddly in IE 9.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// ==========================================================================\n// Figures\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari 5.\n//\n\nfigure {\n margin: 0;\n}\n\n// ==========================================================================\n// Forms\n// ==========================================================================\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// 1. Correct font family not being inherited in all browsers.\n// 2. Correct font size not being inherited in all browsers.\n// 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.\n//\n\nbutton,\ninput,\nselect,\ntextarea {\n font-family: inherit; // 1\n font-size: 100%; // 2\n margin: 0; // 3\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\nbutton,\ninput {\n line-height: normal;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.\n// Correct `select` style inheritance in Firefox 4+ and Opera.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// 1. Address box sizing set to `content-box` in IE 8/9.\n// 2. Remove excess padding in IE 8/9.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari 5 and Chrome\n// on OS X.\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// 1. Remove default vertical scrollbar in IE 8/9.\n// 2. Improve readability and alignment in all browsers.\n//\n\ntextarea {\n overflow: auto; // 1\n vertical-align: top; // 2\n}\n\n// ==========================================================================\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n","pager.less":"//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n .clearfix();\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pagination-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pagination-bg;\n cursor: not-allowed;\n }\n }\n\n}\n","pagination.less":"//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n background-color: @pagination-hover-bg;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-bg;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-bg;\n border-color: @pagination-border;\n cursor: not-allowed;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @border-radius-small);\n}\n","panels.less":"//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: 15px;\n .clearfix();\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n\n // Remove border radius for top one\n &:first-child {\n .border-top-radius(0);\n }\n // But keep it for the last one\n &:last-child {\n border-bottom: 0;\n }\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table {\n margin-bottom: 0;\n }\n > .panel-body + .table {\n border-top: 1px solid @table-border-color;\n }\n > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n\n &:last-child > th,\n &:last-child > td {\n border-bottom: 0;\n }\n }\n }\n }\n}\n\n\n// Optional heading\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n .border-top-radius(@panel-border-radius - 1);\n}\n\n// Within heading, strip any `h*` tag of it's default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: 10px 15px;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius(@panel-border-radius - 1);\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n overflow: hidden; // crop contents when collapsed\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n + .panel-collapse .panel-body {\n border-top: 1px solid @panel-inner-border;\n }\n }\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n","popovers.less":"//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n text-align: left; // Reset given new insertion method\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Overrides for proper insertion\n white-space: normal;\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -10px; }\n &.right { margin-left: 10px; }\n &.bottom { margin-top: 10px; }\n &.left { margin-left: -10px; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 18px;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: 5px 5px 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n\n}\n","print.less":"//\n// Basic print styles\n// --------------------------------------------------\n// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css\n\n@media print {\n\n * {\n text-shadow: none !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links for images, or javascript/internal links\n .ir a:after,\n a[href^=\"javascript:\"]:after,\n a[href^=\"#\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n @page {\n margin: 2cm .5cm;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .table {\n td,\n th {\n background-color: #fff !important;\n }\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n}\n","progress-bars.less":"//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// Webkit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Firefox\n@-moz-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Opera\n@-o-keyframes progress-bar-stripes {\n from { background-position: 0 0; }\n to { background-position: 40px 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n.progress-striped .progress-bar {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n.progress.active .progress-bar {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -moz-animation: progress-bar-stripes 2s linear infinite;\n -ms-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","responsive-utilities.less":"//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#browsers\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n\n\n// Visibility utilities\n\n.visible-xs {\n .responsive-invisibility();\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n &.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n }\n &.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n }\n &.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n }\n}\n.visible-sm {\n .responsive-invisibility();\n &.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n }\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n &.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n }\n &.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n }\n}\n.visible-md {\n .responsive-invisibility();\n &.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n }\n &.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n }\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n &.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n }\n}\n.visible-lg {\n .responsive-invisibility();\n &.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n }\n &.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n }\n &.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n }\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n\n.hidden-xs {\n .responsive-visibility();\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n &.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n }\n &.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n }\n &.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n }\n}\n.hidden-sm {\n .responsive-visibility();\n &.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n }\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n &.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n }\n &.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n }\n}\n.hidden-md {\n .responsive-visibility();\n &.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n }\n &.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n }\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n &.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n }\n}\n.hidden-lg {\n .responsive-visibility();\n &.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n }\n &.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n }\n &.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n }\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n// Print utilities\n.visible-print {\n .responsive-invisibility();\n}\n\n@media print {\n .visible-print {\n .responsive-visibility();\n }\n .hidden-print {\n .responsive-invisibility();\n }\n}\n","scaffolding.less":"//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n\n*,\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 62.5%;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: underline;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0 0 0 0);\n border: 0;\n}\n","tables.less":"//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n max-width: 100%;\n background-color: @table-bg;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead {\n > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody {\n > tr:nth-child(odd) {\n > td,\n > th {\n background-color: @table-bg-accent;\n }\n }\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody {\n > tr:hover {\n > td,\n > th {\n background-color: @table-bg-hover;\n }\n }\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n.table > thead > tr,\n.table > tbody > tr,\n.table > tfoot > tr {\n > td.active,\n > th.active,\n &.active > td,\n &.active > th {\n background-color: @table-bg-active;\n }\n}\n\n// Generate the contextual variants\n.table-row-variant(success; @state-success-bg; @state-success-border);\n.table-row-variant(danger; @state-danger-bg; @state-danger-border);\n.table-row-variant(warning; @state-warning-bg; @state-warning-border);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n@media (max-width: @screen-sm-min) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n overflow-x: scroll;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n -webkit-overflow-scrolling: touch;\n\n // Tighten up spacing and give a background color\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","theme.less":"\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555;) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg;); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg;);\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%););\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg;);\n\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%););\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg;)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n}\n\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg;);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","thumbnails.less":"//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n .img-thumbnail();\n display: block; // Override the inline-block from `.img-thumbnail`\n margin-bottom: @line-height-computed;\n\n > img {\n .img-responsive();\n }\n}\n\n\n// Add a hover state for linked versions only\na.thumbnail:hover,\na.thumbnail:focus {\n border-color: @link-color;\n}\n\n// Images and captions\n.thumbnail > img {\n margin-left: auto;\n margin-right: auto;\n}\n.thumbnail .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n}\n","tooltip.less":"//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n visibility: visible;\n font-size: @font-size-small;\n line-height: 1.4;\n .opacity(0);\n\n &.in { .opacity(.9); }\n &.top { margin-top: -3px; padding: 5px 0; }\n &.right { margin-left: 3px; padding: 0 5px; }\n &.bottom { margin-top: 3px; padding: 5px 0; }\n &.left { margin-left: -3px; padding: 0 5px; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n text-decoration: none;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n left: 5px;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n right: 5px;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n left: 5px;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n right: 5px;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n","type.less":"//\n// Typography\n// --------------------------------------------------\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n.lead {\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.15);\n font-weight: 200;\n line-height: 1.4;\n\n @media (min-width: @screen-sm) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: 14px base font * 85% = about 12px\nsmall,\n.small { font-size: 85%; }\n\n// Undo browser default styling\ncite { font-style: normal; }\n\n// Contextual emphasis\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n color: @brand-primary;\n &:hover {\n color: darken(@brand-primary, 10%);\n }\n}\n.text-warning {\n color: @state-warning-text;\n &:hover {\n color: darken(@state-warning-text, 10%);\n }\n}\n.text-danger {\n color: @state-danger-text;\n &:hover {\n color: darken(@state-danger-text, 10%);\n }\n}\n.text-success {\n color: @state-success-text;\n &:hover {\n color: darken(@state-success-text, 10%);\n }\n}\n.text-info {\n color: @state-info-text;\n &:hover {\n color: darken(@state-info-text, 10%);\n }\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1,\nh2,\nh3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small {\n font-size: 65%;\n }\n}\nh4,\nh5,\nh6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n\n// Lists\n// --------------------------------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol{\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n@media (min-width: @grid-float-breakpoint) {\n .dl-horizontal {\n dt {\n float: left;\n width: (@component-offset-horizontal - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @component-offset-horizontal;\n .clearfix(); // Clear the floated `dt` if an empty `dd` is present\n }\n }\n}\n\n// MISC\n// ----\n\n// Abbreviations and acronyms\nabbr[title],\n// Added data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\nabbr.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n border-left: 5px solid @blockquote-border-color;\n p {\n font-size: (@font-size-base * 1.25);\n font-weight: 300;\n line-height: 1.25;\n }\n p:last-child {\n margin-bottom: 0;\n }\n small {\n display: block;\n line-height: @line-height-base;\n color: @blockquote-small-color;\n &:before {\n content: '\\2014 \\00A0';// EM DASH, NBSP\n }\n }\n\n // Float right with text-align: right\n &.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n p,\n small {\n text-align: right;\n }\n small {\n &:before {\n content: '';\n }\n &:after {\n content: '\\00A0 \\2014';// NBSP, EM DASH\n }\n }\n }\n}\n\n// Quotes\nq:before,\nq:after,\nblockquote:before,\nblockquote:after {\n content: \"\";\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","utilities.less":"//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","variables.less":"//\n// Variables\n// --------------------------------------------------\n\n\n// Global values\n// --------------------------------------------------\n\n// Grays\n// -------------------------\n\n@gray-darker: lighten(#000, 13.5%); // #222\n@gray-dark: lighten(#000, 20%); // #333\n@gray: lighten(#000, 33.5%); // #555\n@gray-light: lighten(#000, 60%); // #999\n@gray-lighter: lighten(#000, 93.5%); // #eee\n\n// Brand colors\n// -------------------------\n\n@brand-primary: #428bca;\n@brand-success: #5cb85c;\n@brand-warning: #f0ad4e;\n@brand-danger: #d9534f;\n@brand-info: #5bc0de;\n\n// Scaffolding\n// -------------------------\n\n@body-bg: #fff;\n@text-color: @gray-dark;\n\n// Links\n// -------------------------\n\n@link-color: @brand-primary;\n@link-hover-color: darken(@link-color, 15%);\n\n// Typography\n// -------------------------\n\n@font-family-sans-serif: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n@font-family-serif: Georgia, \"Times New Roman\", Times, serif;\n@font-family-monospace: Monaco, Menlo, Consolas, \"Courier New\", monospace;\n@font-family-base: @font-family-sans-serif;\n\n@font-size-base: 14px;\n@font-size-large: ceil(@font-size-base * 1.25); // ~18px\n@font-size-small: ceil(@font-size-base * 0.85); // ~12px\n\n@font-size-h1: floor(@font-size-base * 2.60); // ~36px\n@font-size-h2: floor(@font-size-base * 2.15); // ~30px\n@font-size-h3: ceil(@font-size-base * 1.70); // ~24px\n@font-size-h4: ceil(@font-size-base * 1.25); // ~18px\n@font-size-h5: @font-size-base;\n@font-size-h6: ceil(@font-size-base * 0.85); // ~12px\n\n@line-height-base: 1.428571429; // 20/14\n@line-height-computed: floor(@font-size-base * @line-height-base); // ~20px\n\n@headings-font-family: @font-family-base;\n@headings-font-weight: 500;\n@headings-line-height: 1.1;\n@headings-color: inherit;\n\n\n// Iconography\n// -------------------------\n\n@icon-font-path: \"../fonts/\";\n@icon-font-name: \"glyphicons-halflings-regular\";\n\n\n// Components\n// -------------------------\n// Based on 14px font-size and 1.428 line-height (~20px to start)\n\n@padding-base-vertical: 6px;\n@padding-base-horizontal: 12px;\n\n@padding-large-vertical: 10px;\n@padding-large-horizontal: 16px;\n\n@padding-small-vertical: 5px;\n@padding-small-horizontal: 10px;\n\n@line-height-large: 1.33;\n@line-height-small: 1.5;\n\n@border-radius-base: 4px;\n@border-radius-large: 6px;\n@border-radius-small: 3px;\n\n@component-active-color: #fff;\n@component-active-bg: @brand-primary;\n\n@caret-width-base: 4px;\n@caret-width-large: 5px;\n\n// Tables\n// -------------------------\n\n@table-cell-padding: 8px;\n@table-condensed-cell-padding: 5px;\n\n@table-bg: transparent; // overall background-color\n@table-bg-accent: #f9f9f9; // for striping\n@table-bg-hover: #f5f5f5;\n@table-bg-active: @table-bg-hover;\n\n@table-border-color: #ddd; // table and cell border\n\n\n// Buttons\n// -------------------------\n\n@btn-font-weight: normal;\n\n@btn-default-color: #333;\n@btn-default-bg: #fff;\n@btn-default-border: #ccc;\n\n@btn-primary-color: #fff;\n@btn-primary-bg: @brand-primary;\n@btn-primary-border: darken(@btn-primary-bg, 5%);\n\n@btn-success-color: #fff;\n@btn-success-bg: @brand-success;\n@btn-success-border: darken(@btn-success-bg, 5%);\n\n@btn-warning-color: #fff;\n@btn-warning-bg: @brand-warning;\n@btn-warning-border: darken(@btn-warning-bg, 5%);\n\n@btn-danger-color: #fff;\n@btn-danger-bg: @brand-danger;\n@btn-danger-border: darken(@btn-danger-bg, 5%);\n\n@btn-info-color: #fff;\n@btn-info-bg: @brand-info;\n@btn-info-border: darken(@btn-info-bg, 5%);\n\n@btn-link-disabled-color: @gray-light;\n\n\n// Forms\n// -------------------------\n\n@input-bg: #fff;\n@input-bg-disabled: @gray-lighter;\n\n@input-color: @gray;\n@input-border: #ccc;\n@input-border-radius: @border-radius-base;\n@input-border-focus: #66afe9;\n\n@input-color-placeholder: @gray-light;\n\n@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);\n@input-height-large: (floor(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);\n@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);\n\n@legend-color: @gray-dark;\n@legend-border-color: #e5e5e5;\n\n@input-group-addon-bg: @gray-lighter;\n@input-group-addon-border-color: @input-border;\n\n\n// Dropdowns\n// -------------------------\n\n@dropdown-bg: #fff;\n@dropdown-border: rgba(0,0,0,.15);\n@dropdown-fallback-border: #ccc;\n@dropdown-divider-bg: #e5e5e5;\n\n@dropdown-link-color: @gray-dark;\n@dropdown-link-hover-color: darken(@gray-dark, 5%);\n@dropdown-link-hover-bg: #f5f5f5;\n\n@dropdown-link-active-color: @component-active-color;\n@dropdown-link-active-bg: @component-active-bg;\n\n@dropdown-link-disabled-color: @gray-light;\n\n@dropdown-header-color: @gray-light;\n\n@dropdown-caret-color: #000;\n\n\n// COMPONENT VARIABLES\n// --------------------------------------------------\n\n\n// Z-index master list\n// -------------------------\n// Used for a bird's eye view of components dependent on the z-axis\n// Try to avoid customizing these :)\n\n@zindex-navbar: 1000;\n@zindex-dropdown: 1000;\n@zindex-popover: 1010;\n@zindex-tooltip: 1030;\n@zindex-navbar-fixed: 1030;\n@zindex-modal-background: 1040;\n@zindex-modal: 1050;\n\n// Media queries breakpoints\n// --------------------------------------------------\n\n// Extra small screen / phone\n// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1\n@screen-xs: 480px;\n@screen-xs-min: @screen-xs;\n@screen-phone: @screen-xs-min;\n\n// Small screen / tablet\n// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1\n@screen-sm: 768px;\n@screen-sm-min: @screen-sm;\n@screen-tablet: @screen-sm-min;\n\n// Medium screen / desktop\n// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1\n@screen-md: 992px;\n@screen-md-min: @screen-md;\n@screen-desktop: @screen-md-min;\n\n// Large screen / wide desktop\n// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1\n@screen-lg: 1200px;\n@screen-lg-min: @screen-lg;\n@screen-lg-desktop: @screen-lg-min;\n\n// So media queries don't overlap when required, provide a maximum\n@screen-xs-max: (@screen-sm-min - 1);\n@screen-sm-max: (@screen-md-min - 1);\n@screen-md-max: (@screen-lg-min - 1);\n\n\n// Grid system\n// --------------------------------------------------\n\n// Number of columns in the grid system\n@grid-columns: 12;\n// Padding, to be divided by two and applied to the left and right of all columns\n@grid-gutter-width: 30px;\n// Point at which the navbar stops collapsing\n@grid-float-breakpoint: @screen-sm;\n\n\n// Navbar\n// -------------------------\n\n// Basics of a navbar\n@navbar-height: 50px;\n@navbar-margin-bottom: @line-height-computed;\n@navbar-border-radius: @border-radius-base;\n@navbar-padding-horizontal: floor(@grid-gutter-width / 2);\n@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);\n\n@navbar-default-color: #777;\n@navbar-default-bg: #f8f8f8;\n@navbar-default-border: darken(@navbar-default-bg, 6.5%);\n\n// Navbar links\n@navbar-default-link-color: #777;\n@navbar-default-link-hover-color: #333;\n@navbar-default-link-hover-bg: transparent;\n@navbar-default-link-active-color: #555;\n@navbar-default-link-active-bg: darken(@navbar-default-bg, 6.5%);\n@navbar-default-link-disabled-color: #ccc;\n@navbar-default-link-disabled-bg: transparent;\n\n// Navbar brand label\n@navbar-default-brand-color: @navbar-default-link-color;\n@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);\n@navbar-default-brand-hover-bg: transparent;\n\n// Navbar toggle\n@navbar-default-toggle-hover-bg: #ddd;\n@navbar-default-toggle-icon-bar-bg: #ccc;\n@navbar-default-toggle-border-color: #ddd;\n\n\n// Inverted navbar\n//\n// Reset inverted navbar basics\n@navbar-inverse-color: @gray-light;\n@navbar-inverse-bg: #222;\n@navbar-inverse-border: darken(@navbar-inverse-bg, 10%);\n\n// Inverted navbar links\n@navbar-inverse-link-color: @gray-light;\n@navbar-inverse-link-hover-color: #fff;\n@navbar-inverse-link-hover-bg: transparent;\n@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;\n@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 10%);\n@navbar-inverse-link-disabled-color: #444;\n@navbar-inverse-link-disabled-bg: transparent;\n\n// Inverted navbar brand label\n@navbar-inverse-brand-color: @navbar-inverse-link-color;\n@navbar-inverse-brand-hover-color: #fff;\n@navbar-inverse-brand-hover-bg: transparent;\n\n// Inverted navbar toggle\n@navbar-inverse-toggle-hover-bg: #333;\n@navbar-inverse-toggle-icon-bar-bg: #fff;\n@navbar-inverse-toggle-border-color: #333;\n\n\n// Navs\n// -------------------------\n\n@nav-link-padding: 10px 15px;\n@nav-link-hover-bg: @gray-lighter;\n\n@nav-disabled-link-color: @gray-light;\n@nav-disabled-link-hover-color: @gray-light;\n\n@nav-open-link-hover-color: #fff;\n@nav-open-caret-border-color: #fff;\n\n// Tabs\n@nav-tabs-border-color: #ddd;\n\n@nav-tabs-link-hover-border-color: @gray-lighter;\n\n@nav-tabs-active-link-hover-bg: @body-bg;\n@nav-tabs-active-link-hover-color: @gray;\n@nav-tabs-active-link-hover-border-color: #ddd;\n\n@nav-tabs-justified-link-border-color: #ddd;\n@nav-tabs-justified-active-link-border-color: @body-bg;\n\n// Pills\n@nav-pills-active-link-hover-bg: @component-active-bg;\n@nav-pills-active-link-hover-color: @component-active-color;\n\n\n// Pagination\n// -------------------------\n\n@pagination-bg: #fff;\n@pagination-border: #ddd;\n\n@pagination-hover-bg: @gray-lighter;\n\n@pagination-active-bg: @brand-primary;\n@pagination-active-color: #fff;\n\n@pagination-disabled-color: @gray-light;\n\n\n// Pager\n// -------------------------\n\n@pager-border-radius: 15px;\n@pager-disabled-color: @gray-light;\n\n\n// Jumbotron\n// -------------------------\n\n@jumbotron-padding: 30px;\n@jumbotron-color: inherit;\n@jumbotron-bg: @gray-lighter;\n\n@jumbotron-heading-color: inherit;\n\n\n// Form states and alerts\n// -------------------------\n\n@state-success-text: #468847;\n@state-success-bg: #dff0d8;\n@state-success-border: darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text: #3a87ad;\n@state-info-bg: #d9edf7;\n@state-info-border: darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text: #c09853;\n@state-warning-bg: #fcf8e3;\n@state-warning-border: darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text: #b94a48;\n@state-danger-bg: #f2dede;\n@state-danger-border: darken(spin(@state-danger-bg, -10), 5%);\n\n\n// Tooltips\n// -------------------------\n@tooltip-max-width: 200px;\n@tooltip-color: #fff;\n@tooltip-bg: #000;\n\n@tooltip-arrow-width: 5px;\n@tooltip-arrow-color: @tooltip-bg;\n\n\n// Popovers\n// -------------------------\n@popover-bg: #fff;\n@popover-max-width: 276px;\n@popover-border-color: rgba(0,0,0,.2);\n@popover-fallback-border-color: #ccc;\n\n@popover-title-bg: darken(@popover-bg, 3%);\n\n@popover-arrow-width: 10px;\n@popover-arrow-color: #fff;\n\n@popover-arrow-outer-width: (@popover-arrow-width + 1);\n@popover-arrow-outer-color: rgba(0,0,0,.25);\n@popover-arrow-outer-fallback-color: #999;\n\n\n// Labels\n// -------------------------\n\n@label-default-bg: @gray-light;\n@label-primary-bg: @brand-primary;\n@label-success-bg: @brand-success;\n@label-info-bg: @brand-info;\n@label-warning-bg: @brand-warning;\n@label-danger-bg: @brand-danger;\n\n@label-color: #fff;\n@label-link-hover-color: #fff;\n\n\n// Modals\n// -------------------------\n@modal-inner-padding: 20px;\n\n@modal-title-padding: 15px;\n@modal-title-line-height: @line-height-base;\n\n@modal-content-bg: #fff;\n@modal-content-border-color: rgba(0,0,0,.2);\n@modal-content-fallback-border-color: #999;\n\n@modal-backdrop-bg: #000;\n@modal-header-border-color: #e5e5e5;\n@modal-footer-border-color: @modal-header-border-color;\n\n\n// Alerts\n// -------------------------\n@alert-padding: 15px;\n@alert-border-radius: @border-radius-base;\n@alert-link-font-weight: bold;\n\n@alert-success-bg: @state-success-bg;\n@alert-success-text: @state-success-text;\n@alert-success-border: @state-success-border;\n\n@alert-info-bg: @state-info-bg;\n@alert-info-text: @state-info-text;\n@alert-info-border: @state-info-border;\n\n@alert-warning-bg: @state-warning-bg;\n@alert-warning-text: @state-warning-text;\n@alert-warning-border: @state-warning-border;\n\n@alert-danger-bg: @state-danger-bg;\n@alert-danger-text: @state-danger-text;\n@alert-danger-border: @state-danger-border;\n\n\n// Progress bars\n// -------------------------\n@progress-bg: #f5f5f5;\n@progress-bar-color: #fff;\n\n@progress-bar-bg: @brand-primary;\n@progress-bar-success-bg: @brand-success;\n@progress-bar-warning-bg: @brand-warning;\n@progress-bar-danger-bg: @brand-danger;\n@progress-bar-info-bg: @brand-info;\n\n\n// List group\n// -------------------------\n@list-group-bg: #fff;\n@list-group-border: #ddd;\n@list-group-border-radius: @border-radius-base;\n\n@list-group-hover-bg: #f5f5f5;\n@list-group-active-color: @component-active-color;\n@list-group-active-bg: @component-active-bg;\n@list-group-active-border: @list-group-active-bg;\n\n@list-group-link-color: #555;\n@list-group-link-heading-color: #333;\n\n\n// Panels\n// -------------------------\n@panel-bg: #fff;\n@panel-inner-border: #ddd;\n@panel-border-radius: @border-radius-base;\n@panel-footer-bg: #f5f5f5;\n\n@panel-default-text: @gray-dark;\n@panel-default-border: #ddd;\n@panel-default-heading-bg: #f5f5f5;\n\n@panel-primary-text: #fff;\n@panel-primary-border: @brand-primary;\n@panel-primary-heading-bg: @brand-primary;\n\n@panel-success-text: @state-success-text;\n@panel-success-border: @state-success-border;\n@panel-success-heading-bg: @state-success-bg;\n\n@panel-warning-text: @state-warning-text;\n@panel-warning-border: @state-warning-border;\n@panel-warning-heading-bg: @state-warning-bg;\n\n@panel-danger-text: @state-danger-text;\n@panel-danger-border: @state-danger-border;\n@panel-danger-heading-bg: @state-danger-bg;\n\n@panel-info-text: @state-info-text;\n@panel-info-border: @state-info-border;\n@panel-info-heading-bg: @state-info-bg;\n\n\n// Thumbnails\n// -------------------------\n@thumbnail-padding: 4px;\n@thumbnail-bg: @body-bg;\n@thumbnail-border: #ddd;\n@thumbnail-border-radius: @border-radius-base;\n\n@thumbnail-caption-color: @text-color;\n@thumbnail-caption-padding: 9px;\n\n\n// Wells\n// -------------------------\n@well-bg: #f5f5f5;\n\n\n// Badges\n// -------------------------\n@badge-color: #fff;\n@badge-link-hover-color: #fff;\n@badge-bg: @gray-light;\n\n@badge-active-color: @link-color;\n@badge-active-bg: #fff;\n\n@badge-font-weight: bold;\n@badge-line-height: 1;\n@badge-border-radius: 10px;\n\n\n// Breadcrumbs\n// -------------------------\n@breadcrumb-bg: #f5f5f5;\n@breadcrumb-color: #ccc;\n@breadcrumb-active-color: @gray-light;\n@breadcrumb-separator: \"/\";\n\n\n// Carousel\n// ------------------------\n\n@carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);\n\n@carousel-control-color: #fff;\n@carousel-control-width: 15%;\n@carousel-control-opacity: .5;\n@carousel-control-font-size: 20px;\n\n@carousel-indicator-active-bg: #fff;\n@carousel-indicator-border-color: #fff;\n\n@carousel-caption-color: #fff;\n\n\n// Close\n// ------------------------\n@close-font-weight: bold;\n@close-color: #000;\n@close-text-shadow: 0 1px 0 #fff;\n\n\n// Code\n// ------------------------\n@code-color: #c7254e;\n@code-bg: #f9f2f4;\n\n@pre-bg: #f5f5f5;\n@pre-color: @gray-dark;\n@pre-border-color: #ccc;\n@pre-scrollable-max-height: 340px;\n\n// Type\n// ------------------------\n@text-muted: @gray-light;\n@abbr-border-color: @gray-light;\n@headings-small-color: @gray-light;\n@blockquote-small-color: @gray-light;\n@blockquote-border-color: @gray-lighter;\n@page-header-border-color: @gray-lighter;\n\n// Miscellaneous\n// -------------------------\n\n// Hr border color\n@hr-border: @gray-lighter;\n\n// Horizontal forms & lists\n@component-offset-horizontal: 180px;\n\n\n// Container sizes\n// --------------------------------------------------\n\n// Small screen / tablet\n@container-tablet: ((720px + @grid-gutter-width));\n@container-sm: @container-tablet;\n\n// Medium screen / desktop\n@container-desktop: ((940px + @grid-gutter-width));\n@container-md: @container-desktop;\n\n// Large screen / wide desktop\n@container-large-desktop: ((1140px + @grid-gutter-width));\n@container-lg: @container-large-desktop;\n","wells.less":"//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid darken(@well-bg, 7%);\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n"} var __fonts = {"glyphicons-halflings-regular.eot":"ďż˝6\u0000\u0000ďż˝5\u0000\u0000\u0002\u0000\u0002\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u0005\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000ďż˝\u0001\u0000\u0000\u0004\u0000LP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000��\u0018\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(\u0000G\u0000L\u0000Y\u0000P\u0000H\u0000I\u0000C\u0000O\u0000N\u0000S\u0000 \u0000H\u0000a\u0000l\u0000f\u0000l\u0000i\u0000n\u0000g\u0000s\u0000\u0000\u0000\u000e\u0000R\u0000e\u0000g\u0000u\u0000l\u0000a\u0000r\u0000\u0000\u0000x\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u00000\u00001\u0000;\u0000P\u0000S\u0000 \u00000\u00000\u00001\u0000.\u00000\u00000\u00001\u0000;\u0000h\u0000o\u0000t\u0000c\u0000o\u0000n\u0000v\u0000 \u00001\u0000.\u00000\u0000.\u00007\u00000\u0000;\u0000m\u0000a\u0000k\u0000e\u0000o\u0000t\u0000f\u0000.\u0000l\u0000i\u0000b\u00002\u0000.\u00005\u0000.\u00005\u00008\u00003\u00002\u00009\u0000\u0000\u00008\u0000G\u0000L\u0000Y\u0000P\u0000H\u0000I\u0000C\u0000O\u0000N\u0000S\u0000 \u0000H\u0000a\u0000l\u0000f\u0000l\u0000i\u0000n\u0000g\u0000s\u0000 \u0000R\u0000e\u0000g\u0000u\u0000l\u0000a\u0000r\u0000\u0000\u0000\u0000\u0000BSGP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0003\u0000wďż˝\u00005s\u00005y\u0000-ďż˝\u0012�����\u0011Őź(tŰŠK��\u0010D��'P\u000bďż˝Mďż˝\nďż˝\u0000Bďż˝j\u001e���beJ2cc��LF\u001e1+ďż˝WEeuJ\u0019��eďż˝~m��%���W��*ďż˝IzI\u0017€�\u0004sL��\tx\n\n��4ďż˝xŃ—PS��-Uuďż˝T\fí˛E��Fďż˝\u0003\u0003��?ͬ\tÔŻďż˝4ďż˝\rʨg��\u001cq ďż˝eďż˝$ďż˝{��-+ďż˝\u0012\u00021u\u0001ďż˝\u0006���{���S��\"!Eďż˝B&/\r���L��\u0002ďż˝Eďż˝\u0005ďż˝Kďż˝\u0015ďż˝7f��Ү�|ďż˝'ďż˝=����j��p��Eďż˝A_Bďż˝@��*ďż˝\u001d?~���\rďż˝\u00169ďż˝&\u0005ďż˝I���v���@\u0017e��r��\u0001ďż˝>Mo<ďż˝LX���\u0004ďż˝%���a>Ë’ ďż˝\u0002ďż˝jp\u001d?Pďż˝;ďż˝_��\b��iƶ� <��}LbXďż˝Ue1\u0012ďż˝L\u0011\f\tďż˝!ďż˝;���\f\fďż˝\u0006ďż˝\tD\u000bďż˝^%ďż˝ ďż˝\tPP��\u0015Aďż˝@��\u0002ďż˝5\u000e����K\u000eaďż˝lÓ´Äźďż˝a!\u0010������|Zhďż˝\u0010��FFIďż˝0ďż˝Eďż˝F\"����'Mո�\u00069\u0004ďż˝@ďż˝)ďż˝\f1A�����ȶ���р���<\u0001ďż˝\fďż˝\u001e\u0015��,ďż˝@��Aďż˝\tpA��Cϲ�\\ďż˝.ďż˝\u0000\u0010mȤ�Ix���\u0006��sS\n\b\"ďż˝rďż˝r}ďż˝n\u0019N�����~lQ��oďż˝`>ďż˝t��\u0016��鰅\u0006��׶������\u00125����\fX`\n­\u0001g\u00129K��\u0003ďż˝ ďż˝g\u0002ďż˝\u0005]ďż˝s ďż˝z\u0005T0%j��kT���gĚ™0\"ďż˝\u0004Y\u001cVg��\u0013@\u000e��)��\u0001>aF\bc\u0000!t\u0000zďż˝\u0000��\u0014ďż˝=\u0006V��k���@op^vďż˝?ďż˝J��=f���0[7��@��}ďż˝t\u0001��\\��\u0015��}��\u001cv\\|f\u0019\u000f{ďż˝yďż˝?=\u001fďż˝1\"f����\u000fx���Hxxďż˝iďż˝\u000f8ďż˝kďż˝PYďż˝8��\u0007~��\u001dďż˝\u000eďż˝7@ďż˝(:3v�𰬨Xďż˝X+(\u000b\u0017ďż˝\u0002�����F\u000bj\u001aďż˝\u0016ďż˝19ďż˝\bďż˝\u0013ďż˝'(mďż˝}��\fďż˝\u000fďż˝e\u000eďż˝\u000b��C��Œ�=��\u0004&ďż˝\fďż˝\u0014ďż˝e\ny\u0006\u0019��E\u0006��B\u0000ďż˝(ďż˝2���E?\u0001xv5ďż˝ki{P\"ďż˝Iďż˝Gďż˝kXLP�ŀEďż˝>G��[ďż˝|q!ďż˝cďż˝+o0ďż˝\naďż˝\u0004ďż˝~ďż˝\\��\u0019;��!\u0011ďż˝!ďż˝+ďż˝\u001dďż˝uX1ďż˝Hďż˝\"����������\bďż˝U94%��`����)��yďż˝\u001f\u00061ďż˝*����/\u0018��:>\\gďż˝@ďż˝x�����Z��.]ďż˝\u0006ďż˝A��\u0004��Ňďż˝K��/\nďż˝{[\u00178ďż˝]ďż˝bďż˝.q~���2ďż˝Dďż˝oRďż˝zK��oGl���{E��\u0001\u001a��\u000b9��\tďż˝E\rďż˝ZRďż˝\u0013}3\u0012QO��Е6��Cďż˝).ďż˝R���%\bOy\u000e����r\nďż˝#\u0015��Q��V?l��Gďż˝I��Vďż˝\tT.ďż˝Rďż˝��t\r\u001c\u0011�ދ����mÝŻďż˝mbďż˝v\u0001\u0000ďż˝vtO\u000fn#<ďż˝u\u001cďż˝9��\u0017p3:��\u0011ďż˝)ďż˝%ďż˝\u001eďż˝Tz��\u0003ďż˝\u0012\u0016\u001a��c\u001a��\fB\u0004Wďż˝c\u000b������\ncFvEZďż˝Oďż˝Ik��\u0010M\u0010\u0014ďż˝Yďż˝u\u000fj%[ďż˝(\u00110iďż˝\u0011\u0003ďż˝>)ďż˝aQy}ďż˝vb2��'*ďż˝bďż˝G��\r���~\tďż˝5ďż˝sďż˝'����\u0002�å�vx\u001e\u00118\u0007)#7J\f��\r\u0002���@IĆ ďż˝\u000b\u0016ďż˝`ďż˝S\u0017(E�˖\u0016B��!\u000e\u0001\u0002$<\u0015ďż˝\u0000sm���{ŃŤďż˝ �����!`x뚢\"ZaB3����\u0004x��W��[\u0004×���j\u0010\u0006\u0002Ćhďż˝%pt\u0004K\u0001ďż˝[ďż˝d���\bC$U\u0014C@\\)ďż˝A~\u0014qďż˝\u0005����\u0013ďż˝\u0019/ďż˝\u0016@\u0005\u0018\u0001znďż˝2\u0011ďż˝\u0016e?9�ڟ�N�ظQďż˝91��Ba����aďż˝0ďż˝#ďż˝\u001cÚ.3\u000e���\u0018����������+z%ďż˝\u0010Ԇ�\b��\u001a\u001fEÚ”sďż˝A\u0017\u0012\u001a\u001c\u000b\rďż˝\u0012Uďż˝|\u001aďż˝h��@��إs5S8*v0\u0018\u001cD�����Uďż˝\u001dYm\u0007���I���s���:��Dt��Xrďż˝/���0[L\r\u001b\u0006Nďż˝\t���\u0005ďż˝I���Ċ$a����pp���\u0003MNʢ7��tDďż˝I'alďż˝Y\"4\u0017��X\tďż˝r��[ďż˝{\u001d_ďż˝\u0012MWďż˝ \u0015X1ďż˝<��c��)ďż˝L\u0019|���S\u0000ďż˝Q��͖�Vďż˝\u0019��F��\u0002F��\u0004\u0016\u0001t\u001bu��4d��r\u0018-Mvďż˝Mďż˝uďż˝S���\u00178ďż˝91c���\nĂ’`ďż˝\fAI��#\\ďż˝*pďż˝X�׼�)���4%>��\u001aďż˝bmďż˝]ďż˝5��5ďż˝N\u0017=G���\u0000\u0001#ďż˝r���96#R\u0003���\u0015\nYi���\fďż˝\u0006+\u0007\u000bf\u0000'F5\f8@\u0004ďż˝xďż˝4���K���.��- 2��:ďż˝Q\u0003\tďż˝4ÜŹ\u0004ďż˝\u00175\u0001\fďż˝2\u001c\u001aďż˝X\u001eCďż˝7\u0010`M-��jďż˝\n\u0000>;~ďż˝L��5ďż˝nďż˝H\u0013��HF4ďż˝Kßąďż˝Yďż˝p��rďż˝\u0002wsďż˝4�݌F�۝��Fďż˝:ďż˝\u00070Ó˘\u0001ďż˝L[f|��\u0006��\u0006��J�����֠:\u0013hďż˝$ďż˝I\u0001��ry(*ďż˝u&\u001d~Kďż˝e��`ďż˝\f��73)\u0010ďż˝Wďż˝$ %ض����pďż˝@\u0013Cďż˝\\ďż˝r|Sďż˝\u0012\"ďż˝\u001aďż˝E\"\u0018���0iďż˝r\u0002Oďż˝Dhďż˝md#$4E\u001b��@J��\"����T\u0017ďż˝\u001f(��Lďż˝9Ů´ďż˝Nďż˝CxM�����\rďż˝}Dďż˝-ďż˝BI��rxďż˝\u001c\bďż˝)\\)\u0001ďż˝gUďż˝Jďż˝i����uďż˝Oďż˝\u00151T\u0007>ďż˝|��>J��D��bsďż˝-ďż˝@\u0016ďż˝\u0010Eďż˝@ďż˝\u0013]ďż˝8�������B��𴼅�ږ��\u000bďż˝Xďż˝_3\u0010ďż˝U\n\bďż˝\fďż˝dDďż˝Çďż˝_ďż˝ ��\u0005���\f\u0004ďż˝t��\u0001��Kďż˝4\u0010n,ďż˝Dďż˝\u001f���\"6��@\u0005���뇂\u0005ďż˝ ��F\u001eďż˝mďż˝`Yďż˝\u0012\u0004ďż˝6ďż˝\u0016'3¨�\u001fďż˝\u00162lďż˝\u0004p\u000fM\u0003ďż˝`<ďż˝hWďż˝\"��Pďż˝@����\u0019\t(J(ďż˝^ďż˝3��Oďż˝yďż˝Lq����]\u0012(D��Rďż˝r\u0019cďż˝{e����\\3P\u0016!}\u0010\"��ǼVtďż˝)w���\u00194?��u~ďż˝D��\u001a��U2]ďż˝\u00190ďż˝OVFďż˝6-���M��)���eYďż˝l.H��RĎ_ďż˝A��Jďż˝\u000bĘ»\u0018Yďż˝\u000eĺ’“oIF��Zt:\u0013�٬��\u0013·�����h\"\u0012\u0006B������&���\"ďż˝nyó‹‰A��-���x#ďż˝~6�շ��hX�����{ďż˝9Aďż˝\"ďż˝5ioďż˝rjďż˝{ďż˝H8ďż˝)��IZ^ĐĽ\u0004�ij@.@�ΓF\u001e.���\u001c\u001c\u0019Rďż˝Kďż˝Aďż˝D ďż˝d\u0011��\u0001ďż˝Q\u0010ďż˝,ďż˝\f���a\u0004[\u001aqďż˝gďż˝@ďż˝\tďż˝D_���#Eďż˝uďż˝)ďż˝R1��B]F\nďż˝uďż˝V\u0003�����G{\u000e�����\u001aďż˝\u0004��x\fďż˝\u001e]ε(@\u0018\u0001mďż˝\rl\u0011���f�����Pďż˝:ďż˝H���\u0000sďż˝,i\u0014�����Q>2ďż˝\"d[\r(ďż˝\u0010ďż˝ ��\f/ďż˝uŇŹďż˝bSďż˝L\u0011Ëłďż˝.\u001bďż˝\"ďż˝:ďż˝\u0018Aďż˝U@ďż˝p��ֽR\u0001ďż˝E���{ďż˝\u001fďż˝\u001bB\u001b��H���ƥ�!\u0005I���aďż˝\u000b-w\"ďż˝)w%���᜙�����\u001brw��ͳ�\u000erďż˝6��!ďż˝1ďż˝Y��\u0000Ë\u0016LTďż˝p��x��\u0018ďż˝rďż˝\u0006ďż˝8\u0014]\u0005ďż˝\u0011>Ň\u0004��S\"ďż˝#^ďż˝m�ꤾ�\u0014ďż˝B\\\r��iďż˝&Uďż˝=��Q\u001dďż˝1Äź,?ďż˝t&r,@lďż˝5AŰŚďż˝J��6\\��\u0007ďż˝w��x7Iďż˝\u0013\\`nďż˝sKpĘ´\b�݀׼\u0014\fďż˝2\u000bLďż˝\u0005\u0000��\b'ďż˝M3\b��\u000f���Ki[v&V\u0002ďż˝tFďż˝THďż˝\nrxďż˝\u0001��TUYďż˝Eeďż˝}\u0001���\u0005$\u0016Wďż˝\u0007=ďż˝\u0013\u0001X/ďż˝}%ďż˝Kďż˝D\u001a\u0013��*��:ďż˝D\u0000=K\u0012ďż˝_�����`ďż˝Dďż˝#ďż˝[��Jďż˝Qďż˝lďż˝$\t\u0006��zďż˝\u0000s/ďż˝\u0002��\u001f\u001eďż˝q��J����I+\u0010ďż˝X��,ďż˝$\tďż˝gďż˝f`��%ďż˝Qďż˝6ďż˝\"\u0018@t��N\"9\u001e()y\u0015ďż˝\u001b.B��� L��*ďż˝6ďż˝o^4ďż˝4Y��e-ҫ��z\u0005_ďż˝|���~ďż˝nM7ďż˝\u000e�ڌ�Tgďż˝\r\nďż˝`�΋dďż˝\u000e\u0007kbrďż˝Ř����\u0018ďż˝\u000fďż˝fďż˝\u0013v\u001c��/$}%)ďż˝-ė��Rďż˝\n\u0007ďż˝&\rH|&ďż˝Xďż˝$\u000e\t\r;cďż˝+s-ďż˝Aďż˝Đ>>;_ďż˝?-ďż˝1hG*\u0010��\u0016@��Urȳ�ˊ73ďż˝6h)����\u0018�� O���\u0000.ďż˝M2ďż˝>j\u0000j=B¦�1ďż˝M��XB`L�Ѱ\u000b>x\u0005���\rd���b\u0016N\u0012\tďż˝Xďż˝\u0011Kďż˝\u0012ďż˝n,\u0013ཫW{퓙��;�ߴ�p[ďż˝j)^��`zďż˝\bďż˝WI֮�\u0007����pďż˝hďż˝4?Ϳ��eSďż˝Ú\f��\u00184+v\u001f{ďż˝1��Xďż˝PBX���\u000bq��EsGďż˝\u001b��p?g\u0006���i{Óďż˝Mďż˝t����ꛖ���\fďż˝c��8;$<ďż˝\\3Q���\u001eZ\u0005ďż˝\rld\u0001v��f܆\"ďż˝\u0001��cďż˝\u0001�ž��\b��\\\"Zďż˝\u0018ďż˝T)U��Zďż˝l��U\u0016A'hďż˝Eďż˝,Ôďż˝.A=��\u0005t���\u0010Fďż˝DRlďż˝sďż˝\u000bďż˝)ș�`/\";ďż˝\f.��2��\u001b\u001d]bďż˝\u0010Pďż˝cB��roďż˝*[��\t\u0000��Bďż˝ K|e��40\u001f��M\nďż˝2Bďż˝\u0014ďż˝f1���1\u0004yďż˝�������R<\"ďż˝Fďż˝Iďż˝\u0002'ďż˝V���P��\u0012ďż˝N�ɣ���\nPF\u00158\b`ďż˝j\"jm�����\u0016\u000fďż˝ gxDďż˝A\t�ڝHďż˝u*Wďż˝X_����9qďż˝[��L\u0006\u0005\biďż˝u\fNďż˝9v@pkvmR��sS��(ďż˝\u0001ďż˝\u0002\u001c@ص\u0003\rŰ™\u0010\u0014��\u0018��bqLďż˝\u0016$ďż˝ \u001b�Ũ!\u001aďż˝\u0019ďż˝g\u0005ďż˝X\u0002Yďż˝d�� ?Č©ďż˝\u001aďż˝D|'���Cďż˝#ruďż˝\b\u0011*(nďż˝oďż˝5\u001b\u0016\u0004������\"xďż˝c\u0006!B���i��2��쫳\u0018������\u001fďż˝D\\Cďż˝\u0015\u0006ďż˝Eďż˝=���z��J��k��)\u0015��\u0013gYďż˝]ďż˝e���0��#��\u0016`ďż˝P\"ďż˝{\u0000��\u0019�����Q]b\u000fÚťPb��\u001ajBďż˝!ďż˝\u0001Zlv;ďż˝\"禥N��[\",ďż˝\u001a0yÔşďż˝#u-\rďż˝\u0019\r��\u0001\u001fGďż˝\u001d���!����\u0001ďż˝.��\u0001ďż˝\u0011nďż˝b���FX\tďż˝&ďż˝\u001bďż˝tďż˝\u001c!2ďż˝]6Hďż˝GH\u000f<\u0012��\u0000\u0014\u0004\u001ehC��K4N\u0004��\"\u0019��7ďż˝\tďż˝|2ďż˝~�����'h��\u0013ďż˝A$ďż˝\u0007\u000bVTv����Y����\n=<ďż˝\u0012Iďż˝\u0016\u0003##\u0012��!L$�����[%��'R���Fďż˝!.Ŝ��|��m9ďż˝('\u0018ďż˝%ďż˝\ntďż˝P+ďż˝lďż˝w\u00118Dďż˝1\u0013\u001d����g\u001aďż˝ ďż˝\fWŢŹďż˝Y1\u0016��lbďż˝\t��\u001fďż˝(���5V\u001aďż˝zk���1mďż˝\u0017����ֻ\u0000\u0010-���\rďż˝I�����6ďż˝\t\u001a\u0010A9\u001ex���?;gHɬ�{)\u0006\r ďż˝Gďż˝)�� ��Np�Ȁ�\nO\u0002\u00199•S���%<ďż˝E)\u0018���Lyďż˝|w\u0017ďż˝x.���\u001eďż˝3#\u0004\"Vďż˝\u0019ďż˝\u0013�ʵKIďż˝Z ďż˝a��\u0014\u001eh��[P�Ȃ=ďż˝ĚAa���%ďż˝[\u0010\u0019(ďż˝Pďż˝'R\u0013\u0011ďż˝Dďż˝8\u0004cďż˝\r\u001dPMn+jcďż˝\u0010�̛�3shďż˝[ďż˝t��8(\u0010Cďż˝3<#`eďż˝\u001fďż˝hďż˝up#��5ďż˝A\u0014\u0010a\u000bĎ…ďż˝)&\u0000DO����Ö��/ŢZďż˝)��=)���D'n_\u001f�߼�BG\u0003��Yďż˝\\lZ����@ďż˝0\u001b!\u001d�ӕ!C��DFiďż˝`(\"\u0014Ř˝5ďż˝\u001c����9ZGG4ďż˝?��W\u001eă‚ďż˝\u0013M��'iďż˝?9���l*���FVďż˝H\u001c}��P�׊JM�Η[|ďż˝bdM\u001fL(L\u000eÔ•ďż˝(��Đ_ďż˝\u0004\\\u0016.��2\t��B\b���\r��I?\u0002w\u0000��\u0007Tw\u0011ďż˝\u001d����2\u0004gďż˝`ďż˝\u0001\u0018\u0000ďż˝:\u000f\u0000\u0001\u0004��\u0000ďż˝kQ��}\u0003$ďż˝Uďż˝\u001a��\u0007ďż˝\u0003z��\u0018ďż˝>ďż˝\u0002\u0016/H\nP@f}ďż˝\u0018��2(A\f����\u0011\n\u0005ßšďż˝%��ꑓ,q3)�Ί\u0007ďż˝\u0011���jh�����hw\u0006ďż˝Vďż˝vďż˝\u0007\u0018ďż˝VQ\u0012���\\!` tX5\u0014���^��B\u0013/\u000eďż˝')ďż˝0ďż˝t3ďż˝~ďż˝\u0001\f\u0012�����$ďż˝\u001b\t����4��\u000fwV\t2ďż˝(ďż˝5ďż˝\u0004[��\fďż˝\u0007��Rďż˝\u0015u\nſ��\u0010\u000e\u0001[s~-b|ďż˝P\u001fďż˝Q{\u001aďż˝?ËşJTďż˝1��[ďż˝5k���> ZN��w&ďż˝|ďż˝rďż˝>��d\u0017��\u0013;Ũ8��^V ďż˝\u0011���0Ăş\u0016Z\u0013\"d&[,ďż˝nY\"}\u0012|)ďż˝\u0006ďż˝n6����(4S������u\u0011\b|[‚�L6���\u0001\u0005tďż˝c\u0006\fDD��K���iďż˝\nK��t\u001dďż˝\u001e2\b*ďż˝\nďż˝2���eZďż˝\u0000\u0011\fÍ—7ďż˝4\tQďż˝M��\u0005iq��HTďż˝\u0018yďż˝Yďż˝\u001cďż˝(9ďż˝T�����a-kpxďż˝d\r[\fNďż˝yďż˝~Oďż˝qďż˝^\u0007ďż˝lqQ\u0017ďż˝0Zďż˝\u000b��\u001aďż˝\u0019d��a-ďż˝1ďż˝\u0000sďż˝ ďż˝#����\u001cďż˝#̨g\fďż˝|]��\u00126ďż˝\u0019ďż˝$\bdÇŚďż˝?~tM\u0012ďż˝\r�� 褺�\u001c\u0003���ܵ��6cĆł5e�����\u001fďż˝\u001cXU\u001bďż˝8GEďż˝\u0016\u0012���vďż˝?chďż˝Vďż˝K'��C\u001bďż˝$�ΧSďż˝A��`ďż˝n��\u000fJwďż˝Z��'��\u0013'ztO\u0001��G\u0013\u0012ďż˝\u001cl\u0005\u0003\u001b\u0011\u0003\u001dÄ\u0003��[D��Qďż˝+ďż˝q\nďż˝Bďż˝\n\u001e9\u0002\u0001Ô�<\u0014ďż˝\u0013\u0014\u0016?l\\ĺą ďż˝$ďż˝s\bsb'\u001e���<\u0017��Wďż˝1�Œ�0DLďż˝\u00196ďż˝+\u0004Ak���\u0013=���m\u001e\rďż˝\u0016\u0010ďż˝_G��vďż˝\u00125pďż˝,ďż˝sďż˝n\u001c\u000e���\u0006.����Q\u0011aRďż˝PD+<ďż˝3ďż˝lM\bďż˝5_BÔ†A��N��p\u001a��H\nďż˝\u0000��<ďż˝.\u0003\u0000�������|[P\u000e\u0012\tZ��mďż˝\u001aďż˝X\u000f%-6ďż˝t��gďż˝\u0000@@\u001b��zďż˝&���mL��\u0001ďż˝3���\u001a'\u0019t]ďż˝\u0016���]ďż˝iďż˝\u000eďż˝ulzďż˝\u001f$��\u0010|ďż˝H\u001c\u000b\u0011ďż˝n3ďż˝0ďż˝v?ďż˝yUďż˝t{ÄŠďż˝)¶\u0001Uďż˝0��~\u0005O[}\u0007ďż˝\u0000\"��\u0015\u0004ďż˝\u0010)����\u0010 Ů“ďż˝'jďż˝\u000eďż˝k��MCXďż˝\u0011<-ďż˝\u0003�����/p����Gďż˝?\u000blďż˝\nďż˝9 4ďż˝F\u000e��~���u\u0011ďż˝uďż˝h+ďż˝+ďż˝cHďż˝\u0014���녙Qďż˝&ďż˝t֢�xďż˝qďż˝t+ďż˝_Q$T\u0003\u0012^\u0003؇��`uďż˝O��dďż˝Qp]����� ďż˝!H\u0019č°ďż˝\u001cŶ�SJT��Jďż˝y��g\u0018ďż˝xh\u001f!\u0019ďż˝8G\u000eb*ďż˝<\u0006���\u0003T\u000bďż˝h}���\"ďż˝N4bxďż˝#$ďż˝\t|�͑�a���Pďż˝lďż˝I\u0002\f��:W`��\bLďż˝Uďż˝\fMKďż˝\u0007������bTs(S��\u000e����\bďż˝pďż˝~ďż˝U1ďż˝pďż˝.7���\n\u0013N���\u0010٨��D�ޛ�hďż˝AXa���\n@+\u0016Ά\u0013ďż˝-'����\u000bďż˝6O]ďż˝TU<1ďż˝\u0012����q��\u0011ďż˝\u001ewďż˝$������=ŇĽL��\u0016����3ďż˝\u0016fiďż˝+���Mďż˝\u001f\u0010pďż˝6�œ6�����{L���󿒎Eďż˝\u001b;0ďż˝\u0014ďż˝~pN\u0006\u0019���\u0000lZ��$��N�������b���iďż˝)��y��^Mďż˝\u0003\\\u001dďż˝\u000f\u0003ďż˝D\u0016����\ndּ��\u0003Peďż˝\u0018#6��AX4�̆�[��;ďż˝Ekďż˝7ďż˝l-\u0002��bG��\u001fV��0������\u0019rďż˝)*r���\u000eďż˝:ďż˝Gw6ďż˝Uďż˝\u001dI>jďż˝\u0017���#q��R��H{ďż˝U곎�!BR\"����3x\"3��\u0019�ޗm0>=ďż˝&����\u000fB@ďż˝J��\n��k��̪ts0p~\tTďż˝aďż˝hďż˝B����!ďż˝s[\u0007\r1yÎş \tďż˝VJ3\u0016!\u001dz���\tTP\u0005\bďż˝\u001a\bďż˝LI:�‹\f\u001a���qďż˝\u0019ďż˝s/ďż˝C��O��-ďż˝\u0019ďż˝\u001d��\u0012!ďż˝ń…ş€ďż˝ďż˝Lďż˝21��y\u0014���؂�F��\f䤣['��'��V��Dz��\u001bd\u0014�Ϗӆ��\u0006ďż˝pďż˝\u0012��.��Ek\u001a\u000f��ʤI$����|ďż˝eďż˝\u0013��\u001cďż˝\\\u0017��T���\u001a'��H>;Y\n��\u0001ďż˝\u0015:+UCďż˝7\u000e����cďż˝\u0011uďż˝@ʸ�.��xďż˝~ďż˝J\u0019ďż˝+Iďż˝\"\u0002Fďż˝H��8��N���k���\u0000\"ďż˝u\u0002p���Mo\u0003z��\u0006Gä°¦r{;���Dz\u000b���Uwďż˝Rďż˝pRr`��{l��\u0016ďż˝s>˲$@��)��.\u0003x-ďż˝t���\u001eďż˝a\"ďż˝Nďż˝\fďż˝^��~&@᧧��<ďż˝Kďż˝\u0003������,���R��\u0010\u0010��P\u0014ږ��\u0012�鯌Ԭk\r\n���9��P\u001eS4�ͳ\f\u001abďż˝nďż˝\bďż˝\u001cZq��d\u0010ďż˝#\u001d-���C\tďż˝\u001eďż˝xz\u001bďż˝W6>\u001dďż˝\u0001/��\u001bďż˝-ďż˝Q���N����kďż˝s��wl^��Ў���FV\u0003���\u0006ďż˝Y�������\u0005��'C?\u0003���xBďż˝o܉�Q\nMďż˝?ďż˝~��U\u0014jďż˝aďż˝\u001fSӯ��\u001fďż˝s5ďż˝\tďż˝{Yďż˝2\u0002ďż˝aFÜ\u0018:\u001cJ\u001eďż˝\u0012s�Ҵ@Wďż˝\u0006ďż˝i[\u0014ďż˝'O���vWďż˝Bďż˝\u00156ďż˝}{Iďż˝5����\u001a��kďż˝rďż˝(ďż˝4\u0016ďż˝u-ďż˝0\u000fďż˝7\bHďż˝Xďż˝\t%$�هAdďż˝?[��h\\<\u0012ďż˝\bnďż˝\u000b��_\u001bĘ©Xďż˝V\u0006ďż˝3/ďż˝\u00132sEďż˝\u001eďż˝u9�����\u001b\u0016ďż˝>ďż˝\b^O��5��QkF��&%Y0c[\u0019���kO�����&��\u0004cďż˝fďż˝hiďż˝1����3_��ďż˝3ďż˝}wa\u001cjiA$tďż˝\u0018��\u0013��\u000f�ۀ�z\u0002��'\b$\u0010ďż˝0ďż˝,N����R\u0010ďż˝HJ(ďż˝%ďż˝B�ܼ�v5ďż˝|�̱Xx,��L��@Hďż˝^���G#������q;ďż˝_ďż˝\u0003ďż˝uJ��gďż˝*ďż˝W���\n��f#ďż˝;0//Zďż˝\u0015���Uďż˝~ďż˝n6ďż˝+��$zv}\u000e.ďż˝\u00030.\u0003=\u001dďż˝\nďż˝&ďż˝p\u000b�����ῼ|��f&\u0003s܇�b\b��9��.\u0005ďż˝A��=ďż˝`ďż˝\u001a��\u0010D\u0015��\u0018���\u0005��`*\u0000ďż˝\u0010yďż˝R���p\u0004���.2�謅�?ďż˝\u001aďż˝0t���hZ3Ë·e5ďż˝,ďż˝i��޾0ďż˝Qe���;ďż˝\u0003���,\u0019b��\u0013����� �т�\u001f��)Q@ďż˝.և�@��(Úšz.ďż˝1Eďż˝>������ J|W[+\u0019U\"ďż˝\"A\u000bďż˝\u0012ďż˝*ďż˝\u0001ďż˝wďż˝]ySďż˝AH>ďż˝>ȟ�˩ѠF,\u0004\u001e\u000eďż˝#ďż˝/즊\u000eďż˝wďż˝\n��k~Y��H��\u0010lďż˝euďż˝H\u0000ďż˝\u0019x\u0003}+\u000b\u0019p8'[���U��ܥ��\u0012Vďż˝\u0001ďż˝\u000e#\u0002��\u00136����\u0001ďż˝0(Δr���XS��6YB���m%\u000b\u001dM��ÓYďż˝\u000f67��xďż˝-nhďż˝'*ďż˝,Rďż˝*����\t\u001a\u0017;\u001f\u0013��|ďż˝6\r%Uďż˝C\u0017rďż˝c��2ďż˝\u0003ďż˝*yďż˝E�Ǟ+��xkďż˝\u000fďż˝*ďż˝\u0003ďż˝Z��^0Nďż˝Aďż˝o���*ZYďż˝\u001e5u���C?\u00010 0\r\u000f2�����P��\u0001\f\u0018Gďż˝\bďż˝X2z6P3��\u0002Ô´ďż˝1ďż˝S��`ďż˝\u000bďż˝|&|\u0005Ó€iE�����A��)���k��0N\u0006ďż˝\u0000\u001c���jďż˝D�܉� ďż˝@��������}ďż˝~\u0014ďż˝w\u0017��Uďż˝,rq\u0000t\u0015�¤S>^0$rI)\u001fVďż˝rqú��\u0012ďż˝y\u0014���7���\u0005E��n\u0019\fUďż˝wi��!u%b����\u0002���^��Iďż˝Oďż˝\u0000\u0000��ǐ��Ǒ��cI���Ѿd��C����N];\"T��\u0010ďż˝\u001aBďż˝)ďż˝8$ďż˝Vďż˝ ďż˝Fk?ďż˝\u001d\u001f\u0010��2ďż˝HO\u0012\u001e\u0016ďż˝>��Ќ�\t����c&���ȗ�%ďż˝\u0014Zďż˝:ďż˝hďż˝\n���>��p%��\u0019Hďż˝$zd��fn(=\"\u001b��\u0005\u001eďż˝\u0010������^��Ӊ�Yďż˝+Dďż˝\u0004<ďż˝*;ďż˝\u001c{ďż˝+Zy\fl���B\u00120���Č\u001b!���\tޝ��O\u0012dďż˝\"R����gďż˝a��\u0017H����\fIҶig����uďż˝*ďż˝x\u0013ďż˝x���\u0010\\ďż˝\u0012����j&>��\u0003cďż˝5�〸��\u0003Í”\u0015?ďż˝M\u0012l��nďż˝,\u001dăł…\u0007zďż˝8\u0014��jpZ{c,ďż˝\nS9<ďż˝,\tЬS·�����Ҕ�gP37\u0012Bďż˝xW\u0005_ďż˝\\ďż˝M���b���\n���:-\b��\u0018!��\u0004�� ]1ďż˝\u0010Dďż˝EԦ��<ďż˝`讏�\u0011Fďż˝v����L\ny|ďż˝eďż˝2&}���ڛ��\u0017\u0012��R��\b��{Iďż˝~ďż˝|ďż˝\u000eďż˝\u00021\u001dN���5ß®N\u0006h��(f\f1Hl\u0011��V8@\u001b\u0003Eďż˝\u0017)+ďż˝eeR\n���hďż˝Z\t\u0015ďż˝[��Vďż˝PgR��fUďż˝\fďż˝i\u0011��\u001eE(\u00014\"ďż˝cďż˝lďż˝\"Eďż˝B�����`ďż˝2��|\u000bÆ@ďż˝#ďż˝*qS��&ďż˝\n\u0002ďż˝\u0011@ďż˝7ďż˝\u001e\u0001[|��<ďż˝\t��j-ďż˝H���t*/��I���ďż˝\b6q��8Z`��b[���Y'Pďż˝Hďż˝\rďż˝Wďż˝\b\u001f'4Dë”´\u00135��Fďż˝cďż˝P��j�פ���\u000ed��\u0012\"Ĺ©RXrg\u0010Iďż˝7Ď€\u0012ďż˝r���7Ď”0ďż˝F��\rďż˝\"\u0004\u0002ďż˝p2h���\u0000ADyďż˝p���P��\nďż˝\\'ďż˝\u000f\u001aďż˝T\u0004\u000bďż˝\u0005ďż˝&ďż˝\u0017\u0001���\u0015sv\u000f9.+.���\u0015Lďż˝pi�ߤv��Hbȩ��Eďż˝T��fe�閹�\u0010D\u0010Y��� ďż˝+��ΰ�H\u0012Űą\u001a\nďż˝\u0005��\u0006#K4xBďż˝2ďż˝(Dďż˝?ďż˝}\u0000iS|ďż˝\u0007fVWx�����\u0015����e������J�Ε\u0010p+g��ز���x��Cďż˝Aďż˝e��xT��Hqďż˝ggл�^#\u0000ďż˝iďż˝ovďż˝\u0018W���Gďż˝\u0010ďż˝k���\nďż˝2��F�٨)ďż˝1ďż˝?��t����\u0000\n��p��tďż˝?�د�\"ďż˝\rIV~Wďż˝gďż˝7\u001bbďż˝t*\n̯��Cďż˝Rďż˝r\tďż˝Dďż˝~ďż˝*��\u0006\u0002Gďż˝P\u0012ďż˝%Foďż˝1ďż˝(\u001dH��%\bYďż˝\b��Z���Hďż˝\u001e^X Vďż˝rďż˝(ďż˝\u000bd��G���;ďż˝4$ďż˝t*��eďż˝b����m\\Eďż˝\u0002l��&\u001a���{J��\u0018��\u0017\u0003\u0005Aďż˝\rďż˝\b��j\u001cďż˝\u001eďż˝.ďż˝#ďż˝<2j}�ҕJ:Bďż˝ZK?7\u0011ďż˝6ďż˝\u0011ďż˝D\u0011Dďż˝&ďż˝B_a/ďż˝\u0004\u001f#��Qďż˝\u0018\u0003��\u001bďż˝M`���Nďż˝`ďż˝\u0018Pďż˝o\u0001��\u0016ďż˝$_\f\bďż˝qďż˝Vďż˝\u00079ďż˝K1��\u0000=\u0010��9)\u0013ďż˝~7\u001f>��Goďż˝TX���\u0010\nTcďż˝*����!��a\u0013���?\u001dďż˝X��X\u0003ďż˝\u001fC Oďż˝4ďż˝\"ďż˝!ďż˝\u001eďż˝j��\u0014i���աE;ďż˝3��\u0000ďż˝XM\u0018\taďż˝HÔž]\tĽ�͵Eďż˝\u0011\u0002�湔Lďż˝Dďż˝&��\r\"\u001c^\u0014ďż˝}ďż˝\u0013ďż˝)\u0014ďż˝a*ďż˝+����Vt@ďż˝jg9a�����Cďż˝}��\r%X*+ďż˝A\u0002��&\u000b\f��>ďż˝U��Rďż˝)ďż˝cďż˝\u001a|M+ďż˝-��#@ďż˝\\��\u001fďż˝\u0004ďż˝\u001f\u0002+Ӕ�W\u0000ďż˝l1��ԑ5ďż˝S���\u0003:Č“/ďż˝\u0015d\u001cd\u00032ďż˝@#FU\u0006ďż˝2\u0011�ɺ\"��47]ďż˝83ďż˝\u001f\b��\u0018dl���\u0004X��fďż˝24��gďż˝\u0013ďż˝(%\u0010����\u0016[\n}5��\"ďż˝\u0007ďż˝5��'uďż˝\u000bK��\tR*#ďż˝x�ۙX#G!ďż˝tďż˝bH���wďż˝\u0011ďż˝\u001dďż˝v��Ѱ���t��Bďż˝Tďż˝\u0019ďż˝t\b���>����F\u0002ďż˝\u0014]\rp^2�����e\u0012p@Xďż˝w9\u0004aďż˝nďż˝X��)\u0002@F��\u0002@ďż˝ ďż˝h>J&mAŘą!ďż˝u=���}T\u0011\u001d\u0011ďż˝QW��3Aďż˝M@ďż˝C����\\���\u0013\"���F�����d+����\u0002ďż˝Oďż˝Qďż˝\u0015\u0012\u0017ďż˝B�����q&��ռ\bďż˝Wďż˝\u0016���:5ďż˝sz%)ďż˝\t\u0017yďż˝R#ďż˝\u000b����|RĆľr%\u0017ďż˝frďż˝_\u0007\u0006\r��yEďż˝-\u0006ďż˝\u0019ďż˝p&ďż˝_ďż˝7D���4��w@ďż˝\"Ý°0ďż˝Uďż˝Yb\u001fďż˝!ďż˝(ďż˝epQďż˝~\"ďż˝V\nvQ�߷�q\\yďż˝6\u0013\u0001ďż˝G\u0019YRďż˝_\n\u0016ďż˝Uďż˝\u0012������Ý���\u000eoPŘcZ&ďż˝\nďż˝4\u0019\u0010ďż˝\u0002Rf{`��P\u001ah��;Nďż˝\u000bďż˝\u0010ďż˝H(ďż˝\u0016T����\b7^��ΕZďż˝\r��nďż˝[��\u0011������\u0004xďż˝.��_3��O���D\u001b���\rEďż˝F\"D��(ďż˝33��tu��\u0016á’Żuďż˝t\u0000\u0016\u0011��\u0015`Rh��aďż˝Zďż˝(DJ\u001dďż˝$\u0004lďż˝0���A\t��H2ďż˝\"ďż˝^H\"ďż˝y1���e\u0011ďż˝@-ďż˝oo��j��]ďż˝\u001cďż˝~!ďż˝H��\u000fďż˝l\u0014]Sďż˝3���3Vďż˝\u0006YXďż˝\u0010ďż˝\u000b\u000eďż˝Cďż˝gďż˝~ďż˝ AGďż˝I6ďż˝\u000e����ם�3\u0006Bďż˝Zc���ĉ\u0001��\u0005��#Lvďż˝-Cďż˝P,Vďż˝@���+ďż˝ÔáQLďż˝\u0019s\nďż˝$ďż˝E�ϖa,A\u0003ďż˝#R\u0010ďż˝\u000b���\u0001ďż˝fWďż˝dďż˝Rďż˝60ďż˝\u0019ďż˝C\u0001���\tďż˝i\tďż˝d\u0019f����T:H\u0001����'ďż˝\tgďż˝\"Pďż˝4ďż˝ I9��U^ďż˝@ďż˝%2E.���hďż˝\u0004ďż˝\u0012E\b\u000fďż˝:��h\u001e\u0010ďż˝\u0000|ďż˝\n\u0014��հ����!O:��:f��Ŏ��\f��hs\u0018\u001f��>\f2ďż˝E���}ďż˝\u0013���vnďż˝rQďż˝V��l\u0010ďż˝\u0005\u0005ÖŽďż˝F��\u0003ďż˝\u0005e\u0007ďż˝J���\u0019K���(dďż˝l����u0����@Uďż˝^\u001d���_~��B\u0003\u0015ďż˝r��.ďż˝\u0011ďż˝*hďż˝E{\u0000ďż˝X\u000fI�������x9>��g\u0018ďż˝c�����}���~ďż˝\u000f>nNďż˝\u0012ĚĄZ��dďż˝d\u000eďż˝a��+3Dďż˝6wp;\u0000ďż˝aďż˝O��\u0000Eďż˝~*ďż˝MÍŞďż˝\u001d\\��������Gďż˝G]>lyN��aďż˝Dďż˝JI%B,G\u0002\u0007ďż˝,���K��͸3ďż˝t��2��4\u0001ďż˝lďż˝G@���\u0001{������\u0003k\u001c���\u0000\u0018ďż˝\u0000d?ďż˝\u001cďż˝$.ďż˝\u0010CD���0���\u0000��7d:[�����>\u000e}��\u001b\fďż˝\u0014)_č’ľ3Ë’]ďż˝\t��[\u0003\u0018��ӝ7���\u000e\f\u0003��#;ďż˝>ďż˝\u0005PO��f\u0007\rďż˝c\u0015���&ďż˝\u000fa\u0007ul��h\b=ďż˝w\u0017\u0013ďż˝!ďż˝X�œ@wďż˝/ďż˝zďż˝]��Yaw\u0012ďż˝[ďż˝tďż˝f���$��E��\\ďż˝.��-ďż˝vWďż˝!��\u0000��^ďż˝J����26\u001e\u001fďż˝U����in����h����%���\u0014+\u0006\bWďż˝;���n\"1\u0014]ďż˝Cďż˝?`��\u001cďż˝,i(����ďż˝\u0018-����+G�օ1ďż˝L����;��3QÍżs'\u00029ďż˝@��ѭ�N>ďż˝]aӡ�&ďż˝6\tďż˝G\u0007\r2��`\u0002QIB\u0010ďż˝Nďż˝\u0003\u0000ďż˝R\twďż˝\u0001cďż˝\u001a\u000b4\u001fR��>\u000f\u0012\u0011�ʚ�\u0010Mďż˝v\u0011��.ďż˝uďż˝'3��ʉ\u000b:ďż˝o\u0011\u0003\"��Zg?ďż˝%��hďż˝\u001f�����~ďż˝Hg\u0005���٬$%���&]ďż˝\u0006ďż˝'gFOaďż˝Íq4nx<\u001bďż˝>\"J\u0019ďż˝r��\u0007Ϣu��G^��}ďż˝\u0012����\u0012ďż˝A�����5c��B��Zďż˝Xďż˝bďż˝\u0019��'ďż˝nQi0ďż˝3ďż˝anL'ďż˝uďż˝e[\u0006\u0007ďż˝1ďż˝Q/u\u0018\u0002ďż˝0G����\fabďż˝-ďż˝_jďż˝!7\u0013Ç·ďż˝2Gng���u\u0001\"ďż˝#��GRcďż˝\u0019�����+ďż˝+ďż˝Iďż˝\u0010��2ďż˝;ďż˝W���]n)ďż˝\u0016D��\u001d&���3=ďż˝!ض�7ďż˝yČ™>\fďż˝\u0011ߊ��:ďż˝W/-\u0017\u001cďż˝\u0015Q6qW,WEnďż˝\tVLďż˝_N\u0019ďż˝|YkŮZďż˝z��Tďż˝n,P<8x���9��Aďż˝I\u0015I��\u001eďż˝-b(<ďż˝i��.Iďż˝;\u0000��\u000eďż˝m\u0000Iďż˝^ďż˝\u000f��/0\u001c\u0000ďż˝ń€„}Ű‚{Pďż˝E7.���3{ďż˝H��[^`Qu5qďż˝|ďż˝2\u0000��?\u000fďż˝\\ďż˝**!��� ďż˝Sďż˝%YiQC��U|\rďż˝&gyďż˝V\u001e��\\\u000ba[u��Щ\u00135��W\b\fݖ�����\u0004���@�����=���=ďż˝t\u00059(Z\u0015ďż˝*\u000b<ďż˝U��D���j)ďż˝\u000b\u001d\\j\u0017ďż˝\u000bďż˝C��B/ďż˝tsďż˝|Uďż˝v��zUL\u001bďż˝EBďż˝\"��\u000bz`{8)\f���Zďż˝q(ďż˝E��\u0007\"uE��e\u001c\u0005E��\u0016ďż˝\u0010[ďż˝\u001afďż˝\u0005ďż˝p)��Kďż˝Lďż˝R���Mďż˝Aďż˝+lG\u0015Ű”$ďż˝\u0014%�լ��5��,���\u000bZďż˝@*Yďż˝\u0007���ͦ\u0014��Pďż˝f��\u00161\u0006Fďż˝t\u00012\u0011ďż˝Immďż˝\u0005����~��Mďż˝\u0013ďż˝w`\u000bxJďż˝\u000e# ���\u0000ďż˝ErH2t��Fďż˝.ďż˝\u0012\u0000ďż˝VPElďż˝*O\u0005�ɪ;\u0010\u0007ďż˝\u0014ai<��(*ďż˝\"RFďż˝'��~ďż˝UO*Wďż˝e��pÚ†6K\u0012|��Рv2ďż˝{��.6\u001eďż˝jNq��\tďż˝\u0006:I���y\u000eg\u0019��Lďż˝\u0019.�������\u0010ďż˝:ďż˝\u0007\\���,���`\u000e0\u000bx���`)\u0016S ďż˝\u0014��\u001b@zw\u0016QEďż˝nďż˝^/\u0017!ďż˝\u0018?\u000fďż˝\u000b�ƅ�Q��\u001ae\u0016r\n���\u0013��� ��*\u000b;����&ďż˝\"Tďż˝H�ϥ�\u0007hP \u0010��CQÄŽ4ON\u0006=����\u001eďż˝zcďż˝\u001c\"~\u0013\u000e\u001atďż˝E&X!u\u0005%ďż˝r���Eďż˝\u0011ďż˝Aďż˝02tďż˝\u0016\bsďż˝\u0002F\u0002)\u00106E8����\u0010ďż˝c=\u000eďż˝\u001b\u0010��j0 ��jďż˝\f6���\u001e\u0004׊\u001a#ďż˝X\u0001:ďż˝H\u0013hDďż˝)ďż˝\u0005\u0012ďż˝!����\u0016\u0000V0ďż˝C@\b\u00187 ���\u0006ďż˝\u001e\u0000Sďż˝\u001cďż˝c\u000eďż˝4\u0000ďż˝\u0007ďż˝#ďż˝[@ďż˝ac\u0004|\u0013ďż˝'��@m��\u000107\u0005ďż˝\u000fP\u0015p6ďż˝\u001d\u0000ďż˝\u0006ďż˝\u0014ďż˝`Aďż˝\u0006X\u000e\u0001-���\n0mďż˝c(E\u001e��\u0001ďż˝:\u0000��*\u0019��w��8X\u0001u��T\u0002ďż˝Aʤ\u0015ďż˝\u0000\u0004ďż˝\u001cďż˝\u0000<ďż˝~ E18v��nďż˝\bďż˝?$\u0010ďż˝X(\\nďż˝^\u001fďż˝\t��3ďż˝Zp\u0001��<\\4ďż˝\u0002Dďż˝u\u0012\t��eďż˝\u0000���q(ďż˝8mn\u001c)6\bďż˝p\u0001ďż˝P\u0001s0\u0001\u0013 \u0000��\u0002��\u0004ďż˝\u0000\u0007Ő€\u000f+\u0000\u0018R\u0000(ďż˝\u0000I(\u0000ďż˝P\u0000ďż˝`\u0001'ďż˝;\u000f\u0000s\u001c\u0000ďż˝0\u0001ďż˝T9|T9|L9dL9TD9>@8ďż˝ \u0018Y\r\f$Ɔ\u000f��@``ďż˝0@ďż˝0@V,@\"(@\u0004$C|H���\f��\u000b����c\nďż˝@\u0015bďż˝)\u0005\u0000cďż˝\u0000ďż˝\f\u0018ďż˝\n\u0018ďż˝\n\u0018ďż˝\u0002\u0018��1+ďż˝b\u001b��\u000fAďż˝'A��\u0003`��\u0001��\u0002ďż˝@\u0003:ďż˝yďż˝\u0001Ů\u0006ďż˝`\u001a\u0019ďż˝nďż˝\u0001��\u0006~ \u0018Xďż˝`ďż˝\u0001cďż˝\u0005n\u0000\u0014X\u0000I`\u0001\u000fp\u0003fďż˝\u0005Ý°\u0015v@MY\u0000ďż˝d\u0002ďż˝p\tUďż˝\u001aďż˝\u0001���6/ďż˝2\f��\u001f\u001cGA\nďż˝D\u001f/q\u001bb���\u001e��j\u001bďż˝mďż˝Lďż˝=\u0013\u0018ďż˝L]L��\u0013;/R@ďż˝\u001c\u000eq@ďż˝\u0014���5C1ďż˝\u0019���dďż˝b\rه�f\u001c\u001dďż˝gvŘĽďż˝\u0005ďż˝ ,90�����\u0002/ďż˝~}ďż˝Oďż˝o�淊��#;ďż˝#ďż˝\u001dÚśs��g\u0014\u0017����a]��{0\u0012ـ��\u0006ďż˝ 4/\u0001ďż˝x\u000bKďż˝P^\u0002rďż˝\u0010\u0017ďż˝tďż˝\u0002Ő cďż˝\u0003\u001dH\u0016ďż˝@ďż˝R\u0005bďż˝%Ô\u001aďż˝\b��=#\u0001ďż˝\b\u0010H@yB\u0003��\u001bπ�l\u0006\u0013`.ďż˝\u0001Tďż˝\n%ďż˝E.\u0000��\u0001��}ďż˝\u0003ب\u001cďż˝@ďż˝*\u0004Diďż˝Éďż˝$\u0019ďż˝1\u0004w��yv�ݳVďż˝8\u0003ďż˝\u0010ďż˝07ďż˝\u0013ďż˝Fďż˝Hďż˝.���\u0018�Ɵ8��Jďż˝\u001f@\u0000\u0000\u0001\u0003\u0001`\u0000\u0000\u0015ďż˝'��\u0010ďż˝`\u0004\\LT���\u0002A\u0018p\u0012Bsďż˝)rďż˝!ďż˝\nďż˝(\n\u0003ďż˝\u0004iďż˝`","glyphicons-halflings-regular.svg":"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n ","glyphicons-halflings-regular.ttf":"\u0000\u0001\u0000\u0000\u0000\u000f\u0000ďż˝\u0000\u0003\u0000pFFTMh+ďż˝\r\u0000\u0000\u0000ďż˝\u0000\u0000\u0000\u001cGDEF\u0001\b\u0000\u0004\u0000\u0000\u0001\u0018\u0000\u0000\u0000 OS/2i\u001elďż˝\u0000\u0000\u00018\u0000\u0000\u0000`cmapďż˝/Vďż˝\u0000\u0000\u0001ďż˝\u0000\u0000\u0005.cvt \u0000(\u0002ďż˝\u0000\u0000\u0006ďż˝\u0000\u0000\u0000\u0004gasp��\u0000\u0003\u0000\u0000\u0006ďż˝\u0000\u0000\u0000\bglyf\u0001��\u0016\u0000\u0000\u0006ďż˝\u0000\u0000[Xhead\u00008=ďż˝\u0000\u0000b,\u0000\u0000\u00006hhea\nďż˝\u0004x\u0000\u0000bd\u0000\u0000\u0000$hmtxďż˝\u000e\u0012p\u0000\u0000bďż˝\u0000\u0000\u0002ďż˝loca���@\u0000\u0000ep\u0000\u0000\u0001ďż˝maxp\u0001.\u0000ďż˝\u0000\u0000g(\u0000\u0000\u0000 nameԖ��\u0000\u0000gH\u0000\u0000\u0003|postďż˝cQw\u0000\u0000jďż˝\u0000\u0000\bywebfK)Qďż˝\u0000\u0000s@\u0000\u0000\u0000\u0006\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000ďż˝=��\u0000\u0000\u0000\u0000��\u0017ďż˝\u0000\u0000\u0000\u0000����\u0000\u0001\u0000\u0000\u0000\u000e\u0000\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0001\u0000\u0001\u0000ďż˝\u0000\u0001\u0000\u0004\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0003\u0004ďż˝\u0001ďż˝\u0000\u0005\u0000\u0004\u0003\f\u0002ďż˝\u0000\u0000\u0000Z\u0003\f\u0002ďż˝\u0000\u0000\u0001ďż˝\u00002\u0002ďż˝\u0000\u0000\u0000\u0000\u0005\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000UKWN\u0000@\u0000 ��\u0005x��\u0000\u001c\u0005ďż˝\u0000\f\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0001\u0000\u0000\u0000\u0005\u0000\u0000\u0000\u0003\u0000\u0000\u0000,\u0000\u0000\u0000\n\u0000\u0000\u0001ďż˝\u0000\u0001\u0000\u0000\u0000\u0000\u0004(\u0000\u0003\u0000\u0001\u0000\u0000\u0000,\u0000\u0003\u0000\n\u0000\u0000\u0001ďż˝\u0000\u0004\u0001p\u0000\u0000\u0000X\u0000@\u0000\u0005\u0000\u0018\u0000 \u0000+\u0000ďż˝ \n / _ ďż˝\"\u0012&\u0001'\t'\u000fďż˝\u0003ďż˝\tďż˝\u0019ďż˝)ďż˝2ďż˝9ďż˝Cďż˝Eďż˝Iďż˝Yďż˝`ďż˝iďż˝y�����\u0003ďż˝\bďż˝\u0019ďż˝\"ďż˝)ďż˝5ďż˝8ďż˝Aďż˝Eďż˝Iďż˝Yďż˝iďż˝y�������\u0000��\u0000\u0000\u0000 \u0000*\u0000ďż˝ \u0000 / _ ďż˝\"\u0012&\u0001'\t'\u000fďż˝\u0000ďż˝\u0005ďż˝\u0010ďż˝ ďż˝0ďż˝4ďż˝@ďż˝Eďż˝Gďż˝Pďż˝`ďż˝bďż˝p�����\u0001ďż˝\u0005ďż˝\u0010ďż˝ ďż˝$ďż˝0ďż˝7ďż˝@ďż˝Cďż˝Hďż˝Pďż˝`ďż˝p�������\u0000�������fďż˝\u0007��ߴ�hďż˝\u0003ďż˝\u0015ďż˝\u000eďż˝\t \u0019 \u0018 \u0012 \f \u0006 \u0005\u001fďż˝\u001fďż˝\u001fďż˝\u001fďż˝\u001fďż˝\u001fďż˝\u001fďż˝\u001fďż˝\u001fďż˝\u001fu\u001ft\u001fm\u001fg\u001ff\u001f`\u001f_\u001fX\u001fW\u001fU\u001fO\u001fI\u001fC\u001f=\u001f7\u001f6\u001eďż˝\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\f\u0000\u0000\u0000\u0000\u0002ďż˝\u0000\u0000\u0000\u0000\u0000\u0000\u00005\u0000\u0000\u0000 \u0000\u0000\u0000 \u0000\u0000\u0000\u0003\u0000\u0000\u0000*\u0000\u0000\u0000+\u0000\u0000\u0000\u0004\u0000\u0000\u0000ďż˝\u0000\u0000\u0000ďż˝\u0000\u0000\u0000\u0006\u0000\u0000 \u0000\u0000\u0000 \n\u0000\u0000\u0000\u0007\u0000\u0000 /\u0000\u0000 /\u0000\u0000\u0000\u0012\u0000\u0000 _\u0000\u0000 _\u0000\u0000\u0000\u0013\u0000\u0000 ďż˝\u0000\u0000 ďż˝\u0000\u0000\u0000\u0014\u0000\u0000\"\u0012\u0000\u0000\"\u0012\u0000\u0000\u0000\u0015\u0000\u0000&\u0001\u0000\u0000&\u0001\u0000\u0000\u0000\u0016\u0000\u0000'\t\u0000\u0000'\t\u0000\u0000\u0000\u0017\u0000\u0000'\u000f\u0000\u0000'\u000f\u0000\u0000\u0000\u0018\u0000\u0000ďż˝\u0000\u0000\u0000ďż˝\u0003\u0000\u0000\u0000\u0019\u0000\u0000ďż˝\u0005\u0000\u0000ďż˝\t\u0000\u0000\u0000\u001d\u0000\u0000ďż˝\u0010\u0000\u0000ďż˝\u0019\u0000\u0000\u0000\"\u0000\u0000ďż˝ \u0000\u0000ďż˝)\u0000\u0000\u0000,\u0000\u0000ďż˝0\u0000\u0000ďż˝2\u0000\u0000\u00006\u0000\u0000ďż˝4\u0000\u0000ďż˝9\u0000\u0000\u00009\u0000\u0000ďż˝@\u0000\u0000ďż˝C\u0000\u0000\u0000?\u0000\u0000ďż˝E\u0000\u0000ďż˝E\u0000\u0000\u0000C\u0000\u0000ďż˝G\u0000\u0000ďż˝I\u0000\u0000\u0000D\u0000\u0000ďż˝P\u0000\u0000ďż˝Y\u0000\u0000\u0000G\u0000\u0000ďż˝`\u0000\u0000ďż˝`\u0000\u0000\u0000Q\u0000\u0000ďż˝b\u0000\u0000ďż˝i\u0000\u0000\u0000R\u0000\u0000ďż˝p\u0000\u0000ďż˝y\u0000\u0000\u0000Z\u0000\u0000��\u0000\u0000��\u0000\u0000\u0000d\u0000\u0000��\u0000\u0000��\u0000\u0000\u0000n\u0000\u0000ďż˝\u0001\u0000\u0000ďż˝\u0003\u0000\u0000\u0000v\u0000\u0000ďż˝\u0005\u0000\u0000ďż˝\b\u0000\u0000\u0000y\u0000\u0000ďż˝\u0010\u0000\u0000ďż˝\u0019\u0000\u0000\u0000}\u0000\u0000ďż˝ \u0000\u0000ďż˝\"\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝$\u0000\u0000ďż˝)\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝0\u0000\u0000ďż˝5\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝7\u0000\u0000ďż˝8\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝@\u0000\u0000ďż˝A\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝C\u0000\u0000ďż˝E\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝H\u0000\u0000ďż˝I\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝P\u0000\u0000ďż˝Y\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝`\u0000\u0000ďż˝i\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝p\u0000\u0000ďż˝y\u0000\u0000\u0000ďż˝\u0000\u0000��\u0000\u0000��\u0000\u0000\u0000ďż˝\u0000\u0000��\u0000\u0000��\u0000\u0000\u0000ďż˝\u0000\u0000��\u0000\u0000��\u0000\u0000\u0000ďż˝\u0000\u0000ďż˝\u0000\u0000\u0000ďż˝\u0000\u0000\u0000\u0000ďż˝\u0000\u0001��\u0000\u0001��\u0000\u0000\u0000ďż˝\u0000\u0001��\u0000\u0001��\u0000\u0000\u0000ďż˝\u0000\u0001��\u0000\u0001��\u0000\u0000\u0000ďż˝\u0000\u0001��\u0000\u0001��\u0000\u0000\u0000ďż˝\u0000\u0001��\u0000\u0001��\u0000\u0000\u0000ďż˝\u0000\u0001ďż˝\u0012\u0000\u0001ďż˝\u0012\u0000\u0000\u0000ďż˝\u0000\u0001ďż˝\u0014\u0000\u0001ďż˝\u0014\u0000\u0000\u0000ďż˝\u0000\u0001ďż˝\u0016\u0000\u0001ďż˝\u0016\u0000\u0000\u0000ďż˝\u0000\u0001ďż˝%\u0000\u0001ďż˝%\u0000\u0000\u0000ďż˝\u0000\u0001ďż˝'\u0000\u0001ďż˝'\u0000\u0000\u0000ďż˝\u0000\u0000\u0001\u0006\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004\u0005\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0014\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000(\u0002ďż˝\u0000\u0000\u0000\u0001��\u0000\u0002\u0000\u0002\u0000(\u0000\u0000\u0001h\u0003 \u0000\u0003\u0000\u0007\u0000.ďż˝\u0001\u0000/<ďż˝\u0007\u0004\u0000ďż˝2ďż˝\u0006\u0005ďż˝<ďż˝\u0003\u0002\u0000ďż˝2\u0000ďż˝\u0003\u0000/<ďż˝\u0005\u0004\u0000ďż˝2ďż˝\u0007\u0006\u0001ďż˝<ďż˝\u0001\u0002\u0000ďż˝23\u0011!\u0011%3\u0011#(\u0001@����\u0003 ��(\u0002ďż˝\u0000\u0001\u0000d\u0000d\u0004L\u0004L\u0000\u0017\u0000\u0000\u0001!\u0017\u0007'\u0011#\u0011\u0007'7!5!'7\u0017\u00113\u00117\u0017\u0007!\u0004L�����ȷ����\u0001\u0003���ȷ��\u0001\u0003\u0001𷍷��\u0001\u0003���ȷ��\u0001\u0003�����\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000b\u0000\u0000\u0001!\u0011!\u0011!\u0011!\u0011!\u0011!\u0004Lďż˝p���p\u0001ďż˝\u0001,\u0001ďż˝\u0001��p\u0001ďż˝\u0001,\u0001��p\u0000\u0001\u0000d\u0000\u0005\u0004ďż˝\u0004ďż˝\u00007\u0000\u0000\u0001!\u001e\u000432>\u000253\u0006\u0007\u0006#\"'.\u0001'#7347#7367632\u0017\u0016\u0017#4.\u0002#\"\u000e\u0002\u0007!\u0007!\u0006\u0015!\u0003 ��\t09C3\u0015\u001dJL3ďż˝\u001fak��w$B\fďż˝dq\u0005ďż˝dďż˝%Ku��p<\u0006ďż˝3LJ\u001e\u00189D?\u0013\u0001{d��\u0006\u0001ďż˝\u0001ďż˝JtB+\u000f\u001a0W5ďż˝juďż˝.ďż˝xd/5dďż˝Z��gj7X0\u0019\u0014,Z>d.6\u0000\u0001\u0000ďż˝\u0001ďż˝\u0004L\u0002ďż˝\u0000\u0003\u0000\u0000\u0001!\u0011!\u0004Lďż˝|\u0003ďż˝\u0002���\u0000\u0001��\u0001,\u0004ďż˝\u0004A\u0000\u0016\u0000\u0000\u0013!2654&#\"\u0007.\u0001#\"\u0006\u0015\u0014\u0017\u000e\u0001\u0015\u0014\u0016ďż˝\u0002ďż˝x��x.,,ďż˝n��\u0002BUq\u0001,ďż˝zxďż˝\u000eaw×™\u0019\f\u000ekEPr\u0000\u0000\u0000\u0000\u0004\u0000\u0000\u0000d\u0004ďż˝\u0004L\u0000\u0002\u0000\u0005\u0000\b\u0000\r\u0000\u0000\u0001!\u0001%\u0001\u0011!\u0011\u0001\u0007\u0001!\u0001\u0017\u0004��P\u0002X����\u0004���d\u0001��P\u0001��\u0004L��g��\u0002X��\u0001,dďż˝p\u0001��\u0000\u0000\u0003����\u0004ďż˝\u0004ďż˝\u0000\t\u0000\r\u0000\u0010\u0000\u0000\u0001764/\u0001&\"\u000f\u0001\t\u0001'\u0001\u0003%'\u0004Mc\r\rďż˝\u000f$\u000f^ďż˝\u001a\u0002f����\u0001Mďż˝\u0003y\\\r'\u000eďż˝\r\raďż˝n\u0002f����`pďż˝\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u00001\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\t\u0000\u0000%!\u0015!5!\u0011\u0001!\u0001\u0002ďż˝\u0001,��\u0001,ďż˝\f\u0004��\fddd\u0002&\u0002&��\u0000\u0000\u0001\u0000\u000e\u0000\b\u0004L\u0004ďż˝\u0000 \u0000\u0000\u0001\u0011&\u0007\u000e\u0001\u0017\u001e\u00017>\u00015\u00114&\u0007\u0005\u000e\u0001\u0015\u0011&\u0007\u000e\u0001\u001e\u00017>\u00015\u0011\u0003ďż˝@JOW\u0012\u0011ďż˝OFS\u000e\nďż˝\u0010\n\u000e@JOW$ďż˝OAX\u0003���\u0010\u0017\u001ar67)\u0019\u0017Q7\u0003q\n\u000b\u0003ďż˝\u0003\u0013\nďż˝O\u0011\u0018\u0019rn)\u001a\u0015`*\u0002^\u0000\u0002\u0000\u0017��\u0004ďż˝\u0004ďż˝\u0000\u0013\u0000\u001b\u0000\u0000\t\u0001\u0016\u0014\u000f\u0001\u0006\"'\u0001\u0006#\"\u0000\u0010\u0000 \u0000\u0015\u0014\u0000\u0010\u0016 6\u0010& \u0003ďż˝\u0001,\u0007\u0007m\b\u0014\b��w����\u0001\u001c\u0001ďż˝\u0001\u001c���\u0001\u0012����\u0001���\b\u0014\bm\u0007\u0007\u0001,N\u0001\u001c\u0001ďż˝\u0001\u001c��Ȏ\u0001\u0016����\u0001\u0012ďż˝\u0000\u0001\u0000d\u0000X\u0004ďż˝\u0004D\u0000\u0019\u0000\u0000\u0001>\u0002\u001e\u0002\u0015\u0014\u000e\u0003\u0007.\u000454>\u0002\u001e\u0001\u0002ďż˝0{xuX6Cy��>>��yC8Zwwy\u0003ďż˝EH\u0004-Sv@9y��UU��y9@vS-\u0004I\u0000\u0000\u0000\u0002��\u0000G\u0004ďż˝\u0004ďż˝\u0000\n\u0000\f\u0000\u0000\u0001\u0013\t\u0001\u0013\u0001!\u00133\u0013!\u00017\u0003\u0017�������|\u0001ß’\u0002ďż˝\u0001��\u0013\u0002\u0002\nďż˝?\u0001\u0013��\u0001ďż˝\u0001\u0018\u0001��pďż˝'\u0001\u0000\u0003��\u0000G\u0004ďż˝\u0004ďż˝\u0000\n\u0000\u0014\u0000\u0016\u0000\u0000\u0001\u0013\t\u0001\u0013\u0001!\u00133\u0013!\u0001'7#'\u0007#\u0017\u00077\u00017\u0003\u0017�������|\u0001ß’\u0002ďż˝\u0001��VJ��MN��I���\u0002\u0002\nďż˝?\u0001\u0013��\u0001ďż˝\u0001\u0018\u0001��pďż˝+���ӎ���o\u0001\u0000\u0001\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0013\u0000\u0000%\u0015!5\u00015\"&=\u0001462\u0016\u001d\u0001\u0014\u0006#\u0015\u0004��P\u0001ďż˝%?���?%���\u0001\u0001dďż˝3ďż˝|��|ďż˝3ďż˝d\u0000\r\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u0003\u0000\u0007\u0000\u000b\u0000\u000f\u0000\u0013\u0000\u0017\u0000\u001b\u0000\u001f\u0000#\u0000'\u0000+\u0000/\u00003\u0000\u0000\u0001\u0011!\u0011\u0017#\u00153%!\u0011!\u0013#\u00153\u0005#\u00153%#\u00153\u0005#\u00153%#\u00153#!\u0011!\u0001#\u00153%#\u00153\u0005#\u00153%#\u00153\u0004��Pďż˝dd\u0002���\u0002Xďż˝ddďż˝|dd\u0003ďż˝ddďż˝|dd\u0003ďż˝dd���\u0002Xďż˝Ddd\u0003ďż˝ddďż˝|dd\u0003ďż˝dd\u0004L��\u0004Ldddďż˝p\u0001ďż˝dddddddddďż˝p\u0001,ddddddd\u0000\u0004\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0005\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0005\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0001ďż˝\u001d\u0015ďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u0002X\u001d\u0015ďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d��\u001d\u0015ďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u0002X\u001d\u0015ďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u0004\u001aďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u001d\u0015ďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u001d���p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u001d\u0015ďż˝p\u0015\u001d\u001d\u0015\u0001ďż˝\u0015\u001d\u001d\u0000\u0000\u0000\t\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000O\u0000_\u0000o\u0000\u0000ďż˝\u0000\u0000\u0001\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0001\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0001\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0001,\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d��\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d��\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0004\u001aďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001dďż˝[ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001dďż˝[ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0000\u0000\u0006\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000O\u0000_\u0000\u0000\u0001\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006#!\"&=\u0001463!2\u0016\u000154&+\u0001\"\u0006\u001d\u0001\u0014\u0016;\u000126%\u0015\u0014\u0006#!\"&=\u0001463!2\u0016\u0001\u0015\u0014\u0006+\u0001\"&=\u000146;\u00012\u0016\u0005\u0015\u0014\u0006#!\"&=\u0001463!2\u0016\u0001,\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0003ďż˝\u001d\u0015ďż˝D\u0015\u001d\u001d\u0015\u0002ďż˝\u0015\u001dďż˝|\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0003ďż˝\u001d\u0015ďż˝D\u0015\u001d\u001d\u0015\u0002ďż˝\u0015\u001dďż˝|\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u0003ďż˝\u001d\u0015ďż˝D\u0015\u001d\u001d\u0015\u0002ďż˝\u0015\u001d\u0004\u001aďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d���\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d��\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001dďż˝[ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0015ďż˝\u0015\u001d\u001d\u0000\u0000\u0000\u0000\u0001\u0000\u001d\u0000\"\u0004ďż˝\u0004*\u0000\u0005\u0000\u0000%\u0001'\u0001'\u0007\u0001ďż˝\u00032�����\"\u00034�����\u0000\u0000\u0000\u0000\u0001\u0000j\u0000j\u0004F\u0004F\u0000\u000b\u0000\u0000%\t\u0001'\t\u00017\t\u0001\u0017\t\u0001\u0003r�����\u0001\u001a���\u0001\u001a\u0001\u001a���\u0001\u001aj\u0001\u001a���\u0001\u001a\u0001\u001a���\u0001\u001a�����\u0000\u0000\u0003\u0000\u0017��\u0004ďż˝\u0004ďż˝\u0000\u0013\u0000\u001b\u0000'\u0000\u0000\t\u0001\u0016\u0014\u000f\u0001\u0006\"'\u0001\u0006#\"\u0000\u0010\u0000 \u0000\u0015\u0014\u0004 6\u0010& \u0006\u0010%3\u0015#\u0015#5#5353\u0003ďż˝\u0001,\u0007\u0007m\b\u0014\b��w����\u0001\u001c\u0001ďż˝\u0001\u001c��\u0001\u0012�����\u0001ďż˝ddďż˝ddďż˝\u0001���\b\u0014\bm\u0007\u0007\u0001,N\u0001\u001c\u0001ďż˝\u0001\u001c��Ȏ��\u0001\u0012������ddďż˝d\u0000\u0000\u0003\u0000\u0017��\u0004ďż˝\u0004ďż˝\u0000\u0013\u0000\u001b\u0000\u001f\u0000\u0000\t\u0001\u0016\u0014\u000f\u0001\u0006\"'\u0001\u0006#\"\u0000\u0010\u0000 \u0000\u0015\u0014\u0000\u0010\u0016 6\u0010& \u0007\u0015!5\u0003ďż˝\u0001,\u0007\u0007m\b\u0014\b��x����\u0001\u001c\u0001ďż˝\u0001\u001c���\u0001\u0012����F\u0001ďż˝\u0001���\u0007\u0016\u0007m\b\b\u0001+M\u0001\u001c\u0001ďż˝\u0001\u001c��ȍ\u0001\u0015����\u0001\u0010����\u0000\u0002\u0000\u0017\u0000\u0017\u0004ďż˝\u0004ďż˝\u0000\u000f\u0000+\u0000\u0000\u0001\u00114&+\u0001\"\u0006\u0015\u0011\u0014\u0016;\u00012675\u0016\u0012\u0015\u0014\u000e\u0002\".\u000254\u00127\u0015\u000e\u0001\u0015\u0014\u0016 654&\u0002ďż˝\u001d\u0015d\u0015\u001d\u001d\u0015d\u0015\u001dd��[���՛[ҧg|ďż˝\u0001bďż˝|\u0002ďż˝\u0001ďż˝\u0015\u001d\u001d\u0015ďż˝p\u0015\u001d\u001d��>�طvŐ›[[��vďż˝\u0001(>ďż˝7ďż˝x����xďż˝\u0000\u0000\u0000\u0004\u0000d\u0000\u0001\u0004ďż˝\u0004ďż˝\u0000\u0003\u0000\u0007\u0000\u000b\u0000\u000f\u0000\u0000%#\u00113\u0001#\u00113\u0001#\u00113\u0005#\u00113\u0004���������������\u0001\u0004��P\u0003 ��\u0001����\u0000\u0000\u0000\u0002\u0000\u001a\u0000\u001b\u0004ďż˝\u0004ďż˝\u0000G\u0000Q\u0000\u0000%\u0017\u001632?\u00026?\u0001\u001767'76?\u0002654/\u0002&/\u00017&'\u0007'&/\u0002&#\"\u000f\u0002\u0006\u000f\u0001'\u0006\u0007\u0017\u0007\u0006\u000f\u0002\u0006\u0015\u0014\u001f\u0002\u0016\u001f\u0001\u0007\u0016\u00177\u0017\u0016\u0017\u00122\u0016\u0015\u0014\u0006\"&54\u0001ďż˝&(\"\u001b/&\u0006./\u0005ďż˝80P\u0003\u0018\u000f\u0001ďż˝\u0005\u0005ďż˝\u0001\u0010\u0017\u0003P,<ďż˝\u0005-0\u0006&(\"\u001b/&\u00052,\u0005ďż˝;.P\u0003\u0019\r\u0002ďż˝\u0006\u0006ďż˝\u0002\u000e\u0018\u0003P-<ďż˝\u0005-1\u001cďż˝~~ďż˝~��\u0005\u0005ďż˝\u0002\r\u001a\u0003Q,=ďż˝\u0005,1\u0006&(\"\u001c-&\u00063*\u0005ďż˝:/Q\u0003\u0019\u000e\u0001ďż˝\u0005\u0005ďż˝\u0001\u000e\u0019\u0003Q/:ďż˝\u0005/.\u0006&0\u0019!)&\u00061,\u0005ďż˝;.Q\u0003\u001a\r\u0002v~XY~~YX\u0000\u0000\u0007\u0000d��\u0004ďż˝\u0005\u0014\u0000\u0019\u0000\u001d\u0000'\u0000+\u0000/\u00003\u00007\u0000\u0000\u0001!2\u0016\u001d\u0001\u0014\u0006#!\"&=\u0001463!5463!2\u0016\u0015\u00075!\u0015\u0005!\u0011\u0014\u0006#!\"&5;\u0001\u0011#\u00133\u0011#\u00133\u0011#\u00133\u0011#\u0003ďż˝\u0001\u0013\n\u000f\u000e\u000b��\u000b\u000e\u000f\n\u0001\u0013;)\u0001,);d����\u0003ďż˝;)ďż˝D);dddďż˝ddďż˝ddďż˝dd\u0004L\u000f\n2\u000b\u000e\u000e\u000b2\n\u000fd);;)ddd���)<<)\u0002��D\u0002��D\u0002��D\u0002ďż˝\u0000\u0000\u0000\u0001\u0000\u0001\u0000\u0001\u0005\u0015\u0004ďż˝\u0000\n\u0000\u0000\u0001#\u0011!\u0011!\u0011!\u0011#\u0001\u0005\u0015��������\u0002ďż˝\u0002Y��\u0001��p\u0002X\u0002ďż˝\u0000\u0000\u0000\u0000\u0002\u0000d\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000\u000e\u0000\u0011\u0000\u0000\u0001!\u0011\u0014\u0006#!\"&5\u0011463!\u0001!\u0011\u0002X\u0001ďż˝\u000e\u000b��\u000b\u000e\u000e\u000b\u0001ďż˝\u0001���\u0002��]\u000b\u000e\u000e\u000b\u0004~\u000b\u000eďż˝p\u0001,\u0000\u0003\u0000\u0004\u0000\u0004\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0013\u0000\u0019\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0010\u0016 6\u0010\u00053\u0015!\u00113\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V��b���d\u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016�����\u0001Vďż˝d\u0001ďż˝\u0000\u0002��\u0000\u0000\u0005\u0014\u0004ďż˝\u0000\u000b\u0000\u000f\u0000\u0000\u0001#\u0003!\u00013\u00033\u00033\u0001!\u000b\u0001#\u0003\u0002��(��\u0001��\u0015ďż˝\u0014ďż˝\u0001���2\u001bďż˝\u001b\u0001��p\u0004���\u0001,ďż˝P\u0001ďż˝\u0001,��\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u000b\u0000\u000f\u0000\u0000\u0001\u0011!\u0011!\u00013\u0011!\u00113\u0001\u0005#\u00153\u0004L��\u0001����\u0001,���\u0001z��\u0001��p\u0001ďż˝\u0001,\u0001��\f��dd\u0000\u0000\u0000\u0003\u0000\u0001\u0000\u0001\u0004ďż˝\u0004ďż˝\u0000\u000f\u0000\u0017\u0000\u001e\u0000\u0000\u00002\u001e\u0002\u0014\u000e\u0002\".\u00024>\u0001\u0004 \u0006\u0010\u0016 6\u0010\u00053\u000b\u00013\u00113\u0001��ޠ__���ޠ__ďż˝\u0002\u0002����\u0001T��Ȗ����\u0004ďż˝_���ޠ__���ޠ\\�����\u0001T���\u0001,\u0001,\u0000\u0000\u0003\u0000\u0004\u0000\u0004\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0013\u0000\u001a\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0010\u0016 6\u0010\u0007#\u0011#\u0011#\u0013\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V���Ȗ�\u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016�����\u0001V���\u0001,\u0001,\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\f\u0000\u0014\u0000\u0000\u0011\u0013!\u00123\u0011\u0014\u0006#!\"&5\u0001!\u00033\u0017!73ďż˝\u0003 ďż˝\u0001\u000e\u000b��\u000b\u000e\u0003���aďż˝2\u0001,2ďż˝\u0001ďż˝\u0002��Dďż˝%\u000b\u000e\u000e\u000b\u0003��\f��\u0000\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0004\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0015\u0000\u0018\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0015\u0014\u0016 654\u0007\u0005\u0011\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V����\u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016����ň¬«­ďż˝\u0001ďż˝\u0000\u0001\u0000\u0017\u0000\u0017\u0004ďż˝\u0004ďż˝\u0000\u001c\u0000\u0000\u0001#\u0014\u0006 &\u0010632\u0017\u0007!\u0011\u0007&#\"\u000e\u0002\u0014\u001e\u00022>\u0002\u0004���������nďż˝\u0001����vŐ›[[���՛[\u0002X���\u0001bďż˝Qďż˝\u0001��z[���՛[[��\u0000\u0002\u0000\u0017\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0010\u0000!\u0000\u0000\u00017&#\"\u0006\u0015#4>\u000232\u00177\u0011\u0001\u0007\u001632653\u0014\u000e\u0002#\"'\u0007\u0011\u0002��p����[��vƝ����p����[��vĆťďż˝\u0003 ďż˝P��vŐ›[z��pďż˝pďż˝P��vŐ›[zďż˝\u0001ďż˝\u0000\u0000\u0000\n\u0000d\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0003\u0000\u0007\u0000\u000b\u0000\u000f\u0000\u0013\u0000\u0017\u0000\u001b\u0000\u001f\u0000#\u0000'\u0000\u0000\u0013\u0011!\u0011\u0003!\u0011!\u0005#53\u0005!5!\u0001#53\u0005!5!\u0001#53\u0005!5!\u0001#53)\u0001\u0015!d\u0004Ldďż˝|\u0003��Ddd\u0002Xďż˝\f\u0001���dd\u0002Xďż˝\f\u0001���dd\u0002Xďż˝\f\u0001���dd\u0002Xďż˝\f\u0001ďż˝\u0004��P\u0004���\u0003��ddd��ddd��ddd��dd\u0000\u0002\u0000d\u0000\u0000\u0004L\u0004L\u0000\u0003\u0000\u0015\u0000\u00003#\u00113\u0001\u0011\u000e\u0001.\u0003\u0006\u0007\u0011>\u0001\u001e\u0002>\u0001ďż˝dd\u0003ďż˝({���tZ\u0014<ďż˝x|rjd\u0004Lďż˝\f\u0001ďż˝QE\n((\nEQďż˝\f<0\r!\u001b\u0005O\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000!\u00001\u0000A\u0000\u0000\u0001\u00114.\u0002\"\u000e\u0002\u0015\u0011\u0014\u0016;\u0001265\u00114>\u0001 \u001e\u0001\u0015\u0011\u0014\u0016;\u000126%\u0011\u0014\u0006+\u0001\"&5\u001146;\u00012\u0016\u0005\u0011\u0014\u0006+\u0001\"&5\u001146;\u00012\u0016\u0004ďż˝c���ޣc\u000e\u000b2\u000b\u000e��\u0001\u0006��\u000e\u000b2\u000b\u000e��\f\bďż˝\b\f\f\bďż˝\b\f\u0002X\f\bďż˝\b\f\f\bďż˝\b\f\u0001\u0013\u0001,tŢŁcc��t��\u000b\u000e\u000e\u000b\u0001,ďż˝rrďż˝��\u000b\u000e\u000e��4\b\f\f\b\u0001ďż˝\b\f\f\bďż˝4\b\f\f\b\u0001ďż˝\b\f\f\u0000\u0000\u0000\u0002\u0000\u0000\u0000ďż˝\u0004X\u0003ďż˝\u0000\u0005\u0000\u0011\u0000\u0000\u0019\u0001!\u0005\u0011\r\u0001\u0017\u0007'\u0007'7'7\u00177\u0017\u0001,\u0001,��\u0002��G��G��G��G\u0003 ďż˝pďż˝\u0003 �ȍG��G��G��G\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000ďż˝\u0003p\u0003ďż˝\u0000\u0005\u0000\u000f\u0000\u0000\u0019\u0001!\u0005\u0011\u0005%7\u0016\u0015\u0014\u0007'654\u0001,\u0001,��\u0001ďż˝EojCV\u0003 ďż˝pďż˝\u0003 ďż˝95����6n��\u0000\u0000\u0003\u0000\u0000\u0000ďż˝\u0004b\u0003ďż˝\u0000\r\u0000\u0013\u0000\u001d\u0000\u0000%7654/\u0001\u0007\u0017\u0016\u0015\u0014\u000f\u0001\u0001%\u0011%!\u0011%7\u0016\u0015\u0014\u0007'654\u0003ďż˝\u0006��\u0006S\u0007{w\u0007��\u0001,����\u0002ďż˝EojCVďż˝\b����\b@\b����\b\u0002%����\u0001ďż˝95����7n��\u0000\u0000\u0000\r\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\t\u0000\u0015\u0000\u0019\u0000\u001d\u0000!\u0000%\u0000-\u0000;\u0000?\u0000C\u0000G\u0000K\u0000O\u0000\u0000\u0013!535#\u0011!\u00113%\u0011!\u00153\u00113\u0011!5#5\u0001!\u0011)\u0001\u0011!\u0011%35#!3\u0015#\u0001#\u0015#\u0011!\u0011#\u0001\u0015#5#535#5!\u00113\u0015%\u0011!\u0011\u0017#53!3\u0015#\u00053\u0015#%\u0015!5d\u0001ďż˝ddďż˝\fd\u0004L��dďż˝\u0001,��|\u0001,��\u0002ďż˝\u0001,ďż˝|dd\u0002ďż˝dd��dďż˝\u0001��\u0002Xďż˝ddďż˝\u0001,������dd\u0003 ddďż˝\fdd\u0002X��\u0002ďż˝dd\u0001,��d\u0001�������d\u0001���\u0001,��ddd��dďż˝\f\u0001���dddďż˝d��d���\u0001,ďż˝ddddddd\u0000\u0000\t\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0003\u0000\u0007\u0000\u000b\u0000\u000f\u0000\u0013\u0000\u0017\u0000\u001b\u0000\u001f\u0000#\u0000\u0000\u0013#\u0011;\u0001#\u00113\u0001#\u00113\u0013#\u00113!\u0011#\u0011\u0001\u0015!5\u00053\u0015#73\u0015#%\u0015#5dddďż˝dd\u0001����dd\u0001,�����\u0001ďż˝ddďż˝dd\u0001��\u0004��\u0018\u0003��\u0018\u0003��\u0018\u0003��\u0018\u0003���dd\t[[[[[[\u0000\u0000\u0000\u0000\u0002\u0000\u0001\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0007\u0000\u0013\u0000\u0000\t\u0002\u0011463!\u000364'&\"\u0007\u0006\u0014\u0017\u00162\u0004��\fďż˝E\u000f\n\u0001Ú´\u001d\u001d\u001eS\u001e\u001d\u001d\u001eS\u0001��\f\u0002ďż˝\u0001ďż˝\n\u000f��\u001dT\u001d\u001e\u001e\u001dT\u001d\u001e\u0000\u0003\u0000\u0002\u0000\u0000\u0005ďż˝\u0004ďż˝\u0000\u0007\u0000\r\u0000\u0019\u0000\u0000\t\u0002\u0011463!\t\u0001'\t\u00013\u000164'&\"\u0007\u0006\u0014\u0017\u00162\u0004��\fďż˝E\u000e\u000b\u0001ďż˝\u0003��\f2\u0001��Ddďż˝\u001f\u001e\u001e\u001dT\u001d\u001e\u001e\u001dT\u0001��\f\u0002ďż˝\u0001ďż˝\u000b\u000eďż˝Dďż˝\f2\u0001ďż˝\u0002���\u001dT\u001d\u001e\u001e\u001dT\u001d\u001e\u0000\u0001\u0000d\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\n\u0000\u0000\u0001\u0011\u0007\u0011!\u0007!\u0011!\u00117\u0004ďż˝dďż˝\u0012d\u0002��|ďż˝\u0004��\u0018d\u0003ďż˝dďż˝\u0018\u0004\u0001ďż˝\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0017\u0000'\u0000\u0000\u0001\u0003.\u0001#!\"\u0006\u0007\u0003\u0017!%\u0011#5!\u0015#\u00113\u0017!7\u0003\u0017\u0016\u0006#!\"&?\u0001>\u00013!2\u0016\u0003ďż˝^\u0002\u0010\nďż˝>\n\u0010\u0002^(\u0002P\u0001;�����d\u0002Xdw&\u0002\u000b\n��\n\u000b\u0002&\u0002\u0013\n\u0001ďż˝\n\u0013\u0003=\u0001Z\u000b\u000e\u000e\u000b��|_ďż˝D��\u0002������\n\u000e\u000e\nďż˝\n\u000e\u000e\u0000\u0000\u0000\u0000\u0002\u00005\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u001e\u0000\"\u0000\u0000!5&'.\u0001/\u0001\u0001#\u0001\u0006\u0007\u000e\u0001\u000f\u0001\u0015!5\".\u0001?\u0001!\u0017\u0016\u0006#\u0015\u0001\u0013\u0017\u0013\u0004ďż˝\"(\u0012\u001e\u0006\u0006ďż˝]ďż˝q\u0018\u001c\f*\u000f\u000f\u0001m)>$\u0013\\\u0001ďż˝R\u0010+5���.tB\u0001*\u0013.\u000e\r\u0003��\u00120\u001b\f\u001a\u0007\u0007BB\u00166,��-WB\u0002\t\u0001Ɍ��\u0000\u0000\u0000\u0003\u0000d\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000 \u0000(\u00001\u0000\u0000\u0013!2\u0016\u0015\u0014\u000e\u0002\u000f\u0001\u001e\u0004\u0015\u0014\u000e\u0001#!5>\u00015\u00114.\u0003'\u0005\u001132654&\u000332654&+\u0001d\u0001ďż˝xďż˝\u0017!\"\u000b\f\b\u001bE4+vďż˝Oďż˝\f);\u0002\t\u0016$\u001f\u0001,ďż˝Ll���Yďż˝}^ďż˝\u0004���7]7(\b\u0007\u0003\f3AvFTďż˝MY\u00073(\u0003;\u001c\u0017\u001d\r\u000f\u00072��{MRa��aTZďż˝\u0000\u0000\u0000\u0001\u0000ďż˝\u0000\u0000\u0003o\u0004ďż˝\u0000\u0019\u0000\u0000\u0001\u0017\u000e\u0003\u000f\u0001\u0003\u0006\u0016\u0017\u0015!5>\u00017\u00136&'.\u0001'5\u0003m\u0002!:\"\u0019\u0005\u0005ďż˝\n0Gďż˝\fMs\bďż˝\n(G\u0006\t\u0005\u0004ďż˝9\b#'%\f\f��4<\u000699\u0007C/\u0003Q8$\u0013\u0001\u0003\u00019\u0000\u0000\u0002��\u0000\u0000\u0005\u0014\u0004ďż˝\u0000\u001b\u0000%\u0000\u0000\u00013\u0011#4.\u0003+\u0001\u0011\u0017\u0015!57\u0011#\"\u000e\u0003\u0015#\u00113\u0005\u00113\u0007'3\u0011#7\u0017\u0004~ďż˝2\u0010\u0015.!\"ďż˝dďż˝pdďż˝\"!/\u0014\u00111���K}}KK}}\u0004���\u001d'\u0015\t\u0002��2dd2\u0003R\u0002\t\u0015'\u001d\u0001,��১\u0003 ��\u0000\u0000\u0000\u0002\u0000!��\u0004ďż˝\u0004ďż˝\u0000\u001b\u0000%\u0000\u0000\u00013\u0011#4.\u0003+\u0001\u0011\u0017\u0015!57\u0011#\"\u000e\u0003\u0015#\u00113\u0003!5\u0017\u00075!\u0015'7\u0003��2\u0010\u0014/!\"ďż˝dďż˝pdďż˝\"!.\u0015\u00102ďż˝2\u0003 ���১\u0004���\u001d'\u0015\t\u0002ďż˝v2dd2\u0002ďż˝\u0002\t\u0015'\u001d\u0001,��K}}KK}}\u0000\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000\u0000\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26\u000354&#!\"\u0006\u001d\u0001\u0014\u00163!26\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26\u0002ďż˝\u001d\u0015��\u0015\u001d\u001d\u0015\u0002X\u0015\u001d\u0001ďż˝\u001d\u0015ďż˝\u0018\u0015\u001d\u001d\u0015\u0003ďż˝\u0015\u001dďż˝\u001d\u0015��\u0015\u001d\u001d\u0015\u0003 \u0015\u001d\u0001,\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001d\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000\u0000\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26\u001354&#!\"\u0006\u001d\u0001\u0014\u00163!26\u000354&#!\"\u0006\u001d\u0001\u0014\u00163!26\u001354&#!\"\u0006\u001d\u0001\u0014\u00163!26\u0003ďż˝\u001d\u0015ďż˝D\u0015\u001d\u001d\u0015\u0002ďż˝\u0015\u001dďż˝\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001dďż˝\u001d\u0015ďż˝D\u0015\u001d\u001d\u0015\u0002ďż˝\u0015\u001dďż˝\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001d\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\u0000\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000\u0000\u00015463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u00015463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u00135463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u00015463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u0001ďż˝\u001d\u0015\u0002X\u0015\u001d\u001d\u0015��\u0015\u001dďż˝p\u001d\u0015\u0003ďż˝\u0015\u001d\u001d\u0015ďż˝\u0018\u0015\u001dďż˝\u001d\u0015\u0003 \u0015\u001d\u001d\u0015��\u0015\u001d��\u001d\u0015\u0004L\u0015\u001d\u001d\u0015��\u0015\u001d\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000\u0000\u00115463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u00115463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u00115463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u00115463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u001d\u0015\u0004L\u0015\u001d\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001d\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001d\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001d\u001d\u0015��\u0015\u001d\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\b\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u001f\u0000/\u0000?\u0000O\u0000_\u0000o\u0000\u0000\u0000\u0011546;\u00012\u0016\u001d\u0001\u0014\u0006+\u0001\"&%5463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u0001546;\u00012\u0016\u001d\u0001\u0014\u0006+\u0001\"&%5463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u0001546;\u00012\u0016\u001d\u0001\u0014\u0006+\u0001\"&%5463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u0001546;\u00012\u0016\u001d\u0001\u0014\u0006+\u0001\"&%5463!2\u0016\u001d\u0001\u0014\u0006#!\"&\u001d\u0015d\u0015\u001d\u001d\u0015d\u0015\u001d\u0001,\u001d\u0015\u0003 \u0015\u001d\u001d\u0015��\u0015\u001d��\u001d\u0015d\u0015\u001d\u001d\u0015d\u0015\u001d\u0001,\u001d\u0015\u0003 \u0015\u001d\u001d\u0015��\u0015\u001d��\u001d\u0015d\u0015\u001d\u001d\u0015d\u0015\u001d\u0001,\u001d\u0015\u0003 \u0015\u001d\u001d\u0015��\u0015\u001d��\u001d\u0015d\u0015\u001d\u001d\u0015d\u0015\u001d\u0001,\u001d\u0015\u0003 \u0015\u001d\u001d\u0015��\u0015\u001d\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0014d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0014d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0014d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0014d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\u0000\u0000\u0006��\u0000\u0000\u0004ďż˝\u0004L\u0000\u0003\u0000\u0013\u0000#\u0000*\u0000:\u0000J\u0000\u0000\u0001#\u00113\u000154&+\u0001\"\u0006\u001d\u0001\u0014\u0016;\u000126\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26\u00055#535\u0017\u000554&#!\"\u0006\u001d\u0001\u0014\u00163!26\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26\u0001ďż˝dd\u0001,\u001e\u0014d\u0015\u001d\u001d\u0015d\u0014\u001e\u0001ďż˝\u001e\u0014ďż˝\f\u0015\u001d\u001d\u0015\u0001ďż˝\u0014\u001eďż˝\u0018�ɦ\u0002z\u001e\u0014��\u0015\u001d\u001d\u0015\u0001,\u0014\u001e\u0001,\u001e\u0014��\u0015\u001d\u001d\u0015\u0002X\u0014\u001e\u0004L��\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001eďż˝KdK}ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\u0000\u0000\u0006\u0000\u0001\u0000\u0000\u0005\u0015\u0004L\u0000\u000f\u0000\u0013\u0000#\u0000*\u0000:\u0000J\u0000\u0000\u001354&+\u0001\"\u0006\u001d\u0001\u0014\u0016;\u000126%3\u0011#\u000354&#!\"\u0006\u001d\u0001\u0014\u00163!26\u0005535#5\u0007\u000554&#!\"\u0006\u001d\u0001\u0014\u00163!26\u000154&#!\"\u0006\u001d\u0001\u0014\u00163!26ďż˝\u001e\u0014d\u0015\u001d\u001d\u0015d\u0014\u001e\u0002Xddďż˝\u001e\u0014ďż˝\f\u0015\u001d\u001d\u0015\u0001ďż˝\u0014\u001e\u0001��ȧ��\u001e\u0014��\u0015\u001d\u001d\u0015\u0001,\u0014\u001e\u0001,\u001e\u0014��\u0015\u001d\u001d\u0015\u0002X\u0014\u001e\u0003ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e���\u0002ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001eďż˝KdK}ďż˝d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e��d\u0015\u001d\u001d\u0015d\u0014\u001e\u001e\u0000\u0000\u0002\u0000\u0000\u0000ďż˝\u0004ďż˝\u0003ďż˝\u0000\u000f\u0000\u0012\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\t\u0002\u0003ďż˝,\u001fďż˝\u0012\u001f,,\u001f\u0002ďż˝\u001f,\u0001,��\u0001,\u0003��v\u001f,,\u001f\u0002ďż˝\u001f,,ďż˝p\u0001,\u0001,\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0017\u0000\u001f\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u00117\u0005'\u0001\u0013\u0000\u0014\u0006\"&462\u0004ďż˝\u0019\u0013��\u0012\u001a\u001a\u0012\u0004X\u0013\u0019dďż˝\u0018ďż˝\u0001*J\u0001%���NpNNp\u0004 ďż˝\f\u0012\u001a\u001a\u0012\u0003ďż˝\u0012\u001a\u001aJďż˝\u001f���\u0001>��\u00012pNNpN\u0000\u0000\u0002\u0000���\u0004\u001c\u0004ďż˝\u0000\u0014\u0000\u001e\u0000\u0000\u00012\u001e\u0001\u0014\u0007\u000e\u0001\u000f\u0001.\u0004'&54>\u0001\u0013264&\"\u0006\u0015\u0014\u0016\u0002X{ďż˝yIIďż˝99\n\"c]s+?yďż˝yk��֖�\u0004ďż˝~���rďż˝BB\t\"koďż˝Kďż˝{|×ďż˝E�֖�jkďż˝\u0000\u0002\u0000\u0001\u0000\u0001\u0004ďż˝\u0004ďż˝\u0000\u000f\u0000\u0015\u0000\u0000\u00002\u001e\u0002\u0014\u000e\u0002\".\u00024>\u0001\u0001\u0011\"\u0006\u0010\u0016\u0001��ޠ__���ޠ__ďż˝\u0001X���\u0004ďż˝_���ޠ__���ޠ�]\u0003V����\u0000\u0000\u0000\u0002\u0000u\u0000\u0004\u0003ďż˝\u0005\u000f\u0000\u0016\u0000%\u0000\u0000\u0001\u001e\u0006\u0015\u0014\u000e\u0002\u0007.\u000254>\u0003\u0003.\u0002'&6?\u0001\u000e\u0001\u0017\u001e\u0001\u0017\u0002*\u0015IOWM?%N~ďż˝OrĂ€DmssE\u0007\u0016.\n\u000f\u0002\t\t\\7\u000f\u000e[[\u0005\u000fGďż˝vwsuďż˝EYďż˝d;\u0004\u0006^ďż˝w^�����y\u0006\u0016J(Iďż˝43nďż˝QRl\u001a\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004h\u0000\u0004\u0000!\u0000&\u0000\u0000\u00017/\u0001\u0007\u0013\u0015\u0014\u0006#!\"&5\u0011463\u0004\u0017\u0007!\"\u0006\u0015\u0011\u0014\u00163!26=\u0001\u00057\u0001'\u0001\u0004Tq\u0015\\qi���ԥ���\u0001n\u001f���);;)\u0001ďż˝);ďż˝0ďż˝\u0001ďż˝rďż˝k\u0003ďż˝qU\u001cqďż˝z�����\u0001,��\u0006\bďż˝;)ďż˝\f);;)}T2\u0001ďż˝qďż˝k\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u001c\u0000.\u0000\u0000\u0001\u0015\u0014\u0006#!\"&5\u0011463!\u0017\u0006\u0007#\"\u0006\u0015\u0011\u0014\u00163!265'\t\u0001\u0015\"\u000e\u0005\u0007>\u0003\u001f\u0001\u0004L���ԥ���\u0001\u0005\u0002ďż˝Uďż˝);;)\u0001ďż˝);W\u0001h��\u0007\u0018HCVC9\u000b\u001egg_\u001e\u001d\u0001ďż˝5����\u0001,��P X;)ďż˝\f);;)ďż˝\u0001D\u0001>ďż˝\u0002\u000e\u00173CmC&4\u0013\t\u0001\u0001\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u001d\u0000#\u0000\u0000\u0001\u0015\u0014\u0006#!\"&5\u0011463!2\u0017\u0007!\"\u0006\u0015\u0011\u0014\u00163!26=\u0001\u0005\u0001'\u0001'\u0007\u0004L���ԥ���\u0001,\u000454.\u0003#\"\u0006\u001532\u0016264>\u0005:\u000132\u0016\u0015\u0014\u0006\u0007\u000e\u0004\u0017\u001535\u0001ďż˝\u0001D\u0001\u0013ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝í  \u0001Qďż˝\u0005\u0012-\"\u001c#1D1\u001bi��\u0004\u000f\u0007\u0006\u0002\u0005\u0002\t\u0004\u000e\u0004\u0013\u0003\u0013\u0016\b\u0017\u0005\u000f'\u001d\u0018\u0001ďż˝\u0004ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝í  \u0001\u0013\u0001D\u0001\u0013��\u0003\n)2X23L(\u0018\u0006p\u0002\u0006\f\n\u0007\u0005\u0003\u0002\u0001\u0014\u0010\u0016\f\u0010\u0001\u0004\u0017\u001f=ďż˝dd\u0000\u0000\u0003\u0000\u0003\u0000\u0003\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u000f\u0000\u0019\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0005\u001535\u0005\u00153\u0015#\u0015!5#\u0011\u0001ďż˝\u0001D\u0001\u0013ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝í  \u0001Q���dd\u0001ďż˝d\u0004ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝í  \u0001\u0013\u0001D\u0001\u0013ďż˝ddďż˝dďż˝dd\u0001,\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u001a\u00001\u0000\u0000\u0001\u0015#\u000e\u0001\u0007\u0015#5.\u0001'#53>\u0003753\u0015\u001e\u0002\u0017\u0005\u001567#53.\u0001'\u0015#5\u000e\u0001\u00073\u0015#\u001e\u0001\u00175\u0004��\u0019ďż˝YČŚďż˝\u001e��\u000f*EkIďż˝6vk\u0012�ו4��\u0019fIďż˝Kn\u0018��\u0018oK\u0002��fďż˝!��\u001bďż˝}���s\u0001D��;��p\u0000\u0000\u0000\u0001\u0000\u0000\u0000c\u0004ďż˝\u0003ďż˝\u0000\u0006\u0000\u0000\u0001!\u0011\t\u0001\u0011!\u0004�����\u0002X\u0002X\u0001���\u0001ďż˝\u0001���\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000c\u0004ďż˝\u0003ďż˝\u0000\u0006\u0000\u0000\u0001!\u0011!\u0011\t\u0001\u0002X��\u0002X\u0002X��\u0001ďż˝\u0001,\u0001,ďż˝;ďż˝@\u0000\u0000\u0000\u0000\u0001\u0000ďż˝\u0000\u0000\u0004J\u0004ďż˝\u0000\u0006\u0000\u0000\u0001!\u0011!\u0011!\u0001\u0004J������\u0001ďż˝\u0002X��\u0002X\u0002X\u0000\u0000\u0001\u0000h\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000\u0006\u0000\u0000\t\u0002!\u0011!\u0011\u0003��?ďż˝C\u0001(\u0001,\u0002X��\u0002X\u0002X��\u0000\u0001\u0000\u0000\u0000ďż˝\u0004ďż˝\u0004L\u0000\r\u0000\u0000%\u0011\u000e\u0003\u0007>\u00037\u0011\u0001\u0002X_���#\u0006F���\u0002Xďż˝\u0001-\u0002$DuM�խg\b\u0001\u000fďż˝;\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\r\u0000\u0000\u0001!\u0017\u0001\u0017\u0001\u0017\t\u0001\u0017!\u0011\u0017\u0001\u0004��p��ڎ\u0001&����Úďż˝pďż˝\u0001&\u0004���ڎ\u0001&����Ú\u0001��\u0001&\u0000\u0000\u0000\u0002\u0000\"\u0000#\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\r\u0000\u0000\u0001\u0017!\u0011\u0017\u0001\u0017\u0001!\u0011'\u0001'\u0001\u0003g��pďż˝\u0001'��:\u0001���َ\u0001'\u0002Ú‚\u0001��\u0001'��Wďż˝p��ٍ\u0001'\u0000\u0003\u0000\u0017\u0000\u0017\u0004ďż˝\u0004ďż˝\u0000\u000f\u0000\u001f\u0000#\u0000\u0000\u00002\u001e\u0002\u0014\u000e\u0002\".\u00024>\u0001\u0001\u00136&+\u0001\"\u0006\u0017\u0013\u001e\u0001;\u000126\u0017#\u00153\u0001��՛[[���՛[[ďż˝\u0001ďż˝:\u0004\u0018\u0015ďż˝\u0014\u0018\u0004:\u0004#\u00146\u0014#\u0012��\u0004ďż˝[���՛[[���՛��\u0001.\u0014\u001d\u001d\u0014��\u0014\u001d\u001dďż˝d\u0000\u0005\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000&\u0000-\u00003\u00007\u0000;\u0000\u0000\u0001#<\u0001&/\u0001.\u0001#\"\u000f\u0001\u0006\u0007&/\u0001&#\"\u0006\u000f\u0001\u000e\u0001\u0014\u0015#\u00153\u0015!\u00113\u0011!53%7\u001e\u0003#)\u0001\"6?\u0001\u0003!\u0011)\u0002\u0011!\u0004ďż˝o\u0002\u0002\"\u000b=' \u001dďż˝\u0016\u0012\u0013\u0015ďż˝!\u001d'=\n#\u0002\u0002od\u0001��\u0001ďż˝dďż˝+ďż˝\u0005\u000e \u0012\u0002����\u0003\"\u0012\u0012ďż˝\u0001��p\u0002X\u0001��p\u0003ďż˝\u0001\n\u0014\bďż˝'0\u0011ďż˝\r\u0016\u0018\fďż˝\u0012.&ďż˝\b\u0014\n\u0001dďż˝\u0001,���dďż˝\f)W9`0/��\u0001��p\u0000\u0000\u0000\u0000\u0002\u0000\u0000��\u0004ďż˝\u0004ďż˝\u0000\u001b\u00002\u0000\u000057.\u0002>\u00017>\u00057\u0014\u0002\u000e\u0004.\u0002#\u000f\u0001\u0001>\u00037>\u0001'&\"\u0006\u0007\u000e\u0001\u000f\u0001\u0004\u0007\u0006\u001676ďż˝\t\b\u0003\u00158./ie���h,Jhqďż˝x{\\S\u000fcďż˝\u0002ďż˝Fak[)\u0016\u0004\b\u0007\u0014!\u0011#ďż˝==��Y0'C7yďż˝5<ďż˝bďż˝;\u00062\u001e\u0005\u0017\u00002>\u00047.\u0004'\u0016\u0015\u0014\u0006\"&547\u0006\u0007\u001e\u0004\u0013\u0007\u0016\u00177.\u0001'\u0004ďż˝\u001a\u0006\u001cFOsv���vsOF\u001c\u0006\u001a\u001a\u0006\u001cFOsv���vsOF\u001c\u0006ďż˝Eďż˝wRY,H\u000b\u00017\u001d:9\u001e1���.f|\u0007C-[TFk1ii%L\u0013\u0002X(\n(WT`G//G`TW(\n((\n(WT`G//G`TW(\nďż˝p(3\\;h\u000e\u0001I%E:\u0019JY|��|UIWďż˝\n`=^8\u0001ďż˝j|Ci\u0018`$\u0000\u0004��\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0016\u0000.\u00008\u0000A\u0000\u0000\t\u0001#7.\u0004/\u00017>\u000632\u00177\u0001\u0007\u000e\u0004\u00077>\u00067&'7\u001e\u0002\u0017\u00017.\u0001547\u0006\u0007\u0012\u0013\u0007\u0016\u0017?\u0001.\u0001'\u0003��Ɣ%Rďż˝ri'\n\u001a\u001a\u0006\u001cFOsvďż˝H=<%\u0001ďż˝\u001a\u0007%Zeďż˝I&\u0016-/\"0\u0013/\u0001a+'Cďż˝.\rďż˝.%kďż˝.f|Ňšk1i/\u0017\u001e:\u000f\u0004��Pďż˝\u0015egy8\u000f((\n(WT`G/\u0011���(\f4kbf\u001cďż˝\u000f&2&?\u0018@\u00020ďż˝6ďż˝@\u0014���\u0012ďż˝nUIW���\u0001ďż˝j|C/W\u001cR\u001b\u0000\u0000\u0000\u0003��\u0000\u0000\u0005\u0012\u0004ďż˝\u0000\u000b\u0000\u0012\u0000\u0017\u0000\u0000#!26'\u0001.\u0001\u0007\u0001\u0006\u0016%5#\u0015!\t\u0002#\u0015\u001b\u0001/\u0005\u000e%\u001b\u0015ďż˝~\u00148\u0014ďż˝~\u0015\u001b\u0003\u0010���\u0001ďż˝\u0001����ddG \u0004 !\u0006 �� Dďż˝dd\u0002��-\u0001ďż˝d��\u0001,\u0000\u0000\u0001\u0000d\u0000\u0015\u0004ďż˝\u0004ďż˝\u0000)\u0000\u0000\t\u0001\u001e\u0001\u001d\u0001\u0014\u0006'%\u0011\u0016\u001d\u0001\u0014\u0006/\u0001#\u0007\u0006&=\u000147\u0011\u0005\u0006&=\u0001467\u0001\u0011462\u0016\u0015\u0003 \u0001k\u000f\u0016\u0018\u0011��d\u001a\u0013^ďż˝^\u0013\u001ad��\u0011\u0018\u0016\u000f\u0001kX|X\u0002���\u000e1\u0014)\u0014\r\f���[\u0016@\u0015\u0010\tNN\t\u0010\u0015@\u0016[\u0001\u0007ďż˝\f\r\u0014)\u00141\u000e\u0001E\u0001S>XX>\u0000\u0003\u0000\u0000\u0000\u0003\u0005x\u0004ďż˝\u0000\n\u0000\u0010\u0000\u0019\u0000\u0000\t\u0001!5!\u000135\t\u00015\u00057'!\u0015!\u0005\t\u00015#'7\u00173\u0003�����\u0001\u0003\u0002Xďż˝\u0001,���1����\u0001\u0003\u0003I\u0001,�����zďż˝\u0003 ���\u0002X������z��������ŵ�{\u0000\u0001\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u0012\u0000\u0000\u0013!2\u0016\u0015\u0011\u0014\u0006#!\u0001\u0011#\"&5\u001146d\u0003ďż˝);;)����d);;\u0004L;)��);��\u0001,;)\u0002X);\u0000\u0000\u0000\u0003\u0000d\u0000\u0000\u0004L\u0004ďż˝\u0000\u0003\u0000\u0007\u0000-\u0000\u0000\u0001!\u0011!\u0001!\u0011!\u0011\u0015\u0014\u000e\u0005\".\u0005=\u0001!\u0015\u0014\u0017\u0016\u0017\u001632>\u0006'4=\u0001\u0001���\u0001,\u0002���\u0001,\u0006\u0018'Me���eM'\u0018\u0006\u0001,\u0006\u0011U'5%;)\u001f\u0011\u000b\u0003\u0002\u0001\u0003ďż˝\u0001,��\u0001,ďż˝pďż˝*R~jqP33Pqj~R*��q \\\u0019\u000b\u000b\u0014\u001c#(,.\u0018\u0011\bďż˝\u0000\u0000\u0001��\u0000ďż˝\u0004h\u0003ďż˝\u0000\u0005\u0000\u0000%7\t\u0001\u0017\u0001\u0003�������\u0001`��\u0002C���\u0001a\u0000\u0000\u0001\u0000F\u0000ďż˝\u0004ďż˝\u0004\u0000\u0000\u0005\u0000\u0000%\u0001'\t\u0001\u0007\u0002ďż˝\u0002B�������\u0002C���\u0001aďż˝\u0000\u0000\u0002ďż˝:\u0000d\u0005v\u0003ďż˝\u0000\b\u0000\u0011\u0000\u0000\u0001\u0011!\u0017!\u0011#\t\u0004#\u0011!\u0017!\u0011\u0004����\u0001}ďż˝\u0001+\u0001+��\u0001+\u0001,ďż˝\u0001����\u0001ďż˝\u0002X��p��\u0001\u001b\u0001,\u0001\u001b���pďż˝\u0002X\u0000\u0000\u0000\u0000\u0001\u0000\u0012\u0000\u0000\u0004ďż˝\u0004ďż˝\u00002\u0000\u0000\u000132\u0016\u0014\u0006+\u0001\u0003\u000e\u0002+\u0001\u0015\u0014\u0006\"&=\u0001!\u0015\u0014\u0006\"&=\u0001#\"&5463!7!\"&'\u0003&763!7>\u0001\u0004\u001a^\u0014\u001e\u001e\u00146ďż˝\u0002\b\u001e\u0012\u001f\u001d*\u001d��\u001d*\u001d2\u0015\u001d\u001d\u0015\u0002\u00170�� -\u0005d\u0005\u000f\u000e\u0019\u0003ďż˝&\u0005\u001b\u0004ďż˝\u001d*\u001dďż˝?\u0004\r\u00162\u0014\u001e\u001e\u001422\u0014\u001e\u001e\u00142\u001e\u0014\u0015\u001dďż˝*\u0016\u0001ďż˝\u0018\u0012\u0013ďż˝\u0011\u0015\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u000b\u0000\u000f\u0000\u0000\u0001\u0015!53463!2\u0016\u0015\u0005!\u0011!\u0004��Pďż˝;)\u0001,);ďż˝D\u0004��P\u0003ďż˝dd);;)���\u0000\u0002\u0000\u0001\u0000\u0000\u0005ďż˝\u0004L\u0000\f\u0000\u0010\u0000\u0000\u0013\u0003\u00113463!2\u0016\u0015!\u0015\u0005\u0001!\u0001���;)\u0001,);\u0001ďż˝\u0001,���P\u0001,\u0003 ďż˝p\u0002X);;)ďż˝dďż˝D\u0002ďż˝\u0000\u0001\u0001.\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000\t\u0000\u0000\u00013\u0011#\t\u0001#\u00113\u0001\u0001.��\u0001*\u0001*����\u0001,\u0002X\u0001,������\u0000\u0001\u0000\u0000\u0001/\u0004ďż˝\u0003ďż˝\u0000\t\u0000\u0000\u00015!\u0015\t\u0001\u0015!5\u0001\u0003�����\u0001,\u0002X\u0001,\u0001/��\u0001)\u0001*����\u0000\u0004\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\t\u0000\u0019\u0000\u001d\u0000!\u0000\u0000\u001b\u0001>\u00013!2\u0016\u0017\u0013\u0005!2\u0016\u001d\u0001\u0014\u0006#!\"&=\u000146\u0005#\u001537#\u00153\u001fďż˝\u0005$\u0014\u0002ďż˝\u0013%\u0005���\u0003ďż˝);;)ďż˝\u0018);;\u0003Iddďż˝dd\u0001ďż˝\u0002ďż˝\u0016'-\u0017ďż˝$d;)d);;)d);dddd\u0000\u0000\u0000\u0003��\u0000d\u0004ďż˝\u0004L\u0000\r\u0000'\u00003\u0000\u0000%\u00114632\u0016\u0015\u0011\u0014\u0006#\"&\u0001%\u0011%#\u0013\u0016\u000e\u0001#\"+\u0001\"&'\u0002=\u0001454>\u00023\u0007546?\u0001\u0015.\u0004\u0004L\u001d\u0015\u0014\u001e\u001e\u0014\u0015\u001d��\u0002��]&/\u0002\n\f\u000f\u0005\u0003S\u0014\u001d\u00048\u0001\u0004\f\tďż˝2\u0019\u0019\u0004\u000e\"\u001a\u0016ďż˝\u0003R\u0015\u001d\u001d\u0015��\u0014\u001e\u001e\u0002l������\f\u000b\u0001\u001c\u0015\u0001Q\u000eďż˝\u0002\u0003\r\u000b\u000f\u0006ďż˝2\u00182\r\rďż˝\u0002\u0007\u0015\u0016!\u0000\u0000\u0001\u0000\u0015\u0000\u0015\u0004ďż˝\u0004ďż˝\u0000\u0017\u0000\u0000\u0001\u0007'\u0017\u0007\u0017\u0007\u0017\u00077\u00177\u00177\u0017'7'7'7\u0007'\u0007\u0001ďż˝-ďż˝Néłłďż˝Nďż˝-��-ďż˝Nę´´ďż˝Nďż˝-ďż˝\u0004��Nďż˝,��-ďż˝Néłłďż˝Nďż˝-��,ďż˝N��\u0000\u0003\u0000\u0000\u0000d\u0004ďż˝\u0004ďż˝\u0000\u001e\u0000*\u0000.\u0000\u0000\u0001#\"\u0006\u000f\u0002\u0006\u0015\u0011\u0014;\u0001\u0016;\u000127\u00136=\u00014&#!6=\u00014&\u0003\u0007!\u0015\u0003#'#\u0011?\u00013\u0001\u00113\u0011\u0002ďż˝2\u001b0\u000e`ďż˝\u0014d={\u0010ďż˝.%ďż˝\u001d='��\u001c='2\u0001��Ödďż˝d2ďż˝Dďż˝\u0004ďż˝(\u001c��\u001a%ďż˝pKd9\u0001X\u001f+d,Qv\u0007ďż˝,Q���}��d\u0001w������\u0002X\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\u001e\u0000\"\u0000.\u0000\u0000!#\"&/\u0002&5\u00114;\u00016;\u00012\u0017\u0013\u0016\u001d\u0001\u0014\u0006#!\u0016\u001d\u0001\u0014\u0006\u0001#\u00113\u0001'!5\u0003#\u0007#\u0011\u001f\u00013\u0002ďż˝2\u001b0\u000e`ďż˝\u0014d={\u0010ďż˝.%ďż˝\u001d='��\u001c=����\u0001ďż˝2\u0001��Ödďż˝d2(\u001c��\u001a%\u0001ďż˝Kd9��\u001f+d,Qv\u0007ďż˝,Q\u0001ďż˝\u0002Xďż˝+ďż˝}\u0001wd����\u0000\u0000\u0000\u0003\u0000\b\u0000d\u0005\u0015\u0004U\u0000\u001e\u0000=\u0000A\u0000\u0000\u0001%632\u001f\u0001\u0016\u0015\u0014\u000f\u0001!2\u0016\u0014\u0006+\u0001\u0003\u000e\u0001#!\"&5\u0011467\u0017\u0011\u0017!\u0013>\u0001;\u00012654&#!*\u0002.\u0004'&54?\u0001'\u0001#\u00113\u0001l\u0001j\u000e\u000b\u0011\fm\u000e\u000bU\u0001.UkmTkďż˝\u0007\u001b\u000f��\u0007ďż˝\u001c\u000e:d\u0001%ďż˝\u0006\u001b\u000fďż˝\u0010\u0012\u0012\u0010ďż˝7\u0001\u000b\u0004\t\u0003\u0007\u0004\u0004\u0002\u0005\nďż˝V����\u0003iďż˝\u0006\fp\u000e\u0014\u0012\u000eyLďż˝N��\u0016'ďż˝\r\u0002\r\u0011%\nHďż˝\tY\u0001S\u0015(\u001e\u0015\u0014\u001d\u0001\u0001\u0002\u0003\u0005\u0003\f\b\u000e\rďż˝S��\u0002X\u0000\u0000\u0000\u0003��\u0000e\u0004ďż˝\u0004V\u0000\u001e\u00008\u0000<\u0000\u0000\u0001\u0005\u001e\u0002\u0015\u0011\u0014\u0006#!\"&'\u0003#\"&46\u0017!'&54?\u0001632\u0007\u0017\u0016\u0015\u0014\u0007\u000e\u0005*\u0001#!\u001532\u0016\u0017\u0013!7\u0011%\u0001#\u00113\u0001ďż˝\u0001m\u0007\u0013!ďż˝\b��\u000f\u001b\u0006ďż˝jTnlU\u0001.U\u000b\u000em\r\u0010\u000b[ďż˝\n\u0005\u0001\u0005\u0003\u0007\u0004\t\u0004\u000b\u0001ďż˝$ďż˝\u000f\u001b\u0006ďż˝\u0001%j��\u0002���\u0004Pďż˝\u0004\r'\u0011��\rďż˝(\u0015\u0001SNďż˝L\u0001y\u0010\u0010\u0015\rq\f��\u000b\u000f\u000b\t\u0003\u0005\u0003\u0002\u0001\u0001d)\u0014��Y\u0001����\u0002X\u0000\u0000\u0003\u0000a\u0000\u0000\u0004L\u0005\u000e\u0000\u001b\u00006\u0000:\u0000\u0000\u0001\u00114&'%54&\"\u0006\u0015\u0011'&\u0006\u000f\u0001\u0006\u0017\u0013\u001e\u00023!26\u0007!\u00037\u0017\u00167>\u0005<\u00015\u001146\u0016\u001d\u0001\u0014\u0016\u0017\u0005\u0019\u0001\u0015!5\u0004L(\u0015��Nďż˝Ly\u000f%\u000ep\u0016\u0010ďż˝\u0004\r'\u0011\u0002\r\r���\tďż˝Sďż˝\u0016\u0019\u0003\u0005\u0003\u0002\u0001\u000122(\u0015\u0001S��\u0001ďż˝\u0001V\u000f\u001b\u0006ďż˝jTnkU��T\f\u0001\rn\u0016\u001f��\u0006\u0013\u001fďż˝B\u0001SVďż˝\u0012\r\u0001\u0005\u0003\u0007\u0004\t\u0003\f\u0001\u0001ďż˝\u0016\u0012\u0013\u0015ďż˝\u0010\u001b\u0006�������\u0000\u0003\u0000\u0001\u0000\n\u0003ďż˝\u0005\u0018\u0000\u0003\u0000\u001f\u00006\u0000\u0000\u00015!\u0015\u0001%>\u00015\u00114&#!\"\u0006\u000f\u0001\u0003\u0006\u001f\u0001\u001e\u0001?\u0001\u0003\u0014\u0016265\u0001\u0011\u0005\u000e\u0001\u001d\u0001\u0014\u0006&5\u0011<\u0001.\u0001'&\u000f\u0001'\u0013!\u00011\u0002X��\u0001S\u0014)ďż˝\r��\u0011%\n\nďż˝\u000f\u0016p\r&\u000fy\u0001Mďż˝N\u0001,��\u0014(22\u0003\u0007\u0006\u0018\u0016ďż˝Sďż˝\u0001ďż˝\u0004P�����\u0006\u001b\u000f\u0001V\u0007ďż˝\u001c\u000e\u000f��\u001f\u0016n\r\u0001\u000bU��TlnT\u0002X�ڂ\u0006\u001c\u000fďż˝\u0016\u0012\u0012\u0016\u0001ďż˝\u000b\u0007\u0010\b\u0003\r\u0012ďż˝V\u0001S\u0000\u0000\u0002\u0000\u0005\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u000e\u0000\u0015\u0000\u0000\u00012\u0004\u0012\u0010\u0002\u0004 $\u000254>\u0002\u0013!\u0015!\u0007\t\u0001\u0002[ďż˝\u0001\u0013���������_��u��\u0001,\u0002\u0001��n\u0004ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝ďż˝í  \u0001\u0013ďż˝zÝ _ďż˝\u0012��\u0001&\u0001*\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0010\u0000\u0017\u0000\u0000\u00012\u001e\u0002\u0015\u0014\u0002\u0004 $\u000254>\u0002\t\u00015!5!5\u0002UzÝ _��������_����\u0001ďż˝\u0001.��\u0004ďż˝_��zďż˝ďż˝í  \u0001\u0013ďż˝zÝ _�������\u0000\u0002\u0000\u0005\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0010\u0000\u0017\u0000\u0000\u00012\u001e\u0002\u0015\u0014\u0002\u0004 $\u000254>\u0002\u00033\u00113\u00113\u0001\u0002[yÝ _��������_�ݵ�����\u0004ďż˝_��zďż˝ďż˝í  \u0001\u0013ďż˝zÝ _����\u0001,\u0001ďż˝\u0000\u0000\u0002\u0000\u0005\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0010\u0000\u0017\u0000\u0000\u00012\u001e\u0002\u0015\u0014\u0002\u0004 $\u000254>\u0002\u0013\u0011#\t\u0001#\u0011\u0002[yÝ _��������_��\u0013ďż˝\u0001,\u0001,ďż˝\u0004ďż˝_��zďż˝ďż˝í  \u0001\u0013ďż˝zÝ _�����p\u0001ďż˝\u0001,\u0000\u0000\u0000\u0003\u0000\u0005\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0010\u0000ďż˝\u0000ďż˝\u0000\u0000\u00012\u001e\u0002\u0015\u0014\u0002\u0004 $\u000254>\u0002\u0017\u000e\u0003\u0007\u0006&\u0007\u000e\u0001\u0007\u0006\u0016\u0007\u000e\u0001\u0007\u0006\u0016\u0007\u0014\u0016\u00072\u001e\u0001\u0017\u0016\u0017\u001e\u00027\u0016\u0006\u0017\u0016\u0017\u0014\u000e\u0001\u0017\u00167>\u00027.\u0001'.\u0001'\"\u000e\u0002\u0007\u0006'&65.\u0001'6.\u0001\u0007\u0006'&767\u001e\u0002\u0017\u001e\u0001\u001f\u000146'&67>\u00037&72\u0016267.\u0003'6'\u001e\u0001?\u00016.\u0001'\u0006\u0007\u0014\u001e\u0001\u0017.\u0003'>\u00017\u00162>\u0001\u0002[yÝ _��������_�ݒ\u000f+\u001a>\b\u000f=\u000f\u0015>\u0003\u0003\u0013\u0001\u00031\u0005\b\u001b\u0006\"\u0001\f\u0016\u0018\b\u0018T\u0016>9\u001d\b.\u0003*-\u0006\u0001\u0005fw\u001e\"#\u0003\u000e.\r\u000eF\u0011\t= .\u00102\u0010\u0004\u0001\u0006)\u0004\u0002\b\u0019\u001a\u0017\u0013\u0013\u000b\u0006\u0010\u0006(\u001b\u0006\f(\u000e\u000e\u0013\u0004\u0004%\u0004\u0005\n\u0007\u0018\u0016\u0006\u0010\b\u001f\u0012\u0017\t\n)#?\f\u000b\n\u001f7\f\u000b\u0006.R\u000f\u0013 \u0010\u0011\u0001\t,\u001c$\f\u0003\u001a\u0003\n\u0011\u000b\u0012\u0004ďż˝_��zďż˝ďż˝í  \u0001\u0013ďż˝zÝ _^\f\u0012\u0006\n\u0001\u0003\u0007\u0006\u0007'\u000f\u000b\u0017\u0007\"q\u0017!w\u001c\tF\u0019\u000b\u0013\u0004\f\u001e\b/\u001e\u0004\u0012J\u0014G\t\u0006\u0013\n\f\u0002r\u001d$>\u001f\t\u0001\u0007\u0007\u0010\u000b\u0001\u0002\u000b\u000b#\u0017\u0002/\u0002\r\b\u0003\u0016&\u0012\u001d\u0019\u001d\u001c\u001e\u0010\u0006\u0001\u0001\u0007\n\u0013%\t\b\u0003I\u0015\u0017+\n\u000e*\u0014\u0019\t\u0012\u0013\u0003\t\u000b\u0017'\u0015 \u0007)\u0003\r\u0003\u0005\u0004$#\u0016\f\u0003h\u00121'\u0004\u0002\u0006\u0004\f\b\f$\u0007\n\f\u0011\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0000`\u0004ďż˝\u0004ďż˝\u0000\u000f\u0000\u0013\u0000#\u0000'\u00007\u0000;\u0000\u0000\u0013!2\u0016\u001d\u0001\u0014\u0006#!\"&=\u000146\u0005#\u00153\u0005!2\u0016\u001d\u0001\u0014\u0006#!\"&=\u000146\u0005!\u0015!\u0005!2\u0016\u001d\u0001\u0014\u0006#!\"&=\u000146\u0005!\u0015!d\u0003ďż˝);;)ďż˝\u0018);;\u0004\u0011���\u0018\u0003ďż˝);;)ďż˝\u0018);;\u0004\u0011ďż˝\f\u0001��\u0018\u0003ďż˝);;)ďż˝\u0018);;\u0004\u0011��\u0001,\u0004ďż˝;)d);;)d);ddďż˝;)d);;)d);ddďż˝;)d);;)d);dd\u0000\u0000\u0000\u0002\u0000d\u0000\u0000\u0004L\u0004ďż˝\u0000\u0003\u0000\t\u0000\u0000\u0001\u0015!5\u0017!\u0001\u0011\u0007\u0011\u0004Lďż˝\u00182\u0003����\u0004ďż˝dd��\f���\u0001ďż˝\u0000\u0004\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\r\u0000\u0014\u0000\u001b\u0000\u0000\u00017'7!\u00117\u0001\u0011'\u0007'7'\u0001\u0017!\u0011\u00177\u0017\u00057\u0011!7'7\u0001Iďż˝Čďż˝pďż˝\u0004/�ȎČ����p�Ȏ\u0002X��p�Ȏ\u0002ŮŽČďż˝pďż˝\u0001\u000fďż˝p�ȎČďż˝Ń\u0001��Ȏ:��p�Ȏ\u0000\u0000\u0006\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0015\u0000\u001f\u00008\u0000B\u0000L\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0015\u0014\u0016 654%2\u0016\u0014\u0006#\"&46\u00057&54632\u0016\u0014\u0006#\"'\u0007\u0016\u0015\u0014\u0006\"&546762\u0016\u0014\u0006#\"&54$2\u0016\u0015\u0014\u0006#\"&4\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V���\u0016 \u0016\u0017 \u0001\u0014\u0001\t \u0017\u0016 \u0016\u000e\u000f7\u00113H3)\u001fďż˝.\u001f \u0016\u0017 ďż˝\". \u0017\u0016 \u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016����ň¬«Š . !,!T\u0001\u000e\u000e\u0016! . \nďż˝\u0016\u001d$33$ 1\u0005\u000e\u001f. \u0017\u0016 \u0016\u0017 .\u0000\u0000\u0002\u0000P\u00006\u0004ďż˝\u0004X\u0000\u0019\u00003\u0000\u0000%'&'.\u000354632\u0017632\u0016\u0015\u0014\u000e\u0002\u0007\u0006\u0007\u00137>\u000254&#\"\u000f\u0001'&#\"\u0006\u0015\u0014\u001e\u0001\u001f\u0001\u0016\u00176\u0002ďż˝\u0010Zďż˝GCW#Ĺ„ďż˝bg���#WCGďż˝Zďż˝\f@C>`9J:vr3H@\u0016]aR6\u0016}ďż˝FGlZ.ďż˝Ĺďż˝Ĺ.ZlGFďż˝}\u0001ďż˝\f>FX\u001cG`R��ObE\u001bVA>\u0016Zo\\\u0000\u0000\u0000\u0002\u00009��\u0004w\u0004ďż˝\u0000\u0019\u00002\u0000\u0000\u0001\u00177'\u0001\u0017\u0007\u0017\u0016\u00177>\u000154/\u0001&#\"\u0007\u0001\u0006\u0015\u0014\u0017\u0003\u0017\u0016327\u000164/\u0001&'\u0007\u0017\u0001'7'&'\u0007\u0006\u0015\u0014\u0001ďż˝\u0013iďż˝\u0001��_\u0012.\u001f\u001d#7Bďż˝B]_@��BBÔŤB]_@\u0001\u001bBBďż˝\f\u0007i��{ďż˝_\u0012.\u001d7B\u0001ďż˝\u0011iďż˝\u0001��`\u0012.5\u001d#j+]Bďż˝BB��@_]B���BB\u0001\u001bBďż˝Bďż˝\f\u0005i��{ďż˝_\u0012-87B]^\u0000\u0000\u0000\u0000\u0003\u0000ďż˝\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000\u0011\u0000\u0015\u0000\u001d\u0000\u00007\u00114>\u00022\u001e\u0002\u0015\u0011\u0014\u0006#!\"&\u0001!\u0011!\u0004264&\"\u0006\u0014ďż˝\u0001753\u0015\u001e\u0004\u0017#.\u0001\u0003\u0011\u000e\u0001\u0015\u0014\u001e\u0003\u0017\u0016\u0017\u0011654&\u0002ďż˝@\"��\u000bMN\u0011W(kVMc\u000f\u0001O\u0007\u000e\u0019/9X7\\ďż˝C\u0007NO\u0004\u0013,?iBHK��\u0001\u0012\b;I\u001d,\u0018\u0015\u0006\u0007\u0002���\u0012ďż˝@G\u0000\u0001\u0000d\u0000f\u0003ďż˝\u0004ďż˝\u0000H\u0000\u0000\u0001\u0017\u000e\u0002#\"&\u0007\u000e\u0001\u000f\u0001'>\u00057>\u0001'#53&'.\u0001>\u00017632\u0016\u0015#4.\u0001#\"\u0006\u0007\u0006\u0015\u0014\u001e\u0006\u00173\u0015#\u0016\u0006\u0007\u0006\u0007>\u000136\u001632\u0003b2)O'*\u0017ďż˝2'V\u0017\u00187\u0006\u0015\n\u0011\f\u0011\t0\f$ݦ\u0018\u0014\n\t\u0003/-a��ʙDP$%T\u0014)\u0005\u0006\r\b\u0014\b\u0017\u0002��\b\u0015\u0015):#b\u0015 ďż˝\"L\u0001,ďż˝\u0019\u0017\u0003B\u0004\u0004\u001a\f\u000bďż˝\u0004\u000e\u0006\r\u000b\u0011\n7ďż˝Gd17\u001a;V^(Xďż˝w4K\u001c\u001d\u0015,9\u000b\u001b\u0015 \u0012%\u000e(\u0004d2ďż˝\u001d;6\u000b\u000e\u0001\"\u0000\u0000\u0000\u0000\u0002\u0000\u0002\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\r\u0000\u0000!\u0001#\u0011#\u0011#\t\u0001#\u0011#\u0011#\u0001,\u0001*���\u0003ďż˝\u0001*���\u0001,\u0003��|\u0003����|\u0003ďż˝\u0000\u0000\u0000\u0005\u0000\u0002\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000\u0006\u0000\u000e\u0000\u0012\u0000\u001c\u0000\"\u0000\u0000\u00013\t\u00013\u00113!\u0011#5#\u0015#\u0011\u0017#\u00153\u0003!\u0015#\u0015#535#\u00133\u0015!53\u0001��������\u0002Xdddďż˝ddďż˝\u0001,cdcďż˝d���d\u0001,��\u0001,\u0003��\fdd\u0001ďż˝d��pďż˝ddd��dďż˝\u0000\u0005\u0000\u0002\u0000\u0000\u0003ďż˝\u0004ďż˝\u0000\u0006\u0000\u0010\u0000\u0016\u0000\u001e\u0000\"\u0000\u0000\u00013\t\u00013\u00113!\u0015#\u0015#535#5\u00133\u0015!53\u0003!\u0011#5#\u0015#735#\u0001��������\u0002Xcdcďż˝d���dd\u0001,dddedd\u0001,��\u0001,\u0003��ddddďż˝pd��pďż˝\fdd��\u0000\u0000\u0004\u0000\u0002\u0000\u0000\u0004L\u0004ďż˝\u0000\u0006\u0000\f\u0000\u0012\u0000\u0016\u0000\u0000!\u0001#\u0011#\u0011#\u0001#53\u0011#\u0017\u0011#5#\u0011\u0017#\u00153\u0001,\u0001*���\u0003ďż˝dďż˝dďż˝d��dd\u0001,\u0003��|\u0003 dďż˝\f��\fd\u0001ďż˝dďż˝\u0000\u0004\u0000\u0002\u0000\u0000\u0004L\u0004ďż˝\u0000\u0006\u0000\f\u0000\u0010\u0000\u0016\u0000\u0000!\u0001#\u0011#\u0011#\u0001\u0011#5#\u0011\u0017#\u00153\u0003#53\u0011#\u0001,\u0001*���\u0004Jd��ddedďż˝d\u0001,\u0003��|\u0003��\fd\u0001ďż˝d��\fdďż˝\f\u0000\u0000\u0000\u0000\u0005\u0000\u0002\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\n\u0000\u000e\u0000\u0012\u0000\u0016\u0000\u0000!\u0001#\u0011#\u0011#\u0001#53\u0013!5!\u0013!5!\u0013!5!\u0001,\u0001*���\u0003���d��\u0001,dďż˝p\u0001ďż˝dďż˝\f\u0001ďż˝\u0001,\u0003��|\u0002���\f��\f��\fďż˝\u0000\u0000\u0000\u0000\u0005\u0000\u0002\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\n\u0000\u000e\u0000\u0012\u0000\u0016\u0000\u0000!\u0001#\u0011#\u0011#\u0001!5!\u0003!5!\u0003!5!\u0003#53\u0001,\u0001*���\u0004��\f\u0001ďż˝dďż˝p\u0001ďż˝d��\u0001,d��\u0001,\u0003��|\u0002���\f��\f��\fďż˝\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000f\u0000\u001f\u0000\u0000\u0001!2\u0016\u0015\u0011\u0014\u0006#!\"&5\u001146\u0005!\"\u0006\u0015\u0011\u0014\u00163!265\u00114&\u0001ďż˝\u0001,�����ԥ��\u00025ďż˝\f);;)\u0001ďż˝);;\u0004L���ԥ���\u0001,���;)ďż˝\f);;)\u0001ďż˝);\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000f\u0000\u001f\u0000\"\u0000\u0000)\u0001\"&5\u0011463!2\u0016\u0015\u0011\u0014\u0006\u0003!\"\u0006\u0015\u0011\u0014\u00163!265\u00114&\u0005\u0011%\u0002��ԣ���\u0001,���Aďż˝\f);;)\u0001ďż˝);;ďż˝G\u0001M��\u0001,�����ԥ�\u0003ďż˝;)ďż˝\f);;)\u0001ďż˝);dďż˝\fďż˝\u0000\u0003\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000f\u0000\u001f\u0000\"\u0000\u0000\u0019\u0001463!2\u0016\u0015\u0011\u0014\u0006#!\"&%\u00114&#!\"\u0006\u0015\u0011\u0014\u00163!26\u0003!\u0013��\u0001,�����ԥ�\u0003ďż˝;)ďż˝\f);;)\u0001ďż˝);dďż˝\fďż˝\u0001ďż˝\u0001,�����ԥ��A\u0001ďż˝);;)ďż˝\f);;\u0001���\u0000\u0003\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\u000f\u0000\u001f\u0000\"\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0003\u00114&#!\"\u0006\u0015\u0011\u0014\u00163!26\u0001\u0003!\u0004L���ԥ���\u0001,���;)ďż˝\f);;)\u0001ďż˝);���\u0001ďż˝\u0002��Ԣ���\u0001,�����\u0001ďż˝);;)ďż˝\f);;\u0001���\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0014\u0004L\u0000\u0013\u0000\u001a\u0000\u0000\u0001!2\u0016\u0015\u0011\u0014\u0006#!5!265\u00114&#!\u0013\u00015!\u0011!5\u0001ďż˝\u0001������p\u0001ďż˝);;)ďż˝\f��p��\u0001,\u0004L���ԥ��;)\u0001ďż˝);�����\u0001,ďż˝\u0000\u0000\u0001\u0000ďż˝\u0000\u0001\u0003ďż˝\u0004ďż˝\u0000\u001f\u0000\u0000%\u001727\u00016'&\u0007!6\u001276/\u0001#\"\u0007\u000e\u0001\u0000\u0007\u0006\u0017\u00163!\u0002\u0007\u0006\u0017\u0001ďż˝\t\r\r\u0002\u001a\u000f\t\b\u0018��\u0001ďż˝\u0002\u0002\b\b\t\u0010\t\u0004���L\u0011\n\n\u0016\u0001.ďż˝\u0005\u0005\t\u0002\u0001\u0010\u0002v\u0013\u0011\u0012\u0002\u0004\u0001ďż˝\f\u0011\n\b\u000f\u0005���X\u0013\u0015\u0013ďż˝J\u0014\u0015\u000b\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0005\u0014\u0004L\u0000\u0018\u0000\u001f\u0000\u0000%!\"&5\u0011463!5.\u0001/\u0001\"\u0006\u0015\u0011\u0014\u00163!2?\u00015!\u0011!5\u0001\u0003 ďż˝\f);;)\u0001ďż˝\u000eďż˝]]����\u0001,/5d��\u0001,\u0001��;)\u0001ďż˝);ďż˝\u0004\u0007\u0002\u0002���ԥ�\u000f��\u0001,���\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000$\u0000\u0000\u0001'\u0001'\u0001'!\u0003\u0007\u0015\u0014\u0006#!\"&5\u001146;\u00017'#\"\u0006\u0015\u0011\u0014\u00163!26=\u0001\u0004�����\u0001aďż˝\u0001��z;)ďż˝\f);;)ďż˝vJd����\u0001,��\u0002�����\u0001V���{ďż˝);;)\u0001ďż˝);zN���ԥ���b\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0004\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0013\u0000\u001b\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0010\u0016 6\u0010$2\u0016\u0014\u0006\"&4\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V��\u0012ďż˝rrďż˝r\u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016�����\u0001V\u0017rďż˝rrďż˝\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u0006\u0000\u0010\u0000\u0014\u0000\u0000\u0001\u0011!\u0011!\t\u0002!2\u0016\u0015\u0011!\u001146\u0005#\u00153\u0002�����\u0001ďż˝\u0001��6\u0004\u0018\u000b\u0010��\u000e\u0003ďż˝dd\u0003 \u0001��pďż˝\f\u0001��\f\u000f\n��\u0001\u0013\u000b\u000ed2\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u0006\u0000\u0010\u0000\u0014\u0000\u0000\u0001\u0011!\u0011!\t\u0001\u0003!2\u0016\u0015\u0011!\u001146\u0005#\u00153\u0001ďż˝\u0001,\u0001'ďż˝Cďż˝>K\u0004\u0018\u000b\u0010��\u000e\u0003ďż˝dd\u0002���\u0001,\u0001��\fďż˝p\u000f\n��\u0001\u0013\u000b\u000ed2\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004L\u0004\u0000\u0005\u0000\u000f\u0000\u0013\u0000\u0000\t\u0001'\u0001'\u0007\u0003!2\u0016\u0015\u0011!\u001146\u0005#\u00153\u0001ďż˝\u0002T��F��K\u0004\u0018\u000b\u0010��\u000e\u0003ďż˝dd\u0001ďż˝\u0002T��F���k\u000f\n��\u0001\u0013\u000b\u000ed2\u0000\u0004\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u0003\u0000\n\u0000\u0014\u0000\u0018\u0000\u0000\u0001'\u0007\u0017\u0005'\u0007\u0017\u0007!\u0011\u0001!2\u0016\u0015\u0011!\u001146\u0005#\u00153\u0001ďż˝aďż˝a\u0001Ĺ•Ô•ďż˝\u0002���\u0004\u0018\u000b\u0010��\u000e\u0003ďż˝dd\u0004Oaďż˝b\u001d�ԕ�\u0002���\u000f\n��\u0001\u0013\u000b\u000ed2\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u0006\u0000\n\u0000\u0014\u0000\u0018\u0000\u0000\u0001\u0007\u00177\u0017\u0011!\u0003\u0007\u00177\u0005!2\u0016\u0015\u0011!\u001146\u0005#\u00153\u0002\u001b�ԕ��E\u0003aďż˝bďż˝\u001b\u0004\u0018\u000b\u0010��\u000e\u0003ďż˝dd\u0003��Ԕ�\u0002��\u0015aďż˝aďż˝\u000f\n��\u0001\u0013\u000b\u000ed2\u0000\u0000\u0000\u0002\u0000\u0017��\u0004ďż˝\u0004ďż˝\u0000\u0005\u0000\b\u0000\u0000\u0001\u0011\t\u0001\u0011!\t\u0001\u0015\u0004��%���x\u0004wďż˝`\u0004���\u0001\u0010ďż˝w\u0001ďż˝\u0002��8ďż˝\u0000\u0002\u0000\u0000\u0000d\u0004L\u0004ďż˝\u0000\u0015\u0000\u0019\u0000\u0000\u0001\u0011\u0014\u0006+\u0001\u0011!\u0011#\"&5\u001146;\u0001\u0011!\u00113+\u0001\u00153\u0004L\u001e\u0014��Dďż˝\u0015\u001d\u001d\u0015ďż˝\u0001ďż˝dďż˝dd\u0003���\u0015\u001d\u0001��p\u001d\u0015\u0003ďż˝\u0014\u001e��\u0001,ďż˝\u0000\u0000\u0000\u0003\u0000\u0000\u0000>\u0005\u0014\u0004ďż˝\u0000\u0013\u0000\u0017\u0000\u001d\u0000\u0000\u0001!\u0011#\"&5\u001146;\u0001\u0011!\u00113\u0017\u0015\u0001'\u0003#\u00153\t\u0001'7\u0017\u0001\u0002B���\u0015\u001d\u001d\u0015ďż˝\u0001ďż˝d���x\u0004dd\u0002Xďż˝%ďż˝{x\u0001a\u0001��p\u001d\u0015\u0003ďż˝\u0014\u001e��\u0001,����x\u0002=��2ďż˝$ďż˝{x\u0001`\u0000\u0003\u0000\u0000\u0000\u0006\u0005\u000e\u0004ďż˝\u0000\u0013\u0000\u0017\u0000#\u0000\u0000\u0001!\u0011#\"&5\u001146;\u0001\u0011!\u00113\u0017\u0011\u0007'\u0003#\u00153\u0001'\u0007'7'7\u00177\u0017\u0007\u0017\u0002\u0011���\u0015\u001d\u001d\u0015ďż˝\u0001ďż˝dďż˝gďż˝dd\u0001ÓŞďż˝������\u0001��p\u001d\u0015\u0003ďż˝\u0014\u001e��\u0001,���gďż˝\u0001���\u001e���������\u0000\u0000\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0012\u0000\u0016\u0000\u001d\u0000\u0000\u0001!\u0011#\"&5\u001146;\u0001\u0011!\u00113\u0017\u0011!\u0011#53\u0001#\u0011#\t\u0001#\u0002��\fďż˝\u0015\u001d\u001d\u0015ďż˝\u0001ďż˝d��pdd\u0001,��\u0001,\u0001,ďż˝\u0001��p\u001d\u0015\u0003ďż˝\u0014\u001e��\u0001,���\u0001,�������\u0001,\u0000\u0000\u0003\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0012\u0000\u0016\u0000\u001d\u0000\u0000\u0001!\u0011#\"&5\u001146;\u0001\u0011!\u00113\u0017\u0011/\u0001#53\u00013\t\u00013\u00113\u0002Zďż˝nďż˝\u0015\u001d\u001d\u0015ďż˝\u0001ďż˝d���dd\u0001,�������\u0001��p\u001d\u0015\u0003ďż˝\u0014\u001e��\u0001,��n����|\u0001,����\u0000\u0000\u0003\u0000\u0000\u0000ďż˝\u0004ďż˝\u0004L\u0000\t\u0000\u0013\u0000\u0017\u0000\u0000\u000154&#!\"\u0006\u001d\u0002\u0011\u0014\u00163!265\u0011\u0001!\u0015!\u0004ďż˝\u001d\u0015��\u0015\u001d\u001d\u0015\u0004L\u0015\u001d��\u0001��p\u0003��\u0015\u001d\u001d\u0015ďż˝d��\u0015\u001d\u001d\u0015\u0002&���\u0000\u0000\u0000\u0000\u0006\u0000\u0000\u0000f\u0004ďż˝\u0004ďż˝\u0000\u0006\u0000\n\u0000\u000e\u0000\u0015\u0000\u0019\u0000\u001d\u0000\u0000\u0001!5\t\u00015)\u000153\u00153#53\u0001!\u0015\t\u0001\u0015!;\u0001\u0015#7\u001535\u0001ďż˝\u0001ďż˝\u0001,���pďż˝pdďż˝dd\u0001,ďż˝p��\u0001,\u0001ďż˝dddďż˝d\u0003�����������Dďż˝\u0001*\u0001*�����\u0000\u0002\u0000d\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0016\u0000/\u0000\u0000%\u00114&\u0007\u0005\u000e\u0001\u0015\u0011\u0014\u001e\u0002\u001f\u0001\u0011\u0014\u0016;\u000126\u0001\u0017\u0011\u0007\u0011\u0014\u0006+\u0001\"&5\u0011'\u00117\u0017\u00113\u00117\u0017\u00113\u0011\u0004ďż˝$\u001a��\u0019%\u0015\u001d\u001d\u000b\n\u001d\u0015ďż˝\u0015\u001dďż˝v2d\u001d\u0015ďż˝\u0015\u001dd22d22d2\u0004R\u001f\u0013\u0011u\u0010E\u001f��\u001d5!\u0018\u0006\u0005ďż˝s\u0015\u001d\u001d\u0004ďż˝dďż˝p��A\u0015\u001d\u001d\u0015\u0001��\u0001ďż˝dd��\u0001,dd��\u0001,\u0000\u0000\u0000\u0000\u0001\u0000d\u0000\u0000\u0004ďż˝\u0004L\u00003\u0000\u0000%\u001146?\u00015!\u00152\u0016\u0015\u0011!\u00114635!\u00152\u001e\u0003\u0015\u0011\u0014\u0006\u000f\u0001\u0015!5\"&5\u0011!\u0011\u0014\u0006#\u0015!5\".\u0003\u0004L2\u0019\u0019ďż˝pK\u0019ďż˝\f\u0019Kďż˝p\u0004\u000e\"\u001a\u00162\u0019\u0019\u0001ďż˝K\u0019\u0001ďż˝\u0019K\u0001ďż˝\u0004\u000e\"\u001a\u0016j\u0003x\u0016\u0019\u0001\u000288\f&ďż˝v\u0001ďż˝&\f88\u0001\u0005\t\u0015\u000e��\u0016\u0019\u0001\u000288\f&\u0001��v&\f88\u0001\u0005\t\u0015\u0000\u0000\u0000\u0006\u0000\u0000\u0000\u0000\u0004L\u0004L\u0000\t\u0000\u0019\u0000\u001d\u0000!\u0000%\u0000.\u0000\u0000\u0001'!\u0007!\u0017\u0015%35\u0001\u00114&#!\"\u0006\u0015\u0011\u0014\u00163!26\u0001!\u0015!\u0005%\u0015\u0005%!\u0015)\u0001%\u0011!\u0007!'!7\u0002ďż˝d��d\u0001��\u0001'i��;)��);;)\u0001,);ďż˝p\u0001,��\u0002X\u0001��p��\u0001,��\u0002ďż˝\u0001'ďż˝Wd��d\u0001��\u0003ďż˝ddďż˝bb��D\u0001ďż˝);;)ďż˝\f);;\u0002\u001dďż˝#���bďż˝b��ddďż˝\u0000\u0001\u0000\u0010\u0000\u0010\u0004ďż˝\u0004ďż˝\u0000!\u0000\u0000\u0013\u0007\u0006\u001e\u0003\u0017\u001e\u00033?\u00016&/\u0001&\u0006\u000f\u0001&'&'7>\u0001/\u0001.\u0001��\u0001\u0001\u001f>ďż˝fgŃ—{\u001f\u001fďż˝\u0010\u0006\u0013ďż˝\u00134\u0010wďż˝|~ev\u0011\u0006\u000eďż˝\u000e-\u0004��\u000b+���fgďż˝=!\u0001ďż˝\u0011/\u000eďż˝\u000e\u0004\u0011vg|~ďż˝v\u00111\u0014ďż˝\u0013\u0006\u0000\u0002\u0000\u0000\u0000\u0000\u0004ďż˝\u0004L\u0000\"\u0000@\u0000\u0000\u00015.\u0004#\"\u000e\u0004\u000f\u0001\u0015\u0014\u0016?\u0001>\u0001=\u00016 \u0017\u0015\u0014\u0016\u001f\u0001\u00166\u0005\u0001\u001e\u0001\u001d\u0001\u0014\u0006#!\"&=\u0001467\u000154>\u00032\u001e\u0002\u001f\u0001\u0004ďż˝\u0006\u001ad|ďż˝~\\ďż˝ud?,\t\t\u001d\u0014ďż˝\u0014\u001dďż˝\u0001>ďż˝\u001d\u0014ďż˝\u0014\u001dďż˝p\u0001m\u000e\u0015\u001e\u0014��\u0015\u001d\u0015\u000e\u0001m\u0002\u0016&RpR&\u0016\u0001\u0001\u0002��\b\u0019A1)\u0015!((!\u000b\nďż˝\u0015\u0019\u0004!\u0004\"\u0015ďż˝\u0018\u0018ďż˝\u0015\"\u0004!\u0004\u0019)��\u000e3\u0014ďż˝\u0015\u001d\u001d\u0015ďż˝\u00143\u000e\u0001/2\u0004\r \u0019\u0015\u0014\u001b\u001c\n\n\u0000\u0000\u0000\u0000\u0002\u0000d\u0000\u0000\u0004ďż˝\u0004L\u0000\u0015\u0000\u0019\u0000\u00007!'57\u0011#\u0015#5#\u0015#5#\u0015#5#\u0011\u0017\u0015\u0005\u0015!5ďż˝\u0003ďż˝}dddďż˝dďż˝ddd\u0003���Ȗ�d\u0001��������pd��dd\u0000\u0000\u0000\u0003\u0000d\u0000\u0000\u0004ďż˝\u0004L\u0000\t\u0000\u0013\u0000\u001d\u0000\u0000\u000132\u0016\u0015\u0011!\u001146\u000132\u0016\u0015\u0011!\u001146\u0001\u00114&+\u0001\"\u0006\u0015\u0011\u0002Xd);��;\u0001ďż˝d);��;��;)d);\u0004L;)ďż˝\u0018\u0003ďż˝);��;)ďż˝D\u0002ďż˝);��\u0001ďż˝);;)ďż˝p\u0000\u0000\u0000\u0000\u0005��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u001f\u0000'\u0000+\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u0001\u00113\u0015#\u0015!\u0011#535!#\u0011353\u0011#1\u0011#\u0011\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003�����\u0001,��\u0001,��ddd\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0002X��dd\u0001,ddďż˝\fd\u0001,��\u0001,\u0000\u0000\u0005��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u001f\u0000'\u0000+\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u0001#5#\u0011353\u00153\u0011#!#\u0011353\u0011#1\u0011#\u0011\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003���dddddd\u0001���ddd\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0001���\f��\u0001��\fd\u0001,��\u0001,\u0000\u0000\u0000\u0004��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u001b\u0000#\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u0001\u0011!5#\u0011353\u0011!5#\u001135\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003���\u0001,��d\u0001,��\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0002Xďż˝\fd\u0001,dďż˝\fd\u0001,d\u0000\u0004��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u0016\u0000\u0019\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u0001\r\u00013-\u0001\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003��\f��\u0001,d\u0001,��\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0001đ–––ďż˝\u0000\u0000\u0000\u0005��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u0017\u0000\u001f\u0000'\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u0003\u0011!\u0011\u00133264&+\u0001!#\"\u0006\u0014\u0016;\u0001\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003ďż˝dďż˝Ddďż˝)69&ďż˝\u0001��&96)ďż˝\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0002Xďż˝\f\u0001��pTďż˝VVďż˝T\u0000\u0000\u0000\u0000\u0005��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u001f\u0000%\u0000)\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u0001\u00113\u0015#\u0015!\u0011#535\u00013\u0011#\u00153\u000335#\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003�����\u0001,��\u0001,dďż˝dďż˝dd\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0002X��dd\u0001,ddďż˝\f\u0001ďż˝dďż˝pd\u0000\u0000\u0000\u0000\u0006��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u0019\u0000\u001f\u0000#\u0000'\u0000\u0000\u0001\u0011\u0014\u0006#!\"&5\u0011463!2\u0016\u0007!\u0011!\u00015#\u0011!\u0011\u00013\u0011#\u00153\u0001#53\u001335#\u0004��|ďż˝D|��|\u0002ďż˝|���|\u0003��Dd\u0001,\u0001,dďż˝dďż˝qddďż˝dd\u0003 ďż˝\f|��|\u0001ďż˝|��\u0018ďż˝D\u0001ďż˝dďż˝\f\u0001��p\u0001ďż˝d�����d\u0000\u0000\u0000\u0006��\u0000\u0000\u0004ďż˝\u0004L\u0000\u000f\u0000\u0013\u0000\u001d\u0000#\u0000'\u0000+\u0000\u0000\u0013!2\u0016\u0015\u0011\u0014\u0006#!\"&5\u001146\u0005!\u0011!\u0001#5!\u0011#\u0015#53%#53\u0011#%3\u0015#!#53ďż˝\u0002ďż˝|��|ďż˝D|��\u0003��|\u0003����\u0001,cdc\u0001ďż˝dďż˝d��dd\u0001ďż˝dd\u0004Lďż˝|ďż˝\f|��|\u0001ďż˝|���D\u0001ďż˝d��ddďż˝dďż˝\fddd\u0000\u0000\u0000\u0003\u0000\u0004\u0000\u0004\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0013\u0000\u001d\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0010\u0016 6\u0010\u0007!\u0015!\u0015!'57!\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V����\u0001,��dd\u0001,\u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016�����\u0001VGďż˝ddďż˝d\u0000\u0000\u0004\u0000\u0000\u0000\u0004\u0004ďż˝\u0004ďż˝\u0000\u000b\u0000\u0013\u0000 \u0000$\u0000\u0000\u0000 \u0004\u0012\u0010\u0002\u0004 $\u0002\u0010\u0012\u0004 \u0006\u0010\u0016 6\u0010\u0007\u0015#5#\u00153\u0015#\u0015#\u0011!\u0013#53\u0001ďż˝\u0001D\u0001\u0012�������\u0002_����\u0001V��d���d\u0001,ddd\u0004�������\u0001\u0012\u0001D\u0001\u0012\u0016�����\u0001VGddddd\u0001��pd\u0000\u0000\u0000\u0000\u0002����\u0004ďż˝\u0004A\u0000\u001a\u0000!\u0000\u0000\u000132654&#\"\u0007.\u0001#\"\u0006\u0015\u0014\u0017\u000e\u0001\u0015\u0014\u0016;\u0001\u0011!\u00033\t\u00013\u00113\u0003 ďż˝x��x.,,ďż˝n��\u0002BUqOďż˝\u0001ďż˝d�������\u0001,ďż˝zxďż˝\u000eaw×™\u0019\f\u000ekEPr\u0001,ďż˝p��\u0001,\u0001,\u0000\u0002����\u0004ďż˝\u0004A\u0000\u0018\u0000\u001f\u0000\u0000\t\u0001>\u000154&#\"\u0007.\u0001#\"\u0006\u0015\u0014\u0017\u000e\u0001\u0015\u0014\u0016;\u0001\u0001#\u0011#\t\u0001#\u0002X\u0001ďż˝^yďż˝x.,,ďż˝n��\u0002BUqO\b\u0002\u0002��\u0001,\u0001,ďż˝\u0002��m\u001aďż˝dyďż˝\u000eaw×™\u0019\f\u000ekEPrďż˝p\u0001,\u0001,��\u0000\u0000\u0001\u0000d\u0000\u0000\u0004L\u0004m\u0000\u0010\u0000\u0000%!\u00013\u00013\t\u00013\u00013\u0001!\u0015\u0007!'\u0002ďż˝\u0001����������Ԫ�����\u0001ďż˝K\u0001^Kďż˝\u0001,\u0001,\u0001M�����ԛ--\u0000\u0000\u0000\u0000\u0001\u0000y\u0000\u0000\u00047\u0004ďż˝\u0000)\u0000\u0000%\u0011\u001632654'>\u000154&'.\u0001#\"\u0006\u0015\u0014\u0016\u0015&#\"\u0006\u0015\u0014\u0016\u0017\u0006\u0015\u0014\u0016327\u0011\u0007!\u0002ďż˝.6Ji\t2;{Y\u001aďż˝^tďż˝\u0002\u000e\tJi9/\u0004iJ8,K\u0001^-\u00012\u001eiJ\u0018\u001f f=Zďż˝\u0006Yqďż˝t\u0004\u0010\u0003\u0002iJ5X\u0015\u0010\u0016Ji\u001e��-\u0000\u0000\u0000\u0003\u0000\u0000\u0000d\u0004ďż˝\u0004ďż˝\u0000\u0017\u0000\u001b\u0000%\u0000\u0000\u0001!2\u0016\u0015\u0011!5#\u0015!\u0011463!546;\u00012\u0016\u0015\u000535#\u0001\u0015\u0014\u0006#!\"&=\u0001\u0003 \u0001,);ďż˝\f��\f;)\u0001,;)ďż˝);����\u0002ďż˝;)ďż˝\u0018);\u0003ďż˝;)ďż˝pdd\u0001ďż˝);d);;)ddďż˝Dďż˝);;)ďż˝\u0000\u0000\u0011\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u0011\u0000\u001b\u0000\u001f\u0000#\u0000'\u0000+\u0000/\u00003\u00007\u0000;\u0000?\u0000C\u0000G\u0000K\u0000O\u0000S\u0000W\u0000\u0000\u000154&+\u00015#\u0015!5#\u0015#\"\u0006\u001d\u0002\u0011\u0014\u00163!265\u0011\u00053\u0015#73\u0015#73\u0015#73\u0015#73\u0015#\u00053\u0015#73\u0015#73\u0015#73\u0015#73\u0015#\u00053\u0015#73\u0015#73\u0015#73\u0015#73\u0015#\u0004L\u001d\u0015ďż˝dďż˝\fdďż˝\u0015\u001d\u001d\u0015\u0003ďż˝\u0015\u001dďż˝\u0018ddďż˝ddďż˝ddďż˝ddďż˝dd��ddďż˝ddďż˝ddďż˝ddďż˝dd��ddďż˝ddďż˝ddďż˝ddďż˝dd\u0003��\u0015\u001ddddd\u001d\u0015ďż˝dďż˝\u0012\u0014\u001e\u001e\u0014\u0002��ddddddddddddddddddddddddddddd\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000\u0004ďż˝\u0004ďż˝\u0000\u0018\u0000\u0000\t\u0001\u0016\u0014\u0007\u0006\"/\u0001\u0001\u0011'\u0007\t\u00017'!\u0001'&4762\u0003ďż˝\u0001\u001b\u000f\u000f\u000e*\u000e$������\u0001/��\u0001,\u0001\u000b#\u000f\u000f\u000e*\u0004���\u000f*\u000e\u000f\u000f#��������\u0001|��\u0001\u0017$\u000e*\u000e\u000f\u0000\u0000\u0000\u0000\u0001��\u0000;\u0004ďż˝\u0004ďż˝\u0000O\u0000\u0000%\u0017\u0001>\u0001'.\u0001'&#\"\u0007\u0006\u0007\u0001\u000e\u0001\u0017\u001e\u0001327>\u0002767\u0001>\u0001'&'&#\"\u0006\u0007\u0001\u0007\u0017\u000167632\u0017\u0016\u0007\u0001\u0006#\"&'&>\u0002767\u0001>\u000232\u0017\u001e\u0001\u0007\u0006\u000f\u0001\u0003\u0002\u0006E\u0002\u0005C8\u0011\u0010fOESkZ(Gďż˝\u0000D\u001a0#vF?8!@)'(\u0011\u0001ďż˝#\u0018\u000f\u001bZ\u0014\t.C\"ďż˝|\u0007E\u0001y\u0014\u0013\u0017\u001b&\u000f\u0010$��4I7Z\t\u0005\u000f0$&\u0018\u0014\u0001\\4=k6\u0019\u0017_v\b\u0007[��w<\u0001ďż˝Cďż˝]Wďż˝$!7\u0018Gďż˝\u0000Dďż˝N9@\u001c\u00101*+,\u0011\u0001ďż˝#b/W\u0011\u0002\"\"ďż˝t\u0007C\u0001u\u0016\u0010\u0017$'$��4B?#>@$$\u0015\u0014\u0001\\475\u0004\u0011ďż˝be[��\u0000\u0000\u0000\u0004\u0000\u0000\u0000d\u0004ďż˝\u0004L\u0000\u001d\u0000!\u0000)\u00001\u0000\u0000%\u00114&+\u0001.\u0004+\u0001\"\u000e\u0002\u000f\u0001#\"\u0006\u0015\u0011\u0014\u00163!26\u0003#53\u0006\u0014\u0006\"&462\u00124&\"\u0006\u0014\u00162\u0004ďż˝;)ďż˝\u0004\u000f37S*ďż˝)R:.\u000b\fďż˝);;)\u0003ďż˝);ďż˝dd��Č��\u0006>X>>Xďż˝\u0002X);\b\u001bE5+);;\u0015\u0014;)��);;\u0002\u001ddďż˝Čďż˝Č��X>>X>\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0000\u0004L\u0004ďż˝\u0000\u0019\u0000#\u0000\u0000\u000132\u0016\u0015\u0011\u0014\u0006#!\"&5\u001146;\u00015463!2\u0016\u0015\u0005!54&+\u0001\"\u0006\u0015\u0003ďż˝d);;)ďż˝|);;)dvR\u0001,Rvďż˝\f\u0001,\u001d\u0015ďż˝\u0015\u001d\u0003 ;)��);;)\u0002X);ďż˝RvvRČ–\u0015\u001d\u001d\u0015\u0000\u0000\u0000\u0002\u0000J\u0000\u0000\u0004f\u0004ďż˝\u0000'\u0000/\u0000\u0000\u000132\u0016\u0015\u0014\u0006\u0007\u000e\u0002\"&/\u0001.\u0001546;\u00017\u0013>\u00017'&6;\u00012\u0016\u000f\u0001\u001e\u0001\u0017\u0013\u0000\"'\u001e\u0001267\u0004&\u0011\u0014\u001b\u001a\u0012\u0016R���::\u0012\u001a\u001b\u0014\u0011v?\u000fzS\u0012\u0006\u0012\u0014^\u0014\u0012\u0006\u0012Sz\u000f?��l1\f8F8\u000b\u0001ďż˝\u001d\u0015\u0014(\u0007\t\u001c.)\u0015\u0014\u0007)\u0014\u0015\u001dďż˝\u0001GM~\u0014 \u0013\u001a\u0015\u0013%\u0013M���+\u00061==1\u0000\u0000\u0001\u0000ďż˝\u0000\u0000\u0004L\u0004ďż˝\u0000\n\u0000\u00003\t\u0001\u00114&#!\"\u0006\u0015ďż˝\u0001ďż˝\u0001ďż˝\u001d\u0015��\u0015\u001d\u0001��E\u0004~\u0014\u001e\u001e\u0014\u0000\u0000\u0000\u0001\u0000o\u0000\f\u0004D\u0004ďż˝\u0000H\u0000\u0000\u0001\u001e\u0003\u000e\u0004\u0007\u0006.\u00027\u000e\u0002\u0014\u0017\u001e\u0001\u0017\u0016>\u00037>\u0001'\u001e\u0001\u0007\u000e\u0001\u0007\u000e\u0004\u001e\u0001>\u00017>\u000476\u0002'\u0016\u0017\u0016'&'.\u00027\u000e\u0004\u0001ďż˝\u0002\f\u0004\b\u0001\u0001\u000b\u0010\u001a\u0012&:\u0017\u0007\u000e4?\u000f\u0005\tFF\u001fB:8(\u000f \u000e\u0014OV\u0011\u0005\u001f\u0016\n\t\u000f\u0003\u0003\b\u000e\u0019$\u00189DkC@\u000f&��\u0016\u0015'G\u000f\u0012OS\u00053\r*gJ.\u0002ďż˝\f;\u001b4\u001b(\u0017\u0019\u0010\u0004\n.MV .nhB\u001e8-\u0015\n%>=\u001eBďż˝'Pďż˝d!I,\u0013\u0014 \u000f\u0017\b\u000b\u0001\u0004\u0006\u0014\u001c=CnCďż˝\u0001Sm,Uďż˝\u0005\u0002\u0007!�ٕ\b\u001ffmďż˝\u0000\u0001\u0000\u0000\u0000\u0002\u0004ďż˝\u0004ďż˝\u0000\u0014\u0000\u0000\u00017\u0016\u0007\u0006'\u0001\u0006\"/\u0001&47\u0001&676\u0017\u0005\u0003��\rďż˝{���\u000f+\u000fo\u000f\u000f\u0002X!N`����\u0003\n~ďż˝\\F/��\u0010\u0010n\u000f+\u0010\u0002Weďż˝6\\eďż˝\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0001\u0000A\u0002(��_\u000f<ďż˝\u0000\u001f\u0004ďż˝\u0000\u0000\u0000\u0000����\u0000\u0000\u0000\u0000�����:��\u0005ďż˝\u0005\u0018\u0000\u0000\u0000\b\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0005���\u0000\u0000\u0005\u0018ďż˝:��\u0005ďż˝\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ďż˝\u0001ďż˝\u0000(\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000d\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0002ďż˝\u0000\u0000\u0005\u0018\u0000\u0000\u0002ďż˝\u0000\u0000\u0005\u0018\u0000\u0000\u0001ďż˝\u0000\u0000\u0001F\u0000\u0000\u0000ďż˝\u0000\u0000\u0000ďż˝\u0000\u0000\u0000ďż˝\u0000\u0000\u0001\u0004\u0000\u0000\u0000H\u0000\u0000\u0001\u0004\u0000\u0000\u0001F\u0000\u0000\u0004ďż˝\u0000d\u0004ďż˝\u0000ďż˝\u0004���\u0004ďż˝\u0000\u0000\u0004���\u0001ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u000e\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000d\u0004���\u0004���\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u001d\u0004ďż˝\u0000j\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000d\u0004ďż˝\u0000\u001a\u0004ďż˝\u0000d\u0004ďż˝\u0000\u0001\u0004ďż˝\u0000d\u0004ďż˝\u0000\u0004\u0004���\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0001\u0004ďż˝\u0000\u0004\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0004\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000d\u0004ďż˝\u0000d\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0001\u0004ďż˝\u0000\u0002\u0004ďż˝\u0000d\u0004ďż˝\u0000\u0000\u0004ďż˝\u00005\u0004ďż˝\u0000d\u0004ďż˝\u0000ďż˝\u0004���\u0004ďż˝\u0000!\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004���\u0004ďż˝\u0000\u0001\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000\u0001\u0004ďż˝\u0000u\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0001,\u0004ďż˝\u0000d\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0001\u0010\u0004ďż˝\u0000\u0003\u0004ďż˝\u0000\u0003\u0004ďż˝\u0000\u0003\u0004ďż˝\u0000\u0003\u0004ďż˝\u0000\u0003\u0004ďż˝\u0000\u0003\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0004\u0004ďż˝\u0000\u0004\u0004ďż˝\u0000\u0004\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000ďż˝\u0004ďż˝\u0000h\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\"\u0004ďż˝\u0000\u0017\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004���\u0004���\u0004���\u0004ďż˝\u0000d\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000d\u0004���\u0004ďż˝\u0000F\u0004��:\u0004ďż˝\u0000\u0012\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0001\u0004ďż˝\u0001.\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004���\u0004ďż˝\u0000\u0015\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\b\u0004���\u0004ďż˝\u0000a\u0004ďż˝\u0000\u0001\u0004ďż˝\u0000\u0005\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000\u0005\u0004ďż˝\u0000\u0005\u0004ďż˝\u0000\u0005\u0004ďż˝\u0000\u0000\u0004ďż˝\u0000d\u0000\u0000\u0000\u0000\u0000P\u00009\u0000ďż˝\u0001'\u0000d\u0000\u0002\u0000\u0002\u0000\u0002\u0000\u0002\u0000\u0002\u0000\u0002\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ďż˝\u0000\u0000\u0000\u0000\u0000\u0004\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0017\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000d\u0000d\u0000\u0000\u0000\u0010\u0000\u0000\u0000d\u0000d����������������\u0000\u0004\u0000\u0000����\u0000d\u0000y\u0000\u0000\u0000\u0000\u0000\u0000��\u0000\u0000\u0000\u0000\u0000J\u0000ďż˝\u0000o\u0000\u0000\u0000\u0000\u0000\u0000\u0000*\u0000*\u0000*\u0000*\u0000V\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000p\u0000ďż˝\u0000ďż˝\u0000ďż˝\u0001\u001a\u0001B\u0001J\u0001b\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0002\u001c\u0002N\u0002n\u0002ďż˝\u0003&\u0003ďż˝\u0004f\u0004z\u0004ďż˝\u0004ďż˝\u0005\u001c\u0005^\u0005ďż˝\u0005ďż˝\u0006P\u0006j\u0006ďż˝\u0006ďż˝\u0006ďż˝\u0007\u0006\u0007<\u0007r\u0007ďż˝\u0007ďż˝\u0007ďż˝\b0\bz\bďż˝\t\u0000\t&\tF\t|\tďż˝\n8\n^\nďż˝\nďż˝\nďż˝\u000b.\u000bx\u000bďż˝\u000bďż˝\f\u001a\fv\fďż˝\r.\rďż˝\u000e2\u000eďż˝\u000f\b\u000f.\u000ff\u000fďż˝\u000fďż˝\u000fďż˝\u0010>\u0010ďż˝\u0010ďż˝\u0010ďż˝\u0011\u000e\u00118\u0011N\u0011\\\u0011ďż˝\u0011ďż˝\u0011ďż˝\u0011ďż˝\u0012\u000e\u00120\u0012D\u0012\\\u0012ďż˝\u0012ďż˝\u0012ďż˝\u0013\n\u0013b\u0013ďż˝\u0013ďż˝\u0014\u001a\u0014P\u0014ďż˝\u0014ďż˝\u0014ďż˝\u0014ďż˝\u0014ďż˝\u0014ďż˝\u0015\u001c\u0015>\u0015x\u0015ďż˝\u0016&\u0016ďż˝\u0016ďż˝\u0017$\u0017f\u0017ďż˝\u0017ďż˝\u0018\u0000\u0018\u0014\u0018(\u0018P\u0018ďż˝\u0018ďż˝\u0018ďż˝\u0018ďż˝\u0019\n\u0019B\u0019ďż˝\u0019ďż˝\u001a\u0004\u001aL\u001aďż˝\u001b\n\u001bd\u001bďż˝\u001bďż˝\u001c\u0018\u001cD\u001cr\u001dX\u001dďż˝\u001dďż˝\u001e\u0002\u001ex\u001eďż˝\u001f\u001c\u001fN\u001fďż˝ \u0016 4 l ďż˝ ďż˝ ďż˝!$!R!ďż˝!ďż˝!ďż˝\"0\"^\"ďż˝\"ďż˝#\b#@#j#ďż˝#ďż˝#ďż˝$\u001c$6$`$ďż˝$ďż˝%\b%<%f%ďż˝%ďż˝&2&ďż˝&ďż˝'\u001c'D'x'ďż˝(\u0000(:(l(ďż˝(ďż˝)6)|)ďż˝)ďż˝*.*d*ďż˝*ďż˝+\u0002+ďż˝+ďż˝,2,|,ďż˝,ďż˝-\u0016-ďż˝-ďż˝\u0000\u0001\u0000\u0000\u0000ďż˝\u0000ďż˝\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0001\u0000\u0000\u0000@\u0000.\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000f\u0000ďż˝\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0013\u0000\u0012\u0000\u0000\u0000\u0003\u0000\u0001\u0004\t\u0000\u0000\u0000j\u0000\u0012\u0000\u0003\u0000\u0001\u0004\t\u0000\u0001\u0000(\u0000|\u0000\u0003\u0000\u0001\u0004\t\u0000\u0002\u0000\u000e\u0000ďż˝\u0000\u0003\u0000\u0001\u0004\t\u0000\u0003\u0000L\u0000ďż˝\u0000\u0003\u0000\u0001\u0004\t\u0000\u0004\u00008\u0000ďż˝\u0000\u0003\u0000\u0001\u0004\t\u0000\u0005\u0000x\u00016\u0000\u0003\u0000\u0001\u0004\t\u0000\u0006\u00006\u0001ďż˝\u0000\u0003\u0000\u0001\u0004\t\u0000\b\u0000\u0016\u0001ďż˝\u0000\u0003\u0000\u0001\u0004\t\u0000\t\u0000\u0016\u0001ďż˝\u0000\u0003\u0000\u0001\u0004\t\u0000\u000b\u0000$\u0002\u0010\u0000\u0003\u0000\u0001\u0004\t\u0000\f\u0000$\u00024\u0000\u0003\u0000\u0001\u0004\t\u0000\u0013\u0000$\u0002X\u0000\u0003\u0000\u0001\u0004\t\u0000ďż˝\u0000\u0016\u0002|\u0000\u0003\u0000\u0001\u0004\t\u0000ďż˝\u00000\u0002ďż˝www.glyphicons.com\u0000C\u0000o\u0000p\u0000y\u0000r\u0000i\u0000g\u0000h\u0000t\u0000 \u0000ďż˝\u0000 \u00002\u00000\u00001\u00003\u0000 \u0000b\u0000y\u0000 \u0000J\u0000a\u0000n\u0000 \u0000K\u0000o\u0000v\u0000a\u0000r\u0000i\u0000k\u0000.\u0000 \u0000A\u0000l\u0000l\u0000 \u0000r\u0000i\u0000g\u0000h\u0000t\u0000s\u0000 \u0000r\u0000e\u0000s\u0000e\u0000r\u0000v\u0000e\u0000d\u0000.\u0000G\u0000L\u0000Y\u0000P\u0000H\u0000I\u0000C\u0000O\u0000N\u0000S\u0000 \u0000H\u0000a\u0000l\u0000f\u0000l\u0000i\u0000n\u0000g\u0000s\u0000R\u0000e\u0000g\u0000u\u0000l\u0000a\u0000r\u00001\u0000.\u00000\u00000\u00001\u0000;\u0000U\u0000K\u0000W\u0000N\u0000;\u0000G\u0000L\u0000Y\u0000P\u0000H\u0000I\u0000C\u0000O\u0000N\u0000S\u0000H\u0000a\u0000l\u0000f\u0000l\u0000i\u0000n\u0000g\u0000s\u0000-\u0000R\u0000e\u0000g\u0000u\u0000l\u0000a\u0000r\u0000G\u0000L\u0000Y\u0000P\u0000H\u0000I\u0000C\u0000O\u0000N\u0000S\u0000 \u0000H\u0000a\u0000l\u0000f\u0000l\u0000i\u0000n\u0000g\u0000s\u0000 \u0000R\u0000e\u0000g\u0000u\u0000l\u0000a\u0000r\u0000V\u0000e\u0000r\u0000s\u0000i\u0000o\u0000n\u0000 \u00001\u0000.\u00000\u00000\u00001\u0000;\u0000P\u0000S\u0000 \u00000\u00000\u00001\u0000.\u00000\u00000\u00001\u0000;\u0000h\u0000o\u0000t\u0000c\u0000o\u0000n\u0000v\u0000 \u00001\u0000.\u00000\u0000.\u00007\u00000\u0000;\u0000m\u0000a\u0000k\u0000e\u0000o\u0000t\u0000f\u0000.\u0000l\u0000i\u0000b\u00002\u0000.\u00005\u0000.\u00005\u00008\u00003\u00002\u00009\u0000G\u0000L\u0000Y\u0000P\u0000H\u0000I\u0000C\u0000O\u0000N\u0000S\u0000H\u0000a\u0000l\u0000f\u0000l\u0000i\u0000n\u0000g\u0000s\u0000-\u0000R\u0000e\u0000g\u0000u\u0000l\u0000a\u0000r\u0000J\u0000a\u0000n\u0000 \u0000K\u0000o\u0000v\u0000a\u0000r\u0000i\u0000k\u0000J\u0000a\u0000n\u0000 \u0000K\u0000o\u0000v\u0000a\u0000r\u0000i\u0000k\u0000w\u0000w\u0000w\u0000.\u0000g\u0000l\u0000y\u0000p\u0000h\u0000i\u0000c\u0000o\u0000n\u0000s\u0000.\u0000c\u0000o\u0000m\u0000w\u0000w\u0000w\u0000.\u0000g\u0000l\u0000y\u0000p\u0000h\u0000i\u0000c\u0000o\u0000n\u0000s\u0000.\u0000c\u0000o\u0000m\u0000w\u0000w\u0000w\u0000.\u0000g\u0000l\u0000y\u0000p\u0000h\u0000i\u0000c\u0000o\u0000n\u0000s\u0000.\u0000c\u0000o\u0000m\u0000W\u0000e\u0000b\u0000f\u0000o\u0000n\u0000t\u0000 \u00001\u0000.\u00000\u0000M\u0000o\u0000n\u0000 \u0000J\u0000u\u0000l\u0000 \u0000 \u00001\u0000 \u00000\u00005\u0000:\u00002\u00006\u0000:\u00000\u00000\u0000 \u00002\u00000\u00001\u00003\u0000\u0002\u0000\u0000\u0000\u0000\u0000\u0000��\u00002\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000ďż˝\u0000\u0000\u0001\u0002\u0001\u0003\u0000\u0003\u0000\r\u0000\u000e\u0001\u0004\u0001\u0005\u0001\u0006\u0001\u0007\u0001\b\u0001\t\u0001\n\u0001\u000b\u0001\f\u0001\r\u0001\u000e\u0001\u000f\u0001\u0010\u0001\u0011\u0001\u0012\u0000ďż˝\u0001\u0013\u0001\u0014\u0001\u0015\u0001\u0016\u0001\u0017\u0001\u0018\u0001\u0019\u0001\u001a\u0001\u001b\u0001\u001c\u0001\u001d\u0001\u001e\u0001\u001f\u0001 \u0001!\u0001\"\u0001#\u0001$\u0001%\u0001&\u0001'\u0001(\u0001)\u0001*\u0001+\u0001,\u0001-\u0001.\u0001/\u00010\u00011\u00012\u00013\u00014\u00015\u00016\u00017\u00018\u00019\u0001:\u0001;\u0001<\u0001=\u0001>\u0001?\u0001@\u0001A\u0001B\u0001C\u0001D\u0001E\u0001F\u0001G\u0001H\u0001I\u0001J\u0001K\u0001L\u0001M\u0001N\u0001O\u0001P\u0001Q\u0001R\u0001S\u0001T\u0001U\u0001V\u0001W\u0001X\u0001Y\u0001Z\u0001[\u0001\\\u0001]\u0001^\u0001_\u0001`\u0001a\u0001b\u0001c\u0001d\u0001e\u0001f\u0001g\u0001h\u0001i\u0001j\u0001k\u0001l\u0001m\u0001n\u0001o\u0001p\u0001q\u0001r\u0001s\u0001t\u0001u\u0001v\u0001w\u0001x\u0001y\u0001z\u0001{\u0001|\u0001}\u0001~\u0001\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0001ďż˝\u0006glyph1\u0006glyph2\u0007uni00A0\u0007uni2000\u0007uni2001\u0007uni2002\u0007uni2003\u0007uni2004\u0007uni2005\u0007uni2006\u0007uni2007\u0007uni2008\u0007uni2009\u0007uni200A\u0007uni202F\u0007uni205F\u0004Euro\u0007uni2601\u0007uni2709\u0007uni270F\u0007uniE000\u0007uniE001\u0007uniE002\u0007uniE003\u0007uniE005\u0007uniE006\u0007uniE007\u0007uniE008\u0007uniE009\u0007uniE010\u0007uniE011\u0007uniE012\u0007uniE013\u0007uniE014\u0007uniE015\u0007uniE016\u0007uniE017\u0007uniE018\u0007uniE019\u0007uniE020\u0007uniE021\u0007uniE022\u0007uniE023\u0007uniE024\u0007uniE025\u0007uniE026\u0007uniE027\u0007uniE028\u0007uniE029\u0007uniE030\u0007uniE031\u0007uniE032\u0007uniE034\u0007uniE035\u0007uniE036\u0007uniE037\u0007uniE038\u0007uniE039\u0007uniE040\u0007uniE041\u0007uniE042\u0007uniE043\u0007uniE045\u0007uniE047\u0007uniE048\u0007uniE049\u0007uniE050\u0007uniE051\u0007uniE052\u0007uniE053\u0007uniE054\u0007uniE055\u0007uniE056\u0007uniE057\u0007uniE058\u0007uniE059\u0007uniE060\u0007uniE062\u0007uniE063\u0007uniE064\u0007uniE065\u0007uniE066\u0007uniE067\u0007uniE068\u0007uniE069\u0007uniE070\u0007uniE071\u0007uniE072\u0007uniE073\u0007uniE074\u0007uniE075\u0007uniE076\u0007uniE077\u0007uniE078\u0007uniE079\u0007uniE080\u0007uniE081\u0007uniE082\u0007uniE083\u0007uniE084\u0007uniE085\u0007uniE086\u0007uniE087\u0007uniE088\u0007uniE089\u0007uniE090\u0007uniE091\u0007uniE092\u0007uniE093\u0007uniE094\u0007uniE095\u0007uniE096\u0007uniE097\u0007uniE101\u0007uniE102\u0007uniE103\u0007uniE105\u0007uniE106\u0007uniE107\u0007uniE108\u0007uniE110\u0007uniE111\u0007uniE112\u0007uniE113\u0007uniE114\u0007uniE115\u0007uniE116\u0007uniE117\u0007uniE118\u0007uniE119\u0007uniE120\u0007uniE121\u0007uniE122\u0007uniE124\u0007uniE125\u0007uniE126\u0007uniE127\u0007uniE128\u0007uniE129\u0007uniE130\u0007uniE131\u0007uniE132\u0007uniE133\u0007uniE134\u0007uniE135\u0007uniE137\u0007uniE138\u0007uniE140\u0007uniE141\u0007uniE143\u0007uniE144\u0007uniE145\u0007uniE148\u0007uniE149\u0007uniE150\u0007uniE151\u0007uniE152\u0007uniE153\u0007uniE154\u0007uniE155\u0007uniE156\u0007uniE157\u0007uniE158\u0007uniE159\u0007uniE160\u0007uniE161\u0007uniE162\u0007uniE163\u0007uniE164\u0007uniE165\u0007uniE166\u0007uniE167\u0007uniE168\u0007uniE169\u0007uniE170\u0007uniE171\u0007uniE172\u0007uniE173\u0007uniE174\u0007uniE175\u0007uniE176\u0007uniE177\u0007uniE178\u0007uniE179\u0007uniE180\u0007uniE181\u0007uniE182\u0007uniE183\u0007uniE184\u0007uniE185\u0007uniE186\u0007uniE187\u0007uniE188\u0007uniE189\u0007uniE190\u0007uniE191\u0007uniE192\u0007uniE193\u0007uniE194\u0007uniE195\u0007uniE197\u0007uniE198\u0007uniE199\u0007uniE200\u0006u1F4BC\u0006u1F4C5\u0006u1F4CC\u0006u1F4CE\u0006u1F4F7\u0006u1F512\u0006u1F514\u0006u1F516\u0006u1F525\u0006u1F527\u0000\u0000\u0000\u0000\u0001Qďż˝K(\u0000\u0000","glyphicons-halflings-regular.woff":"wOFF\u0000\u0001\u0000\u0000\u0000\u0000@@\u0000\u000f\u0000\u0000\u0000\u0000sH\u0000\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000FFTM\u0000\u0000\u0001X\u0000\u0000\u0000\u001c\u0000\u0000\u0000\u001ch+ďż˝\rGDEF\u0000\u0000\u0001t\u0000\u0000\u0000\u001e\u0000\u0000\u0000 \u0001\b\u0000\u0004OS/2\u0000\u0000\u0001ďż˝\u0000\u0000\u0000F\u0000\u0000\u0000`i\u001elďż˝cmap\u0000\u0000\u0001ďż˝\u0000\u0000\u0002~\u0000\u0000\u0005.ďż˝/Vďż˝cvt \u0000\u0000\u0004\\\u0000\u0000\u0000\u0004\u0000\u0000\u0000\u0004\u0000(\u0002ďż˝gasp\u0000\u0000\u0004`\u0000\u0000\u0000\b\u0000\u0000\u0000\b��\u0000\u0003glyf\u0000\u0000\u0004h\u0000\u00003ďż˝\u0000\u0000[X\u0001��\u0016head\u0000\u00008,\u0000\u0000\u00004\u0000\u0000\u00006\u00008=ďż˝hhea\u0000\u00008`\u0000\u0000\u0000\u001f\u0000\u0000\u0000$\nďż˝\u0004xhmtx\u0000\u00008ďż˝\u0000\u0000\u0001\u0013\u0000\u0000\u0002��\u000e\u0012ploca\u0000\u00009ďż˝\u0000\u0000\u0001ďż˝\u0000\u0000\u0001����@maxp\u0000\u0000;@\u0000\u0000\u0000 \u0000\u0000\u0000 \u0001.\u0000ďż˝name\u0000\u0000;`\u0000\u0000\u0001ďż˝\u0000\u0000\u0003|Ԗ��post\u0000\u0000<ďż˝\u0000\u0000\u0003R\u0000\u0000\byďż˝cQwwebf\u0000\u0000@8\u0000\u0000\u0000\u0006\u0000\u0000\u0000\u0006K)Qďż˝\u0000\u0000\u0000\u0001\u0000\u0000\u0000\u0000ďż˝=��\u0000\u0000\u0000\u0000��\u0017ďż˝\u0000\u0000\u0000\u0000����xďż˝c`d``ďż˝\u0003b\t\u0006\u0010`b`\u0004ďż˝[@ďż˝\u0002ďż˝1\u0000\u0000\rďż˝\u0001\r\u0000\u0000xďż˝c`fid��������t���!\nB3.a0bďż˝\u0001ďż˝\u0003ďż˝\u0010ďż˝\tďż˝\u001dďż˝\u001d�������?k��/\f2ďż˝S\u0018x�ŒHJ\u0014\u0018\u0018\u0001Aďż˝\u000bďż˝\u0000\u0000x�͓?LSQ\u0018�ϣ-PB���tďż˝{ďż˝ \u00150ďż˝\u0010ďż˝0\u0018K*ďż˝N��\u0011\\hďż˝A\u00194\fj����`\u001cX\u00101\u001aYMďż˝t�Ѹ����\u0000ďż˝\u0007NNďż˝h����n]ďż˝\\L|ɯ��n��;}ďż˝+ďż˝\u0018ďż˝\b9J���\u001e\u0002&Dďż˝p5\bďż˝#��h0��qďż˝xM\u000b,:ďż˝bďż˝l�����d[��g\u001a$\"qII��Ƞ�eX\n2!E����˒Fďż˝VS��v��\u0001\u001dďż˝a-���hIďż˝uQ��P.ďż˝\u000e\u0016\u001dďż˝\u0019{v��$!V��Wrďż˝yDƸ���ʜ,hďż˝1M��V�֬�4��:ďż˝E��9]ďż˝%ďż˝sy��^������Ǜ\u00177\"ďż˝Mk���6e[l���j\u001b3e���4ďż˝fďż˝|3_ďż˝\u0017ďż˝a��+ć’ą`ďż˝Mďż˝Lďż˝qsÖś1'M���1ďż˝5��^���Oďż˝zďż˝Quďż˝rďż˝\u0017>\u0019ďż˝{_\u001d�ӽ(ďż˝R���\u0015ďż˝/��]\u001e$ďż˝I\u000f�ӫ\u001e4\u0002��\u0007M@[ďż˝A3��{pďż˝n���C(qďż˝OŃś\u001dqďż˝9H'\b×ďż˝YB��LI7ďż˝a��{ďż˝ 3ďż˝\u001cďż˝3\u001f��=์�\u0002ďż˝\tzďż˝L0���\u0007��)2ďż˝|��LJ��\u001c=G����\u000bd��2��Mďż˝:_��Ykďż˝y������ivVvďż˝\r����7iďż˝W�칟fďż˝\u0000ďż˝m��u��\u000e����ߥG��ďż˝fuďż˝\u001f�쮮�C���u~D����Oiwďż˝E��4��2ďż˝K`\u000b\u001epÚľ?\t\u0001���B����\u0010ďż˝\u001dďż˝*\u0004xO��\u0000\u001f\u0010ďż˝Hďż˝\u0000\u001f��\u0010ďż˝\u0013ďż˝\u001c\u0002|ďż˝\u000fďż˝\u0000kt&\u0004X�����gÔ*7ďż˝{ďż˝5ďż˝c��h\f��Qďż˝w��o��\rďż˝\u0014ďż˝H\u0000\u0000\u0000(\u0002ďż˝\u0000\u0000\u0000\u0001��\u0000\u0002xÚµ|\t`TŐąďż˝=w��Y2���m&���L\u0002ďż˝\u0004f23@Hďż˝a\u0013\bďż˝\u0016Q\u0011pD\u0001��\u001a@\u0010\u0015qmďż˝ \u0005ďż˝`��\n\u0005ďż˝HQďż˝`_��^Ô¶jďż˝U�����V���k+d.���;ďż˝L\u0016���{���9ďż˝;���wη�˰L%Ă[ďż˝2ďż˝cD&ďż˝\u001caďż˝G\u001c\u0015yďż˝|ďż˝9���#ďż˝r,\\2ďż˝qďż˝X��GE\u0003ďż˝\u001cq����Cq\u0004b\u000e%\u0019����_���\u000f*��\u0019¤�\u0014��712ďż˝Vd1��;ďż˝PRďż˝+����9����MZ��M/���҄�\\\u0012ďż˝\\����cďż˝\u001fďż˝\u0003ďż˝kF����\u0000ďż˝E��ZH\u001b\tĂŻ-{��P\\\u0004���a&����X����\f��_\u001e���?\u0019ďż˝Iďż˝!ďż˝LĢ�G��DX��\u0015\u0015Q1H\nWďż˝u\u0018\u0007\u000f\u001b\u0015��\u0013ďż˝bďż˝K\u0017,���U\u0015��wS+ďż˝3��\u0002\u0013ďż˝<ďż˝iďż˝\b����\t��aďż˝\u001b\\dmJďż˝0ďż˝\u001d�„;\u001a\u0007ÚŠ\u0006ω\u001fZrďż˝7\"\u0007W����}s7ďż˝t��d��Bwxn}*ďż˝\u0000ďż˝T��7ďż˝Ç��O|Sďż˝:n#{\\ďż˝`��OIďż˝?ďż˝_ďż˝x\u0018ĆĄD\u0013ńš ż\\ďż˝\u0010ďż˝Arďż˝V\"ďż˝=Gďż˝OV\u001f8ďż˝:\u0012\u000e?���ﰍ�V����V?k]���;\u000b-ÖĄc���dďż˝_ďż˝o\u0007ڱ���1��\u001a\t\u0010 \u001f\u0011ďż˝J��/Me���\u001d|�֑\"m���6ďż˝oJďż˝f��mNďż˝'ďż˝\u0014ďż˝Ue\u0018��gďż˝?ďż˝_ďż˝_bďż˝\u0000ďż˝\u000e����j\u0012,ďż˝\u0011#\t\u0011.\u0010ďż˝'Ý���Va��\u0015���N?��I���\\ďż˝\u001f����_Đąďż˝>�����k\\���dÇąďż˝o\u0007ďż˝L@��o\u001cďż˝\"{��;? aďż˝\u0002\u0018ZRďż˝\u0014\u001bd��3X���\u0001_\u001ca���\u0011\u0014ďż˝D��d=ďż˝;j��\u0000t��2��s#'L��t<2eďż˝\fďż˝)m7Y����)W5sϤ�a��V&ďż˝U���$��dďż˝^ďż˝\\��\u0014GA���UE��\u0001ďż˝<��|ďż˝c���N��\u00143��xďż˝6b(\u000f\u0011ďż˝) G\u0019#ďż˝\u0019��,a\u000fďż˝q[IX\u0014������Uďż˝Uďż˝\u000fďż˝\u0004X����\u0013�����'\u0004h\r��D��'ďż˝eďż˝\u001f��ģ����P��o3ďż˝\u001fďż˝\u0014B��Y\u001f+���\u0018��5pCďż˝G\u0006ďż˝]}gsbԚ�����m\\3j��U��pϏ��\u001f4ďż˝u��5��st֬��ܻf���\u0019���@Z����qďż˝v����\u0000T����⊹\u0014����ڽچǴu䷏���w:],kďż˝\u001aďż˝K;O��\u0014��Jďż˝\bďż˝@7\f7ďż˝g.ďż˝Pďż˝\u001f\u0012����\u0007ďż˝6{��\u001fM��_?\u001dďż˝c��>������~���_ďż˝n#9|ďż˝\u0002>\u00006 ��`\u001dďż˝ID=^ďż˝6ďż˝%ďż˝Yďż˝\u0016hhďż˝g{C`Ë–-�����u������\u0014ďż˝8}���mfďż˝\u0006pd\u0018ďż˝R�τ��L5\u0013C~Q\u001cďż˝_ďż˝\u0005`���,ďż˝u��\u000fďż˝Iďż˝gŘ®\nďż˝w<��m���uďż˝\u0014���������\u000f��K��&`[ďż˝E��?ďż˝\tg.ďż˝\u001c��7\u001bďż˝Xďż˝4 vďż˝Oďż˝<\b���)Q����Kďż˝/x%ďż˝Eďż˝z%ďż˝&y��ܻ��+��E�׹Ͻ�mW(\u0000ÔŤ}���������l��Hnďż˝@��_-\u0001L�����~ďż˝+��=\u001cH[�ם\u001f���ዲWďż˝\u001eďż˝kďż˝'ďż˝\fc���\\��Kqďż˝\r���\u0001ďż˝\u0004ďż˝\r0�ۺ������ifďż˝V�˗�vďż˝\r:��K\u0012Rďż˝8#Yďż˝fy\\���\u0018W$Aďż˝\nďż˝Z���bďż˝?n#qďż˝lV���f��D\\ďż˝U$\\Uďż˝Be��X[ďż˝\u001e\r7:Wďż˝?��f���Vsďż˝dKU��Vaaďż˝\u0007U#FTďż˝H\u001d���s\u0015ďż˝\u000b\u0012ďż˝\u001eďż˝\u0019\f�����ᑊ�aLďż˝6ďż˝\u001aďż˝NAy`�ٍ\f\u001dSďż˝\u0018��7���jŐąB\u0011nďż˝fďż˝f5w\u001eF\u001cďż˝o��\u000ehďż˝z��כ�(���x��\u000fń‡€Ż\\ďż˝{1e����e\u0015����\u0019%ďż˝$\u0005xďż˝\u00052ďż˝8���>ŃŽk����ޠ\u001d��32ďż˝3m!���\u000fuďż˝\u0010'��|��\u001f\u0004%\u001bt��\f#ďż˝\u0001Wʿ��)$������}����\u001fÉ‘7����ɑ��h��bďż˝+*ďż˝$\f��\u0005Pďż˝;�Ϻ���A2\u0011��b\u0004ďż˝\u0016T>ďż˝_��U\u0012V���]Gďż˝tYI\u00174\u000b`\t\u0014ďż˝>\u0003ďż˝Aďż˝<\u0002\u0010dďż˝\u0007Oďż˝>V��5����f\u0000\u001c#ďż˝_xďż˝\r7�ɜXV;���d槚����\u001d*��\bOďż˝}ďż˝\u0017\u001f@�����[ďż˝?}E?\u0018ďż˝~ďż˝\u0015\t��\u001d�ؕ��m���#-��2\u000e���eYďż˝(\\LVďż˝1ďż˝+ďż˝\u0019\u0001\u000eďż˝`ďż˝r\u000f��.Pďż˝$\u001cUďż˝\u0005dD-����R������]b\n���Yďż˝Dďż˝qE���~ďż˝\u000fďż˝\u0007ďż˝Fďż˝\u000e>{ďż˝l��Ȯ�%ďż˝\u0015nCYĐŽ\u0016��8ďż˝ \u001aďż˝n\u001f\u000bďż˝,ďż˝sďż˝Eďż˝\u001bďż˝ >��1Ҷ��S��\u0012ďż˝Tďż˝\u0019VJXSďż˝aďż˝]��pďż˝k7Caďż˝\u0019\u0005�� \u001aďż˝~0(��$Řďż˝\u0006&ďż˝1\u0018y��E\u0007{|[ďż˝Cďż˝]Ük��'������ʶM��\u001c6{ďż˝V��[�\u0019���\f����\u0019\u0017p(\u0007ďż˝*ďż˝l\u0014��#��������Bďż˝\u0018ďż˝jďż˝R-ďż˝Bzďż˝\u0017]ďż˝2\u000fďż˝cďż˝F\u0015���Üďż˝>P=���cb(/\u001cV\u0012ďż˝\f�����z���^ďż˝vcďż˝Cwďż˝uďż˝xh���K\u0000\u0003\u0004��HŰۖ����1,�Б�<ďż˝X��c:\u001dďż˝/��\u0001��\u000b$\u0013\u0013H��%ďż˝\f lďż˝\u0004\u001c`ďż˝u��~a��fďż˝!ďż˝]%�� h@ďż˝G\u0014ďż˝\u000f��~xďż˝h�ȼ�_~iG\u001e\u001b\u0000ᢒ6l��\u0003���nďż˝vďż˝s|\f\u0012��\n\u0013`\u00061��=ďż˝\u0002]`\"�ЌK\u0001ďż˝\reN,ďż˝P$Xďż˝\u001c\n(q @ďż˝\bďż˝|��\nhv`\u001d��Lʨxďż˝8ďż˝ \u0005ďż˝]\u0019ďż˝a\rďż˝\u0013~ďż˝_Shďż˝i\u0016`%ďż˝T\\ďż˝;ďż˝Q��cc\u001dÚ“ďż˝\u0014-��Rďż˝\u0012k����\u0003n,ďż˝/\"ww`5\u0012��T��bďż˝`\bHgpdSz�❊Ej����h��G��wďż˝fďż˝'��Aďż˝\u001c0������\u001fďż˝\u00059iSU<ďż˝\bb���|{g\u0001w.ďż˝wďż˝X*e����yďż˝dďż˝\u0017ŃŞ7ďż˝T&s��Pďż˝\\4ďż˝eO\u0014ďż˝;ďż˝1ďż˝Fďż˝9���f���B\n��\u001bďż˝M;������\u0000=\u0000ďż˝\u0013ޣ��QFgďż˝Qďż˝>Fra>ďż˝0aV���iďż˝(9\u0001��V���C\u0016��\nďż˝=\u0016��sďż˝!]k\u0018ďż˝ \u000eѡ���$��TÚ™b?ďż˝\\w\u0004���Υ:\u000bxr��Y\u0013P\u001e˸�\u0011.B@ďż˝\u0018DNV\u0002\u000eďż˝\u0011`\u001aďż˝<�졒���\u0013T����cďż˝&��dgďż˝Uďż˝SI-2ďż˝\n\u0003ďż˝Z\u0015dͦ�~��\rďż˝.\u0013ďż˝`rqud.Nv��u7ďż˝Gďż˝*{\\Uďż˝m_7Yďż˝&<���S<���lďż˝>:���\u0017ďż˝-`\u0003}a��\u0012ďż˝Qďż˝\u000f%ďż˝\u0017ďż˝Mwuwďż˝\u0011ďż˝\u001eďż˝\u0011Ep\b\u0016f��fďż˝\u0015ďż˝d\u001fÍ´yďż˝X\u0006��/����A_\u0002r7ďż˝\u0012��\u0013���/)Gďż˝0���\u0002ďż˝uďż˝Ig\u0001ďż˝qďż˝$ďż˝\n7\u001fĐ›2(\n{ďż˝K���o���\u000bďż˝)����s_rďż˝/���\u0012������a����W,����\u0012��0ďż˝Zk��]_Rďż˝~A��Nuďż˝E��NuU��Nuďż˝\u0006������ގ^x������+��\u0016ďż˝y����Iďż˝Fďż˝\fďż˝@M-ďż˝\u000f}ďż˝/Ë»}&8\u0001z\u000e��^I\u000e���Q���!��pyWďż˝\u001fďż˝\u0005zďż˝\u0000f83ďż˝Z���>���Qďż˝\u001aďż˝,|���\n\b\twďż˝Jďż˝|nďż˝B}ďż˝\u0017ܾ΂ӧ�a��G\u001dďż˝Q\u0018*@��z���uďż˝?��|bj���\u0015&ďż˝\u0001u\u0019A����/Woďż˝*zH��\u000bďż˝D���u��Kďż˝\u0000���^����Ktďż˝^�����c���Rďż˝t{ďż˝\u001dtx\u001b��\u001b0���piďż˝Y\u001a\u000e�����\u001a}ďż˝{2ďż˝Jďż˝<\nďż˝tďż˝nuwďż˝@MÔźPďż˝\u0017\u001aďż˝QI!D\\\fzďż˝j\u0012��\u0015ďż˝.ďż˝w\u0016\u00159ďż˝fW!(Sďż˝ \u0003&������-ďż˝'��eďż˝\u0016,ďż˝.ďż˝qB����wďż˝zďż˝\u0003\u0012��É��.Ć—ďż˝/��\u000f]!Q\u001fqS%'‡�q0ďż˝\\ďż˝DM\u0010cďż˝\u001eďż˝y��kƏ���a��\u001b��}`Ăš7ďż˝,}���w<���o_���Fc����L���u��/=\u0006��,}���Y\u001f���CB\u001cďż˝\u0006���cďż˝4ďż˝_���\u001bďż˝y=7\u001bďż˝v*��dx��P��3��$�۴��\"l(ďż˝h 4ďż˝)ďż˝\u0003��Sďż˝Lj\bL^�Ĕ�?ďż˝w���o\u001f#z\"&\u001bk4^��Y��V���Һ��;\u001f\u001cs��T-o����y����';ďż˝\u0018<\u0013*ďż˝o��-ďż˝1m��Eٱ9��\u0002���\u0004ďż˝\u000b\u0000��Kďż˝\u0019 ^\u0016\u0015ݣ��XGďż˝$\t\u0011~ďż˝\n��\u0015ďż˝?������>ďż˝6Y^ďż˝\u0003ďż˝4��ȅ�Zmďż˝7����R��\u0015ďż˝JVhw��V\tďż˝#Cďż˝\u000fjďż˝P���{f��^ďż˝-eďż˝~���\u001f%LDďż˝Wtsďż˝l\u0010�ݭ�A��ʭ�XĎ•\u0012���yďż˝}`��lďż˝sďż˝-ďż˝N���Qďż˝G\r3ďż˝n��\u0006����gqďż˝Z֜��~2�Կ�Z�بe��5.#!L\u0017>ďż˝\u0000\u001f/ZC=����\u0006ďż˝/��\u0012\u001e1���t\u0017)����\u001efďż˝}'���\\\u0016ďż˝1\u0012ďż˝|D���a\u001a��}Ř+\u0011ďż˝K10]ďż˝\u0004Ý…ďż˝\u0011#ďż˝qďż˝mT�����Aďż˝\u0003���~���S��Sp]yJ�٨�����s7B_��RH/\u0007��\u0000��%G\u000e\\ ��\tY��+i\u0013ɟ���4ďż˝\u0003`ďż˝\u0003ďż˝Aďż˝\\ďż˝\u0005\ta\u0015���\u0015Rďż˝\u000fg`\u001a(Lc\u0006Dďż˝5ďż˝F\u0011�����\u0007��a1����\b,ďż˝t\fďż˝JeRďż˝Fďż˝N��\u0012ďż˝\u0015ďż˝}��N��\u001d��/W\u0010ziďż˝`ďż˝Sďż˝\u0014ďż˝?g����Wďż˝`ďż˝\u0002�Ӭ2ďż˝?$���yI.@��w|\u0013ďż˝\rďż˝\u0016���%1$h��$��&ďż˝\u0017e)ďż˝tFďż˝ziďż˝T=&/PBg���yďż˝\u000b�����>ďż˝}��$���0����(\u001c���,ďż˝+�ʉ#��\f\u000eD=���3ďż˝oďż˝P����vdďż˝#.��\u0019����\u000e��%i~����Sdďż˝_���_ďż˝\u0002ďż˝8ďż˝8ďż˝/��O��@-L��\u001cďż˝Eďż˝%#\u000b���Ǝ�H$S��\u0007g+\u000b+\u0018ďż˝?ďż˝?K��\u001e\u001eXAďż˝I\u0003ďż˝\u0006%,u������kǵ�{��i*����~��\u001a���jO���p]���\u000bďż˝#ls\u001fXďż˝\u0011\u001a\u001fďż˝\"~.Y��r2ďż˝\f����fn��֦Momďż˝c_��dďż˝:6mfz����\u0006,MH�޽�gďż˝aďż˝&���\u0005ďż˝pďż˝aďż˝#���.���&@��\t9V������\u0019X\u000b$jďż˝0ďż˝2�� Zy\u0019׫�D\u0017���Kďż˝CF\u000f)^ďż˝`\u001bo\u0013\r��\u001ay+��\\��3~~3ďż˝9\u0003��/Cďż˝B���L_\rmďż˝\u001c\u000e��w7ďż˝\u0010{f\u0003ďż˝\u001aڤ��Z6hďż˝n\"!ďż˝]ďż˝1��T��{kÓ®\u0004\u0015���GPďż˝cďż˝\u0016������kwďż˝o\u000eďż˝\u000bďż˝_ďż˝\u000b���ߝp�������tďż˝)ďż˝'\u0012q{ďż˝nďż˝M8Ţ—B)��ďż˝\u0019D�޵h�� ďż˝j���6b\u0010ďż˝\u0012��\u0006z���\u0012ďż˝zďż˝c����Wďż˝r��9ďż˝Qďż˝\"g�Ʋ���P���< >Q��:��eoCg8ďż˝*��W\u0004k��M���+w:��qjel�������{WMďż˝&|��$������=ďż˝hďż˝8jе3ďż˝.\u001dďż˝xq���6Wďż˝*�̜?��z���s*1Z��^k��]W{���\u000fďż˝\u0019^8ďż˝\u001aďż˝\u0016ďż˝5~ďż˝A���yCďż˝o��\u001b��`~\u0005ďż˝C_\u0018ďż˝K;ďż˝e\u0011f(Fďż˝@\u0019\u0007ďż˝ig0N\n��Eďż˝N\u0006CIXďż˝\t���ȉ\u001dj\u0000f\nqďż˝j��\u0016�����!SW_��\u001b\u0011 ďż˝(\u0012\u0003soďż˝6>ďż˝\u0019T]>ďż˝UM\u0016\f\f��/���\u0004ďż˝nďż˝.��\u0004tďż˝Zďż˝\rďż˝a sďż˝t��k�ںz�؜�_iďż˝Yďż˝pQďż˝V[0\u001al(\u0018��3��Ė�n��Mďż˝}˱?ďż˝Yr\u001c:S=ďż˝dz1\u001dďż˝oďż˝^��\u000fďż˝:ďż˝D��\u000fzl\bďż˝\u0014��\u0013\u0000ďż˝C1ďż˝~��T\u000bďż˝@��^ďż˝\u001eďż˝N���9���#/���} \nÇ•ďż˝e�����eďż˝1��Wďż˝Aďż˝B\n\r\u0010��H$:���R>��b(��\u001eďż˝jďż˝\u0017\rďż˝4&\u001d\u0002='���������6Oďż˝CŰ™*rďż˝{��(��t\u0014xldi��fďż˝gďż˝\u000fďż˝Cďż˝Uďż˝|�����zFJv���Fďż˝4ďż˝s-\u0011?��Cďż˝\u0010+\u0019Cfďż˝77ďż˝S��\u0013V��\u0019\u0013c�� ďż˝!ďż˝Xďż˝Hďż˝B2ďż˝Hďż˝\u0000W~ďż˝K1���~ďż˝ �����lK\u000f��<ďż˝r���oďż˝o��)ďż˝,ďż˝_eďż˝O��u�����W���������LL��5�ï�F)ďż˝\u001c\u001ayďż˝C�����7��~0\tďż˝Pďż˝UlsUm66Bďż˝50\u000e7Hďż˝\tT.��/���#���=��To\b��\u0011=ȇ��$l(\bM���\u001f?yÓ¤Pďż˝\u0001n\u001dďż˝Bďż˝@mU��\fďż˝\u0011,,ďż˝+���\u0003��_ďż˝bj,6uŒ��\u0007ďż˝\u0017Wďż˝]Wh6ďż˝K���Hďż˝#ďż˝\"4{�����[�����Lďż˝\u0007��Q���d��>dGďż˝_��,��\u001dËśďż˝_��Ln�����l�ﵧ�=\u001fďż˝aG}ďż˝*��\u0018\u0003\u0019Τ�V��y4�ơ�dďż˝\u001by?��\u000fw�����Sd \u0019��Oďż˝\u0018~�����\u000fH\u001b۬j-ďż˝\u001fI1\bďż˝b폀;JCl\u0017hďż˝\u001f\u0000:Eu[\u0006-\u0019��\u000e$t\rďż˝Tďż˝gďż˝=\u001a%I0OB\\0����/�����i6��,ďż˝\u000e@��\u0000o��������\u0006\t)ďż˝f-��\r\nďż˝|;ďż˝u6���(ďż˝\u0014ŐŹ>��U\u0007xďż˝o\n���\u000e)G\u0017l��ڀf\u0019��I\t�����z\nTz4ďż˝7;��iNjďż˝\u0007zďż˝Sx\u000f޵`漋sd_U$ďż˝(ä´šyUO��4��1Tďż˝\\\u0003\u0000R4+��\b0ďż˝\u0006=?\u001e#>Fďż˝J%ďż˝S��\u00002��)ďż˝mďż˝\u0015(c��}\u0004Pďż˝\u001a��\rďż˝~\\Aç‚‚^\u0005\u001a��5I�ɓ�J��o����8S��Nďż˝.ďż˝Wďż˝\u0018f\u0017%ďż˝WzHďż˝pďż˝{\\\u0001�Х_ďż˝\u0013��\u0000���Ll���\u0013\u001a$ďż˝+Rďż˝Uzďż˝\u0017M\nďż˝yGďż˝weďż˝&ďż˝3!��\u000e��%3ďż˝Ę\u0018���f\u0000ďż˝~���������\"ďż˝J@?ďż˝~��8Qďż˝8��h 1\u0002ďż˝\b{��n|p��\u0007��nďż˝*ďż˝=��\u0016]\u001fďż˝`\u001d��Yďż˝O\u001dÍ©\t\u0000Kďż˝\u0012ďż˝\tďż˝dďż˝\u0001���%e���ꩢH}ďż˝\u0003X���\u0000ďż˝(ďż˝z+Yb5;,ˬ�Y$2k鲙K7��6���Lďż˝uxďż˝\u0004ďż˝7\u0014ďż˝^ďż˝;ďż˝v-IĚĽďż˝\u0013yďż˝\u0015Lďż˝fc\u0007��g\rďż˝\u0016��i]��6Y{ďż˝\u0013ڛ��;\u0002��5ďż˝5dďż˝T���^BXNďż˝,y��\u0017gt��.^��7��6\u001bďż˝0ďż˝\u0019\u0001}\u0010|�������\u000eďż˝$dEďż˝\u0012:Gďż˝\\Dďż˝0\u0000z����R��\u0000��7d��R\u000eďż˝i\u0007lņ���\\~+��l]ďż˝o7_��$\u0010\u0001\u00106ďż˝fďż˝U��5H`ďż˝vďż˝=\u000b��Գ|~Č‘ďż˝4���\u0012ďż˝1�����ۥ�\u0015ďż˝o}ďż˝l3\u001b94ďż˝I�ʭ={\r��y\u001dqďż˝Y��I���Iďż˝��\r\u0005��wďż˝\b\u0005A3F��EW��pIďż˝\u0003Jďż˝\b\fďż˝'ďż˝9<ďż˝Pďż˝\u000b\fďż˝T)iďż˝Bďż˝kl\u0001k��N1a�����\u0019?����Po<\u001aE��^z����nďż˝,�͙\u0016���Sďż˝m7ďż˝Jďż˝i$3f?��׻�Y\bQQďż˝~ďż˝^lŘ ďż˝Aďż˝(ďż˝]4q��\u0002ďż˝*\u0005��:G\u0002ďż˝\u001e ��a��\u0014ďż˝\u0012���\u001e`\u0012ďż˝\u0010ďż˝TI\u0001ďż˝\u0019��Zďż˝FB.ďż˝\fďż˝\u0014\u001b2ďż˝]ďż˝7?ďż˝\u0019�����Ӓ\u001f��!��&Ă’zďż˝]\u0019ďż˝r�����\u0019��?����y\u0016���F^ďż˝i;J=���\u0019ďż˝p���\u0000��\u0006C��\u0015���!ďż˝Y��q���fďż˝\u0019\f݉�sďż˝ cďż˝X\u0002ďż˝f-[\\ďż˝\\���`O^���_���\u001b��w']��cďż˝r��\u001e����bďż˝]���Asďż˝>Aďż˝d@��:\b��t���ơ.��\u0006ďż˝f\u0014ggďż˝[Y(\u0000\\ďż˝\u0018ďż˝Ö��\u001f������N?��9qďż˝d\u000e����0G*\u0006H��p��~^Eďż˝uďż˝P1G���\u0012ďż˝.]����B'xXďż˝\u000b\u0018u5=���%Ý°\u001ffv��.��lďż˝\u001db`.eďż˝nďż˝\u0018ďż˝\u0011Pďż˝|lďż˝c���J��Yďż˝Tďż˝\u000fw\b\u001aBďż˝\u0004ďż˝\u0012ďż˝Dďż˝u2ďż˝f����P��$ďż˝bďż˝$:Č’\u0011.ďż˝\b!ďż˝AÍAt\u0003`x\u0004��'Zß—V��\u0006\u0016����lR=Çą\b7Dďż˝+6ďż˝\u0013�� ďż˝`��~ďż˝7/ďż˝\r\u0018d ¢Uďż˝r?g��[ďż˝:ďż˝ue\u0011{��\u0013C\u0015��\u0015\u0016ďż˝.��`7T\u0016\u001b,ďż˝V���\u0003ďż˝`\u0012\u000b<\u0006{^ďż˝S6���\r\u0016��4i1\u001b\"ďż˝mďż˝2��\u0018ďż˝%\u0015\u0016��39�ξ\u0004ďż˝gq\u001aL\u0004ďż˝$ďż˝lfY,_!+ďż˝Jďż˝c\u000bďż˝.��˫���\tďż˝q` ďż˝,ďż˝JoE})臢�LX��/��l~\u001eďż˝\t:���\u0012��@ďż˝hr\u0005ďż˝*\u001d/ďż˝\u0003Mďż˝\u0001ďż˝B���\u0019ďż˝rH*\u0013��|Nďż˝+ďż˝\u001e\u000bwďż˝sHďż˝g\rďż˝%ďż˝R!ďż˝,���{]��X\u001e��\\Cďż˝\u0005��G+飩�\u0001�ϳT���;`:\u0017ďż˝xďż˝.�ޏ�iďż˝Cďż˝zďż˝zĹ›l>zFďż˝7����`\u001e\u0019��Y\u0010ďż˝6j{ARďż˝k��\rďż˝2Gďż˝Bߊ\u001bďż˝^\u0004\u0014\rďż˝\u0001V\u0013uďż˝QoKR\u0016ďż˝\u000e\u0005����U������p��/ďż˝Q7�͙��z1��[��Koďż˝\u0017Gďż˝<\\/��\u001f�����̥ ďż˝\u001a��+e5\u0007Pďż˝Rďż˝%$�ƭ߇ĬQďż˝H&2Uďż˝5\u0015ďż˝-����+8\u0002ďż˝oy��\u0019vďż˝S~\u0015ďż˝#ďż˝\rďż˝\u001d\u0019G\u001aďż˝\u0002\u0019���Pďż˝\u0014Xďż˝`\u0015rh\u0015&\tďż˝t\u001b\u0012e\u0002,\u0001g(!��Zďż˝A\u001e��\rďż˝H�ןl��xďż˝\r#ďż˝?66vďż˝+R�ظ�\".���b\u0015o���pďż˝\u0017ďż˝;#qďż˝�����F��#o��Qďż˝\u0006\\ďż˝\u001b?ďż˝W\u0004|��78\u0007\rM6^?Oďż˝\u0011��=\u0016\u000eďż˝\u0019/ďż˝$\u001d��F��\u001b��Y����\u0011ďż˝v\u001fx\"5\\���m��wf��ͮKqß—ďż˝\u0011ďż˝/\u0012ďż˝:ǡ��lzďż˝Vďż˝E\u0000��\u0018'ďż˝5ďż˝cďż˝a�Ӽj\u0019\u0013\u0007\rďż˝x��z1XJ\u001d!ďż˝\u0019ďż˝P\u000f0r\u001c��,���?ďż˝\\Ms\rYďż˝\bďż˝/\u0017ďż˝\u0017ďż˝M��ǰ\u0017ďż˝:e=\r�ٍ��3ďż˝1���k\u0011��\u0004ďż˝6ďż˝0Z5%4@~3\u001aďż˝-\u0017$\r��aq\u0018\u0007[*ďż˝{��m2rŐ\u0016Ů���\u0002��^\u0004��U9mi��$l���zďż˝\bn��.\u0006J^��^!ďż˝n\u000b{ďż˝;��S\\_\f\u0012����N^E��k��k���^ďż˝|,ďż˝W{ďż˝S��d�ދ�?Jďż˝@b���_ďż˝mďż˝\f4���হ\bEďż˝c\u0017����\u0018q(q��6l\u0007ďż˝!\u0003\u0004ďż˝\u0017jZďż˝\u001c\u001b5ďż˝,ďż˝K���oďż˝\u001dďż˝poďż˝Oďż˝\f\u0010\u0019%b((*\tg2Q\r+),��\bďż˝{L\u0001ďż˝.ďż˝m��|��fďż˝+\u0000ďż˝Oďż˝l^��nďż˝_����a2yHdďż˝ \u0018Ybg[]\u000e'Ë“#\u0016ďż˝)ďż˝&�����%��\tn��ŋ�?\u0005��.��1���t\rďż˝>qeYzY�����X\u001dOďż˝VOďż˝C��E�ջhďż˝>ݠ��g��\u0002��a��‰99I��\u0014ďż˝sS����Ú�Ȃ���ѻ�#��uBJo�������So����_Y���0ďż˝59�´�aďż˝8ޚ��V���Jďż˝\u0015w>:��\\ďż˝gďż˝\u0015���J,Ďťsďż˝:���\\4��O\u0014���#ďż˝\u0001ďż˝^\"':\u0013|��~é•;��bďż˝'#p���f��\u0013�ٚ�^\u0011&ps.P\u001aďż˝\ri����90uďż˝:ďż˝\u0014��\u001fďż˝{��&ÜąB��z����|B\u001bďż˝cW.D���ܥ�}|��4\u0007 ß…#G��Qďż˝c,ďż˝\u0002ďż˝D��I\u000fďż˝;\u0017t, 'ďż˝wl��=Ţą=\u00076?eAďż˝B/\u0014���aďż˝\u0007���94��Ǵ\u0013\u0007���\u0014z��\u0018!��p\u0000L+ďż˝%ďż˝\u000bďż˝;ďż˝\u0006\\ďż˝I���\\��\u001b(���\u0012��\fC\u0013���\u0012ß®\u0005ďż˝W�����|�ȥ�Į�\"{���COy:Eq���\u000b���;����;ďż˝\u0006\u0012Ü­ďż˝sďż˝Hďż˝Ţ�ڋ(ďż˝\u0001ďż˝s��1uKOUwďż˝hďż˝[ďż˝���\u000b����qďż˝\u001eďż˝d��8ďż˝V\u0017JĘ„mďż˝\u001eďż˝\u0006ďż˝}���{ďż˝\u0002\u0017Ö®&\u000b`ďż˝s���ίfďż˝T-ďż˝U`ďż˝|Ú–Aďż˝f���ӖCďż˝m���s��:ďż˝\u0017ďż˝[���=ďż˝\u0011ďż˝:p���_ďż˝F��n>@\u001eS;}��{ďż˝s��~\"����\u0013\t\u0019Ç­[����Yr��Bďż˝j�Β�\rvd6qďż˝qďż˝��jďż˝\u00152ďż˝\u0014;W[��NfK\u0018ݔ֧���+��nďż˝=��yĆ°ďż˝\u001a)5ďż˝wbďż˝]\u0002��qη�&ďż˝_:ďż˝Gďż˝iďż˝;Rďż˝34ďż˝\u0013�沾�E\u0000ďż˝pF\u0007���A\u000f0\u0000XEďż˝>ďż˝!ďż˝z����‡�J\u0017p!@o\u0011*tTďż˝kŃ—g�Ӎ;��\u0007U5=Z\u000f��D1ďż˝kOďż˝\u0007ďż˝\u0013ďż˝!ďż˝i��cKI6ďż˝\u0010\u0018ďż˝+ďż˝.��|ďż˝\n\u000e|{E��qa\u0000ďż˝7ďż˝h\"\"n��\u0017ďż˝h����K]ďż˝;ďż˝cJ��޸R`\u0010�ۡ6ďż˝\r��W��h��ďż˝Jďż˝\u0013�ꔉ�2]{Őšďż˝q\u0014ďż˝DRv����ǡ\u0004Ö·~\u0001^tw<ďż˝\u0006��M��Bďż˝ebďż˝f)���Đ\tY­�\u0014\u0012vďż˝PKPk%ďż˝\u0006-Cďż˝\u0012ďż˝(Y;\u001fďż˝>&ďż˝j���LÖżďż˝Dďż˝:��\u0012#\u001e!ETd)\u0000cďż˝[ďż˝@OM@\u0012\u0002ďż˝TE\u0002��.ďż˝$٧S\u0018ďż˝hSIhqz?��\u000e*� \u0011��]ďż˝4ďż˝\u0002ďż˝S\u0005ďż˝/��>'S\u001fďż˝o�…0~9ďż˝\tďż˝Uďż˝\u000f<��Bu��6\u0014\u0003�쌝�\u0006ďż˝\u0014Fďż˝\\ďż˝\u0001ďż˝G\u001f\u0017k \tL\u0006\u0001b\u0005��\u0006ďż˝\rďż˝D�������\u0016����kKK��\u001b\\?v��WmY���V���\u0015ďż˝ ~ďż˝^��Gďż˝t,���:��uT[\u001f���֛׭���\u0018ďż˝>ďż˝2��\u0010˙���\u0011ďż˝_nďż˝m��\fďż˝\nXG\u0012e2\\ďż˝\u0012OBČ„ÓłNďż˝$���(2\u001aďż˝n(Jďż˝;���gďż˝L5��F��\u0015ďż˝w\u0013��D/ďż˝0ˬ�ύ\u0013H��eďż˝'8ďż˝ezďż˝C\b��yďż˝W\r����Jďż˝lRďż˝B^�˥�\n\n\u001e��ᲰJ{ďż˝\u001asÓť\u0005\u001dî•TG���Bďż˝]\\b2u}c��O���\u0012��f\u0012����Cďż˝\u0004`ďż˝#ďż˝\u000bwďż˝2ďż˝t)n��cꎋ��Qďż˝\t��.^ďż˝|{ \u000bϨ����Vďż˝is���zďż˝\u001aÄ€:���9ďż˝\u0006uďż˝aďż˝]����*\fďż˝Vďż˝btďż˝\u000e;͡\u0011ďż˝{\u000bďż˝=\tďż˝7\u0017Ňż^ďż˝g_ďż˝B\u001c4g\u0010�Ը�w���\u001a\u0002ďż˝\f�޾.=\u001aďż˝F����U��p���������a9ďż˝\u0000ďż˝\u0002@ďż˝9kCďż˝A\u0016ďż˝g꿎\u0007ďż˝2ďż˝k���%x��w����\u0007\u000fxďż˝_0@ݦ\u000b\r���G1ďż˝jďż˝RC��Ȝ��\u0002ďż˝?\u001e��\u00006��?Ő«MOV\u0017��f>ďż˝\r\"���~R��}���\u000b;ďż˝_ďż˝qďż˝)��mďż˝\u0003ďż˝r��Q5ďż˝(ďż˝N���O����Ԇ�İ�\u0006raCpXďż˝jCďż˝Dďż˝7s���\u001bf��k\u0001ĚŤďż˝2^ďż˝x>�����\u000b9\r��Ͼ�ըi��rďż˝\u0007\u001e��o/��\t����@]\u0002��\u0001ďż˝@]\u0002w��������\u0018ďż˝'F0A\bďż˝(}��f�–�A���)ďż˝+t9ďż˝\u0005��\u0003������(d��vďż˝Lďż˝Rďż˝\u0010z:R��PG\u0010(����\u0011Ru|:��xK&砇���B\u000e+ďż˝!\tW6劖��ٝ�\u0018\u0011���3.��&��y~��2���m�����Qďż˝I:ďż˝X��;��\\ďż˝;u��3KBďż˝\u0017�˟^ďż˝Mďż˝)YD��\u0011�󫒨�q��Ǖ���\u0003ďż˝Sާ^%]�����.ďż˝)��V��eďż˝zďż˝o[Y���l���gSy,ďż˝Q[ďż˝Wďż˝eEďż˝Skz4���\u001f���=Mďż˝2ĚŞ\t(DWP\tj{ďż˝=ďż˝Ç\u0000ďż˝\u001eďż˝?@��?\u0005��̛H��Iďż˝wďż˝`× Aďż˝\u000eďż˝\u0006`%ďż˝]8_\u0003\u000e=ďż˝8Dďż˝\u000fePďż˝HzXďż˝#ďż˝!\u0016M:Dďż˝=\u001eILXl�֮��hŰĽ;ďż˝f��\t��U��'\f\rCSďż˝HÔ·xBAi٢���\u001bďż˝Y��\u001d��c\u0017Oďż˝7KvĎ„ďż˝>ďż˝\u0017ďż˝2z��\u0017\"gvt��\u001afďż˝92_dďż˝{o\u0004tVv}ďż˝\rLaT��eďż˝:Qm��\"\u0010ďż˝\bďż˝\u0007��s(\u0000ďż˝\u000fďż˝j3ďż˝\\Jďż˝ViN\u0011Cďż˝\u000e趢���\u0011ďż˝=��1�����\u0003qďż˝\u0012��g?\u0013���Wďż˝a\nďż˝\u000e��;ďż˝;I:\u000br>\u0019ďż˝\u001fY�����U��N-\u0003'ďż˝\u0003����/���~kďż˝@ďż˝vďż˝h(ďż˝&\u0018g3ďż˝dH!ďż˝`M2\u0011ďż˝\u001e$ďż˝6ďż˝u��Bďż˝s���FR��7ďż˝mďż˝~|ďż˝S;k\u001b`����k\u001doďż˝R{��{���\u0015Pďż˝F���;L-ďż˝\u0003hc\n��`\u001a`ďż˝\u0002'ďż˝A���\u0001\u0003ŐłIPďż˝0yďż˝Fďż˝D��I棴\"~ďż˝\r\u001eg��Wz|DÄŚ\u0006ďż˝0ďż˝\u0015F\ruďż˝\u0017M\u00193c���q\u001a3ďż˝h��ulďż˝PedU��A\u001eďż˝\u0017؊纍�Q��:q\fYďż˝v��A��\"ďż˝^���\\ďż˝`\u001b\\\u0011,p��j��&\nďż˝\u001bZ��k;Ó«F�ˣ�]?��\n%Yďż˝@4y��\u0012��\u0001\u0003ďż˝\braďż˝\u001c\u0007[^��!ďż˝\"wzďż˝rE\bďż˝56��GVTH\b,\u0019ďż˝\u001dďż˝\u0016ďż˝t���{|{\u0016uďż˝*ďż˝?��ϊ����� rďż˝Xďż˝ 6d��:iďż˝\b?\tR[���Œ3\u0006ďż˝UÓ‡GĚ–\u001dȺ���\u0000ďż˝nS��TC}s}}���ryďż˝cďż˝\u0003����\u0003N���B\tuÚ´\u000fďż˝R=����B���zʠ���yIP2ďż˝y%P\u0002h\fx\u001dďż˝?��Ixz+\b9ďż˝+ďż˝\\Yďż˝-���Nom��RVďż˝mM���2ďż˝yUďż˝i\u000b7Ë°ďż˝4���褫\u001eďż˝-H��\rďż˝}�Ŕ�|ďż˝%=>ďż˝p\u0017\u00179=��\u0017ďż˝6|�����hm��5ďż˝ip����8ďż˝.[����C,Cďż˝\u000e5��6wďż˝h,ďż˝TIn��-yďż˝%ďż˝&ďż˝w���$Wďż˝uďż˝$���@Ă��!��������r���Tr���w����\u0018~=ďż˝%:Wnc,ďż˝hďż˝O4��㬼h��I+����\u001e=ďż˝\u001c8ӊ��>ďż˝k���\u0004\u001b��\u001e\fďż˝BM���\u0016>ďż˝\u0010���\u0019\u001c.�֚\u0006ďż˝`\u001c;��q��J[��=eďż˝C(���6�˳\u0016V\u0014\f\u001bďż˝tďż˝H[����Hďż˝q6��\u0019B,��\u0013\"ďż˝g�����J��Λ\"ďż˝fďż˝E����\u001bzďż˝ ďż˝\u0014���5ďż˝\u000fMÝźRƇ]ďż˝2��g&��]R7j��CdƲ���\u0004VT\u001e|w{^��e��\u001a��Gďż˝\u0007��0ďż˝\u0011\r!��\u0000L}\u0012ďż˝9(\u000bܱK��Zďż˝!}ďż˝6ďż˝v���6+��k���L��\\7ďż˝:}ďż˝n_n\u001bhg��t:qďż˝Mďż˝2��\u0003ďż˝\u0016��xďż˝c`d```dpdŇ11���+ďż˝<ďż˝\u0006ďż˝\b��o�����V����eďż˝\u0000r9\u0018ďż˝@ďż˝\u0000��\u000eďż˝xďż˝c`d``���\u000b���o��2ďż˝]\u0006ďż˝\b\nďż˝\u0001\u0000��\u00070\u0000xďż˝c�������\u0001\t���L=\f\fďż˝\u0012\bďż˝q\u0013\u0010ďż˝100܄��@>\u000b���� 9��\u0013,\u001bďż˝����3ďż˝\u0017��|@,\u000eQďż˝\u0007\u0004��\rò@ďż˝\u0005U+��� \u0005ďż˝\u0019ďż˝4\u000bĐŚ9P=ďż˝\u0010>�͂�/\u0005ďż˝=0}LHjL���\u0015H+b��6T/Ll\nďż˝_ďż˝Eďż˝\t(ďż˝\u0001eďż˝@\u0012\u0003bF\u001d��;ďż˝l\u0001 ÍŚ\u0003��Ƃ�W\u0010>\u0003ďż˝\u0019H|%��an=\f����\u0002\u0014\u000f���\u001b��\u0002ďż˝Bďż˝0aďż˝C��(ďż˝>\u000eďż˝X\"�ϬPqV8>\u00021ďż˝\u0001\u0004\u0002\u0018,\u0019N0ďż˝\u0003yL(\u0010\u0001nďż˝I\u0016$\u0011q\u0006Tďż˝\u00026K\u0000��?\u0007\u0015ďż˝t����\u0013Pďż˝\u0012��?ďż˝D/ďż˝\u0013\fďż˝\f\f\u0000t\f��\u0000xďż˝c``Đ‚ďż˝0ďż˝\u0002��\u0000ďż˝9ďż˝/ďż˝Rďż˝Nďż˝^ďż˝I��\u0018/0ďż˝bďż˝aďż˝cďż˝c:Ƭ���%���e\u000eďż˝\u0003V\u0019ďż˝8ďż˝\u0006ďż˝_l\u0001lYl=l\u0007؞���۰\u0017��b?���À��c\u0011'\u0003ďż˝\u001aďż˝\u001bg\rďż˝\u000f.\u000bďż˝8ďż˝I\\kďż˝>pďż˝qWp/ďż˝~ďż˝#ďż˝Sďż˝sďż˝W���Ďo\u001e?\u0007ďż˝\u001e\u001aďż˝\fďż˝\u0003ďż˝\u0004ďż˝\u0004ďż˝\u0004\u000e\bďż˝\u0011ďż˝\u0013ďż˝\u0010ďż˝\u0013ďż˝\u0011ďż˝\u0011\\!ďż˝O��\u0010�����Pďż˝P��\u001aďż˝{ďż˝\\ďż˝Iďż˝S���Hďż˝\u0004ďż˝t��\u0013ďż˝\"rB���\u000fQ\u0019Q;ďż˝\nďż˝kbjb=b_ďż˝U���g���`ďż˝\u0010ďż˝Đ\b��%ďż˝C���'I.I'ďż˝\tďż˝{ďż˝Xďż˝|��IsIďż˝H��~##!ďż˝\"S$\u001b!ďż˝I��\u001cďż˝\\��1y\u0019y?ďż˝u\nb\n&\n9\nK\u0014ďż˝(|STQ\fRlSܧ�Mďż˝@)Ni��\u0019e\u000ee\u0007ďż˝,ďż˝)ďż˝{�ߨȨ��$ďż˝LS��ʡj���:Gń…š‘Z��\u001eu\u0019u\u0017ďż˝\nďż˝=\u001a\f\u001aV\u001a9\u001aďż˝4>iďż˝iďż˝hn�������եuBďż˝Iďż˝A{���N��&��bďż˝Mďż˝k\u0000cďż˝yi\u0000\u0000\u0000\u0000\u0001\u0000\u0000\u0000ďż˝\u0000ďż˝\u0000\u0011\u0000\u0000\u0000\u0000\u0000\u0002\u0000\u0000\u0000\u0001\u0000\u0001\u0000\u0000\u0000@\u0000.\u0000\u0000\u0000\u0000xڭ��Nďż˝@\u0014ďż˝O\u000b\u001aďż˝Fďż˝$��p�Ʀ� �ʸ\u0010��h\u0014]\nBďż˝\u0014Jl���\u0014>ďż˝\u001b7.\\ďż˝\u0004ďż˝\u001e>ďż˝\u000b��aDďż˝,��ff��=�̝[\u0000��\u0019\u001aďż˝/ďż˝\u0005ďż˝\u0011hďż˝\u0018ďż˝K���a\t��u��^q\u0004ďż˝xR\u001cE\u0016\u001fďż˝'pďż˝e\u0014O\"ďż˝=*ďż˝BB{S\u001c#ďż˝+�Ƣ>ďż˝x���8N>U����Uďż˝+,ďż˝.\fCďż˝v{��S�ھYďż˝ZŘ„ďż˝\u000ez��\u0003\u001b\r\u00040�����$VH\u0015ďż˝5Pďż˝9ďż˝\\w��\t��\rďż˝|ďż˝!\u0007_ďż˝j\\k\\��/�����PB\u0001ďż˝<ďż˝\u0000ďż˝8��@/\u0017u\u000e��6s\u000e��qÍ8%ďż˝LKÖ’ďż˝1O/3/?�������o+0Fďż˝Nďż˝=|��d\u000fďż˝k*I���;Ú 2@Uę»\f\u0013k��hѵIO��3*N���&ďż˝rd��\u0014r���/5>\u001a��d�˯�aݎ��gTP��4eVYaďż˝\"\u001a\fz��zZ��\u001b2.���:{��,z:ďż˝?~\u0002ďż˝mďż˝{xďż˝m�Ւ�U\u0000Eďż˝^IHďż˝\u0004ww���ҍ'C\u000f��N\u0012\bI\b\f\u0010,����[pww��!x\u0004 ďż˝k���]]ďż˝gďż˝3U_Mk\\k����V����_ďż˝\u0016ďż˝\u0018ďż˝\u001aߚܚ�\u0004\u0016c\"ďż˝Xďż˝%X��X��La\u0019ďż˝e9ďż˝o��\n��J��*��j��\u001a��Z��:��z��\u0006lďż˝Flďż˝&lďż˝flďż˝\u0016lďż˝Vlďż˝6ďż˝\t\u0005\u001dJ*j\u001a��ؖ�؞\u001dؑ�ؙ�Lcďż˝]ďż˝3̮����������þ���\u001c��\u001c��\u001c¡\u001c��\u001c��\u001c��\u001cñ\u001c�������ɜ�tf0ďż˝S9ďż˝Y��lďż˝0ďż˝3�Ǚ��\bgs\u000eďż˝2��8ďż˝\u000b���X��\\ÂĄ\\��\\��\\��\\õ\\���������­����������ý���<��<��<ÂŁ<��<��<��<Ăł<�������˼«���,ďż˝\r��-��\u001d��=��\u0003>ďż˝#>ďż˝\u0013>ďż˝3>ďż˝\u000b��+��\u001b��;��\u0007~ďż˝'~ďż˝\u0017~ďż˝7~ďż˝\u000f��8}���32ďż˝b���������-ďż˝í±Ť[ďż˝\u001dďż˝t+ďż˝v\u001b���ܩ�-ďż˝\u0007[\rO��̛3�����\u001f7��\u001fďż˝}Dďż˝Gďż˝}Dďż˝G�����}/ďż˝{y����؉�؉����؋�؋��^a��Wďż˝+ďż˝\u0015ďż˝\n{���^aďż˝cďż˝cďż˝cďż˝cďż˝cďż˝cďż˝cďż˝cďż˝c��Sďż˝)픾��Sz��|������+ďż˝W��|Oe��=���^e��W۩��vj;���Nm����i|Wc����kďż˝5ďż˝\u001a{���^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^ďż˝^oЋ����;����\u001e�����:������:�����dďż˝3ďż˝;���:������9z�����9z����]������9:���ߔ��qʱ�{ďż˝~���7��~���7��~���7ďż˝=\u001dG��qt\u001c\u001dG��qt\u001c\u001dG��qt\u001c\u001dG��qt\u001c\u001dG��qt\u001c\u001dG��qt\u001c\u001dG��qt\u001c\u001dG��qt\u001c\u001dGďż˝\u0019�۳�\u001bt��o?q$�崡�\u0019ďż˝\u0006����\f7��J1ďż˝r0��\u0014ďż˝`ďż˝\u0001\nďż˝-|\u0000\u0000\u0000\u0001Qďż˝K(\u0000\u0000"} diff --git a/customize.html b/customize.html index da8d9d4c42..44a748caf2 100644 --- a/customize.html +++ b/customize.html @@ -347,18 +347,51 @@ base_url: "../"

      Basics

      -

      Body background

      + +

      Color system

      -
      - - -

      Background color applied to <body>.

      +
      + + + + + + +
      +
      + + + +
      + +

      Body scaffolding

      +
      +
      + + +

      Background color for <body>.

      + + +

      Global text color on <body>.

      +
      +
      + + +

      Global textual link color

      + + +

      Link hover color set via darken() function

      +
      +
      + +

      Typography

      +

      Generic font variables

      Default sans-serif fonts.

      @@ -368,27 +401,27 @@ base_url: "../"

      Default monospace fonts for <code> and <pre>.

      -
      -
      + +

      Base type styes

      -

      Used to globally set font-family in Bootstrap.

      -

      Used to calculate font-size throughout Bootstrap.

      -

      Used to calculate line-height throughout Bootstrap.

      + + + +
      +

      Heading font sizes

      -
      -
      @@ -398,6 +431,24 @@ base_url: "../"
      + +

      Headings

      +
      +
      + + + + +
      +
      + + + + +
      +
      + +

      Code blocks

      @@ -416,96 +467,47 @@ base_url: "../"
      -

      Headings

      -
      -
      - - - - -
      -
      - - - - -
      -
      - -

      Colors

      -
      -
      -

      Define custom colors used in several contexts.

      - - -

      Used for primary buttons, panels and more.

      - - -

      Used to indicate success.

      - - -

      Used to indicate a warning.

      - - -

      Used to indicate danger.

      - - -

      Used to indicate informational content.

      -
      -
      -

      Define your preferred colors for standard text and links.

      - - -

      Global color set on the body.

      - - -

      Global link color for text.

      - - -

      Automatically darken links on hover via color function.

      -
      -

      Media queries breakpoints

      -

      Define the breakpoints at which your layout will change, adapting to different screen sizes.

      -
      +
      +
      +
      -
      +
      +
      +
      -

      Container sizes

      -

      Define the maximum width of .container for different screen sizes.

      +

      Layout and grid system

      - +

      For @screen-sm-min and up.

      - +

      For @screen-md-min and up.

      - +

      For @screen-lg-min and up.

      -

      Grid system

      -

      Define your custom responsive grid.