Difference between revisions of "Team:Dundee/bs"

 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
<html>
 +
<style>
  
  
 
/*!
 
/*!
  * Bootstrap v3.1.1 (http://getbootstrap.com)
+
  * Bootstrap v3.0.3 (http://getbootstrap.com)
  * Copyright 2011-2014 Twitter, Inc.
+
  * Copyright 2013 Twitter, Inc.
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
  * Licensed under http://www.apache.org/licenses/LICENSE-2.0
 
  */
 
  */
  
if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript requires jQuery') }
+
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
  
/* ========================================================================
+
article,
* Bootstrap: transition.js v3.1.1
+
aside,
* http://getbootstrap.com/javascript/#transitions
+
details,
* ========================================================================
+
figcaption,
* Copyright 2011-2014 Twitter, Inc.
+
figure,
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
footer,
* ======================================================================== */
+
header,
 +
hgroup,
 +
main,
 +
nav,
 +
section,
 +
summary {
 +
  display: block;
 +
}
  
 +
audio,
 +
canvas,
 +
video {
 +
  display: inline-block;
 +
}
  
+function ($) {
+
audio:not([controls]) {
   'use strict';
+
   display: none;
 +
  height: 0;
 +
}
  
   // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
+
[hidden],
  // ============================================================
+
template {
 +
   display: none;
 +
}
  
  function transitionEnd() {
+
html {
    var el = document.createElement('bootstrap')
+
  font-family: sans-serif;
 +
  -webkit-text-size-adjust: 100%;
 +
      -ms-text-size-adjust: 100%;
 +
}
  
    var transEndEventNames = {
+
body {
      'WebkitTransition' : 'webkitTransitionEnd',
+
  margin: 0;
      'MozTransition'    : 'transitionend',
+
}
      'OTransition'      : 'oTransitionEnd otransitionend',
+
      'transition'      : 'transitionend'
+
    }
+
  
    for (var name in transEndEventNames) {
+
a {
      if (el.style[name] !== undefined) {
+
  background: transparent;
        return { end: transEndEventNames[name] }
+
}
      }
+
    }
+
  
    return false // explicit for ie8 (  ._.)
+
a:focus {
   }
+
   outline: thin dotted;
 +
}
  
  // http://blog.alexmaccaw.com/css-transitions
+
a:active,
  $.fn.emulateTransitionEnd = function (duration) {
+
a:hover {
    var called = false, $el = this
+
  outline: 0;
    $(this).one($.support.transition.end, function () { called = true })
+
}
    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
+
    setTimeout(callback, duration)
+
    return this
+
  }
+
  
  $(function () {
+
h1 {
    $.support.transition = transitionEnd()
+
  margin: 0.67em 0;
   })
+
   font-size: 2em;
 +
}
  
}(jQuery);
+
abbr[title] {
 +
  border-bottom: 1px dotted;
 +
}
  
/* ========================================================================
+
b,
* Bootstrap: alert.js v3.1.1
+
strong {
* http://getbootstrap.com/javascript/#alerts
+
  font-weight: bold;
* ========================================================================
+
}
* Copyright 2011-2014 Twitter, Inc.
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
* ======================================================================== */
+
  
 +
dfn {
 +
  font-style: italic;
 +
}
  
+function ($) {
+
hr {
   'use strict';
+
   height: 0;
 +
  -moz-box-sizing: content-box;
 +
      box-sizing: content-box;
 +
}
  
   // ALERT CLASS DEFINITION
+
mark {
   // ======================
+
   color: #000;
 +
   background: #ff0;
 +
}
  
  var dismiss = '[data-dismiss="alert"]'
+
code,
  var Alert  = function (el) {
+
kbd,
    $(el).on('click', dismiss, this.close)
+
pre,
   }
+
samp {
 +
  font-family: monospace, serif;
 +
   font-size: 1em;
 +
}
  
  Alert.prototype.close = function (e) {
+
pre {
    var $this    = $(this)
+
  white-space: pre-wrap;
    var selector = $this.attr('data-target')
+
}
  
    if (!selector) {
+
q {
      selector = $this.attr('href')
+
  quotes: "\201C" "\201D" "\2018" "\2019";
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
+
}
    }
+
  
    var $parent = $(selector)
+
small {
 +
  font-size: 80%;
 +
}
  
    if (e) e.preventDefault()
+
sub,
 +
sup {
 +
  position: relative;
 +
  font-size: 75%;
 +
  line-height: 0;
 +
  vertical-align: baseline;
 +
}
  
    if (!$parent.length) {
+
sup {
      $parent = $this.hasClass('alert') ? $this : $this.parent()
+
  top: -0.5em;
    }
+
}
  
    $parent.trigger(e = $.Event('close.bs.alert'))
+
sub {
 +
  bottom: -0.25em;
 +
}
  
    if (e.isDefaultPrevented()) return
+
img {
 +
  border: 0;
 +
}
  
    $parent.removeClass('in')
+
svg:not(:root) {
 +
  overflow: hidden;
 +
}
  
    function removeElement() {
+
figure {
      $parent.trigger('closed.bs.alert').remove()
+
  margin: 0;
    }
+
}
  
    $.support.transition && $parent.hasClass('fade') ?
+
fieldset {
      $parent
+
  padding: 0.35em 0.625em 0.75em;
        .one($.support.transition.end, removeElement)
+
  margin: 0 2px;
        .emulateTransitionEnd(150) :
+
  border: 1px solid #c0c0c0;
      removeElement()
+
}
  }
+
  
 +
legend {
 +
  padding: 0;
 +
  border: 0;
 +
}
  
   // ALERT PLUGIN DEFINITION
+
button,
   // =======================
+
input,
 +
select,
 +
textarea {
 +
   margin: 0;
 +
   font-family: inherit;
 +
  font-size: 100%;
 +
}
  
   var old = $.fn.alert
+
button,
 +
input {
 +
   line-height: normal;
 +
}
  
  $.fn.alert = function (option) {
+
button,
    return this.each(function () {
+
select {
      var $this = $(this)
+
  text-transform: none;
      var data  = $this.data('bs.alert')
+
}
  
      if (!data) $this.data('bs.alert', (data = new Alert(this)))
+
button,
      if (typeof option == 'string') data[option].call($this)
+
html input[type="button"],
    })
+
input[type="reset"],
   }
+
input[type="submit"] {
 +
  cursor: pointer;
 +
   -webkit-appearance: button;
 +
}
  
   $.fn.alert.Constructor = Alert
+
button[disabled],
 +
html input[disabled] {
 +
   cursor: default;
 +
}
  
 +
input[type="checkbox"],
 +
input[type="radio"] {
 +
  padding: 0;
 +
  box-sizing: border-box;
 +
}
  
   // ALERT NO CONFLICT
+
input[type="search"] {
   // =================
+
   -webkit-box-sizing: content-box;
 +
    -moz-box-sizing: content-box;
 +
          box-sizing: content-box;
 +
   -webkit-appearance: textfield;
 +
}
  
   $.fn.alert.noConflict = function () {
+
input[type="search"]::-webkit-search-cancel-button,
     $.fn.alert = old
+
input[type="search"]::-webkit-search-decoration {
     return this
+
   -webkit-appearance: none;
 +
}
 +
 
 +
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;
 +
}
  
   // ALERT DATA-API
+
html {
   // ==============
+
   font-size: 62.5%;
 +
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 +
}
  
   $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
+
body {
 +
   font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 +
  font-size: 14px;
 +
  line-height: 1.428571429;
 +
  color: #333333;
 +
  background-color: #ffffff;
 +
}
  
}(jQuery);
+
input,
 +
button,
 +
select,
 +
textarea {
 +
  font-family: inherit;
 +
  font-size: inherit;
 +
  line-height: inherit;
 +
}
  
/* ========================================================================
+
a {
* Bootstrap: button.js v3.1.1
+
  color: #428bca;
* http://getbootstrap.com/javascript/#buttons
+
  text-decoration: none;
* ========================================================================
+
}
* 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;
 +
}
  
+function ($) {
+
a:focus {
   'use strict';
+
   outline: thin dotted;
 +
  outline: 5px auto -webkit-focus-ring-color;
 +
  outline-offset: -2px;
 +
}
  
  // BUTTON PUBLIC CLASS DEFINITION
+
img {
   // ==============================
+
   vertical-align: middle;
 +
}
  
  var Button = function (element, options) {
+
.img-responsive {
    this.$element  = $(element)
+
  display: block;
    this.options   = $.extend({}, Button.DEFAULTS, options)
+
   height: auto;
    this.isLoading = false
+
  max-width: 100%;
  }
+
}
  
  Button.DEFAULTS = {
+
.img-rounded {
    loadingText: 'loading...'
+
  border-radius: 6px;
  }
+
}
  
  Button.prototype.setState = function (state) {
+
.img-thumbnail {
    var d    = 'disabled'
+
  display: inline-block;
    var $el  = this.$element
+
  height: auto;
    var val  = $el.is('input') ? 'val' : 'html'
+
  max-width: 100%;
    var data = $el.data()
+
  padding: 4px;
 +
  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;`
 +
}
  
    state = state + 'Text'
+
.img-circle {
 +
  border-radius: 50%;
 +
}
  
    if (!data.resetText) $el.data('resetText', $el[val]())
+
hr {
 +
  margin-top: 20px;
 +
  margin-bottom: 20px;
 +
  border: 0;
 +
  border-top: 1px solid #eeeeee;
 +
}
  
    $el[val](data[state] || this.options[state])
+
.sr-only {
 +
  position: absolute;
 +
  width: 1px;
 +
  height: 1px;
 +
  padding: 0;
 +
  margin: -1px;
 +
  overflow: hidden;
 +
  clip: rect(0, 0, 0, 0);
 +
  border: 0;
 +
}
  
    // push to event loop to allow forms to submit
+
h1,
    setTimeout($.proxy(function () {
+
h2,
      if (state == 'loadingText') {
+
h3,
        this.isLoading = true
+
h4,
        $el.addClass(d).attr(d, d)
+
h5,
      } else if (this.isLoading) {
+
h6,
        this.isLoading = false
+
.h1,
        $el.removeClass(d).removeAttr(d)
+
.h2,
      }
+
.h3,
    }, this), 0)
+
.h4,
   }
+
.h5,
 +
.h6 {
 +
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 +
   font-weight: 500;
 +
  line-height: 1.1;
 +
  color: inherit;
 +
}
  
  Button.prototype.toggle = function () {
+
h1 small,
    var changed = true
+
h2 small,
    var $parent = this.$element.closest('[data-toggle="buttons"]')
+
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,
 +
.h1 .small,
 +
.h2 .small,
 +
.h3 .small,
 +
.h4 .small,
 +
.h5 .small,
 +
.h6 .small {
 +
  font-weight: normal;
 +
  line-height: 1;
 +
  color: #999999;
 +
}
  
    if ($parent.length) {
+
h1,
      var $input = this.$element.find('input')
+
h2,
      if ($input.prop('type') == 'radio') {
+
h3 {
        if ($input.prop('checked') && this.$element.hasClass('active')) changed = false
+
  margin-top: 20px;
        else $parent.find('.active').removeClass('active')
+
  margin-bottom: 10px;
      }
+
}
      if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
+
    }
+
  
    if (changed) this.$element.toggleClass('active')
+
h1 small,
   }
+
h2 small,
 +
h3 small,
 +
h1 .small,
 +
h2 .small,
 +
h3 .small {
 +
   font-size: 65%;
 +
}
  
 +
h4,
 +
h5,
 +
h6 {
 +
  margin-top: 10px;
 +
  margin-bottom: 10px;
 +
}
  
  // BUTTON PLUGIN DEFINITION
+
h4 small,
   // ========================
+
h5 small,
 +
h6 small,
 +
h4 .small,
 +
h5 .small,
 +
h6 .small {
 +
   font-size: 75%;
 +
}
  
   var old = $.fn.button
+
h1,
 +
.h1 {
 +
   font-size: 36px;
 +
}
  
  $.fn.button = function (option) {
+
h2,
    return this.each(function () {
+
.h2 {
      var $this   = $(this)
+
   font-size: 30px;
      var data    = $this.data('bs.button')
+
}
      var options = typeof option == 'object' && option
+
  
      if (!data) $this.data('bs.button', (data = new Button(this, options)))
+
h3,
 +
.h3 {
 +
  font-size: 24px;
 +
}
  
      if (option == 'toggle') data.toggle()
+
h4,
      else if (option) data.setState(option)
+
.h4 {
    })
+
  font-size: 18px;
   }
+
}
 +
 
 +
h5,
 +
.h5 {
 +
   font-size: 14px;
 +
}
  
   $.fn.button.Constructor = Button
+
h6,
 +
.h6 {
 +
   font-size: 12px;
 +
}
  
 +
p {
 +
  margin: 0 0 10px;
 +
}
  
   // BUTTON NO CONFLICT
+
.lead {
   // ==================
+
   margin-bottom: 20px;
 +
   font-size: 16px;
 +
  font-weight: 200;
 +
  line-height: 1.4;
 +
}
  
  $.fn.button.noConflict = function () {
+
@media (min-width: 768px) {
    $.fn.button = old
+
  .lead {
     return this
+
     font-size: 21px;
 
   }
 
   }
 +
}
  
 +
small,
 +
.small {
 +
  font-size: 85%;
 +
}
  
   // BUTTON DATA-API
+
cite {
  // ===============
+
   font-style: normal;
 +
}
  
  $(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
+
.text-muted {
    var $btn = $(e.target)
+
  color: #999999;
    if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
+
}
    $btn.button('toggle')
+
    e.preventDefault()
+
  })
+
  
}(jQuery);
+
.text-primary {
 +
  color: #428bca;
 +
}
  
/* ========================================================================
+
.text-primary:hover {
* Bootstrap: carousel.js v3.1.1
+
  color: #3071a9;
* 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;
 +
}
  
+function ($) {
+
.text-warning:hover {
   'use strict';
+
   color: #66512c;
 +
}
  
  // CAROUSEL CLASS DEFINITION
+
.text-danger {
   // =========================
+
   color: #a94442;
 +
}
  
  var Carousel = function (element, options) {
+
.text-danger:hover {
    this.$element    = $(element)
+
  color: #843534;
    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
+
.text-success {
      .on('mouseenter', $.proxy(this.pause, this))
+
  color: #3c763d;
      .on('mouseleave', $.proxy(this.cycle, this))
+
}
  }
+
  
  Carousel.DEFAULTS = {
+
.text-success:hover {
    interval: 5000,
+
  color: #2b542c;
    pause: 'hover',
+
}
    wrap: true
+
  }
+
  
  Carousel.prototype.cycle =  function (e) {
+
.text-info {
    e || (this.paused = false)
+
  color: #31708f;
 +
}
  
    this.interval && clearInterval(this.interval)
+
.text-info:hover {
 +
  color: #245269;
 +
}
  
    this.options.interval
+
.text-left {
      && !this.paused
+
  text-align: left;
      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
+
}
  
    return this
+
.text-right {
   }
+
   text-align: right;
 +
}
  
  Carousel.prototype.getActiveIndex = function () {
+
.text-center {
    this.$active = this.$element.find('.item.active')
+
  text-align: center;
    this.$items  = this.$active.parent().children()
+
}
  
    return this.$items.index(this.$active)
+
.page-header {
   }
+
   padding-bottom: 9px;
 +
  margin: 40px 0 20px;
 +
  border-bottom: 1px solid #eeeeee;
 +
}
  
  Carousel.prototype.to = function (pos) {
+
ul,
    var that        = this
+
ol {
    var activeIndex = this.getActiveIndex()
+
  margin-top: 0;
 +
  margin-bottom: 10px;
 +
}
  
    if (pos > (this.$items.length - 1) || pos < 0) return
+
ul ul,
 +
ol ul,
 +
ul ol,
 +
ol ol {
 +
  margin-bottom: 0;
 +
}
  
    if (this.sliding)      return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
+
.list-unstyled {
    if (activeIndex == pos) return this.pause().cycle()
+
  padding-left: 0;
 +
  list-style: none;
 +
}
  
    return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
+
.list-inline {
 +
  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;
 
   }
 
   }
 +
}
  
  Carousel.prototype.pause = function (e) {
+
abbr[title],
    e || (this.paused = true)
+
abbr[data-original-title] {
 +
  cursor: help;
 +
  border-bottom: 1px dotted #999999;
 +
}
  
    if (this.$element.find('.next, .prev').length && $.support.transition) {
+
.initialism {
      this.$element.trigger($.support.transition.end)
+
  font-size: 90%;
      this.cycle(true)
+
  text-transform: uppercase;
    }
+
}
  
    this.interval = clearInterval(this.interval)
+
blockquote {
 +
  padding: 10px 20px;
 +
  margin: 0 0 20px;
 +
  border-left: 5px solid #eeeeee;
 +
}
  
     return this
+
blockquote p {
 +
  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;
 
   }
 
   }
 +
}
  
  Carousel.prototype.next = function () {
+
@media (min-width: 992px) {
    if (this.sliding) return
+
  .container {
     return this.slide('next')
+
     width: 970px;
 
   }
 
   }
 +
}
  
  Carousel.prototype.prev = function () {
+
@media (min-width: 1200px) {
    if (this.sliding) return
+
  .container {
     return this.slide('prev')
+
     width: 1170px;
 
   }
 
   }
 +
}
  
  Carousel.prototype.slide = function (type, next) {
+
@media (min-width: 1920px) {
    var $active   = this.$element.find('.item.active')
+
   .container {
     var $next    = next || $active[type]()
+
     width: 1400px;
    var isCycling = this.interval
+
  }
    var direction = type == 'next' ? 'left' : 'right'
+
}
    var fallback  = type == 'next' ? 'first' : 'last'
+
    var that      = this
+
  
    if (!$next.length) {
+
.row {
      if (!this.options.wrap) return
+
  margin-right: -15px;
      $next = this.$element.find('.item')[fallback]()
+
  margin-left: -15px;
    }
+
}
  
    if ($next.hasClass('active')) return this.sliding = false
+
.row:before,
 +
.row:after {
 +
  display: table;
 +
  content: " ";
 +
}
  
    var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
+
.row:after {
    this.$element.trigger(e)
+
  clear: both;
    if (e.isDefaultPrevented()) return
+
}
  
    this.sliding = true
+
.row:before,
 +
.row:after {
 +
  display: table;
 +
  content: " ";
 +
}
  
    isCycling && this.pause()
+
.row:after {
 +
  clear: both;
 +
}
  
    if (this.$indicators.length) {
+
.col-xs-1,
      this.$indicators.find('.active').removeClass('active')
+
.col-sm-1,
      this.$element.one('slid.bs.carousel', function () {
+
.col-md-1,
        var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
+
.col-lg-1,
        $nextIndicator && $nextIndicator.addClass('active')
+
.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;
 +
}
  
    if ($.support.transition && this.$element.hasClass('slide')) {
+
.col-xs-1,
      $next.addClass(type)
+
.col-xs-2,
      $next[0].offsetWidth // force reflow
+
.col-xs-3,
      $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
+
.col-xs-4,
   }
+
.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 {
 +
  width: 100%;
 +
}
  
  // CAROUSEL PLUGIN DEFINITION
+
.col-xs-11 {
   // ==========================
+
   width: 91.66666666666666%;
 +
}
  
  var old = $.fn.carousel
+
.col-xs-10 {
 +
  width: 83.33333333333334%;
 +
}
  
  $.fn.carousel = function (option) {
+
.col-xs-9 {
    return this.each(function () {
+
   width: 75%;
      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)))
+
.col-xs-8 {
      if (typeof option == 'number') data.to(option)
+
  width: 66.66666666666666%;
      else if (action) data[action]()
+
}
      else if (options.interval) data.pause().cycle()
+
    })
+
  }
+
  
   $.fn.carousel.Constructor = Carousel
+
.col-xs-7 {
 +
   width: 58.333333333333336%;
 +
}
  
 +
.col-xs-6 {
 +
  width: 50%;
 +
}
  
  // CAROUSEL NO CONFLICT
+
.col-xs-5 {
   // ====================
+
   width: 41.66666666666667%;
 +
}
  
  $.fn.carousel.noConflict = function () {
+
.col-xs-4 {
    $.fn.carousel = old
+
  width: 33.33333333333333%;
    return this
+
}
  }
+
  
 +
.col-xs-3 {
 +
  width: 25%;
 +
}
  
  // CAROUSEL DATA-API
+
.col-xs-2 {
   // =================
+
   width: 16.666666666666664%;
 +
}
  
  $(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
+
.col-xs-1 {
    var $this   = $(this), href
+
   width: 8.333333333333332%;
    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)
+
.col-xs-pull-12 {
 +
  right: 100%;
 +
}
  
    if (slideIndex = $this.attr('data-slide-to')) {
+
.col-xs-pull-11 {
      $target.data('bs.carousel').to(slideIndex)
+
  right: 91.66666666666666%;
    }
+
}
  
    e.preventDefault()
+
.col-xs-pull-10 {
   })
+
   right: 83.33333333333334%;
 +
}
  
  $(window).on('load', function () {
+
.col-xs-pull-9 {
    $('[data-ride="carousel"]').each(function () {
+
  right: 75%;
      var $carousel = $(this)
+
}
      $carousel.carousel($carousel.data())
+
    })
+
  })
+
  
}(jQuery);
+
.col-xs-pull-8 {
 +
  right: 66.66666666666666%;
 +
}
  
/* ========================================================================
+
.col-xs-pull-7 {
* Bootstrap: collapse.js v3.1.1
+
  right: 58.333333333333336%;
* http://getbootstrap.com/javascript/#collapse
+
}
* ========================================================================
+
* Copyright 2011-2014 Twitter, Inc.
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
* ======================================================================== */
+
  
 +
.col-xs-pull-6 {
 +
  right: 50%;
 +
}
  
+function ($) {
+
.col-xs-pull-5 {
   'use strict';
+
   right: 41.66666666666667%;
 +
}
  
  // COLLAPSE PUBLIC CLASS DEFINITION
+
.col-xs-pull-4 {
   // ================================
+
   right: 33.33333333333333%;
 +
}
  
  var Collapse = function (element, options) {
+
.col-xs-pull-3 {
    this.$element      = $(element)
+
  right: 25%;
    this.options      = $.extend({}, Collapse.DEFAULTS, options)
+
}
    this.transitioning = null
+
  
    if (this.options.parent) this.$parent = $(this.options.parent)
+
.col-xs-pull-2 {
    if (this.options.toggle) this.toggle()
+
  right: 16.666666666666664%;
 +
}
 +
 
 +
.col-xs-pull-1 {
 +
  right: 8.333333333333332%;
 +
}
 +
 
 +
.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;
 +
  }
 +
}
  
   Collapse.DEFAULTS = {
+
@media (min-width: 992px) {
     toggle: true
+
  .col-md-1,
 +
  .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;
 +
  }
 +
}
  
   Collapse.prototype.dimension = function () {
+
@media (min-width: 1200px) {
     var hasWidth = this.$element.hasClass('width')
+
   .col-lg-1,
     return hasWidth ? 'width' : 'height'
+
  .col-lg-2,
 +
  .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;
 
   }
 
   }
 +
}
  
  Collapse.prototype.show = function () {
+
table {
    if (this.transitioning || this.$element.hasClass('in')) return
+
  max-width: 100%;
 +
  background-color: transparent;
 +
}
  
    var startEvent = $.Event('show.bs.collapse')
+
th {
    this.$element.trigger(startEvent)
+
  text-align: left;
    if (startEvent.isDefaultPrevented()) return
+
}
  
    var actives = this.$parent && this.$parent.find('> .panel > .in')
+
.table {
 +
  width: 100%;
 +
  margin-bottom: 20px;
 +
}
  
    if (actives && actives.length) {
+
.table > thead > tr > th,
      var hasData = actives.data('bs.collapse')
+
.table > tbody > tr > th,
      if (hasData && hasData.transitioning) return
+
.table > tfoot > tr > th,
      actives.collapse('hide')
+
.table > thead > tr > td,
      hasData || actives.data('bs.collapse', null)
+
.table > tbody > tr > td,
    }
+
.table > tfoot > tr > td {
 +
  padding: 8px;
 +
  line-height: 1.428571429;
 +
  vertical-align: top;
 +
  border-top: 1px solid #dddddd;
 +
}
  
    var dimension = this.dimension()
+
.table > thead > tr > th {
 +
  vertical-align: bottom;
 +
  border-bottom: 2px solid #dddddd;
 +
}
  
    this.$element
+
.table > caption + thead > tr:first-child > th,
      .removeClass('collapse')
+
.table > colgroup + thead > tr:first-child > th,
      .addClass('collapsing')
+
.table > thead:first-child > tr:first-child > th,
      [dimension](0)
+
.table > caption + thead > tr:first-child > td,
 +
.table > colgroup + thead > tr:first-child > td,
 +
.table > thead:first-child > tr:first-child > td {
 +
  border-top: 0;
 +
}
  
    this.transitioning = 1
+
.table > tbody + tbody {
 +
  border-top: 2px solid #dddddd;
 +
}
  
    var complete = function () {
+
.table .table {
      this.$element
+
  background-color: #ffffff;
        .removeClass('collapsing')
+
}
        .addClass('collapse in')
+
        [dimension]('auto')
+
      this.transitioning = 0
+
      this.$element.trigger('shown.bs.collapse')
+
    }
+
  
    if (!$.support.transition) return complete.call(this)
+
.table-condensed > thead > tr > th,
 +
.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;
 +
}
  
    var scrollSize = $.camelCase(['scroll', dimension].join('-'))
+
.table-bordered {
 +
  border: 1px solid #dddddd;
 +
}
  
    this.$element
+
.table-bordered > thead > tr > th,
      .one($.support.transition.end, $.proxy(complete, this))
+
.table-bordered > tbody > tr > th,
      .emulateTransitionEnd(350)
+
.table-bordered > tfoot > tr > th,
      [dimension](this.$element[0][scrollSize])
+
.table-bordered > thead > tr > td,
   }
+
.table-bordered > tbody > tr > td,
 +
.table-bordered > tfoot > tr > td {
 +
   border: 1px solid #dddddd;
 +
}
  
  Collapse.prototype.hide = function () {
+
.table-bordered > thead > tr > th,
    if (this.transitioning || !this.$element.hasClass('in')) return
+
.table-bordered > thead > tr > td {
 +
  border-bottom-width: 2px;
 +
}
  
    var startEvent = $.Event('hide.bs.collapse')
+
.table-striped > tbody > tr:nth-child(odd) > td,
    this.$element.trigger(startEvent)
+
.table-striped > tbody > tr:nth-child(odd) > th {
    if (startEvent.isDefaultPrevented()) return
+
  background-color: #f9f9f9;
 +
}
  
    var dimension = this.dimension()
+
.table-hover > tbody > tr:hover > td,
 +
.table-hover > tbody > tr:hover > th {
 +
  background-color: #f5f5f5;
 +
}
  
    this.$element
+
table col[class*="col-"] {
      [dimension](this.$element[dimension]())
+
  position: static;
      [0].offsetHeight
+
  display: table-column;
 +
  float: none;
 +
}
  
    this.$element
+
table td[class*="col-"],
      .addClass('collapsing')
+
table th[class*="col-"] {
      .removeClass('collapse')
+
  display: table-cell;
      .removeClass('in')
+
  float: none;
 +
}
  
    this.transitioning = 1
+
.table > thead > tr > .active,
 +
.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;
 +
}
  
    var complete = function () {
+
.table-hover > tbody > tr > .active:hover,
      this.transitioning = 0
+
.table-hover > tbody > .active:hover > td,
      this.$element
+
.table-hover > tbody > .active:hover > th {
        .trigger('hidden.bs.collapse')
+
  background-color: #e8e8e8;
        .removeClass('collapsing')
+
}
        .addClass('collapse')
+
    }
+
  
    if (!$.support.transition) return complete.call(this)
+
.table > thead > tr > .success,
 +
.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;
 +
}
  
    this.$element
+
.table-hover > tbody > tr > .success:hover,
      [dimension](0)
+
.table-hover > tbody > .success:hover > td,
      .one($.support.transition.end, $.proxy(complete, this))
+
.table-hover > tbody > .success:hover > th {
      .emulateTransitionEnd(350)
+
   background-color: #d0e9c6;
   }
+
}
  
   Collapse.prototype.toggle = function () {
+
.table > thead > tr > .danger,
     this[this.$element.hasClass('in') ? 'hide' : 'show']()
+
.table > tbody > tr > .danger,
 +
.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;
 +
}
  
   // COLLAPSE PLUGIN DEFINITION
+
legend {
   // ==========================
+
   display: block;
 +
   width: 100%;
 +
  padding: 0;
 +
  margin-bottom: 20px;
 +
  font-size: 21px;
 +
  line-height: inherit;
 +
  color: #333333;
 +
  border: 0;
 +
  border-bottom: 1px solid #e5e5e5;
 +
}
  
   var old = $.fn.collapse
+
label {
 +
   display: inline-block;
 +
  margin-bottom: 5px;
 +
  font-weight: bold;
 +
}
  
  $.fn.collapse = function (option) {
+
input[type="search"] {
    return this.each(function () {
+
   -webkit-box-sizing: border-box;
      var $this   = $(this)
+
    -moz-box-sizing: border-box;
      var data    = $this.data('bs.collapse')
+
          box-sizing: border-box;
      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
+
}
  
      if (!data && options.toggle && option == 'show') option = !option
+
input[type="radio"],
      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
+
input[type="checkbox"] {
      if (typeof option == 'string') data[option]()
+
  margin: 4px 0 0;
    })
+
  margin-top: 1px \9;
   }
+
   /* IE8-9 */
  
   $.fn.collapse.Constructor = Collapse
+
   line-height: normal;
 +
}
  
 +
input[type="file"] {
 +
  display: block;
 +
}
  
  // COLLAPSE NO CONFLICT
+
select[multiple],
   // ====================
+
select[size] {
 +
   height: auto;
 +
}
  
  $.fn.collapse.noConflict = function () {
+
select optgroup {
    $.fn.collapse = old
+
  font-family: inherit;
    return this
+
  font-size: inherit;
   }
+
   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;
 +
}
  
  // COLLAPSE DATA-API
+
input[type="number"]::-webkit-outer-spin-button,
   // =================
+
input[type="number"]::-webkit-inner-spin-button {
 +
   height: auto;
 +
}
  
  $(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
+
output {
    var $this   = $(this), href
+
   display: block;
    var target  = $this.attr('data-target')
+
  padding-top: 7px;
        || e.preventDefault()
+
  font-size: 14px;
        || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
+
  line-height: 1.428571429;
    var $target = $(target)
+
  color: #555555;
    var data    = $target.data('bs.collapse')
+
  vertical-align: middle;
    var option  = data ? 'toggle' : $this.data()
+
}
    var parent  = $this.attr('data-parent')
+
    var $parent = parent && $(parent)
+
  
    if (!data || !data.transitioning) {
+
.form-control {
      if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
+
  display: block;
      $this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
+
  width: 100%;
    }
+
  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;
 +
}
  
    $target.collapse(option)
+
.form-control:focus {
   })
+
   outline: 0;
 +
}
  
}(jQuery);
+
.form-control:-moz-placeholder {
 +
  color: #ffffff;
 +
}
  
/* ========================================================================
+
.form-control::-moz-placeholder {
* Bootstrap: dropdown.js v3.1.1
+
  color: #ffffff;
* http://getbootstrap.com/javascript/#dropdowns
+
  opacity: 1;
* ========================================================================
+
}
* Copyright 2011-2014 Twitter, Inc.
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
* ======================================================================== */
+
  
 +
.form-control:-ms-input-placeholder {
 +
  color: #ffffff;
 +
}
  
+function ($) {
+
.form-control::-webkit-input-placeholder {
   'use strict';
+
   color: #ffffff;
 +
}
  
   // DROPDOWN CLASS DEFINITION
+
.form-control[disabled],
   // =========================
+
.form-control[readonly],
 +
fieldset[disabled] .form-control {
 +
   cursor: not-allowed;
 +
   background-color: #eeeeee;
 +
}
  
  var backdrop = '.dropdown-backdrop'
+
textarea.form-control {
   var toggle  = '[data-toggle=dropdown]'
+
   height: auto;
  var Dropdown = function (element) {
+
}
    $(element).on('click.bs.dropdown', this.toggle)
+
  }
+
  
  Dropdown.prototype.toggle = function (e) {
+
.form-group {
    var $this = $(this)
+
  margin-bottom: 15px;
 +
}
  
    if ($this.is('.disabled, :disabled')) return
+
.radio,
 +
.checkbox {
 +
  display: block;
 +
  min-height: 20px;
 +
  padding-left: 20px;
 +
  margin-top: 10px;
 +
  margin-bottom: 10px;
 +
  vertical-align: middle;
 +
}
  
    var $parent  = getParent($this)
+
.radio label,
    var isActive = $parent.hasClass('open')
+
.checkbox label {
 +
  display: inline;
 +
  margin-bottom: 0;
 +
  font-weight: normal;
 +
  cursor: pointer;
 +
}
  
    clearMenus()
+
.radio input[type="radio"],
 +
.radio-inline input[type="radio"],
 +
.checkbox input[type="checkbox"],
 +
.checkbox-inline input[type="checkbox"] {
 +
  float: left;
 +
  margin-left: -20px;
 +
}
  
    if (!isActive) {
+
.radio + .radio,
      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
+
.checkbox + .checkbox {
        // if mobile we use a backdrop because click events don't delegate
+
  margin-top: -5px;
        $('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
+
}
      }
+
  
      var relatedTarget = { relatedTarget: this }
+
.radio-inline,
      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
+
.checkbox-inline {
 +
  display: inline-block;
 +
  padding-left: 20px;
 +
  margin-bottom: 0;
 +
  font-weight: normal;
 +
  vertical-align: middle;
 +
  cursor: pointer;
 +
}
  
      if (e.isDefaultPrevented()) return
+
.radio-inline + .radio-inline,
 +
.checkbox-inline + .checkbox-inline {
 +
  margin-top: 0;
 +
  margin-left: 10px;
 +
}
  
      $parent
+
input[type="radio"][disabled],
        .toggleClass('open')
+
input[type="checkbox"][disabled],
        .trigger('shown.bs.dropdown', relatedTarget)
+
.radio[disabled],
 +
.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;
 +
}
  
      $this.focus()
+
.input-sm {
    }
+
  height: 30px;
 +
  padding: 5px 10px;
 +
  font-size: 12px;
 +
  line-height: 1.5;
 +
  border-radius: 3px;
 +
}
  
    return false
+
select.input-sm {
   }
+
   height: 30px;
 +
  line-height: 30px;
 +
}
  
  Dropdown.prototype.keydown = function (e) {
+
textarea.input-sm {
    if (!/(38|40|27)/.test(e.keyCode)) return
+
  height: auto;
 +
}
  
    var $this = $(this)
+
.input-lg {
 +
  height: 46px;
 +
  padding: 10px 16px;
 +
  font-size: 18px;
 +
  line-height: 1.33;
 +
  border-radius: 6px;
 +
}
  
    e.preventDefault()
+
select.input-lg {
    e.stopPropagation()
+
  height: 46px;
 +
  line-height: 46px;
 +
}
  
    if ($this.is('.disabled, :disabled')) return
+
textarea.input-lg {
 +
  height: auto;
 +
}
  
    var $parent  = getParent($this)
+
.has-warning .help-block,
    var isActive = $parent.hasClass('open')
+
.has-warning .control-label,
 +
.has-warning .radio,
 +
.has-warning .checkbox,
 +
.has-warning .radio-inline,
 +
.has-warning .checkbox-inline {
 +
  color: #8a6d3b;
 +
}
  
    if (!isActive || (isActive && e.keyCode == 27)) {
+
.has-warning .form-control {
      if (e.which == 27) $parent.find(toggle).focus()
+
  border-color: #8a6d3b;
      return $this.click()
+
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }
+
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
 +
}
  
    var desc = ' li:not(.divider):visible a'
+
.has-warning .form-control:focus {
    var $items = $parent.find('[role=menu]' + desc + ', [role=listbox]' + desc)
+
  border-color: #66512c;
 +
  -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;
 +
}
  
    if (!$items.length) return
+
.has-warning .input-group-addon {
 +
  color: #8a6d3b;
 +
  background-color: #fcf8e3;
 +
  border-color: #8a6d3b;
 +
}
  
    var index = $items.index($items.filter(':focus'))
+
.has-error .help-block,
 +
.has-error .control-label,
 +
.has-error .radio,
 +
.has-error .checkbox,
 +
.has-error .radio-inline,
 +
.has-error .checkbox-inline {
 +
  color: #a94442;
 +
}
  
    if (e.keyCode == 38 && index > 0)                index--                       // up
+
.has-error .form-control {
    if (e.keyCode == 40 && index < $items.length - 1) index++                        // down
+
  border-color: #a94442;
    if (!~index)                                      index = 0
+
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
 +
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
 +
}
  
    $items.eq(index).focus()
+
.has-error .form-control: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;
 +
}
  
  function clearMenus(e) {
+
.has-error .input-group-addon {
    $(backdrop).remove()
+
  color: #a94442;
    $(toggle).each(function () {
+
  background-color: #f2dede;
      var $parent = getParent($(this))
+
  border-color: #a94442;
      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) {
+
.has-success .help-block,
    var selector = $this.attr('data-target')
+
.has-success .control-label,
 +
.has-success .radio,
 +
.has-success .checkbox,
 +
.has-success .radio-inline,
 +
.has-success .checkbox-inline {
 +
  color: #3c763d;
 +
}
  
    if (!selector) {
+
.has-success .form-control {
      selector = $this.attr('href')
+
  border-color: #3c763d;
      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
+
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    }
+
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
 +
}
  
    var $parent = selector && $(selector)
+
.has-success .form-control:focus {
 +
  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;
 +
}
  
    return $parent && $parent.length ? $parent : $this.parent()
+
.has-success .input-group-addon {
 +
  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;
 +
}
  
  // DROPDOWN PLUGIN DEFINITION
+
.form-horizontal .radio,
   // ==========================
+
.form-horizontal .checkbox {
 +
   min-height: 27px;
 +
}
  
  var old = $.fn.dropdown
+
.form-horizontal .form-group {
 +
  margin-right: -15px;
 +
  margin-left: -15px;
 +
}
  
  $.fn.dropdown = function (option) {
+
.form-horizontal .form-group:before,
    return this.each(function () {
+
.form-horizontal .form-group:after {
      var $this = $(this)
+
  display: table;
      var data  = $this.data('bs.dropdown')
+
  content: " ";
 +
}
  
      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
+
.form-horizontal .form-group:after {
      if (typeof option == 'string') data[option].call($this)
+
  clear: both;
    })
+
}
  }
+
  
  $.fn.dropdown.Constructor = Dropdown
+
.form-horizontal .form-group:before,
 +
.form-horizontal .form-group:after {
 +
  display: table;
 +
  content: " ";
 +
}
  
 +
.form-horizontal .form-group:after {
 +
  clear: both;
 +
}
  
  // DROPDOWN NO CONFLICT
+
.form-horizontal .form-control-static {
   // ====================
+
   padding-top: 7px;
 +
}
  
  $.fn.dropdown.noConflict = function () {
+
@media (min-width: 768px) {
    $.fn.dropdown = old
+
  .form-horizontal .control-label {
     return this
+
     text-align: right;
 
   }
 
   }
 +
}
  
 +
.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;
 +
}
  
   // APPLY TO STANDARD DROPDOWN ELEMENTS
+
.btn:focus {
   // ===================================
+
   outline: thin dotted;
 +
   outline: 5px auto -webkit-focus-ring-color;
 +
  outline-offset: -2px;
 +
}
  
  $(document)
+
.btn:hover,
    .on('click.bs.dropdown.data-api', clearMenus)
+
.btn:focus {
    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
+
  color: #020202;
    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
+
  text-decoration: none;
    .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu], [role=listbox]', Dropdown.prototype.keydown)
+
}
  
}(jQuery);
+
.btn:active,
 +
.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,
* Bootstrap: modal.js v3.1.1
+
.btn[disabled],
* http://getbootstrap.com/javascript/#modals
+
fieldset[disabled] .btn {
* ========================================================================
+
  pointer-events: none;
* Copyright 2011-2014 Twitter, Inc.
+
  cursor: not-allowed;
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
  opacity: 0.65;
* ======================================================================== */
+
  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';
+
  
   // MODAL CLASS DEFINITION
+
.btn-default:hover,
   // ======================
+
.btn-default:focus,
 +
.btn-default:active,
 +
.btn-default.active,
 +
.open .dropdown-toggle.btn-default {
 +
   color: #ffffff;
 +
   background-color: transparent;
 +
  border-color: #ffffff;
 +
}
  
  var Modal = function (element, options) {
+
.btn-default:active,
    this.options  = options
+
.btn-default.active,
    this.$element  = $(element)
+
.open .dropdown-toggle.btn-default {
    this.$backdrop =
+
   background-image: none;
    this.isShown   = null
+
}
  
    if (this.options.remote) {
+
.btn-default.disabled,
      this.$element
+
.btn-default[disabled],
        .find('.modal-content')
+
fieldset[disabled] .btn-default,
        .load(this.options.remote, $.proxy(function () {
+
.btn-default.disabled:hover,
          this.$element.trigger('loaded.bs.modal')
+
.btn-default[disabled]:hover,
        }, this))
+
fieldset[disabled] .btn-default:hover,
    }
+
.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;
 +
}
  
  Modal.DEFAULTS = {
+
.btn-default .badge {
    backdrop: true,
+
  color: #020202;
    keyboard: true,
+
  background-color: transparent;
    show: true
+
}
  }
+
  
  Modal.prototype.toggle = function (_relatedTarget) {
+
/* BUTTON COLOR */
    return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
+
.btn-primary {
   }
+
  color: #FFF;
 +
  background-color: #454444;
 +
  border-color: transparent;
 +
  -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 })
+
  
    this.$element.trigger(e)
+
/* ACTIVE BUTTON HOVER */
 +
.btn-primary:hover,
 +
.btn-primary:focus,
 +
.btn-primary:active,
 +
.btn-primary.active,
 +
.open .dropdown-toggle.btn-primary {
 +
  color: #FFF;
 +
  background-color: #2b2b2b;
 +
}
  
    if (this.isShown || e.isDefaultPrevented()) return
+
.btn-primary:active,
 +
.btn-primary.active,
 +
.open .dropdown-toggle.btn-primary {
 +
  background-image: none;
 +
}
  
    this.isShown = true
+
.btn-primary.disabled,
 +
.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;
 +
}
  
    this.escape()
+
.btn-primary .badge {
 +
  color: #020202;
 +
  background-color: #fff;
 +
}
  
    this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
+
.btn-warning {
 +
  color: #020202;
 +
  background-color: #020202;
 +
  border-color: #eea236;
 +
}
  
    this.backdrop(function () {
+
.btn-warning:hover,
      var transition = $.support.transition && that.$element.hasClass('fade')
+
.btn-warning:focus,
 +
.btn-warning:active,
 +
.btn-warning.active,
 +
.open .dropdown-toggle.btn-warning {
 +
  color: #ffffff;
 +
  background-color: #020202;
 +
  border-color: #d58512;
 +
}
  
      if (!that.$element.parent().length) {
+
.btn-warning:active,
        that.$element.appendTo(document.body) // don't move modals dom position
+
.btn-warning.active,
      }
+
.open .dropdown-toggle.btn-warning {
 +
  background-image: none;
 +
}
  
      that.$element
+
.btn-warning.disabled,
        .show()
+
.btn-warning[disabled],
        .scrollTop(0)
+
fieldset[disabled] .btn-warning,
 +
.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;
 +
}
  
      if (transition) {
+
.btn-warning .badge {
        that.$element[0].offsetWidth // force reflow
+
  color: #ffffff;
      }
+
  background-color: #020202;
 +
}
  
      that.$element
+
.btn-danger {
        .addClass('in')
+
  color: #ffffff;
        .attr('aria-hidden', false)
+
  background-color: #d9534f;
 +
  border-color: #d43f3a;
 +
}
  
      that.enforceFocus()
+
.btn-danger:hover,
 +
.btn-danger:focus,
 +
.btn-danger:active,
 +
.btn-danger.active,
 +
.open .dropdown-toggle.btn-danger {
 +
  color: #ffffff;
 +
  background-color: #d2322d;
 +
  border-color: #ac2925;
 +
}
  
      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
+
.btn-danger:active,
 +
.btn-danger.active,
 +
.open .dropdown-toggle.btn-danger {
 +
  background-image: none;
 +
}
  
      transition ?
+
.btn-danger.disabled,
        that.$element.find('.modal-dialog') // wait for modal to slide in
+
.btn-danger[disabled],
          .one($.support.transition.end, function () {
+
fieldset[disabled] .btn-danger,
            that.$element.focus().trigger(e)
+
.btn-danger.disabled:hover,
          })
+
.btn-danger[disabled]:hover,
          .emulateTransitionEnd(300) :
+
fieldset[disabled] .btn-danger:hover,
        that.$element.focus().trigger(e)
+
.btn-danger.disabled:focus,
    })
+
.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;
 +
}
  
  Modal.prototype.hide = function (e) {
+
.btn-danger .badge {
    if (e) e.preventDefault()
+
  color: #d9534f;
 +
  background-color: #fff;
 +
}
  
    e = $.Event('hide.bs.modal')
+
.btn-success {
 +
  color: #ffffff;
 +
  background-color: #5cb85c;
 +
  border-color: #4cae4c;
 +
}
  
    this.$element.trigger(e)
+
.btn-success:hover,
 +
.btn-success:focus,
 +
.btn-success:active,
 +
.btn-success.active,
 +
.open .dropdown-toggle.btn-success {
 +
  color: #ffffff;
 +
  background-color: #;
 +
  border-color: #398439;
 +
}
  
    if (!this.isShown || e.isDefaultPrevented()) return
+
.btn-success:active,
 +
.btn-success.active,
 +
.open .dropdown-toggle.btn-success {
 +
  background-image: none;
 +
}
  
    this.isShown = false
+
.btn-success.disabled,
 +
.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;
 +
}
  
    this.escape()
+
.btn-success .badge {
 +
  color: #5cb85c;
 +
  background-color: #fff;
 +
}
  
    $(document).off('focusin.bs.modal')
+
.btn-info {
 +
  color: #ffffff;
 +
  background-color: #67c152;
 +
  border-color: transparent;
 +
  -webkit-transition:0.3s;
 +
  -moz-transition:0.3s;
 +
  -o-transition:0.3s;
 +
  transition:0.3s;
 +
}
  
    this.$element
+
.btn-info:hover,
      .removeClass('in')
+
.btn-info:focus,
      .attr('aria-hidden', true)
+
.btn-info:active,
      .off('click.dismiss.bs.modal')
+
.btn-info.active,
 +
.open .dropdown-toggle.btn-info {
 +
  color: #ffffff;
 +
  background-color: #52c159;
 +
  border-color: transparent;
 +
}
  
    $.support.transition && this.$element.hasClass('fade') ?
+
.btn-info:active,
      this.$element
+
.btn-info.active,
        .one($.support.transition.end, $.proxy(this.hideModal, this))
+
.open .dropdown-toggle.btn-info {
        .emulateTransitionEnd(300) :
+
  background-image: none;
      this.hideModal()
+
}
  }
+
  
  Modal.prototype.enforceFocus = function () {
+
.btn-info.disabled,
    $(document)
+
.btn-info[disabled],
      .off('focusin.bs.modal') // guard against infinite focus loop
+
fieldset[disabled] .btn-info,
      .on('focusin.bs.modal', $.proxy(function (e) {
+
.btn-info.disabled:hover,
        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
+
.btn-info[disabled]:hover,
          this.$element.focus()
+
fieldset[disabled] .btn-info:hover,
        }
+
.btn-info.disabled:focus,
      }, this))
+
.btn-info[disabled]:focus,
   }
+
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;
 +
}
  
  Modal.prototype.escape = function () {
+
.btn-info .badge {
    if (this.isShown && this.options.keyboard) {
+
  color: #5bc0de;
      this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
+
  background-color: #fff;
        e.which == 27 && this.hide()
+
}
      }, this))
+
    } else if (!this.isShown) {
+
      this.$element.off('keyup.dismiss.bs.modal')
+
    }
+
  }
+
  
  Modal.prototype.hideModal = function () {
+
.btn-link {
    var that = this
+
  font-weight: normal;
    this.$element.hide()
+
  color: #428bca;
    this.backdrop(function () {
+
  cursor: pointer;
      that.removeBackdrop()
+
  border-radius: 0;
      that.$element.trigger('hidden.bs.modal')
+
}
    })
+
  }
+
  
  Modal.prototype.removeBackdrop = function () {
+
.btn-link,
    this.$backdrop && this.$backdrop.remove()
+
.btn-link:active,
    this.$backdrop = null
+
.btn-link[disabled],
   }
+
fieldset[disabled] .btn-link {
 +
   background-color: transparent;
 +
  -webkit-box-shadow: none;
 +
          box-shadow: none;
 +
}
  
  Modal.prototype.backdrop = function (callback) {
+
.btn-link,
    var animate = this.$element.hasClass('fade') ? 'fade' : ''
+
.btn-link:hover,
 +
.btn-link:focus,
 +
.btn-link:active {
 +
  border-color: transparent;
 +
}
  
    if (this.isShown && this.options.backdrop) {
+
.btn-link:hover,
      var doAnimate = $.support.transition && animate
+
.btn-link:focus {
 +
  color: #2a6496;
 +
  text-decoration: underline;
 +
  background-color: transparent;
 +
}
  
      this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
+
.btn-link[disabled]:hover,
        .appendTo(document.body)
+
fieldset[disabled] .btn-link:hover,
 +
.btn-link[disabled]:focus,
 +
fieldset[disabled] .btn-link:focus {
 +
  color: #999999;
 +
  text-decoration: none;
 +
}
  
      this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
+
.btn-lg {
        if (e.target !== e.currentTarget) return
+
  padding: 15px 16px;
        this.options.backdrop == 'static'
+
  font-size: 18px;
          ? this.$element[0].focus.call(this.$element[0])
+
  line-height: 1.33;
          : this.hide.call(this)
+
  border-radius: 2px;
      }, this))
+
  font-family: 'Duru Sans', Open Sans Light;
 +
}
  
      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
+
.btn-sm {
 +
  padding: 5px 10px;
 +
  font-size: 12px;
 +
  line-height: 1.5;
 +
  border-radius: 3px;
 +
}
  
      this.$backdrop.addClass('in')
+
.btn-xs {
 +
  padding: 1px 5px;
 +
  font-size: 12px;
 +
  line-height: 1.5;
 +
  border-radius: 3px;
 +
}
  
      if (!callback) return
+
.btn-block {
 +
  display: block;
 +
  width: 100%;
 +
  padding-right: 0;
 +
  padding-left: 0;
 +
}
  
      doAnimate ?
+
.btn-block + .btn-block {
        this.$backdrop
+
  margin-top: 5px;
          .one($.support.transition.end, callback)
+
}
          .emulateTransitionEnd(150) :
+
        callback()
+
  
    } else if (!this.isShown && this.$backdrop) {
+
input[type="submit"].btn-block,
      this.$backdrop.removeClass('in')
+
input[type="reset"].btn-block,
 +
input[type="button"].btn-block {
 +
  width: 100%;
 +
}
  
      $.support.transition && this.$element.hasClass('fade') ?
+
.fade {
        this.$backdrop
+
  opacity: 0;
          .one($.support.transition.end, callback)
+
  -webkit-transition: opacity 0.15s linear;
           .emulateTransitionEnd(150) :
+
           transition: opacity 0.15s linear;
        callback()
+
}
  
    } else if (callback) {
+
.fade.in {
      callback()
+
  opacity: 1;
    }
+
}
  }
+
  
 +
.collapse {
 +
  display: none;
 +
}
  
  // MODAL PLUGIN DEFINITION
+
.collapse.in {
   // =======================
+
   display: block;
 +
}
  
   var old = $.fn.modal
+
.collapsing {
 +
  position: relative;
 +
  height: 0;
 +
  overflow: hidden;
 +
   -webkit-transition: height 0.35s ease;
 +
          transition: height 0.35s ease;
 +
}
  
  $.fn.modal = function (option, _relatedTarget) {
+
@font-face {
    return this.each(function () {
+
  font-family: 'Glyphicons Halflings';
      var $this   = $(this)
+
   src: url('https://static.igem.org/mediawiki/2015/2/28/Dundee_glyphicons.ttf')
      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 {
 +
  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 {
 +
  width: 1em;
 +
}
  
  // MODAL NO CONFLICT
+
.glyphicon-asterisk:before {
   // =================
+
   content: "\2a";
 +
}
  
  $.fn.modal.noConflict = function () {
+
.glyphicon-plus:before {
    $.fn.modal = old
+
  content: "\2b";
    return this
+
}
  }
+
  
 +
.glyphicon-euro:before {
 +
  content: "\20ac";
 +
}
  
  // MODAL DATA-API
+
.glyphicon-minus:before {
   // ==============
+
   content: "\2212";
 +
}
  
  $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
+
.glyphicon-cloud:before {
    var $this   = $(this)
+
   content: "\2601";
    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()
+
.glyphicon-envelope:before {
 +
  content: "\2709";
 +
}
  
    $target
+
.glyphicon-pencil:before {
      .modal(option, this)
+
  content: "\270f";
      .one('hide', function () {
+
}
        $this.is(':visible') && $this.focus()
+
      })
+
  })
+
  
  $(document)
+
.glyphicon-glass:before {
    .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
+
  content: "\e001";
    .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
+
}
  
}(jQuery);
+
.glyphicon-music:before {
 +
  content: "\e002";
 +
}
  
/* ========================================================================
+
.glyphicon-search:before {
* Bootstrap: tooltip.js v3.1.1
+
  content: "\e003";
* 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-heart:before {
 +
  content: "\e005";
 +
}
  
+function ($) {
+
.glyphicon-star:before {
   'use strict';
+
   content: "\e006";
 +
}
  
  // TOOLTIP PUBLIC CLASS DEFINITION
+
.glyphicon-star-empty:before {
   // ===============================
+
   content: "\e007";
 +
}
  
  var Tooltip = function (element, options) {
+
.glyphicon-user:before {
    this.type      =
+
  content: "\e008";
    this.options    =
+
}
    this.enabled    =
+
    this.timeout    =
+
    this.hoverState =
+
    this.$element  = null
+
  
    this.init('tooltip', element, options)
+
.glyphicon-film:before {
   }
+
   content: "\e009";
 +
}
  
  Tooltip.DEFAULTS = {
+
.glyphicon-th-large:before {
    animation: true,
+
  content: "\e010";
    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
+
  }
+
  
  Tooltip.prototype.init = function (type, element, options) {
+
.glyphicon-th:before {
    this.enabled  = true
+
  content: "\e011";
    this.type    = type
+
}
    this.$element = $(element)
+
    this.options  = this.getOptions(options)
+
  
    var triggers = this.options.trigger.split(' ')
+
.glyphicon-th-list:before {
 +
  content: "\e012";
 +
}
  
    for (var i = triggers.length; i--;) {
+
.glyphicon-ok:before {
      var trigger = triggers[i]
+
  content: "\e013";
 +
}
  
      if (trigger == 'click') {
+
.glyphicon-remove:before {
        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
+
  content: "\e014";
      } 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))
+
.glyphicon-zoom-in:before {
        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
+
  content: "\e015";
      }
+
}
    }
+
  
    this.options.selector ?
+
.glyphicon-zoom-out:before {
      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
+
  content: "\e016";
      this.fixTitle()
+
}
  }
+
  
  Tooltip.prototype.getDefaults = function () {
+
.glyphicon-off:before {
    return Tooltip.DEFAULTS
+
  content: "\e017";
  }
+
}
  
  Tooltip.prototype.getOptions = function (options) {
+
.glyphicon-signal:before {
    options = $.extend({}, this.getDefaults(), this.$element.data(), options)
+
  content: "\e018";
 +
}
  
    if (options.delay && typeof options.delay == 'number') {
+
.glyphicon-cog:before {
      options.delay = {
+
  content: "\e019";
        show: options.delay,
+
}
        hide: options.delay
+
      }
+
    }
+
  
    return options
+
.glyphicon-trash:before {
   }
+
   content: "\e020";
 +
}
  
  Tooltip.prototype.getDelegateOptions = function () {
+
.glyphicon-home:before {
    var options  = {}
+
  content: "\e021";
    var defaults = this.getDefaults()
+
}
  
    this._options && $.each(this._options, function (key, value) {
+
.glyphicon-file:before {
      if (defaults[key] != value) options[key] = value
+
  content: "\e022";
    })
+
}
  
    return options
+
.glyphicon-time:before {
   }
+
   content: "\e023";
 +
}
  
  Tooltip.prototype.enter = function (obj) {
+
.glyphicon-road:before {
    var self = obj instanceof this.constructor ?
+
  content: "\e024";
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
+
}
  
    clearTimeout(self.timeout)
+
.glyphicon-download-alt:before {
 +
  content: "\e025";
 +
}
  
    self.hoverState = 'in'
+
.glyphicon-download-alt:before {
 +
content: "\e091";
 +
}
  
    if (!self.options.delay || !self.options.delay.show) return self.show()
+
.glyphicon-download-alt:before {
 +
content: "\e003";
 +
}
  
    self.timeout = setTimeout(function () {
+
.glyphicon-eyedropper:before {
      if (self.hoverState == 'in') self.show()
+
  content: "e091";
    }, self.options.delay.show)
+
}
  }
+
  
  Tooltip.prototype.leave = function (obj) {
+
.glyphicon-briefcase:before {
    var self = obj instanceof this.constructor ?
+
content: "\e342"
      obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
+
}
  
    clearTimeout(self.timeout)
+
.glyphicon-upload:before {
 +
  content: "\e027";
 +
}
  
    self.hoverState = 'out'
+
.glyphicon-expand {
 +
content:"\e158";
 +
}
  
    if (!self.options.delay || !self.options.delay.hide) return self.hide()
+
.glyphicon-inbox:before {
 +
  content: "\e028";
 +
}
  
    self.timeout = setTimeout(function () {
+
.glyphicon-play-circle:before {
      if (self.hoverState == 'out') self.hide()
+
  content: "\e029";
    }, self.options.delay.hide)
+
}
  }
+
  
  Tooltip.prototype.show = function () {
+
.glyphicon-repeat:before {
    var e = $.Event('show.bs.' + this.type)
+
  content: "\e030";
 +
}
  
    if (this.hasContent() && this.enabled) {
+
.glyphicon-refresh:before {
      this.$element.trigger(e)
+
  content: "\e031";
 +
}
  
      if (e.isDefaultPrevented()) return
+
.glyphicon-list-alt:before {
      var that = this;
+
  content: "\e032";
 +
}
  
      var $tip = this.tip()
+
.glyphicon-lock:before {
 +
  content: "\e033";
 +
}
  
      this.setContent()
+
.glyphicon-flag:before {
 +
  content: "\e034";
 +
}
  
      if (this.options.animation) $tip.addClass('fade')
+
.glyphicon-headphones:before {
 +
  content: "\e035";
 +
}
  
      var placement = typeof this.options.placement == 'function' ?
+
.glyphicon-volume-off:before {
        this.options.placement.call(this, $tip[0], this.$element[0]) :
+
  content: "\e036";
        this.options.placement
+
}
  
      var autoToken = /\s?auto?\s?/i
+
.glyphicon-volume-down:before {
      var autoPlace = autoToken.test(placement)
+
  content: "\e037";
      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
+
}
  
      $tip
+
.glyphicon-volume-up:before {
        .detach()
+
  content: "\e038";
        .css({ top: 0, left: 0, display: 'block' })
+
}
        .addClass(placement)
+
  
      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
+
.glyphicon-qrcode:before {
 +
  content: "\e039";
 +
}
  
      var pos          = this.getPosition()
+
.glyphicon-barcode:before {
      var actualWidth  = $tip[0].offsetWidth
+
  content: "\e040";
      var actualHeight = $tip[0].offsetHeight
+
}
  
      if (autoPlace) {
+
.glyphicon-tag:before {
        var $parent = this.$element.parent()
+
  content: "\e041";
 +
}
  
        var orgPlacement = placement
+
.glyphicon-tags:before {
        var docScroll    = document.documentElement.scrollTop || document.body.scrollTop
+
  content: "\e042";
        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'    :
+
.glyphicon-book:before {
                    placement == 'top'    && pos.top   - docScroll  - actualHeight < 0                        ? 'bottom' :
+
   content: "\e043";
                    placement == 'right'  && pos.right + actualWidth > parentWidth                              ? 'left'  :
+
}
                    placement == 'left'  && pos.left  - actualWidth < parentLeft                              ? 'right'  :
+
                    placement
+
  
        $tip
+
.glyphicon-bookmark:before {
          .removeClass(orgPlacement)
+
  content: "\e044";
          .addClass(placement)
+
}
      }
+
  
      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
+
.glyphicon-print:before {
 +
  content: "\e045";
 +
}
  
      this.applyPlacement(calculatedOffset, placement)
+
.glyphicon-camera:before {
      this.hoverState = null
+
  content: "\e046";
 +
}
  
      var complete = function() {
+
.glyphicon-font:before {
        that.$element.trigger('shown.bs.' + that.type)
+
  content: "\e047";
      }
+
}
  
      $.support.transition && this.$tip.hasClass('fade') ?
+
.glyphicon-bold:before {
        $tip
+
  content: "\e048";
          .one($.support.transition.end, complete)
+
}
          .emulateTransitionEnd(150) :
+
        complete()
+
    }
+
  }
+
  
  Tooltip.prototype.applyPlacement = function (offset, placement) {
+
.glyphicon-italic:before {
    var replace
+
   content: "\e049";
    var $tip   = this.tip()
+
}
    var width  = $tip[0].offsetWidth
+
    var height = $tip[0].offsetHeight
+
  
    // manually read margins because getBoundingClientRect includes difference
+
.glyphicon-text-height:before {
    var marginTop = parseInt($tip.css('margin-top'), 10)
+
  content: "\e050";
    var marginLeft = parseInt($tip.css('margin-left'), 10)
+
}
  
    // we must check for NaN for ie 8/9
+
.glyphicon-text-width:before {
    if (isNaN(marginTop))  marginTop  = 0
+
  content: "\e051";
    if (isNaN(marginLeft)) marginLeft = 0
+
}
  
    offset.top  = offset.top  + marginTop
+
.glyphicon-align-left:before {
    offset.left = offset.left + marginLeft
+
  content: "\e052";
 +
}
  
    // $.fn.offset doesn't round pixel values
+
.glyphicon-align-center:before {
    // so we use setOffset directly with our own function B-0
+
  content: "\e053";
    $.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')
+
.glyphicon-align-right:before {
 +
  content: "\e054";
 +
}
  
    // check to see if placing tip in new offset caused the tip to resize itself
+
.glyphicon-align-justify:before {
    var actualWidth  = $tip[0].offsetWidth
+
  content: "\e055";
    var actualHeight = $tip[0].offsetHeight
+
}
  
    if (placement == 'top' && actualHeight != height) {
+
.glyphicon-list:before {
      replace = true
+
  content: "\e056";
      offset.top = offset.top + height - actualHeight
+
}
    }
+
  
    if (/bottom|top/.test(placement)) {
+
.glyphicon-indent-left:before {
      var delta = 0
+
  content: "\e057";
 +
}
  
      if (offset.left < 0) {
+
.glyphicon-indent-right:before {
        delta      = offset.left * -2
+
  content: "\e058";
        offset.left = 0
+
}
  
        $tip.offset(offset)
+
.glyphicon-facetime-video:before {
 +
  content: "\e059";
 +
}
  
        actualWidth  = $tip[0].offsetWidth
+
.glyphicon-picture:before {
        actualHeight = $tip[0].offsetHeight
+
  content: "\e060";
      }
+
}
  
      this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
+
.glyphicon-map-marker:before {
    } else {
+
  content: "\e062";
      this.replaceArrow(actualHeight - height, actualHeight, 'top')
+
}
    }
+
  
    if (replace) $tip.offset(offset)
+
.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;
 
   }
 
   }
 +
}
  
   Tooltip.prototype.replaceArrow = function (delta, dimension, position) {
+
.btn-group,
    this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + '%') : '')
+
.btn-group-vertical {
 +
   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;
 +
  }
 +
}
  
  Tooltip.prototype.setContent = function () {
+
.nav-tabs.nav-justified > li > a {
    var $tip  = this.tip()
+
  margin-right: 0;
    var title = this.getTitle()
+
  border-radius: 4px;
 +
}
  
    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
+
.nav-tabs.nav-justified > .active > a,
     $tip.removeClass('fade in top bottom left right')
+
.nav-tabs.nav-justified > .active > a:hover,
 +
.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;
 
   }
 
   }
 +
}
  
  Tooltip.prototype.hide = function () {
+
.nav-pills > li {
    var that = this
+
  float: left;
    var $tip = this.tip()
+
}
    var e    = $.Event('hide.bs.' + this.type)
+
  
    function complete() {
+
.nav-pills > li > a {
      if (that.hoverState != 'in') $tip.detach()
+
  border-radius: 4px;
      that.$element.trigger('hidden.bs.' + that.type)
+
}
    }
+
  
    this.$element.trigger(e)
+
.nav-pills > li + li {
 +
  margin-left: 2px;
 +
}
  
    if (e.isDefaultPrevented()) return
+
.nav-pills > li.active > a,
 +
.nav-pills > li.active > a:hover,
 +
.nav-pills > li.active > a:focus {
 +
  color: #ffffff;
 +
  background-color: #428bca;
 +
}
  
    $tip.removeClass('in')
+
.nav-stacked > li {
 +
  float: none;
 +
}
  
    $.support.transition && this.$tip.hasClass('fade') ?
+
.nav-stacked > li + li {
      $tip
+
  margin-top: 2px;
        .one($.support.transition.end, complete)
+
  margin-left: 0;
        .emulateTransitionEnd(150) :
+
}
      complete()
+
  
    this.hoverState = null
+
.nav-justified {
 +
  width: 100%;
 +
}
  
     return this
+
.nav-justified > li {
 +
  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;
 
   }
 
   }
 +
}
  
  Tooltip.prototype.fixTitle = function () {
+
.nav-tabs-justified {
    var $e = this.$element
+
  border-bottom: 0;
    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;
 +
  }
 +
}
  
   Tooltip.prototype.hasContent = function () {
+
.tab-content > .tab-pane {
    return this.getTitle()
+
   display: none;
 +
}
 +
 
 +
.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;
 
   }
 
   }
 +
}
  
  Tooltip.prototype.getPosition = function () {
+
.navbar-header:before,
    var el = this.$element[0]
+
.navbar-header:after {
    return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
+
  display: table;
      width: el.offsetWidth,
+
  content: " ";
      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;
 +
}
  
  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
+
@media (min-width: 768px) {
    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :
+
   .navbar-collapse {
          placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :
+
    width: auto;
          placement == 'left'  ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
+
    border-top: 0;
        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width  }
+
    box-shadow: none;
 
   }
 
   }
 +
  .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;
 +
  }
 +
}
  
  Tooltip.prototype.getTitle = function () {
+
.container > .navbar-header,
    var title
+
.container > .navbar-collapse {
    var $e = this.$element
+
  margin-right: -15px;
    var o  = this.options
+
  margin-left: -15px;
 +
}
  
    title = $e.attr('data-original-title')
+
@media (min-width: 768px) {
      || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
+
  .container > .navbar-header,
 +
  .container > .navbar-collapse {
 +
    margin-right: 0;
 +
    margin-left: 0;
 +
  }
 +
}
  
     return title
+
.navbar-static-top {
 +
  z-index: 1000;
 +
  border-width: 0 0 0px;
 +
}
 +
 
 +
@media (min-width: 768px) {
 +
  .navbar-static-top {
 +
     border-radius: 0;
 
   }
 
   }
 +
}
  
  Tooltip.prototype.tip = function () {
+
.navbar-fixed-top,
    return this.$tip = this.$tip || $(this.options.template)
+
.navbar-fixed-bottom {
 +
  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;
 +
}
  
  Tooltip.prototype.arrow = function () {
+
@media (min-width: 768px) {
    return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
+
  .navbar > .container .navbar-brand {
 +
    margin-left: -15px;
 
   }
 
   }
 +
}
  
   Tooltip.prototype.validate = function () {
+
.navbar-toggle {
    if (!this.$element[0].parentNode) {
+
   position: relative;
      this.hide()
+
  float: right;
      this.$element = null
+
  padding: 9px 10px;
      this.options  = null
+
  margin-top: 8px;
     }
+
  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;
 
   }
 
   }
 +
}
  
   Tooltip.prototype.enable = function () {
+
.navbar-nav {
    this.enabled = true
+
   margin: 7.5px -15px;
 +
}
 +
 
 +
.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;
 +
  }
 +
}
  
   Tooltip.prototype.disable = function () {
+
@media (min-width: 768px) {
     this.enabled = false
+
   .navbar-nav {
 +
    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;
 
   }
 
   }
 +
}
  
  Tooltip.prototype.toggleEnabled = function () {
+
@media (min-width: 768px) {
     this.enabled = !this.enabled
+
  .navbar-left {
 +
     float: left !important;
 
   }
 
   }
 +
  .navbar-right {
 +
    float: right !important;
 +
  }
 +
}
  
  Tooltip.prototype.toggle = function (e) {
+
.navbar-form {
    var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
+
  padding: 10px 15px;
    self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
+
  margin-top: 8px;
 +
  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;
 +
  }
 +
}
  
  Tooltip.prototype.destroy = function () {
+
@media (max-width: 767px) {
    clearTimeout(this.timeout)
+
  .navbar-form .form-group {
     this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
+
     margin-bottom: 5px;
 
   }
 
   }
 +
}
  
 +
@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;
 +
  }
 +
}
  
   // TOOLTIP PLUGIN DEFINITION
+
.navbar-nav > li > .dropdown-menu {
   // =========================
+
   margin-top: 0;
 +
   border-top-right-radius: 0;
 +
  border-top-left-radius: 0;
 +
}
  
  var old = $.fn.tooltip
+
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
 +
  border-bottom-right-radius: 0;
 +
  border-bottom-left-radius: 0;
 +
}
  
  $.fn.tooltip = function (option) {
+
.navbar-nav.pull-right > li > .dropdown-menu,
    return this.each(function () {
+
.navbar-nav > li > .dropdown-menu.pull-right {
      var $this   = $(this)
+
   right: 0;
      var data    = $this.data('bs.tooltip')
+
  left: auto;
      var options = typeof option == 'object' && option
+
}
  
      if (!data && option == 'destroy') return
+
.navbar-btn {
      if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
+
  margin-top: 8px;
      if (typeof option == 'string') data[option]()
+
  margin-bottom: 8px;
    })
+
}
  }
+
  
  $.fn.tooltip.Constructor = Tooltip
+
.navbar-btn.btn-sm {
 +
  margin-top: 10px;
 +
  margin-bottom: 10px;
 +
}
  
 +
.navbar-btn.btn-xs {
 +
  margin-top: 14px;
 +
  margin-bottom: 14px;
 +
}
  
   // TOOLTIP NO CONFLICT
+
.navbar-text {
   // ===================
+
   margin-top: 15px;
 +
   margin-bottom: 15px;
 +
}
  
  $.fn.tooltip.noConflict = function () {
+
@media (min-width: 768px) {
    $.fn.tooltip = old
+
  .navbar-text {
     return this
+
    float: left;
 +
    margin-right: 15px;
 +
     margin-left: 15px;
 
   }
 
   }
 +
  .navbar-text.navbar-right:last-child {
 +
    margin-right: 0;
 +
  }
 +
}
  
}(jQuery);
+
/* NAVBAR COLOR */
  
/* ========================================================================
+
.navbar-default {
* Bootstrap: popover.js v3.1.1
+
  background-color: #454444;
* http://getbootstrap.com/javascript/#popovers
+
  border-color: #020202;
* ========================================================================
+
}
* Copyright 2011-2014 Twitter, Inc.
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
* ======================================================================== */
+
  
 +
.navbar-default .navbar-brand {
 +
  color: #ffffff;
 +
}
  
+function ($) {
+
.navbar-default .navbar-brand:hover,
   'use strict';
+
.navbar-default .navbar-brand:focus {
 +
   color: #ffffff;
 +
  background-color: transparent;
 +
}
  
  // POPOVER PUBLIC CLASS DEFINITION
+
.navbar-default .navbar-text {
   // ===============================
+
   color: #ffffff;
 +
}
  
  var Popover = function (element, options) {
+
.navbar-default .navbar-nav > li > a {
    this.init('popover', element, options)
+
  color: #ffffff;
   }
+
  -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')
+
}
  
  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
+
.navbar-default .navbar-nav > li > a:hover,
    placement: 'right',
+
.navbar-default .navbar-nav > li > a:focus {
    trigger: 'click',
+
  color: #339966;
    content: '',
+
  text-shadow: 0 0 5px #339966;
    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,
 +
.navbar-default .navbar-nav > .active > a:hover,
 +
.navbar-default .navbar-nav > .active > a:focus {
 +
  color: #555555;
 +
  background-color: #ffffff;
 +
  background-color: transparent;
 +
}
  
  // NOTE: POPOVER EXTENDS tooltip.js
+
.navbar-default .navbar-nav > .disabled > a,
   // ================================
+
.navbar-default .navbar-nav > .disabled > a:hover,
 +
.navbar-default .navbar-nav > .disabled > a:focus {
 +
   color: #cccccc;
 +
  background-color: transparent;
 +
}
  
  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
+
.navbar-default .navbar-toggle {
 +
  border-color: #2b2b2b;
 +
}
  
  Popover.prototype.constructor = Popover
+
.navbar-default .navbar-toggle:hover,
 +
.navbar-default .navbar-toggle:focus {
 +
  background-color: transparent;
 +
}
  
   Popover.prototype.getDefaults = function () {
+
.navbar-default .navbar-toggle .icon-bar {
    return Popover.DEFAULTS
+
   background-color: #ffffff;
 +
}
 +
 
 +
.navbar-default .navbar-collapse,
 +
.navbar-default .navbar-form {
 +
  border-color: #ffffff;
 +
}
 +
 
 +
.navbar-default .navbar-nav > .open > a,
 +
.navbar-default .navbar-nav > .open > a:hover,
 +
.navbar-default .navbar-nav > .open > a:focus {
 +
    color: #339966;
 +
  text-shadow: 0 0 5px #339966;
 +
  background-color: transparent;
 +
}
 +
 
 +
@media (max-width: 767px) {
 +
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
 +
    color: #ffffff;
 
   }
 
   }
 +
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
 +
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
 +
    color: #ffffff;
 +
    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;
 +
  }
 +
}
  
  Popover.prototype.setContent = function () {
+
.navbar-default .navbar-link {
    var $tip    = this.tip()
+
   color: #777777;
    var title   = this.getTitle()
+
}
    var content = this.getContent()
+
  
    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
+
.navbar-default .navbar-link:hover {
    $tip.find('.popover-content')[ // we use append for html objects to maintain js events
+
  color: #333333;
      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
+
}
    ](content)
+
  
    $tip.removeClass('fade top bottom left right in')
+
.navbar-inverse {
 +
  background-color: #222222;
 +
  border-color: #080808;
 +
}
  
    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
+
.navbar-inverse .navbar-brand {
    // this manually by checking the contents.
+
   color: #999999;
    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
+
}
   }
+
  
  Popover.prototype.hasContent = function () {
+
.navbar-inverse .navbar-brand:hover,
    return this.getTitle() || this.getContent()
+
.navbar-inverse .navbar-brand:focus {
   }
+
   color: #ffffff;
 +
  background-color: transparent;
 +
}
  
  Popover.prototype.getContent = function () {
+
.navbar-inverse .navbar-text {
    var $e = this.$element
+
  color: #999999;
    var o  = this.options
+
}
  
    return $e.attr('data-content')
+
.navbar-inverse .navbar-nav > li > a {
      || (typeof o.content == 'function' ?
+
  color: #999999;
            o.content.call($e[0]) :
+
}
            o.content)
+
  }
+
  
  Popover.prototype.arrow = function () {
+
.navbar-inverse .navbar-nav > li > a:hover,
    return this.$arrow = this.$arrow || this.tip().find('.arrow')
+
.navbar-inverse .navbar-nav > li > a:focus {
   }
+
   color: #ffffff;
 +
  background-color: transparent;
 +
}
  
  Popover.prototype.tip = function () {
+
.navbar-inverse .navbar-nav > .active > a,
    if (!this.$tip) this.$tip = $(this.options.template)
+
.navbar-inverse .navbar-nav > .active > a:hover,
    return this.$tip
+
.navbar-inverse .navbar-nav > .active > a:focus {
   }
+
   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;
 +
}
  
  // POPOVER PLUGIN DEFINITION
+
.navbar-inverse .navbar-toggle {
   // =========================
+
   border-color: #333333;
 +
}
  
  var old = $.fn.popover
+
.navbar-inverse .navbar-toggle:hover,
 +
.navbar-inverse .navbar-toggle:focus {
 +
  background-color: #333333;
 +
}
  
  $.fn.popover = function (option) {
+
.navbar-inverse .navbar-toggle .icon-bar {
    return this.each(function () {
+
   background-color: #ffffff;
      var $this   = $(this)
+
}
      var data    = $this.data('bs.popover')
+
      var options = typeof option == 'object' && option
+
  
      if (!data && option == 'destroy') return
+
.navbar-inverse .navbar-collapse,
      if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
+
.navbar-inverse .navbar-form {
      if (typeof option == 'string') data[option]()
+
  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;
 
   }
 
   }
 +
}
  
  $.fn.popover.Constructor = Popover
+
.navbar-inverse .navbar-link {
 +
  color: #999999;
 +
}
  
 +
.navbar-inverse .navbar-link:hover {
 +
  color: #ffffff;
 +
}
  
   // POPOVER NO CONFLICT
+
.breadcrumb {
   // ===================
+
   padding: 8px 15px;
 +
   margin-bottom: 20px;
 +
  list-style: none;
 +
  background-color: #f5f5f5;
 +
  border-radius: 4px;
 +
}
  
   $.fn.popover.noConflict = function () {
+
.breadcrumb > li {
     $.fn.popover = old
+
   display: inline-block;
     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;
 
   }
 
   }
 +
}
  
}(jQuery);
+
.thumbnail {
 +
  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,
* Bootstrap: scrollspy.js v3.1.1
+
.thumbnail a > img {
* http://getbootstrap.com/javascript/#scrollspy
+
  display: block;
* ========================================================================
+
  height: auto;
* Copyright 2011-2014 Twitter, Inc.
+
  max-width: 100%;
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
  margin-right: auto;
* ======================================================================== */
+
  margin-left: auto;
 +
}
  
 +
a.thumbnail:hover,
 +
a.thumbnail:focus,
 +
a.thumbnail.active {
 +
  border-color: #428bca;
 +
}
  
+function ($) {
+
.thumbnail .caption {
   'use strict';
+
   padding: 9px;
 +
  color: #333333;
 +
}
  
   // SCROLLSPY CLASS DEFINITION
+
.alert {
   // ==========================
+
   padding: 15px;
 +
   margin-bottom: 20px;
 +
  border: 1px solid transparent;
 +
  border-radius: 4px;
 +
}
  
  function ScrollSpy(element, options) {
+
.alert h4 {
    var href
+
  margin-top: 0;
    var process  = $.proxy(this.process, this)
+
  color: inherit;
 +
}
  
    this.$element      = $(element).is('body') ? $(window) : $(element)
+
.alert .alert-link {
    this.$body          = $('body')
+
  font-weight: bold;
    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()
+
.alert > p,
    this.process()
+
.alert > ul {
 +
  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;
 +
  }
 +
}
  
   ScrollSpy.DEFAULTS = {
+
@keyframes progress-bar-stripes {
     offset: 10
+
  from {
 +
    background-position: 40px 0;
 +
  }
 +
   to {
 +
     background-position: 0 0;
 
   }
 
   }
 +
}
  
  ScrollSpy.prototype.refresh = function () {
+
.progress {
    var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
+
  height: 20px;
 +
  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);
 +
}
  
    this.offsets = $([])
+
.progress-bar {
    this.targets = $([])
+
  float: left;
 +
  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;
 +
}
  
    var self    = this
+
.progress-striped .progress-bar {
    var $targets = this.$body
+
  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);
      .find(this.selector)
+
   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);
      .map(function () {
+
  background-size: 40px 40px;
        var $el   = $(this)
+
}
        var href  = $el.data('target') || $el.attr('href')
+
        var $href = /^#./.test(href) && $(href)
+
  
        return ($href
+
.progress.active .progress-bar {
          && $href.length
+
  -webkit-animation: progress-bar-stripes 2s linear infinite;
          && $href.is(':visible')
+
          animation: progress-bar-stripes 2s linear infinite;
          && [[ $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 () {
+
.progress-bar-success {
    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset
+
  background-color: #5cb85c;
    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) {
+
.progress-striped .progress-bar-success {
      return activeTarget != (i = targets.last()[0]) && this.activate(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);
    }
+
  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);
 +
}
  
    if (activeTarget && scrollTop <= offsets[0]) {
+
.progress-bar-info {
      return activeTarget != (i = targets[0]) && this.activate(i)
+
  background-color: #5bc0de;
    }
+
}
  
    for (i = offsets.length; i--;) {
+
.progress-striped .progress-bar-info {
      activeTarget != targets[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);
        && scrollTop >= offsets[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);
        && (!offsets[i + 1] || scrollTop <= offsets[i + 1])
+
}
        && this.activate( targets[i] )
+
    }
+
   }
+
  
  ScrollSpy.prototype.activate = function (target) {
+
.progress-bar-warning {
    this.activeTarget = target
+
  background-color: #f0ad4e;
 +
}
  
    $(this.selector)
+
.progress-striped .progress-bar-warning {
      .parentsUntil(this.options.target, '.active')
+
  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);
      .removeClass('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);
 +
}
  
    var selector = this.selector +
+
.progress-bar-danger {
        '[data-target="' + target + '"],' +
+
  background-color: #d9534f;
        this.selector + '[href="' + target + '"]'
+
}
  
    var active = $(selector)
+
.progress-striped .progress-bar-danger {
      .parents('li')
+
  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);
      .addClass('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);
 +
}
  
    if (active.parent('.dropdown-menu').length) {
+
.media,
      active = active
+
.media-body {
        .closest('li.dropdown')
+
  overflow: hidden;
        .addClass('active')
+
  zoom: 1;
    }
+
}
  
    active.trigger('activate.bs.scrollspy')
+
.media,
   }
+
.media .media {
 +
   margin-top: 15px;
 +
}
  
 +
.media:first-child {
 +
  margin-top: 0;
 +
}
  
  // SCROLLSPY PLUGIN DEFINITION
+
.media-object {
   // ===========================
+
   display: block;
 +
}
  
   var old = $.fn.scrollspy
+
.media-heading {
 +
   margin: 0 0 5px;
 +
}
  
  $.fn.scrollspy = function (option) {
+
.media > .pull-left {
    return this.each(function () {
+
   margin-right: 10px;
      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)))
+
.media > .pull-right {
      if (typeof option == 'string') data[option]()
+
  margin-left: 10px;
    })
+
}
  }
+
  
   $.fn.scrollspy.Constructor = ScrollSpy
+
.media-list {
 +
   padding-left: 0;
 +
  list-style: none;
 +
}
  
 +
.list-group {
 +
  padding-left: 0;
 +
  margin-bottom: 20px;
 +
}
  
   // SCROLLSPY NO CONFLICT
+
.list-group-item {
   // =====================
+
   position: relative;
 +
   display: block;
 +
  padding: 10px 15px;
 +
  margin-bottom: -1px;
 +
  background-color: #ffffff;
 +
  border: 1px solid #dddddd;
 +
}
  
  $.fn.scrollspy.noConflict = function () {
+
.list-group-item:first-child {
    $.fn.scrollspy = old
+
  border-top-right-radius: 4px;
    return this
+
  border-top-left-radius: 4px;
  }
+
}
  
 +
.list-group-item:last-child {
 +
  margin-bottom: 0;
 +
  border-bottom-right-radius: 4px;
 +
  border-bottom-left-radius: 4px;
 +
}
  
  // SCROLLSPY DATA-API
+
.list-group-item > .badge {
   // ==================
+
   float: right;
 +
}
  
  $(window).on('load', function () {
+
.list-group-item > .badge + .badge {
    $('[data-spy="scroll"]').each(function () {
+
  margin-right: 5px;
      var $spy = $(this)
+
}
      $spy.scrollspy($spy.data())
+
    })
+
  })
+
  
}(jQuery);
+
a.list-group-item {
 +
  color: #555555;
 +
}
  
/* ========================================================================
+
a.list-group-item .list-group-item-heading {
* Bootstrap: tab.js v3.1.1
+
  color: #333333;
* 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;
 +
}
  
+function ($) {
+
a.list-group-item.active,
   'use strict';
+
a.list-group-item.active:hover,
 +
a.list-group-item.active:focus {
 +
   z-index: 2;
 +
  color: #ffffff;
 +
  background-color: #428bca;
 +
  border-color: #428bca;
 +
}
  
  // TAB CLASS DEFINITION
+
a.list-group-item.active .list-group-item-heading,
   // ====================
+
a.list-group-item.active:hover .list-group-item-heading,
 +
a.list-group-item.active:focus .list-group-item-heading {
 +
   color: inherit;
 +
}
  
   var Tab = function (element) {
+
a.list-group-item.active .list-group-item-text,
    this.element = $(element)
+
a.list-group-item.active:hover .list-group-item-text,
   }
+
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;
 +
}
  
  Tab.prototype.show = function () {
+
.modal-footer:before,
    var $this    = this.element
+
.modal-footer:after {
    var $ul      = $this.closest('ul:not(.dropdown-menu)')
+
  display: table;
    var selector = $this.data('target')
+
  content: " ";
 +
}
  
    if (!selector) {
+
.modal-footer:after {
      selector = $this.attr('href')
+
  clear: both;
      selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
+
}
    }
+
  
    if ($this.parent('li').hasClass('active')) return
+
.modal-footer:before,
 +
.modal-footer:after {
 +
  display: table;
 +
  content: " ";
 +
}
  
    var previous = $ul.find('.active:last a')[0]
+
.modal-footer:after {
    var e        = $.Event('show.bs.tab', {
+
  clear: both;
      relatedTarget: previous
+
}
    })
+
  
    $this.trigger(e)
+
.modal-footer .btn + .btn {
 +
  margin-bottom: 0;
 +
  margin-left: 5px;
 +
}
  
    if (e.isDefaultPrevented()) return
+
.modal-footer .btn-group .btn + .btn {
 +
  margin-left: -1px;
 +
}
  
    var $target = $(selector)
+
.modal-footer .btn-block + .btn-block {
 +
  margin-left: 0;
 +
}
  
    this.activate($this.parent('li'), $ul)
+
@media screen and (min-width: 768px) {
    this.activate($target, $target.parent(), function () {
+
  .modal-dialog {
      $this.trigger({
+
    width: 600px;
        type: 'shown.bs.tab',
+
    margin: 30px auto;
        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;
 +
}
  
  Tab.prototype.activate = function (element, container, callback) {
+
.carousel-control .icon-prev:before {
    var $active    = container.find('> .active')
+
  content: '\2039';
    var transition = callback
+
}
      && $.support.transition
+
      && $active.hasClass('fade')
+
  
    function next() {
+
.carousel-control .icon-next:before {
      $active
+
  content: '\203a';
        .removeClass('active')
+
}
        .find('> .dropdown-menu > .active')
+
        .removeClass('active')
+
  
      element.addClass('active')
+
.carousel-indicators {
 +
  position: absolute;
 +
  bottom: 10px;
 +
  left: 50%;
 +
  z-index: 15;
 +
  width: 60%;
 +
  padding-left: 0;
 +
  margin-left: -30%;
 +
  text-align: center;
 +
  list-style: none;
 +
}
  
      if (transition) {
+
.carousel-indicators li {
        element[0].offsetWidth // reflow for transition
+
  display: inline-block;
        element.addClass('in')
+
  width: 10px;
      } else {
+
  height: 10px;
        element.removeClass('fade')
+
  margin: 1px;
      }
+
  text-indent: -999px;
 +
  cursor: pointer;
 +
  background-color: #000 \9;
 +
  background-color: rgba(0, 0, 0, 0);
 +
  border: 1px solid #ffffff;
 +
  border-radius: 10px;
 +
}
  
      if (element.parent('.dropdown-menu')) {
+
.carousel-indicators .active {
        element.closest('li.dropdown').addClass('active')
+
  width: 12px;
      }
+
  height: 12px;
 +
  margin: 0;
 +
  background-color: #ffffff;
 +
}
  
      callback && callback()
+
.carousel-caption {
    }
+
  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);
 +
}
  
    transition ?
+
.carousel-caption .btn {
      $active
+
  text-shadow: none;
        .one($.support.transition.end, next)
+
}
        .emulateTransitionEnd(150) :
+
      next()
+
  
    $active.removeClass('in')
+
@media screen and (min-width: 768px) {
 +
  .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: " ";
 +
}
  
  // TAB PLUGIN DEFINITION
+
.clearfix:after {
   // =====================
+
   clear: both;
 +
}
  
  var old = $.fn.tab
+
.center-block {
 +
  display: block;
 +
  margin-right: auto;
 +
  margin-left: auto;
 +
}
  
  $.fn.tab = function ( option ) {
+
.pull-right {
    return this.each(function () {
+
  float: right !important;
      var $this = $(this)
+
}
      var data  = $this.data('bs.tab')
+
  
      if (!data) $this.data('bs.tab', (data = new Tab(this)))
+
.pull-left {
      if (typeof option == 'string') data[option]()
+
  float: left !important;
     })
+
}
 +
 
 +
.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;
 +
  }
 +
}
  
   $.fn.tab.Constructor = Tab
+
@media (min-width: 768px) and (max-width: 991px) {
 +
   .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;
 +
  }
 +
}
  
   // TAB NO CONFLICT
+
@media (min-width: 1200px) {
   // ===============
+
   .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;
 +
  }
 +
}
  
  $.fn.tab.noConflict = function () {
+
.visible-sm,
    $.fn.tab = old
+
tr.visible-sm,
     return this
+
th.visible-sm,
 +
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;
 +
  }
 +
}
  
   // TAB DATA-API
+
@media (min-width: 992px) and (max-width: 1199px) {
   // ============
+
   .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;
 +
  }
 +
}
  
  $(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
+
@media (min-width: 1200px) {
     e.preventDefault()
+
  .visible-sm.visible-lg {
    $(this).tab('show')
+
    display: block !important;
   })
+
  }
 +
  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;
 +
   }
 +
}
  
}(jQuery);
+
.visible-md,
 +
tr.visible-md,
 +
th.visible-md,
 +
td.visible-md {
 +
  display: none !important;
 +
}
  
/* ========================================================================
+
@media (max-width: 767px) {
* Bootstrap: affix.js v3.1.1
+
  .visible-md.visible-xs {
* http://getbootstrap.com/javascript/#affix
+
    display: block !important;
* ========================================================================
+
  }
* Copyright 2011-2014 Twitter, Inc.
+
  table.visible-md.visible-xs {
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+
    display: table;
* ======================================================================== */
+
  }
 +
  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;
 +
  }
 +
}
  
+function ($) {
+
@media (min-width: 992px) and (max-width: 1199px) {
   'use strict';
+
   .visible-md {
 +
    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;
 +
  }
 +
}
  
   // AFFIX CLASS DEFINITION
+
@media (min-width: 1200px) {
   // ======================
+
   .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;
 +
  }
 +
}
  
  var Affix = function (element, options) {
+
.visible-lg,
    this.options = $.extend({}, Affix.DEFAULTS, options)
+
tr.visible-lg,
    this.$window = $(window)
+
th.visible-lg,
      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
+
td.visible-lg {
      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))
+
  display: none !important;
 +
}
  
    this.$element    = $(element)
+
@media (max-width: 767px) {
     this.affixed      =
+
  .visible-lg.visible-xs {
     this.unpin        =
+
     display: block !important;
     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;
 +
  }
 +
}
  
    this.checkPosition()
+
@media (min-width: 768px) and (max-width: 991px) {
 +
  .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;
 +
  }
 +
}
  
   Affix.RESET = 'affix affix-top affix-bottom'
+
@media (min-width: 992px) and (max-width: 1199px) {
 +
   .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;
 +
  }
 +
}
  
   Affix.DEFAULTS = {
+
@media (min-width: 1200px) {
     offset: 0
+
  .visible-lg {
 +
    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;
 
   }
 
   }
 +
}
  
   Affix.prototype.getPinnedOffset = function () {
+
.hidden-xs {
    if (this.pinnedOffset) return this.pinnedOffset
+
   display: block !important;
    this.$element.removeClass(Affix.RESET).addClass('affix')
+
}
    var scrollTop = this.$window.scrollTop()
+
 
    var position  = this.$element.offset()
+
table.hidden-xs {
    return (this.pinnedOffset = position.top - scrollTop)
+
  display: table;
 +
}
 +
 
 +
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;
 
   }
 
   }
 +
}
  
  Affix.prototype.checkPositionWithEventLoop = function () {
+
@media (min-width: 768px) and (max-width: 991px) {
    setTimeout($.proxy(this.checkPosition, this), 1)
+
  .hidden-xs.hidden-sm,
 +
  tr.hidden-xs.hidden-sm,
 +
  th.hidden-xs.hidden-sm,
 +
  td.hidden-xs.hidden-sm {
 +
    display: none !important;
 
   }
 
   }
 +
}
  
  Affix.prototype.checkPosition = function () {
+
@media (min-width: 992px) and (max-width: 1199px) {
    if (!this.$element.is(':visible')) return
+
  .hidden-xs.hidden-md,
 +
  tr.hidden-xs.hidden-md,
 +
  th.hidden-xs.hidden-md,
 +
  td.hidden-xs.hidden-md {
 +
    display: none !important;
 +
  }
 +
}
  
    var scrollHeight = $(document).height()
+
@media (min-width: 1200px) {
    var scrollTop    = this.$window.scrollTop()
+
  .hidden-xs.hidden-lg,
    var position    = this.$element.offset()
+
  tr.hidden-xs.hidden-lg,
    var offset      = this.options.offset
+
  th.hidden-xs.hidden-lg,
     var offsetTop    = offset.top
+
  td.hidden-xs.hidden-lg {
    var offsetBottom = offset.bottom
+
     display: none !important;
 +
  }
 +
}
  
    if (this.affixed == 'top') position.top += scrollTop
+
.hidden-sm {
 +
  display: block !important;
 +
}
  
    if (typeof offset != 'object')        offsetBottom = offsetTop = offset
+
table.hidden-sm {
    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)
+
  display: table;
    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)
+
}
  
    var affix = this.unpin   != null && (scrollTop + this.unpin <= position.top) ? false :
+
tr.hidden-sm {
                offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
+
   display: table-row !important;
                offsetTop    != null && (scrollTop <= offsetTop) ? 'top' : false
+
}
  
    if (this.affixed === affix) return
+
th.hidden-sm,
    if (this.unpin) this.$element.css('top', '')
+
td.hidden-sm {
 +
  display: table-cell !important;
 +
}
  
    var affixType = 'affix' + (affix ? '-' + affix : '')
+
@media (max-width: 767px) {
    var e        = $.Event(affixType + '.bs.affix')
+
  .hidden-sm.hidden-xs,
 +
  tr.hidden-sm.hidden-xs,
 +
  th.hidden-sm.hidden-xs,
 +
  td.hidden-sm.hidden-xs {
 +
    display: none !important;
 +
  }
 +
}
  
    this.$element.trigger(e)
+
@media (min-width: 768px) and (max-width: 991px) {
 +
  .hidden-sm,
 +
  tr.hidden-sm,
 +
  th.hidden-sm,
 +
  td.hidden-sm {
 +
    display: none !important;
 +
  }
 +
}
  
    if (e.isDefaultPrevented()) return
+
@media (min-width: 992px) and (max-width: 1199px) {
 +
  .hidden-sm.hidden-md,
 +
  tr.hidden-sm.hidden-md,
 +
  th.hidden-sm.hidden-md,
 +
  td.hidden-sm.hidden-md {
 +
    display: none !important;
 +
  }
 +
}
  
    this.affixed = affix
+
@media (min-width: 1200px) {
    this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null
+
  .hidden-sm.hidden-lg,
 +
  tr.hidden-sm.hidden-lg,
 +
  th.hidden-sm.hidden-lg,
 +
  td.hidden-sm.hidden-lg {
 +
    display: none !important;
 +
  }
 +
}
  
    this.$element
+
.hidden-md {
      .removeClass(Affix.RESET)
+
  display: block !important;
      .addClass(affixType)
+
}
      .trigger($.Event(affixType.replace('affix', 'affixed')))
+
  
    if (affix == 'bottom') {
+
table.hidden-md {
      this.$element.offset({ top: scrollHeight - offsetBottom - this.$element.height() })
+
  display: table;
     }
+
}
 +
 
 +
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;
 +
  }
 +
}
  
   // AFFIX PLUGIN DEFINITION
+
@media (min-width: 992px) and (max-width: 1199px) {
   // =======================
+
   .hidden-md,
 +
   tr.hidden-md,
 +
  th.hidden-md,
 +
  td.hidden-md {
 +
    display: none !important;
 +
  }
 +
}
  
   var old = $.fn.affix
+
@media (min-width: 1200px) {
 +
   .hidden-md.hidden-lg,
 +
  tr.hidden-md.hidden-lg,
 +
  th.hidden-md.hidden-lg,
 +
  td.hidden-md.hidden-lg {
 +
    display: none !important;
 +
  }
 +
}
  
  $.fn.affix = function (option) {
+
.hidden-lg {
    return this.each(function () {
+
   display: block !important;
      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)))
+
table.hidden-lg {
      if (typeof option == 'string') data[option]()
+
  display: table;
     })
+
}
 +
 
 +
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;
 
   }
 
   }
 +
}
  
   $.fn.affix.Constructor = Affix
+
@media (min-width: 768px) and (max-width: 991px) {
 +
   .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;
 +
  }
 +
}
  
   // AFFIX NO CONFLICT
+
@media (min-width: 1200px) {
   // =================
+
   .hidden-lg,
 +
   tr.hidden-lg,
 +
  th.hidden-lg,
 +
  td.hidden-lg {
 +
    display: none !important;
 +
  }
 +
}
  
  $.fn.affix.noConflict = function () {
+
.visible-print,
    $.fn.affix = old
+
tr.visible-print,
     return this
+
th.visible-print,
 +
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);
 +
}
  
   // AFFIX DATA-API
+
.lightbox-header .close {
   // ==============
+
   margin-top: -16px;
 +
   margin-right: -16px;
 +
  font-size: 2em;
 +
  color: white;
 +
  opacity: .8;
 +
  filter: alpha(opacity=80);
 +
}
  
  $(window).on('load', function () {
+
.lightbox-header .close :hover {
    $('[data-spy="affix"]').each(function () {
+
  opacity: .4;
      var $spy = $(this)
+
  filter: alpha(opacity=40);
      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);
+
</style>
 +
</html>

Latest revision as of 10:49, 18 September 2015