Difference between revisions of "Team:Dundee/bs"

(Created page with "<html> <style> ! * Bootstrap v3.0.3 (http://getbootstrap.com) * Copyright 2013 Twitter, Inc. * Licensed under http://www.apache.org/licenses/LICENSE-2.0: /*! normal...")
 
Line 1: Line 1:
<html>
 
<style>
 
  
  
 
/*!
 
/*!
  * Bootstrap v3.0.3 (http://getbootstrap.com)
+
  * Bootstrap v3.1.1 (http://getbootstrap.com)
  * Copyright 2013 Twitter, Inc.
+
  * Copyright 2011-2014 Twitter, Inc.
  * Licensed under http://www.apache.org/licenses/LICENSE-2.0
+
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 
  */
 
  */
  
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
+
if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }
  
article,
+
/* ========================================================================
aside,
+
* Bootstrap: transition.js v3.1.1
details,
+
* http://getbootstrap.com/javascript/#transitions
figcaption,
+
* ========================================================================
figure,
+
* Copyright 2011-2014 Twitter, Inc.
footer,
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
header,
+
* ======================================================================== */
hgroup,
+
main,
+
nav,
+
section,
+
summary {
+
  display: block;
+
}
+
  
audio,
 
canvas,
 
video {
 
  display: inline-block;
 
}
 
  
audio:not([controls]) {
+
+function ($) {
   display: none;
+
   'use strict';
  height: 0;
+
}
+
  
[hidden],
+
   // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
template {
+
  // ============================================================
   display: none;
+
}
+
  
html {
+
  function transitionEnd() {
  font-family: sans-serif;
+
    var el = document.createElement('bootstrap')
  -webkit-text-size-adjust: 100%;
+
      -ms-text-size-adjust: 100%;
+
}
+
  
body {
+
    var transEndEventNames = {
  margin: 0;
+
      'WebkitTransition' : 'webkitTransitionEnd',
}
+
      'MozTransition'    : 'transitionend',
 +
      'OTransition'      : 'oTransitionEnd otransitionend',
 +
      'transition'      : 'transitionend'
 +
    }
  
a {
+
    for (var name in transEndEventNames) {
  background: transparent;
+
      if (el.style[name] !== undefined) {
}
+
        return { end: transEndEventNames[name] }
 +
      }
 +
    }
  
a:focus {
+
    return false // explicit for ie8 (  ._.)
   outline: thin dotted;
+
   }
}
+
  
a:active,
+
  // http://blog.alexmaccaw.com/css-transitions
a:hover {
+
  $.fn.emulateTransitionEnd = function (duration) {
  outline: 0;
+
    var called = false, $el = this
}
+
    $(this).one($.support.transition.end, function () { called = true })
 +
    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
 +
    setTimeout(callback, duration)
 +
    return this
 +
  }
  
h1 {
+
  $(function () {
  margin: 0.67em 0;
+
    $.support.transition = transitionEnd()
   font-size: 2em;
+
   })
}
+
  
abbr[title] {
+
}(jQuery);
  border-bottom: 1px dotted;
+
}
+
  
b,
+
/* ========================================================================
strong {
+
* Bootstrap: alert.js v3.1.1
  font-weight: bold;
+
* http://getbootstrap.com/javascript/#alerts
}
+
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
dfn {
 
  font-style: italic;
 
}
 
  
hr {
+
+function ($) {
   height: 0;
+
   'use strict';
  -moz-box-sizing: content-box;
+
      box-sizing: content-box;
+
}
+
  
mark {
+
   // ALERT CLASS DEFINITION
   color: #000;
+
   // ======================
   background: #ff0;
+
}
+
  
code,
+
  var dismiss = '[data-dismiss="alert"]'
kbd,
+
  var Alert  = function (el) {
pre,
+
    $(el).on('click', dismiss, this.close)
samp {
+
   }
  font-family: monospace, serif;
+
   font-size: 1em;
+
}
+
  
pre {
+
  Alert.prototype.close = function (e) {
  white-space: pre-wrap;
+
    var $this    = $(this)
}
+
    var selector = $this.attr('data-target')
  
q {
+
    if (!selector) {
  quotes: "\201C" "\201D" "\2018" "\2019";
+
      selector = $this.attr('href')
}
+
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
 +
    }
  
small {
+
    var $parent = $(selector)
  font-size: 80%;
+
}
+
  
sub,
+
    if (e) e.preventDefault()
sup {
+
  position: relative;
+
  font-size: 75%;
+
  line-height: 0;
+
  vertical-align: baseline;
+
}
+
  
sup {
+
    if (!$parent.length) {
  top: -0.5em;
+
      $parent = $this.hasClass('alert') ? $this : $this.parent()
}
+
    }
  
sub {
+
    $parent.trigger(e = $.Event('close.bs.alert'))
  bottom: -0.25em;
+
}
+
  
img {
+
    if (e.isDefaultPrevented()) return
  border: 0;
+
}
+
  
svg:not(:root) {
+
    $parent.removeClass('in')
  overflow: hidden;
+
}
+
  
figure {
+
    function removeElement() {
  margin: 0;
+
      $parent.trigger('closed.bs.alert').remove()
}
+
    }
  
fieldset {
+
    $.support.transition && $parent.hasClass('fade') ?
  padding: 0.35em 0.625em 0.75em;
+
      $parent
  margin: 0 2px;
+
        .one($.support.transition.end, removeElement)
  border: 1px solid #c0c0c0;
+
        .emulateTransitionEnd(150) :
}
+
      removeElement()
 +
  }
  
legend {
 
  padding: 0;
 
  border: 0;
 
}
 
  
button,
+
   // ALERT PLUGIN DEFINITION
input,
+
   // =======================
select,
+
textarea {
+
   margin: 0;
+
   font-family: inherit;
+
  font-size: 100%;
+
}
+
  
button,
+
   var old = $.fn.alert
input {
+
   line-height: normal;
+
}
+
  
button,
+
  $.fn.alert = function (option) {
select {
+
    return this.each(function () {
  text-transform: none;
+
      var $this = $(this)
}
+
      var data  = $this.data('bs.alert')
  
button,
+
      if (!data) $this.data('bs.alert', (data = new Alert(this)))
html input[type="button"],
+
      if (typeof option == 'string') data[option].call($this)
input[type="reset"],
+
    })
input[type="submit"] {
+
   }
  cursor: pointer;
+
   -webkit-appearance: button;
+
}
+
  
button[disabled],
+
   $.fn.alert.Constructor = Alert
html input[disabled] {
+
   cursor: default;
+
}
+
  
input[type="checkbox"],
 
input[type="radio"] {
 
  padding: 0;
 
  box-sizing: border-box;
 
}
 
  
input[type="search"] {
+
   // ALERT NO CONFLICT
   -webkit-box-sizing: content-box;
+
   // =================
    -moz-box-sizing: content-box;
+
          box-sizing: content-box;
+
   -webkit-appearance: textfield;
+
}
+
  
input[type="search"]::-webkit-search-cancel-button,
+
   $.fn.alert.noConflict = function () {
input[type="search"]::-webkit-search-decoration {
+
     $.fn.alert = old
   -webkit-appearance: none;
+
     return this
}
+
 
+
button::-moz-focus-inner,
+
input::-moz-focus-inner {
+
  padding: 0;
+
  border: 0;
+
}
+
 
+
textarea {
+
  overflow: auto;
+
  vertical-align: top;
+
}
+
 
+
table {
+
  border-collapse: collapse;
+
  border-spacing: 0;
+
}
+
 
+
@media print {
+
  * {
+
    color: #000 !important;
+
    text-shadow: none !important;
+
    background: transparent !important;
+
    box-shadow: none !important;
+
  }
+
  a,
+
  a:visited {
+
    text-decoration: underline;
+
  }
+
  a[href]:after {
+
    content: " (" attr(href) ")";
+
  }
+
  abbr[title]:after {
+
    content: " (" attr(title) ")";
+
  }
+
  a[href^="javascript:"]:after,
+
  a[href^="#"]:after {
+
    content: "";
+
  }
+
  pre,
+
  blockquote {
+
    border: 1px solid #999;
+
    page-break-inside: avoid;
+
  }
+
  thead {
+
    display: table-header-group;
+
  }
+
  tr,
+
  img {
+
    page-break-inside: avoid;
+
  }
+
  img {
+
    max-width: 100% !important;
+
  }
+
  @page  {
+
    margin: 2cm .5cm;
+
  }
+
  p,
+
  h2,
+
  h3 {
+
    orphans: 3;
+
    widows: 3;
+
  }
+
  h2,
+
  h3 {
+
    page-break-after: avoid;
+
  }
+
  select {
+
    background: #fff !important;
+
  }
+
  .navbar {
+
    display: none;
+
  }
+
  .table td,
+
  .table th {
+
     background-color: #fff !important;
+
  }
+
  .btn > .caret,
+
  .dropup > .btn > .caret {
+
    border-top-color: #666 !important;
+
  }
+
  .label {
+
    border: 1px solid #000;
+
  }
+
  .table {
+
    border-collapse: collapse !important;
+
  }
+
  .table-bordered th,
+
  .table-bordered td {
+
     border: 1px solid #ddd !important;
+
 
   }
 
   }
}
 
  
*,
 
*:before,
 
*:after {
 
  -webkit-box-sizing: border-box;
 
    -moz-box-sizing: border-box;
 
          box-sizing: border-box;
 
}
 
  
html {
+
   // ALERT DATA-API
   font-size: 62.5%;
+
   // ==============
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+
}
+
  
body {
+
   $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+
  font-size: 14px;
+
  line-height: 1.428571429;
+
  color: #333333;
+
  background-color: #ffffff;
+
}
+
  
input,
+
}(jQuery);
button,
+
select,
+
textarea {
+
  font-family: inherit;
+
  font-size: inherit;
+
  line-height: inherit;
+
}
+
  
a {
+
/* ========================================================================
  color: #428bca;
+
* Bootstrap: button.js v3.1.1
  text-decoration: none;
+
* http://getbootstrap.com/javascript/#buttons
}
+
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
a:hover,
 
a:focus {
 
  color: #2a6496;
 
  text-decoration: underline;
 
}
 
  
a:focus {
+
+function ($) {
   outline: thin dotted;
+
   'use strict';
  outline: 5px auto -webkit-focus-ring-color;
+
  outline-offset: -2px;
+
}
+
  
img {
+
   // BUTTON PUBLIC CLASS DEFINITION
   vertical-align: middle;
+
  // ==============================
}
+
  
.img-responsive {
+
  var Button = function (element, options) {
  display: block;
+
    this.$element  = $(element)
   height: auto;
+
    this.options   = $.extend({}, Button.DEFAULTS, options)
  max-width: 100%;
+
    this.isLoading = false
}
+
  }
  
.img-rounded {
+
  Button.DEFAULTS = {
  border-radius: 6px;
+
    loadingText: 'loading...'
}
+
  }
  
.img-thumbnail {
+
  Button.prototype.setState = function (state) {
  display: inline-block;
+
    var d    = 'disabled'
  height: auto;
+
    var $el  = this.$element
  max-width: 100%;
+
    var val  = $el.is('input') ? 'val' : 'html'
  padding: 4px;
+
    var data = $el.data()
  line-height: 1.428571429;
+
  background-color: #ffffff;
+
  border: 1px solid #dddddd;
+
  border-radius: 4px;
+
  -webkit-transition: all 0.2s ease-in-out;
+
          transition: all 0.2s ease-in-out;`
+
}
+
  
.img-circle {
+
    state = state + 'Text'
  border-radius: 50%;
+
}
+
  
hr {
+
    if (!data.resetText) $el.data('resetText', $el[val]())
  margin-top: 20px;
+
  margin-bottom: 20px;
+
  border: 0;
+
  border-top: 1px solid #eeeeee;
+
}
+
  
.sr-only {
+
    $el[val](data[state] || this.options[state])
  position: absolute;
+
  width: 1px;
+
  height: 1px;
+
  padding: 0;
+
  margin: -1px;
+
  overflow: hidden;
+
  clip: rect(0, 0, 0, 0);
+
  border: 0;
+
}
+
  
h1,
+
    // push to event loop to allow forms to submit
h2,
+
    setTimeout($.proxy(function () {
h3,
+
      if (state == 'loadingText') {
h4,
+
        this.isLoading = true
h5,
+
        $el.addClass(d).attr(d, d)
h6,
+
      } else if (this.isLoading) {
.h1,
+
        this.isLoading = false
.h2,
+
        $el.removeClass(d).removeAttr(d)
.h3,
+
      }
.h4,
+
    }, this), 0)
.h5,
+
   }
.h6 {
+
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+
   font-weight: 500;
+
  line-height: 1.1;
+
  color: inherit;
+
}
+
  
h1 small,
+
  Button.prototype.toggle = function () {
h2 small,
+
    var changed = true
h3 small,
+
    var $parent = this.$element.closest('[data-toggle="buttons"]')
h4 small,
+
h5 small,
+
h6 small,
+
.h1 small,
+
.h2 small,
+
.h3 small,
+
.h4 small,
+
.h5 small,
+
.h6 small,
+
h1 .small,
+
h2 .small,
+
h3 .small,
+
h4 .small,
+
h5 .small,
+
h6 .small,
+
.h1 .small,
+
.h2 .small,
+
.h3 .small,
+
.h4 .small,
+
.h5 .small,
+
.h6 .small {
+
  font-weight: normal;
+
  line-height: 1;
+
  color: #999999;
+
}
+
  
h1,
+
    if ($parent.length) {
h2,
+
      var $input = this.$element.find('input')
h3 {
+
      if ($input.prop('type') == 'radio') {
  margin-top: 20px;
+
        if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
  margin-bottom: 10px;
+
        else $parent.find('.active').removeClass('active')
}
+
      }
 +
      if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
 +
    }
  
h1 small,
+
    if (changed) this.$element.toggleClass('active')
h2 small,
+
   }
h3 small,
+
h1 .small,
+
h2 .small,
+
h3 .small {
+
   font-size: 65%;
+
}
+
  
h4,
 
h5,
 
h6 {
 
  margin-top: 10px;
 
  margin-bottom: 10px;
 
}
 
  
h4 small,
+
  // BUTTON PLUGIN DEFINITION
h5 small,
+
   // ========================
h6 small,
+
h4 .small,
+
h5 .small,
+
h6 .small {
+
   font-size: 75%;
+
}
+
  
h1,
+
   var old = $.fn.button
.h1 {
+
   font-size: 36px;
+
}
+
  
h2,
+
  $.fn.button = function (option) {
.h2 {
+
    return this.each(function () {
   font-size: 30px;
+
      var $this   = $(this)
}
+
      var data    = $this.data('bs.button')
 +
      var options = typeof option == 'object' && option
  
h3,
+
      if (!data) $this.data('bs.button', (data = new Button(this, options)))
.h3 {
+
  font-size: 24px;
+
}
+
  
h4,
+
      if (option == 'toggle') data.toggle()
.h4 {
+
      else if (option) data.setState(option)
  font-size: 18px;
+
    })
}
+
   }
 
+
h5,
+
.h5 {
+
   font-size: 14px;
+
}
+
  
h6,
+
   $.fn.button.Constructor = Button
.h6 {
+
   font-size: 12px;
+
}
+
  
p {
 
  margin: 0 0 10px;
 
}
 
  
.lead {
+
   // BUTTON NO CONFLICT
   margin-bottom: 20px;
+
   // ==================
   font-size: 16px;
+
  font-weight: 200;
+
  line-height: 1.4;
+
}
+
  
@media (min-width: 768px) {
+
  $.fn.button.noConflict = function () {
  .lead {
+
    $.fn.button = old
     font-size: 21px;
+
     return this
 
   }
 
   }
}
 
  
small,
 
.small {
 
  font-size: 85%;
 
}
 
  
cite {
+
   // BUTTON DATA-API
   font-style: normal;
+
  // ===============
}
+
  
.text-muted {
+
  $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
  color: #999999;
+
    var $btn = $(e.target)
}
+
    if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
 +
    $btn.button('toggle')
 +
    e.preventDefault()
 +
  })
  
.text-primary {
+
}(jQuery);
  color: #428bca;
+
}
+
  
.text-primary:hover {
+
/* ========================================================================
  color: #3071a9;
+
* Bootstrap: carousel.js v3.1.1
}
+
* http://getbootstrap.com/javascript/#carousel
 +
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
.text-warning {
 
  color: #8a6d3b;
 
}
 
  
.text-warning:hover {
+
+function ($) {
   color: #66512c;
+
   'use strict';
}
+
  
.text-danger {
+
   // CAROUSEL CLASS DEFINITION
   color: #a94442;
+
  // =========================
}
+
  
.text-danger:hover {
+
  var Carousel = function (element, options) {
  color: #843534;
+
    this.$element    = $(element)
}
+
    this.$indicators = this.$element.find('.carousel-indicators')
 +
    this.options    = options
 +
    this.paused      =
 +
    this.sliding    =
 +
    this.interval    =
 +
    this.$active    =
 +
    this.$items      = null
  
.text-success {
+
    this.options.pause == 'hover' && this.$element
  color: #3c763d;
+
      .on('mouseenter', $.proxy(this.pause, this))
}
+
      .on('mouseleave', $.proxy(this.cycle, this))
 +
  }
  
.text-success:hover {
+
  Carousel.DEFAULTS = {
  color: #2b542c;
+
    interval: 5000,
}
+
    pause: 'hover',
 +
    wrap: true
 +
  }
  
.text-info {
+
  Carousel.prototype.cycle =  function (e) {
  color: #31708f;
+
    e || (this.paused = false)
}
+
  
.text-info:hover {
+
    this.interval && clearInterval(this.interval)
  color: #245269;
+
}
+
  
.text-left {
+
    this.options.interval
  text-align: left;
+
      && !this.paused
}
+
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
  
.text-right {
+
    return this
   text-align: right;
+
   }
}
+
  
.text-center {
+
  Carousel.prototype.getActiveIndex = function () {
  text-align: center;
+
    this.$active = this.$element.find('.item.active')
}
+
    this.$items  = this.$active.parent().children()
  
.page-header {
+
    return this.$items.index(this.$active)
   padding-bottom: 9px;
+
   }
  margin: 40px 0 20px;
+
  border-bottom: 1px solid #eeeeee;
+
}
+
  
ul,
+
  Carousel.prototype.to = function (pos) {
ol {
+
    var that        = this
  margin-top: 0;
+
    var activeIndex = this.getActiveIndex()
  margin-bottom: 10px;
+
}
+
  
ul ul,
+
    if (pos > (this.$items.length - 1) || pos < 0) return
ol ul,
+
ul ol,
+
ol ol {
+
  margin-bottom: 0;
+
}
+
  
.list-unstyled {
+
    if (this.sliding)      return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
  padding-left: 0;
+
    if (activeIndex == pos) return this.pause().cycle()
  list-style: none;
+
}
+
  
.list-inline {
+
    return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
  padding-left: 0;
+
  list-style: none;
+
}
+
 
+
.list-inline > li {
+
  display: inline-block;
+
  padding-right: 5px;
+
  padding-left: 5px;
+
}
+
 
+
.list-inline > li:first-child {
+
  padding-left: 0;
+
}
+
 
+
dl {
+
  margin-top: 0;
+
  margin-bottom: 20px;
+
}
+
 
+
dt,
+
dd {
+
  line-height: 1.428571429;
+
}
+
 
+
dt {
+
  font-weight: bold;
+
}
+
 
+
dd {
+
  margin-left: 0;
+
}
+
 
+
@media (min-width: 768px) {
+
  .dl-horizontal dt {
+
    float: left;
+
    width: 160px;
+
    overflow: hidden;
+
    clear: left;
+
    text-align: right;
+
    text-overflow: ellipsis;
+
    white-space: nowrap;
+
  }
+
  .dl-horizontal dd {
+
    margin-left: 180px;
+
  }
+
  .dl-horizontal dd:before,
+
  .dl-horizontal dd:after {
+
    display: table;
+
    content: " ";
+
  }
+
  .dl-horizontal dd:after {
+
    clear: both;
+
  }
+
  .dl-horizontal dd:before,
+
  .dl-horizontal dd:after {
+
    display: table;
+
    content: " ";
+
  }
+
  .dl-horizontal dd:after {
+
    clear: both;
+
 
   }
 
   }
}
 
  
abbr[title],
+
  Carousel.prototype.pause = function (e) {
abbr[data-original-title] {
+
    e || (this.paused = true)
  cursor: help;
+
  border-bottom: 1px dotted #999999;
+
}
+
  
.initialism {
+
    if (this.$element.find('.next, .prev').length && $.support.transition) {
  font-size: 90%;
+
      this.$element.trigger($.support.transition.end)
  text-transform: uppercase;
+
      this.cycle(true)
}
+
    }
  
blockquote {
+
    this.interval = clearInterval(this.interval)
  padding: 10px 20px;
+
  margin: 0 0 20px;
+
  border-left: 5px solid #eeeeee;
+
}
+
  
blockquote p {
+
     return this
  font-size: 17.5px;
+
  font-weight: 300;
+
  line-height: 1.25;
+
}
+
 
+
blockquote p:last-child {
+
  margin-bottom: 0;
+
}
+
 
+
blockquote small,
+
blockquote .small {
+
  display: block;
+
  line-height: 1.428571429;
+
  color: #999999;
+
}
+
 
+
blockquote small:before,
+
blockquote .small:before {
+
  content: '\2014 \00A0';
+
}
+
 
+
blockquote.pull-right {
+
  padding-right: 15px;
+
  padding-left: 0;
+
  border-right: 5px solid #eeeeee;
+
  border-left: 0;
+
}
+
 
+
blockquote.pull-right p,
+
blockquote.pull-right small,
+
blockquote.pull-right .small {
+
  text-align: right;
+
}
+
 
+
blockquote.pull-right small:before,
+
blockquote.pull-right .small:before {
+
  content: '';
+
}
+
 
+
blockquote.pull-right small:after,
+
blockquote.pull-right .small:after {
+
  content: '\00A0 \2014';
+
}
+
 
+
blockquote:before,
+
blockquote:after {
+
  content: "";
+
}
+
 
+
address {
+
  margin-bottom: 20px;
+
  font-style: normal;
+
  line-height: 1.428571429;
+
}
+
 
+
code,
+
kbd,
+
pre,
+
samp {
+
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
+
}
+
 
+
code {
+
  padding: 2px 4px;
+
  font-size: 90%;
+
  color: #c7254e;
+
  white-space: nowrap;
+
  background-color: #f9f2f4;
+
  border-radius: 4px;
+
}
+
 
+
pre {
+
  display: block;
+
  padding: 9.5px;
+
  margin: 0 0 10px;
+
  font-size: 13px;
+
  line-height: 1.428571429;
+
  color: #333333;
+
  word-break: break-all;
+
  word-wrap: break-word;
+
  background-color: #f5f5f5;
+
  border: 1px solid #cccccc;
+
  border-radius: 4px;
+
}
+
 
+
pre code {
+
  padding: 0;
+
  font-size: inherit;
+
  color: inherit;
+
  white-space: pre-wrap;
+
  background-color: transparent;
+
  border-radius: 0;
+
}
+
 
+
.pre-scrollable {
+
  max-height: 340px;
+
  overflow-y: scroll;
+
}
+
 
+
.container {
+
  padding-right: 15px;
+
  padding-left: 15px;
+
  margin-right: auto;
+
  margin-left: auto;
+
}
+
 
+
.container:before,
+
.container:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.container:after {
+
  clear: both;
+
}
+
 
+
.container:before,
+
.container:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.container:after {
+
  clear: both;
+
}
+
 
+
@media (min-width: 768px) {
+
  .container {
+
     width: 750px;
+
 
   }
 
   }
}
 
  
@media (min-width: 992px) {
+
  Carousel.prototype.next = function () {
  .container {
+
    if (this.sliding) return
     width: 970px;
+
     return this.slide('next')
 
   }
 
   }
}
 
  
@media (min-width: 1200px) {
+
  Carousel.prototype.prev = function () {
  .container {
+
    if (this.sliding) return
     width: 1170px;
+
     return this.slide('prev')
 
   }
 
   }
}
 
  
.row {
+
  Carousel.prototype.slide = function (type, next) {
   margin-right: -15px;
+
    var $active   = this.$element.find('.item.active')
  margin-left: -15px;
+
    var $next    = next || $active[type]()
}
+
    var isCycling = this.interval
 +
    var direction = type == 'next' ? 'left' : 'right'
 +
    var fallback  = type == 'next' ? 'first' : 'last'
 +
    var that      = this
  
.row:before,
+
    if (!$next.length) {
.row:after {
+
      if (!this.options.wrap) return
  display: table;
+
      $next = this.$element.find('.item')[fallback]()
  content: " ";
+
    }
}
+
  
.row:after {
+
    if ($next.hasClass('active')) return this.sliding = false
  clear: both;
+
}
+
  
.row:before,
+
    var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
.row:after {
+
    this.$element.trigger(e)
  display: table;
+
    if (e.isDefaultPrevented()) return
  content: " ";
+
}
+
  
.row:after {
+
    this.sliding = true
  clear: both;
+
}
+
  
.col-xs-1,
+
    isCycling && this.pause()
.col-sm-1,
+
.col-md-1,
+
.col-lg-1,
+
.col-xs-2,
+
.col-sm-2,
+
.col-md-2,
+
.col-lg-2,
+
.col-xs-3,
+
.col-sm-3,
+
.col-md-3,
+
.col-lg-3,
+
.col-xs-4,
+
.col-sm-4,
+
.col-md-4,
+
.col-lg-4,
+
.col-xs-5,
+
.col-sm-5,
+
.col-md-5,
+
.col-lg-5,
+
.col-xs-6,
+
.col-sm-6,
+
.col-md-6,
+
.col-lg-6,
+
.col-xs-7,
+
.col-sm-7,
+
.col-md-7,
+
.col-lg-7,
+
.col-xs-8,
+
.col-sm-8,
+
.col-md-8,
+
.col-lg-8,
+
.col-xs-9,
+
.col-sm-9,
+
.col-md-9,
+
.col-lg-9,
+
.col-xs-10,
+
.col-sm-10,
+
.col-md-10,
+
.col-lg-10,
+
.col-xs-11,
+
.col-sm-11,
+
.col-md-11,
+
.col-lg-11,
+
.col-xs-12,
+
.col-sm-12,
+
.col-md-12,
+
.col-lg-12 {
+
  position: relative;
+
  min-height: 1px;
+
  padding-right: 15px;
+
  padding-left: 15px;
+
}
+
  
.col-xs-1,
+
    if (this.$indicators.length) {
.col-xs-2,
+
      this.$indicators.find('.active').removeClass('active')
.col-xs-3,
+
      this.$element.one('slid.bs.carousel', function () {
 +
        var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
 +
        $nextIndicator && $nextIndicator.addClass('active')
 +
      })
 +
    }
  
 +
    if ($.support.transition && this.$element.hasClass('slide')) {
 +
      $next.addClass(type)
 +
      $next[0].offsetWidth // force reflow
 +
      $active.addClass(direction)
 +
      $next.addClass(direction)
 +
      $active
 +
        .one($.support.transition.end, function () {
 +
          $next.removeClass([type, direction].join(' ')).addClass('active')
 +
          $active.removeClass(['active', direction].join(' '))
 +
          that.sliding = false
 +
          setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
 +
        })
 +
        .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000)
 +
    } else {
 +
      $active.removeClass('active')
 +
      $next.addClass('active')
 +
      this.sliding = false
 +
      this.$element.trigger('slid.bs.carousel')
 +
    }
  
.col-xs-4,
+
    isCycling && this.cycle()
.col-xs-5,
+
.col-xs-6,
+
.col-xs-7,
+
.col-xs-8,
+
.col-xs-9,
+
.col-xs-10,
+
.col-xs-11,
+
.col-xs-12 {
+
  float: left;
+
}
+
  
.col-xs-12 {
+
    return this
   width: 100%;
+
   }
}
+
  
.col-xs-11 {
 
  width: 91.66666666666666%;
 
}
 
  
.col-xs-10 {
+
   // CAROUSEL PLUGIN DEFINITION
   width: 83.33333333333334%;
+
  // ==========================
}
+
  
.col-xs-9 {
+
   var old = $.fn.carousel
   width: 75%;
+
}
+
  
.col-xs-8 {
+
  $.fn.carousel = function (option) {
   width: 66.66666666666666%;
+
    return this.each(function () {
}
+
      var $this   = $(this)
 +
      var data    = $this.data('bs.carousel')
 +
      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
 +
      var action  = typeof option == 'string' ? option : options.slide
  
.col-xs-7 {
+
      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
  width: 58.333333333333336%;
+
      if (typeof option == 'number') data.to(option)
}
+
      else if (action) data[action]()
 +
      else if (options.interval) data.pause().cycle()
 +
    })
 +
  }
  
.col-xs-6 {
+
   $.fn.carousel.Constructor = Carousel
   width: 50%;
+
}
+
  
.col-xs-5 {
 
  width: 41.66666666666667%;
 
}
 
  
.col-xs-4 {
+
   // CAROUSEL NO CONFLICT
   width: 33.33333333333333%;
+
  // ====================
}
+
  
.col-xs-3 {
+
  $.fn.carousel.noConflict = function () {
  width: 25%;
+
    $.fn.carousel = old
}
+
    return this
 +
  }
  
.col-xs-2 {
 
  width: 16.666666666666664%;
 
}
 
  
.col-xs-1 {
+
  // CAROUSEL DATA-API
   width: 8.333333333333332%;
+
   // =================
}
+
  
.col-xs-pull-12 {
+
  $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
   right: 100%;
+
    var $this   = $(this), href
}
+
    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
 +
    var options = $.extend({}, $target.data(), $this.data())
 +
    var slideIndex = $this.attr('data-slide-to')
 +
    if (slideIndex) options.interval = false
  
.col-xs-pull-11 {
+
    $target.carousel(options)
  right: 91.66666666666666%;
+
}
+
  
.col-xs-pull-10 {
+
    if (slideIndex = $this.attr('data-slide-to')) {
  right: 83.33333333333334%;
+
      $target.data('bs.carousel').to(slideIndex)
}
+
    }
  
.col-xs-pull-9 {
+
    e.preventDefault()
   right: 75%;
+
   })
}
+
  
.col-xs-pull-8 {
+
  $(window).on('load', function () {
  right: 66.66666666666666%;
+
    $('[data-ride="carousel"]').each(function () {
}
+
      var $carousel = $(this)
 +
      $carousel.carousel($carousel.data())
 +
    })
 +
  })
  
.col-xs-pull-7 {
+
}(jQuery);
  right: 58.333333333333336%;
+
}
+
  
.col-xs-pull-6 {
+
/* ========================================================================
  right: 50%;
+
* Bootstrap: collapse.js v3.1.1
}
+
* http://getbootstrap.com/javascript/#collapse
 +
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
.col-xs-pull-5 {
 
  right: 41.66666666666667%;
 
}
 
  
.col-xs-pull-4 {
+
+function ($) {
   right: 33.33333333333333%;
+
   'use strict';
}
+
  
.col-xs-pull-3 {
+
   // COLLAPSE PUBLIC CLASS DEFINITION
   right: 25%;
+
  // ================================
}
+
  
.col-xs-pull-2 {
+
  var Collapse = function (element, options) {
  right: 16.666666666666664%;
+
    this.$element      = $(element)
}
+
    this.options      = $.extend({}, Collapse.DEFAULTS, options)
 +
    this.transitioning = null
  
.col-xs-pull-1 {
+
    if (this.options.parent) this.$parent = $(this.options.parent)
  right: 8.333333333333332%;
+
    if (this.options.toggle) this.toggle()
}
+
 
+
.col-xs-pull-0 {
+
  right: 0;
+
}
+
 
+
.col-xs-push-12 {
+
  left: 100%;
+
}
+
 
+
.col-xs-push-11 {
+
  left: 91.66666666666666%;
+
}
+
 
+
.col-xs-push-10 {
+
  left: 83.33333333333334%;
+
}
+
 
+
.col-xs-push-9 {
+
  left: 75%;
+
}
+
 
+
.col-xs-push-8 {
+
  left: 66.66666666666666%;
+
}
+
 
+
.col-xs-push-7 {
+
  left: 58.333333333333336%;
+
}
+
 
+
.col-xs-push-6 {
+
  left: 50%;
+
}
+
 
+
.col-xs-push-5 {
+
  left: 41.66666666666667%;
+
}
+
 
+
.col-xs-push-4 {
+
  left: 33.33333333333333%;
+
}
+
 
+
.col-xs-push-3 {
+
  left: 25%;
+
}
+
 
+
.col-xs-push-2 {
+
  left: 16.666666666666664%;
+
}
+
 
+
.col-xs-push-1 {
+
  left: 8.333333333333332%;
+
}
+
 
+
.col-xs-push-0 {
+
  left: 0;
+
}
+
 
+
.col-xs-offset-12 {
+
  margin-left: 100%;
+
}
+
 
+
.col-xs-offset-11 {
+
  margin-left: 91.66666666666666%;
+
}
+
 
+
.col-xs-offset-10 {
+
  margin-left: 83.33333333333334%;
+
}
+
 
+
.col-xs-offset-9 {
+
  margin-left: 75%;
+
}
+
 
+
.col-xs-offset-8 {
+
  margin-left: 66.66666666666666%;
+
}
+
 
+
.col-xs-offset-7 {
+
  margin-left: 58.333333333333336%;
+
}
+
 
+
.col-xs-offset-6 {
+
  margin-left: 50%;
+
}
+
 
+
.col-xs-offset-5 {
+
  margin-left: 41.66666666666667%;
+
}
+
 
+
.col-xs-offset-4 {
+
  margin-left: 33.33333333333333%;
+
}
+
 
+
.col-xs-offset-3 {
+
  margin-left: 25%;
+
}
+
 
+
.col-xs-offset-2 {
+
  margin-left: 16.666666666666664%;
+
}
+
 
+
.col-xs-offset-1 {
+
  margin-left: 8.333333333333332%;
+
}
+
 
+
.col-xs-offset-0 {
+
  margin-left: 0;
+
}
+
 
+
@media (min-width: 768px) {
+
  .col-sm-1,
+
  .col-sm-2,
+
  .col-sm-3,
+
  .col-sm-4,
+
  .col-sm-5,
+
  .col-sm-6,
+
  .col-sm-7,
+
  .col-sm-8,
+
  .col-sm-9,
+
  .col-sm-10,
+
  .col-sm-11,
+
  .col-sm-12 {
+
    float: left;
+
 
   }
 
   }
  .col-sm-12 {
 
    width: 100%;
 
  }
 
  .col-sm-11 {
 
    width: 91.66666666666666%;
 
  }
 
  .col-sm-10 {
 
    width: 83.33333333333334%;
 
  }
 
  .col-sm-9 {
 
    width: 75%;
 
  }
 
  .col-sm-8 {
 
    width: 66.66666666666666%;
 
  }
 
  .col-sm-7 {
 
    width: 58.333333333333336%;
 
  }
 
  .col-sm-6 {
 
    width: 50%;
 
  }
 
  .col-sm-5 {
 
    width: 41.66666666666667%;
 
  }
 
  .col-sm-4 {
 
    width: 33.33333333333333%;
 
  }
 
  .col-sm-3 {
 
    width: 25%;
 
  }
 
  .col-sm-2 {
 
    width: 16.666666666666664%;
 
  }
 
  .col-sm-1 {
 
    width: 8.333333333333332%;
 
  }
 
  .col-sm-pull-12 {
 
    right: 100%;
 
  }
 
  .col-sm-pull-11 {
 
    right: 91.66666666666666%;
 
  }
 
  .col-sm-pull-10 {
 
    right: 83.33333333333334%;
 
  }
 
  .col-sm-pull-9 {
 
    right: 75%;
 
  }
 
  .col-sm-pull-8 {
 
    right: 66.66666666666666%;
 
  }
 
  .col-sm-pull-7 {
 
    right: 58.333333333333336%;
 
  }
 
  .col-sm-pull-6 {
 
    right: 50%;
 
  }
 
  .col-sm-pull-5 {
 
    right: 41.66666666666667%;
 
  }
 
  .col-sm-pull-4 {
 
    right: 33.33333333333333%;
 
  }
 
  .col-sm-pull-3 {
 
    right: 25%;
 
  }
 
  .col-sm-pull-2 {
 
    right: 16.666666666666664%;
 
  }
 
  .col-sm-pull-1 {
 
    right: 8.333333333333332%;
 
  }
 
  .col-sm-pull-0 {
 
    right: 0;
 
  }
 
  .col-sm-push-12 {
 
    left: 100%;
 
  }
 
  .col-sm-push-11 {
 
    left: 91.66666666666666%;
 
  }
 
  .col-sm-push-10 {
 
    left: 83.33333333333334%;
 
  }
 
  .col-sm-push-9 {
 
    left: 75%;
 
  }
 
  .col-sm-push-8 {
 
    left: 66.66666666666666%;
 
  }
 
  .col-sm-push-7 {
 
    left: 58.333333333333336%;
 
  }
 
  .col-sm-push-6 {
 
    left: 50%;
 
  }
 
  .col-sm-push-5 {
 
    left: 41.66666666666667%;
 
  }
 
  .col-sm-push-4 {
 
    left: 33.33333333333333%;
 
  }
 
  .col-sm-push-3 {
 
    left: 25%;
 
  }
 
  .col-sm-push-2 {
 
    left: 16.666666666666664%;
 
  }
 
  .col-sm-push-1 {
 
    left: 8.333333333333332%;
 
  }
 
  .col-sm-push-0 {
 
    left: 0;
 
  }
 
  .col-sm-offset-12 {
 
    margin-left: 100%;
 
  }
 
  .col-sm-offset-11 {
 
    margin-left: 91.66666666666666%;
 
  }
 
  .col-sm-offset-10 {
 
    margin-left: 83.33333333333334%;
 
  }
 
  .col-sm-offset-9 {
 
    margin-left: 75%;
 
  }
 
  .col-sm-offset-8 {
 
    margin-left: 66.66666666666666%;
 
  }
 
  .col-sm-offset-7 {
 
    margin-left: 58.333333333333336%;
 
  }
 
  .col-sm-offset-6 {
 
    margin-left: 50%;
 
  }
 
  .col-sm-offset-5 {
 
    margin-left: 41.66666666666667%;
 
  }
 
  .col-sm-offset-4 {
 
    margin-left: 33.33333333333333%;
 
  }
 
  .col-sm-offset-3 {
 
    margin-left: 25%;
 
  }
 
  .col-sm-offset-2 {
 
    margin-left: 16.666666666666664%;
 
  }
 
  .col-sm-offset-1 {
 
    margin-left: 8.333333333333332%;
 
  }
 
  .col-sm-offset-0 {
 
    margin-left: 0;
 
  }
 
}
 
  
@media (min-width: 992px) {
+
   Collapse.DEFAULTS = {
  .col-md-1,
+
     toggle: true
  .col-md-2,
+
  .col-md-3,
+
  .col-md-4,
+
  .col-md-5,
+
  .col-md-6,
+
  .col-md-7,
+
  .col-md-8,
+
  .col-md-9,
+
  .col-md-10,
+
  .col-md-11,
+
   .col-md-12 {
+
     float: left;
+
 
   }
 
   }
  .col-md-12 {
 
    width: 100%;
 
  }
 
  .col-md-11 {
 
    width: 91.66666666666666%;
 
  }
 
  .col-md-10 {
 
    width: 83.33333333333334%;
 
  }
 
  .col-md-9 {
 
    width: 75%;
 
  }
 
  .col-md-8 {
 
    width: 66.66666666666666%;
 
  }
 
  .col-md-7 {
 
    width: 58.333333333333336%;
 
  }
 
  .col-md-6 {
 
    width: 50%;
 
  }
 
  .col-md-5 {
 
    width: 41.66666666666667%;
 
  }
 
  .col-md-4 {
 
    width: 33.33333333333333%;
 
  }
 
  .col-md-3 {
 
    width: 25%;
 
  }
 
  .col-md-2 {
 
    width: 16.666666666666664%;
 
  }
 
  .col-md-1 {
 
    width: 8.333333333333332%;
 
  }
 
  .col-md-pull-12 {
 
    right: 100%;
 
  }
 
  .col-md-pull-11 {
 
    right: 91.66666666666666%;
 
  }
 
  .col-md-pull-10 {
 
    right: 83.33333333333334%;
 
  }
 
  .col-md-pull-9 {
 
    right: 75%;
 
  }
 
  .col-md-pull-8 {
 
    right: 66.66666666666666%;
 
  }
 
  .col-md-pull-7 {
 
    right: 58.333333333333336%;
 
  }
 
  .col-md-pull-6 {
 
    right: 50%;
 
  }
 
  .col-md-pull-5 {
 
    right: 41.66666666666667%;
 
  }
 
  .col-md-pull-4 {
 
    right: 33.33333333333333%;
 
  }
 
  .col-md-pull-3 {
 
    right: 25%;
 
  }
 
  .col-md-pull-2 {
 
    right: 16.666666666666664%;
 
  }
 
  .col-md-pull-1 {
 
    right: 8.333333333333332%;
 
  }
 
  .col-md-pull-0 {
 
    right: 0;
 
  }
 
  .col-md-push-12 {
 
    left: 100%;
 
  }
 
  .col-md-push-11 {
 
    left: 91.66666666666666%;
 
  }
 
  .col-md-push-10 {
 
    left: 83.33333333333334%;
 
  }
 
  .col-md-push-9 {
 
    left: 75%;
 
  }
 
  .col-md-push-8 {
 
    left: 66.66666666666666%;
 
  }
 
  .col-md-push-7 {
 
    left: 58.333333333333336%;
 
  }
 
  .col-md-push-6 {
 
    left: 50%;
 
  }
 
  .col-md-push-5 {
 
    left: 41.66666666666667%;
 
  }
 
  .col-md-push-4 {
 
    left: 33.33333333333333%;
 
  }
 
  .col-md-push-3 {
 
    left: 25%;
 
  }
 
  .col-md-push-2 {
 
    left: 16.666666666666664%;
 
  }
 
  .col-md-push-1 {
 
    left: 8.333333333333332%;
 
  }
 
  .col-md-push-0 {
 
    left: 0;
 
  }
 
  .col-md-offset-12 {
 
    margin-left: 100%;
 
  }
 
  .col-md-offset-11 {
 
    margin-left: 91.66666666666666%;
 
  }
 
  .col-md-offset-10 {
 
    margin-left: 83.33333333333334%;
 
  }
 
  .col-md-offset-9 {
 
    margin-left: 75%;
 
  }
 
  .col-md-offset-8 {
 
    margin-left: 66.66666666666666%;
 
  }
 
  .col-md-offset-7 {
 
    margin-left: 58.333333333333336%;
 
  }
 
  .col-md-offset-6 {
 
    margin-left: 50%;
 
  }
 
  .col-md-offset-5 {
 
    margin-left: 41.66666666666667%;
 
  }
 
  .col-md-offset-4 {
 
    margin-left: 33.33333333333333%;
 
  }
 
  .col-md-offset-3 {
 
    margin-left: 25%;
 
  }
 
  .col-md-offset-2 {
 
    margin-left: 16.666666666666664%;
 
  }
 
  .col-md-offset-1 {
 
    margin-left: 8.333333333333332%;
 
  }
 
  .col-md-offset-0 {
 
    margin-left: 0;
 
  }
 
}
 
  
@media (min-width: 1200px) {
+
   Collapse.prototype.dimension = function () {
   .col-lg-1,
+
     var hasWidth = this.$element.hasClass('width')
  .col-lg-2,
+
     return hasWidth ? 'width' : 'height'
  .col-lg-3,
+
  .col-lg-4,
+
  .col-lg-5,
+
  .col-lg-6,
+
  .col-lg-7,
+
  .col-lg-8,
+
  .col-lg-9,
+
  .col-lg-10,
+
  .col-lg-11,
+
  .col-lg-12 {
+
     float: left;
+
  }
+
  .col-lg-12 {
+
    width: 100%;
+
  }
+
  .col-lg-11 {
+
    width: 91.66666666666666%;
+
  }
+
  .col-lg-10 {
+
     width: 83.33333333333334%;
+
  }
+
  .col-lg-9 {
+
    width: 75%;
+
  }
+
  .col-lg-8 {
+
    width: 66.66666666666666%;
+
  }
+
  .col-lg-7 {
+
    width: 58.333333333333336%;
+
  }
+
  .col-lg-6 {
+
    width: 50%;
+
  }
+
  .col-lg-5 {
+
    width: 41.66666666666667%;
+
  }
+
  .col-lg-4 {
+
    width: 33.33333333333333%;
+
  }
+
  .col-lg-3 {
+
    width: 25%;
+
  }
+
  .col-lg-2 {
+
    width: 16.666666666666664%;
+
  }
+
  .col-lg-1 {
+
    width: 8.333333333333332%;
+
  }
+
  .col-lg-pull-12 {
+
    right: 100%;
+
  }
+
  .col-lg-pull-11 {
+
    right: 91.66666666666666%;
+
  }
+
  .col-lg-pull-10 {
+
    right: 83.33333333333334%;
+
  }
+
  .col-lg-pull-9 {
+
    right: 75%;
+
  }
+
  .col-lg-pull-8 {
+
    right: 66.66666666666666%;
+
  }
+
  .col-lg-pull-7 {
+
    right: 58.333333333333336%;
+
  }
+
  .col-lg-pull-6 {
+
    right: 50%;
+
  }
+
  .col-lg-pull-5 {
+
    right: 41.66666666666667%;
+
  }
+
  .col-lg-pull-4 {
+
    right: 33.33333333333333%;
+
  }
+
  .col-lg-pull-3 {
+
    right: 25%;
+
  }
+
  .col-lg-pull-2 {
+
    right: 16.666666666666664%;
+
  }
+
  .col-lg-pull-1 {
+
    right: 8.333333333333332%;
+
  }
+
  .col-lg-pull-0 {
+
    right: 0;
+
  }
+
  .col-lg-push-12 {
+
    left: 100%;
+
  }
+
  .col-lg-push-11 {
+
    left: 91.66666666666666%;
+
  }
+
  .col-lg-push-10 {
+
    left: 83.33333333333334%;
+
  }
+
  .col-lg-push-9 {
+
    left: 75%;
+
  }
+
  .col-lg-push-8 {
+
    left: 66.66666666666666%;
+
  }
+
  .col-lg-push-7 {
+
    left: 58.333333333333336%;
+
  }
+
  .col-lg-push-6 {
+
    left: 50%;
+
  }
+
  .col-lg-push-5 {
+
    left: 41.66666666666667%;
+
  }
+
  .col-lg-push-4 {
+
    left: 33.33333333333333%;
+
  }
+
  .col-lg-push-3 {
+
    left: 25%;
+
  }
+
  .col-lg-push-2 {
+
    left: 16.666666666666664%;
+
  }
+
  .col-lg-push-1 {
+
    left: 8.333333333333332%;
+
  }
+
  .col-lg-push-0 {
+
    left: 0;
+
  }
+
  .col-lg-offset-12 {
+
    margin-left: 100%;
+
  }
+
  .col-lg-offset-11 {
+
    margin-left: 91.66666666666666%;
+
  }
+
  .col-lg-offset-10 {
+
    margin-left: 83.33333333333334%;
+
  }
+
  .col-lg-offset-9 {
+
    margin-left: 75%;
+
  }
+
  .col-lg-offset-8 {
+
    margin-left: 66.66666666666666%;
+
  }
+
  .col-lg-offset-7 {
+
    margin-left: 58.333333333333336%;
+
  }
+
  .col-lg-offset-6 {
+
    margin-left: 50%;
+
  }
+
  .col-lg-offset-5 {
+
    margin-left: 41.66666666666667%;
+
  }
+
  .col-lg-offset-4 {
+
    margin-left: 33.33333333333333%;
+
  }
+
  .col-lg-offset-3 {
+
    margin-left: 25%;
+
  }
+
  .col-lg-offset-2 {
+
    margin-left: 16.666666666666664%;
+
  }
+
  .col-lg-offset-1 {
+
    margin-left: 8.333333333333332%;
+
  }
+
  .col-lg-offset-0 {
+
    margin-left: 0;
+
 
   }
 
   }
}
 
  
table {
+
  Collapse.prototype.show = function () {
  max-width: 100%;
+
    if (this.transitioning || this.$element.hasClass('in')) return
  background-color: transparent;
+
}
+
  
th {
+
    var startEvent = $.Event('show.bs.collapse')
  text-align: left;
+
    this.$element.trigger(startEvent)
}
+
    if (startEvent.isDefaultPrevented()) return
  
.table {
+
    var actives = this.$parent && this.$parent.find('> .panel > .in')
  width: 100%;
+
  margin-bottom: 20px;
+
}
+
  
.table > thead > tr > th,
+
    if (actives && actives.length) {
.table > tbody > tr > th,
+
      var hasData = actives.data('bs.collapse')
.table > tfoot > tr > th,
+
      if (hasData && hasData.transitioning) return
.table > thead > tr > td,
+
      actives.collapse('hide')
.table > tbody > tr > td,
+
      hasData || actives.data('bs.collapse', null)
.table > tfoot > tr > td {
+
    }
  padding: 8px;
+
  line-height: 1.428571429;
+
  vertical-align: top;
+
  border-top: 1px solid #dddddd;
+
}
+
  
.table > thead > tr > th {
+
    var dimension = this.dimension()
  vertical-align: bottom;
+
  border-bottom: 2px solid #dddddd;
+
}
+
  
.table > caption + thead > tr:first-child > th,
+
    this.$element
.table > colgroup + thead > tr:first-child > th,
+
      .removeClass('collapse')
.table > thead:first-child > tr:first-child > th,
+
      .addClass('collapsing')
.table > caption + thead > tr:first-child > td,
+
      [dimension](0)
.table > colgroup + thead > tr:first-child > td,
+
.table > thead:first-child > tr:first-child > td {
+
  border-top: 0;
+
}
+
  
.table > tbody + tbody {
+
    this.transitioning = 1
  border-top: 2px solid #dddddd;
+
}
+
  
.table .table {
+
    var complete = function () {
  background-color: #ffffff;
+
      this.$element
}
+
        .removeClass('collapsing')
 +
        .addClass('collapse in')
 +
        [dimension]('auto')
 +
      this.transitioning = 0
 +
      this.$element.trigger('shown.bs.collapse')
 +
    }
  
.table-condensed > thead > tr > th,
+
    if (!$.support.transition) return complete.call(this)
.table-condensed > tbody > tr > th,
+
.table-condensed > tfoot > tr > th,
+
.table-condensed > thead > tr > td,
+
.table-condensed > tbody > tr > td,
+
.table-condensed > tfoot > tr > td {
+
  padding: 5px;
+
}
+
  
.table-bordered {
+
    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
  border: 1px solid #dddddd;
+
}
+
  
.table-bordered > thead > tr > th,
+
    this.$element
.table-bordered > tbody > tr > th,
+
      .one($.support.transition.end, $.proxy(complete, this))
.table-bordered > tfoot > tr > th,
+
      .emulateTransitionEnd(350)
.table-bordered > thead > tr > td,
+
      [dimension](this.$element[0][scrollSize])
.table-bordered > tbody > tr > td,
+
   }
.table-bordered > tfoot > tr > td {
+
   border: 1px solid #dddddd;
+
}
+
  
.table-bordered > thead > tr > th,
+
  Collapse.prototype.hide = function () {
.table-bordered > thead > tr > td {
+
    if (this.transitioning || !this.$element.hasClass('in')) return
  border-bottom-width: 2px;
+
}
+
  
.table-striped > tbody > tr:nth-child(odd) > td,
+
    var startEvent = $.Event('hide.bs.collapse')
.table-striped > tbody > tr:nth-child(odd) > th {
+
    this.$element.trigger(startEvent)
  background-color: #f9f9f9;
+
    if (startEvent.isDefaultPrevented()) return
}
+
  
.table-hover > tbody > tr:hover > td,
+
    var dimension = this.dimension()
.table-hover > tbody > tr:hover > th {
+
  background-color: #f5f5f5;
+
}
+
  
table col[class*="col-"] {
+
    this.$element
  position: static;
+
      [dimension](this.$element[dimension]())
  display: table-column;
+
      [0].offsetHeight
  float: none;
+
}
+
  
table td[class*="col-"],
+
    this.$element
table th[class*="col-"] {
+
      .addClass('collapsing')
  display: table-cell;
+
      .removeClass('collapse')
  float: none;
+
      .removeClass('in')
}
+
  
.table > thead > tr > .active,
+
    this.transitioning = 1
.table > tbody > tr > .active,
+
.table > tfoot > tr > .active,
+
.table > thead > .active > td,
+
.table > tbody > .active > td,
+
.table > tfoot > .active > td,
+
.table > thead > .active > th,
+
.table > tbody > .active > th,
+
.table > tfoot > .active > th {
+
  background-color: #f5f5f5;
+
}
+
  
.table-hover > tbody > tr > .active:hover,
+
    var complete = function () {
.table-hover > tbody > .active:hover > td,
+
      this.transitioning = 0
.table-hover > tbody > .active:hover > th {
+
      this.$element
  background-color: #e8e8e8;
+
        .trigger('hidden.bs.collapse')
}
+
        .removeClass('collapsing')
 +
        .addClass('collapse')
 +
    }
  
.table > thead > tr > .success,
+
    if (!$.support.transition) return complete.call(this)
.table > tbody > tr > .success,
+
.table > tfoot > tr > .success,
+
.table > thead > .success > td,
+
.table > tbody > .success > td,
+
.table > tfoot > .success > td,
+
.table > thead > .success > th,
+
.table > tbody > .success > th,
+
.table > tfoot > .success > th {
+
  background-color: #dff0d8;
+
}
+
  
.table-hover > tbody > tr > .success:hover,
+
    this.$element
.table-hover > tbody > .success:hover > td,
+
      [dimension](0)
.table-hover > tbody > .success:hover > th {
+
      .one($.support.transition.end, $.proxy(complete, this))
   background-color: #d0e9c6;
+
      .emulateTransitionEnd(350)
}
+
   }
  
.table > thead > tr > .danger,
+
   Collapse.prototype.toggle = function () {
.table > tbody > tr > .danger,
+
     this[this.$element.hasClass('in') ? 'hide' : 'show']()
.table > tfoot > tr > .danger,
+
.table > thead > .danger > td,
+
.table > tbody > .danger > td,
+
.table > tfoot > .danger > td,
+
.table > thead > .danger > th,
+
.table > tbody > .danger > th,
+
.table > tfoot > .danger > th {
+
   background-color: #f2dede;
+
}
+
 
+
.table-hover > tbody > tr > .danger:hover,
+
.table-hover > tbody > .danger:hover > td,
+
.table-hover > tbody > .danger:hover > th {
+
  background-color: #ebcccc;
+
}
+
 
+
.table > thead > tr > .warning,
+
.table > tbody > tr > .warning,
+
.table > tfoot > tr > .warning,
+
.table > thead > .warning > td,
+
.table > tbody > .warning > td,
+
.table > tfoot > .warning > td,
+
.table > thead > .warning > th,
+
.table > tbody > .warning > th,
+
.table > tfoot > .warning > th {
+
  background-color: #fcf8e3;
+
}
+
 
+
.table-hover > tbody > tr > .warning:hover,
+
.table-hover > tbody > .warning:hover > td,
+
.table-hover > tbody > .warning:hover > th {
+
  background-color: #faf2cc;
+
}
+
 
+
@media (max-width: 767px) {
+
  .table-responsive {
+
     width: 100%;
+
    margin-bottom: 15px;
+
    overflow-x: scroll;
+
    overflow-y: hidden;
+
    border: 1px solid #dddddd;
+
    -ms-overflow-style: -ms-autohiding-scrollbar;
+
    -webkit-overflow-scrolling: touch;
+
  }
+
  .table-responsive > .table {
+
    margin-bottom: 0;
+
  }
+
  .table-responsive > .table > thead > tr > th,
+
  .table-responsive > .table > tbody > tr > th,
+
  .table-responsive > .table > tfoot > tr > th,
+
  .table-responsive > .table > thead > tr > td,
+
  .table-responsive > .table > tbody > tr > td,
+
  .table-responsive > .table > tfoot > tr > td {
+
    white-space: nowrap;
+
  }
+
  .table-responsive > .table-bordered {
+
    border: 0;
+
  }
+
  .table-responsive > .table-bordered > thead > tr > th:first-child,
+
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
+
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+
  .table-responsive > .table-bordered > thead > tr > td:first-child,
+
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
+
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+
    border-left: 0;
+
  }
+
  .table-responsive > .table-bordered > thead > tr > th:last-child,
+
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
+
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+
  .table-responsive > .table-bordered > thead > tr > td:last-child,
+
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
+
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+
    border-right: 0;
+
  }
+
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
+
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
+
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+
    border-bottom: 0;
+
 
   }
 
   }
}
 
  
fieldset {
 
  padding: 0;
 
  margin: 0;
 
  border: 0;
 
}
 
  
legend {
+
   // COLLAPSE PLUGIN DEFINITION
   display: block;
+
   // ==========================
   width: 100%;
+
  padding: 0;
+
  margin-bottom: 20px;
+
  font-size: 21px;
+
  line-height: inherit;
+
  color: #333333;
+
  border: 0;
+
  border-bottom: 1px solid #e5e5e5;
+
}
+
  
label {
+
   var old = $.fn.collapse
   display: inline-block;
+
  margin-bottom: 5px;
+
  font-weight: bold;
+
}
+
  
input[type="search"] {
+
  $.fn.collapse = function (option) {
   -webkit-box-sizing: border-box;
+
    return this.each(function () {
    -moz-box-sizing: border-box;
+
      var $this   = $(this)
          box-sizing: border-box;
+
      var data    = $this.data('bs.collapse')
}
+
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
  
input[type="radio"],
+
      if (!data && options.toggle && option == 'show') option = !option
input[type="checkbox"] {
+
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
  margin: 4px 0 0;
+
      if (typeof option == 'string') data[option]()
  margin-top: 1px \9;
+
    })
   /* IE8-9 */
+
   }
  
   line-height: normal;
+
   $.fn.collapse.Constructor = Collapse
}
+
  
input[type="file"] {
 
  display: block;
 
}
 
  
select[multiple],
+
  // COLLAPSE NO CONFLICT
select[size] {
+
   // ====================
   height: auto;
+
}
+
  
select optgroup {
+
  $.fn.collapse.noConflict = function () {
  font-family: inherit;
+
    $.fn.collapse = old
  font-size: inherit;
+
    return this
   font-style: inherit;
+
   }
}
+
  
input[type="file"]:focus,
 
input[type="radio"]:focus,
 
input[type="checkbox"]:focus {
 
  outline: thin dotted;
 
  outline: 5px auto -webkit-focus-ring-color;
 
  outline-offset: -2px;
 
}
 
  
input[type="number"]::-webkit-outer-spin-button,
+
  // COLLAPSE DATA-API
input[type="number"]::-webkit-inner-spin-button {
+
   // =================
   height: auto;
+
}
+
  
output {
+
  $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
   display: block;
+
    var $this   = $(this), href
  padding-top: 7px;
+
    var target  = $this.attr('data-target')
  font-size: 14px;
+
        || e.preventDefault()
  line-height: 1.428571429;
+
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
  color: #555555;
+
    var $target = $(target)
  vertical-align: middle;
+
    var data    = $target.data('bs.collapse')
}
+
    var option  = data ? 'toggle' : $this.data()
 +
    var parent  = $this.attr('data-parent')
 +
    var $parent = parent && $(parent)
  
.form-control {
+
    if (!data || !data.transitioning) {
  display: block;
+
      if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
  width: 100%;
+
      $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
  height: 34px;
+
    }
  padding: 6px 12px;
+
  font-size: 14px;
+
  line-height: 1.428571429;
+
  color: #ffffff;
+
  vertical-align: middle;
+
  background-color: #777777;
+
  background-image: none;
+
  border: 1px solid #777777;
+
  border-radius: 4px;
+
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+
          transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+
}
+
  
.form-control:focus {
+
    $target.collapse(option)
   outline: 0;
+
   })
}
+
  
.form-control:-moz-placeholder {
+
}(jQuery);
  color: #ffffff;
+
}
+
  
.form-control::-moz-placeholder {
+
/* ========================================================================
  color: #ffffff;
+
* Bootstrap: dropdown.js v3.1.1
  opacity: 1;
+
* http://getbootstrap.com/javascript/#dropdowns
}
+
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
.form-control:-ms-input-placeholder {
 
  color: #ffffff;
 
}
 
  
.form-control::-webkit-input-placeholder {
+
+function ($) {
   color: #ffffff;
+
   'use strict';
}
+
  
.form-control[disabled],
+
   // DROPDOWN CLASS DEFINITION
.form-control[readonly],
+
   // =========================
fieldset[disabled] .form-control {
+
   cursor: not-allowed;
+
   background-color: #eeeeee;
+
}
+
  
textarea.form-control {
+
  var backdrop = '.dropdown-backdrop'
   height: auto;
+
   var toggle  = '[data-toggle=dropdown]'
}
+
  var Dropdown = function (element) {
 +
    $(element).on('click.bs.dropdown', this.toggle)
 +
  }
  
.form-group {
+
  Dropdown.prototype.toggle = function (e) {
  margin-bottom: 15px;
+
    var $this = $(this)
}
+
  
.radio,
+
    if ($this.is('.disabled, :disabled')) return
.checkbox {
+
  display: block;
+
  min-height: 20px;
+
  padding-left: 20px;
+
  margin-top: 10px;
+
  margin-bottom: 10px;
+
  vertical-align: middle;
+
}
+
  
.radio label,
+
    var $parent  = getParent($this)
.checkbox label {
+
    var isActive = $parent.hasClass('open')
  display: inline;
+
  margin-bottom: 0;
+
  font-weight: normal;
+
  cursor: pointer;
+
}
+
  
.radio input[type="radio"],
+
    clearMenus()
.radio-inline input[type="radio"],
+
.checkbox input[type="checkbox"],
+
.checkbox-inline input[type="checkbox"] {
+
  float: left;
+
  margin-left: -20px;
+
}
+
  
.radio + .radio,
+
    if (!isActive) {
.checkbox + .checkbox {
+
      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
  margin-top: -5px;
+
        // if mobile we use a backdrop because click events don't delegate
}
+
        $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
 +
      }
  
.radio-inline,
+
      var relatedTarget = { relatedTarget: this }
.checkbox-inline {
+
      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
  display: inline-block;
+
  padding-left: 20px;
+
  margin-bottom: 0;
+
  font-weight: normal;
+
  vertical-align: middle;
+
  cursor: pointer;
+
}
+
  
.radio-inline + .radio-inline,
+
      if (e.isDefaultPrevented()) return
.checkbox-inline + .checkbox-inline {
+
  margin-top: 0;
+
  margin-left: 10px;
+
}
+
  
input[type="radio"][disabled],
+
      $parent
input[type="checkbox"][disabled],
+
        .toggleClass('open')
.radio[disabled],
+
        .trigger('shown.bs.dropdown', relatedTarget)
.radio-inline[disabled],
+
.checkbox[disabled],
+
.checkbox-inline[disabled],
+
fieldset[disabled] input[type="radio"],
+
fieldset[disabled] input[type="checkbox"],
+
fieldset[disabled] .radio,
+
fieldset[disabled] .radio-inline,
+
fieldset[disabled] .checkbox,
+
fieldset[disabled] .checkbox-inline {
+
  cursor: not-allowed;
+
}
+
  
.input-sm {
+
      $this.focus()
  height: 30px;
+
    }
  padding: 5px 10px;
+
  font-size: 12px;
+
  line-height: 1.5;
+
  border-radius: 3px;
+
}
+
  
select.input-sm {
+
    return false
   height: 30px;
+
   }
  line-height: 30px;
+
}
+
  
textarea.input-sm {
+
  Dropdown.prototype.keydown = function (e) {
  height: auto;
+
    if (!/(38|40|27)/.test(e.keyCode)) return
}
+
  
.input-lg {
+
    var $this = $(this)
  height: 46px;
+
  padding: 10px 16px;
+
  font-size: 18px;
+
  line-height: 1.33;
+
  border-radius: 6px;
+
}
+
  
select.input-lg {
+
    e.preventDefault()
  height: 46px;
+
    e.stopPropagation()
  line-height: 46px;
+
}
+
  
textarea.input-lg {
+
    if ($this.is('.disabled, :disabled')) return
  height: auto;
+
}
+
  
.has-warning .help-block,
+
    var $parent  = getParent($this)
.has-warning .control-label,
+
    var isActive = $parent.hasClass('open')
.has-warning .radio,
+
.has-warning .checkbox,
+
.has-warning .radio-inline,
+
.has-warning .checkbox-inline {
+
  color: #8a6d3b;
+
}
+
  
.has-warning .form-control {
+
    if (!isActive || (isActive && e.keyCode == 27)) {
  border-color: #8a6d3b;
+
      if (e.which == 27) $parent.find(toggle).focus()
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+
      return $this.click()
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+
    }
}
+
  
.has-warning .form-control:focus {
+
    var desc = ' li:not(.divider):visible a'
  border-color: #66512c;
+
    var $items = $parent.find('[role=menu]' + desc + ', [role=listbox]' + desc)
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
+
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
+
}
+
  
.has-warning .input-group-addon {
+
    if (!$items.length) return
  color: #8a6d3b;
+
  background-color: #fcf8e3;
+
  border-color: #8a6d3b;
+
}
+
  
.has-error .help-block,
+
    var index = $items.index($items.filter(':focus'))
.has-error .control-label,
+
.has-error .radio,
+
.has-error .checkbox,
+
.has-error .radio-inline,
+
.has-error .checkbox-inline {
+
  color: #a94442;
+
}
+
  
.has-error .form-control {
+
    if (e.keyCode == 38 && index > 0)                index--                       // up
  border-color: #a94442;
+
    if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+
    if (!~index)                                      index = 0
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+
}
+
  
.has-error .form-control:focus {
+
    $items.eq(index).focus()
  border-color: #843534;
+
  }
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
+
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
+
}
+
  
.has-error .input-group-addon {
+
  function clearMenus(e) {
  color: #a94442;
+
    $(backdrop).remove()
  background-color: #f2dede;
+
    $(toggle).each(function () {
  border-color: #a94442;
+
      var $parent = getParent($(this))
}
+
      var relatedTarget = { relatedTarget: this }
 +
      if (!$parent.hasClass('open')) return
 +
      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
 +
      if (e.isDefaultPrevented()) return
 +
      $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
 +
    })
 +
  }
  
.has-success .help-block,
+
  function getParent($this) {
.has-success .control-label,
+
    var selector = $this.attr('data-target')
.has-success .radio,
+
.has-success .checkbox,
+
.has-success .radio-inline,
+
.has-success .checkbox-inline {
+
  color: #3c763d;
+
}
+
  
.has-success .form-control {
+
    if (!selector) {
  border-color: #3c763d;
+
      selector = $this.attr('href')
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+
      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+
    }
}
+
  
.has-success .form-control:focus {
+
    var $parent = selector && $(selector)
  border-color: #2b542c;
+
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+
}
+
  
.has-success .input-group-addon {
+
    return $parent && $parent.length ? $parent : $this.parent()
  color: #3c763d;
+
  background-color: #dff0d8;
+
  border-color: #3c763d;
+
}
+
 
+
.form-control-static {
+
  margin-bottom: 0;
+
}
+
 
+
.help-block {
+
  display: block;
+
  margin-top: 5px;
+
  margin-bottom: 10px;
+
  color: #737373;
+
}
+
 
+
@media (min-width: 768px) {
+
  .form-inline .form-group {
+
    display: inline-block;
+
    margin-bottom: 0;
+
    vertical-align: middle;
+
  }
+
  .form-inline .form-control {
+
    display: inline-block;
+
  }
+
  .form-inline select.form-control {
+
    width: auto;
+
  }
+
  .form-inline .radio,
+
  .form-inline .checkbox {
+
    display: inline-block;
+
    padding-left: 0;
+
    margin-top: 0;
+
    margin-bottom: 0;
+
  }
+
  .form-inline .radio input[type="radio"],
+
  .form-inline .checkbox input[type="checkbox"] {
+
    float: none;
+
    margin-left: 0;
+
 
   }
 
   }
}
 
  
.form-horizontal .control-label,
 
.form-horizontal .radio,
 
.form-horizontal .checkbox,
 
.form-horizontal .radio-inline,
 
.form-horizontal .checkbox-inline {
 
  padding-top: 7px;
 
  margin-top: 0;
 
  margin-bottom: 0;
 
}
 
  
.form-horizontal .radio,
+
  // DROPDOWN PLUGIN DEFINITION
.form-horizontal .checkbox {
+
   // ==========================
   min-height: 27px;
+
}
+
  
.form-horizontal .form-group {
+
  var old = $.fn.dropdown
  margin-right: -15px;
+
  margin-left: -15px;
+
}
+
  
.form-horizontal .form-group:before,
+
  $.fn.dropdown = function (option) {
.form-horizontal .form-group:after {
+
    return this.each(function () {
  display: table;
+
      var $this = $(this)
  content: " ";
+
      var data  = $this.data('bs.dropdown')
}
+
  
.form-horizontal .form-group:after {
+
      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
  clear: both;
+
      if (typeof option == 'string') data[option].call($this)
}
+
    })
 +
  }
  
.form-horizontal .form-group:before,
+
  $.fn.dropdown.Constructor = Dropdown
.form-horizontal .form-group:after {
+
  display: table;
+
  content: " ";
+
}
+
  
.form-horizontal .form-group:after {
 
  clear: both;
 
}
 
  
.form-horizontal .form-control-static {
+
   // DROPDOWN NO CONFLICT
   padding-top: 7px;
+
  // ====================
}
+
  
@media (min-width: 768px) {
+
  $.fn.dropdown.noConflict = function () {
  .form-horizontal .control-label {
+
    $.fn.dropdown = old
     text-align: right;
+
     return this
 
   }
 
   }
}
 
  
.btn {
 
  display: inline-block;
 
  text-decoration: none;
 
  color: white;
 
  padding: 6px 12px;
 
  margin-bottom: 0;
 
  font-size: 14px;
 
  font-weight: normal;
 
  line-height: 1.428571429;
 
  text-align: center;
 
  white-space: nowrap;
 
  vertical-align: middle;
 
  cursor: pointer;
 
  background-image: none;
 
  border: 1px solid transparent;
 
  -webkit-user-select: none;
 
    -moz-user-select: none;
 
      -ms-user-select: none;
 
      -o-user-select: none;
 
          user-select: none;
 
}
 
  
.btn:focus {
+
   // APPLY TO STANDARD DROPDOWN ELEMENTS
   outline: thin dotted;
+
   // ===================================
   outline: 5px auto -webkit-focus-ring-color;
+
  outline-offset: -2px;
+
}
+
  
.btn:hover,
+
  $(document)
.btn:focus {
+
    .on('click.bs.dropdown.data-api', clearMenus)
  color: #020202;
+
    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
  text-decoration: none;
+
    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
}
+
    .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu], [role=listbox]', Dropdown.prototype.keydown)
  
.btn:active,
+
}(jQuery);
.btn.active {
+
  background-image: none;
+
  outline: 0;
+
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+
}
+
  
.btn.disabled,
+
/* ========================================================================
.btn[disabled],
+
* Bootstrap: modal.js v3.1.1
fieldset[disabled] .btn {
+
* http://getbootstrap.com/javascript/#modals
  pointer-events: none;
+
* ========================================================================
  cursor: not-allowed;
+
* Copyright 2011-2014 Twitter, Inc.
  opacity: 0.65;
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  filter: alpha(opacity=65);
+
* ======================================================================== */
  -webkit-box-shadow: none;
+
          box-shadow: none;
+
}
+
  
.btn-default {
 
  color: #ffffff;
 
  background-color: transparent;
 
  border-color: #cccccc;
 
  -webkit-transition:0.3s;
 
  -moz-transition:0.3s;
 
  -o-transition:0.3s;
 
  transition:0.3s;
 
  
}
+
+function ($) {
 +
  'use strict';
  
.btn-default:hover,
+
   // MODAL CLASS DEFINITION
.btn-default:focus,
+
   // ======================
.btn-default:active,
+
.btn-default.active,
+
.open .dropdown-toggle.btn-default {
+
   color: #ffffff;
+
   background-color: transparent;
+
  border-color: #ffffff;
+
}
+
  
.btn-default:active,
+
  var Modal = function (element, options) {
.btn-default.active,
+
    this.options  = options
.open .dropdown-toggle.btn-default {
+
    this.$element  = $(element)
   background-image: none;
+
    this.$backdrop =
}
+
    this.isShown   = null
  
.btn-default.disabled,
+
    if (this.options.remote) {
.btn-default[disabled],
+
      this.$element
fieldset[disabled] .btn-default,
+
        .find('.modal-content')
.btn-default.disabled:hover,
+
        .load(this.options.remote, $.proxy(function () {
.btn-default[disabled]:hover,
+
          this.$element.trigger('loaded.bs.modal')
fieldset[disabled] .btn-default:hover,
+
        }, this))
.btn-default.disabled:focus,
+
    }
.btn-default[disabled]:focus,
+
   }
fieldset[disabled] .btn-default:focus,
+
.btn-default.disabled:active,
+
.btn-default[disabled]:active,
+
fieldset[disabled] .btn-default:active,
+
.btn-default.disabled.active,
+
.btn-default[disabled].active,
+
fieldset[disabled] .btn-default.active {
+
   background-color: #020202;
+
  border-color: #020202;
+
}
+
  
.btn-default .badge {
+
  Modal.DEFAULTS = {
  color: #020202;
+
    backdrop: true,
  background-color: transparent;
+
    keyboard: true,
}
+
    show: true
 +
  }
  
/* BUTTON COLOR */
+
  Modal.prototype.toggle = function (_relatedTarget) {
.btn-primary {
+
    return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
  color: #FFF;
+
   }
  background-color: #454444;
+
  -webkit-transition:0.3s;
+
  -moz-transition:0.3s;
+
   -o-transition:0.3s;
+
  transition:0.3s;
+
  
}
+
  Modal.prototype.show = function (_relatedTarget) {
 +
    var that = this
 +
    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
  
/* ACTIVE BUTTON HOVER */
+
    this.$element.trigger(e)
.btn-primary:hover,
+
.btn-primary:focus,
+
.btn-primary:active,
+
.btn-primary.active,
+
.open .dropdown-toggle.btn-primary {
+
  color: #FFF;
+
  background-color: #020202;
+
}
+
  
.btn-primary:active,
+
    if (this.isShown || e.isDefaultPrevented()) return
.btn-primary.active,
+
.open .dropdown-toggle.btn-primary {
+
  background-image: none;
+
}
+
  
.btn-primary.disabled,
+
    this.isShown = true
.btn-primary[disabled],
+
fieldset[disabled] .btn-primary,
+
.btn-primary.disabled:hover,
+
.btn-primary[disabled]:hover,
+
fieldset[disabled] .btn-primary:hover,
+
.btn-primary.disabled:focus,
+
.btn-primary[disabled]:focus,
+
fieldset[disabled] .btn-primary:focus,
+
.btn-primary.disabled:active,
+
.btn-primary[disabled]:active,
+
fieldset[disabled] .btn-primary:active,
+
.btn-primary.disabled.active,
+
.btn-primary[disabled].active,
+
fieldset[disabled] .btn-primary.active {
+
  background-color: transparent;
+
  border-color: #357ebd;
+
}
+
  
.btn-primary .badge {
+
    this.escape()
  color: #020202;
+
  background-color: #fff;
+
}
+
  
.btn-warning {
+
    this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
  color: #020202;
+
  background-color: #020202;
+
  border-color: #eea236;
+
}
+
  
.btn-warning:hover,
+
    this.backdrop(function () {
.btn-warning:focus,
+
      var transition = $.support.transition && that.$element.hasClass('fade')
.btn-warning:active,
+
.btn-warning.active,
+
.open .dropdown-toggle.btn-warning {
+
  color: #ffffff;
+
  background-color: #020202;
+
  border-color: #d58512;
+
}
+
  
.btn-warning:active,
+
      if (!that.$element.parent().length) {
.btn-warning.active,
+
        that.$element.appendTo(document.body) // don't move modals dom position
.open .dropdown-toggle.btn-warning {
+
      }
  background-image: none;
+
}
+
  
.btn-warning.disabled,
+
      that.$element
.btn-warning[disabled],
+
        .show()
fieldset[disabled] .btn-warning,
+
        .scrollTop(0)
.btn-warning.disabled:hover,
+
.btn-warning[disabled]:hover,
+
fieldset[disabled] .btn-warning:hover,
+
.btn-warning.disabled:focus,
+
.btn-warning[disabled]:focus,
+
fieldset[disabled] .btn-warning:focus,
+
.btn-warning.disabled:active,
+
.btn-warning[disabled]:active,
+
fieldset[disabled] .btn-warning:active,
+
.btn-warning.disabled.active,
+
.btn-warning[disabled].active,
+
fieldset[disabled] .btn-warning.active {
+
  background-color: #020202;
+
  border-color: #eea236;
+
}
+
  
.btn-warning .badge {
+
      if (transition) {
  color: #ffffff;
+
        that.$element[0].offsetWidth // force reflow
  background-color: #020202;
+
      }
}
+
  
.btn-danger {
+
      that.$element
  color: #ffffff;
+
        .addClass('in')
  background-color: #d9534f;
+
        .attr('aria-hidden', false)
  border-color: #d43f3a;
+
}
+
  
.btn-danger:hover,
+
      that.enforceFocus()
.btn-danger:focus,
+
.btn-danger:active,
+
.btn-danger.active,
+
.open .dropdown-toggle.btn-danger {
+
  color: #ffffff;
+
  background-color: #d2322d;
+
  border-color: #ac2925;
+
}
+
  
.btn-danger:active,
+
      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
.btn-danger.active,
+
.open .dropdown-toggle.btn-danger {
+
  background-image: none;
+
}
+
  
.btn-danger.disabled,
+
      transition ?
.btn-danger[disabled],
+
        that.$element.find('.modal-dialog') // wait for modal to slide in
fieldset[disabled] .btn-danger,
+
          .one($.support.transition.end, function () {
.btn-danger.disabled:hover,
+
            that.$element.focus().trigger(e)
.btn-danger[disabled]:hover,
+
          })
fieldset[disabled] .btn-danger:hover,
+
          .emulateTransitionEnd(300) :
.btn-danger.disabled:focus,
+
        that.$element.focus().trigger(e)
.btn-danger[disabled]:focus,
+
    })
fieldset[disabled] .btn-danger:focus,
+
   }
.btn-danger.disabled:active,
+
.btn-danger[disabled]:active,
+
fieldset[disabled] .btn-danger:active,
+
.btn-danger.disabled.active,
+
.btn-danger[disabled].active,
+
fieldset[disabled] .btn-danger.active {
+
   background-color: #d9534f;
+
  border-color: #d43f3a;
+
}
+
  
.btn-danger .badge {
+
  Modal.prototype.hide = function (e) {
  color: #d9534f;
+
    if (e) e.preventDefault()
  background-color: #fff;
+
}
+
  
.btn-success {
+
    e = $.Event('hide.bs.modal')
  color: #ffffff;
+
  background-color: #5cb85c;
+
  border-color: #4cae4c;
+
}
+
  
.btn-success:hover,
+
    this.$element.trigger(e)
.btn-success:focus,
+
.btn-success:active,
+
.btn-success.active,
+
.open .dropdown-toggle.btn-success {
+
  color: #ffffff;
+
  background-color: #;
+
  border-color: #398439;
+
}
+
  
.btn-success:active,
+
    if (!this.isShown || e.isDefaultPrevented()) return
.btn-success.active,
+
.open .dropdown-toggle.btn-success {
+
  background-image: none;
+
}
+
  
.btn-success.disabled,
+
    this.isShown = false
.btn-success[disabled],
+
fieldset[disabled] .btn-success,
+
.btn-success.disabled:hover,
+
.btn-success[disabled]:hover,
+
fieldset[disabled] .btn-success:hover,
+
.btn-success.disabled:focus,
+
.btn-success[disabled]:focus,
+
fieldset[disabled] .btn-success:focus,
+
.btn-success.disabled:active,
+
.btn-success[disabled]:active,
+
fieldset[disabled] .btn-success:active,
+
.btn-success.disabled.active,
+
.btn-success[disabled].active,
+
fieldset[disabled] .btn-success.active {
+
  background-color: #5cb85c;
+
  border-color: #4cae4c;
+
}
+
  
.btn-success .badge {
+
    this.escape()
  color: #5cb85c;
+
  background-color: #fff;
+
}
+
  
.btn-info {
+
    $(document).off('focusin.bs.modal')
  color: #ffffff;
+
  background-color: #67c152;
+
  border-color: transparent;
+
}
+
  
.btn-info:hover,
+
    this.$element
.btn-info:focus,
+
      .removeClass('in')
.btn-info:active,
+
      .attr('aria-hidden', true)
.btn-info.active,
+
      .off('click.dismiss.bs.modal')
.open .dropdown-toggle.btn-info {
+
  color: #ffffff;
+
  background-color: #39b3d7;
+
  border-color: #269abc;
+
}
+
  
.btn-info:active,
+
    $.support.transition && this.$element.hasClass('fade') ?
.btn-info.active,
+
      this.$element
.open .dropdown-toggle.btn-info {
+
        .one($.support.transition.end, $.proxy(this.hideModal, this))
  background-image: none;
+
        .emulateTransitionEnd(300) :
}
+
      this.hideModal()
 +
  }
  
.btn-info.disabled,
+
  Modal.prototype.enforceFocus = function () {
.btn-info[disabled],
+
    $(document)
fieldset[disabled] .btn-info,
+
      .off('focusin.bs.modal') // guard against infinite focus loop
.btn-info.disabled:hover,
+
      .on('focusin.bs.modal', $.proxy(function (e) {
.btn-info[disabled]:hover,
+
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
fieldset[disabled] .btn-info:hover,
+
          this.$element.focus()
.btn-info.disabled:focus,
+
        }
.btn-info[disabled]:focus,
+
      }, this))
fieldset[disabled] .btn-info:focus,
+
   }
.btn-info.disabled:active,
+
.btn-info[disabled]:active,
+
fieldset[disabled] .btn-info:active,
+
.btn-info.disabled.active,
+
.btn-info[disabled].active,
+
fieldset[disabled] .btn-info.active {
+
   background-color: #5bc0de;
+
  border-color: #46b8da;
+
}
+
  
.btn-info .badge {
+
  Modal.prototype.escape = function () {
  color: #5bc0de;
+
    if (this.isShown && this.options.keyboard) {
  background-color: #fff;
+
      this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
}
+
        e.which == 27 && this.hide()
 +
      }, this))
 +
    } else if (!this.isShown) {
 +
      this.$element.off('keyup.dismiss.bs.modal')
 +
    }
 +
  }
  
.btn-link {
+
  Modal.prototype.hideModal = function () {
  font-weight: normal;
+
    var that = this
  color: #428bca;
+
    this.$element.hide()
  cursor: pointer;
+
    this.backdrop(function () {
  border-radius: 0;
+
      that.removeBackdrop()
}
+
      that.$element.trigger('hidden.bs.modal')
 +
    })
 +
  }
  
.btn-link,
+
  Modal.prototype.removeBackdrop = function () {
.btn-link:active,
+
    this.$backdrop && this.$backdrop.remove()
.btn-link[disabled],
+
    this.$backdrop = null
fieldset[disabled] .btn-link {
+
   }
   background-color: transparent;
+
  -webkit-box-shadow: none;
+
          box-shadow: none;
+
}
+
  
.btn-link,
+
  Modal.prototype.backdrop = function (callback) {
.btn-link:hover,
+
    var animate = this.$element.hasClass('fade') ? 'fade' : ''
.btn-link:focus,
+
.btn-link:active {
+
  border-color: transparent;
+
}
+
  
.btn-link:hover,
+
    if (this.isShown && this.options.backdrop) {
.btn-link:focus {
+
      var doAnimate = $.support.transition && animate
  color: #2a6496;
+
  text-decoration: underline;
+
  background-color: transparent;
+
}
+
  
.btn-link[disabled]:hover,
+
      this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
fieldset[disabled] .btn-link:hover,
+
        .appendTo(document.body)
.btn-link[disabled]:focus,
+
fieldset[disabled] .btn-link:focus {
+
  color: #999999;
+
  text-decoration: none;
+
}
+
  
.btn-lg {
+
      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
  padding: 15px 16px;
+
        if (e.target !== e.currentTarget) return
  font-size: 18px;
+
        this.options.backdrop == 'static'
  line-height: 1.33;
+
          ? this.$element[0].focus.call(this.$element[0])
  border-radius: 2px;
+
          : this.hide.call(this)
  font-family: 'Duru Sans', Open Sans Light;
+
      }, this))
}
+
  
.btn-sm {
+
      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
  padding: 5px 10px;
+
  font-size: 12px;
+
  line-height: 1.5;
+
  border-radius: 3px;
+
}
+
  
.btn-xs {
+
      this.$backdrop.addClass('in')
  padding: 1px 5px;
+
  font-size: 12px;
+
  line-height: 1.5;
+
  border-radius: 3px;
+
}
+
  
.btn-block {
+
      if (!callback) return
  display: block;
+
  width: 100%;
+
  padding-right: 0;
+
  padding-left: 0;
+
}
+
  
.btn-block + .btn-block {
+
      doAnimate ?
  margin-top: 5px;
+
        this.$backdrop
}
+
          .one($.support.transition.end, callback)
 +
          .emulateTransitionEnd(150) :
 +
        callback()
  
input[type="submit"].btn-block,
+
    } else if (!this.isShown && this.$backdrop) {
input[type="reset"].btn-block,
+
      this.$backdrop.removeClass('in')
input[type="button"].btn-block {
+
  width: 100%;
+
}
+
  
.fade {
+
      $.support.transition && this.$element.hasClass('fade') ?
  opacity: 0;
+
        this.$backdrop
  -webkit-transition: opacity 0.15s linear;
+
          .one($.support.transition.end, callback)
           transition: opacity 0.15s linear;
+
           .emulateTransitionEnd(150) :
}
+
        callback()
  
.fade.in {
+
    } else if (callback) {
  opacity: 1;
+
      callback()
}
+
    }
 +
  }
  
.collapse {
 
  display: none;
 
}
 
  
.collapse.in {
+
   // MODAL PLUGIN DEFINITION
   display: block;
+
  // =======================
}
+
  
.collapsing {
+
   var old = $.fn.modal
  position: relative;
+
  height: 0;
+
  overflow: hidden;
+
   -webkit-transition: height 0.35s ease;
+
          transition: height 0.35s ease;
+
}
+
  
@font-face {
+
  $.fn.modal = function (option, _relatedTarget) {
  font-family: 'Glyphicons Halflings';
+
    return this.each(function () {
   src: url('https://static.igem.org/mediawiki/2015/2/28/Dundee_glyphicons.ttf')
+
      var $this   = $(this)
}
+
      var data    = $this.data('bs.modal')
 +
      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
  
 +
      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
 +
      if (typeof option == 'string') data[option](_relatedTarget)
 +
      else if (options.show) data.show(_relatedTarget)
 +
    })
 +
  }
  
 +
  $.fn.modal.Constructor = Modal
  
  
.glyphicon {
+
   // MODAL NO CONFLICT
   position: relative;
+
   // =================
   top: 1px;
+
  display: inline-block;
+
  font-family: 'Glyphicons Halflings';
+
  -webkit-font-smoothing: antialiased;
+
  font-style: normal;
+
  font-weight: normal;
+
  line-height: 1;
+
  -moz-osx-font-smoothing: grayscale;
+
}
+
  
.glyphicon:empty {
+
  $.fn.modal.noConflict = function () {
  width: 1em;
+
    $.fn.modal = old
}
+
    return this
 +
  }
  
.glyphicon-asterisk:before {
 
  content: "\2a";
 
}
 
  
.glyphicon-plus:before {
+
  // MODAL DATA-API
   content: "\2b";
+
   // ==============
}
+
  
.glyphicon-euro:before {
+
  $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
   content: "\20ac";
+
    var $this   = $(this)
}
+
    var href    = $this.attr('href')
 +
    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
 +
    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
  
.glyphicon-minus:before {
+
    if ($this.is('a')) e.preventDefault()
  content: "\2212";
+
}
+
  
.glyphicon-cloud:before {
+
    $target
  content: "\2601";
+
      .modal(option, this)
}
+
      .one('hide', function () {
 +
        $this.is(':visible') && $this.focus()
 +
      })
 +
  })
  
.glyphicon-envelope:before {
+
  $(document)
  content: "\2709";
+
    .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
}
+
    .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
  
.glyphicon-pencil:before {
+
}(jQuery);
  content: "\270f";
+
}
+
  
.glyphicon-glass:before {
+
/* ========================================================================
  content: "\e001";
+
* Bootstrap: tooltip.js v3.1.1
}
+
* http://getbootstrap.com/javascript/#tooltip
 +
* Inspired by the original jQuery.tipsy by Jason Frame
 +
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
.glyphicon-music:before {
 
  content: "\e002";
 
}
 
  
.glyphicon-search:before {
+
+function ($) {
   content: "\e003";
+
   'use strict';
}
+
  
.glyphicon-heart:before {
+
   // TOOLTIP PUBLIC CLASS DEFINITION
   content: "\e005";
+
  // ===============================
}
+
  
.glyphicon-star:before {
+
  var Tooltip = function (element, options) {
  content: "\e006";
+
    this.type      =
}
+
    this.options    =
 +
    this.enabled    =
 +
    this.timeout    =
 +
    this.hoverState =
 +
    this.$element  = null
  
.glyphicon-star-empty:before {
+
    this.init('tooltip', element, options)
   content: "\e007";
+
   }
}
+
  
.glyphicon-user:before {
+
  Tooltip.DEFAULTS = {
  content: "\e008";
+
    animation: true,
}
+
    placement: 'top',
 +
    selector: false,
 +
    template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
 +
    trigger: 'hover focus',
 +
    title: '',
 +
    delay: 0,
 +
    html: false,
 +
    container: false
 +
  }
  
.glyphicon-film:before {
+
  Tooltip.prototype.init = function (type, element, options) {
  content: "\e009";
+
    this.enabled  = true
}
+
    this.type    = type
 +
    this.$element = $(element)
 +
    this.options  = this.getOptions(options)
  
.glyphicon-th-large:before {
+
    var triggers = this.options.trigger.split(' ')
  content: "\e010";
+
}
+
  
.glyphicon-th:before {
+
    for (var i = triggers.length; i--;) {
  content: "\e011";
+
      var trigger = triggers[i]
}
+
  
.glyphicon-th-list:before {
+
      if (trigger == 'click') {
  content: "\e012";
+
        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
}
+
      } else if (trigger != 'manual') {
 +
        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
 +
        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
  
.glyphicon-ok:before {
+
        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
  content: "\e013";
+
        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
}
+
      }
 +
    }
  
.glyphicon-remove:before {
+
    this.options.selector ?
  content: "\e014";
+
      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
}
+
      this.fixTitle()
 +
  }
  
.glyphicon-zoom-in:before {
+
  Tooltip.prototype.getDefaults = function () {
  content: "\e015";
+
    return Tooltip.DEFAULTS
}
+
  }
  
.glyphicon-zoom-out:before {
+
  Tooltip.prototype.getOptions = function (options) {
  content: "\e016";
+
    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
}
+
  
.glyphicon-off:before {
+
    if (options.delay && typeof options.delay == 'number') {
  content: "\e017";
+
      options.delay = {
}
+
        show: options.delay,
 +
        hide: options.delay
 +
      }
 +
    }
  
.glyphicon-signal:before {
+
    return options
   content: "\e018";
+
   }
}
+
  
.glyphicon-cog:before {
+
  Tooltip.prototype.getDelegateOptions = function () {
  content: "\e019";
+
    var options  = {}
}
+
    var defaults = this.getDefaults()
  
.glyphicon-trash:before {
+
    this._options && $.each(this._options, function (key, value) {
  content: "\e020";
+
      if (defaults[key] != value) options[key] = value
}
+
    })
  
.glyphicon-home:before {
+
    return options
   content: "\e021";
+
   }
}
+
  
.glyphicon-file:before {
+
  Tooltip.prototype.enter = function (obj) {
  content: "\e022";
+
    var self = obj instanceof this.constructor ?
}
+
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
  
.glyphicon-time:before {
+
    clearTimeout(self.timeout)
  content: "\e023";
+
}
+
  
.glyphicon-road:before {
+
    self.hoverState = 'in'
  content: "\e024";
+
}
+
  
.glyphicon-download-alt:before {
+
    if (!self.options.delay || !self.options.delay.show) return self.show()
  content: "\e025";
+
}
+
  
.glyphicon-download-alt:before {
+
    self.timeout = setTimeout(function () {
content: "\e091";
+
      if (self.hoverState == 'in') self.show()
}
+
    }, self.options.delay.show)
 +
  }
  
.glyphicon-download-alt:before {
+
  Tooltip.prototype.leave = function (obj) {
content: "\e003";
+
    var self = obj instanceof this.constructor ?
}
+
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
  
.glyphicon-eyedropper:before {
+
    clearTimeout(self.timeout)
  content: "e091";
+
}
+
  
.glyphicon-briefcase:before {
+
    self.hoverState = 'out'
content: "\e342"
+
}
+
  
.glyphicon-upload:before {
+
    if (!self.options.delay || !self.options.delay.hide) return self.hide()
  content: "\e027";
+
}
+
  
.glyphicon-expand {
+
    self.timeout = setTimeout(function () {
content:"\e158";
+
      if (self.hoverState == 'out') self.hide()
}
+
    }, self.options.delay.hide)
 +
  }
  
.glyphicon-inbox:before {
+
  Tooltip.prototype.show = function () {
  content: "\e028";
+
    var e = $.Event('show.bs.' + this.type)
}
+
  
.glyphicon-play-circle:before {
+
    if (this.hasContent() && this.enabled) {
  content: "\e029";
+
      this.$element.trigger(e)
}
+
  
.glyphicon-repeat:before {
+
      if (e.isDefaultPrevented()) return
  content: "\e030";
+
      var that = this;
}
+
  
.glyphicon-refresh:before {
+
      var $tip = this.tip()
  content: "\e031";
+
}
+
  
.glyphicon-list-alt:before {
+
      this.setContent()
  content: "\e032";
+
}
+
  
.glyphicon-lock:before {
+
      if (this.options.animation) $tip.addClass('fade')
  content: "\e033";
+
}
+
  
.glyphicon-flag:before {
+
      var placement = typeof this.options.placement == 'function' ?
  content: "\e034";
+
        this.options.placement.call(this, $tip[0], this.$element[0]) :
}
+
        this.options.placement
  
.glyphicon-headphones:before {
+
      var autoToken = /\s?auto?\s?/i
  content: "\e035";
+
      var autoPlace = autoToken.test(placement)
}
+
      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
  
.glyphicon-volume-off:before {
+
      $tip
  content: "\e036";
+
        .detach()
}
+
        .css({ top: 0, left: 0, display: 'block' })
 +
        .addClass(placement)
  
.glyphicon-volume-down:before {
+
      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
  content: "\e037";
+
}
+
  
.glyphicon-volume-up:before {
+
      var pos          = this.getPosition()
  content: "\e038";
+
      var actualWidth  = $tip[0].offsetWidth
}
+
      var actualHeight = $tip[0].offsetHeight
  
.glyphicon-qrcode:before {
+
      if (autoPlace) {
  content: "\e039";
+
        var $parent = this.$element.parent()
}
+
  
.glyphicon-barcode:before {
+
        var orgPlacement = placement
  content: "\e040";
+
        var docScroll    = document.documentElement.scrollTop || document.body.scrollTop
}
+
        var parentWidth  = this.options.container == 'body' ? window.innerWidth  : $parent.outerWidth()
 +
        var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()
 +
        var parentLeft  = this.options.container == 'body' ? 0 : $parent.offset().left
  
.glyphicon-tag:before {
+
        placement = placement == 'bottom' && pos.top  + pos.height  + actualHeight - docScroll > parentHeight  ? 'top'    :
   content: "\e041";
+
                    placement == 'top'    && pos.top   - docScroll  - actualHeight < 0                        ? 'bottom' :
}
+
                    placement == 'right'  && pos.right + actualWidth > parentWidth                              ? 'left'  :
 +
                    placement == 'left'  && pos.left  - actualWidth < parentLeft                              ? 'right'  :
 +
                    placement
  
.glyphicon-tags:before {
+
        $tip
  content: "\e042";
+
          .removeClass(orgPlacement)
}
+
          .addClass(placement)
 +
      }
  
.glyphicon-book:before {
+
      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
  content: "\e043";
+
}
+
  
.glyphicon-bookmark:before {
+
      this.applyPlacement(calculatedOffset, placement)
  content: "\e044";
+
      this.hoverState = null
}
+
  
.glyphicon-print:before {
+
      var complete = function() {
  content: "\e045";
+
        that.$element.trigger('shown.bs.' + that.type)
}
+
      }
  
.glyphicon-camera:before {
+
      $.support.transition && this.$tip.hasClass('fade') ?
  content: "\e046";
+
        $tip
}
+
          .one($.support.transition.end, complete)
 +
          .emulateTransitionEnd(150) :
 +
        complete()
 +
    }
 +
  }
  
.glyphicon-font:before {
+
  Tooltip.prototype.applyPlacement = function (offset, placement) {
   content: "\e047";
+
    var replace
}
+
    var $tip   = this.tip()
 +
    var width  = $tip[0].offsetWidth
 +
    var height = $tip[0].offsetHeight
  
.glyphicon-bold:before {
+
    // manually read margins because getBoundingClientRect includes difference
  content: "\e048";
+
    var marginTop = parseInt($tip.css('margin-top'), 10)
}
+
    var marginLeft = parseInt($tip.css('margin-left'), 10)
  
.glyphicon-italic:before {
+
    // we must check for NaN for ie 8/9
  content: "\e049";
+
    if (isNaN(marginTop))  marginTop  = 0
}
+
    if (isNaN(marginLeft)) marginLeft = 0
  
.glyphicon-text-height:before {
+
    offset.top  = offset.top  + marginTop
  content: "\e050";
+
    offset.left = offset.left + marginLeft
}
+
  
.glyphicon-text-width:before {
+
    // $.fn.offset doesn't round pixel values
  content: "\e051";
+
    // so we use setOffset directly with our own function B-0
}
+
    $.offset.setOffset($tip[0], $.extend({
 +
      using: function (props) {
 +
        $tip.css({
 +
          top: Math.round(props.top),
 +
          left: Math.round(props.left)
 +
        })
 +
      }
 +
    }, offset), 0)
  
.glyphicon-align-left:before {
+
    $tip.addClass('in')
  content: "\e052";
+
}
+
  
.glyphicon-align-center:before {
+
    // check to see if placing tip in new offset caused the tip to resize itself
  content: "\e053";
+
    var actualWidth  = $tip[0].offsetWidth
}
+
    var actualHeight = $tip[0].offsetHeight
  
.glyphicon-align-right:before {
+
    if (placement == 'top' && actualHeight != height) {
  content: "\e054";
+
      replace = true
}
+
      offset.top = offset.top + height - actualHeight
 +
    }
  
.glyphicon-align-justify:before {
+
    if (/bottom|top/.test(placement)) {
  content: "\e055";
+
      var delta = 0
}
+
  
.glyphicon-list:before {
+
      if (offset.left < 0) {
  content: "\e056";
+
        delta      = offset.left * -2
}
+
        offset.left = 0
  
.glyphicon-indent-left:before {
+
        $tip.offset(offset)
  content: "\e057";
+
}
+
  
.glyphicon-indent-right:before {
+
        actualWidth  = $tip[0].offsetWidth
  content: "\e058";
+
        actualHeight = $tip[0].offsetHeight
}
+
      }
  
.glyphicon-facetime-video:before {
+
      this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
  content: "\e059";
+
    } else {
}
+
      this.replaceArrow(actualHeight - height, actualHeight, 'top')
 +
    }
  
.glyphicon-picture:before {
+
    if (replace) $tip.offset(offset)
  content: "\e060";
+
}
+
 
+
.glyphicon-map-marker:before {
+
  content: "\e062";
+
}
+
 
+
.glyphicon-adjust:before {
+
  content: "\e063";
+
}
+
 
+
.glyphicon-tint:before {
+
  content: "\e064";
+
}
+
 
+
.glyphicon-edit:before {
+
  content: "\e065";
+
}
+
 
+
.glyphicon-share:before {
+
  content: "\e066";
+
}
+
 
+
.glyphicon-check:before {
+
  content: "\e067";
+
}
+
 
+
.glyphicon-move:before {
+
  content: "\e068";
+
}
+
 
+
.glyphicon-step-backward:before {
+
  content: "\e069";
+
}
+
 
+
.glyphicon-fast-backward:before {
+
  content: "\e070";
+
}
+
 
+
.glyphicon-backward:before {
+
  content: "\e071";
+
}
+
 
+
.glyphicon-play:before {
+
  content: "\e072";
+
}
+
 
+
.glyphicon-pause:before {
+
  content: "\e073";
+
}
+
 
+
.glyphicon-stop:before {
+
  content: "\e074";
+
}
+
 
+
.glyphicon-forward:before {
+
  content: "\e075";
+
}
+
 
+
.glyphicon-fast-forward:before {
+
  content: "\e076";
+
}
+
 
+
.glyphicon-step-forward:before {
+
  content: "\e077";
+
}
+
 
+
.glyphicon-eject:before {
+
  content: "\e078";
+
}
+
 
+
.glyphicon-chevron-left:before {
+
  content: "\e079";
+
}
+
 
+
.glyphicon-chevron-right:before {
+
  content: "\e080";
+
}
+
 
+
.glyphicon-plus-sign:before {
+
  content: "\e081";
+
}
+
 
+
.glyphicon-minus-sign:before {
+
  content: "\e082";
+
}
+
 
+
.glyphicon-remove-sign:before {
+
  content: "\e083";
+
}
+
 
+
.glyphicon-ok-sign:before {
+
  content: "\e084";
+
}
+
 
+
.glyphicon-question-sign:before {
+
  content: "\e085";
+
}
+
 
+
.glyphicon-info-sign:before {
+
  content: "\e086";
+
}
+
 
+
.glyphicon-screenshot:before {
+
  content: "\e087";
+
}
+
 
+
.glyphicon-remove-circle:before {
+
  content: "\e088";
+
}
+
 
+
.glyphicon-ok-circle:before {
+
  content: "\e089";
+
}
+
 
+
.glyphicon-ban-circle:before {
+
  content: "\e090";
+
}
+
 
+
.glyphicon-arrow-left:before {
+
  content: "\e091";
+
}
+
 
+
.glyphicon-arrow-right:before {
+
  content: "\e092";
+
}
+
 
+
.glyphicon-arrow-up:before {
+
  content: "\e093";
+
}
+
 
+
.glyphicon-arrow-down:before {
+
  content: "\e094";
+
}
+
 
+
.glyphicon-share-alt:before {
+
  content: "\e095";
+
}
+
 
+
.glyphicon-resize-full:before {
+
  content: "\e096";
+
}
+
 
+
.glyphicon-resize-small:before {
+
  content: "\e097";
+
}
+
 
+
.glyphicon-exclamation-sign:before {
+
  content: "\e101";
+
}
+
 
+
.glyphicon-gift:before {
+
  content: "\e102";
+
}
+
 
+
.glyphicon-leaf:before {
+
  content: "\e103";
+
}
+
 
+
.glyphicon-fire:before {
+
  content: "\e104";
+
}
+
 
+
.glyphicon-eye-open:before {
+
  content: "\e105";
+
}
+
 
+
.glyphicon-eye-close:before {
+
  content: "\e106";
+
}
+
 
+
.glyphicon-warning-sign:before {
+
  content: "\e107";
+
}
+
 
+
.glyphicon-plane:before {
+
  content: "\e108";
+
}
+
 
+
.glyphicon-calendar:before {
+
  content: "\e109";
+
}
+
 
+
.glyphicon-random:before {
+
  content: "\e110";
+
}
+
 
+
.glyphicon-comment:before {
+
  content: "\e111";
+
}
+
 
+
.glyphicon-magnet:before {
+
  content: "\e112";
+
}
+
 
+
.glyphicon-chevron-up:before {
+
  content: "\e113";
+
}
+
 
+
.glyphicon-chevron-down:before {
+
  content: "\e114";
+
}
+
 
+
.glyphicon-retweet:before {
+
  content: "\e115";
+
}
+
 
+
.glyphicon-shopping-cart:before {
+
  content: "\e116";
+
}
+
 
+
.glyphicon-folder-close:before {
+
  content: "\e117";
+
}
+
 
+
.glyphicon-folder-open:before {
+
  content: "\e118";
+
}
+
 
+
.glyphicon-resize-vertical:before {
+
  content: "\e119";
+
}
+
 
+
.glyphicon-resize-horizontal:before {
+
  content: "\e120";
+
}
+
 
+
.glyphicon-hdd:before {
+
  content: "\e121";
+
}
+
 
+
.glyphicon-bullhorn:before {
+
  content: "\e122";
+
}
+
 
+
.glyphicon-bell:before {
+
  content: "\e123";
+
}
+
 
+
.glyphicon-certificate:before {
+
  content: "\e124";
+
}
+
 
+
.glyphicon-thumbs-up:before {
+
  content: "\e125";
+
}
+
 
+
.glyphicon-thumbs-down:before {
+
  content: "\e126";
+
}
+
 
+
.glyphicon-hand-right:before {
+
  content: "\e127";
+
}
+
 
+
.glyphicon-hand-left:before {
+
  content: "\e128";
+
}
+
 
+
.glyphicon-hand-up:before {
+
  content: "\e129";
+
}
+
 
+
.glyphicon-hand-down:before {
+
  content: "\e130";
+
}
+
 
+
.glyphicon-circle-arrow-right:before {
+
  content: "\e131";
+
}
+
 
+
.glyphicon-circle-arrow-left:before {
+
  content: "\e132";
+
}
+
 
+
.glyphicon-circle-arrow-up:before {
+
  content: "\e133";
+
}
+
 
+
.glyphicon-circle-arrow-down:before {
+
  content: "\e134";
+
}
+
 
+
.glyphicon-globe:before {
+
  content: "\e135";
+
}
+
 
+
.glyphicon-wrench:before {
+
  content: "\e136";
+
}
+
 
+
.glyphicon-tasks:before {
+
  content: "\e137";
+
}
+
 
+
.glyphicon-filter:before {
+
  content: "\e138";
+
}
+
 
+
.glyphicon-briefcase:before {
+
  content: "\e139";
+
}
+
 
+
.glyphicon-fullscreen:before {
+
  content: "\e140";
+
}
+
 
+
.glyphicon-dashboard:before {
+
  content: "\e141";
+
}
+
 
+
.glyphicon-paperclip:before {
+
  content: "\e142";
+
}
+
 
+
.glyphicon-heart-empty:before {
+
  content: "\e143";
+
}
+
 
+
.glyphicon-link:before {
+
  content: "\e144";
+
}
+
 
+
.glyphicon-phone:before {
+
  content: "\e145";
+
}
+
 
+
.glyphicon-pushpin:before {
+
  content: "\e146";
+
}
+
 
+
.glyphicon-usd:before {
+
  content: "\e148";
+
}
+
 
+
.glyphicon-gbp:before {
+
  content: "\e149";
+
}
+
 
+
.glyphicon-sort:before {
+
  content: "\e150";
+
}
+
 
+
.glyphicon-sort-by-alphabet:before {
+
  content: "\e151";
+
}
+
 
+
.glyphicon-sort-by-alphabet-alt:before {
+
  content: "\e152";
+
}
+
 
+
.glyphicon-sort-by-order:before {
+
  content: "\e153";
+
}
+
 
+
.glyphicon-sort-by-order-alt:before {
+
  content: "\e154";
+
}
+
 
+
.glyphicon-sort-by-attributes:before {
+
  content: "\e155";
+
}
+
 
+
.glyphicon-sort-by-attributes-alt:before {
+
  content: "\e156";
+
}
+
 
+
.glyphicon-unchecked:before {
+
  content: "\e157";
+
}
+
 
+
.glyphicon-expand:before {
+
  content: "\e158";
+
}
+
 
+
.glyphicon-collapse-down:before {
+
  content: "\e159";
+
}
+
 
+
.glyphicon-collapse-up:before {
+
  content: "\e160";
+
}
+
 
+
.glyphicon-log-in:before {
+
  content: "\e161";
+
}
+
 
+
.glyphicon-flash:before {
+
  content: "\e162";
+
}
+
 
+
.glyphicon-log-out:before {
+
  content: "\e163";
+
}
+
 
+
.glyphicon-new-window:before {
+
  content: "\e164";
+
}
+
 
+
.glyphicon-record:before {
+
  content: "\e165";
+
}
+
 
+
.glyphicon-save:before {
+
  content: "\e166";
+
}
+
 
+
.glyphicon-open:before {
+
  content: "\e167";
+
}
+
 
+
.glyphicon-saved:before {
+
  content: "\e168";
+
}
+
 
+
.glyphicon-import:before {
+
  content: "\e169";
+
}
+
 
+
.glyphicon-export:before {
+
  content: "\e170";
+
}
+
 
+
.glyphicon-send:before {
+
  content: "\e171";
+
}
+
 
+
.glyphicon-floppy-disk:before {
+
  content: "\e172";
+
}
+
 
+
.glyphicon-floppy-saved:before {
+
  content: "\e173";
+
}
+
 
+
.glyphicon-floppy-remove:before {
+
  content: "\e174";
+
}
+
 
+
.glyphicon-floppy-save:before {
+
  content: "\e175";
+
}
+
 
+
.glyphicon-floppy-open:before {
+
  content: "\e176";
+
}
+
 
+
.glyphicon-credit-card:before {
+
  content: "\e177";
+
}
+
 
+
.glyphicon-transfer:before {
+
  content: "\e178";
+
}
+
 
+
.glyphicon-cutlery:before {
+
  content: "\e179";
+
}
+
 
+
.glyphicon-header:before {
+
  content: "\e180";
+
}
+
 
+
.glyphicon-compressed:before {
+
  content: "\e181";
+
}
+
 
+
.glyphicon-earphone:before {
+
  content: "\e182";
+
}
+
 
+
.glyphicon-phone-alt:before {
+
  content: "\e183";
+
}
+
 
+
.glyphicon-tower:before {
+
  content: "\e184";
+
}
+
 
+
.glyphicon-stats:before {
+
  content: "\e185";
+
}
+
 
+
.glyphicon-sd-video:before {
+
  content: "\e186";
+
}
+
 
+
.glyphicon-hd-video:before {
+
  content: "\e187";
+
}
+
 
+
.glyphicon-subtitles:before {
+
  content: "\e188";
+
}
+
 
+
.glyphicon-sound-stereo:before {
+
  content: "\e189";
+
}
+
 
+
.glyphicon-sound-dolby:before {
+
  content: "\e190";
+
}
+
 
+
.glyphicon-sound-5-1:before {
+
  content: "\e191";
+
}
+
 
+
.glyphicon-sound-6-1:before {
+
  content: "\e192";
+
}
+
 
+
.glyphicon-sound-7-1:before {
+
  content: "\e193";
+
}
+
 
+
.glyphicon-copyright-mark:before {
+
  content: "\e194";
+
}
+
 
+
.glyphicon-registration-mark:before {
+
  content: "\e195";
+
}
+
 
+
.glyphicon-cloud-download:before {
+
  content: "\e197";
+
}
+
 
+
.glyphicon-cloud-upload:before {
+
  content: "\e198";
+
}
+
 
+
.glyphicon-tree-conifer:before {
+
  content: "\e199";
+
}
+
 
+
.glyphicon-tree-deciduous:before {
+
  content: "\e200";
+
}
+
 
+
.caret {
+
  display: inline-block;
+
  width: 0;
+
  height: 0;
+
  margin-left: 2px;
+
  vertical-align: middle;
+
  border-top: 4px solid;
+
  border-right: 4px solid transparent;
+
  border-left: 4px solid transparent;
+
}
+
 
+
.dropdown {
+
  position: relative;
+
}
+
 
+
.dropdown-toggle:focus {
+
  outline: 0;
+
}
+
 
+
.dropdown-menu {
+
  position: absolute;
+
  top: 100%;
+
  left: 0;
+
  z-index: 1000;
+
  display: none;
+
  float: left;
+
  min-width: 160px;
+
  padding: 5px 0;
+
  margin: 2px 0 0;
+
  font-size: 14px;
+
  list-style: none;
+
  background-color: #ffffff;
+
  border: 1px solid #cccccc;
+
  border: 1px solid rgba(0, 0, 0, 0.15);
+
  border-radius: 4px;
+
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+
  background-clip: padding-box;
+
}
+
 
+
.dropdown-menu.pull-right {
+
  right: 0;
+
  left: auto;
+
}
+
 
+
.dropdown-menu .divider {
+
  height: 1px;
+
  margin: 9px 0;
+
  overflow: hidden;
+
  background-color: #e5e5e5;
+
}
+
 
+
.dropdown-menu > li > a {
+
  display: block;
+
  padding: 3px 15px;
+
  clear: both;
+
  font-weight: normal;
+
  line-height: 1.428571429;
+
  color: #333333;
+
  white-space: nowrap;
+
}
+
 
+
.dropdown-menu > li > a:hover,
+
.dropdown-menu > li > a:focus {
+
  color: #262626;
+
  text-decoration: none;
+
  background-color: #f5f5f5;
+
}
+
 
+
.dropdown-menu > .active > a,
+
.dropdown-menu > .active > a:hover,
+
.dropdown-menu > .active > a:focus {
+
  color: #ffffff;
+
  text-decoration: none;
+
  background-color: #428bca;
+
  outline: 0;
+
}
+
 
+
.dropdown-menu > .disabled > a,
+
.dropdown-menu > .disabled > a:hover,
+
.dropdown-menu > .disabled > a:focus {
+
  color: #999999;
+
}
+
 
+
.dropdown-menu > .disabled > a:hover,
+
.dropdown-menu > .disabled > a:focus {
+
  text-decoration: none;
+
  cursor: not-allowed;
+
  background-color: transparent;
+
  background-image: none;
+
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
+
}
+
 
+
.open > .dropdown-menu {
+
  display: block;
+
}
+
 
+
.open > a {
+
  outline: 0;
+
}
+
 
+
.dropdown-header {
+
  display: block;
+
  padding: 3px 15px;
+
  font-size: 12px;
+
  line-height: 1.428571429;
+
  color: #999999;
+
}
+
 
+
.dropdown-backdrop {
+
  position: fixed;
+
  top: 0;
+
  right: 0;
+
  bottom: 0;
+
  left: 0;
+
  z-index: 990;
+
}
+
 
+
.pull-right > .dropdown-menu {
+
  right: 0;
+
  left: auto;
+
}
+
 
+
.dropup .caret,
+
.navbar-fixed-bottom .dropdown .caret {
+
  border-top: 0;
+
  border-bottom: 4px solid;
+
  content: "";
+
}
+
 
+
.dropup .dropdown-menu,
+
.navbar-fixed-bottom .dropdown .dropdown-menu {
+
  top: auto;
+
  bottom: 100%;
+
  margin-bottom: 1px;
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar-right .dropdown-menu {
+
    right: 0;
+
    left: auto;
+
 
   }
 
   }
}
 
  
.btn-group,
+
   Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
.btn-group-vertical {
+
    this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '')
   position: relative;
+
  display: inline-block;
+
  vertical-align: middle;
+
}
+
 
+
.btn-group > .btn,
+
.btn-group-vertical > .btn {
+
  position: relative;
+
  float: left;
+
}
+
 
+
.btn-group > .btn:hover,
+
.btn-group-vertical > .btn:hover,
+
.btn-group > .btn:focus,
+
.btn-group-vertical > .btn:focus,
+
.btn-group > .btn:active,
+
.btn-group-vertical > .btn:active,
+
.btn-group > .btn.active,
+
.btn-group-vertical > .btn.active {
+
  z-index: 2;
+
}
+
 
+
.btn-group > .btn:focus,
+
.btn-group-vertical > .btn:focus {
+
  outline: none;
+
}
+
 
+
.btn-group .btn + .btn,
+
.btn-group .btn + .btn-group,
+
.btn-group .btn-group + .btn,
+
.btn-group .btn-group + .btn-group {
+
  margin-left: -1px;
+
}
+
 
+
.btn-toolbar:before,
+
.btn-toolbar:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.btn-toolbar:after {
+
  clear: both;
+
}
+
 
+
.btn-toolbar:before,
+
.btn-toolbar:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.btn-toolbar:after {
+
  clear: both;
+
}
+
 
+
.btn-toolbar .btn-group {
+
  float: left;
+
}
+
 
+
.btn-toolbar > .btn + .btn,
+
.btn-toolbar > .btn-group + .btn,
+
.btn-toolbar > .btn + .btn-group,
+
.btn-toolbar > .btn-group + .btn-group {
+
  margin-left: 5px;
+
}
+
 
+
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+
  border-radius: 0;
+
}
+
 
+
.btn-group > .btn:first-child {
+
  margin-left: 0;
+
}
+
 
+
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
+
  border-top-right-radius: 0;
+
  border-bottom-right-radius: 0;
+
}
+
 
+
.btn-group > .btn:last-child:not(:first-child),
+
.btn-group > .dropdown-toggle:not(:first-child) {
+
  border-bottom-left-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
 
+
.btn-group > .btn-group {
+
  float: left;
+
}
+
 
+
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+
  border-radius: 0;
+
}
+
 
+
.btn-group > .btn-group:first-child > .btn:last-child,
+
.btn-group > .btn-group:first-child > .dropdown-toggle {
+
  border-top-right-radius: 0;
+
  border-bottom-right-radius: 0;
+
}
+
 
+
.btn-group > .btn-group:last-child > .btn:first-child {
+
  border-bottom-left-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
 
+
.btn-group .dropdown-toggle:active,
+
.btn-group.open .dropdown-toggle {
+
  outline: 0;
+
}
+
 
+
.btn-group-xs > .btn {
+
  padding: 1px 5px;
+
  font-size: 12px;
+
  line-height: 1.5;
+
  border-radius: 3px;
+
}
+
 
+
.btn-group-sm > .btn {
+
  padding: 5px 10px;
+
  font-size: 12px;
+
  line-height: 1.5;
+
  border-radius: 3px;
+
}
+
 
+
.btn-group-lg > .btn {
+
  padding: 10px 16px;
+
  font-size: 18px;
+
  line-height: 1.33;
+
  border-radius: 6px;
+
}
+
 
+
.btn-group > .btn + .dropdown-toggle {
+
  padding-right: 8px;
+
  padding-left: 8px;
+
}
+
 
+
.btn-group > .btn-lg + .dropdown-toggle {
+
  padding-right: 12px;
+
  padding-left: 12px;
+
}
+
 
+
.btn-group.open .dropdown-toggle {
+
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+
}
+
 
+
.btn-group.open .dropdown-toggle.btn-link {
+
  -webkit-box-shadow: none;
+
          box-shadow: none;
+
}
+
 
+
.btn .caret {
+
  margin-left: 0;
+
}
+
 
+
.btn-lg .caret {
+
  border-width: 5px 5px 0;
+
  border-bottom-width: 0;
+
}
+
 
+
.dropup .btn-lg .caret {
+
  border-width: 0 5px 5px;
+
}
+
 
+
.btn-group-vertical > .btn,
+
.btn-group-vertical > .btn-group,
+
.btn-group-vertical > .btn-group > .btn {
+
  display: block;
+
  float: none;
+
  width: 100%;
+
  max-width: 100%;
+
}
+
 
+
.btn-group-vertical > .btn-group:before,
+
.btn-group-vertical > .btn-group:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.btn-group-vertical > .btn-group:after {
+
  clear: both;
+
}
+
 
+
.btn-group-vertical > .btn-group:before,
+
.btn-group-vertical > .btn-group:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.btn-group-vertical > .btn-group:after {
+
  clear: both;
+
}
+
 
+
.btn-group-vertical > .btn-group > .btn {
+
  float: none;
+
}
+
 
+
.btn-group-vertical > .btn + .btn,
+
.btn-group-vertical > .btn + .btn-group,
+
.btn-group-vertical > .btn-group + .btn,
+
.btn-group-vertical > .btn-group + .btn-group {
+
  margin-top: -1px;
+
  margin-left: 0;
+
}
+
 
+
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
+
  border-radius: 0;
+
}
+
 
+
.btn-group-vertical > .btn:first-child:not(:last-child) {
+
  border-top-right-radius: 4px;
+
  border-bottom-right-radius: 0;
+
  border-bottom-left-radius: 0;
+
}
+
 
+
.btn-group-vertical > .btn:last-child:not(:first-child) {
+
  border-top-right-radius: 0;
+
  border-bottom-left-radius: 4px;
+
  border-top-left-radius: 0;
+
}
+
 
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+
  border-radius: 0;
+
}
+
 
+
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
+
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
+
  border-bottom-right-radius: 0;
+
  border-bottom-left-radius: 0;
+
}
+
 
+
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
+
  border-top-right-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
 
+
.btn-group-justified {
+
  display: table;
+
  width: 100%;
+
  border-collapse: separate;
+
  table-layout: fixed;
+
}
+
 
+
.btn-group-justified > .btn,
+
.btn-group-justified > .btn-group {
+
  display: table-cell;
+
  float: none;
+
  width: 1%;
+
}
+
 
+
.btn-group-justified > .btn-group .btn {
+
  width: 100%;
+
}
+
 
+
[data-toggle="buttons"] > .btn > input[type="radio"],
+
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
+
  display: none;
+
}
+
 
+
.input-group {
+
  position: relative;
+
  display: table;
+
  border-collapse: separate;
+
}
+
 
+
.input-group[class*="col-"] {
+
  float: none;
+
  padding-right: 0;
+
  padding-left: 0;
+
}
+
 
+
.input-group .form-control {
+
  width: 100%;
+
  margin-bottom: 0;
+
}
+
 
+
.input-group-lg > .form-control,
+
.input-group-lg > .input-group-addon,
+
.input-group-lg > .input-group-btn > .btn {
+
  height: 46px;
+
  padding: 10px 16px;
+
  font-size: 18px;
+
  line-height: 1.33;
+
  border-radius: 6px;
+
}
+
 
+
select.input-group-lg > .form-control,
+
select.input-group-lg > .input-group-addon,
+
select.input-group-lg > .input-group-btn > .btn {
+
  height: 46px;
+
  line-height: 46px;
+
}
+
 
+
textarea.input-group-lg > .form-control,
+
textarea.input-group-lg > .input-group-addon,
+
textarea.input-group-lg > .input-group-btn > .btn {
+
  height: auto;
+
}
+
 
+
.input-group-sm > .form-control,
+
.input-group-sm > .input-group-addon,
+
.input-group-sm > .input-group-btn > .btn {
+
  height: 30px;
+
  padding: 5px 10px;
+
  font-size: 12px;
+
  line-height: 1.5;
+
  border-radius: 3px;
+
}
+
 
+
select.input-group-sm > .form-control,
+
select.input-group-sm > .input-group-addon,
+
select.input-group-sm > .input-group-btn > .btn {
+
  height: 30px;
+
  line-height: 30px;
+
}
+
 
+
textarea.input-group-sm > .form-control,
+
textarea.input-group-sm > .input-group-addon,
+
textarea.input-group-sm > .input-group-btn > .btn {
+
  height: auto;
+
}
+
 
+
.input-group-addon,
+
.input-group-btn,
+
.input-group .form-control {
+
  display: table-cell;
+
}
+
 
+
.input-group-addon:not(:first-child):not(:last-child),
+
.input-group-btn:not(:first-child):not(:last-child),
+
.input-group .form-control:not(:first-child):not(:last-child) {
+
  border-radius: 0;
+
}
+
 
+
.input-group-addon,
+
.input-group-btn {
+
  width: 1%;
+
  white-space: nowrap;
+
  vertical-align: middle;
+
}
+
 
+
.input-group-addon {
+
  padding: 6px 12px;
+
  font-size: 14px;
+
  font-weight: normal;
+
  line-height: 1;
+
  color: #555555;
+
  text-align: center;
+
  background-color: #eeeeee;
+
  border: 1px solid #cccccc;
+
  border-radius: 4px;
+
}
+
 
+
.input-group-addon.input-sm {
+
  padding: 5px 10px;
+
  font-size: 12px;
+
  border-radius: 3px;
+
}
+
 
+
.input-group-addon.input-lg {
+
  padding: 10px 16px;
+
  font-size: 18px;
+
  border-radius: 6px;
+
}
+
 
+
.input-group-addon input[type="radio"],
+
.input-group-addon input[type="checkbox"] {
+
  margin-top: 0;
+
}
+
 
+
.input-group .form-control:first-child,
+
.input-group-addon:first-child,
+
.input-group-btn:first-child > .btn,
+
.input-group-btn:first-child > .dropdown-toggle,
+
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
+
  border-top-right-radius: 0;
+
  border-bottom-right-radius: 0;
+
}
+
 
+
.input-group-addon:first-child {
+
  border-right: 0;
+
}
+
 
+
.input-group .form-control:last-child,
+
.input-group-addon:last-child,
+
.input-group-btn:last-child > .btn,
+
.input-group-btn:last-child > .dropdown-toggle,
+
.input-group-btn:first-child > .btn:not(:first-child) {
+
  border-bottom-left-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
 
+
.input-group-addon:last-child {
+
  border-left: 0;
+
}
+
 
+
.input-group-btn {
+
  position: relative;
+
  white-space: nowrap;
+
}
+
 
+
.input-group-btn:first-child > .btn {
+
  margin-right: -1px;
+
}
+
 
+
.input-group-btn:last-child > .btn {
+
  margin-left: -1px;
+
}
+
 
+
.input-group-btn > .btn {
+
  position: relative;
+
}
+
 
+
.input-group-btn > .btn + .btn {
+
  margin-left: -4px;
+
}
+
 
+
.input-group-btn > .btn:hover,
+
.input-group-btn > .btn:active {
+
  z-index: 2;
+
}
+
 
+
.nav {
+
  padding-left: 0;
+
  margin-bottom: 0;
+
  list-style: none;
+
}
+
 
+
.nav:before,
+
.nav:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.nav:after {
+
  clear: both;
+
}
+
 
+
.nav:before,
+
.nav:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.nav:after {
+
  clear: both;
+
}
+
 
+
.nav > li {
+
  position: relative;
+
  display: block;
+
}
+
 
+
.nav > li > a {
+
  position: relative;
+
  display: block;
+
  padding: 10px 15px;
+
}
+
 
+
.nav > li > a:hover,
+
.nav > li > a:focus {
+
  text-decoration: none;
+
  background-color: #eeeeee;
+
}
+
 
+
.nav > li.disabled > a {
+
  color: #999999;
+
}
+
 
+
.nav > li.disabled > a:hover,
+
.nav > li.disabled > a:focus {
+
  color: #999999;
+
  text-decoration: none;
+
  cursor: not-allowed;
+
  background-color: transparent;
+
}
+
 
+
.nav .open > a,
+
.nav .open > a:hover,
+
.nav .open > a:focus {
+
  background-color: #eeeeee;
+
  border-color: #428bca;
+
}
+
 
+
.nav .nav-divider {
+
  height: 1px;
+
  margin: 9px 0;
+
  overflow: hidden;
+
  background-color: #e5e5e5;
+
}
+
 
+
.nav > li > a > img {
+
  max-width: none;
+
}
+
 
+
.nav-tabs {
+
  border-bottom: 1px solid #dddddd;
+
}
+
 
+
.nav-tabs > li {
+
  float: left;
+
  margin-bottom: -1px;
+
}
+
 
+
.nav-tabs > li > a {
+
  margin-right: 2px;
+
  line-height: 1.428571429;
+
  border: 1px solid transparent;
+
  border-radius: 4px 4px 0 0;
+
}
+
 
+
.nav-tabs > li > a:hover {
+
  border-color: #eeeeee #eeeeee #dddddd;
+
}
+
 
+
.nav-tabs > li.active > a,
+
.nav-tabs > li.active > a:hover,
+
.nav-tabs > li.active > a:focus {
+
  color: #555555;
+
  cursor: default;
+
  background-color: #ffffff;
+
  border: 1px solid #dddddd;
+
  border-bottom-color: transparent;
+
}
+
 
+
.nav-tabs.nav-justified {
+
  width: 100%;
+
  border-bottom: 0;
+
}
+
 
+
.nav-tabs.nav-justified > li {
+
  float: none;
+
}
+
 
+
.nav-tabs.nav-justified > li > a {
+
  margin-bottom: 5px;
+
  text-align: center;
+
}
+
 
+
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
+
  top: auto;
+
  left: auto;
+
}
+
 
+
@media (min-width: 768px) {
+
  .nav-tabs.nav-justified > li {
+
    display: table-cell;
+
    width: 1%;
+
 
   }
 
   }
  .nav-tabs.nav-justified > li > a {
 
    margin-bottom: 0;
 
  }
 
}
 
  
.nav-tabs.nav-justified > li > a {
+
  Tooltip.prototype.setContent = function () {
  margin-right: 0;
+
    var $tip  = this.tip()
  border-radius: 4px;
+
    var title = this.getTitle()
}
+
  
.nav-tabs.nav-justified > .active > a,
+
    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
.nav-tabs.nav-justified > .active > a:hover,
+
     $tip.removeClass('fade in top bottom left right')
.nav-tabs.nav-justified > .active > a:focus {
+
  border: 1px solid #dddddd;
+
}
+
 
+
@media (min-width: 768px) {
+
  .nav-tabs.nav-justified > li > a {
+
     border-bottom: 1px solid #dddddd;
+
    border-radius: 4px 4px 0 0;
+
  }
+
  .nav-tabs.nav-justified > .active > a,
+
  .nav-tabs.nav-justified > .active > a:hover,
+
  .nav-tabs.nav-justified > .active > a:focus {
+
    border-bottom-color: #ffffff;
+
 
   }
 
   }
}
 
  
.nav-pills > li {
+
  Tooltip.prototype.hide = function () {
  float: left;
+
    var that = this
}
+
    var $tip = this.tip()
 +
    var e    = $.Event('hide.bs.' + this.type)
  
.nav-pills > li > a {
+
    function complete() {
  border-radius: 4px;
+
      if (that.hoverState != 'in') $tip.detach()
}
+
      that.$element.trigger('hidden.bs.' + that.type)
 +
    }
  
.nav-pills > li + li {
+
    this.$element.trigger(e)
  margin-left: 2px;
+
}
+
  
.nav-pills > li.active > a,
+
    if (e.isDefaultPrevented()) return
.nav-pills > li.active > a:hover,
+
.nav-pills > li.active > a:focus {
+
  color: #ffffff;
+
  background-color: #428bca;
+
}
+
  
.nav-stacked > li {
+
    $tip.removeClass('in')
  float: none;
+
}
+
  
.nav-stacked > li + li {
+
    $.support.transition && this.$tip.hasClass('fade') ?
  margin-top: 2px;
+
      $tip
  margin-left: 0;
+
        .one($.support.transition.end, complete)
}
+
        .emulateTransitionEnd(150) :
 +
      complete()
  
.nav-justified {
+
    this.hoverState = null
  width: 100%;
+
}
+
  
.nav-justified > li {
+
     return this
  float: none;
+
}
+
 
+
.nav-justified > li > a {
+
  margin-bottom: 5px;
+
  text-align: center;
+
}
+
 
+
.nav-justified > .dropdown .dropdown-menu {
+
  top: auto;
+
  left: auto;
+
}
+
 
+
@media (min-width: 768px) {
+
  .nav-justified > li {
+
     display: table-cell;
+
    width: 1%;
+
  }
+
  .nav-justified > li > a {
+
    margin-bottom: 0;
+
 
   }
 
   }
}
 
  
.nav-tabs-justified {
+
  Tooltip.prototype.fixTitle = function () {
  border-bottom: 0;
+
    var $e = this.$element
}
+
    if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
 
+
      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
.nav-tabs-justified > li > a {
+
     }
  margin-right: 0;
+
  border-radius: 4px;
+
}
+
 
+
.nav-tabs-justified > .active > a,
+
.nav-tabs-justified > .active > a:hover,
+
.nav-tabs-justified > .active > a:focus {
+
  border: 1px solid #dddddd;
+
}
+
 
+
@media (min-width: 768px) {
+
  .nav-tabs-justified > li > a {
+
     border-bottom: 1px solid #dddddd;
+
    border-radius: 4px 4px 0 0;
+
 
   }
 
   }
  .nav-tabs-justified > .active > a,
 
  .nav-tabs-justified > .active > a:hover,
 
  .nav-tabs-justified > .active > a:focus {
 
    border-bottom-color: #ffffff;
 
  }
 
}
 
  
.tab-content > .tab-pane {
+
   Tooltip.prototype.hasContent = function () {
   display: none;
+
    return this.getTitle()
}
+
 
+
.tab-content > .active {
+
  display: block;
+
}
+
 
+
.nav-tabs .dropdown-menu {
+
  margin-top: -1px;
+
  border-top-right-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
 
+
.navbar {
+
  position: relative;
+
  min-height: 50px;
+
  /*margin-bottom: 20px;*/
+
  border: 0px solid transparent;
+
}
+
 
+
.navbar:before,
+
.navbar:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.navbar:after {
+
  clear: both;
+
}
+
 
+
.navbar:before,
+
.navbar:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.navbar:after {
+
  clear: both;
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar {
+
    border-radius: 0px;
+
 
   }
 
   }
}
 
  
.navbar-header:before,
+
  Tooltip.prototype.getPosition = function () {
.navbar-header:after {
+
    var el = this.$element[0]
  display: table;
+
    return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
  content: " ";
+
      width: el.offsetWidth,
}
+
      height: el.offsetHeight
 
+
    }, this.$element.offset())
.navbar-header:after {
+
  clear: both;
+
}
+
 
+
.navbar-header:before,
+
.navbar-header:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.navbar-header:after {
+
  clear: both;
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar-header {
+
    float: left;
+
 
   }
 
   }
}
 
 
.navbar-collapse {
 
  max-height: 500px;
 
  padding-right: 15px;
 
  padding-left: 15px;
 
  overflow-x: visible;
 
  border-top: 1px solid transparent;
 
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
 
  -webkit-overflow-scrolling: touch;
 
}
 
 
.navbar-collapse:before,
 
.navbar-collapse:after {
 
  display: table;
 
  content: " ";
 
}
 
 
.navbar-collapse:after {
 
  clear: both;
 
}
 
 
.navbar-collapse:before,
 
.navbar-collapse:after {
 
  display: table;
 
  content: " ";
 
}
 
 
.navbar-collapse:after {
 
  clear: both;
 
}
 
 
.navbar-collapse.in {
 
  overflow-y: auto;
 
}
 
  
@media (min-width: 768px) {
+
  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
   .navbar-collapse {
+
    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :
    width: auto;
+
          placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :
    border-top: 0;
+
          placement == 'left'  ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
    box-shadow: none;
+
        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width  }
 
   }
 
   }
  .navbar-collapse.collapse {
 
    display: block !important;
 
    height: auto !important;
 
    padding-bottom: 0;
 
    overflow: visible !important;
 
  }
 
  .navbar-collapse.in {
 
    overflow-y: visible;
 
  }
 
  .navbar-fixed-top .navbar-collapse,
 
  .navbar-static-top .navbar-collapse,
 
  .navbar-fixed-bottom .navbar-collapse {
 
    padding-right: 0;
 
    padding-left: 0;
 
  }
 
}
 
  
.container > .navbar-header,
+
  Tooltip.prototype.getTitle = function () {
.container > .navbar-collapse {
+
    var title
  margin-right: -15px;
+
    var $e = this.$element
  margin-left: -15px;
+
    var o  = this.options
}
+
  
@media (min-width: 768px) {
+
    title = $e.attr('data-original-title')
  .container > .navbar-header,
+
      || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
  .container > .navbar-collapse {
+
    margin-right: 0;
+
    margin-left: 0;
+
  }
+
}
+
  
.navbar-static-top {
+
     return title
  z-index: 1000;
+
  border-width: 0 0 0px;
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar-static-top {
+
     border-radius: 0;
+
 
   }
 
   }
}
 
  
.navbar-fixed-top,
+
  Tooltip.prototype.tip = function () {
.navbar-fixed-bottom {
+
    return this.$tip = this.$tip || $(this.options.template)
  position: fixed;
+
  right: 0;
+
  left: 0;
+
  z-index: 1030;
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar-fixed-top,
+
  .navbar-fixed-bottom {
+
    border-radius: 0;
+
 
   }
 
   }
}
 
 
.navbar-fixed-top {
 
  top: 0px;
 
  min-height: 50px;
 
  margin-top: 15px;
 
  border-width: 0 0 0 0px;
 
  border: 0;
 
}
 
 
.navbar-fixed-bottom {
 
  bottom: 0;
 
 
  margin-bottom: 0;
 
  border-width: 1px 0 0;
 
}
 
 
.navbar-brand {
 
  float: left;
 
  padding: 15px 15px;
 
  font-size: 18px;
 
  line-height: 20px;
 
}
 
 
.navbar-brand:hover,
 
.navbar-brand:focus {
 
  text-decoration: none;
 
}
 
  
@media (min-width: 768px) {
+
  Tooltip.prototype.arrow = function () {
  .navbar > .container .navbar-brand {
+
    return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
    margin-left: -15px;
+
 
   }
 
   }
}
 
  
.navbar-toggle {
+
   Tooltip.prototype.validate = function () {
   position: relative;
+
    if (!this.$element[0].parentNode) {
  float: right;
+
      this.hide()
  padding: 9px 10px;
+
      this.$element = null
  margin-top: 8px;
+
      this.options  = null
  margin-right: 15px;
+
     }
  margin-bottom: 8px;
+
  background-color: transparent;
+
  background-image: none;
+
  border: 1px solid transparent;
+
  border-radius: 4px;
+
}
+
 
+
.navbar-toggle .icon-bar {
+
  display: block;
+
  width: 22px;
+
  height: 2px;
+
  border-radius: 1px;
+
}
+
 
+
.navbar-toggle .icon-bar + .icon-bar {
+
  margin-top: 4px;
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar-toggle {
+
     display: none;
+
 
   }
 
   }
}
 
  
.navbar-nav {
+
   Tooltip.prototype.enable = function () {
   margin: 7.5px -15px;
+
    this.enabled = true
}
+
 
+
.navbar-nav > li > a {
+
  padding-top: 10px;
+
  padding-bottom: 10px;
+
  line-height: 20px;
+
}
+
 
+
@media (max-width: 767px) {
+
  .navbar-nav .open .dropdown-menu {
+
    position: static;
+
    float: none;
+
    width: 1280;
+
    margin-top: 0;
+
    background-color: transparent;
+
    border: 0;
+
    box-shadow: none;
+
 
   }
 
   }
  .navbar-nav .open .dropdown-menu > li > a,
 
  .navbar-nav .open .dropdown-menu .dropdown-header {
 
    padding: 5px 15px 5px 25px;
 
  }
 
  .navbar-nav .open .dropdown-menu > li > a {
 
    line-height: 20px;
 
  }
 
  .navbar-nav .open .dropdown-menu > li > a:hover,
 
  .navbar-nav .open .dropdown-menu > li > a:focus {
 
    background-image: none;
 
  }
 
}
 
  
@media (min-width: 768px) {
+
   Tooltip.prototype.disable = function () {
   .navbar-nav {
+
     this.enabled = false
    float: left;
+
    margin: 0;
+
  }
+
  .navbar-nav > li {
+
     float: left;
+
  }
+
  .navbar-nav > li > a {
+
    padding-top: 15px;
+
    padding-bottom: 15px;
+
  }
+
  .navbar-nav.navbar-right:last-child {
+
    margin-right: -15px;
+
width: 1280pxs;
+
 
   }
 
   }
}
 
  
@media (min-width: 768px) {
+
  Tooltip.prototype.toggleEnabled = function () {
  .navbar-left {
+
     this.enabled = !this.enabled
     float: left !important;
+
 
   }
 
   }
  .navbar-right {
 
    float: right !important;
 
  }
 
}
 
  
.navbar-form {
+
  Tooltip.prototype.toggle = function (e) {
  padding: 10px 15px;
+
    var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
  margin-top: 8px;
+
    self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
  margin-right: -15px;
+
  margin-bottom: 8px;
+
  margin-left: -15px;
+
  border-top: 1px solid transparent;
+
  border-bottom: 1px solid transparent;
+
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+
}
+
 
+
@media (min-width: 768px) {
+
  .navbar-form .form-group {
+
    display: inline-block;
+
    margin-bottom: 0;
+
    vertical-align: middle;
+
 
   }
 
   }
  .navbar-form .form-control {
 
    display: inline-block;
 
  }
 
  .navbar-form select.form-control {
 
    width: auto;
 
  }
 
  .navbar-form .radio,
 
  .navbar-form .checkbox {
 
    display: inline-block;
 
    padding-left: 0;
 
    margin-top: 0;
 
    margin-bottom: 0;
 
  }
 
  .navbar-form .radio input[type="radio"],
 
  .navbar-form .checkbox input[type="checkbox"] {
 
    float: none;
 
    margin-left: 0;
 
  }
 
}
 
  
@media (max-width: 767px) {
+
  Tooltip.prototype.destroy = function () {
  .navbar-form .form-group {
+
    clearTimeout(this.timeout)
     margin-bottom: 5px;
+
     this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
 
   }
 
   }
}
 
  
@media (min-width: 768px) {
 
  .navbar-form {
 
    width: auto;
 
    padding-top: 0;
 
    padding-bottom: 0;
 
    margin-right: 0;
 
    margin-left: 0;
 
    border: 0;
 
    -webkit-box-shadow: none;
 
            box-shadow: none;
 
  }
 
  .navbar-form.navbar-right:last-child {
 
    margin-right: -15px;
 
  }
 
}
 
  
.navbar-nav > li > .dropdown-menu {
+
   // TOOLTIP PLUGIN DEFINITION
   margin-top: 0;
+
   // =========================
   border-top-right-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
  
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+
  var old = $.fn.tooltip
  border-bottom-right-radius: 0;
+
  border-bottom-left-radius: 0;
+
}
+
  
.navbar-nav.pull-right > li > .dropdown-menu,
+
  $.fn.tooltip = function (option) {
.navbar-nav > li > .dropdown-menu.pull-right {
+
    return this.each(function () {
   right: 0;
+
      var $this   = $(this)
  left: auto;
+
      var data    = $this.data('bs.tooltip')
}
+
      var options = typeof option == 'object' && option
  
.navbar-btn {
+
      if (!data && option == 'destroy') return
  margin-top: 8px;
+
      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
  margin-bottom: 8px;
+
      if (typeof option == 'string') data[option]()
}
+
    })
 +
  }
  
.navbar-btn.btn-sm {
+
  $.fn.tooltip.Constructor = Tooltip
  margin-top: 10px;
+
  margin-bottom: 10px;
+
}
+
  
.navbar-btn.btn-xs {
 
  margin-top: 14px;
 
  margin-bottom: 14px;
 
}
 
  
.navbar-text {
+
   // TOOLTIP NO CONFLICT
   margin-top: 15px;
+
   // ===================
   margin-bottom: 15px;
+
}
+
  
@media (min-width: 768px) {
+
  $.fn.tooltip.noConflict = function () {
  .navbar-text {
+
     $.fn.tooltip = old
     float: left;
+
     return this
    margin-right: 15px;
+
     margin-left: 15px;
+
 
   }
 
   }
  .navbar-text.navbar-right:last-child {
 
    margin-right: 0;
 
  }
 
}
 
  
/* NAVBAR COLOR */
+
}(jQuery);
  
.navbar-default {
+
/* ========================================================================
  background-color: #454444;
+
* Bootstrap: popover.js v3.1.1
  border-color: #020202;
+
* http://getbootstrap.com/javascript/#popovers
}
+
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
.navbar-default .navbar-brand {
 
  color: #ffffff;
 
}
 
  
.navbar-default .navbar-brand:hover,
+
+function ($) {
.navbar-default .navbar-brand:focus {
+
   'use strict';
   color: #ffffff;
+
  background-color: transparent;
+
}
+
  
.navbar-default .navbar-text {
+
   // POPOVER PUBLIC CLASS DEFINITION
   color: #ffffff;
+
  // ===============================
}
+
  
.navbar-default .navbar-nav > li > a {
+
  var Popover = function (element, options) {
  color: #ffffff;
+
    this.init('popover', element, options)
  -webkit-transition:0.3s;
+
   }
   -moz-transition:0.3s;
+
  -o-transition:0.3s;
+
  transition:0.3s;
+
  
}
+
  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
  
.navbar-default .navbar-nav > li > a:hover,
+
  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
.navbar-default .navbar-nav > li > a:focus {
+
    placement: 'right',
   color: #67c152;
+
    trigger: 'click',
  text-shadow: 0 0 5px #67c152;
+
    content: '',
 +
    template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
 +
   })
  
  background-color: transparent;
 
}
 
  
.navbar-default .navbar-nav > .active > a,
+
  // NOTE: POPOVER EXTENDS tooltip.js
.navbar-default .navbar-nav > .active > a:hover,
+
   // ================================
.navbar-default .navbar-nav > .active > a:focus {
+
   color: #555555;
+
  background-color: #ffffff;
+
  background-color: #020202;
+
}
+
  
.navbar-default .navbar-nav > .disabled > a,
+
  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
.navbar-default .navbar-nav > .disabled > a:hover,
+
.navbar-default .navbar-nav > .disabled > a:focus {
+
  color: #cccccc;
+
  background-color: #020202;
+
}
+
  
.navbar-default .navbar-toggle {
+
  Popover.prototype.constructor = Popover
  border-color: #020202;
+
}
+
  
.navbar-default .navbar-toggle:hover,
+
  Popover.prototype.getDefaults = function () {
.navbar-default .navbar-toggle:focus {
+
    return Popover.DEFAULTS
   background-color: #020202;
+
   }
}
+
  
.navbar-default .navbar-toggle .icon-bar {
+
  Popover.prototype.setContent = function () {
   background-color: #ffffff;
+
    var $tip    = this.tip()
}
+
    var title   = this.getTitle()
 +
    var content = this.getContent()
  
.navbar-default .navbar-collapse,
+
    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
.navbar-default .navbar-form {
+
    $tip.find('.popover-content')[ // we use append for html objects to maintain js events
  border-color: #ffffff;
+
      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
}
+
    ](content)
  
.navbar-default .navbar-nav > .open > a,
+
    $tip.removeClass('fade top bottom left right in')
.navbar-default .navbar-nav > .open > a:hover,
+
.navbar-default .navbar-nav > .open > a:focus {
+
  color: #ffffff;
+
  background-color: #020202;
+
}
+
  
@media (max-width: 767px) {
+
    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
+
    // this manually by checking the contents.
    color: #ffffff;
+
    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
 
   }
 
   }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
+
 
   .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
+
   Popover.prototype.hasContent = function () {
     color: #ffffff;
+
     return this.getTitle() || this.getContent()
    background-color: transparent;
+
  }
+
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
+
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
+
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
+
    color: #ffffff;
+
    background-color: #020202;
+
  }
+
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
+
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+
    color: #cccccc;
+
    background-color: transparent;
+
 
   }
 
   }
}
 
  
.navbar-default .navbar-link {
+
  Popover.prototype.getContent = function () {
  color: #777777;
+
    var $e = this.$element
}
+
    var o  = this.options
  
.navbar-default .navbar-link:hover {
+
    return $e.attr('data-content')
  color: #333333;
+
      || (typeof o.content == 'function' ?
}
+
            o.content.call($e[0]) :
 +
            o.content)
 +
  }
  
.navbar-inverse {
+
  Popover.prototype.arrow = function () {
  background-color: #222222;
+
    return this.$arrow = this.$arrow || this.tip().find('.arrow')
   border-color: #080808;
+
   }
}
+
  
.navbar-inverse .navbar-brand {
+
  Popover.prototype.tip = function () {
  color: #999999;
+
    if (!this.$tip) this.$tip = $(this.options.template)
}
+
    return this.$tip
 +
  }
  
.navbar-inverse .navbar-brand:hover,
 
.navbar-inverse .navbar-brand:focus {
 
  color: #ffffff;
 
  background-color: transparent;
 
}
 
  
.navbar-inverse .navbar-text {
+
   // POPOVER PLUGIN DEFINITION
   color: #999999;
+
  // =========================
}
+
  
.navbar-inverse .navbar-nav > li > a {
+
  var old = $.fn.popover
  color: #999999;
+
}
+
  
.navbar-inverse .navbar-nav > li > a:hover,
+
  $.fn.popover = function (option) {
.navbar-inverse .navbar-nav > li > a:focus {
+
    return this.each(function () {
   color: #ffffff;
+
      var $this   = $(this)
  background-color: transparent;
+
      var data    = $this.data('bs.popover')
}
+
      var options = typeof option == 'object' && option
  
.navbar-inverse .navbar-nav > .active > a,
+
      if (!data && option == 'destroy') return
.navbar-inverse .navbar-nav > .active > a:hover,
+
      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
.navbar-inverse .navbar-nav > .active > a:focus {
+
      if (typeof option == 'string') data[option]()
  color: #ffffff;
+
     })
  background-color: #080808;
+
}
+
 
+
.navbar-inverse .navbar-nav > .disabled > a,
+
.navbar-inverse .navbar-nav > .disabled > a:hover,
+
.navbar-inverse .navbar-nav > .disabled > a:focus {
+
  color: #444444;
+
  background-color: transparent;
+
}
+
 
+
.navbar-inverse .navbar-toggle {
+
  border-color: #333333;
+
}
+
 
+
.navbar-inverse .navbar-toggle:hover,
+
.navbar-inverse .navbar-toggle:focus {
+
  background-color: #333333;
+
}
+
 
+
.navbar-inverse .navbar-toggle .icon-bar {
+
  background-color: #ffffff;
+
}
+
 
+
.navbar-inverse .navbar-collapse,
+
.navbar-inverse .navbar-form {
+
  border-color: #101010;
+
}
+
 
+
.navbar-inverse .navbar-nav > .open > a,
+
.navbar-inverse .navbar-nav > .open > a:hover,
+
.navbar-inverse .navbar-nav > .open > a:focus {
+
  color: #ffffff;
+
  background-color: #080808;
+
}
+
 
+
@media (max-width: 767px) {
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
+
     border-color: #080808;
+
  }
+
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+
    background-color: #080808;
+
  }
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+
    color: #999999;
+
  }
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
+
    color: #ffffff;
+
    background-color: transparent;
+
  }
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
+
    color: #ffffff;
+
    background-color: #080808;
+
  }
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+
    color: #444444;
+
    background-color: transparent;
+
 
   }
 
   }
}
 
  
.navbar-inverse .navbar-link {
+
  $.fn.popover.Constructor = Popover
  color: #999999;
+
}
+
  
.navbar-inverse .navbar-link:hover {
 
  color: #ffffff;
 
}
 
  
.breadcrumb {
+
   // POPOVER NO CONFLICT
   padding: 8px 15px;
+
   // ===================
   margin-bottom: 20px;
+
  list-style: none;
+
  background-color: #f5f5f5;
+
  border-radius: 4px;
+
}
+
  
.breadcrumb > li {
+
   $.fn.popover.noConflict = function () {
   display: inline-block;
+
     $.fn.popover = old
}
+
     return this
 
+
.breadcrumb > li + li:before {
+
  padding: 0 5px;
+
  color: #cccccc;
+
  content: "/\00a0";
+
}
+
 
+
.breadcrumb > .active {
+
  color: #999999;
+
}
+
 
+
.pagination {
+
  display: inline-block;
+
  padding-left: 0;
+
  margin: 20px 0;
+
  border-radius: 4px;
+
}
+
 
+
.pagination > li {
+
  display: inline;
+
}
+
 
+
.pagination > li > a,
+
.pagination > li > span {
+
  position: relative;
+
  float: left;
+
  padding: 6px 12px;
+
  margin-left: -1px;
+
  line-height: 1.428571429;
+
  text-decoration: none;
+
  background-color: #ffffff;
+
  border: 1px solid #dddddd;
+
}
+
 
+
.pagination > li:first-child > a,
+
.pagination > li:first-child > span {
+
  margin-left: 0;
+
  border-bottom-left-radius: 4px;
+
  border-top-left-radius: 4px;
+
}
+
 
+
.pagination > li:last-child > a,
+
.pagination > li:last-child > span {
+
  border-top-right-radius: 4px;
+
  border-bottom-right-radius: 4px;
+
}
+
 
+
.pagination > li > a:hover,
+
.pagination > li > span:hover,
+
.pagination > li > a:focus,
+
.pagination > li > span:focus {
+
  background-color: #eeeeee;
+
}
+
 
+
.pagination > .active > a,
+
.pagination > .active > span,
+
.pagination > .active > a:hover,
+
.pagination > .active > span:hover,
+
.pagination > .active > a:focus,
+
.pagination > .active > span:focus {
+
  z-index: 2;
+
  color: #ffffff;
+
  cursor: default;
+
  background-color: #428bca;
+
  border-color: #428bca;
+
}
+
 
+
.pagination > .disabled > span,
+
.pagination > .disabled > span:hover,
+
.pagination > .disabled > span:focus,
+
.pagination > .disabled > a,
+
.pagination > .disabled > a:hover,
+
.pagination > .disabled > a:focus {
+
  color: #999999;
+
  cursor: not-allowed;
+
  background-color: #ffffff;
+
  border-color: #dddddd;
+
}
+
 
+
.pagination-lg > li > a,
+
.pagination-lg > li > span {
+
  padding: 10px 16px;
+
  font-size: 18px;
+
}
+
 
+
.pagination-lg > li:first-child > a,
+
.pagination-lg > li:first-child > span {
+
  border-bottom-left-radius: 6px;
+
  border-top-left-radius: 6px;
+
}
+
 
+
.pagination-lg > li:last-child > a,
+
.pagination-lg > li:last-child > span {
+
  border-top-right-radius: 6px;
+
  border-bottom-right-radius: 6px;
+
}
+
 
+
.pagination-sm > li > a,
+
.pagination-sm > li > span {
+
  padding: 5px 10px;
+
  font-size: 12px;
+
}
+
 
+
.pagination-sm > li:first-child > a,
+
.pagination-sm > li:first-child > span {
+
  border-bottom-left-radius: 3px;
+
  border-top-left-radius: 3px;
+
}
+
 
+
.pagination-sm > li:last-child > a,
+
.pagination-sm > li:last-child > span {
+
  border-top-right-radius: 3px;
+
  border-bottom-right-radius: 3px;
+
}
+
 
+
.pager {
+
  padding-left: 0;
+
  margin: 20px 0;
+
  text-align: center;
+
  list-style: none;
+
}
+
 
+
.pager:before,
+
.pager:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.pager:after {
+
  clear: both;
+
}
+
 
+
.pager:before,
+
.pager:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.pager:after {
+
  clear: both;
+
}
+
 
+
.pager li {
+
  display: inline;
+
}
+
 
+
.pager li > a,
+
.pager li > span {
+
  display: inline-block;
+
  padding: 5px 14px;
+
  background-color: #ffffff;
+
  border: 1px solid #dddddd;
+
  border-radius: 15px;
+
}
+
 
+
.pager li > a:hover,
+
.pager li > a:focus {
+
  text-decoration: none;
+
  background-color: #eeeeee;
+
}
+
 
+
.pager .next > a,
+
.pager .next > span {
+
  float: right;
+
}
+
 
+
.pager .previous > a,
+
.pager .previous > span {
+
  float: left;
+
}
+
 
+
.pager .disabled > a,
+
.pager .disabled > a:hover,
+
.pager .disabled > a:focus,
+
.pager .disabled > span {
+
  color: #999999;
+
  cursor: not-allowed;
+
  background-color: #ffffff;
+
}
+
 
+
.label {
+
  display: inline;
+
  padding: .2em .6em .3em;
+
  font-size: 75%;
+
  font-weight: bold;
+
  line-height: 1;
+
  color: #ffffff;
+
  text-align: center;
+
  white-space: nowrap;
+
  vertical-align: baseline;
+
  border-radius: .25em;
+
}
+
 
+
.label[href]:hover,
+
.label[href]:focus {
+
  color: #ffffff;
+
  text-decoration: none;
+
  cursor: pointer;
+
}
+
 
+
.label:empty {
+
  display: none;
+
}
+
 
+
.btn .label {
+
  position: relative;
+
  top: -1px;
+
}
+
 
+
.label-default {
+
  background-color: #999999;
+
}
+
 
+
.label-default[href]:hover,
+
.label-default[href]:focus {
+
  background-color: #808080;
+
}
+
 
+
.label-primary {
+
  background-color: #428bca;
+
}
+
 
+
.label-primary[href]:hover,
+
.label-primary[href]:focus {
+
  background-color: #3071a9;
+
}
+
 
+
.label-success {
+
  background-color: #5cb85c;
+
}
+
 
+
.label-success[href]:hover,
+
.label-success[href]:focus {
+
  background-color: #449d44;
+
}
+
 
+
.label-info {
+
  background-color: #5bc0de;
+
}
+
 
+
.label-info[href]:hover,
+
.label-info[href]:focus {
+
  background-color: #31b0d5;
+
}
+
 
+
.label-warning {
+
  background-color: #f0ad4e;
+
}
+
 
+
.label-warning[href]:hover,
+
.label-warning[href]:focus {
+
  background-color: #ec971f;
+
}
+
 
+
.label-danger {
+
  background-color: #d9534f;
+
}
+
 
+
.label-danger[href]:hover,
+
.label-danger[href]:focus {
+
  background-color: #c9302c;
+
}
+
 
+
.badge {
+
  display: inline-block;
+
  min-width: 10px;
+
  padding: 3px 7px;
+
  font-size: 12px;
+
  font-weight: bold;
+
  line-height: 1;
+
  color: #ffffff;
+
  text-align: center;
+
  white-space: nowrap;
+
  vertical-align: baseline;
+
  background-color: #999999;
+
  border-radius: 10px;
+
}
+
 
+
.badge:empty {
+
  display: none;
+
}
+
 
+
.btn .badge {
+
  position: relative;
+
  top: -1px;
+
}
+
 
+
a.badge:hover,
+
a.badge:focus {
+
  color: #ffffff;
+
  text-decoration: none;
+
  cursor: pointer;
+
}
+
 
+
a.list-group-item.active > .badge,
+
.nav-pills > .active > a > .badge {
+
  color: #428bca;
+
  background-color: #ffffff;
+
}
+
 
+
.nav-pills > li > a > .badge {
+
  margin-left: 3px;
+
}
+
 
+
.jumbotron {
+
  padding: 30px;
+
  margin-bottom: 30px;
+
  font-size: 21px;
+
  font-weight: 200;
+
  line-height: 2.1428571435;
+
  color: inherit;
+
  background-color: #eeeeee;
+
}
+
 
+
.jumbotron h1,
+
.jumbotron .h1 {
+
  line-height: 1;
+
  color: inherit;
+
}
+
 
+
.jumbotron p {
+
  line-height: 1.4;
+
}
+
 
+
.container .jumbotron {
+
  border-radius: 6px;
+
}
+
 
+
.jumbotron .container {
+
  max-width: 100%;
+
}
+
 
+
@media screen and (min-width: 768px) {
+
  .jumbotron {
+
     padding-top: 48px;
+
    padding-bottom: 48px;
+
  }
+
  .container .jumbotron {
+
    padding-right: 60px;
+
    padding-left: 60px;
+
  }
+
  .jumbotron h1,
+
  .jumbotron .h1 {
+
     font-size: 63px;
+
 
   }
 
   }
}
 
  
.thumbnail {
+
}(jQuery);
  display: block;
+
  padding: 4px;
+
  margin-bottom: 20px;
+
  line-height: 1.428571429;
+
  -webkit-transition: all 0.2s ease-in-out;
+
          transition: all 0.2s ease-in-out;
+
}
+
  
.thumbnail > img,
+
/* ========================================================================
.thumbnail a > img {
+
* Bootstrap: scrollspy.js v3.1.1
  display: block;
+
* http://getbootstrap.com/javascript/#scrollspy
  height: auto;
+
* ========================================================================
  max-width: 100%;
+
* Copyright 2011-2014 Twitter, Inc.
  margin-right: auto;
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  margin-left: auto;
+
* ======================================================================== */
}
+
  
a.thumbnail:hover,
 
a.thumbnail:focus,
 
a.thumbnail.active {
 
  border-color: #428bca;
 
}
 
  
.thumbnail .caption {
+
+function ($) {
   padding: 9px;
+
   'use strict';
  color: #333333;
+
}
+
  
.alert {
+
   // SCROLLSPY CLASS DEFINITION
   padding: 15px;
+
   // ==========================
   margin-bottom: 20px;
+
  border: 1px solid transparent;
+
  border-radius: 4px;
+
}
+
  
.alert h4 {
+
  function ScrollSpy(element, options) {
  margin-top: 0;
+
    var href
  color: inherit;
+
    var process  = $.proxy(this.process, this)
}
+
  
.alert .alert-link {
+
    this.$element      = $(element).is('body') ? $(window) : $(element)
  font-weight: bold;
+
    this.$body          = $('body')
}
+
    this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
 +
    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)
 +
    this.selector      = (this.options.target
 +
      || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
 +
      || '') + ' .nav li > a'
 +
    this.offsets        = $([])
 +
    this.targets        = $([])
 +
    this.activeTarget  = null
  
.alert > p,
+
    this.refresh()
.alert > ul {
+
    this.process()
  margin-bottom: 0;
+
}
+
 
+
.alert > p + p {
+
  margin-top: 5px;
+
}
+
 
+
.alert-dismissable {
+
  padding-right: 35px;
+
}
+
 
+
.alert-dismissable .close {
+
  position: relative;
+
  top: -2px;
+
  right: -21px;
+
  color: inherit;
+
}
+
 
+
.alert-success {
+
  color: #3c763d;
+
  background-color: #dff0d8;
+
  border-color: #d6e9c6;
+
}
+
 
+
.alert-success hr {
+
  border-top-color: #c9e2b3;
+
}
+
 
+
.alert-success .alert-link {
+
  color: #2b542c;
+
}
+
 
+
.alert-info {
+
  color: #31708f;
+
  background-color: #d9edf7;
+
  border-color: #bce8f1;
+
}
+
 
+
.alert-info hr {
+
  border-top-color: #a6e1ec;
+
}
+
 
+
.alert-info .alert-link {
+
  color: #245269;
+
}
+
 
+
.alert-warning {
+
  color: #8a6d3b;
+
  background-color: #fcf8e3;
+
  border-color: #faebcc;
+
}
+
 
+
.alert-warning hr {
+
  border-top-color: #f7e1b5;
+
}
+
 
+
.alert-warning .alert-link {
+
  color: #66512c;
+
}
+
 
+
.alert-danger {
+
  color: #a94442;
+
  background-color: #f2dede;
+
  border-color: #ebccd1;
+
}
+
 
+
.alert-danger hr {
+
  border-top-color: #e4b9c0;
+
}
+
 
+
.alert-danger .alert-link {
+
  color: #843534;
+
}
+
 
+
@-webkit-keyframes progress-bar-stripes {
+
  from {
+
    background-position: 40px 0;
+
 
   }
 
   }
  to {
 
    background-position: 0 0;
 
  }
 
}
 
  
@keyframes progress-bar-stripes {
+
   ScrollSpy.DEFAULTS = {
  from {
+
     offset: 10
    background-position: 40px 0;
+
  }
+
   to {
+
     background-position: 0 0;
+
 
   }
 
   }
}
 
  
.progress {
+
  ScrollSpy.prototype.refresh = function () {
  height: 20px;
+
    var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
  margin-bottom: 20px;
+
  overflow: hidden;
+
  background-color: #f5f5f5;
+
  border-radius: 4px;
+
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+
}
+
  
.progress-bar {
+
    this.offsets = $([])
  float: left;
+
    this.targets = $([])
  width: 0;
+
  height: 100%;
+
  font-size: 12px;
+
  line-height: 20px;
+
  color: #ffffff;
+
  text-align: center;
+
  background-color: #428bca;
+
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+
  -webkit-transition: width 0.6s ease;
+
          transition: width 0.6s ease;
+
}
+
  
.progress-striped .progress-bar {
+
    var self    = this
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
    var $targets = this.$body
   background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      .find(this.selector)
  background-size: 40px 40px;
+
      .map(function () {
}
+
        var $el   = $(this)
 +
        var href  = $el.data('target') || $el.attr('href')
 +
        var $href = /^#./.test(href) && $(href)
  
.progress.active .progress-bar {
+
        return ($href
  -webkit-animation: progress-bar-stripes 2s linear infinite;
+
          && $href.length
          animation: progress-bar-stripes 2s linear infinite;
+
          && $href.is(':visible')
}
+
          && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
 +
      })
 +
      .sort(function (a, b) { return a[0] - b[0] })
 +
      .each(function () {
 +
        self.offsets.push(this[0])
 +
        self.targets.push(this[1])
 +
      })
 +
  }
  
.progress-bar-success {
+
  ScrollSpy.prototype.process = function () {
  background-color: #5cb85c;
+
    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
}
+
    var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
 +
    var maxScroll    = scrollHeight - this.$scrollElement.height()
 +
    var offsets      = this.offsets
 +
    var targets      = this.targets
 +
    var activeTarget = this.activeTarget
 +
    var i
  
.progress-striped .progress-bar-success {
+
    if (scrollTop >= maxScroll) {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      return activeTarget != (i = targets.last()[0]) && this.activate(i)
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
    }
}
+
  
.progress-bar-info {
+
    if (activeTarget && scrollTop <= offsets[0]) {
  background-color: #5bc0de;
+
      return activeTarget != (i = targets[0]) && this.activate(i)
}
+
    }
  
.progress-striped .progress-bar-info {
+
    for (i = offsets.length; i--;) {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      activeTarget != targets[i]
   background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
        && scrollTop >= offsets[i]
}
+
        && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
 +
        && this.activate( targets[i] )
 +
    }
 +
   }
  
.progress-bar-warning {
+
  ScrollSpy.prototype.activate = function (target) {
  background-color: #f0ad4e;
+
    this.activeTarget = target
}
+
  
.progress-striped .progress-bar-warning {
+
    $(this.selector)
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      .parentsUntil(this.options.target, '.active')
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      .removeClass('active')
}
+
  
.progress-bar-danger {
+
    var selector = this.selector +
  background-color: #d9534f;
+
        '[data-target="' + target + '"],' +
}
+
        this.selector + '[href="' + target + '"]'
  
.progress-striped .progress-bar-danger {
+
    var active = $(selector)
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      .parents('li')
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+
      .addClass('active')
}
+
  
.media,
+
    if (active.parent('.dropdown-menu').length) {
.media-body {
+
      active = active
  overflow: hidden;
+
        .closest('li.dropdown')
  zoom: 1;
+
        .addClass('active')
}
+
    }
  
.media,
+
    active.trigger('activate.bs.scrollspy')
.media .media {
+
   }
   margin-top: 15px;
+
}
+
  
.media:first-child {
 
  margin-top: 0;
 
}
 
  
.media-object {
+
   // SCROLLSPY PLUGIN DEFINITION
   display: block;
+
  // ===========================
}
+
  
.media-heading {
+
   var old = $.fn.scrollspy
   margin: 0 0 5px;
+
}
+
  
.media > .pull-left {
+
  $.fn.scrollspy = function (option) {
   margin-right: 10px;
+
    return this.each(function () {
}
+
      var $this   = $(this)
 +
      var data    = $this.data('bs.scrollspy')
 +
      var options = typeof option == 'object' && option
  
.media > .pull-right {
+
      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
  margin-left: 10px;
+
      if (typeof option == 'string') data[option]()
}
+
    })
 +
  }
  
.media-list {
+
   $.fn.scrollspy.Constructor = ScrollSpy
   padding-left: 0;
+
  list-style: none;
+
}
+
  
.list-group {
 
  padding-left: 0;
 
  margin-bottom: 20px;
 
}
 
  
.list-group-item {
+
   // SCROLLSPY NO CONFLICT
   position: relative;
+
   // =====================
   display: block;
+
  padding: 10px 15px;
+
  margin-bottom: -1px;
+
  background-color: #ffffff;
+
  border: 1px solid #dddddd;
+
}
+
  
.list-group-item:first-child {
+
  $.fn.scrollspy.noConflict = function () {
  border-top-right-radius: 4px;
+
    $.fn.scrollspy = old
  border-top-left-radius: 4px;
+
    return this
}
+
  }
  
.list-group-item:last-child {
 
  margin-bottom: 0;
 
  border-bottom-right-radius: 4px;
 
  border-bottom-left-radius: 4px;
 
}
 
  
.list-group-item > .badge {
+
  // SCROLLSPY DATA-API
   float: right;
+
   // ==================
}
+
  
.list-group-item > .badge + .badge {
+
  $(window).on('load', function () {
  margin-right: 5px;
+
    $('[data-spy="scroll"]').each(function () {
}
+
      var $spy = $(this)
 +
      $spy.scrollspy($spy.data())
 +
    })
 +
  })
  
a.list-group-item {
+
}(jQuery);
  color: #555555;
+
}
+
  
a.list-group-item .list-group-item-heading {
+
/* ========================================================================
  color: #333333;
+
* Bootstrap: tab.js v3.1.1
}
+
* http://getbootstrap.com/javascript/#tabs
 +
* ========================================================================
 +
* Copyright 2011-2014 Twitter, Inc.
 +
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 +
* ======================================================================== */
  
a.list-group-item:hover,
 
a.list-group-item:focus {
 
  text-decoration: none;
 
  background-color: #f5f5f5;
 
}
 
  
a.list-group-item.active,
+
+function ($) {
a.list-group-item.active:hover,
+
   'use strict';
a.list-group-item.active:focus {
+
   z-index: 2;
+
  color: #ffffff;
+
  background-color: #428bca;
+
  border-color: #428bca;
+
}
+
  
a.list-group-item.active .list-group-item-heading,
+
  // TAB CLASS DEFINITION
a.list-group-item.active:hover .list-group-item-heading,
+
   // ====================
a.list-group-item.active:focus .list-group-item-heading {
+
   color: inherit;
+
}
+
  
a.list-group-item.active .list-group-item-text,
+
   var Tab = function (element) {
a.list-group-item.active:hover .list-group-item-text,
+
    this.element = $(element)
a.list-group-item.active:focus .list-group-item-text {
+
   }
   color: #e1edf7;
+
}
+
 
+
.list-group-item-heading {
+
  margin-top: 0;
+
  margin-bottom: 5px;
+
}
+
 
+
.list-group-item-text {
+
  margin-bottom: 0;
+
  line-height: 1.3;
+
}
+
 
+
.panel {
+
  margin-bottom: 20px;
+
  background-color: #ffffff;
+
  border: 1px solid transparent;
+
  border-radius: 4px;
+
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+
}
+
 
+
.panel-body {
+
  padding: 15px;
+
}
+
 
+
.panel-body:before,
+
.panel-body:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.panel-body:after {
+
  clear: both;
+
}
+
 
+
.panel-body:before,
+
.panel-body:after {
+
  display: table;
+
  content: " ";
+
}
+
 
+
.panel-body:after {
+
  clear: both;
+
}
+
 
+
.panel > .list-group {
+
  margin-bottom: 0;
+
}
+
 
+
.panel > .list-group .list-group-item {
+
  border-width: 1px 0;
+
}
+
 
+
.panel > .list-group .list-group-item:first-child {
+
  border-top-right-radius: 0;
+
  border-top-left-radius: 0;
+
}
+
 
+
.panel > .list-group .list-group-item:last-child {
+
  border-bottom: 0;
+
}
+
 
+
.panel-heading + .list-group .list-group-item:first-child {
+
  border-top-width: 0;
+
}
+
 
+
.panel > .table,
+
.panel > .table-responsive > .table {
+
  margin-bottom: 0;
+
}
+
 
+
.panel > .panel-body + .table,
+
.panel > .panel-body + .table-responsive {
+
  border-top: 1px solid #dddddd;
+
}
+
 
+
.panel > .table > tbody:first-child th,
+
.panel > .table > tbody:first-child td {
+
  border-top: 0;
+
}
+
 
+
.panel > .table-bordered,
+
.panel > .table-responsive > .table-bordered {
+
  border: 0;
+
}
+
 
+
.panel > .table-bordered > thead > tr > th:first-child,
+
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
+
.panel > .table-bordered > tbody > tr > th:first-child,
+
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
+
.panel > .table-bordered > tfoot > tr > th:first-child,
+
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+
.panel > .table-bordered > thead > tr > td:first-child,
+
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
+
.panel > .table-bordered > tbody > tr > td:first-child,
+
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
+
.panel > .table-bordered > tfoot > tr > td:first-child,
+
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+
  border-left: 0;
+
}
+
 
+
.panel > .table-bordered > thead > tr > th:last-child,
+
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
+
.panel > .table-bordered > tbody > tr > th:last-child,
+
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
+
.panel > .table-bordered > tfoot > tr > th:last-child,
+
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+
.panel > .table-bordered > thead > tr > td:last-child,
+
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
+
.panel > .table-bordered > tbody > tr > td:last-child,
+
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
+
.panel > .table-bordered > tfoot > tr > td:last-child,
+
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+
  border-right: 0;
+
}
+
 
+
.panel > .table-bordered > thead > tr:last-child > th,
+
.panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
+
.panel > .table-bordered > tbody > tr:last-child > th,
+
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
+
.panel > .table-bordered > tfoot > tr:last-child > th,
+
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+
.panel > .table-bordered > thead > tr:last-child > td,
+
.panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
+
.panel > .table-bordered > tbody > tr:last-child > td,
+
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
+
.panel > .table-bordered > tfoot > tr:last-child > td,
+
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+
  border-bottom: 0;
+
}
+
 
+
.panel > .table-responsive {
+
  margin-bottom: 0;
+
  border: 0;
+
}
+
 
+
.panel-heading {
+
  padding: 10px 15px;
+
  border-bottom: 1px solid transparent;
+
  border-top-right-radius: 3px;
+
  border-top-left-radius: 3px;
+
}
+
 
+
.panel-heading > .dropdown .dropdown-toggle {
+
  color: inherit;
+
}
+
 
+
.panel-title {
+
  margin-top: 0;
+
  margin-bottom: 0;
+
  font-size: 16px;
+
  color: inherit;
+
}
+
 
+
.panel-title > a {
+
  color: inherit;
+
}
+
 
+
.panel-footer {
+
  padding: 10px 15px;
+
  background-color: #f5f5f5;
+
  border-top: 1px solid #dddddd;
+
  border-bottom-right-radius: 3px;
+
  border-bottom-left-radius: 3px;
+
}
+
 
+
.panel-group .panel {
+
  margin-bottom: 0;
+
  overflow: hidden;
+
  border-radius: 4px;
+
}
+
 
+
.panel-group .panel + .panel {
+
  margin-top: 5px;
+
}
+
 
+
.panel-group .panel-heading {
+
  border-bottom: 0;
+
}
+
 
+
.panel-group .panel-heading + .panel-collapse .panel-body {
+
  border-top: 1px solid #dddddd;
+
}
+
 
+
.panel-group .panel-footer {
+
  border-top: 0;
+
}
+
 
+
.panel-group .panel-footer + .panel-collapse .panel-body {
+
  border-bottom: 1px solid #dddddd;
+
}
+
 
+
.panel-default {
+
  border-color: #dddddd;
+
}
+
 
+
.panel-default > .panel-heading {
+
  color: #333333;
+
  background-color: #f5f5f5;
+
  border-color: #dddddd;
+
}
+
 
+
.panel-default > .panel-heading + .panel-collapse .panel-body {
+
  border-top-color: #dddddd;
+
}
+
 
+
.panel-default > .panel-footer + .panel-collapse .panel-body {
+
  border-bottom-color: #dddddd;
+
}
+
 
+
.panel-primary {
+
  border-color: #428bca;
+
}
+
 
+
.panel-primary > .panel-heading {
+
  color: #ffffff;
+
  background-color: #428bca;
+
  border-color: #428bca;
+
}
+
 
+
.panel-primary > .panel-heading + .panel-collapse .panel-body {
+
  border-top-color: #428bca;
+
}
+
 
+
.panel-primary > .panel-footer + .panel-collapse .panel-body {
+
  border-bottom-color: #428bca;
+
}
+
 
+
.panel-success {
+
  border-color: #d6e9c6;
+
}
+
 
+
.panel-success > .panel-heading {
+
  color: #3c763d;
+
  background-color: #dff0d8;
+
  border-color: #d6e9c6;
+
}
+
 
+
.panel-success > .panel-heading + .panel-collapse .panel-body {
+
  border-top-color: #d6e9c6;
+
}
+
 
+
.panel-success > .panel-footer + .panel-collapse .panel-body {
+
  border-bottom-color: #d6e9c6;
+
}
+
 
+
.panel-warning {
+
  border-color: #faebcc;
+
}
+
 
+
.panel-warning > .panel-heading {
+
  color: #8a6d3b;
+
  background-color: #fcf8e3;
+
  border-color: #faebcc;
+
}
+
 
+
.panel-warning > .panel-heading + .panel-collapse .panel-body {
+
  border-top-color: #faebcc;
+
}
+
 
+
 
+
.panel-warning > .panel-footer + .panel-collapse .panel-body {
+
  border-bottom-color: #faebcc;
+
}
+
 
+
.panel-danger {
+
  border-color: #ebccd1;
+
}
+
 
+
.panel-danger > .panel-heading {
+
  color: #a94442;
+
  background-color: #f2dede;
+
  border-color: #ebccd1;
+
}
+
 
+
.panel-danger > .panel-heading + .panel-collapse .panel-body {
+
  border-top-color: #ebccd1;
+
}
+
 
+
.panel-danger > .panel-footer + .panel-collapse .panel-body {
+
  border-bottom-color: #ebccd1;
+
}
+
 
+
.panel-info {
+
  border-color: #bce8f1;
+
}
+
 
+
.panel-info > .panel-heading {
+
  color: #31708f;
+
  background-color: #d9edf7;
+
  border-color: #bce8f1;
+
}
+
 
+
.panel-info > .panel-heading + .panel-collapse .panel-body {
+
  border-top-color: #bce8f1;
+
}
+
 
+
.panel-info > .panel-footer + .panel-collapse .panel-body {
+
  border-bottom-color: #bce8f1;
+
}
+
 
+
.well {
+
  min-height: 20px;
+
  padding: 19px;
+
  margin-bottom: 20px;
+
  background-color: #f5f5f5;
+
  border: 1px solid #e3e3e3;
+
  border-radius: 4px;
+
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+
}
+
 
+
.well blockquote {
+
  border-color: #ddd;
+
  border-color: rgba(0, 0, 0, 0.15);
+
}
+
 
+
.well-lg {
+
  padding: 24px;
+
  border-radius: 6px;
+
}
+
 
+
.well-sm {
+
  padding: 9px;
+
  border-radius: 3px;
+
}
+
 
+
.close {
+
  float: right;
+
  font-size: 21px;
+
  font-weight: bold;
+
  line-height: 1;
+
  color: #000000;
+
  text-shadow: 0 1px 0 #ffffff;
+
  opacity: 0.2;
+
  filter: alpha(opacity=20);
+
}
+
 
+
.close:hover,
+
.close:focus {
+
  color: #000000;
+
  text-decoration: none;
+
  cursor: pointer;
+
  opacity: 0.5;
+
  filter: alpha(opacity=50);
+
}
+
 
+
button.close {
+
  padding: 0;
+
  cursor: pointer;
+
  background: transparent;
+
  border: 0;
+
  -webkit-appearance: none;
+
}
+
 
+
.modal-open {
+
  overflow: hidden;
+
}
+
 
+
.modal {
+
  position: fixed;
+
  top: 0;
+
  right: 0;
+
  bottom: 0;
+
  left: 0;
+
  z-index: 1040;
+
  display: none;
+
  overflow: auto;
+
  overflow-y: scroll;
+
}
+
 
+
.modal.fade .modal-dialog {
+
  -webkit-transform: translate(0, -25%);
+
      -ms-transform: translate(0, -25%);
+
          transform: translate(0, -25%);
+
  -webkit-transition: -webkit-transform 0.3s ease-out;
+
    -moz-transition: -moz-transform 0.3s ease-out;
+
      -o-transition: -o-transform 0.3s ease-out;
+
          transition: transform 0.3s ease-out;
+
}
+
 
+
.modal.in .modal-dialog {
+
  -webkit-transform: translate(0, 0);
+
      -ms-transform: translate(0, 0);
+
          transform: translate(0, 0);
+
}
+
 
+
.modal-dialog {
+
  position: relative;
+
  z-index: 1050;
+
  width: auto;
+
  margin: 10px;
+
}
+
 
+
.modal-content {
+
  position: relative;
+
  background-color: #ffffff;
+
  border: 1px solid #999999;
+
  border: 1px solid rgba(0, 0, 0, 0.2);
+
  border-radius: 6px;
+
  outline: none;
+
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+
  background-clip: padding-box;
+
}
+
 
+
.modal-backdrop {
+
  position: fixed;
+
  top: 0;
+
  right: 0;
+
  bottom: 0;
+
  left: 0;
+
  background-color: #000000;
+
}
+
 
+
.modal-backdrop.fade {
+
  opacity: 0;
+
  filter: alpha(opacity=0);
+
}
+
 
+
.modal-backdrop.in {
+
  opacity: 0.5;
+
  filter: alpha(opacity=50);
+
}
+
 
+
.modal-header {
+
   min-height: 16.428571429px;
+
  padding: 15px;
+
  border-bottom: 1px solid #e5e5e5;
+
}
+
 
+
.modal-header .close {
+
  margin-top: -2px;
+
}
+
 
+
.modal-title {
+
  margin: 0;
+
  line-height: 1.428571429;
+
}
+
 
+
.modal-body {
+
  position: relative;
+
  padding: 20px;
+
}
+
 
+
.modal-footer {
+
  padding: 19px 20px 20px;
+
  margin-top: 15px;
+
  text-align: right;
+
  border-top: 1px solid #e5e5e5;
+
}
+
  
.modal-footer:before,
+
  Tab.prototype.show = function () {
.modal-footer:after {
+
    var $this    = this.element
  display: table;
+
    var $ul      = $this.closest('ul:not(.dropdown-menu)')
  content: " ";
+
    var selector = $this.data('target')
}
+
  
.modal-footer:after {
+
    if (!selector) {
  clear: both;
+
      selector = $this.attr('href')
}
+
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
 +
    }
  
.modal-footer:before,
+
    if ($this.parent('li').hasClass('active')) return
.modal-footer:after {
+
  display: table;
+
  content: " ";
+
}
+
  
.modal-footer:after {
+
    var previous = $ul.find('.active:last a')[0]
  clear: both;
+
    var e        = $.Event('show.bs.tab', {
}
+
      relatedTarget: previous
 +
    })
  
.modal-footer .btn + .btn {
+
    $this.trigger(e)
  margin-bottom: 0;
+
  margin-left: 5px;
+
}
+
  
.modal-footer .btn-group .btn + .btn {
+
    if (e.isDefaultPrevented()) return
  margin-left: -1px;
+
}
+
  
.modal-footer .btn-block + .btn-block {
+
    var $target = $(selector)
  margin-left: 0;
+
}
+
  
@media screen and (min-width: 768px) {
+
    this.activate($this.parent('li'), $ul)
  .modal-dialog {
+
    this.activate($target, $target.parent(), function () {
    width: 600px;
+
      $this.trigger({
    margin: 30px auto;
+
        type: 'shown.bs.tab',
 +
        relatedTarget: previous
 +
      })
 +
    })
 
   }
 
   }
  .modal-content {
 
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
 
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
 
  }
 
}
 
 
.tooltip {
 
  position: absolute;
 
  z-index: 1030;
 
  display: block;
 
  font-size: 12px;
 
  line-height: 1.4;
 
  opacity: 0;
 
  filter: alpha(opacity=0);
 
  visibility: visible;
 
}
 
 
.tooltip.in {
 
  opacity: 0.9;
 
  filter: alpha(opacity=90);
 
}
 
 
.tooltip.top {
 
  padding: 5px 0;
 
  margin-top: -3px;
 
}
 
 
.tooltip.right {
 
  padding: 0 5px;
 
  margin-left: 3px;
 
}
 
 
.tooltip.bottom {
 
  padding: 5px 0;
 
  margin-top: 3px;
 
}
 
 
.tooltip.left {
 
  padding: 0 5px;
 
  margin-left: -3px;
 
}
 
 
.tooltip-inner {
 
  max-width: 200px;
 
  padding: 3px 8px;
 
  color: #ffffff;
 
  text-align: center;
 
  text-decoration: none;
 
  background-color: #000000;
 
  border-radius: 4px;
 
}
 
 
.tooltip-arrow {
 
  position: absolute;
 
  width: 0;
 
  height: 0;
 
  border-color: transparent;
 
  border-style: solid;
 
}
 
 
.tooltip.top .tooltip-arrow {
 
  bottom: 0;
 
  left: 50%;
 
  margin-left: -5px;
 
  border-top-color: #000000;
 
  border-width: 5px 5px 0;
 
}
 
 
.tooltip.top-left .tooltip-arrow {
 
  bottom: 0;
 
  left: 5px;
 
  border-top-color: #000000;
 
  border-width: 5px 5px 0;
 
}
 
 
.tooltip.top-right .tooltip-arrow {
 
  right: 5px;
 
  bottom: 0;
 
  border-top-color: #000000;
 
  border-width: 5px 5px 0;
 
}
 
 
.tooltip.right .tooltip-arrow {
 
  top: 50%;
 
  left: 0;
 
  margin-top: -5px;
 
  border-right-color: #000000;
 
  border-width: 5px 5px 5px 0;
 
}
 
 
.tooltip.left .tooltip-arrow {
 
  top: 50%;
 
  right: 0;
 
  margin-top: -5px;
 
  border-left-color: #000000;
 
  border-width: 5px 0 5px 5px;
 
}
 
 
.tooltip.bottom .tooltip-arrow {
 
  top: 0;
 
  left: 50%;
 
  margin-left: -5px;
 
  border-bottom-color: #000000;
 
  border-width: 0 5px 5px;
 
}
 
 
.tooltip.bottom-left .tooltip-arrow {
 
  top: 0;
 
  left: 5px;
 
  border-bottom-color: #000000;
 
  border-width: 0 5px 5px;
 
}
 
 
.tooltip.bottom-right .tooltip-arrow {
 
  top: 0;
 
  right: 5px;
 
  border-bottom-color: #000000;
 
  border-width: 0 5px 5px;
 
}
 
 
.popover {
 
  position: absolute;
 
  top: 0;
 
  left: 0;
 
  z-index: 1010;
 
  display: none;
 
  max-width: 276px;
 
  padding: 1px;
 
  text-align: left;
 
  white-space: normal;
 
  background-color: #ffffff;
 
  border: 1px solid #cccccc;
 
  border: 1px solid rgba(0, 0, 0, 0.2);
 
  border-radius: 6px;
 
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
 
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
 
  background-clip: padding-box;
 
}
 
 
.popover.top {
 
  margin-top: -10px;
 
}
 
 
.popover.right {
 
  margin-left: 10px;
 
}
 
 
.popover.bottom {
 
  margin-top: 10px;
 
}
 
 
.popover.left {
 
  margin-left: -10px;
 
}
 
 
.popover-title {
 
  padding: 8px 14px;
 
  margin: 0;
 
  font-size: 14px;
 
  font-weight: normal;
 
  line-height: 18px;
 
  background-color: #f7f7f7;
 
  border-bottom: 1px solid #ebebeb;
 
  border-radius: 5px 5px 0 0;
 
}
 
 
.popover-content {
 
  padding: 9px 14px;
 
}
 
 
.popover .arrow,
 
.popover .arrow:after {
 
  position: absolute;
 
  display: block;
 
  width: 0;
 
  height: 0;
 
  border-color: transparent;
 
  border-style: solid;
 
}
 
 
.popover .arrow {
 
  border-width: 11px;
 
}
 
 
.popover .arrow:after {
 
  border-width: 10px;
 
  content: "";
 
}
 
 
.popover.top .arrow {
 
  bottom: -11px;
 
  left: 50%;
 
  margin-left: -11px;
 
  border-top-color: #999999;
 
  border-top-color: rgba(0, 0, 0, 0.25);
 
  border-bottom-width: 0;
 
}
 
 
.popover.top .arrow:after {
 
  bottom: 1px;
 
  margin-left: -10px;
 
  border-top-color: #ffffff;
 
  border-bottom-width: 0;
 
  content: " ";
 
}
 
 
.popover.right .arrow {
 
  top: 50%;
 
  left: -11px;
 
  margin-top: -11px;
 
  border-right-color: #999999;
 
  border-right-color: rgba(0, 0, 0, 0.25);
 
  border-left-width: 0;
 
}
 
 
.popover.right .arrow:after {
 
  bottom: -10px;
 
  left: 1px;
 
  border-right-color: #ffffff;
 
  border-left-width: 0;
 
  content: " ";
 
}
 
 
.popover.bottom .arrow {
 
  top: -11px;
 
  left: 50%;
 
  margin-left: -11px;
 
  border-bottom-color: #999999;
 
  border-bottom-color: rgba(0, 0, 0, 0.25);
 
  border-top-width: 0;
 
}
 
 
.popover.bottom .arrow:after {
 
  top: 1px;
 
  margin-left: -10px;
 
  border-bottom-color: #ffffff;
 
  border-top-width: 0;
 
  content: " ";
 
}
 
 
.popover.left .arrow {
 
  top: 50%;
 
  right: -11px;
 
  margin-top: -11px;
 
  border-left-color: #999999;
 
  border-left-color: rgba(0, 0, 0, 0.25);
 
  border-right-width: 0;
 
}
 
 
.popover.left .arrow:after {
 
  right: 1px;
 
  bottom: -10px;
 
  border-left-color: #ffffff;
 
  border-right-width: 0;
 
  content: " ";
 
}
 
 
.carousel {
 
  position: relative;
 
}
 
 
.carousel-inner {
 
  position: relative;
 
  width: 100%;
 
  overflow: hidden;
 
}
 
 
.carousel-inner > .item {
 
  position: relative;
 
  display: none;
 
  -webkit-transition: 0.6s ease-in-out left;
 
          transition: 0.6s ease-in-out left;
 
}
 
 
.carousel-inner > .item > img,
 
.carousel-inner > .item > a > img {
 
  display: block;
 
  height: auto;
 
  max-width: 100%;
 
  line-height: 1;
 
}
 
 
.carousel-inner > .active,
 
.carousel-inner > .next,
 
.carousel-inner > .prev {
 
  display: block;
 
}
 
 
.carousel-inner > .active {
 
  left: 0;
 
}
 
 
.carousel-inner > .next,
 
.carousel-inner > .prev {
 
  position: absolute;
 
  top: 0;
 
  width: 100%;
 
}
 
 
.carousel-inner > .next {
 
  left: 100%;
 
}
 
 
.carousel-inner > .prev {
 
  left: -100%;
 
}
 
 
.carousel-inner > .next.left,
 
.carousel-inner > .prev.right {
 
  left: 0;
 
}
 
 
.carousel-inner > .active.left {
 
  left: -100%;
 
}
 
 
.carousel-inner > .active.right {
 
  left: 100%;
 
}
 
 
.carousel-control {
 
  position: absolute;
 
  top: 0;
 
  bottom: 0;
 
  left: 0;
 
  width: 15%;
 
  font-size: 20px;
 
  color: #ffffff;
 
  text-align: center;
 
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
 
  opacity: 0.5;
 
  filter: alpha(opacity=50);
 
}
 
 
.carousel-control.left {
 
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
 
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
 
  background-repeat: repeat-x;
 
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
 
}
 
 
.carousel-control.right {
 
  right: 0;
 
  left: auto;
 
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
 
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
 
  background-repeat: repeat-x;
 
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
 
}
 
 
.carousel-control:hover,
 
.carousel-control:focus {
 
  color: #ffffff;
 
  text-decoration: none;
 
  outline: none;
 
  opacity: 0.9;
 
  filter: alpha(opacity=90);
 
}
 
 
.carousel-control .icon-prev,
 
.carousel-control .icon-next,
 
.carousel-control .glyphicon-chevron-left,
 
.carousel-control .glyphicon-chevron-right {
 
  position: absolute;
 
  top: 50%;
 
  z-index: 5;
 
  display: inline-block;
 
}
 
 
.carousel-control .icon-prev,
 
.carousel-control .glyphicon-chevron-left {
 
  left: 50%;
 
}
 
 
.carousel-control .icon-next,
 
.carousel-control .glyphicon-chevron-right {
 
  right: 50%;
 
}
 
 
.carousel-control .icon-prev,
 
.carousel-control .icon-next {
 
  width: 20px;
 
  height: 20px;
 
  margin-top: -10px;
 
  margin-left: -10px;
 
  font-family: serif;
 
}
 
  
.carousel-control .icon-prev:before {
+
  Tab.prototype.activate = function (element, container, callback) {
  content: '\2039';
+
    var $active    = container.find('> .active')
}
+
    var transition = callback
 +
      && $.support.transition
 +
      && $active.hasClass('fade')
  
.carousel-control .icon-next:before {
+
    function next() {
  content: '\203a';
+
      $active
}
+
        .removeClass('active')
 +
        .find('> .dropdown-menu > .active')
 +
        .removeClass('active')
  
.carousel-indicators {
+
      element.addClass('active')
  position: absolute;
+
  bottom: 10px;
+
  left: 50%;
+
  z-index: 15;
+
  width: 60%;
+
  padding-left: 0;
+
  margin-left: -30%;
+
  text-align: center;
+
  list-style: none;
+
}
+
  
.carousel-indicators li {
+
      if (transition) {
  display: inline-block;
+
        element[0].offsetWidth // reflow for transition
  width: 10px;
+
        element.addClass('in')
  height: 10px;
+
      } else {
  margin: 1px;
+
        element.removeClass('fade')
  text-indent: -999px;
+
      }
  cursor: pointer;
+
  background-color: #000 \9;
+
  background-color: rgba(0, 0, 0, 0);
+
  border: 1px solid #ffffff;
+
  border-radius: 10px;
+
}
+
  
.carousel-indicators .active {
+
      if (element.parent('.dropdown-menu')) {
  width: 12px;
+
        element.closest('li.dropdown').addClass('active')
  height: 12px;
+
      }
  margin: 0;
+
  background-color: #ffffff;
+
}
+
  
.carousel-caption {
+
      callback && callback()
  position: absolute;
+
    }
  right: 15%;
+
  bottom: 20px;
+
  left: 15%;
+
  z-index: 10;
+
  padding-top: 20px;
+
  padding-bottom: 20px;
+
  color: #ffffff;
+
  text-align: center;
+
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+
}
+
  
.carousel-caption .btn {
+
    transition ?
  text-shadow: none;
+
      $active
}
+
        .one($.support.transition.end, next)
 +
        .emulateTransitionEnd(150) :
 +
      next()
  
@media screen and (min-width: 768px) {
+
    $active.removeClass('in')
  .carousel-control .glyphicons-chevron-left,
+
  .carousel-control .glyphicons-chevron-right,
+
  .carousel-control .icon-prev,
+
  .carousel-control .icon-next {
+
    width: 30px;
+
    height: 30px;
+
    margin-top: -15px;
+
    margin-left: -15px;
+
    font-size: 30px;
+
 
   }
 
   }
  .carousel-caption {
 
    right: 20%;
 
    left: 20%;
 
    padding-bottom: 30px;
 
  }
 
  .carousel-indicators {
 
    bottom: 20px;
 
  }
 
}
 
  
.clearfix:before,
 
.clearfix:after {
 
  display: table;
 
  content: " ";
 
}
 
  
.clearfix:after {
+
   // TAB PLUGIN DEFINITION
   clear: both;
+
  // =====================
}
+
  
.center-block {
+
  var old = $.fn.tab
  display: block;
+
  margin-right: auto;
+
  margin-left: auto;
+
}
+
  
.pull-right {
+
  $.fn.tab = function ( option ) {
  float: right !important;
+
    return this.each(function () {
}
+
      var $this = $(this)
 +
      var data  = $this.data('bs.tab')
  
.pull-left {
+
      if (!data) $this.data('bs.tab', (data = new Tab(this)))
  float: left !important;
+
      if (typeof option == 'string') data[option]()
}
+
     })
 
+
.hide {
+
  display: none !important;
+
}
+
 
+
.show {
+
  display: block !important;
+
}
+
 
+
.invisible {
+
  visibility: hidden;
+
}
+
 
+
.text-hide {
+
  font: 0/0 a;
+
  color: transparent;
+
  text-shadow: none;
+
  background-color: transparent;
+
  border: 0;
+
}
+
 
+
.hidden {
+
  display: none !important;
+
  visibility: hidden !important;
+
}
+
 
+
.affix {
+
  position: fixed;
+
}
+
 
+
@-ms-viewport {
+
  width: device-width;
+
}
+
 
+
.visible-xs,
+
tr.visible-xs,
+
th.visible-xs,
+
td.visible-xs {
+
  display: none !important;
+
}
+
 
+
@media (max-width: 767px) {
+
  .visible-xs {
+
     display: block !important;
+
 
   }
 
   }
  table.visible-xs {
 
    display: table;
 
  }
 
  tr.visible-xs {
 
    display: table-row !important;
 
  }
 
  th.visible-xs,
 
  td.visible-xs {
 
    display: table-cell !important;
 
  }
 
}
 
  
@media (min-width: 768px) and (max-width: 991px) {
+
   $.fn.tab.Constructor = Tab
   .visible-xs.visible-sm {
+
    display: block !important;
+
  }
+
  table.visible-xs.visible-sm {
+
    display: table;
+
  }
+
  tr.visible-xs.visible-sm {
+
    display: table-row !important;
+
  }
+
  th.visible-xs.visible-sm,
+
  td.visible-xs.visible-sm {
+
    display: table-cell !important;
+
  }
+
}
+
  
@media (min-width: 992px) and (max-width: 1199px) {
 
  .visible-xs.visible-md {
 
    display: block !important;
 
  }
 
  table.visible-xs.visible-md {
 
    display: table;
 
  }
 
  tr.visible-xs.visible-md {
 
    display: table-row !important;
 
  }
 
  th.visible-xs.visible-md,
 
  td.visible-xs.visible-md {
 
    display: table-cell !important;
 
  }
 
}
 
  
@media (min-width: 1200px) {
+
   // TAB NO CONFLICT
   .visible-xs.visible-lg {
+
   // ===============
    display: block !important;
+
   }
+
  table.visible-xs.visible-lg {
+
    display: table;
+
  }
+
  tr.visible-xs.visible-lg {
+
    display: table-row !important;
+
  }
+
  th.visible-xs.visible-lg,
+
  td.visible-xs.visible-lg {
+
    display: table-cell !important;
+
  }
+
}
+
  
.visible-sm,
+
  $.fn.tab.noConflict = function () {
tr.visible-sm,
+
    $.fn.tab = old
th.visible-sm,
+
     return this
td.visible-sm {
+
  display: none !important;
+
}
+
 
+
@media (max-width: 767px) {
+
  .visible-sm.visible-xs {
+
     display: block !important;
+
 
   }
 
   }
  table.visible-sm.visible-xs {
 
    display: table;
 
  }
 
  tr.visible-sm.visible-xs {
 
    display: table-row !important;
 
  }
 
  th.visible-sm.visible-xs,
 
  td.visible-sm.visible-xs {
 
    display: table-cell !important;
 
  }
 
}
 
  
@media (min-width: 768px) and (max-width: 991px) {
 
  .visible-sm {
 
    display: block !important;
 
  }
 
  table.visible-sm {
 
    display: table;
 
  }
 
  tr.visible-sm {
 
    display: table-row !important;
 
  }
 
  th.visible-sm,
 
  td.visible-sm {
 
    display: table-cell !important;
 
  }
 
}
 
  
@media (min-width: 992px) and (max-width: 1199px) {
+
   // TAB DATA-API
   .visible-sm.visible-md {
+
   // ============
    display: block !important;
+
   }
+
  table.visible-sm.visible-md {
+
    display: table;
+
  }
+
  tr.visible-sm.visible-md {
+
    display: table-row !important;
+
  }
+
  th.visible-sm.visible-md,
+
  td.visible-sm.visible-md {
+
    display: table-cell !important;
+
  }
+
}
+
  
@media (min-width: 1200px) {
+
  $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
  .visible-sm.visible-lg {
+
     e.preventDefault()
    display: block !important;
+
    $(this).tab('show')
  }
+
   })
  table.visible-sm.visible-lg {
+
    display: table;
+
  }
+
  tr.visible-sm.visible-lg {
+
     display: table-row !important;
+
  }
+
  th.visible-sm.visible-lg,
+
  td.visible-sm.visible-lg {
+
    display: table-cell !important;
+
   }
+
}
+
  
.visible-md,
+
}(jQuery);
tr.visible-md,
+
th.visible-md,
+
td.visible-md {
+
  display: none !important;
+
}
+
  
@media (max-width: 767px) {
+
/* ========================================================================
  .visible-md.visible-xs {
+
* Bootstrap: affix.js v3.1.1
    display: block !important;
+
* http://getbootstrap.com/javascript/#affix
  }
+
* ========================================================================
  table.visible-md.visible-xs {
+
* Copyright 2011-2014 Twitter, Inc.
    display: table;
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  }
+
* ======================================================================== */
  tr.visible-md.visible-xs {
+
    display: table-row !important;
+
  }
+
  th.visible-md.visible-xs,
+
  td.visible-md.visible-xs {
+
    display: table-cell !important;
+
  }
+
}
+
  
@media (min-width: 768px) and (max-width: 991px) {
 
  .visible-md.visible-sm {
 
    display: block !important;
 
  }
 
  table.visible-md.visible-sm {
 
    display: table;
 
  }
 
  tr.visible-md.visible-sm {
 
    display: table-row !important;
 
  }
 
  th.visible-md.visible-sm,
 
  td.visible-md.visible-sm {
 
    display: table-cell !important;
 
  }
 
}
 
  
@media (min-width: 992px) and (max-width: 1199px) {
+
+function ($) {
   .visible-md {
+
   'use strict';
    display: block !important;
+
  }
+
  table.visible-md {
+
    display: table;
+
  }
+
  tr.visible-md {
+
    display: table-row !important;
+
  }
+
  th.visible-md,
+
  td.visible-md {
+
    display: table-cell !important;
+
  }
+
}
+
  
@media (min-width: 1200px) {
+
   // AFFIX CLASS DEFINITION
   .visible-md.visible-lg {
+
   // ======================
    display: block !important;
+
   }
+
  table.visible-md.visible-lg {
+
    display: table;
+
  }
+
  tr.visible-md.visible-lg {
+
    display: table-row !important;
+
  }
+
  th.visible-md.visible-lg,
+
  td.visible-md.visible-lg {
+
    display: table-cell !important;
+
  }
+
}
+
  
.visible-lg,
+
  var Affix = function (element, options) {
tr.visible-lg,
+
    this.options = $.extend({}, Affix.DEFAULTS, options)
th.visible-lg,
+
    this.$window = $(window)
td.visible-lg {
+
      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
  display: none !important;
+
      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
}
+
  
@media (max-width: 767px) {
+
    this.$element    = $(element)
  .visible-lg.visible-xs {
+
     this.affixed      =
     display: block !important;
+
     this.unpin        =
  }
+
     this.pinnedOffset = null
  table.visible-lg.visible-xs {
+
     display: table;
+
  }
+
  tr.visible-lg.visible-xs {
+
     display: table-row !important;
+
  }
+
  th.visible-lg.visible-xs,
+
  td.visible-lg.visible-xs {
+
    display: table-cell !important;
+
  }
+
}
+
  
@media (min-width: 768px) and (max-width: 991px) {
+
    this.checkPosition()
  .visible-lg.visible-sm {
+
    display: block !important;
+
 
   }
 
   }
  table.visible-lg.visible-sm {
 
    display: table;
 
  }
 
  tr.visible-lg.visible-sm {
 
    display: table-row !important;
 
  }
 
  th.visible-lg.visible-sm,
 
  td.visible-lg.visible-sm {
 
    display: table-cell !important;
 
  }
 
}
 
  
@media (min-width: 992px) and (max-width: 1199px) {
+
   Affix.RESET = 'affix affix-top affix-bottom'
   .visible-lg.visible-md {
+
    display: block !important;
+
  }
+
  table.visible-lg.visible-md {
+
    display: table;
+
  }
+
  tr.visible-lg.visible-md {
+
    display: table-row !important;
+
  }
+
  th.visible-lg.visible-md,
+
  td.visible-lg.visible-md {
+
    display: table-cell !important;
+
  }
+
}
+
  
@media (min-width: 1200px) {
+
   Affix.DEFAULTS = {
  .visible-lg {
+
     offset: 0
    display: block !important;
+
  }
+
  table.visible-lg {
+
    display: table;
+
  }
+
  tr.visible-lg {
+
    display: table-row !important;
+
  }
+
  th.visible-lg,
+
   td.visible-lg {
+
     display: table-cell !important;
+
 
   }
 
   }
}
 
  
.hidden-xs {
+
   Affix.prototype.getPinnedOffset = function () {
   display: block !important;
+
    if (this.pinnedOffset) return this.pinnedOffset
}
+
    this.$element.removeClass(Affix.RESET).addClass('affix')
 
+
    var scrollTop = this.$window.scrollTop()
table.hidden-xs {
+
    var position  = this.$element.offset()
  display: table;
+
    return (this.pinnedOffset = position.top - scrollTop)
}
+
 
+
tr.hidden-xs {
+
  display: table-row !important;
+
}
+
 
+
th.hidden-xs,
+
td.hidden-xs {
+
  display: table-cell !important;
+
}
+
 
+
@media (max-width: 767px) {
+
  .hidden-xs,
+
  tr.hidden-xs,
+
  th.hidden-xs,
+
  td.hidden-xs {
+
    display: none !important;
+
 
   }
 
   }
}
 
  
@media (min-width: 768px) and (max-width: 991px) {
+
  Affix.prototype.checkPositionWithEventLoop = function () {
  .hidden-xs.hidden-sm,
+
    setTimeout($.proxy(this.checkPosition, this), 1)
  tr.hidden-xs.hidden-sm,
+
  th.hidden-xs.hidden-sm,
+
  td.hidden-xs.hidden-sm {
+
    display: none !important;
+
 
   }
 
   }
}
 
  
@media (min-width: 992px) and (max-width: 1199px) {
+
  Affix.prototype.checkPosition = function () {
  .hidden-xs.hidden-md,
+
    if (!this.$element.is(':visible')) return
  tr.hidden-xs.hidden-md,
+
  th.hidden-xs.hidden-md,
+
  td.hidden-xs.hidden-md {
+
    display: none !important;
+
  }
+
}
+
  
@media (min-width: 1200px) {
+
    var scrollHeight = $(document).height()
  .hidden-xs.hidden-lg,
+
    var scrollTop    = this.$window.scrollTop()
  tr.hidden-xs.hidden-lg,
+
    var position    = this.$element.offset()
  th.hidden-xs.hidden-lg,
+
    var offset      = this.options.offset
  td.hidden-xs.hidden-lg {
+
     var offsetTop    = offset.top
     display: none !important;
+
    var offsetBottom = offset.bottom
  }
+
}
+
  
.hidden-sm {
+
    if (this.affixed == 'top') position.top += scrollTop
  display: block !important;
+
}
+
  
table.hidden-sm {
+
    if (typeof offset != 'object')        offsetBottom = offsetTop = offset
  display: table;
+
    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)
}
+
    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
  
tr.hidden-sm {
+
    var affix = this.unpin   != null && (scrollTop + this.unpin <= position.top) ? false :
   display: table-row !important;
+
                offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
}
+
                offsetTop    != null && (scrollTop <= offsetTop) ? 'top' : false
  
th.hidden-sm,
+
    if (this.affixed === affix) return
td.hidden-sm {
+
    if (this.unpin) this.$element.css('top', '')
  display: table-cell !important;
+
}
+
  
@media (max-width: 767px) {
+
    var affixType = 'affix' + (affix ? '-' + affix : '')
  .hidden-sm.hidden-xs,
+
    var e        = $.Event(affixType + '.bs.affix')
  tr.hidden-sm.hidden-xs,
+
  th.hidden-sm.hidden-xs,
+
  td.hidden-sm.hidden-xs {
+
    display: none !important;
+
  }
+
}
+
  
@media (min-width: 768px) and (max-width: 991px) {
+
    this.$element.trigger(e)
  .hidden-sm,
+
  tr.hidden-sm,
+
  th.hidden-sm,
+
  td.hidden-sm {
+
    display: none !important;
+
  }
+
}
+
  
@media (min-width: 992px) and (max-width: 1199px) {
+
    if (e.isDefaultPrevented()) return
  .hidden-sm.hidden-md,
+
  tr.hidden-sm.hidden-md,
+
  th.hidden-sm.hidden-md,
+
  td.hidden-sm.hidden-md {
+
    display: none !important;
+
  }
+
}
+
  
@media (min-width: 1200px) {
+
    this.affixed = affix
  .hidden-sm.hidden-lg,
+
    this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
  tr.hidden-sm.hidden-lg,
+
  th.hidden-sm.hidden-lg,
+
  td.hidden-sm.hidden-lg {
+
    display: none !important;
+
  }
+
}
+
  
.hidden-md {
+
    this.$element
  display: block !important;
+
      .removeClass(Affix.RESET)
}
+
      .addClass(affixType)
 +
      .trigger($.Event(affixType.replace('affix', 'affixed')))
  
table.hidden-md {
+
    if (affix == 'bottom') {
  display: table;
+
      this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() })
}
+
     }
 
+
tr.hidden-md {
+
  display: table-row !important;
+
}
+
 
+
th.hidden-md,
+
td.hidden-md {
+
  display: table-cell !important;
+
}
+
 
+
@media (max-width: 767px) {
+
  .hidden-md.hidden-xs,
+
  tr.hidden-md.hidden-xs,
+
  th.hidden-md.hidden-xs,
+
  td.hidden-md.hidden-xs {
+
     display: none !important;
+
 
   }
 
   }
}
 
  
@media (min-width: 768px) and (max-width: 991px) {
 
  .hidden-md.hidden-sm,
 
  tr.hidden-md.hidden-sm,
 
  th.hidden-md.hidden-sm,
 
  td.hidden-md.hidden-sm {
 
    display: none !important;
 
  }
 
}
 
  
@media (min-width: 992px) and (max-width: 1199px) {
+
   // AFFIX PLUGIN DEFINITION
   .hidden-md,
+
   // =======================
   tr.hidden-md,
+
  th.hidden-md,
+
  td.hidden-md {
+
    display: none !important;
+
  }
+
}
+
  
@media (min-width: 1200px) {
+
   var old = $.fn.affix
   .hidden-md.hidden-lg,
+
  tr.hidden-md.hidden-lg,
+
  th.hidden-md.hidden-lg,
+
  td.hidden-md.hidden-lg {
+
    display: none !important;
+
  }
+
}
+
  
.hidden-lg {
+
  $.fn.affix = function (option) {
   display: block !important;
+
    return this.each(function () {
}
+
      var $this   = $(this)
 +
      var data    = $this.data('bs.affix')
 +
      var options = typeof option == 'object' && option
  
table.hidden-lg {
+
      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
  display: table;
+
      if (typeof option == 'string') data[option]()
}
+
     })
 
+
tr.hidden-lg {
+
  display: table-row !important;
+
}
+
 
+
th.hidden-lg,
+
td.hidden-lg {
+
  display: table-cell !important;
+
}
+
 
+
@media (max-width: 767px) {
+
  .hidden-lg.hidden-xs,
+
  tr.hidden-lg.hidden-xs,
+
  th.hidden-lg.hidden-xs,
+
  td.hidden-lg.hidden-xs {
+
     display: none !important;
+
 
   }
 
   }
}
 
  
@media (min-width: 768px) and (max-width: 991px) {
+
   $.fn.affix.Constructor = Affix
   .hidden-lg.hidden-sm,
+
  tr.hidden-lg.hidden-sm,
+
  th.hidden-lg.hidden-sm,
+
  td.hidden-lg.hidden-sm {
+
    display: none !important;
+
  }
+
}
+
  
@media (min-width: 992px) and (max-width: 1199px) {
 
  .hidden-lg.hidden-md,
 
  tr.hidden-lg.hidden-md,
 
  th.hidden-lg.hidden-md,
 
  td.hidden-lg.hidden-md {
 
    display: none !important;
 
  }
 
}
 
  
@media (min-width: 1200px) {
+
   // AFFIX NO CONFLICT
   .hidden-lg,
+
   // =================
   tr.hidden-lg,
+
  th.hidden-lg,
+
  td.hidden-lg {
+
    display: none !important;
+
  }
+
}
+
  
.visible-print,
+
  $.fn.affix.noConflict = function () {
tr.visible-print,
+
    $.fn.affix = old
th.visible-print,
+
     return this
td.visible-print {
+
  display: none !important;
+
}
+
 
+
@media print {
+
  .visible-print {
+
     display: block !important;
+
 
   }
 
   }
  table.visible-print {
 
    display: table;
 
  }
 
  tr.visible-print {
 
    display: table-row !important;
 
  }
 
  th.visible-print,
 
  td.visible-print {
 
    display: table-cell !important;
 
  }
 
  .hidden-print,
 
  tr.hidden-print,
 
  th.hidden-print,
 
  td.hidden-print {
 
    display: none !important;
 
  }
 
}
 
/* LIGHTBOX */
 
.lightbox {
 
  position: relative;
 
  top: 70px;
 
  z-index: 1050;
 
  line-height: 0;
 
  text-align: center;
 
  background-color: transparent;
 
  outline: none;
 
}
 
 
.lightbox .hide {
 
  display: none;
 
}
 
 
.lightbox .in {
 
  display: block;
 
}
 
 
.lightbox-content {
 
  display: inline-block;
 
  padding: 10px;
 
  background-color: #ffffff;
 
  border: 1px solid #999;
 
  border: 1px solid rgba(0, 0, 0, 0.3);
 
  *border: 1px solid #999;
 
  /* IE6-7 */
 
 
  -webkit-border-radius: 6px;
 
    -moz-border-radius: 6px;
 
          border-radius: 6px;
 
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
 
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
 
          box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
 
  -webkit-background-clip: padding-box;
 
    -moz-background-clip: padding-box;
 
          background-clip: padding-box;
 
}
 
  
.lightbox-content .lightbox-caption {
 
  position: absolute;
 
  right: 12px;
 
  bottom: 11px;
 
  left: 11px;
 
  padding: 2%;
 
  font-size: 14px;
 
  line-height: 18px;
 
  color: white;
 
  text-align: center;
 
  text-shadow: 0 -1px 0 #000000;
 
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
 
  background: #000;
 
  background: rgba(0, 0, 0, 0.6);
 
}
 
  
.lightbox-header .close {
+
   // AFFIX DATA-API
   margin-top: -16px;
+
   // ==============
   margin-right: -16px;
+
  font-size: 2em;
+
  color: white;
+
  opacity: .8;
+
  filter: alpha(opacity=80);
+
}
+
  
.lightbox-header .close :hover {
+
  $(window).on('load', function () {
  opacity: .4;
+
    $('[data-spy="affix"]').each(function () {
  filter: alpha(opacity=40);
+
      var $spy = $(this)
}
+
      var data = $spy.data()
  
 +
      data.offset = data.offset || {}
  
 +
      if (data.offsetBottom) data.offset.bottom = data.offsetBottom
 +
      if (data.offsetTop)    data.offset.top    = data.offsetTop
  
 +
      $spy.affix(data)
 +
    })
 +
  })
  
</style>
+
}(jQuery);
</html>
+
{{:Team:Dundee/navbar}}
+

Revision as of 15:44, 13 September 2015


/*!

* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }

/* ========================================================================

* Bootstrap: transition.js v3.1.1
* http://getbootstrap.com/javascript/#transitions
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
 // ============================================================
 function transitionEnd() {
   var el = document.createElement('bootstrap')
   var transEndEventNames = {
     'WebkitTransition' : 'webkitTransitionEnd',
     'MozTransition'    : 'transitionend',
     'OTransition'      : 'oTransitionEnd otransitionend',
     'transition'       : 'transitionend'
   }
   for (var name in transEndEventNames) {
     if (el.style[name] !== undefined) {
       return { end: transEndEventNames[name] }
     }
   }
   return false // explicit for ie8 (  ._.)
 }
 // http://blog.alexmaccaw.com/css-transitions
 $.fn.emulateTransitionEnd = function (duration) {
   var called = false, $el = this
   $(this).one($.support.transition.end, function () { called = true })
   var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
   setTimeout(callback, duration)
   return this
 }
 $(function () {
   $.support.transition = transitionEnd()
 })

}(jQuery);

/* ========================================================================

* Bootstrap: alert.js v3.1.1
* http://getbootstrap.com/javascript/#alerts
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // ALERT CLASS DEFINITION
 // ======================
 var dismiss = '[data-dismiss="alert"]'
 var Alert   = function (el) {
   $(el).on('click', dismiss, this.close)
 }
 Alert.prototype.close = function (e) {
   var $this    = $(this)
   var selector = $this.attr('data-target')
   if (!selector) {
     selector = $this.attr('href')
     selector = selector && selector.replace(/.*(?=#[^\s]*$)/, ) // strip for ie7
   }
   var $parent = $(selector)
   if (e) e.preventDefault()
   if (!$parent.length) {
     $parent = $this.hasClass('alert') ? $this : $this.parent()
   }
   $parent.trigger(e = $.Event('close.bs.alert'))
   if (e.isDefaultPrevented()) return
   $parent.removeClass('in')
   function removeElement() {
     $parent.trigger('closed.bs.alert').remove()
   }
   $.support.transition && $parent.hasClass('fade') ?
     $parent
       .one($.support.transition.end, removeElement)
       .emulateTransitionEnd(150) :
     removeElement()
 }


 // ALERT PLUGIN DEFINITION
 // =======================
 var old = $.fn.alert
 $.fn.alert = function (option) {
   return this.each(function () {
     var $this = $(this)
     var data  = $this.data('bs.alert')
     if (!data) $this.data('bs.alert', (data = new Alert(this)))
     if (typeof option == 'string') data[option].call($this)
   })
 }
 $.fn.alert.Constructor = Alert


 // ALERT NO CONFLICT
 // =================
 $.fn.alert.noConflict = function () {
   $.fn.alert = old
   return this
 }


 // ALERT DATA-API
 // ==============
 $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)

}(jQuery);

/* ========================================================================

* Bootstrap: button.js v3.1.1
* http://getbootstrap.com/javascript/#buttons
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // BUTTON PUBLIC CLASS DEFINITION
 // ==============================
 var Button = function (element, options) {
   this.$element  = $(element)
   this.options   = $.extend({}, Button.DEFAULTS, options)
   this.isLoading = false
 }
 Button.DEFAULTS = {
   loadingText: 'loading...'
 }
 Button.prototype.setState = function (state) {
   var d    = 'disabled'
   var $el  = this.$element
   var val  = $el.is('input') ? 'val' : 'html'
   var data = $el.data()
   state = state + 'Text'
   if (!data.resetText) $el.data('resetText', $el[val]())
   $el[val](data[state] || this.options[state])
   // push to event loop to allow forms to submit
   setTimeout($.proxy(function () {
     if (state == 'loadingText') {
       this.isLoading = true
       $el.addClass(d).attr(d, d)
     } else if (this.isLoading) {
       this.isLoading = false
       $el.removeClass(d).removeAttr(d)
     }
   }, this), 0)
 }
 Button.prototype.toggle = function () {
   var changed = true
   var $parent = this.$element.closest('[data-toggle="buttons"]')
   if ($parent.length) {
     var $input = this.$element.find('input')
     if ($input.prop('type') == 'radio') {
       if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
       else $parent.find('.active').removeClass('active')
     }
     if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
   }
   if (changed) this.$element.toggleClass('active')
 }


 // BUTTON PLUGIN DEFINITION
 // ========================
 var old = $.fn.button
 $.fn.button = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.button')
     var options = typeof option == 'object' && option
     if (!data) $this.data('bs.button', (data = new Button(this, options)))
     if (option == 'toggle') data.toggle()
     else if (option) data.setState(option)
   })
 }
 $.fn.button.Constructor = Button


 // BUTTON NO CONFLICT
 // ==================
 $.fn.button.noConflict = function () {
   $.fn.button = old
   return this
 }


 // BUTTON DATA-API
 // ===============
 $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
   var $btn = $(e.target)
   if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
   $btn.button('toggle')
   e.preventDefault()
 })

}(jQuery);

/* ========================================================================

* Bootstrap: carousel.js v3.1.1
* http://getbootstrap.com/javascript/#carousel
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // CAROUSEL CLASS DEFINITION
 // =========================
 var Carousel = function (element, options) {
   this.$element    = $(element)
   this.$indicators = this.$element.find('.carousel-indicators')
   this.options     = options
   this.paused      =
   this.sliding     =
   this.interval    =
   this.$active     =
   this.$items      = null
   this.options.pause == 'hover' && this.$element
     .on('mouseenter', $.proxy(this.pause, this))
     .on('mouseleave', $.proxy(this.cycle, this))
 }
 Carousel.DEFAULTS = {
   interval: 5000,
   pause: 'hover',
   wrap: true
 }
 Carousel.prototype.cycle =  function (e) {
   e || (this.paused = false)
   this.interval && clearInterval(this.interval)
   this.options.interval
     && !this.paused
     && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
   return this
 }
 Carousel.prototype.getActiveIndex = function () {
   this.$active = this.$element.find('.item.active')
   this.$items  = this.$active.parent().children()
   return this.$items.index(this.$active)
 }
 Carousel.prototype.to = function (pos) {
   var that        = this
   var activeIndex = this.getActiveIndex()
   if (pos > (this.$items.length - 1) || pos < 0) return
   if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
   if (activeIndex == pos) return this.pause().cycle()
   return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
 }
 Carousel.prototype.pause = function (e) {
   e || (this.paused = true)
   if (this.$element.find('.next, .prev').length && $.support.transition) {
     this.$element.trigger($.support.transition.end)
     this.cycle(true)
   }
   this.interval = clearInterval(this.interval)
   return this
 }
 Carousel.prototype.next = function () {
   if (this.sliding) return
   return this.slide('next')
 }
 Carousel.prototype.prev = function () {
   if (this.sliding) return
   return this.slide('prev')
 }
 Carousel.prototype.slide = function (type, next) {
   var $active   = this.$element.find('.item.active')
   var $next     = next || $active[type]()
   var isCycling = this.interval
   var direction = type == 'next' ? 'left' : 'right'
   var fallback  = type == 'next' ? 'first' : 'last'
   var that      = this
   if (!$next.length) {
     if (!this.options.wrap) return
     $next = this.$element.find('.item')[fallback]()
   }
   if ($next.hasClass('active')) return this.sliding = false
   var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
   this.$element.trigger(e)
   if (e.isDefaultPrevented()) return
   this.sliding = true
   isCycling && this.pause()
   if (this.$indicators.length) {
     this.$indicators.find('.active').removeClass('active')
     this.$element.one('slid.bs.carousel', function () {
       var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
       $nextIndicator && $nextIndicator.addClass('active')
     })
   }
   if ($.support.transition && this.$element.hasClass('slide')) {
     $next.addClass(type)
     $next[0].offsetWidth // force reflow
     $active.addClass(direction)
     $next.addClass(direction)
     $active
       .one($.support.transition.end, function () {
         $next.removeClass([type, direction].join(' ')).addClass('active')
         $active.removeClass(['active', direction].join(' '))
         that.sliding = false
         setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
       })
       .emulateTransitionEnd($active.css('transition-duration').slice(0, -1) * 1000)
   } else {
     $active.removeClass('active')
     $next.addClass('active')
     this.sliding = false
     this.$element.trigger('slid.bs.carousel')
   }
   isCycling && this.cycle()
   return this
 }


 // CAROUSEL PLUGIN DEFINITION
 // ==========================
 var old = $.fn.carousel
 $.fn.carousel = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.carousel')
     var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
     var action  = typeof option == 'string' ? option : options.slide
     if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
     if (typeof option == 'number') data.to(option)
     else if (action) data[action]()
     else if (options.interval) data.pause().cycle()
   })
 }
 $.fn.carousel.Constructor = Carousel


 // CAROUSEL NO CONFLICT
 // ====================
 $.fn.carousel.noConflict = function () {
   $.fn.carousel = old
   return this
 }


 // CAROUSEL DATA-API
 // =================
 $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
   var $this   = $(this), href
   var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, )) //strip for ie7
   var options = $.extend({}, $target.data(), $this.data())
   var slideIndex = $this.attr('data-slide-to')
   if (slideIndex) options.interval = false
   $target.carousel(options)
   if (slideIndex = $this.attr('data-slide-to')) {
     $target.data('bs.carousel').to(slideIndex)
   }
   e.preventDefault()
 })
 $(window).on('load', function () {
   $('[data-ride="carousel"]').each(function () {
     var $carousel = $(this)
     $carousel.carousel($carousel.data())
   })
 })

}(jQuery);

/* ========================================================================

* Bootstrap: collapse.js v3.1.1
* http://getbootstrap.com/javascript/#collapse
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // COLLAPSE PUBLIC CLASS DEFINITION
 // ================================
 var Collapse = function (element, options) {
   this.$element      = $(element)
   this.options       = $.extend({}, Collapse.DEFAULTS, options)
   this.transitioning = null
   if (this.options.parent) this.$parent = $(this.options.parent)
   if (this.options.toggle) this.toggle()
 }
 Collapse.DEFAULTS = {
   toggle: true
 }
 Collapse.prototype.dimension = function () {
   var hasWidth = this.$element.hasClass('width')
   return hasWidth ? 'width' : 'height'
 }
 Collapse.prototype.show = function () {
   if (this.transitioning || this.$element.hasClass('in')) return
   var startEvent = $.Event('show.bs.collapse')
   this.$element.trigger(startEvent)
   if (startEvent.isDefaultPrevented()) return
   var actives = this.$parent && this.$parent.find('> .panel > .in')
   if (actives && actives.length) {
     var hasData = actives.data('bs.collapse')
     if (hasData && hasData.transitioning) return
     actives.collapse('hide')
     hasData || actives.data('bs.collapse', null)
   }
   var dimension = this.dimension()
   this.$element
     .removeClass('collapse')
     .addClass('collapsing')
     [dimension](0)
   this.transitioning = 1
   var complete = function () {
     this.$element
       .removeClass('collapsing')
       .addClass('collapse in')
       [dimension]('auto')
     this.transitioning = 0
     this.$element.trigger('shown.bs.collapse')
   }
   if (!$.support.transition) return complete.call(this)
   var scrollSize = $.camelCase(['scroll', dimension].join('-'))
   this.$element
     .one($.support.transition.end, $.proxy(complete, this))
     .emulateTransitionEnd(350)
     [dimension](this.$element[0][scrollSize])
 }
 Collapse.prototype.hide = function () {
   if (this.transitioning || !this.$element.hasClass('in')) return
   var startEvent = $.Event('hide.bs.collapse')
   this.$element.trigger(startEvent)
   if (startEvent.isDefaultPrevented()) return
   var dimension = this.dimension()
   this.$element
     [dimension](this.$element[dimension]())
     [0].offsetHeight
   this.$element
     .addClass('collapsing')
     .removeClass('collapse')
     .removeClass('in')
   this.transitioning = 1
   var complete = function () {
     this.transitioning = 0
     this.$element
       .trigger('hidden.bs.collapse')
       .removeClass('collapsing')
       .addClass('collapse')
   }
   if (!$.support.transition) return complete.call(this)
   this.$element
     [dimension](0)
     .one($.support.transition.end, $.proxy(complete, this))
     .emulateTransitionEnd(350)
 }
 Collapse.prototype.toggle = function () {
   this[this.$element.hasClass('in') ? 'hide' : 'show']()
 }


 // COLLAPSE PLUGIN DEFINITION
 // ==========================
 var old = $.fn.collapse
 $.fn.collapse = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.collapse')
     var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
     if (!data && options.toggle && option == 'show') option = !option
     if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
     if (typeof option == 'string') data[option]()
   })
 }
 $.fn.collapse.Constructor = Collapse


 // COLLAPSE NO CONFLICT
 // ====================
 $.fn.collapse.noConflict = function () {
   $.fn.collapse = old
   return this
 }


 // COLLAPSE DATA-API
 // =================
 $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
   var $this   = $(this), href
   var target  = $this.attr('data-target')
       || e.preventDefault()
       || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, ) //strip for ie7
   var $target = $(target)
   var data    = $target.data('bs.collapse')
   var option  = data ? 'toggle' : $this.data()
   var parent  = $this.attr('data-parent')
   var $parent = parent && $(parent)
   if (!data || !data.transitioning) {
     if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
     $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
   }
   $target.collapse(option)
 })

}(jQuery);

/* ========================================================================

* Bootstrap: dropdown.js v3.1.1
* http://getbootstrap.com/javascript/#dropdowns
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // DROPDOWN CLASS DEFINITION
 // =========================
 var backdrop = '.dropdown-backdrop'
 var toggle   = '[data-toggle=dropdown]'
 var Dropdown = function (element) {
   $(element).on('click.bs.dropdown', this.toggle)
 }
 Dropdown.prototype.toggle = function (e) {
   var $this = $(this)
   if ($this.is('.disabled, :disabled')) return
   var $parent  = getParent($this)
   var isActive = $parent.hasClass('open')
   clearMenus()
   if (!isActive) {
     if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
       // if mobile we use a backdrop because click events don't delegate
       $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
     }
     var relatedTarget = { relatedTarget: this }
     $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
     if (e.isDefaultPrevented()) return
     $parent
       .toggleClass('open')
       .trigger('shown.bs.dropdown', relatedTarget)
     $this.focus()
   }
   return false
 }
 Dropdown.prototype.keydown = function (e) {
   if (!/(38|40|27)/.test(e.keyCode)) return
   var $this = $(this)
   e.preventDefault()
   e.stopPropagation()
   if ($this.is('.disabled, :disabled')) return
   var $parent  = getParent($this)
   var isActive = $parent.hasClass('open')
   if (!isActive || (isActive && e.keyCode == 27)) {
     if (e.which == 27) $parent.find(toggle).focus()
     return $this.click()
   }
   var desc = ' li:not(.divider):visible a'
   var $items = $parent.find('[role=menu]' + desc + ', [role=listbox]' + desc)
   if (!$items.length) return
   var index = $items.index($items.filter(':focus'))
   if (e.keyCode == 38 && index > 0)                 index--                        // up
   if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
   if (!~index)                                      index = 0
   $items.eq(index).focus()
 }
 function clearMenus(e) {
   $(backdrop).remove()
   $(toggle).each(function () {
     var $parent = getParent($(this))
     var relatedTarget = { relatedTarget: this }
     if (!$parent.hasClass('open')) return
     $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
     if (e.isDefaultPrevented()) return
     $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
   })
 }
 function getParent($this) {
   var selector = $this.attr('data-target')
   if (!selector) {
     selector = $this.attr('href')
     selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, ) //strip for ie7
   }
   var $parent = selector && $(selector)
   return $parent && $parent.length ? $parent : $this.parent()
 }


 // DROPDOWN PLUGIN DEFINITION
 // ==========================
 var old = $.fn.dropdown
 $.fn.dropdown = function (option) {
   return this.each(function () {
     var $this = $(this)
     var data  = $this.data('bs.dropdown')
     if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
     if (typeof option == 'string') data[option].call($this)
   })
 }
 $.fn.dropdown.Constructor = Dropdown


 // DROPDOWN NO CONFLICT
 // ====================
 $.fn.dropdown.noConflict = function () {
   $.fn.dropdown = old
   return this
 }


 // APPLY TO STANDARD DROPDOWN ELEMENTS
 // ===================================
 $(document)
   .on('click.bs.dropdown.data-api', clearMenus)
   .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
   .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
   .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu], [role=listbox]', Dropdown.prototype.keydown)

}(jQuery);

/* ========================================================================

* Bootstrap: modal.js v3.1.1
* http://getbootstrap.com/javascript/#modals
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // MODAL CLASS DEFINITION
 // ======================
 var Modal = function (element, options) {
   this.options   = options
   this.$element  = $(element)
   this.$backdrop =
   this.isShown   = null
   if (this.options.remote) {
     this.$element
       .find('.modal-content')
       .load(this.options.remote, $.proxy(function () {
         this.$element.trigger('loaded.bs.modal')
       }, this))
   }
 }
 Modal.DEFAULTS = {
   backdrop: true,
   keyboard: true,
   show: true
 }
 Modal.prototype.toggle = function (_relatedTarget) {
   return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
 }
 Modal.prototype.show = function (_relatedTarget) {
   var that = this
   var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
   this.$element.trigger(e)
   if (this.isShown || e.isDefaultPrevented()) return
   this.isShown = true
   this.escape()
   this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
   this.backdrop(function () {
     var transition = $.support.transition && that.$element.hasClass('fade')
     if (!that.$element.parent().length) {
       that.$element.appendTo(document.body) // don't move modals dom position
     }
     that.$element
       .show()
       .scrollTop(0)
     if (transition) {
       that.$element[0].offsetWidth // force reflow
     }
     that.$element
       .addClass('in')
       .attr('aria-hidden', false)
     that.enforceFocus()
     var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
     transition ?
       that.$element.find('.modal-dialog') // wait for modal to slide in
         .one($.support.transition.end, function () {
           that.$element.focus().trigger(e)
         })
         .emulateTransitionEnd(300) :
       that.$element.focus().trigger(e)
   })
 }
 Modal.prototype.hide = function (e) {
   if (e) e.preventDefault()
   e = $.Event('hide.bs.modal')
   this.$element.trigger(e)
   if (!this.isShown || e.isDefaultPrevented()) return
   this.isShown = false
   this.escape()
   $(document).off('focusin.bs.modal')
   this.$element
     .removeClass('in')
     .attr('aria-hidden', true)
     .off('click.dismiss.bs.modal')
   $.support.transition && this.$element.hasClass('fade') ?
     this.$element
       .one($.support.transition.end, $.proxy(this.hideModal, this))
       .emulateTransitionEnd(300) :
     this.hideModal()
 }
 Modal.prototype.enforceFocus = function () {
   $(document)
     .off('focusin.bs.modal') // guard against infinite focus loop
     .on('focusin.bs.modal', $.proxy(function (e) {
       if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
         this.$element.focus()
       }
     }, this))
 }
 Modal.prototype.escape = function () {
   if (this.isShown && this.options.keyboard) {
     this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
       e.which == 27 && this.hide()
     }, this))
   } else if (!this.isShown) {
     this.$element.off('keyup.dismiss.bs.modal')
   }
 }
 Modal.prototype.hideModal = function () {
   var that = this
   this.$element.hide()
   this.backdrop(function () {
     that.removeBackdrop()
     that.$element.trigger('hidden.bs.modal')
   })
 }
 Modal.prototype.removeBackdrop = function () {
   this.$backdrop && this.$backdrop.remove()
   this.$backdrop = null
 }
 Modal.prototype.backdrop = function (callback) {
   var animate = this.$element.hasClass('fade') ? 'fade' : 
   if (this.isShown && this.options.backdrop) {
     var doAnimate = $.support.transition && animate
     this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
       .appendTo(document.body)
     this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
       if (e.target !== e.currentTarget) return
       this.options.backdrop == 'static'
         ? this.$element[0].focus.call(this.$element[0])
         : this.hide.call(this)
     }, this))
     if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
     this.$backdrop.addClass('in')
     if (!callback) return
     doAnimate ?
       this.$backdrop
         .one($.support.transition.end, callback)
         .emulateTransitionEnd(150) :
       callback()
   } else if (!this.isShown && this.$backdrop) {
     this.$backdrop.removeClass('in')
     $.support.transition && this.$element.hasClass('fade') ?
       this.$backdrop
         .one($.support.transition.end, callback)
         .emulateTransitionEnd(150) :
       callback()
   } else if (callback) {
     callback()
   }
 }


 // MODAL PLUGIN DEFINITION
 // =======================
 var old = $.fn.modal
 $.fn.modal = function (option, _relatedTarget) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.modal')
     var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
     if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
     if (typeof option == 'string') data[option](_relatedTarget)
     else if (options.show) data.show(_relatedTarget)
   })
 }
 $.fn.modal.Constructor = Modal


 // MODAL NO CONFLICT
 // =================
 $.fn.modal.noConflict = function () {
   $.fn.modal = old
   return this
 }


 // MODAL DATA-API
 // ==============
 $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
   var $this   = $(this)
   var href    = $this.attr('href')
   var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ))) //strip for ie7
   var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
   if ($this.is('a')) e.preventDefault()
   $target
     .modal(option, this)
     .one('hide', function () {
       $this.is(':visible') && $this.focus()
     })
 })
 $(document)
   .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
   .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })

}(jQuery);

/* ========================================================================

* Bootstrap: tooltip.js v3.1.1
* http://getbootstrap.com/javascript/#tooltip
* Inspired by the original jQuery.tipsy by Jason Frame
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // TOOLTIP PUBLIC CLASS DEFINITION
 // ===============================
 var Tooltip = function (element, options) {
   this.type       =
   this.options    =
   this.enabled    =
   this.timeout    =
   this.hoverState =
   this.$element   = null
   this.init('tooltip', element, options)
 }
 Tooltip.DEFAULTS = {
   animation: true,
   placement: 'top',
   selector: false,
template: '
',
   trigger: 'hover focus',
   title: ,
   delay: 0,
   html: false,
   container: false
 }
 Tooltip.prototype.init = function (type, element, options) {
   this.enabled  = true
   this.type     = type
   this.$element = $(element)
   this.options  = this.getOptions(options)
   var triggers = this.options.trigger.split(' ')
   for (var i = triggers.length; i--;) {
     var trigger = triggers[i]
     if (trigger == 'click') {
       this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
     } else if (trigger != 'manual') {
       var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
       var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
       this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
       this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
     }
   }
   this.options.selector ?
     (this._options = $.extend({}, this.options, { trigger: 'manual', selector:  })) :
     this.fixTitle()
 }
 Tooltip.prototype.getDefaults = function () {
   return Tooltip.DEFAULTS
 }
 Tooltip.prototype.getOptions = function (options) {
   options = $.extend({}, this.getDefaults(), this.$element.data(), options)
   if (options.delay && typeof options.delay == 'number') {
     options.delay = {
       show: options.delay,
       hide: options.delay
     }
   }
   return options
 }
 Tooltip.prototype.getDelegateOptions = function () {
   var options  = {}
   var defaults = this.getDefaults()
   this._options && $.each(this._options, function (key, value) {
     if (defaults[key] != value) options[key] = value
   })
   return options
 }
 Tooltip.prototype.enter = function (obj) {
   var self = obj instanceof this.constructor ?
     obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
   clearTimeout(self.timeout)
   self.hoverState = 'in'
   if (!self.options.delay || !self.options.delay.show) return self.show()
   self.timeout = setTimeout(function () {
     if (self.hoverState == 'in') self.show()
   }, self.options.delay.show)
 }
 Tooltip.prototype.leave = function (obj) {
   var self = obj instanceof this.constructor ?
     obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
   clearTimeout(self.timeout)
   self.hoverState = 'out'
   if (!self.options.delay || !self.options.delay.hide) return self.hide()
   self.timeout = setTimeout(function () {
     if (self.hoverState == 'out') self.hide()
   }, self.options.delay.hide)
 }
 Tooltip.prototype.show = function () {
   var e = $.Event('show.bs.' + this.type)
   if (this.hasContent() && this.enabled) {
     this.$element.trigger(e)
     if (e.isDefaultPrevented()) return
     var that = this;
     var $tip = this.tip()
     this.setContent()
     if (this.options.animation) $tip.addClass('fade')
     var placement = typeof this.options.placement == 'function' ?
       this.options.placement.call(this, $tip[0], this.$element[0]) :
       this.options.placement
     var autoToken = /\s?auto?\s?/i
     var autoPlace = autoToken.test(placement)
     if (autoPlace) placement = placement.replace(autoToken, ) || 'top'
     $tip
       .detach()
       .css({ top: 0, left: 0, display: 'block' })
       .addClass(placement)
     this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
     var pos          = this.getPosition()
     var actualWidth  = $tip[0].offsetWidth
     var actualHeight = $tip[0].offsetHeight
     if (autoPlace) {
       var $parent = this.$element.parent()
       var orgPlacement = placement
       var docScroll    = document.documentElement.scrollTop || document.body.scrollTop
       var parentWidth  = this.options.container == 'body' ? window.innerWidth  : $parent.outerWidth()
       var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()
       var parentLeft   = this.options.container == 'body' ? 0 : $parent.offset().left
       placement = placement == 'bottom' && pos.top   + pos.height  + actualHeight - docScroll > parentHeight  ? 'top'    :
                   placement == 'top'    && pos.top   - docScroll   - actualHeight < 0                         ? 'bottom' :
                   placement == 'right'  && pos.right + actualWidth > parentWidth                              ? 'left'   :
                   placement == 'left'   && pos.left  - actualWidth < parentLeft                               ? 'right'  :
                   placement
       $tip
         .removeClass(orgPlacement)
         .addClass(placement)
     }
     var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
     this.applyPlacement(calculatedOffset, placement)
     this.hoverState = null
     var complete = function() {
       that.$element.trigger('shown.bs.' + that.type)
     }
     $.support.transition && this.$tip.hasClass('fade') ?
       $tip
         .one($.support.transition.end, complete)
         .emulateTransitionEnd(150) :
       complete()
   }
 }
 Tooltip.prototype.applyPlacement = function (offset, placement) {
   var replace
   var $tip   = this.tip()
   var width  = $tip[0].offsetWidth
   var height = $tip[0].offsetHeight
   // manually read margins because getBoundingClientRect includes difference
   var marginTop = parseInt($tip.css('margin-top'), 10)
   var marginLeft = parseInt($tip.css('margin-left'), 10)
   // we must check for NaN for ie 8/9
   if (isNaN(marginTop))  marginTop  = 0
   if (isNaN(marginLeft)) marginLeft = 0
   offset.top  = offset.top  + marginTop
   offset.left = offset.left + marginLeft
   // $.fn.offset doesn't round pixel values
   // so we use setOffset directly with our own function B-0
   $.offset.setOffset($tip[0], $.extend({
     using: function (props) {
       $tip.css({
         top: Math.round(props.top),
         left: Math.round(props.left)
       })
     }
   }, offset), 0)
   $tip.addClass('in')
   // check to see if placing tip in new offset caused the tip to resize itself
   var actualWidth  = $tip[0].offsetWidth
   var actualHeight = $tip[0].offsetHeight
   if (placement == 'top' && actualHeight != height) {
     replace = true
     offset.top = offset.top + height - actualHeight
   }
   if (/bottom|top/.test(placement)) {
     var delta = 0
     if (offset.left < 0) {
       delta       = offset.left * -2
       offset.left = 0
       $tip.offset(offset)
       actualWidth  = $tip[0].offsetWidth
       actualHeight = $tip[0].offsetHeight
     }
     this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
   } else {
     this.replaceArrow(actualHeight - height, actualHeight, 'top')
   }
   if (replace) $tip.offset(offset)
 }
 Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
   this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : )
 }
 Tooltip.prototype.setContent = function () {
   var $tip  = this.tip()
   var title = this.getTitle()
   $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
   $tip.removeClass('fade in top bottom left right')
 }
 Tooltip.prototype.hide = function () {
   var that = this
   var $tip = this.tip()
   var e    = $.Event('hide.bs.' + this.type)
   function complete() {
     if (that.hoverState != 'in') $tip.detach()
     that.$element.trigger('hidden.bs.' + that.type)
   }
   this.$element.trigger(e)
   if (e.isDefaultPrevented()) return
   $tip.removeClass('in')
   $.support.transition && this.$tip.hasClass('fade') ?
     $tip
       .one($.support.transition.end, complete)
       .emulateTransitionEnd(150) :
     complete()
   this.hoverState = null
   return this
 }
 Tooltip.prototype.fixTitle = function () {
   var $e = this.$element
   if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
     $e.attr('data-original-title', $e.attr('title') || ).attr('title', )
   }
 }
 Tooltip.prototype.hasContent = function () {
   return this.getTitle()
 }
 Tooltip.prototype.getPosition = function () {
   var el = this.$element[0]
   return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
     width: el.offsetWidth,
     height: el.offsetHeight
   }, this.$element.offset())
 }
 Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
   return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :
          placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :
          placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
       /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width   }
 }
 Tooltip.prototype.getTitle = function () {
   var title
   var $e = this.$element
   var o  = this.options
   title = $e.attr('data-original-title')
     || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
   return title
 }
 Tooltip.prototype.tip = function () {
   return this.$tip = this.$tip || $(this.options.template)
 }
 Tooltip.prototype.arrow = function () {
   return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
 }
 Tooltip.prototype.validate = function () {
   if (!this.$element[0].parentNode) {
     this.hide()
     this.$element = null
     this.options  = null
   }
 }
 Tooltip.prototype.enable = function () {
   this.enabled = true
 }
 Tooltip.prototype.disable = function () {
   this.enabled = false
 }
 Tooltip.prototype.toggleEnabled = function () {
   this.enabled = !this.enabled
 }
 Tooltip.prototype.toggle = function (e) {
   var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
   self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
 }
 Tooltip.prototype.destroy = function () {
   clearTimeout(this.timeout)
   this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
 }


 // TOOLTIP PLUGIN DEFINITION
 // =========================
 var old = $.fn.tooltip
 $.fn.tooltip = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.tooltip')
     var options = typeof option == 'object' && option
     if (!data && option == 'destroy') return
     if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
     if (typeof option == 'string') data[option]()
   })
 }
 $.fn.tooltip.Constructor = Tooltip


 // TOOLTIP NO CONFLICT
 // ===================
 $.fn.tooltip.noConflict = function () {
   $.fn.tooltip = old
   return this
 }

}(jQuery);

/* ========================================================================

* Bootstrap: popover.js v3.1.1
* http://getbootstrap.com/javascript/#popovers
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // POPOVER PUBLIC CLASS DEFINITION
 // ===============================
 var Popover = function (element, options) {
   this.init('popover', element, options)
 }
 if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
 Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
   placement: 'right',
   trigger: 'click',
   content: ,
template: '

'
 })


 // NOTE: POPOVER EXTENDS tooltip.js
 // ================================
 Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
 Popover.prototype.constructor = Popover
 Popover.prototype.getDefaults = function () {
   return Popover.DEFAULTS
 }
 Popover.prototype.setContent = function () {
   var $tip    = this.tip()
   var title   = this.getTitle()
   var content = this.getContent()
   $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
   $tip.find('.popover-content')[ // we use append for html objects to maintain js events
     this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
   ](content)
   $tip.removeClass('fade top bottom left right in')
   // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
   // this manually by checking the contents.
   if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
 }
 Popover.prototype.hasContent = function () {
   return this.getTitle() || this.getContent()
 }
 Popover.prototype.getContent = function () {
   var $e = this.$element
   var o  = this.options
   return $e.attr('data-content')
     || (typeof o.content == 'function' ?
           o.content.call($e[0]) :
           o.content)
 }
 Popover.prototype.arrow = function () {
   return this.$arrow = this.$arrow || this.tip().find('.arrow')
 }
 Popover.prototype.tip = function () {
   if (!this.$tip) this.$tip = $(this.options.template)
   return this.$tip
 }


 // POPOVER PLUGIN DEFINITION
 // =========================
 var old = $.fn.popover
 $.fn.popover = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.popover')
     var options = typeof option == 'object' && option
     if (!data && option == 'destroy') return
     if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
     if (typeof option == 'string') data[option]()
   })
 }
 $.fn.popover.Constructor = Popover


 // POPOVER NO CONFLICT
 // ===================
 $.fn.popover.noConflict = function () {
   $.fn.popover = old
   return this
 }

}(jQuery);

/* ========================================================================

* Bootstrap: scrollspy.js v3.1.1
* http://getbootstrap.com/javascript/#scrollspy
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // SCROLLSPY CLASS DEFINITION
 // ==========================
 function ScrollSpy(element, options) {
   var href
   var process  = $.proxy(this.process, this)
   this.$element       = $(element).is('body') ? $(window) : $(element)
   this.$body          = $('body')
   this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
   this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)
   this.selector       = (this.options.target
     || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, )) //strip for ie7
     || ) + ' .nav li > a'
   this.offsets        = $([])
   this.targets        = $([])
   this.activeTarget   = null
   this.refresh()
   this.process()
 }
 ScrollSpy.DEFAULTS = {
   offset: 10
 }
 ScrollSpy.prototype.refresh = function () {
   var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
   this.offsets = $([])
   this.targets = $([])
   var self     = this
   var $targets = this.$body
     .find(this.selector)
     .map(function () {
       var $el   = $(this)
       var href  = $el.data('target') || $el.attr('href')
       var $href = /^#./.test(href) && $(href)
       return ($href
         && $href.length
         && $href.is(':visible')
         && [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
     })
     .sort(function (a, b) { return a[0] - b[0] })
     .each(function () {
       self.offsets.push(this[0])
       self.targets.push(this[1])
     })
 }
 ScrollSpy.prototype.process = function () {
   var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
   var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
   var maxScroll    = scrollHeight - this.$scrollElement.height()
   var offsets      = this.offsets
   var targets      = this.targets
   var activeTarget = this.activeTarget
   var i
   if (scrollTop >= maxScroll) {
     return activeTarget != (i = targets.last()[0]) && this.activate(i)
   }
   if (activeTarget && scrollTop <= offsets[0]) {
     return activeTarget != (i = targets[0]) && this.activate(i)
   }
   for (i = offsets.length; i--;) {
     activeTarget != targets[i]
       && scrollTop >= offsets[i]
       && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
       && this.activate( targets[i] )
   }
 }
 ScrollSpy.prototype.activate = function (target) {
   this.activeTarget = target
   $(this.selector)
     .parentsUntil(this.options.target, '.active')
     .removeClass('active')
   var selector = this.selector +
       '[data-target="' + target + '"],' +
       this.selector + '[href="' + target + '"]'
   var active = $(selector)
     .parents('li')
     .addClass('active')
   if (active.parent('.dropdown-menu').length) {
     active = active
       .closest('li.dropdown')
       .addClass('active')
   }
   active.trigger('activate.bs.scrollspy')
 }


 // SCROLLSPY PLUGIN DEFINITION
 // ===========================
 var old = $.fn.scrollspy
 $.fn.scrollspy = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.scrollspy')
     var options = typeof option == 'object' && option
     if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
     if (typeof option == 'string') data[option]()
   })
 }
 $.fn.scrollspy.Constructor = ScrollSpy


 // SCROLLSPY NO CONFLICT
 // =====================
 $.fn.scrollspy.noConflict = function () {
   $.fn.scrollspy = old
   return this
 }


 // SCROLLSPY DATA-API
 // ==================
 $(window).on('load', function () {
   $('[data-spy="scroll"]').each(function () {
     var $spy = $(this)
     $spy.scrollspy($spy.data())
   })
 })

}(jQuery);

/* ========================================================================

* Bootstrap: tab.js v3.1.1
* http://getbootstrap.com/javascript/#tabs
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // TAB CLASS DEFINITION
 // ====================
 var Tab = function (element) {
   this.element = $(element)
 }
 Tab.prototype.show = function () {
   var $this    = this.element
   var $ul      = $this.closest('ul:not(.dropdown-menu)')
   var selector = $this.data('target')
   if (!selector) {
     selector = $this.attr('href')
     selector = selector && selector.replace(/.*(?=#[^\s]*$)/, ) //strip for ie7
   }
   if ($this.parent('li').hasClass('active')) return
   var previous = $ul.find('.active:last a')[0]
   var e        = $.Event('show.bs.tab', {
     relatedTarget: previous
   })
   $this.trigger(e)
   if (e.isDefaultPrevented()) return
   var $target = $(selector)
   this.activate($this.parent('li'), $ul)
   this.activate($target, $target.parent(), function () {
     $this.trigger({
       type: 'shown.bs.tab',
       relatedTarget: previous
     })
   })
 }
 Tab.prototype.activate = function (element, container, callback) {
   var $active    = container.find('> .active')
   var transition = callback
     && $.support.transition
     && $active.hasClass('fade')
   function next() {
     $active
       .removeClass('active')
       .find('> .dropdown-menu > .active')
       .removeClass('active')
     element.addClass('active')
     if (transition) {
       element[0].offsetWidth // reflow for transition
       element.addClass('in')
     } else {
       element.removeClass('fade')
     }
     if (element.parent('.dropdown-menu')) {
       element.closest('li.dropdown').addClass('active')
     }
     callback && callback()
   }
   transition ?
     $active
       .one($.support.transition.end, next)
       .emulateTransitionEnd(150) :
     next()
   $active.removeClass('in')
 }


 // TAB PLUGIN DEFINITION
 // =====================
 var old = $.fn.tab
 $.fn.tab = function ( option ) {
   return this.each(function () {
     var $this = $(this)
     var data  = $this.data('bs.tab')
     if (!data) $this.data('bs.tab', (data = new Tab(this)))
     if (typeof option == 'string') data[option]()
   })
 }
 $.fn.tab.Constructor = Tab


 // TAB NO CONFLICT
 // ===============
 $.fn.tab.noConflict = function () {
   $.fn.tab = old
   return this
 }


 // TAB DATA-API
 // ============
 $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
   e.preventDefault()
   $(this).tab('show')
 })

}(jQuery);

/* ========================================================================

* Bootstrap: affix.js v3.1.1
* http://getbootstrap.com/javascript/#affix
* ========================================================================
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* ======================================================================== */


+function ($) {

 'use strict';
 // AFFIX CLASS DEFINITION
 // ======================
 var Affix = function (element, options) {
   this.options = $.extend({}, Affix.DEFAULTS, options)
   this.$window = $(window)
     .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
     .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
   this.$element     = $(element)
   this.affixed      =
   this.unpin        =
   this.pinnedOffset = null
   this.checkPosition()
 }
 Affix.RESET = 'affix affix-top affix-bottom'
 Affix.DEFAULTS = {
   offset: 0
 }
 Affix.prototype.getPinnedOffset = function () {
   if (this.pinnedOffset) return this.pinnedOffset
   this.$element.removeClass(Affix.RESET).addClass('affix')
   var scrollTop = this.$window.scrollTop()
   var position  = this.$element.offset()
   return (this.pinnedOffset = position.top - scrollTop)
 }
 Affix.prototype.checkPositionWithEventLoop = function () {
   setTimeout($.proxy(this.checkPosition, this), 1)
 }
 Affix.prototype.checkPosition = function () {
   if (!this.$element.is(':visible')) return
   var scrollHeight = $(document).height()
   var scrollTop    = this.$window.scrollTop()
   var position     = this.$element.offset()
   var offset       = this.options.offset
   var offsetTop    = offset.top
   var offsetBottom = offset.bottom
   if (this.affixed == 'top') position.top += scrollTop
   if (typeof offset != 'object')         offsetBottom = offsetTop = offset
   if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)
   if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
   var affix = this.unpin   != null && (scrollTop + this.unpin <= position.top) ? false :
               offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
               offsetTop    != null && (scrollTop <= offsetTop) ? 'top' : false
   if (this.affixed === affix) return
   if (this.unpin) this.$element.css('top', )
   var affixType = 'affix' + (affix ? '-' + affix : )
   var e         = $.Event(affixType + '.bs.affix')
   this.$element.trigger(e)
   if (e.isDefaultPrevented()) return
   this.affixed = affix
   this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
   this.$element
     .removeClass(Affix.RESET)
     .addClass(affixType)
     .trigger($.Event(affixType.replace('affix', 'affixed')))
   if (affix == 'bottom') {
     this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() })
   }
 }


 // AFFIX PLUGIN DEFINITION
 // =======================
 var old = $.fn.affix
 $.fn.affix = function (option) {
   return this.each(function () {
     var $this   = $(this)
     var data    = $this.data('bs.affix')
     var options = typeof option == 'object' && option
     if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
     if (typeof option == 'string') data[option]()
   })
 }
 $.fn.affix.Constructor = Affix


 // AFFIX NO CONFLICT
 // =================
 $.fn.affix.noConflict = function () {
   $.fn.affix = old
   return this
 }


 // AFFIX DATA-API
 // ==============
 $(window).on('load', function () {
   $('[data-spy="affix"]').each(function () {
     var $spy = $(this)
     var data = $spy.data()
     data.offset = data.offset || {}
     if (data.offsetBottom) data.offset.bottom = data.offsetBottom
     if (data.offsetTop)    data.offset.top    = data.offsetTop
     $spy.affix(data)
   })
 })

}(jQuery);