@bmlt-enabled/croutonjs 3.20.0 → 3.20.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/crouton-core.css CHANGED
@@ -477,10 +477,10 @@ table.tablesaw {
477
477
  }
478
478
 
479
479
  .bmlt-map {
480
- height: 400px;
480
+ height: 500px;
481
481
  }
482
482
  #byfield_embeddedMapPage{
483
- height: 400px;
483
+ height: 500px;
484
484
  }
485
485
  .bmlt-observer {
486
486
  font-size: 14px;
@@ -645,13 +645,13 @@ table.tablesaw {
645
645
  direction: rtl;
646
646
  }
647
647
  #bmlt-header.bmlt-rtl {
648
- text-align:right;
648
+ text-align:right;
649
649
  }
650
650
  #nav-days.bmlt-rtl {
651
- float:right;
651
+ float:right;
652
652
  }
653
653
  #nav-days.bmlt-rtl li {
654
- float:right;
654
+ float:right;
655
655
  }
656
656
  #bmlt-tabs .bmlt-rtl .bmlt-column1 {
657
657
  text-align: right;
package/crouton-core.js CHANGED
@@ -16153,7 +16153,8 @@ function Crouton(config) {
16153
16153
  time_format: "h:mm a", // The format for time
16154
16154
  language: "en-US", // Default language translation, available translations listed here: https://github.com/bmlt-enabled/crouton/blob/master/croutonjs/src/js/crouton-localization.js
16155
16155
  has_tabs: true, // Shows the day tabs
16156
- filter_tabs: false, // Whether to show weekday tabs on filtering.
16156
+ filter_tabs: 0, // Whether to show weekday tabs on filtering.
16157
+ filter_visible: 0, // whether entries in table should be limited to those visible in map
16157
16158
  header: true, // Shows the dropdowns and buttons
16158
16159
  include_weekday_button: true, // Shows the weekday button
16159
16160
  int_include_unpublished: 0, // Includes unpublished meeting
@@ -16440,7 +16441,10 @@ function Crouton(config) {
16440
16441
  jQuery(id).removeClass("hide").addClass("show");
16441
16442
  };
16442
16443
 
16443
- self.showView = function (viewName) {
16444
+ self.showView = function (viewName, resetFilters=true) {
16445
+ if (resetFilters) {
16446
+ self.resetFilter();
16447
+ }
16444
16448
  if (viewName === "byday") {
16445
16449
  self.byDayView();
16446
16450
  } else if (viewName === "day" || viewName === "weekday") {
@@ -16453,7 +16457,6 @@ function Crouton(config) {
16453
16457
  };
16454
16458
 
16455
16459
  self.byDayView = function () {
16456
- self.resetFilter();
16457
16460
  self.lowlightButton(".filterButton");
16458
16461
  self.highlightButton("#day");
16459
16462
  jQuery('.bmlt-page').each(function (index) {
@@ -16465,7 +16468,6 @@ function Crouton(config) {
16465
16468
  };
16466
16469
 
16467
16470
  self.dayView = function () {
16468
- self.resetFilter();
16469
16471
  self.lowlightButton(".filterButton");
16470
16472
  self.highlightButton("#day");
16471
16473
  jQuery('.bmlt-page').each(function (index) {
@@ -16477,10 +16479,7 @@ function Crouton(config) {
16477
16479
  });
16478
16480
  };
16479
16481
 
16480
- self.filteredView = function (field, resetFilters=true) {
16481
- if (resetFilters) {
16482
- self.resetFilter();
16483
- }
16482
+ self.filteredView = function (field) {
16484
16483
  self.lowlightButton("#day");
16485
16484
  self.lowlightButton(".filterButton");
16486
16485
  self.highlightButton("#filterButton_" + field);
@@ -16523,8 +16522,6 @@ function Crouton(config) {
16523
16522
  });
16524
16523
  if (!filteringDropdown) {
16525
16524
  self.filtering = false;
16526
- if (croutonMap) croutonMap.fillMap();
16527
- return;
16528
16525
  }
16529
16526
  var showingNow = [];
16530
16527
  jQuery(".bmlt-data-row").not(".hide").each(function (index, value) {
@@ -16544,12 +16541,12 @@ function Crouton(config) {
16544
16541
  }
16545
16542
 
16546
16543
  if (!self.config.map_page || jQuery('#byfield_embeddedMapPage').hasClass('hide')) {
16547
- self.showFilteredMeetingsAsTable();
16544
+ self.showFilteredMeetingsAsTable(showingNow.length);
16548
16545
  }
16549
16546
  self.filtering = true;
16550
16547
  };
16551
- self.showFilteredMeetingsAsTable = function () {
16552
- if (self.config['filter_tabs']) {
16548
+ self.showFilteredMeetingsAsTable = function (showingNow) {
16549
+ if (self.config['filter_tabs'] && self.config['filter_tabs'] <= showingNow) {
16553
16550
  self.showPage("#nav-days");
16554
16551
  self.showPage("#tabs-content");
16555
16552
  } else {
@@ -16565,6 +16562,7 @@ function Crouton(config) {
16565
16562
  }
16566
16563
  }
16567
16564
  self.resetFilter = function () {
16565
+ croutonMap.filterVisible(false);
16568
16566
  if (self.config.map_page) {
16569
16567
  if (self.filtering) croutonMap.fillMap();
16570
16568
  jQuery('#displayTypeButton_tablePages').addClass('hide');
@@ -16642,6 +16640,7 @@ function Crouton(config) {
16642
16640
  meetingCount = showingNow.length;
16643
16641
  addLive = function(id) {return id+"-live"};
16644
16642
  }
16643
+ self.showingNowCount = meetingCount;
16645
16644
  jQuery(addLive('#bmlt_tabs_meeting_count')).text(meetingCount);
16646
16645
  jQuery(addLive('#bmlt_tabs_group_count')).each(function(){
16647
16646
  var filteredMeetings = self.meetingData;
@@ -17487,11 +17486,12 @@ Crouton.prototype.render = function(doMeetingMap = false) {
17487
17486
  });
17488
17487
  jQuery('#displayTypeButton_tablePages').on('click', function (e) {
17489
17488
  self.hidePage('#byfield_embeddedMapPage');
17490
- self.showFilteredMeetingsAsTable();
17489
+ const knt = self.showingNowCount ? self.showingNowCount : self.meetingData.length;
17490
+ self.showFilteredMeetingsAsTable(knt);
17491
17491
  });
17492
17492
  jQuery('#filterButton_embeddedMapPage').on('click', function (e) {
17493
17493
  self.filteredView(e.target.attributes['data-field'].value, false);
17494
- croutonMap.showMap();
17494
+ croutonMap.showMap(false,false);
17495
17495
  });
17496
17496
  jQuery('.custom-ul').on('click', 'a', function (event) {
17497
17497
  jQuery('.bmlt-page').each(function (index) {
@@ -17516,7 +17516,7 @@ Crouton.prototype.render = function(doMeetingMap = false) {
17516
17516
 
17517
17517
  self.showPage(".bmlt-header");
17518
17518
  self.showPage(".bmlt-tabs");
17519
- self.showView(self.config['view_by']);
17519
+ self.showView(self.config['view_by'], false);
17520
17520
 
17521
17521
  if (self.config['default_filter_dropdown'] !== "") {
17522
17522
  var filter = self.config['default_filter_dropdown'].toLowerCase().split("=");
@@ -17546,6 +17546,11 @@ Crouton.prototype.render = function(doMeetingMap = false) {
17546
17546
  }, !doMeetingMap);
17547
17547
  });
17548
17548
  });
17549
+ Crouton.prototype.forceShowMap = function() {
17550
+ if (self.config.map_page && jQuery('#byfield_embeddedMapPage').hasClass('hide')) {
17551
+ jQuery('#filterButton_embeddedMapPage').click();
17552
+ }
17553
+ }
17549
17554
  };
17550
17555
 
17551
17556
 
@@ -17851,7 +17856,7 @@ Crouton.prototype.simulateFilterDropdown = function() {
17851
17856
  });
17852
17857
  self.filteredPage();
17853
17858
  if (!self.filtering && !self.config.map_page)
17854
- self.showView(self.config['view_by'] === 'byday' ? 'byday' : 'day');
17859
+ self.showView(self.config['view_by'] === 'byday' ? 'byday' : 'day', false);
17855
17860
  }
17856
17861
  Crouton.prototype.getAdjustedDateTime = function(meeting_day, meeting_time, meeting_time_zone) {
17857
17862
  var timeZoneAware = this.config['auto_tz_adjust'] === true || this.config['auto_tz_adjust'] === "true";
@@ -9,4 +9,4 @@
9
9
  * Bootstrap v3.3.5 (http://getbootstrap.com)
10
10
  * Copyright 2011-2015 Twitter, Inc.
11
11
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
12
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */}.bootstrap-bmlt html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.bootstrap-bmlt body{margin:0}.bootstrap-bmlt article,.bootstrap-bmlt aside,.bootstrap-bmlt details,.bootstrap-bmlt figcaption,.bootstrap-bmlt figure,.bootstrap-bmlt footer,.bootstrap-bmlt header,.bootstrap-bmlt hgroup,.bootstrap-bmlt main,.bootstrap-bmlt menu,.bootstrap-bmlt nav,.bootstrap-bmlt section,.bootstrap-bmlt summary{display:block}.bootstrap-bmlt audio,.bootstrap-bmlt canvas,.bootstrap-bmlt progress,.bootstrap-bmlt video{display:inline-block;vertical-align:baseline}.bootstrap-bmlt audio:not([controls]){display:none;height:0}.bootstrap-bmlt [hidden],.bootstrap-bmlt template{display:none}.bootstrap-bmlt a{background-color:transparent}.bootstrap-bmlt a:active,.bootstrap-bmlt a:hover{outline:0}.bootstrap-bmlt abbr[title]{border-bottom:1px dotted}.bootstrap-bmlt b,.bootstrap-bmlt strong{font-weight:700}.bootstrap-bmlt dfn{font-style:italic}.bootstrap-bmlt h1{font-size:2em;margin:.67em 0}.bootstrap-bmlt mark{background:#ff0;color:#000}.bootstrap-bmlt small{font-size:80%}.bootstrap-bmlt sub,.bootstrap-bmlt sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.bootstrap-bmlt sup{top:-.5em}.bootstrap-bmlt sub{bottom:-.25em}.bootstrap-bmlt img{border:0}.bootstrap-bmlt svg:not(:root){overflow:hidden}.bootstrap-bmlt hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.bootstrap-bmlt pre{overflow:auto}.bootstrap-bmlt code,.bootstrap-bmlt kbd,.bootstrap-bmlt pre,.bootstrap-bmlt samp{font-family:monospace,monospace;font-size:1em}.bootstrap-bmlt button,.bootstrap-bmlt input,.bootstrap-bmlt optgroup,.bootstrap-bmlt select,.bootstrap-bmlt textarea{color:inherit;font:inherit;margin:0}.bootstrap-bmlt button{overflow:visible}.bootstrap-bmlt button,.bootstrap-bmlt select{text-transform:none}.bootstrap-bmlt button,.bootstrap-bmlt html input[type=button],.bootstrap-bmlt input[type=reset],.bootstrap-bmlt input[type=submit]{-webkit-appearance:button;cursor:pointer}.bootstrap-bmlt button[disabled],.bootstrap-bmlt html input[disabled]{cursor:default}.bootstrap-bmlt button::-moz-focus-inner,.bootstrap-bmlt input::-moz-focus-inner{border:0;padding:0}.bootstrap-bmlt input[type=checkbox],.bootstrap-bmlt input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.bootstrap-bmlt input[type=number]::-webkit-inner-spin-button,.bootstrap-bmlt input[type=number]::-webkit-outer-spin-button{height:auto}.bootstrap-bmlt input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.bootstrap-bmlt input[type=search]::-webkit-search-cancel-button,.bootstrap-bmlt input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.bootstrap-bmlt fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.bootstrap-bmlt legend{border:0;padding:0}.bootstrap-bmlt textarea{overflow:auto}.bootstrap-bmlt optgroup{font-weight:700}.bootstrap-bmlt table{border-collapse:collapse;border-spacing:0}.bootstrap-bmlt td,.bootstrap-bmlt th{padding:0}@font-face{font-family:'Glyphicons Halflings';src:url(fonts/glyphicons-halflings-regular.eot);src:url(fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(fonts/glyphicons-halflings-regular.woff) format('woff'),url(fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.bootstrap-bmlt .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bootstrap-bmlt .glyphicon-asterisk:before{content:"\2a"}.bootstrap-bmlt .glyphicon-plus:before{content:"\2b"}.bootstrap-bmlt .glyphicon-eur:before,.bootstrap-bmlt .glyphicon-euro:before{content:"\20ac"}.bootstrap-bmlt .glyphicon-minus:before{content:"\2212"}.bootstrap-bmlt .glyphicon-cloud:before{content:"\2601"}.bootstrap-bmlt .glyphicon-envelope:before{content:"\2709"}.bootstrap-bmlt .glyphicon-pencil:before{content:"\270f"}.bootstrap-bmlt .glyphicon-glass:before{content:"\e001"}.bootstrap-bmlt .glyphicon-music:before{content:"\e002"}.bootstrap-bmlt .glyphicon-search:before{content:"\e003"}.bootstrap-bmlt .glyphicon-heart:before{content:"\e005"}.bootstrap-bmlt .glyphicon-star:before{content:"\e006"}.bootstrap-bmlt .glyphicon-star-empty:before{content:"\e007"}.bootstrap-bmlt .glyphicon-user:before{content:"\e008"}.bootstrap-bmlt .glyphicon-film:before{content:"\e009"}.bootstrap-bmlt .glyphicon-th-large:before{content:"\e010"}.bootstrap-bmlt .glyphicon-th:before{content:"\e011"}.bootstrap-bmlt .glyphicon-th-list:before{content:"\e012"}.bootstrap-bmlt .glyphicon-ok:before{content:"\e013"}.bootstrap-bmlt .glyphicon-remove:before{content:"\e014"}.bootstrap-bmlt .glyphicon-zoom-in:before{content:"\e015"}.bootstrap-bmlt .glyphicon-zoom-out:before{content:"\e016"}.bootstrap-bmlt .glyphicon-off:before{content:"\e017"}.bootstrap-bmlt .glyphicon-signal:before{content:"\e018"}.bootstrap-bmlt .glyphicon-cog:before{content:"\e019"}.bootstrap-bmlt .glyphicon-trash:before{content:"\e020"}.bootstrap-bmlt .glyphicon-home:before{content:"\e021"}.bootstrap-bmlt .glyphicon-file:before{content:"\e022"}.bootstrap-bmlt .glyphicon-time:before{content:"\e023"}.bootstrap-bmlt .glyphicon-road:before{content:"\e024"}.bootstrap-bmlt .glyphicon-download-alt:before{content:"\e025"}.bootstrap-bmlt .glyphicon-download:before{content:"\e026"}.bootstrap-bmlt .glyphicon-upload:before{content:"\e027"}.bootstrap-bmlt .glyphicon-inbox:before{content:"\e028"}.bootstrap-bmlt .glyphicon-play-circle:before{content:"\e029"}.bootstrap-bmlt .glyphicon-repeat:before{content:"\e030"}.bootstrap-bmlt .glyphicon-refresh:before{content:"\e031"}.bootstrap-bmlt .glyphicon-list-alt:before{content:"\e032"}.bootstrap-bmlt .glyphicon-lock:before{content:"\e033"}.bootstrap-bmlt .glyphicon-flag:before{content:"\e034"}.bootstrap-bmlt .glyphicon-headphones:before{content:"\e035"}.bootstrap-bmlt .glyphicon-volume-off:before{content:"\e036"}.bootstrap-bmlt .glyphicon-volume-down:before{content:"\e037"}.bootstrap-bmlt .glyphicon-volume-up:before{content:"\e038"}.bootstrap-bmlt .glyphicon-qrcode:before{content:"\e039"}.bootstrap-bmlt .glyphicon-barcode:before{content:"\e040"}.bootstrap-bmlt .glyphicon-tag:before{content:"\e041"}.bootstrap-bmlt .glyphicon-tags:before{content:"\e042"}.bootstrap-bmlt .glyphicon-book:before{content:"\e043"}.bootstrap-bmlt .glyphicon-bookmark:before{content:"\e044"}.bootstrap-bmlt .glyphicon-print:before{content:"\e045"}.bootstrap-bmlt .glyphicon-camera:before{content:"\e046"}.bootstrap-bmlt .glyphicon-font:before{content:"\e047"}.bootstrap-bmlt .glyphicon-bold:before{content:"\e048"}.bootstrap-bmlt .glyphicon-italic:before{content:"\e049"}.bootstrap-bmlt .glyphicon-text-height:before{content:"\e050"}.bootstrap-bmlt .glyphicon-text-width:before{content:"\e051"}.bootstrap-bmlt .glyphicon-align-left:before{content:"\e052"}.bootstrap-bmlt .glyphicon-align-center:before{content:"\e053"}.bootstrap-bmlt .glyphicon-align-right:before{content:"\e054"}.bootstrap-bmlt .glyphicon-align-justify:before{content:"\e055"}.bootstrap-bmlt .glyphicon-list:before{content:"\e056"}.bootstrap-bmlt .glyphicon-indent-left:before{content:"\e057"}.bootstrap-bmlt .glyphicon-indent-right:before{content:"\e058"}.bootstrap-bmlt .glyphicon-facetime-video:before{content:"\e059"}.bootstrap-bmlt .glyphicon-picture:before{content:"\e060"}.bootstrap-bmlt .glyphicon-map-marker:before{content:"\e062"}.bootstrap-bmlt .glyphicon-adjust:before{content:"\e063"}.bootstrap-bmlt .glyphicon-tint:before{content:"\e064"}.bootstrap-bmlt .glyphicon-edit:before{content:"\e065"}.bootstrap-bmlt .glyphicon-share:before{content:"\e066"}.bootstrap-bmlt .glyphicon-check:before{content:"\e067"}.bootstrap-bmlt .glyphicon-move:before{content:"\e068"}.bootstrap-bmlt .glyphicon-step-backward:before{content:"\e069"}.bootstrap-bmlt .glyphicon-fast-backward:before{content:"\e070"}.bootstrap-bmlt .glyphicon-backward:before{content:"\e071"}.bootstrap-bmlt .glyphicon-play:before{content:"\e072"}.bootstrap-bmlt .glyphicon-pause:before{content:"\e073"}.bootstrap-bmlt .glyphicon-stop:before{content:"\e074"}.bootstrap-bmlt .glyphicon-forward:before{content:"\e075"}.bootstrap-bmlt .glyphicon-fast-forward:before{content:"\e076"}.bootstrap-bmlt .glyphicon-step-forward:before{content:"\e077"}.bootstrap-bmlt .glyphicon-eject:before{content:"\e078"}.bootstrap-bmlt .glyphicon-chevron-left:before{content:"\e079"}.bootstrap-bmlt .glyphicon-chevron-right:before{content:"\e080"}.bootstrap-bmlt .glyphicon-plus-sign:before{content:"\e081"}.bootstrap-bmlt .glyphicon-minus-sign:before{content:"\e082"}.bootstrap-bmlt .glyphicon-remove-sign:before{content:"\e083"}.bootstrap-bmlt .glyphicon-ok-sign:before{content:"\e084"}.bootstrap-bmlt .glyphicon-question-sign:before{content:"\e085"}.bootstrap-bmlt .glyphicon-info-sign:before{content:"\e086"}.bootstrap-bmlt .glyphicon-screenshot:before{content:"\e087"}.bootstrap-bmlt .glyphicon-remove-circle:before{content:"\e088"}.bootstrap-bmlt .glyphicon-ok-circle:before{content:"\e089"}.bootstrap-bmlt .glyphicon-ban-circle:before{content:"\e090"}.bootstrap-bmlt .glyphicon-arrow-left:before{content:"\e091"}.bootstrap-bmlt .glyphicon-arrow-right:before{content:"\e092"}.bootstrap-bmlt .glyphicon-arrow-up:before{content:"\e093"}.bootstrap-bmlt .glyphicon-arrow-down:before{content:"\e094"}.bootstrap-bmlt .glyphicon-share-alt:before{content:"\e095"}.bootstrap-bmlt .glyphicon-resize-full:before{content:"\e096"}.bootstrap-bmlt .glyphicon-resize-small:before{content:"\e097"}.bootstrap-bmlt .glyphicon-exclamation-sign:before{content:"\e101"}.bootstrap-bmlt .glyphicon-gift:before{content:"\e102"}.bootstrap-bmlt .glyphicon-leaf:before{content:"\e103"}.bootstrap-bmlt .glyphicon-fire:before{content:"\e104"}.bootstrap-bmlt .glyphicon-eye-open:before{content:"\e105"}.bootstrap-bmlt .glyphicon-eye-close:before{content:"\e106"}.bootstrap-bmlt .glyphicon-warning-sign:before{content:"\e107"}.bootstrap-bmlt .glyphicon-plane:before{content:"\e108"}.bootstrap-bmlt .glyphicon-calendar:before{content:"\e109"}.bootstrap-bmlt .glyphicon-random:before{content:"\e110"}.bootstrap-bmlt .glyphicon-comment:before{content:"\e111"}.bootstrap-bmlt .glyphicon-magnet:before{content:"\e112"}.bootstrap-bmlt .glyphicon-chevron-up:before{content:"\e113"}.bootstrap-bmlt .glyphicon-chevron-down:before{content:"\e114"}.bootstrap-bmlt .glyphicon-retweet:before{content:"\e115"}.bootstrap-bmlt .glyphicon-shopping-cart:before{content:"\e116"}.bootstrap-bmlt .glyphicon-folder-close:before{content:"\e117"}.bootstrap-bmlt .glyphicon-folder-open:before{content:"\e118"}.bootstrap-bmlt .glyphicon-resize-vertical:before{content:"\e119"}.bootstrap-bmlt .glyphicon-resize-horizontal:before{content:"\e120"}.bootstrap-bmlt .glyphicon-hdd:before{content:"\e121"}.bootstrap-bmlt .glyphicon-bullhorn:before{content:"\e122"}.bootstrap-bmlt .glyphicon-bell:before{content:"\e123"}.bootstrap-bmlt .glyphicon-certificate:before{content:"\e124"}.bootstrap-bmlt .glyphicon-thumbs-up:before{content:"\e125"}.bootstrap-bmlt .glyphicon-thumbs-down:before{content:"\e126"}.bootstrap-bmlt .glyphicon-hand-right:before{content:"\e127"}.bootstrap-bmlt .glyphicon-hand-left:before{content:"\e128"}.bootstrap-bmlt .glyphicon-hand-up:before{content:"\e129"}.bootstrap-bmlt .glyphicon-hand-down:before{content:"\e130"}.bootstrap-bmlt .glyphicon-circle-arrow-right:before{content:"\e131"}.bootstrap-bmlt .glyphicon-circle-arrow-left:before{content:"\e132"}.bootstrap-bmlt .glyphicon-circle-arrow-up:before{content:"\e133"}.bootstrap-bmlt .glyphicon-circle-arrow-down:before{content:"\e134"}.bootstrap-bmlt .glyphicon-globe:before{content:"\e135"}.bootstrap-bmlt .glyphicon-wrench:before{content:"\e136"}.bootstrap-bmlt .glyphicon-tasks:before{content:"\e137"}.bootstrap-bmlt .glyphicon-filter:before{content:"\e138"}.bootstrap-bmlt .glyphicon-briefcase:before{content:"\e139"}.bootstrap-bmlt .glyphicon-fullscreen:before{content:"\e140"}.bootstrap-bmlt .glyphicon-dashboard:before{content:"\e141"}.bootstrap-bmlt .glyphicon-paperclip:before{content:"\e142"}.bootstrap-bmlt .glyphicon-heart-empty:before{content:"\e143"}.bootstrap-bmlt .glyphicon-link:before{content:"\e144"}.bootstrap-bmlt .glyphicon-phone:before{content:"\e145"}.bootstrap-bmlt .glyphicon-pushpin:before{content:"\e146"}.bootstrap-bmlt .glyphicon-usd:before{content:"\e148"}.bootstrap-bmlt .glyphicon-gbp:before{content:"\e149"}.bootstrap-bmlt .glyphicon-sort:before{content:"\e150"}.bootstrap-bmlt .glyphicon-sort-by-alphabet:before{content:"\e151"}.bootstrap-bmlt .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.bootstrap-bmlt .glyphicon-sort-by-order:before{content:"\e153"}.bootstrap-bmlt .glyphicon-sort-by-order-alt:before{content:"\e154"}.bootstrap-bmlt .glyphicon-sort-by-attributes:before{content:"\e155"}.bootstrap-bmlt .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.bootstrap-bmlt .glyphicon-unchecked:before{content:"\e157"}.bootstrap-bmlt .glyphicon-expand:before{content:"\e158"}.bootstrap-bmlt .glyphicon-collapse-down:before{content:"\e159"}.bootstrap-bmlt .glyphicon-collapse-up:before{content:"\e160"}.bootstrap-bmlt .glyphicon-log-in:before{content:"\e161"}.bootstrap-bmlt .glyphicon-flash:before{content:"\e162"}.bootstrap-bmlt .glyphicon-log-out:before{content:"\e163"}.bootstrap-bmlt .glyphicon-new-window:before{content:"\e164"}.bootstrap-bmlt .glyphicon-record:before{content:"\e165"}.bootstrap-bmlt .glyphicon-save:before{content:"\e166"}.bootstrap-bmlt .glyphicon-open:before{content:"\e167"}.bootstrap-bmlt .glyphicon-saved:before{content:"\e168"}.bootstrap-bmlt .glyphicon-import:before{content:"\e169"}.bootstrap-bmlt .glyphicon-export:before{content:"\e170"}.bootstrap-bmlt .glyphicon-send:before{content:"\e171"}.bootstrap-bmlt .glyphicon-floppy-disk:before{content:"\e172"}.bootstrap-bmlt .glyphicon-floppy-saved:before{content:"\e173"}.bootstrap-bmlt .glyphicon-floppy-remove:before{content:"\e174"}.bootstrap-bmlt .glyphicon-floppy-save:before{content:"\e175"}.bootstrap-bmlt .glyphicon-floppy-open:before{content:"\e176"}.bootstrap-bmlt .glyphicon-credit-card:before{content:"\e177"}.bootstrap-bmlt .glyphicon-transfer:before{content:"\e178"}.bootstrap-bmlt .glyphicon-cutlery:before{content:"\e179"}.bootstrap-bmlt .glyphicon-header:before{content:"\e180"}.bootstrap-bmlt .glyphicon-compressed:before{content:"\e181"}.bootstrap-bmlt .glyphicon-earphone:before{content:"\e182"}.bootstrap-bmlt .glyphicon-phone-alt:before{content:"\e183"}.bootstrap-bmlt .glyphicon-tower:before{content:"\e184"}.bootstrap-bmlt .glyphicon-stats:before{content:"\e185"}.bootstrap-bmlt .glyphicon-sd-video:before{content:"\e186"}.bootstrap-bmlt .glyphicon-hd-video:before{content:"\e187"}.bootstrap-bmlt .glyphicon-subtitles:before{content:"\e188"}.bootstrap-bmlt .glyphicon-sound-stereo:before{content:"\e189"}.bootstrap-bmlt .glyphicon-sound-dolby:before{content:"\e190"}.bootstrap-bmlt .glyphicon-sound-5-1:before{content:"\e191"}.bootstrap-bmlt .glyphicon-sound-6-1:before{content:"\e192"}.bootstrap-bmlt .glyphicon-sound-7-1:before{content:"\e193"}.bootstrap-bmlt .glyphicon-copyright-mark:before{content:"\e194"}.bootstrap-bmlt .glyphicon-registration-mark:before{content:"\e195"}.bootstrap-bmlt .glyphicon-cloud-download:before{content:"\e197"}.bootstrap-bmlt .glyphicon-cloud-upload:before{content:"\e198"}.bootstrap-bmlt .glyphicon-tree-conifer:before{content:"\e199"}.bootstrap-bmlt .glyphicon-tree-deciduous:before{content:"\e200"}.bootstrap-bmlt .glyphicon-cd:before{content:"\e201"}.bootstrap-bmlt .glyphicon-save-file:before{content:"\e202"}.bootstrap-bmlt .glyphicon-open-file:before{content:"\e203"}.bootstrap-bmlt .glyphicon-level-up:before{content:"\e204"}.bootstrap-bmlt .glyphicon-copy:before{content:"\e205"}.bootstrap-bmlt .glyphicon-paste:before{content:"\e206"}.bootstrap-bmlt .glyphicon-alert:before{content:"\e209"}.bootstrap-bmlt .glyphicon-equalizer:before{content:"\e210"}.bootstrap-bmlt .glyphicon-king:before{content:"\e211"}.bootstrap-bmlt .glyphicon-queen:before{content:"\e212"}.bootstrap-bmlt .glyphicon-pawn:before{content:"\e213"}.bootstrap-bmlt .glyphicon-bishop:before{content:"\e214"}.bootstrap-bmlt .glyphicon-knight:before{content:"\e215"}.bootstrap-bmlt .glyphicon-baby-formula:before{content:"\e216"}.bootstrap-bmlt .glyphicon-tent:before{content:"\26fa"}.bootstrap-bmlt .glyphicon-blackboard:before{content:"\e218"}.bootstrap-bmlt .glyphicon-bed:before{content:"\e219"}.bootstrap-bmlt .glyphicon-apple:before{content:"\f8ff"}.bootstrap-bmlt .glyphicon-erase:before{content:"\e221"}.bootstrap-bmlt .glyphicon-hourglass:before{content:"\231b"}.bootstrap-bmlt .glyphicon-lamp:before{content:"\e223"}.bootstrap-bmlt .glyphicon-duplicate:before{content:"\e224"}.bootstrap-bmlt .glyphicon-piggy-bank:before{content:"\e225"}.bootstrap-bmlt .glyphicon-scissors:before{content:"\e226"}.bootstrap-bmlt .glyphicon-bitcoin:before,.bootstrap-bmlt .glyphicon-btc:before,.bootstrap-bmlt .glyphicon-xbt:before{content:"\e227"}.bootstrap-bmlt .glyphicon-jpy:before,.bootstrap-bmlt .glyphicon-yen:before{content:"\00a5"}.bootstrap-bmlt .glyphicon-rub:before,.bootstrap-bmlt .glyphicon-ruble:before{content:"\20bd"}.bootstrap-bmlt .glyphicon-scale:before{content:"\e230"}.bootstrap-bmlt .glyphicon-ice-lolly:before{content:"\e231"}.bootstrap-bmlt .glyphicon-ice-lolly-tasted:before{content:"\e232"}.bootstrap-bmlt .glyphicon-education:before{content:"\e233"}.bootstrap-bmlt .glyphicon-option-horizontal:before{content:"\e234"}.bootstrap-bmlt .glyphicon-option-vertical:before{content:"\e235"}.bootstrap-bmlt .glyphicon-menu-hamburger:before{content:"\e236"}.bootstrap-bmlt .glyphicon-modal-window:before{content:"\e237"}.bootstrap-bmlt .glyphicon-oil:before{content:"\e238"}.bootstrap-bmlt .glyphicon-grain:before{content:"\e239"}.bootstrap-bmlt .glyphicon-sunglasses:before{content:"\e240"}.bootstrap-bmlt .glyphicon-text-size:before{content:"\e241"}.bootstrap-bmlt .glyphicon-text-color:before{content:"\e242"}.bootstrap-bmlt .glyphicon-text-background:before{content:"\e243"}.bootstrap-bmlt .glyphicon-object-align-top:before{content:"\e244"}.bootstrap-bmlt .glyphicon-object-align-bottom:before{content:"\e245"}.bootstrap-bmlt .glyphicon-object-align-horizontal:before{content:"\e246"}.bootstrap-bmlt .glyphicon-object-align-left:before{content:"\e247"}.bootstrap-bmlt .glyphicon-object-align-vertical:before{content:"\e248"}.bootstrap-bmlt .glyphicon-object-align-right:before{content:"\e249"}.bootstrap-bmlt .glyphicon-triangle-right:before{content:"\e250"}.bootstrap-bmlt .glyphicon-triangle-left:before{content:"\e251"}.bootstrap-bmlt .glyphicon-triangle-bottom:before{content:"\e252"}.bootstrap-bmlt .glyphicon-triangle-top:before{content:"\e253"}.bootstrap-bmlt .glyphicon-console:before{content:"\e254"}.bootstrap-bmlt .glyphicon-superscript:before{content:"\e255"}.bootstrap-bmlt .glyphicon-subscript:before{content:"\e256"}.bootstrap-bmlt .glyphicon-menu-left:before{content:"\e257"}.bootstrap-bmlt .glyphicon-menu-right:before{content:"\e258"}.bootstrap-bmlt .glyphicon-menu-down:before{content:"\e259"}.bootstrap-bmlt .glyphicon-menu-up:before{content:"\e260"}.bootstrap-bmlt *,.bootstrap-bmlt :after,.bootstrap-bmlt :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-bmlt html{font-size:10px;-webkit-tap-highlight-color:transparent}.bootstrap-bmlt body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}.bootstrap-bmlt button,.bootstrap-bmlt input,.bootstrap-bmlt select,.bootstrap-bmlt textarea{font-family:inherit;font-size:inherit;line-height:inherit}.bootstrap-bmlt a{color:#337ab7;text-decoration:none}.bootstrap-bmlt a:focus,.bootstrap-bmlt a:hover{color:#23527c;text-decoration:underline}.bootstrap-bmlt a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.bootstrap-bmlt figure{margin:0}.bootstrap-bmlt img{vertical-align:middle}.bootstrap-bmlt .img-responsive{display:block;max-width:100%;height:auto}.bootstrap-bmlt .img-rounded{border-radius:6px}.bootstrap-bmlt .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.bootstrap-bmlt .img-circle{border-radius:50%}.bootstrap-bmlt hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.bootstrap-bmlt .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.bootstrap-bmlt .sr-only-focusable:active,.bootstrap-bmlt .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.bootstrap-bmlt [role=button]{cursor:pointer}.bootstrap-bmlt table{background-color:transparent}.bootstrap-bmlt caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.bootstrap-bmlt th{text-align:left}.bootstrap-bmlt .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap-bmlt .table>tbody>tr>td,.bootstrap-bmlt .table>tbody>tr>th,.bootstrap-bmlt .table>tfoot>tr>td,.bootstrap-bmlt .table>tfoot>tr>th,.bootstrap-bmlt .table>thead>tr>td,.bootstrap-bmlt .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap-bmlt .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap-bmlt .table>caption+thead>tr:first-child>td,.bootstrap-bmlt .table>caption+thead>tr:first-child>th,.bootstrap-bmlt .table>colgroup+thead>tr:first-child>td,.bootstrap-bmlt .table>colgroup+thead>tr:first-child>th,.bootstrap-bmlt .table>thead:first-child>tr:first-child>td,.bootstrap-bmlt .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap-bmlt .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap-bmlt .table .table{background-color:#fff}.bootstrap-bmlt .table-condensed>tbody>tr>td,.bootstrap-bmlt .table-condensed>tbody>tr>th,.bootstrap-bmlt .table-condensed>tfoot>tr>td,.bootstrap-bmlt .table-condensed>tfoot>tr>th,.bootstrap-bmlt .table-condensed>thead>tr>td,.bootstrap-bmlt .table-condensed>thead>tr>th{padding:5px}.bootstrap-bmlt .table-bordered,.bootstrap-bmlt .table-bordered>tbody>tr>td,.bootstrap-bmlt .table-bordered>tbody>tr>th,.bootstrap-bmlt .table-bordered>tfoot>tr>td,.bootstrap-bmlt .table-bordered>tfoot>tr>th,.bootstrap-bmlt .table-bordered>thead>tr>td,.bootstrap-bmlt .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap-bmlt .table-bordered>thead>tr>td,.bootstrap-bmlt .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap-bmlt .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap-bmlt .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap-bmlt table col[class*=col-]{position:static;float:none;display:table-column}.bootstrap-bmlt table td[class*=col-],.bootstrap-bmlt table th[class*=col-]{position:static;float:none;display:table-cell}.bootstrap-bmlt .table>tbody>tr.active>td,.bootstrap-bmlt .table>tbody>tr.active>th,.bootstrap-bmlt .table>tbody>tr>td.active,.bootstrap-bmlt .table>tbody>tr>th.active,.bootstrap-bmlt .table>tfoot>tr.active>td,.bootstrap-bmlt .table>tfoot>tr.active>th,.bootstrap-bmlt .table>tfoot>tr>td.active,.bootstrap-bmlt .table>tfoot>tr>th.active,.bootstrap-bmlt .table>thead>tr.active>td,.bootstrap-bmlt .table>thead>tr.active>th,.bootstrap-bmlt .table>thead>tr>td.active,.bootstrap-bmlt .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap-bmlt .table-hover>tbody>tr.active:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.active:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.active,.bootstrap-bmlt .table-hover>tbody>tr>td.active:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap-bmlt .table>tbody>tr.success>td,.bootstrap-bmlt .table>tbody>tr.success>th,.bootstrap-bmlt .table>tbody>tr>td.success,.bootstrap-bmlt .table>tbody>tr>th.success,.bootstrap-bmlt .table>tfoot>tr.success>td,.bootstrap-bmlt .table>tfoot>tr.success>th,.bootstrap-bmlt .table>tfoot>tr>td.success,.bootstrap-bmlt .table>tfoot>tr>th.success,.bootstrap-bmlt .table>thead>tr.success>td,.bootstrap-bmlt .table>thead>tr.success>th,.bootstrap-bmlt .table>thead>tr>td.success,.bootstrap-bmlt .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap-bmlt .table-hover>tbody>tr.success:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.success:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.success,.bootstrap-bmlt .table-hover>tbody>tr>td.success:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap-bmlt .table>tbody>tr.info>td,.bootstrap-bmlt .table>tbody>tr.info>th,.bootstrap-bmlt .table>tbody>tr>td.info,.bootstrap-bmlt .table>tbody>tr>th.info,.bootstrap-bmlt .table>tfoot>tr.info>td,.bootstrap-bmlt .table>tfoot>tr.info>th,.bootstrap-bmlt .table>tfoot>tr>td.info,.bootstrap-bmlt .table>tfoot>tr>th.info,.bootstrap-bmlt .table>thead>tr.info>td,.bootstrap-bmlt .table>thead>tr.info>th,.bootstrap-bmlt .table>thead>tr>td.info,.bootstrap-bmlt .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap-bmlt .table-hover>tbody>tr.info:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.info:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.info,.bootstrap-bmlt .table-hover>tbody>tr>td.info:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap-bmlt .table>tbody>tr.warning>td,.bootstrap-bmlt .table>tbody>tr.warning>th,.bootstrap-bmlt .table>tbody>tr>td.warning,.bootstrap-bmlt .table>tbody>tr>th.warning,.bootstrap-bmlt .table>tfoot>tr.warning>td,.bootstrap-bmlt .table>tfoot>tr.warning>th,.bootstrap-bmlt .table>tfoot>tr>td.warning,.bootstrap-bmlt .table>tfoot>tr>th.warning,.bootstrap-bmlt .table>thead>tr.warning>td,.bootstrap-bmlt .table>thead>tr.warning>th,.bootstrap-bmlt .table>thead>tr>td.warning,.bootstrap-bmlt .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap-bmlt .table-hover>tbody>tr.warning:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.warning:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.warning,.bootstrap-bmlt .table-hover>tbody>tr>td.warning:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap-bmlt .table>tbody>tr.danger>td,.bootstrap-bmlt .table>tbody>tr.danger>th,.bootstrap-bmlt .table>tbody>tr>td.danger,.bootstrap-bmlt .table>tbody>tr>th.danger,.bootstrap-bmlt .table>tfoot>tr.danger>td,.bootstrap-bmlt .table>tfoot>tr.danger>th,.bootstrap-bmlt .table>tfoot>tr>td.danger,.bootstrap-bmlt .table>tfoot>tr>th.danger,.bootstrap-bmlt .table>thead>tr.danger>td,.bootstrap-bmlt .table>thead>tr.danger>th,.bootstrap-bmlt .table>thead>tr>td.danger,.bootstrap-bmlt .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap-bmlt .table-hover>tbody>tr.danger:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.danger:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.danger,.bootstrap-bmlt .table-hover>tbody>tr>td.danger:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap-bmlt .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.bootstrap-bmlt .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap-bmlt .table-responsive>.table{margin-bottom:0}.bootstrap-bmlt .table-responsive>.table>tbody>tr>td,.bootstrap-bmlt .table-responsive>.table>tbody>tr>th,.bootstrap-bmlt .table-responsive>.table>tfoot>tr>td,.bootstrap-bmlt .table-responsive>.table>tfoot>tr>th,.bootstrap-bmlt .table-responsive>.table>thead>tr>td,.bootstrap-bmlt .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap-bmlt .table-responsive>.table-bordered{border:0}.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap-bmlt .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-bmlt .btn.active.focus,.bootstrap-bmlt .btn.active:focus,.bootstrap-bmlt .btn.focus,.bootstrap-bmlt .btn:active.focus,.bootstrap-bmlt .btn:active:focus,.bootstrap-bmlt .btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.bootstrap-bmlt .btn.focus,.bootstrap-bmlt .btn:focus,.bootstrap-bmlt .btn:hover{color:#333;text-decoration:none}.bootstrap-bmlt .btn.active,.bootstrap-bmlt .btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.bootstrap-bmlt .btn.disabled,.bootstrap-bmlt .btn[disabled],.bootstrap-bmlt fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none}.bootstrap-bmlt a.btn.disabled,.bootstrap-bmlt fieldset[disabled] a.btn{pointer-events:none}.bootstrap-bmlt .btn-default{color:#333;background-color:#fff;border-color:#ccc}.bootstrap-bmlt .btn-default.focus,.bootstrap-bmlt .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.bootstrap-bmlt .btn-default.active,.bootstrap-bmlt .btn-default:active,.bootstrap-bmlt .btn-default:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.bootstrap-bmlt .btn-default.active.focus,.bootstrap-bmlt .btn-default.active:focus,.bootstrap-bmlt .btn-default.active:hover,.bootstrap-bmlt .btn-default:active.focus,.bootstrap-bmlt .btn-default:active:focus,.bootstrap-bmlt .btn-default:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-default.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-default:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.bootstrap-bmlt .btn-default.active,.bootstrap-bmlt .btn-default:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-default{background-image:none}.bootstrap-bmlt .btn-default.disabled,.bootstrap-bmlt .btn-default.disabled.active,.bootstrap-bmlt .btn-default.disabled.focus,.bootstrap-bmlt .btn-default.disabled:active,.bootstrap-bmlt .btn-default.disabled:focus,.bootstrap-bmlt .btn-default.disabled:hover,.bootstrap-bmlt .btn-default[disabled],.bootstrap-bmlt .btn-default[disabled].active,.bootstrap-bmlt .btn-default[disabled].focus,.bootstrap-bmlt .btn-default[disabled]:active,.bootstrap-bmlt .btn-default[disabled]:focus,.bootstrap-bmlt .btn-default[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-default,.bootstrap-bmlt fieldset[disabled] .btn-default.active,.bootstrap-bmlt fieldset[disabled] .btn-default.focus,.bootstrap-bmlt fieldset[disabled] .btn-default:active,.bootstrap-bmlt fieldset[disabled] .btn-default:focus,.bootstrap-bmlt fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.bootstrap-bmlt .btn-default .badge{color:#fff;background-color:#333}.bootstrap-bmlt .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.bootstrap-bmlt .btn-primary.focus,.bootstrap-bmlt .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.bootstrap-bmlt .btn-primary.active,.bootstrap-bmlt .btn-primary:active,.bootstrap-bmlt .btn-primary:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.bootstrap-bmlt .btn-primary.active.focus,.bootstrap-bmlt .btn-primary.active:focus,.bootstrap-bmlt .btn-primary.active:hover,.bootstrap-bmlt .btn-primary:active.focus,.bootstrap-bmlt .btn-primary:active:focus,.bootstrap-bmlt .btn-primary:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.bootstrap-bmlt .btn-primary.active,.bootstrap-bmlt .btn-primary:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary{background-image:none}.bootstrap-bmlt .btn-primary.disabled,.bootstrap-bmlt .btn-primary.disabled.active,.bootstrap-bmlt .btn-primary.disabled.focus,.bootstrap-bmlt .btn-primary.disabled:active,.bootstrap-bmlt .btn-primary.disabled:focus,.bootstrap-bmlt .btn-primary.disabled:hover,.bootstrap-bmlt .btn-primary[disabled],.bootstrap-bmlt .btn-primary[disabled].active,.bootstrap-bmlt .btn-primary[disabled].focus,.bootstrap-bmlt .btn-primary[disabled]:active,.bootstrap-bmlt .btn-primary[disabled]:focus,.bootstrap-bmlt .btn-primary[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-primary,.bootstrap-bmlt fieldset[disabled] .btn-primary.active,.bootstrap-bmlt fieldset[disabled] .btn-primary.focus,.bootstrap-bmlt fieldset[disabled] .btn-primary:active,.bootstrap-bmlt fieldset[disabled] .btn-primary:focus,.bootstrap-bmlt fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.bootstrap-bmlt .btn-primary .badge{color:#337ab7;background-color:#fff}.bootstrap-bmlt .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.bootstrap-bmlt .btn-success.focus,.bootstrap-bmlt .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.bootstrap-bmlt .btn-success.active,.bootstrap-bmlt .btn-success:active,.bootstrap-bmlt .btn-success:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.bootstrap-bmlt .btn-success.active.focus,.bootstrap-bmlt .btn-success.active:focus,.bootstrap-bmlt .btn-success.active:hover,.bootstrap-bmlt .btn-success:active.focus,.bootstrap-bmlt .btn-success:active:focus,.bootstrap-bmlt .btn-success:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-success.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-success:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.bootstrap-bmlt .btn-success.active,.bootstrap-bmlt .btn-success:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-success{background-image:none}.bootstrap-bmlt .btn-success.disabled,.bootstrap-bmlt .btn-success.disabled.active,.bootstrap-bmlt .btn-success.disabled.focus,.bootstrap-bmlt .btn-success.disabled:active,.bootstrap-bmlt .btn-success.disabled:focus,.bootstrap-bmlt .btn-success.disabled:hover,.bootstrap-bmlt .btn-success[disabled],.bootstrap-bmlt .btn-success[disabled].active,.bootstrap-bmlt .btn-success[disabled].focus,.bootstrap-bmlt .btn-success[disabled]:active,.bootstrap-bmlt .btn-success[disabled]:focus,.bootstrap-bmlt .btn-success[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-success,.bootstrap-bmlt fieldset[disabled] .btn-success.active,.bootstrap-bmlt fieldset[disabled] .btn-success.focus,.bootstrap-bmlt fieldset[disabled] .btn-success:active,.bootstrap-bmlt fieldset[disabled] .btn-success:focus,.bootstrap-bmlt fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.bootstrap-bmlt .btn-success .badge{color:#5cb85c;background-color:#fff}.bootstrap-bmlt .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.bootstrap-bmlt .btn-info.focus,.bootstrap-bmlt .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.bootstrap-bmlt .btn-info.active,.bootstrap-bmlt .btn-info:active,.bootstrap-bmlt .btn-info:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.bootstrap-bmlt .btn-info.active.focus,.bootstrap-bmlt .btn-info.active:focus,.bootstrap-bmlt .btn-info.active:hover,.bootstrap-bmlt .btn-info:active.focus,.bootstrap-bmlt .btn-info:active:focus,.bootstrap-bmlt .btn-info:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-info.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-info:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.bootstrap-bmlt .btn-info.active,.bootstrap-bmlt .btn-info:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-info{background-image:none}.bootstrap-bmlt .btn-info.disabled,.bootstrap-bmlt .btn-info.disabled.active,.bootstrap-bmlt .btn-info.disabled.focus,.bootstrap-bmlt .btn-info.disabled:active,.bootstrap-bmlt .btn-info.disabled:focus,.bootstrap-bmlt .btn-info.disabled:hover,.bootstrap-bmlt .btn-info[disabled],.bootstrap-bmlt .btn-info[disabled].active,.bootstrap-bmlt .btn-info[disabled].focus,.bootstrap-bmlt .btn-info[disabled]:active,.bootstrap-bmlt .btn-info[disabled]:focus,.bootstrap-bmlt .btn-info[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-info,.bootstrap-bmlt fieldset[disabled] .btn-info.active,.bootstrap-bmlt fieldset[disabled] .btn-info.focus,.bootstrap-bmlt fieldset[disabled] .btn-info:active,.bootstrap-bmlt fieldset[disabled] .btn-info:focus,.bootstrap-bmlt fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.bootstrap-bmlt .btn-info .badge{color:#5bc0de;background-color:#fff}.bootstrap-bmlt .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.bootstrap-bmlt .btn-warning.focus,.bootstrap-bmlt .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.bootstrap-bmlt .btn-warning.active,.bootstrap-bmlt .btn-warning:active,.bootstrap-bmlt .btn-warning:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.bootstrap-bmlt .btn-warning.active.focus,.bootstrap-bmlt .btn-warning.active:focus,.bootstrap-bmlt .btn-warning.active:hover,.bootstrap-bmlt .btn-warning:active.focus,.bootstrap-bmlt .btn-warning:active:focus,.bootstrap-bmlt .btn-warning:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.bootstrap-bmlt .btn-warning.active,.bootstrap-bmlt .btn-warning:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning{background-image:none}.bootstrap-bmlt .btn-warning.disabled,.bootstrap-bmlt .btn-warning.disabled.active,.bootstrap-bmlt .btn-warning.disabled.focus,.bootstrap-bmlt .btn-warning.disabled:active,.bootstrap-bmlt .btn-warning.disabled:focus,.bootstrap-bmlt .btn-warning.disabled:hover,.bootstrap-bmlt .btn-warning[disabled],.bootstrap-bmlt .btn-warning[disabled].active,.bootstrap-bmlt .btn-warning[disabled].focus,.bootstrap-bmlt .btn-warning[disabled]:active,.bootstrap-bmlt .btn-warning[disabled]:focus,.bootstrap-bmlt .btn-warning[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-warning,.bootstrap-bmlt fieldset[disabled] .btn-warning.active,.bootstrap-bmlt fieldset[disabled] .btn-warning.focus,.bootstrap-bmlt fieldset[disabled] .btn-warning:active,.bootstrap-bmlt fieldset[disabled] .btn-warning:focus,.bootstrap-bmlt fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.bootstrap-bmlt .btn-warning .badge{color:#f0ad4e;background-color:#fff}.bootstrap-bmlt .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.bootstrap-bmlt .btn-danger.focus,.bootstrap-bmlt .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.bootstrap-bmlt .btn-danger.active,.bootstrap-bmlt .btn-danger:active,.bootstrap-bmlt .btn-danger:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.bootstrap-bmlt .btn-danger.active.focus,.bootstrap-bmlt .btn-danger.active:focus,.bootstrap-bmlt .btn-danger.active:hover,.bootstrap-bmlt .btn-danger:active.focus,.bootstrap-bmlt .btn-danger:active:focus,.bootstrap-bmlt .btn-danger:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.bootstrap-bmlt .btn-danger.active,.bootstrap-bmlt .btn-danger:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger{background-image:none}.bootstrap-bmlt .btn-danger.disabled,.bootstrap-bmlt .btn-danger.disabled.active,.bootstrap-bmlt .btn-danger.disabled.focus,.bootstrap-bmlt .btn-danger.disabled:active,.bootstrap-bmlt .btn-danger.disabled:focus,.bootstrap-bmlt .btn-danger.disabled:hover,.bootstrap-bmlt .btn-danger[disabled],.bootstrap-bmlt .btn-danger[disabled].active,.bootstrap-bmlt .btn-danger[disabled].focus,.bootstrap-bmlt .btn-danger[disabled]:active,.bootstrap-bmlt .btn-danger[disabled]:focus,.bootstrap-bmlt .btn-danger[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-danger,.bootstrap-bmlt fieldset[disabled] .btn-danger.active,.bootstrap-bmlt fieldset[disabled] .btn-danger.focus,.bootstrap-bmlt fieldset[disabled] .btn-danger:active,.bootstrap-bmlt fieldset[disabled] .btn-danger:focus,.bootstrap-bmlt fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.bootstrap-bmlt .btn-danger .badge{color:#d9534f;background-color:#fff}.bootstrap-bmlt .btn-link{color:#337ab7;font-weight:400;border-radius:0}.bootstrap-bmlt .btn-link,.bootstrap-bmlt .btn-link.active,.bootstrap-bmlt .btn-link:active,.bootstrap-bmlt .btn-link[disabled],.bootstrap-bmlt fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.bootstrap-bmlt .btn-link,.bootstrap-bmlt .btn-link:active,.bootstrap-bmlt .btn-link:focus,.bootstrap-bmlt .btn-link:hover{border-color:transparent}.bootstrap-bmlt .btn-link:focus,.bootstrap-bmlt .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.bootstrap-bmlt .btn-link[disabled]:focus,.bootstrap-bmlt .btn-link[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-link:focus,.bootstrap-bmlt fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.bootstrap-bmlt .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.bootstrap-bmlt .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.bootstrap-bmlt .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.bootstrap-bmlt .btn-block{display:block;width:100%}.bootstrap-bmlt .btn-block+.btn-block{margin-top:5px}.bootstrap-bmlt input[type=button].btn-block,.bootstrap-bmlt input[type=reset].btn-block,.bootstrap-bmlt input[type=submit].btn-block{width:100%}.bootstrap-bmlt .nav{margin-bottom:0;padding-left:0;list-style:none}.bootstrap-bmlt .nav>li{position:relative;display:block}.bootstrap-bmlt .nav>li>a{position:relative;display:block;padding:10px 15px}.bootstrap-bmlt .nav>li>a:focus,.bootstrap-bmlt .nav>li>a:hover{text-decoration:none;background-color:#eee}.bootstrap-bmlt .nav>li.disabled>a{color:#777}.bootstrap-bmlt .nav>li.disabled>a:focus,.bootstrap-bmlt .nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.bootstrap-bmlt .nav .open>a,.bootstrap-bmlt .nav .open>a:focus,.bootstrap-bmlt .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.bootstrap-bmlt .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.bootstrap-bmlt .nav>li>a>img{max-width:none}.bootstrap-bmlt .nav-tabs{border-bottom:1px solid #ddd}.bootstrap-bmlt .nav-tabs>li{float:left;margin-bottom:-1px}.bootstrap-bmlt .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.bootstrap-bmlt .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.bootstrap-bmlt .nav-tabs>li.active>a,.bootstrap-bmlt .nav-tabs>li.active>a:focus,.bootstrap-bmlt .nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.bootstrap-bmlt .nav-tabs.nav-justified{width:100%;border-bottom:0}.bootstrap-bmlt .nav-tabs.nav-justified>li{float:none}.bootstrap-bmlt .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.bootstrap-bmlt .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.bootstrap-bmlt .nav-tabs.nav-justified>li{display:table-cell;width:1%}.bootstrap-bmlt .nav-tabs.nav-justified>li>a{margin-bottom:0}}.bootstrap-bmlt .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.bootstrap-bmlt .nav-tabs.nav-justified>.active>a,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.bootstrap-bmlt .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.bootstrap-bmlt .nav-tabs.nav-justified>.active>a,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.bootstrap-bmlt .nav-pills>li{float:left}.bootstrap-bmlt .nav-pills>li>a{border-radius:4px}.bootstrap-bmlt .nav-pills>li+li{margin-left:2px}.bootstrap-bmlt .nav-pills>li.active>a,.bootstrap-bmlt .nav-pills>li.active>a:focus,.bootstrap-bmlt .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.bootstrap-bmlt .nav-stacked>li{float:none}.bootstrap-bmlt .nav-stacked>li+li{margin-top:2px;margin-left:0}.bootstrap-bmlt .nav-justified{width:100%}.bootstrap-bmlt .nav-justified>li{float:none}.bootstrap-bmlt .nav-justified>li>a{text-align:center;margin-bottom:5px}.bootstrap-bmlt .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.bootstrap-bmlt .nav-justified>li{display:table-cell;width:1%}.bootstrap-bmlt .nav-justified>li>a{margin-bottom:0}}.bootstrap-bmlt .nav-tabs-justified{border-bottom:0}.bootstrap-bmlt .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.bootstrap-bmlt .nav-tabs-justified>.active>a,.bootstrap-bmlt .nav-tabs-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.bootstrap-bmlt .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.bootstrap-bmlt .nav-tabs-justified>.active>a,.bootstrap-bmlt .nav-tabs-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.bootstrap-bmlt .tab-content>.tab-pane{display:none}.bootstrap-bmlt .tab-content>.active{display:block}.bootstrap-bmlt .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.bootstrap-bmlt .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0}.bootstrap-bmlt .tooltip.in{opacity:.9}.bootstrap-bmlt .tooltip.top{margin-top:-3px;padding:5px 0}.bootstrap-bmlt .tooltip.right{margin-left:3px;padding:0 5px}.bootstrap-bmlt .tooltip.bottom{margin-top:3px;padding:5px 0}.bootstrap-bmlt .tooltip.left{margin-left:-3px;padding:0 5px}.bootstrap-bmlt .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.bootstrap-bmlt .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.bootstrap-bmlt .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.bootstrap-bmlt .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.bootstrap-bmlt .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.bootstrap-bmlt .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.bootstrap-bmlt .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.bootstrap-bmlt .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.bootstrap-bmlt .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.bootstrap-bmlt .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.bootstrap-bmlt .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.bootstrap-bmlt .popover.top{margin-top:-10px}.bootstrap-bmlt .popover.right{margin-left:10px}.bootstrap-bmlt .popover.bottom{margin-top:10px}.bootstrap-bmlt .popover.left{margin-left:-10px}.bootstrap-bmlt .popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.bootstrap-bmlt .popover-content{padding:9px 14px}.bootstrap-bmlt .popover>.arrow,.bootstrap-bmlt .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.bootstrap-bmlt .popover>.arrow{border-width:11px}.bootstrap-bmlt .popover>.arrow:after{border-width:10px;content:""}.bootstrap-bmlt .popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.bootstrap-bmlt .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.bootstrap-bmlt .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.bootstrap-bmlt .popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.bootstrap-bmlt .popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.bootstrap-bmlt .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.bootstrap-bmlt .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.bootstrap-bmlt .popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.bootstrap-bmlt .clearfix:after,.bootstrap-bmlt .clearfix:before,.bootstrap-bmlt .nav:after,.bootstrap-bmlt .nav:before{content:" ";display:table}.bootstrap-bmlt .clearfix:after,.bootstrap-bmlt .nav:after{clear:both}.bootstrap-bmlt .center-block{display:block;margin-left:auto;margin-right:auto}.bootstrap-bmlt .pull-right{float:right!important}.bootstrap-bmlt .pull-left{float:left!important}.bootstrap-bmlt .hide{display:none!important}.bootstrap-bmlt .show{display:block!important}.bootstrap-bmlt .invisible{visibility:hidden}.bootstrap-bmlt .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.bootstrap-bmlt .hidden{display:none!important}.bootstrap-bmlt .affix{position:fixed}@-ms-viewport{width:device-width}.bootstrap-bmlt .visible-lg,.bootstrap-bmlt .visible-lg-block,.bootstrap-bmlt .visible-lg-inline,.bootstrap-bmlt .visible-lg-inline-block,.bootstrap-bmlt .visible-md,.bootstrap-bmlt .visible-md-block,.bootstrap-bmlt .visible-md-inline,.bootstrap-bmlt .visible-md-inline-block,.bootstrap-bmlt .visible-print,.bootstrap-bmlt .visible-print-block,.bootstrap-bmlt .visible-print-inline,.bootstrap-bmlt .visible-print-inline-block,.bootstrap-bmlt .visible-sm,.bootstrap-bmlt .visible-sm-block,.bootstrap-bmlt .visible-sm-inline,.bootstrap-bmlt .visible-sm-inline-block,.bootstrap-bmlt .visible-xs,.bootstrap-bmlt .visible-xs-block,.bootstrap-bmlt .visible-xs-inline,.bootstrap-bmlt .visible-xs-inline-block{display:none!important}@media (max-width:767px){.bootstrap-bmlt .visible-xs{display:block!important}.bootstrap-bmlt table.visible-xs{display:table!important}.bootstrap-bmlt tr.visible-xs{display:table-row!important}.bootstrap-bmlt td.visible-xs,.bootstrap-bmlt th.visible-xs{display:table-cell!important}}@media (max-width:767px){.bootstrap-bmlt .visible-xs-block{display:block!important}}@media (max-width:767px){.bootstrap-bmlt .visible-xs-inline{display:inline!important}}@media (max-width:767px){.bootstrap-bmlt .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm{display:block!important}.bootstrap-bmlt table.visible-sm{display:table!important}.bootstrap-bmlt tr.visible-sm{display:table-row!important}.bootstrap-bmlt td.visible-sm,.bootstrap-bmlt th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md{display:block!important}.bootstrap-bmlt table.visible-md{display:table!important}.bootstrap-bmlt tr.visible-md{display:table-row!important}.bootstrap-bmlt td.visible-md,.bootstrap-bmlt th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg{display:block!important}.bootstrap-bmlt table.visible-lg{display:table!important}.bootstrap-bmlt tr.visible-lg{display:table-row!important}.bootstrap-bmlt td.visible-lg,.bootstrap-bmlt th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg-block{display:block!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg-inline{display:inline!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.bootstrap-bmlt .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .hidden-md{display:none!important}}@media (min-width:1200px){.bootstrap-bmlt .hidden-lg{display:none!important}}@media print{.bootstrap-bmlt .visible-print{display:block!important}.bootstrap-bmlt table.visible-print{display:table!important}.bootstrap-bmlt tr.visible-print{display:table-row!important}.bootstrap-bmlt td.visible-print,.bootstrap-bmlt th.visible-print{display:table-cell!important}}@media print{.bootstrap-bmlt .visible-print-block{display:block!important}}@media print{.bootstrap-bmlt .visible-print-inline{display:inline!important}}@media print{.bootstrap-bmlt .visible-print-inline-block{display:inline-block!important}}@media print{.bootstrap-bmlt .hidden-print{display:none!important}}#please-wait{position:absolute;top:50%;left:50%;width:auto;height:auto;margin-top:-50px;margin-left:-50px}span.bmlt_tabs_meeting_count{font-size:18px;padding:0 10px 15px 0;display:inline-block}span.bmlt_tabs_group_count{font-size:18px;padding:0 10px 15px;display:inline-block}#bmlt-tabs #days{padding:4px}#bmlt-tabs #nav-days{padding:4px 4px 0}#bmlt-tabs #tabs-content{padding:1px 4px 4px}#bmlt-tabs #cities{padding:4px}#bmlt-tabs .glyphicon{top:2px}#bmlt-tabs .glyphicon-map-marker:before{content:"\e062";margin-right:3px}#bmlt-tabs .glyphicon-search:before{margin-right:5px}#bmlt-tabs .select2-container .select2-choice,#bmlt-tabs .select2-result-label{height:20px}#bmlt-tabs{font-size:14px;color:#5b5b5b;font-family:Arial,Helvetica,sans-serif;text-align:left;font-style:normal}#bmlt-tabs span.select2.select2-container.select2-container--default{height:30px}#bmlt-tabs .bmlt-dropdown-container{display:inline;position:relative;margin-left:4px;top:1px!important}.bmlt-drop{width:300px!important}#bmlt-tabs tr:nth-child(even){background:#f2f2f2}#bmlt-tabs tr:nth-child(odd){background:#fff}#bmlt-tabs #byday .evenRow{background:#f2f2f2}#bmlt-tabs #byday .oddRow{background:#fff}#bmlt-tabs td{padding:.8em}#bmlt-tabs ul{padding:0;margin:0;line-height:26px;list-style-type:none}.bootstrap-bmlt .nav-tabs>li{padding:0;margin:0}#bmlt-tabs .bmlt-column1{text-align:left;width:20%;overflow:hidden;word-break:break-all;vertical-align:top}#bmlt-tabs .bmlt-column2{text-align:left;width:auto;vertical-align:top}#bmlt-tabs .bmlt-column3{text-align:center!important;vertical-align:middle!important;width:30%;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none}#bmlt-tabs .virtual .bmlt-column1{text-align:left;width:20%;word-break:break-all;vertical-align:top}#bmlt-tabs .virtual .bmlt-column2{text-align:left;width:50%;vertical-align:top}#bmlt-tabs .virtual .bmlt-column3{text-align:center!important;vertical-align:middle!important;width:30%}#bmlt-tabs .nav-tabs>li.active>a,#bmlt-tabs .nav-tabs>li.active>a:focus,#bmlt-tabs .nav-tabs>li.active>a:hover{color:#fff;background-color:#db4865;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}#bmlt-tabs .nav-tabs>li>a{color:#000;background-color:#93c3cd;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}#bmlt-tabs .nav-tabs>li>a:hover{color:#fff}#bmlt-tabs a#map-button,#bmlt-tabs a#share-button{margin-bottom:4px}#bmlt-tabs a#bmlt-formats{margin:4px 0}#bmlt-formats.btn-xs,#map-button.btn-xs,#share-button.btn-xs{padding:3px 5px;font-size:10px;background-color:#93c3cd;color:#35414f;border-color:#c5c5c5}#bmlt-formats.btn-xs:hover,#map-button.btn-xs:hover,#share-button.btn-xs:hover{background-color:#f1f1f1}#bmlt-tabs .filterButton.btn.btn-primary.btn-sm:hover{border-color:#fff}#bmlt-tabs #day.btn.btn-primary.btn-sm:hover{border-color:#fff}#bmlt-tabs .bmlt-comments{word-wrap:normal;word-break:break-word}#bmlt-tabs .nav>li>a{padding:4px 10px;font-style:normal}#bmlt-tabs .bmlt-day,#bmlt-tabs .bmlt-time-2,#bmlt-tabs .meeting-name{font-weight:700;font-size:14px;color:rgba(0,0,0,.67)}#bmlt-tabs .bmlt-button-container{display:inline;position:relative}#bmlt-tabs #day.btn.btn-primary.btn-sm.buttonHighlight{background-color:#db4865;color:#fff}#bmlt-tabs #day.btn.btn-primary.btn-sm.buttonLowlight{background-color:#93c3cd;color:#000}#bmlt-tabs .filterButton.btn.btn-primary.btn-sm.buttonHighlight{background-color:#db4865;color:#fff}#bmlt-tabs .filterButton.btn.btn-primary.btn-sm.buttonLowlight{background-color:#93c3cd;color:#000}#bmlt-tabs #day{color:#fff;background-color:#db4865}#bmlt-tabs .filterButton{color:#000;background-color:#93c3cd;margin-left:2px}#bmlt-tabs .rowHighlight{background-color:#db4865;color:#000}#bmlt-tabs .bmlt-header{padding:4px 0 0 4px;background-color:#35414f}#bmlt-tabs .bmlt-page{background-color:#35414f;padding:4px}#bmlt-tabs .tab-content{background-color:#35414f}#bmlt-tabs .nav-tabs{border-bottom:0}#bmlt-tabs .popover{max-width:800px}#bmlt-tabs #day.btn-sm,#bmlt-tabs .filterButton.btn-sm{padding:2px 10px;font-size:inherit;line-height:1.6}#bmlt-tabs #day{margin-right:2px}#bmlt-tabs .bmlt_tabs_title{font-size:24px;margin-bottom:10px;font-weight:400;color:#000}#bmlt-tabs .bmlt_tabs_sub_title{font-size:22px;margin-bottom:15px;font-weight:400;color:#666}#bmlt-tabs table{margin:0;border:0;table-layout:auto;width:100%}#bmlt-tabs #cities table.bmlt-table{background-color:#fff;margin:0;border:0}#bmlt-tabs tr.meeting-header td{padding:.5em .8em!important;color:rgba(0,0,0,.67);background-color:#93c3cd;font-size:15px;text-transform:uppercase;font-weight:600;border-top:0}@media (max-width:39.9375em){#bmlt-tabs .bmlt-header{display:block!important}#bmlt-tabs #day.btn-sm,#bmlt-tabs .filterButton.btn-sm{margin-bottom:4px}#bmlt-tabs .bmlt-dropdown-container{display:block;margin-left:0;margin-right:4px}#bmlt-tabs span.select2.select2-container{width:100%!important}#bmlt-tabs a#bmlt-formats,#bmlt-tabs a#map-button{border-radius:0}#bmlt-tabs a#bmlt-formats,#bmlt-tabs a#share-button{border-radius:0}#bmlt-tabs .nav-tabs>li>a{border-radius:0!important;margin-right:0!important}#bmlt-tabs .nav-tabs>li{float:none;border:1px solid #ddd}#bmlt-tabs .nav-tabs>li.active>a{border:none}#bmlt-tabs .nav-tabs>li.active>a,#bmlt-tabs .nav-tabs>li.active>a:focus,#bmlt-tabs .nav-tabs>li.active>a:hover,#bmlt-tabs .nav>li>a:focus,#bmlt-tabs .nav>li>a:hover{background:0 0;border:none}#bmlt-tabs .bmlt-column1{text-align:left;width:100%;vertical-align:top;border:0;padding-bottom:0;height:auto}#bmlt-tabs .bmlt-column2{text-align:left;width:100%;vertical-align:top;border:0;padding-bottom:0;height:auto}#bmlt-tabs .bmlt-column3{text-align:left!important;vertical-align:top!important;width:100%;border:0;height:auto}#bmlt-formats.btn-xs,#map-button.btn-xs,#share-button.btn-xs{padding:2px 7px!important;font-size:12px!important}#map-button.btn-xs,#share-button.btn-xs{display:-webkit-inline-box}#bmlt-tabs a#bmlt-formats{margin-top:10px}#bmlt-tabs .geo.show{display:-webkit-inline-box!important;margin-left:10px}#bmlt-tabs td.formats_description{display:none!important}}/*! Tablesaw - v2.0.2 - 2015-10-28* https://github.com/filamentgroup/tablesaw* Copyright (c) 2015 Filament Group; Licensed */table.tablesaw{empty-cells:show;max-width:100%;width:100%}.tablesaw{border-collapse:collapse;width:100%}.tablesaw{border:0;padding:0}.tablesaw td,.tablesaw th{box-sizing:border-box;padding:.5em .7em}.tablesaw thead tr:first-child th{padding-top:.9em;padding-bottom:.7em}.tablesaw-stack tbody tr{border-bottom:1px solid #dfdfdf}.tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label{display:none}.bmlt-map{height:400px}#byfield_embeddedMapPage{height:400px}.bmlt-observer{font-size:14px;font-weight:700;font-style:italic}.observerLine{margin-top:10px}@media only all{.tablesaw-stack td,.tablesaw-stack th{text-align:left;display:block}.tablesaw-stack tr{clear:both;display:table-row}.tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label{display:block;padding:0 .6em 0 0;width:30%;display:inline-block}.tablesaw-stack td .tablesaw-cell-label-top,.tablesaw-stack th .tablesaw-cell-label-top{display:block;padding:.4em 0;margin:.4em 0}.tablesaw-cell-label{display:block}.tablesaw-stack tbody th.group{margin-top:-1px}.tablesaw-stack th.group b.tablesaw-cell-label{display:none!important}}@media (max-width:39.9375em){.tablesaw-stack thead td,.tablesaw-stack thead th{display:none}.tablesaw-stack tbody td,.tablesaw-stack tbody th{clear:left;float:left;width:100%}.tablesaw-cell-label{vertical-align:top}.tablesaw-cell-content{max-width:67%;display:inline-block}.tablesaw-stack td:empty,.tablesaw-stack th:empty{display:none}th#meeting-details-title{display:table-cell;text-wrap:balance}}@media (min-width:40em){.tablesaw-stack tr{display:table-row}.tablesaw-stack td,.tablesaw-stack th,.tablesaw-stack thead td,.tablesaw-stack thead th{display:table-cell;margin:0}.tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label{display:none!important}#meetingpage_map_td{width:25em}}.mapcontrolslabel{font-size:12px;cursor:pointer;margin:5px;text-align:left;display:block}.mapcontrolcontainer{background-color:#fff;border:2px solid #fff;cursor:pointer;margin-top:10px;margin-left:10px}.mapcontrols{color:#191919;font-family:Roboto,Arial,sans-serif;font-size:12px}.temporarilyClosed{font-size:16px;text-transform:uppercase;font-weight:700}.qrcode{text-align:center;display:inline-block}.meetsVirtually{font-size:16px;text-transform:uppercase;font-weight:700}.meeting-additional-info{font-weight:700;font-size:14px}.gm-svpc div img{position:relative!important}#meeting-details-table td{vertical-align:top}#meeting-details-table h4{margin-top:0}#meeting-details-title{font-size:1.5em}.bmlt-rtl{direction:rtl}#bmlt-header.bmlt-rtl{text-align:right}#nav-days.bmlt-rtl{float:right}#nav-days.bmlt-rtl li{float:right}#bmlt-tabs .bmlt-rtl .bmlt-column1{text-align:right}#bmlt-tabs .bmlt-rtl .bmlt-column2{text-align:right}.bmlt-rtl .marker_div_meeting{text-align:right!important}.bmlt-rtl #meeting-details-title{text-align:right}.bmlt-rtl #meeting-details-contents td{text-align:right!important}
12
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */}.bootstrap-bmlt html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.bootstrap-bmlt body{margin:0}.bootstrap-bmlt article,.bootstrap-bmlt aside,.bootstrap-bmlt details,.bootstrap-bmlt figcaption,.bootstrap-bmlt figure,.bootstrap-bmlt footer,.bootstrap-bmlt header,.bootstrap-bmlt hgroup,.bootstrap-bmlt main,.bootstrap-bmlt menu,.bootstrap-bmlt nav,.bootstrap-bmlt section,.bootstrap-bmlt summary{display:block}.bootstrap-bmlt audio,.bootstrap-bmlt canvas,.bootstrap-bmlt progress,.bootstrap-bmlt video{display:inline-block;vertical-align:baseline}.bootstrap-bmlt audio:not([controls]){display:none;height:0}.bootstrap-bmlt [hidden],.bootstrap-bmlt template{display:none}.bootstrap-bmlt a{background-color:transparent}.bootstrap-bmlt a:active,.bootstrap-bmlt a:hover{outline:0}.bootstrap-bmlt abbr[title]{border-bottom:1px dotted}.bootstrap-bmlt b,.bootstrap-bmlt strong{font-weight:700}.bootstrap-bmlt dfn{font-style:italic}.bootstrap-bmlt h1{font-size:2em;margin:.67em 0}.bootstrap-bmlt mark{background:#ff0;color:#000}.bootstrap-bmlt small{font-size:80%}.bootstrap-bmlt sub,.bootstrap-bmlt sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.bootstrap-bmlt sup{top:-.5em}.bootstrap-bmlt sub{bottom:-.25em}.bootstrap-bmlt img{border:0}.bootstrap-bmlt svg:not(:root){overflow:hidden}.bootstrap-bmlt hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.bootstrap-bmlt pre{overflow:auto}.bootstrap-bmlt code,.bootstrap-bmlt kbd,.bootstrap-bmlt pre,.bootstrap-bmlt samp{font-family:monospace,monospace;font-size:1em}.bootstrap-bmlt button,.bootstrap-bmlt input,.bootstrap-bmlt optgroup,.bootstrap-bmlt select,.bootstrap-bmlt textarea{color:inherit;font:inherit;margin:0}.bootstrap-bmlt button{overflow:visible}.bootstrap-bmlt button,.bootstrap-bmlt select{text-transform:none}.bootstrap-bmlt button,.bootstrap-bmlt html input[type=button],.bootstrap-bmlt input[type=reset],.bootstrap-bmlt input[type=submit]{-webkit-appearance:button;cursor:pointer}.bootstrap-bmlt button[disabled],.bootstrap-bmlt html input[disabled]{cursor:default}.bootstrap-bmlt button::-moz-focus-inner,.bootstrap-bmlt input::-moz-focus-inner{border:0;padding:0}.bootstrap-bmlt input[type=checkbox],.bootstrap-bmlt input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.bootstrap-bmlt input[type=number]::-webkit-inner-spin-button,.bootstrap-bmlt input[type=number]::-webkit-outer-spin-button{height:auto}.bootstrap-bmlt input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.bootstrap-bmlt input[type=search]::-webkit-search-cancel-button,.bootstrap-bmlt input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.bootstrap-bmlt fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.bootstrap-bmlt legend{border:0;padding:0}.bootstrap-bmlt textarea{overflow:auto}.bootstrap-bmlt optgroup{font-weight:700}.bootstrap-bmlt table{border-collapse:collapse;border-spacing:0}.bootstrap-bmlt td,.bootstrap-bmlt th{padding:0}@font-face{font-family:'Glyphicons Halflings';src:url(fonts/glyphicons-halflings-regular.eot);src:url(fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(fonts/glyphicons-halflings-regular.woff) format('woff'),url(fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.bootstrap-bmlt .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.bootstrap-bmlt .glyphicon-asterisk:before{content:"\2a"}.bootstrap-bmlt .glyphicon-plus:before{content:"\2b"}.bootstrap-bmlt .glyphicon-eur:before,.bootstrap-bmlt .glyphicon-euro:before{content:"\20ac"}.bootstrap-bmlt .glyphicon-minus:before{content:"\2212"}.bootstrap-bmlt .glyphicon-cloud:before{content:"\2601"}.bootstrap-bmlt .glyphicon-envelope:before{content:"\2709"}.bootstrap-bmlt .glyphicon-pencil:before{content:"\270f"}.bootstrap-bmlt .glyphicon-glass:before{content:"\e001"}.bootstrap-bmlt .glyphicon-music:before{content:"\e002"}.bootstrap-bmlt .glyphicon-search:before{content:"\e003"}.bootstrap-bmlt .glyphicon-heart:before{content:"\e005"}.bootstrap-bmlt .glyphicon-star:before{content:"\e006"}.bootstrap-bmlt .glyphicon-star-empty:before{content:"\e007"}.bootstrap-bmlt .glyphicon-user:before{content:"\e008"}.bootstrap-bmlt .glyphicon-film:before{content:"\e009"}.bootstrap-bmlt .glyphicon-th-large:before{content:"\e010"}.bootstrap-bmlt .glyphicon-th:before{content:"\e011"}.bootstrap-bmlt .glyphicon-th-list:before{content:"\e012"}.bootstrap-bmlt .glyphicon-ok:before{content:"\e013"}.bootstrap-bmlt .glyphicon-remove:before{content:"\e014"}.bootstrap-bmlt .glyphicon-zoom-in:before{content:"\e015"}.bootstrap-bmlt .glyphicon-zoom-out:before{content:"\e016"}.bootstrap-bmlt .glyphicon-off:before{content:"\e017"}.bootstrap-bmlt .glyphicon-signal:before{content:"\e018"}.bootstrap-bmlt .glyphicon-cog:before{content:"\e019"}.bootstrap-bmlt .glyphicon-trash:before{content:"\e020"}.bootstrap-bmlt .glyphicon-home:before{content:"\e021"}.bootstrap-bmlt .glyphicon-file:before{content:"\e022"}.bootstrap-bmlt .glyphicon-time:before{content:"\e023"}.bootstrap-bmlt .glyphicon-road:before{content:"\e024"}.bootstrap-bmlt .glyphicon-download-alt:before{content:"\e025"}.bootstrap-bmlt .glyphicon-download:before{content:"\e026"}.bootstrap-bmlt .glyphicon-upload:before{content:"\e027"}.bootstrap-bmlt .glyphicon-inbox:before{content:"\e028"}.bootstrap-bmlt .glyphicon-play-circle:before{content:"\e029"}.bootstrap-bmlt .glyphicon-repeat:before{content:"\e030"}.bootstrap-bmlt .glyphicon-refresh:before{content:"\e031"}.bootstrap-bmlt .glyphicon-list-alt:before{content:"\e032"}.bootstrap-bmlt .glyphicon-lock:before{content:"\e033"}.bootstrap-bmlt .glyphicon-flag:before{content:"\e034"}.bootstrap-bmlt .glyphicon-headphones:before{content:"\e035"}.bootstrap-bmlt .glyphicon-volume-off:before{content:"\e036"}.bootstrap-bmlt .glyphicon-volume-down:before{content:"\e037"}.bootstrap-bmlt .glyphicon-volume-up:before{content:"\e038"}.bootstrap-bmlt .glyphicon-qrcode:before{content:"\e039"}.bootstrap-bmlt .glyphicon-barcode:before{content:"\e040"}.bootstrap-bmlt .glyphicon-tag:before{content:"\e041"}.bootstrap-bmlt .glyphicon-tags:before{content:"\e042"}.bootstrap-bmlt .glyphicon-book:before{content:"\e043"}.bootstrap-bmlt .glyphicon-bookmark:before{content:"\e044"}.bootstrap-bmlt .glyphicon-print:before{content:"\e045"}.bootstrap-bmlt .glyphicon-camera:before{content:"\e046"}.bootstrap-bmlt .glyphicon-font:before{content:"\e047"}.bootstrap-bmlt .glyphicon-bold:before{content:"\e048"}.bootstrap-bmlt .glyphicon-italic:before{content:"\e049"}.bootstrap-bmlt .glyphicon-text-height:before{content:"\e050"}.bootstrap-bmlt .glyphicon-text-width:before{content:"\e051"}.bootstrap-bmlt .glyphicon-align-left:before{content:"\e052"}.bootstrap-bmlt .glyphicon-align-center:before{content:"\e053"}.bootstrap-bmlt .glyphicon-align-right:before{content:"\e054"}.bootstrap-bmlt .glyphicon-align-justify:before{content:"\e055"}.bootstrap-bmlt .glyphicon-list:before{content:"\e056"}.bootstrap-bmlt .glyphicon-indent-left:before{content:"\e057"}.bootstrap-bmlt .glyphicon-indent-right:before{content:"\e058"}.bootstrap-bmlt .glyphicon-facetime-video:before{content:"\e059"}.bootstrap-bmlt .glyphicon-picture:before{content:"\e060"}.bootstrap-bmlt .glyphicon-map-marker:before{content:"\e062"}.bootstrap-bmlt .glyphicon-adjust:before{content:"\e063"}.bootstrap-bmlt .glyphicon-tint:before{content:"\e064"}.bootstrap-bmlt .glyphicon-edit:before{content:"\e065"}.bootstrap-bmlt .glyphicon-share:before{content:"\e066"}.bootstrap-bmlt .glyphicon-check:before{content:"\e067"}.bootstrap-bmlt .glyphicon-move:before{content:"\e068"}.bootstrap-bmlt .glyphicon-step-backward:before{content:"\e069"}.bootstrap-bmlt .glyphicon-fast-backward:before{content:"\e070"}.bootstrap-bmlt .glyphicon-backward:before{content:"\e071"}.bootstrap-bmlt .glyphicon-play:before{content:"\e072"}.bootstrap-bmlt .glyphicon-pause:before{content:"\e073"}.bootstrap-bmlt .glyphicon-stop:before{content:"\e074"}.bootstrap-bmlt .glyphicon-forward:before{content:"\e075"}.bootstrap-bmlt .glyphicon-fast-forward:before{content:"\e076"}.bootstrap-bmlt .glyphicon-step-forward:before{content:"\e077"}.bootstrap-bmlt .glyphicon-eject:before{content:"\e078"}.bootstrap-bmlt .glyphicon-chevron-left:before{content:"\e079"}.bootstrap-bmlt .glyphicon-chevron-right:before{content:"\e080"}.bootstrap-bmlt .glyphicon-plus-sign:before{content:"\e081"}.bootstrap-bmlt .glyphicon-minus-sign:before{content:"\e082"}.bootstrap-bmlt .glyphicon-remove-sign:before{content:"\e083"}.bootstrap-bmlt .glyphicon-ok-sign:before{content:"\e084"}.bootstrap-bmlt .glyphicon-question-sign:before{content:"\e085"}.bootstrap-bmlt .glyphicon-info-sign:before{content:"\e086"}.bootstrap-bmlt .glyphicon-screenshot:before{content:"\e087"}.bootstrap-bmlt .glyphicon-remove-circle:before{content:"\e088"}.bootstrap-bmlt .glyphicon-ok-circle:before{content:"\e089"}.bootstrap-bmlt .glyphicon-ban-circle:before{content:"\e090"}.bootstrap-bmlt .glyphicon-arrow-left:before{content:"\e091"}.bootstrap-bmlt .glyphicon-arrow-right:before{content:"\e092"}.bootstrap-bmlt .glyphicon-arrow-up:before{content:"\e093"}.bootstrap-bmlt .glyphicon-arrow-down:before{content:"\e094"}.bootstrap-bmlt .glyphicon-share-alt:before{content:"\e095"}.bootstrap-bmlt .glyphicon-resize-full:before{content:"\e096"}.bootstrap-bmlt .glyphicon-resize-small:before{content:"\e097"}.bootstrap-bmlt .glyphicon-exclamation-sign:before{content:"\e101"}.bootstrap-bmlt .glyphicon-gift:before{content:"\e102"}.bootstrap-bmlt .glyphicon-leaf:before{content:"\e103"}.bootstrap-bmlt .glyphicon-fire:before{content:"\e104"}.bootstrap-bmlt .glyphicon-eye-open:before{content:"\e105"}.bootstrap-bmlt .glyphicon-eye-close:before{content:"\e106"}.bootstrap-bmlt .glyphicon-warning-sign:before{content:"\e107"}.bootstrap-bmlt .glyphicon-plane:before{content:"\e108"}.bootstrap-bmlt .glyphicon-calendar:before{content:"\e109"}.bootstrap-bmlt .glyphicon-random:before{content:"\e110"}.bootstrap-bmlt .glyphicon-comment:before{content:"\e111"}.bootstrap-bmlt .glyphicon-magnet:before{content:"\e112"}.bootstrap-bmlt .glyphicon-chevron-up:before{content:"\e113"}.bootstrap-bmlt .glyphicon-chevron-down:before{content:"\e114"}.bootstrap-bmlt .glyphicon-retweet:before{content:"\e115"}.bootstrap-bmlt .glyphicon-shopping-cart:before{content:"\e116"}.bootstrap-bmlt .glyphicon-folder-close:before{content:"\e117"}.bootstrap-bmlt .glyphicon-folder-open:before{content:"\e118"}.bootstrap-bmlt .glyphicon-resize-vertical:before{content:"\e119"}.bootstrap-bmlt .glyphicon-resize-horizontal:before{content:"\e120"}.bootstrap-bmlt .glyphicon-hdd:before{content:"\e121"}.bootstrap-bmlt .glyphicon-bullhorn:before{content:"\e122"}.bootstrap-bmlt .glyphicon-bell:before{content:"\e123"}.bootstrap-bmlt .glyphicon-certificate:before{content:"\e124"}.bootstrap-bmlt .glyphicon-thumbs-up:before{content:"\e125"}.bootstrap-bmlt .glyphicon-thumbs-down:before{content:"\e126"}.bootstrap-bmlt .glyphicon-hand-right:before{content:"\e127"}.bootstrap-bmlt .glyphicon-hand-left:before{content:"\e128"}.bootstrap-bmlt .glyphicon-hand-up:before{content:"\e129"}.bootstrap-bmlt .glyphicon-hand-down:before{content:"\e130"}.bootstrap-bmlt .glyphicon-circle-arrow-right:before{content:"\e131"}.bootstrap-bmlt .glyphicon-circle-arrow-left:before{content:"\e132"}.bootstrap-bmlt .glyphicon-circle-arrow-up:before{content:"\e133"}.bootstrap-bmlt .glyphicon-circle-arrow-down:before{content:"\e134"}.bootstrap-bmlt .glyphicon-globe:before{content:"\e135"}.bootstrap-bmlt .glyphicon-wrench:before{content:"\e136"}.bootstrap-bmlt .glyphicon-tasks:before{content:"\e137"}.bootstrap-bmlt .glyphicon-filter:before{content:"\e138"}.bootstrap-bmlt .glyphicon-briefcase:before{content:"\e139"}.bootstrap-bmlt .glyphicon-fullscreen:before{content:"\e140"}.bootstrap-bmlt .glyphicon-dashboard:before{content:"\e141"}.bootstrap-bmlt .glyphicon-paperclip:before{content:"\e142"}.bootstrap-bmlt .glyphicon-heart-empty:before{content:"\e143"}.bootstrap-bmlt .glyphicon-link:before{content:"\e144"}.bootstrap-bmlt .glyphicon-phone:before{content:"\e145"}.bootstrap-bmlt .glyphicon-pushpin:before{content:"\e146"}.bootstrap-bmlt .glyphicon-usd:before{content:"\e148"}.bootstrap-bmlt .glyphicon-gbp:before{content:"\e149"}.bootstrap-bmlt .glyphicon-sort:before{content:"\e150"}.bootstrap-bmlt .glyphicon-sort-by-alphabet:before{content:"\e151"}.bootstrap-bmlt .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.bootstrap-bmlt .glyphicon-sort-by-order:before{content:"\e153"}.bootstrap-bmlt .glyphicon-sort-by-order-alt:before{content:"\e154"}.bootstrap-bmlt .glyphicon-sort-by-attributes:before{content:"\e155"}.bootstrap-bmlt .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.bootstrap-bmlt .glyphicon-unchecked:before{content:"\e157"}.bootstrap-bmlt .glyphicon-expand:before{content:"\e158"}.bootstrap-bmlt .glyphicon-collapse-down:before{content:"\e159"}.bootstrap-bmlt .glyphicon-collapse-up:before{content:"\e160"}.bootstrap-bmlt .glyphicon-log-in:before{content:"\e161"}.bootstrap-bmlt .glyphicon-flash:before{content:"\e162"}.bootstrap-bmlt .glyphicon-log-out:before{content:"\e163"}.bootstrap-bmlt .glyphicon-new-window:before{content:"\e164"}.bootstrap-bmlt .glyphicon-record:before{content:"\e165"}.bootstrap-bmlt .glyphicon-save:before{content:"\e166"}.bootstrap-bmlt .glyphicon-open:before{content:"\e167"}.bootstrap-bmlt .glyphicon-saved:before{content:"\e168"}.bootstrap-bmlt .glyphicon-import:before{content:"\e169"}.bootstrap-bmlt .glyphicon-export:before{content:"\e170"}.bootstrap-bmlt .glyphicon-send:before{content:"\e171"}.bootstrap-bmlt .glyphicon-floppy-disk:before{content:"\e172"}.bootstrap-bmlt .glyphicon-floppy-saved:before{content:"\e173"}.bootstrap-bmlt .glyphicon-floppy-remove:before{content:"\e174"}.bootstrap-bmlt .glyphicon-floppy-save:before{content:"\e175"}.bootstrap-bmlt .glyphicon-floppy-open:before{content:"\e176"}.bootstrap-bmlt .glyphicon-credit-card:before{content:"\e177"}.bootstrap-bmlt .glyphicon-transfer:before{content:"\e178"}.bootstrap-bmlt .glyphicon-cutlery:before{content:"\e179"}.bootstrap-bmlt .glyphicon-header:before{content:"\e180"}.bootstrap-bmlt .glyphicon-compressed:before{content:"\e181"}.bootstrap-bmlt .glyphicon-earphone:before{content:"\e182"}.bootstrap-bmlt .glyphicon-phone-alt:before{content:"\e183"}.bootstrap-bmlt .glyphicon-tower:before{content:"\e184"}.bootstrap-bmlt .glyphicon-stats:before{content:"\e185"}.bootstrap-bmlt .glyphicon-sd-video:before{content:"\e186"}.bootstrap-bmlt .glyphicon-hd-video:before{content:"\e187"}.bootstrap-bmlt .glyphicon-subtitles:before{content:"\e188"}.bootstrap-bmlt .glyphicon-sound-stereo:before{content:"\e189"}.bootstrap-bmlt .glyphicon-sound-dolby:before{content:"\e190"}.bootstrap-bmlt .glyphicon-sound-5-1:before{content:"\e191"}.bootstrap-bmlt .glyphicon-sound-6-1:before{content:"\e192"}.bootstrap-bmlt .glyphicon-sound-7-1:before{content:"\e193"}.bootstrap-bmlt .glyphicon-copyright-mark:before{content:"\e194"}.bootstrap-bmlt .glyphicon-registration-mark:before{content:"\e195"}.bootstrap-bmlt .glyphicon-cloud-download:before{content:"\e197"}.bootstrap-bmlt .glyphicon-cloud-upload:before{content:"\e198"}.bootstrap-bmlt .glyphicon-tree-conifer:before{content:"\e199"}.bootstrap-bmlt .glyphicon-tree-deciduous:before{content:"\e200"}.bootstrap-bmlt .glyphicon-cd:before{content:"\e201"}.bootstrap-bmlt .glyphicon-save-file:before{content:"\e202"}.bootstrap-bmlt .glyphicon-open-file:before{content:"\e203"}.bootstrap-bmlt .glyphicon-level-up:before{content:"\e204"}.bootstrap-bmlt .glyphicon-copy:before{content:"\e205"}.bootstrap-bmlt .glyphicon-paste:before{content:"\e206"}.bootstrap-bmlt .glyphicon-alert:before{content:"\e209"}.bootstrap-bmlt .glyphicon-equalizer:before{content:"\e210"}.bootstrap-bmlt .glyphicon-king:before{content:"\e211"}.bootstrap-bmlt .glyphicon-queen:before{content:"\e212"}.bootstrap-bmlt .glyphicon-pawn:before{content:"\e213"}.bootstrap-bmlt .glyphicon-bishop:before{content:"\e214"}.bootstrap-bmlt .glyphicon-knight:before{content:"\e215"}.bootstrap-bmlt .glyphicon-baby-formula:before{content:"\e216"}.bootstrap-bmlt .glyphicon-tent:before{content:"\26fa"}.bootstrap-bmlt .glyphicon-blackboard:before{content:"\e218"}.bootstrap-bmlt .glyphicon-bed:before{content:"\e219"}.bootstrap-bmlt .glyphicon-apple:before{content:"\f8ff"}.bootstrap-bmlt .glyphicon-erase:before{content:"\e221"}.bootstrap-bmlt .glyphicon-hourglass:before{content:"\231b"}.bootstrap-bmlt .glyphicon-lamp:before{content:"\e223"}.bootstrap-bmlt .glyphicon-duplicate:before{content:"\e224"}.bootstrap-bmlt .glyphicon-piggy-bank:before{content:"\e225"}.bootstrap-bmlt .glyphicon-scissors:before{content:"\e226"}.bootstrap-bmlt .glyphicon-bitcoin:before,.bootstrap-bmlt .glyphicon-btc:before,.bootstrap-bmlt .glyphicon-xbt:before{content:"\e227"}.bootstrap-bmlt .glyphicon-jpy:before,.bootstrap-bmlt .glyphicon-yen:before{content:"\00a5"}.bootstrap-bmlt .glyphicon-rub:before,.bootstrap-bmlt .glyphicon-ruble:before{content:"\20bd"}.bootstrap-bmlt .glyphicon-scale:before{content:"\e230"}.bootstrap-bmlt .glyphicon-ice-lolly:before{content:"\e231"}.bootstrap-bmlt .glyphicon-ice-lolly-tasted:before{content:"\e232"}.bootstrap-bmlt .glyphicon-education:before{content:"\e233"}.bootstrap-bmlt .glyphicon-option-horizontal:before{content:"\e234"}.bootstrap-bmlt .glyphicon-option-vertical:before{content:"\e235"}.bootstrap-bmlt .glyphicon-menu-hamburger:before{content:"\e236"}.bootstrap-bmlt .glyphicon-modal-window:before{content:"\e237"}.bootstrap-bmlt .glyphicon-oil:before{content:"\e238"}.bootstrap-bmlt .glyphicon-grain:before{content:"\e239"}.bootstrap-bmlt .glyphicon-sunglasses:before{content:"\e240"}.bootstrap-bmlt .glyphicon-text-size:before{content:"\e241"}.bootstrap-bmlt .glyphicon-text-color:before{content:"\e242"}.bootstrap-bmlt .glyphicon-text-background:before{content:"\e243"}.bootstrap-bmlt .glyphicon-object-align-top:before{content:"\e244"}.bootstrap-bmlt .glyphicon-object-align-bottom:before{content:"\e245"}.bootstrap-bmlt .glyphicon-object-align-horizontal:before{content:"\e246"}.bootstrap-bmlt .glyphicon-object-align-left:before{content:"\e247"}.bootstrap-bmlt .glyphicon-object-align-vertical:before{content:"\e248"}.bootstrap-bmlt .glyphicon-object-align-right:before{content:"\e249"}.bootstrap-bmlt .glyphicon-triangle-right:before{content:"\e250"}.bootstrap-bmlt .glyphicon-triangle-left:before{content:"\e251"}.bootstrap-bmlt .glyphicon-triangle-bottom:before{content:"\e252"}.bootstrap-bmlt .glyphicon-triangle-top:before{content:"\e253"}.bootstrap-bmlt .glyphicon-console:before{content:"\e254"}.bootstrap-bmlt .glyphicon-superscript:before{content:"\e255"}.bootstrap-bmlt .glyphicon-subscript:before{content:"\e256"}.bootstrap-bmlt .glyphicon-menu-left:before{content:"\e257"}.bootstrap-bmlt .glyphicon-menu-right:before{content:"\e258"}.bootstrap-bmlt .glyphicon-menu-down:before{content:"\e259"}.bootstrap-bmlt .glyphicon-menu-up:before{content:"\e260"}.bootstrap-bmlt *,.bootstrap-bmlt :after,.bootstrap-bmlt :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-bmlt html{font-size:10px;-webkit-tap-highlight-color:transparent}.bootstrap-bmlt body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}.bootstrap-bmlt button,.bootstrap-bmlt input,.bootstrap-bmlt select,.bootstrap-bmlt textarea{font-family:inherit;font-size:inherit;line-height:inherit}.bootstrap-bmlt a{color:#337ab7;text-decoration:none}.bootstrap-bmlt a:focus,.bootstrap-bmlt a:hover{color:#23527c;text-decoration:underline}.bootstrap-bmlt a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.bootstrap-bmlt figure{margin:0}.bootstrap-bmlt img{vertical-align:middle}.bootstrap-bmlt .img-responsive{display:block;max-width:100%;height:auto}.bootstrap-bmlt .img-rounded{border-radius:6px}.bootstrap-bmlt .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.bootstrap-bmlt .img-circle{border-radius:50%}.bootstrap-bmlt hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.bootstrap-bmlt .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.bootstrap-bmlt .sr-only-focusable:active,.bootstrap-bmlt .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.bootstrap-bmlt [role=button]{cursor:pointer}.bootstrap-bmlt table{background-color:transparent}.bootstrap-bmlt caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.bootstrap-bmlt th{text-align:left}.bootstrap-bmlt .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap-bmlt .table>tbody>tr>td,.bootstrap-bmlt .table>tbody>tr>th,.bootstrap-bmlt .table>tfoot>tr>td,.bootstrap-bmlt .table>tfoot>tr>th,.bootstrap-bmlt .table>thead>tr>td,.bootstrap-bmlt .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap-bmlt .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap-bmlt .table>caption+thead>tr:first-child>td,.bootstrap-bmlt .table>caption+thead>tr:first-child>th,.bootstrap-bmlt .table>colgroup+thead>tr:first-child>td,.bootstrap-bmlt .table>colgroup+thead>tr:first-child>th,.bootstrap-bmlt .table>thead:first-child>tr:first-child>td,.bootstrap-bmlt .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap-bmlt .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap-bmlt .table .table{background-color:#fff}.bootstrap-bmlt .table-condensed>tbody>tr>td,.bootstrap-bmlt .table-condensed>tbody>tr>th,.bootstrap-bmlt .table-condensed>tfoot>tr>td,.bootstrap-bmlt .table-condensed>tfoot>tr>th,.bootstrap-bmlt .table-condensed>thead>tr>td,.bootstrap-bmlt .table-condensed>thead>tr>th{padding:5px}.bootstrap-bmlt .table-bordered,.bootstrap-bmlt .table-bordered>tbody>tr>td,.bootstrap-bmlt .table-bordered>tbody>tr>th,.bootstrap-bmlt .table-bordered>tfoot>tr>td,.bootstrap-bmlt .table-bordered>tfoot>tr>th,.bootstrap-bmlt .table-bordered>thead>tr>td,.bootstrap-bmlt .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap-bmlt .table-bordered>thead>tr>td,.bootstrap-bmlt .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap-bmlt .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap-bmlt .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap-bmlt table col[class*=col-]{position:static;float:none;display:table-column}.bootstrap-bmlt table td[class*=col-],.bootstrap-bmlt table th[class*=col-]{position:static;float:none;display:table-cell}.bootstrap-bmlt .table>tbody>tr.active>td,.bootstrap-bmlt .table>tbody>tr.active>th,.bootstrap-bmlt .table>tbody>tr>td.active,.bootstrap-bmlt .table>tbody>tr>th.active,.bootstrap-bmlt .table>tfoot>tr.active>td,.bootstrap-bmlt .table>tfoot>tr.active>th,.bootstrap-bmlt .table>tfoot>tr>td.active,.bootstrap-bmlt .table>tfoot>tr>th.active,.bootstrap-bmlt .table>thead>tr.active>td,.bootstrap-bmlt .table>thead>tr.active>th,.bootstrap-bmlt .table>thead>tr>td.active,.bootstrap-bmlt .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap-bmlt .table-hover>tbody>tr.active:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.active:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.active,.bootstrap-bmlt .table-hover>tbody>tr>td.active:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap-bmlt .table>tbody>tr.success>td,.bootstrap-bmlt .table>tbody>tr.success>th,.bootstrap-bmlt .table>tbody>tr>td.success,.bootstrap-bmlt .table>tbody>tr>th.success,.bootstrap-bmlt .table>tfoot>tr.success>td,.bootstrap-bmlt .table>tfoot>tr.success>th,.bootstrap-bmlt .table>tfoot>tr>td.success,.bootstrap-bmlt .table>tfoot>tr>th.success,.bootstrap-bmlt .table>thead>tr.success>td,.bootstrap-bmlt .table>thead>tr.success>th,.bootstrap-bmlt .table>thead>tr>td.success,.bootstrap-bmlt .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap-bmlt .table-hover>tbody>tr.success:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.success:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.success,.bootstrap-bmlt .table-hover>tbody>tr>td.success:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap-bmlt .table>tbody>tr.info>td,.bootstrap-bmlt .table>tbody>tr.info>th,.bootstrap-bmlt .table>tbody>tr>td.info,.bootstrap-bmlt .table>tbody>tr>th.info,.bootstrap-bmlt .table>tfoot>tr.info>td,.bootstrap-bmlt .table>tfoot>tr.info>th,.bootstrap-bmlt .table>tfoot>tr>td.info,.bootstrap-bmlt .table>tfoot>tr>th.info,.bootstrap-bmlt .table>thead>tr.info>td,.bootstrap-bmlt .table>thead>tr.info>th,.bootstrap-bmlt .table>thead>tr>td.info,.bootstrap-bmlt .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap-bmlt .table-hover>tbody>tr.info:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.info:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.info,.bootstrap-bmlt .table-hover>tbody>tr>td.info:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap-bmlt .table>tbody>tr.warning>td,.bootstrap-bmlt .table>tbody>tr.warning>th,.bootstrap-bmlt .table>tbody>tr>td.warning,.bootstrap-bmlt .table>tbody>tr>th.warning,.bootstrap-bmlt .table>tfoot>tr.warning>td,.bootstrap-bmlt .table>tfoot>tr.warning>th,.bootstrap-bmlt .table>tfoot>tr>td.warning,.bootstrap-bmlt .table>tfoot>tr>th.warning,.bootstrap-bmlt .table>thead>tr.warning>td,.bootstrap-bmlt .table>thead>tr.warning>th,.bootstrap-bmlt .table>thead>tr>td.warning,.bootstrap-bmlt .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap-bmlt .table-hover>tbody>tr.warning:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.warning:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.warning,.bootstrap-bmlt .table-hover>tbody>tr>td.warning:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap-bmlt .table>tbody>tr.danger>td,.bootstrap-bmlt .table>tbody>tr.danger>th,.bootstrap-bmlt .table>tbody>tr>td.danger,.bootstrap-bmlt .table>tbody>tr>th.danger,.bootstrap-bmlt .table>tfoot>tr.danger>td,.bootstrap-bmlt .table>tfoot>tr.danger>th,.bootstrap-bmlt .table>tfoot>tr>td.danger,.bootstrap-bmlt .table>tfoot>tr>th.danger,.bootstrap-bmlt .table>thead>tr.danger>td,.bootstrap-bmlt .table>thead>tr.danger>th,.bootstrap-bmlt .table>thead>tr>td.danger,.bootstrap-bmlt .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap-bmlt .table-hover>tbody>tr.danger:hover>td,.bootstrap-bmlt .table-hover>tbody>tr.danger:hover>th,.bootstrap-bmlt .table-hover>tbody>tr:hover>.danger,.bootstrap-bmlt .table-hover>tbody>tr>td.danger:hover,.bootstrap-bmlt .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap-bmlt .table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.bootstrap-bmlt .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap-bmlt .table-responsive>.table{margin-bottom:0}.bootstrap-bmlt .table-responsive>.table>tbody>tr>td,.bootstrap-bmlt .table-responsive>.table>tbody>tr>th,.bootstrap-bmlt .table-responsive>.table>tfoot>tr>td,.bootstrap-bmlt .table-responsive>.table>tfoot>tr>th,.bootstrap-bmlt .table-responsive>.table>thead>tr>td,.bootstrap-bmlt .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap-bmlt .table-responsive>.table-bordered{border:0}.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap-bmlt .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap-bmlt .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap-bmlt .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap-bmlt .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-bmlt .btn.active.focus,.bootstrap-bmlt .btn.active:focus,.bootstrap-bmlt .btn.focus,.bootstrap-bmlt .btn:active.focus,.bootstrap-bmlt .btn:active:focus,.bootstrap-bmlt .btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.bootstrap-bmlt .btn.focus,.bootstrap-bmlt .btn:focus,.bootstrap-bmlt .btn:hover{color:#333;text-decoration:none}.bootstrap-bmlt .btn.active,.bootstrap-bmlt .btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.bootstrap-bmlt .btn.disabled,.bootstrap-bmlt .btn[disabled],.bootstrap-bmlt fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none}.bootstrap-bmlt a.btn.disabled,.bootstrap-bmlt fieldset[disabled] a.btn{pointer-events:none}.bootstrap-bmlt .btn-default{color:#333;background-color:#fff;border-color:#ccc}.bootstrap-bmlt .btn-default.focus,.bootstrap-bmlt .btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.bootstrap-bmlt .btn-default.active,.bootstrap-bmlt .btn-default:active,.bootstrap-bmlt .btn-default:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.bootstrap-bmlt .btn-default.active.focus,.bootstrap-bmlt .btn-default.active:focus,.bootstrap-bmlt .btn-default.active:hover,.bootstrap-bmlt .btn-default:active.focus,.bootstrap-bmlt .btn-default:active:focus,.bootstrap-bmlt .btn-default:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-default.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-default:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.bootstrap-bmlt .btn-default.active,.bootstrap-bmlt .btn-default:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-default{background-image:none}.bootstrap-bmlt .btn-default.disabled,.bootstrap-bmlt .btn-default.disabled.active,.bootstrap-bmlt .btn-default.disabled.focus,.bootstrap-bmlt .btn-default.disabled:active,.bootstrap-bmlt .btn-default.disabled:focus,.bootstrap-bmlt .btn-default.disabled:hover,.bootstrap-bmlt .btn-default[disabled],.bootstrap-bmlt .btn-default[disabled].active,.bootstrap-bmlt .btn-default[disabled].focus,.bootstrap-bmlt .btn-default[disabled]:active,.bootstrap-bmlt .btn-default[disabled]:focus,.bootstrap-bmlt .btn-default[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-default,.bootstrap-bmlt fieldset[disabled] .btn-default.active,.bootstrap-bmlt fieldset[disabled] .btn-default.focus,.bootstrap-bmlt fieldset[disabled] .btn-default:active,.bootstrap-bmlt fieldset[disabled] .btn-default:focus,.bootstrap-bmlt fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.bootstrap-bmlt .btn-default .badge{color:#fff;background-color:#333}.bootstrap-bmlt .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.bootstrap-bmlt .btn-primary.focus,.bootstrap-bmlt .btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.bootstrap-bmlt .btn-primary.active,.bootstrap-bmlt .btn-primary:active,.bootstrap-bmlt .btn-primary:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.bootstrap-bmlt .btn-primary.active.focus,.bootstrap-bmlt .btn-primary.active:focus,.bootstrap-bmlt .btn-primary.active:hover,.bootstrap-bmlt .btn-primary:active.focus,.bootstrap-bmlt .btn-primary:active:focus,.bootstrap-bmlt .btn-primary:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.bootstrap-bmlt .btn-primary.active,.bootstrap-bmlt .btn-primary:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-primary{background-image:none}.bootstrap-bmlt .btn-primary.disabled,.bootstrap-bmlt .btn-primary.disabled.active,.bootstrap-bmlt .btn-primary.disabled.focus,.bootstrap-bmlt .btn-primary.disabled:active,.bootstrap-bmlt .btn-primary.disabled:focus,.bootstrap-bmlt .btn-primary.disabled:hover,.bootstrap-bmlt .btn-primary[disabled],.bootstrap-bmlt .btn-primary[disabled].active,.bootstrap-bmlt .btn-primary[disabled].focus,.bootstrap-bmlt .btn-primary[disabled]:active,.bootstrap-bmlt .btn-primary[disabled]:focus,.bootstrap-bmlt .btn-primary[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-primary,.bootstrap-bmlt fieldset[disabled] .btn-primary.active,.bootstrap-bmlt fieldset[disabled] .btn-primary.focus,.bootstrap-bmlt fieldset[disabled] .btn-primary:active,.bootstrap-bmlt fieldset[disabled] .btn-primary:focus,.bootstrap-bmlt fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.bootstrap-bmlt .btn-primary .badge{color:#337ab7;background-color:#fff}.bootstrap-bmlt .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.bootstrap-bmlt .btn-success.focus,.bootstrap-bmlt .btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.bootstrap-bmlt .btn-success.active,.bootstrap-bmlt .btn-success:active,.bootstrap-bmlt .btn-success:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.bootstrap-bmlt .btn-success.active.focus,.bootstrap-bmlt .btn-success.active:focus,.bootstrap-bmlt .btn-success.active:hover,.bootstrap-bmlt .btn-success:active.focus,.bootstrap-bmlt .btn-success:active:focus,.bootstrap-bmlt .btn-success:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-success.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-success:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.bootstrap-bmlt .btn-success.active,.bootstrap-bmlt .btn-success:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-success{background-image:none}.bootstrap-bmlt .btn-success.disabled,.bootstrap-bmlt .btn-success.disabled.active,.bootstrap-bmlt .btn-success.disabled.focus,.bootstrap-bmlt .btn-success.disabled:active,.bootstrap-bmlt .btn-success.disabled:focus,.bootstrap-bmlt .btn-success.disabled:hover,.bootstrap-bmlt .btn-success[disabled],.bootstrap-bmlt .btn-success[disabled].active,.bootstrap-bmlt .btn-success[disabled].focus,.bootstrap-bmlt .btn-success[disabled]:active,.bootstrap-bmlt .btn-success[disabled]:focus,.bootstrap-bmlt .btn-success[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-success,.bootstrap-bmlt fieldset[disabled] .btn-success.active,.bootstrap-bmlt fieldset[disabled] .btn-success.focus,.bootstrap-bmlt fieldset[disabled] .btn-success:active,.bootstrap-bmlt fieldset[disabled] .btn-success:focus,.bootstrap-bmlt fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.bootstrap-bmlt .btn-success .badge{color:#5cb85c;background-color:#fff}.bootstrap-bmlt .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.bootstrap-bmlt .btn-info.focus,.bootstrap-bmlt .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.bootstrap-bmlt .btn-info.active,.bootstrap-bmlt .btn-info:active,.bootstrap-bmlt .btn-info:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.bootstrap-bmlt .btn-info.active.focus,.bootstrap-bmlt .btn-info.active:focus,.bootstrap-bmlt .btn-info.active:hover,.bootstrap-bmlt .btn-info:active.focus,.bootstrap-bmlt .btn-info:active:focus,.bootstrap-bmlt .btn-info:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-info.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-info:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.bootstrap-bmlt .btn-info.active,.bootstrap-bmlt .btn-info:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-info{background-image:none}.bootstrap-bmlt .btn-info.disabled,.bootstrap-bmlt .btn-info.disabled.active,.bootstrap-bmlt .btn-info.disabled.focus,.bootstrap-bmlt .btn-info.disabled:active,.bootstrap-bmlt .btn-info.disabled:focus,.bootstrap-bmlt .btn-info.disabled:hover,.bootstrap-bmlt .btn-info[disabled],.bootstrap-bmlt .btn-info[disabled].active,.bootstrap-bmlt .btn-info[disabled].focus,.bootstrap-bmlt .btn-info[disabled]:active,.bootstrap-bmlt .btn-info[disabled]:focus,.bootstrap-bmlt .btn-info[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-info,.bootstrap-bmlt fieldset[disabled] .btn-info.active,.bootstrap-bmlt fieldset[disabled] .btn-info.focus,.bootstrap-bmlt fieldset[disabled] .btn-info:active,.bootstrap-bmlt fieldset[disabled] .btn-info:focus,.bootstrap-bmlt fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.bootstrap-bmlt .btn-info .badge{color:#5bc0de;background-color:#fff}.bootstrap-bmlt .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.bootstrap-bmlt .btn-warning.focus,.bootstrap-bmlt .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.bootstrap-bmlt .btn-warning.active,.bootstrap-bmlt .btn-warning:active,.bootstrap-bmlt .btn-warning:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.bootstrap-bmlt .btn-warning.active.focus,.bootstrap-bmlt .btn-warning.active:focus,.bootstrap-bmlt .btn-warning.active:hover,.bootstrap-bmlt .btn-warning:active.focus,.bootstrap-bmlt .btn-warning:active:focus,.bootstrap-bmlt .btn-warning:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.bootstrap-bmlt .btn-warning.active,.bootstrap-bmlt .btn-warning:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-warning{background-image:none}.bootstrap-bmlt .btn-warning.disabled,.bootstrap-bmlt .btn-warning.disabled.active,.bootstrap-bmlt .btn-warning.disabled.focus,.bootstrap-bmlt .btn-warning.disabled:active,.bootstrap-bmlt .btn-warning.disabled:focus,.bootstrap-bmlt .btn-warning.disabled:hover,.bootstrap-bmlt .btn-warning[disabled],.bootstrap-bmlt .btn-warning[disabled].active,.bootstrap-bmlt .btn-warning[disabled].focus,.bootstrap-bmlt .btn-warning[disabled]:active,.bootstrap-bmlt .btn-warning[disabled]:focus,.bootstrap-bmlt .btn-warning[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-warning,.bootstrap-bmlt fieldset[disabled] .btn-warning.active,.bootstrap-bmlt fieldset[disabled] .btn-warning.focus,.bootstrap-bmlt fieldset[disabled] .btn-warning:active,.bootstrap-bmlt fieldset[disabled] .btn-warning:focus,.bootstrap-bmlt fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.bootstrap-bmlt .btn-warning .badge{color:#f0ad4e;background-color:#fff}.bootstrap-bmlt .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.bootstrap-bmlt .btn-danger.focus,.bootstrap-bmlt .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.bootstrap-bmlt .btn-danger.active,.bootstrap-bmlt .btn-danger:active,.bootstrap-bmlt .btn-danger:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.bootstrap-bmlt .btn-danger.active.focus,.bootstrap-bmlt .btn-danger.active:focus,.bootstrap-bmlt .btn-danger.active:hover,.bootstrap-bmlt .btn-danger:active.focus,.bootstrap-bmlt .btn-danger:active:focus,.bootstrap-bmlt .btn-danger:active:hover,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger.focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger:focus,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.bootstrap-bmlt .btn-danger.active,.bootstrap-bmlt .btn-danger:active,.bootstrap-bmlt .open>.dropdown-toggle.btn-danger{background-image:none}.bootstrap-bmlt .btn-danger.disabled,.bootstrap-bmlt .btn-danger.disabled.active,.bootstrap-bmlt .btn-danger.disabled.focus,.bootstrap-bmlt .btn-danger.disabled:active,.bootstrap-bmlt .btn-danger.disabled:focus,.bootstrap-bmlt .btn-danger.disabled:hover,.bootstrap-bmlt .btn-danger[disabled],.bootstrap-bmlt .btn-danger[disabled].active,.bootstrap-bmlt .btn-danger[disabled].focus,.bootstrap-bmlt .btn-danger[disabled]:active,.bootstrap-bmlt .btn-danger[disabled]:focus,.bootstrap-bmlt .btn-danger[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-danger,.bootstrap-bmlt fieldset[disabled] .btn-danger.active,.bootstrap-bmlt fieldset[disabled] .btn-danger.focus,.bootstrap-bmlt fieldset[disabled] .btn-danger:active,.bootstrap-bmlt fieldset[disabled] .btn-danger:focus,.bootstrap-bmlt fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.bootstrap-bmlt .btn-danger .badge{color:#d9534f;background-color:#fff}.bootstrap-bmlt .btn-link{color:#337ab7;font-weight:400;border-radius:0}.bootstrap-bmlt .btn-link,.bootstrap-bmlt .btn-link.active,.bootstrap-bmlt .btn-link:active,.bootstrap-bmlt .btn-link[disabled],.bootstrap-bmlt fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.bootstrap-bmlt .btn-link,.bootstrap-bmlt .btn-link:active,.bootstrap-bmlt .btn-link:focus,.bootstrap-bmlt .btn-link:hover{border-color:transparent}.bootstrap-bmlt .btn-link:focus,.bootstrap-bmlt .btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.bootstrap-bmlt .btn-link[disabled]:focus,.bootstrap-bmlt .btn-link[disabled]:hover,.bootstrap-bmlt fieldset[disabled] .btn-link:focus,.bootstrap-bmlt fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.bootstrap-bmlt .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.bootstrap-bmlt .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.bootstrap-bmlt .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.bootstrap-bmlt .btn-block{display:block;width:100%}.bootstrap-bmlt .btn-block+.btn-block{margin-top:5px}.bootstrap-bmlt input[type=button].btn-block,.bootstrap-bmlt input[type=reset].btn-block,.bootstrap-bmlt input[type=submit].btn-block{width:100%}.bootstrap-bmlt .nav{margin-bottom:0;padding-left:0;list-style:none}.bootstrap-bmlt .nav>li{position:relative;display:block}.bootstrap-bmlt .nav>li>a{position:relative;display:block;padding:10px 15px}.bootstrap-bmlt .nav>li>a:focus,.bootstrap-bmlt .nav>li>a:hover{text-decoration:none;background-color:#eee}.bootstrap-bmlt .nav>li.disabled>a{color:#777}.bootstrap-bmlt .nav>li.disabled>a:focus,.bootstrap-bmlt .nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.bootstrap-bmlt .nav .open>a,.bootstrap-bmlt .nav .open>a:focus,.bootstrap-bmlt .nav .open>a:hover{background-color:#eee;border-color:#337ab7}.bootstrap-bmlt .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.bootstrap-bmlt .nav>li>a>img{max-width:none}.bootstrap-bmlt .nav-tabs{border-bottom:1px solid #ddd}.bootstrap-bmlt .nav-tabs>li{float:left;margin-bottom:-1px}.bootstrap-bmlt .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.bootstrap-bmlt .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.bootstrap-bmlt .nav-tabs>li.active>a,.bootstrap-bmlt .nav-tabs>li.active>a:focus,.bootstrap-bmlt .nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.bootstrap-bmlt .nav-tabs.nav-justified{width:100%;border-bottom:0}.bootstrap-bmlt .nav-tabs.nav-justified>li{float:none}.bootstrap-bmlt .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.bootstrap-bmlt .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.bootstrap-bmlt .nav-tabs.nav-justified>li{display:table-cell;width:1%}.bootstrap-bmlt .nav-tabs.nav-justified>li>a{margin-bottom:0}}.bootstrap-bmlt .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.bootstrap-bmlt .nav-tabs.nav-justified>.active>a,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.bootstrap-bmlt .nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.bootstrap-bmlt .nav-tabs.nav-justified>.active>a,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.bootstrap-bmlt .nav-pills>li{float:left}.bootstrap-bmlt .nav-pills>li>a{border-radius:4px}.bootstrap-bmlt .nav-pills>li+li{margin-left:2px}.bootstrap-bmlt .nav-pills>li.active>a,.bootstrap-bmlt .nav-pills>li.active>a:focus,.bootstrap-bmlt .nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.bootstrap-bmlt .nav-stacked>li{float:none}.bootstrap-bmlt .nav-stacked>li+li{margin-top:2px;margin-left:0}.bootstrap-bmlt .nav-justified{width:100%}.bootstrap-bmlt .nav-justified>li{float:none}.bootstrap-bmlt .nav-justified>li>a{text-align:center;margin-bottom:5px}.bootstrap-bmlt .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.bootstrap-bmlt .nav-justified>li{display:table-cell;width:1%}.bootstrap-bmlt .nav-justified>li>a{margin-bottom:0}}.bootstrap-bmlt .nav-tabs-justified{border-bottom:0}.bootstrap-bmlt .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.bootstrap-bmlt .nav-tabs-justified>.active>a,.bootstrap-bmlt .nav-tabs-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.bootstrap-bmlt .nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.bootstrap-bmlt .nav-tabs-justified>.active>a,.bootstrap-bmlt .nav-tabs-justified>.active>a:focus,.bootstrap-bmlt .nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.bootstrap-bmlt .tab-content>.tab-pane{display:none}.bootstrap-bmlt .tab-content>.active{display:block}.bootstrap-bmlt .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.bootstrap-bmlt .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0}.bootstrap-bmlt .tooltip.in{opacity:.9}.bootstrap-bmlt .tooltip.top{margin-top:-3px;padding:5px 0}.bootstrap-bmlt .tooltip.right{margin-left:3px;padding:0 5px}.bootstrap-bmlt .tooltip.bottom{margin-top:3px;padding:5px 0}.bootstrap-bmlt .tooltip.left{margin-left:-3px;padding:0 5px}.bootstrap-bmlt .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.bootstrap-bmlt .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.bootstrap-bmlt .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.bootstrap-bmlt .tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.bootstrap-bmlt .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.bootstrap-bmlt .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.bootstrap-bmlt .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.bootstrap-bmlt .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.bootstrap-bmlt .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.bootstrap-bmlt .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.bootstrap-bmlt .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.bootstrap-bmlt .popover.top{margin-top:-10px}.bootstrap-bmlt .popover.right{margin-left:10px}.bootstrap-bmlt .popover.bottom{margin-top:10px}.bootstrap-bmlt .popover.left{margin-left:-10px}.bootstrap-bmlt .popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.bootstrap-bmlt .popover-content{padding:9px 14px}.bootstrap-bmlt .popover>.arrow,.bootstrap-bmlt .popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.bootstrap-bmlt .popover>.arrow{border-width:11px}.bootstrap-bmlt .popover>.arrow:after{border-width:10px;content:""}.bootstrap-bmlt .popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.bootstrap-bmlt .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.bootstrap-bmlt .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.bootstrap-bmlt .popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.bootstrap-bmlt .popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.bootstrap-bmlt .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.bootstrap-bmlt .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.bootstrap-bmlt .popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.bootstrap-bmlt .clearfix:after,.bootstrap-bmlt .clearfix:before,.bootstrap-bmlt .nav:after,.bootstrap-bmlt .nav:before{content:" ";display:table}.bootstrap-bmlt .clearfix:after,.bootstrap-bmlt .nav:after{clear:both}.bootstrap-bmlt .center-block{display:block;margin-left:auto;margin-right:auto}.bootstrap-bmlt .pull-right{float:right!important}.bootstrap-bmlt .pull-left{float:left!important}.bootstrap-bmlt .hide{display:none!important}.bootstrap-bmlt .show{display:block!important}.bootstrap-bmlt .invisible{visibility:hidden}.bootstrap-bmlt .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.bootstrap-bmlt .hidden{display:none!important}.bootstrap-bmlt .affix{position:fixed}@-ms-viewport{width:device-width}.bootstrap-bmlt .visible-lg,.bootstrap-bmlt .visible-lg-block,.bootstrap-bmlt .visible-lg-inline,.bootstrap-bmlt .visible-lg-inline-block,.bootstrap-bmlt .visible-md,.bootstrap-bmlt .visible-md-block,.bootstrap-bmlt .visible-md-inline,.bootstrap-bmlt .visible-md-inline-block,.bootstrap-bmlt .visible-print,.bootstrap-bmlt .visible-print-block,.bootstrap-bmlt .visible-print-inline,.bootstrap-bmlt .visible-print-inline-block,.bootstrap-bmlt .visible-sm,.bootstrap-bmlt .visible-sm-block,.bootstrap-bmlt .visible-sm-inline,.bootstrap-bmlt .visible-sm-inline-block,.bootstrap-bmlt .visible-xs,.bootstrap-bmlt .visible-xs-block,.bootstrap-bmlt .visible-xs-inline,.bootstrap-bmlt .visible-xs-inline-block{display:none!important}@media (max-width:767px){.bootstrap-bmlt .visible-xs{display:block!important}.bootstrap-bmlt table.visible-xs{display:table!important}.bootstrap-bmlt tr.visible-xs{display:table-row!important}.bootstrap-bmlt td.visible-xs,.bootstrap-bmlt th.visible-xs{display:table-cell!important}}@media (max-width:767px){.bootstrap-bmlt .visible-xs-block{display:block!important}}@media (max-width:767px){.bootstrap-bmlt .visible-xs-inline{display:inline!important}}@media (max-width:767px){.bootstrap-bmlt .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm{display:block!important}.bootstrap-bmlt table.visible-sm{display:table!important}.bootstrap-bmlt tr.visible-sm{display:table-row!important}.bootstrap-bmlt td.visible-sm,.bootstrap-bmlt th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md{display:block!important}.bootstrap-bmlt table.visible-md{display:table!important}.bootstrap-bmlt tr.visible-md{display:table-row!important}.bootstrap-bmlt td.visible-md,.bootstrap-bmlt th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg{display:block!important}.bootstrap-bmlt table.visible-lg{display:table!important}.bootstrap-bmlt tr.visible-lg{display:table-row!important}.bootstrap-bmlt td.visible-lg,.bootstrap-bmlt th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg-block{display:block!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg-inline{display:inline!important}}@media (min-width:1200px){.bootstrap-bmlt .visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.bootstrap-bmlt .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.bootstrap-bmlt .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.bootstrap-bmlt .hidden-md{display:none!important}}@media (min-width:1200px){.bootstrap-bmlt .hidden-lg{display:none!important}}@media print{.bootstrap-bmlt .visible-print{display:block!important}.bootstrap-bmlt table.visible-print{display:table!important}.bootstrap-bmlt tr.visible-print{display:table-row!important}.bootstrap-bmlt td.visible-print,.bootstrap-bmlt th.visible-print{display:table-cell!important}}@media print{.bootstrap-bmlt .visible-print-block{display:block!important}}@media print{.bootstrap-bmlt .visible-print-inline{display:inline!important}}@media print{.bootstrap-bmlt .visible-print-inline-block{display:inline-block!important}}@media print{.bootstrap-bmlt .hidden-print{display:none!important}}#please-wait{position:absolute;top:50%;left:50%;width:auto;height:auto;margin-top:-50px;margin-left:-50px}span.bmlt_tabs_meeting_count{font-size:18px;padding:0 10px 15px 0;display:inline-block}span.bmlt_tabs_group_count{font-size:18px;padding:0 10px 15px;display:inline-block}#bmlt-tabs #days{padding:4px}#bmlt-tabs #nav-days{padding:4px 4px 0}#bmlt-tabs #tabs-content{padding:1px 4px 4px}#bmlt-tabs #cities{padding:4px}#bmlt-tabs .glyphicon{top:2px}#bmlt-tabs .glyphicon-map-marker:before{content:"\e062";margin-right:3px}#bmlt-tabs .glyphicon-search:before{margin-right:5px}#bmlt-tabs .select2-container .select2-choice,#bmlt-tabs .select2-result-label{height:20px}#bmlt-tabs{font-size:14px;color:#5b5b5b;font-family:Arial,Helvetica,sans-serif;text-align:left;font-style:normal}#bmlt-tabs span.select2.select2-container.select2-container--default{height:30px}#bmlt-tabs .bmlt-dropdown-container{display:inline;position:relative;margin-left:4px;top:1px!important}.bmlt-drop{width:300px!important}#bmlt-tabs tr:nth-child(even){background:#f2f2f2}#bmlt-tabs tr:nth-child(odd){background:#fff}#bmlt-tabs #byday .evenRow{background:#f2f2f2}#bmlt-tabs #byday .oddRow{background:#fff}#bmlt-tabs td{padding:.8em}#bmlt-tabs ul{padding:0;margin:0;line-height:26px;list-style-type:none}.bootstrap-bmlt .nav-tabs>li{padding:0;margin:0}#bmlt-tabs .bmlt-column1{text-align:left;width:20%;overflow:hidden;word-break:break-all;vertical-align:top}#bmlt-tabs .bmlt-column2{text-align:left;width:auto;vertical-align:top}#bmlt-tabs .bmlt-column3{text-align:center!important;vertical-align:middle!important;width:30%;overflow-wrap:break-word;word-wrap:break-word;-ms-word-break:break-all;word-break:break-all;word-break:break-word;-webkit-hyphens:none;-moz-hyphens:none;hyphens:none}#bmlt-tabs .virtual .bmlt-column1{text-align:left;width:20%;word-break:break-all;vertical-align:top}#bmlt-tabs .virtual .bmlt-column2{text-align:left;width:50%;vertical-align:top}#bmlt-tabs .virtual .bmlt-column3{text-align:center!important;vertical-align:middle!important;width:30%}#bmlt-tabs .nav-tabs>li.active>a,#bmlt-tabs .nav-tabs>li.active>a:focus,#bmlt-tabs .nav-tabs>li.active>a:hover{color:#fff;background-color:#db4865;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}#bmlt-tabs .nav-tabs>li>a{color:#000;background-color:#93c3cd;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}#bmlt-tabs .nav-tabs>li>a:hover{color:#fff}#bmlt-tabs a#map-button,#bmlt-tabs a#share-button{margin-bottom:4px}#bmlt-tabs a#bmlt-formats{margin:4px 0}#bmlt-formats.btn-xs,#map-button.btn-xs,#share-button.btn-xs{padding:3px 5px;font-size:10px;background-color:#93c3cd;color:#35414f;border-color:#c5c5c5}#bmlt-formats.btn-xs:hover,#map-button.btn-xs:hover,#share-button.btn-xs:hover{background-color:#f1f1f1}#bmlt-tabs .filterButton.btn.btn-primary.btn-sm:hover{border-color:#fff}#bmlt-tabs #day.btn.btn-primary.btn-sm:hover{border-color:#fff}#bmlt-tabs .bmlt-comments{word-wrap:normal;word-break:break-word}#bmlt-tabs .nav>li>a{padding:4px 10px;font-style:normal}#bmlt-tabs .bmlt-day,#bmlt-tabs .bmlt-time-2,#bmlt-tabs .meeting-name{font-weight:700;font-size:14px;color:rgba(0,0,0,.67)}#bmlt-tabs .bmlt-button-container{display:inline;position:relative}#bmlt-tabs #day.btn.btn-primary.btn-sm.buttonHighlight{background-color:#db4865;color:#fff}#bmlt-tabs #day.btn.btn-primary.btn-sm.buttonLowlight{background-color:#93c3cd;color:#000}#bmlt-tabs .filterButton.btn.btn-primary.btn-sm.buttonHighlight{background-color:#db4865;color:#fff}#bmlt-tabs .filterButton.btn.btn-primary.btn-sm.buttonLowlight{background-color:#93c3cd;color:#000}#bmlt-tabs #day{color:#fff;background-color:#db4865}#bmlt-tabs .filterButton{color:#000;background-color:#93c3cd;margin-left:2px}#bmlt-tabs .rowHighlight{background-color:#db4865;color:#000}#bmlt-tabs .bmlt-header{padding:4px 0 0 4px;background-color:#35414f}#bmlt-tabs .bmlt-page{background-color:#35414f;padding:4px}#bmlt-tabs .tab-content{background-color:#35414f}#bmlt-tabs .nav-tabs{border-bottom:0}#bmlt-tabs .popover{max-width:800px}#bmlt-tabs #day.btn-sm,#bmlt-tabs .filterButton.btn-sm{padding:2px 10px;font-size:inherit;line-height:1.6}#bmlt-tabs #day{margin-right:2px}#bmlt-tabs .bmlt_tabs_title{font-size:24px;margin-bottom:10px;font-weight:400;color:#000}#bmlt-tabs .bmlt_tabs_sub_title{font-size:22px;margin-bottom:15px;font-weight:400;color:#666}#bmlt-tabs table{margin:0;border:0;table-layout:auto;width:100%}#bmlt-tabs #cities table.bmlt-table{background-color:#fff;margin:0;border:0}#bmlt-tabs tr.meeting-header td{padding:.5em .8em!important;color:rgba(0,0,0,.67);background-color:#93c3cd;font-size:15px;text-transform:uppercase;font-weight:600;border-top:0}@media (max-width:39.9375em){#bmlt-tabs .bmlt-header{display:block!important}#bmlt-tabs #day.btn-sm,#bmlt-tabs .filterButton.btn-sm{margin-bottom:4px}#bmlt-tabs .bmlt-dropdown-container{display:block;margin-left:0;margin-right:4px}#bmlt-tabs span.select2.select2-container{width:100%!important}#bmlt-tabs a#bmlt-formats,#bmlt-tabs a#map-button{border-radius:0}#bmlt-tabs a#bmlt-formats,#bmlt-tabs a#share-button{border-radius:0}#bmlt-tabs .nav-tabs>li>a{border-radius:0!important;margin-right:0!important}#bmlt-tabs .nav-tabs>li{float:none;border:1px solid #ddd}#bmlt-tabs .nav-tabs>li.active>a{border:none}#bmlt-tabs .nav-tabs>li.active>a,#bmlt-tabs .nav-tabs>li.active>a:focus,#bmlt-tabs .nav-tabs>li.active>a:hover,#bmlt-tabs .nav>li>a:focus,#bmlt-tabs .nav>li>a:hover{background:0 0;border:none}#bmlt-tabs .bmlt-column1{text-align:left;width:100%;vertical-align:top;border:0;padding-bottom:0;height:auto}#bmlt-tabs .bmlt-column2{text-align:left;width:100%;vertical-align:top;border:0;padding-bottom:0;height:auto}#bmlt-tabs .bmlt-column3{text-align:left!important;vertical-align:top!important;width:100%;border:0;height:auto}#bmlt-formats.btn-xs,#map-button.btn-xs,#share-button.btn-xs{padding:2px 7px!important;font-size:12px!important}#map-button.btn-xs,#share-button.btn-xs{display:-webkit-inline-box}#bmlt-tabs a#bmlt-formats{margin-top:10px}#bmlt-tabs .geo.show{display:-webkit-inline-box!important;margin-left:10px}#bmlt-tabs td.formats_description{display:none!important}}/*! Tablesaw - v2.0.2 - 2015-10-28* https://github.com/filamentgroup/tablesaw* Copyright (c) 2015 Filament Group; Licensed */table.tablesaw{empty-cells:show;max-width:100%;width:100%}.tablesaw{border-collapse:collapse;width:100%}.tablesaw{border:0;padding:0}.tablesaw td,.tablesaw th{box-sizing:border-box;padding:.5em .7em}.tablesaw thead tr:first-child th{padding-top:.9em;padding-bottom:.7em}.tablesaw-stack tbody tr{border-bottom:1px solid #dfdfdf}.tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label{display:none}.bmlt-map{height:500px}#byfield_embeddedMapPage{height:500px}.bmlt-observer{font-size:14px;font-weight:700;font-style:italic}.observerLine{margin-top:10px}@media only all{.tablesaw-stack td,.tablesaw-stack th{text-align:left;display:block}.tablesaw-stack tr{clear:both;display:table-row}.tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label{display:block;padding:0 .6em 0 0;width:30%;display:inline-block}.tablesaw-stack td .tablesaw-cell-label-top,.tablesaw-stack th .tablesaw-cell-label-top{display:block;padding:.4em 0;margin:.4em 0}.tablesaw-cell-label{display:block}.tablesaw-stack tbody th.group{margin-top:-1px}.tablesaw-stack th.group b.tablesaw-cell-label{display:none!important}}@media (max-width:39.9375em){.tablesaw-stack thead td,.tablesaw-stack thead th{display:none}.tablesaw-stack tbody td,.tablesaw-stack tbody th{clear:left;float:left;width:100%}.tablesaw-cell-label{vertical-align:top}.tablesaw-cell-content{max-width:67%;display:inline-block}.tablesaw-stack td:empty,.tablesaw-stack th:empty{display:none}th#meeting-details-title{display:table-cell;text-wrap:balance}}@media (min-width:40em){.tablesaw-stack tr{display:table-row}.tablesaw-stack td,.tablesaw-stack th,.tablesaw-stack thead td,.tablesaw-stack thead th{display:table-cell;margin:0}.tablesaw-stack td .tablesaw-cell-label,.tablesaw-stack th .tablesaw-cell-label{display:none!important}#meetingpage_map_td{width:25em}}.mapcontrolslabel{font-size:12px;cursor:pointer;margin:5px;text-align:left;display:block}.mapcontrolcontainer{background-color:#fff;border:2px solid #fff;cursor:pointer;margin-top:10px;margin-left:10px}.mapcontrols{color:#191919;font-family:Roboto,Arial,sans-serif;font-size:12px}.temporarilyClosed{font-size:16px;text-transform:uppercase;font-weight:700}.qrcode{text-align:center;display:inline-block}.meetsVirtually{font-size:16px;text-transform:uppercase;font-weight:700}.meeting-additional-info{font-weight:700;font-size:14px}.gm-svpc div img{position:relative!important}#meeting-details-table td{vertical-align:top}#meeting-details-table h4{margin-top:0}#meeting-details-title{font-size:1.5em}.bmlt-rtl{direction:rtl}#bmlt-header.bmlt-rtl{text-align:right}#nav-days.bmlt-rtl{float:right}#nav-days.bmlt-rtl li{float:right}#bmlt-tabs .bmlt-rtl .bmlt-column1{text-align:right}#bmlt-tabs .bmlt-rtl .bmlt-column2{text-align:right}.bmlt-rtl .marker_div_meeting{text-align:right!important}.bmlt-rtl #meeting-details-title{text-align:right}.bmlt-rtl #meeting-details-contents td{text-align:right!important}