Merge branch 'master' of http://git.roojs.com/roojs1
authorjohn <john@roojs.com>
Fri, 7 Dec 2018 04:05:27 +0000 (12:05 +0800)
committerjohn <john@roojs.com>
Fri, 7 Dec 2018 04:05:27 +0000 (12:05 +0800)
19 files changed:
Roo/bootstrap/NavGroup.js
Roo/bootstrap/NavHeaderbar.js
Roo/bootstrap/NavItem.js
Roo/bootstrap/NavSimplebar.js
Roo/bootstrap/TabGroup.js
Roo/bootstrap/TabPanel.js
css-bootstrap4/roojs-bootstrap-debug.css
css-bootstrap4/roojs-bootstrap-debug.css.map
css-bootstrap4/roojs-bootstrap.css
examples/bootstrap/TabPanel-ComboBox.js
examples/bootstrap/homepage.bjs
examples/bootstrap/homepage.js
examples/bootstrap4/TabPanel-ComboBox.html
examples/bootstrap4/homepage.html
examples/bootstrap4/nested_dialog.html
examples/bootstrap4/sample.html
roojs-bootstrap-debug.js
roojs-bootstrap.js
scss/roojs-bootstrap/carousel.scss

index 15e239e..dc4f41a 100644 (file)
@@ -58,11 +58,13 @@ Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
             cls: 'nav' 
         };
         if (Roo.bootstrap.version == 4) {
-           if (this.type == 'pills') {
-               cfg.cls = ' nav-pills';
+           if (['tabs','pills'].indexOf(this.type) != -1) {
+               cfg.cls += ' nav-' + this.type; 
+           } else {
+               cfg.cls += ' navbar-nav';
            }
        } else {
-           if (['tabs','pills'].indexOf(this.type)!==-1) {
+           if (['tabs','pills'].indexOf(this.type) != -1) {
                cfg.cls += ' nav-' + this.type
            } else {
                if (this.type !== 'nav') {
index a0934f0..3f2fc98 100644 (file)
@@ -99,6 +99,12 @@ Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
         
         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
         
+        if (['light','white'].indexOf(this.weight) > -1) {
+           cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
+       }
+       cfg.cls += ' bg-' + this.weight;
+        
+        
         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
             
index cc2ce29..94ba75a 100644 (file)
@@ -10,6 +10,8 @@
  * @extends Roo.bootstrap.Component
  * Bootstrap Navbar.NavItem class
  * @cfg {String} href  link to
+ * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
+
  * @cfg {String} html content of button
  * @cfg {String} badge text inside badge
  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
@@ -75,13 +77,16 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
     disabled : false,
     animateRef : false,
     was_active : false,
+    button_weight : '',
+    button_outline : false,
+    
+    navLink: false,
     
     getAutoCreate : function(){
          
         var cfg = {
             tag: this.tag,
             cls: 'nav-item'
-            
         };
         
         if (this.active) {
@@ -90,6 +95,27 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
         if (this.disabled) {
             cfg.cls += ' disabled';
         }
+       
+       // BS4 only?
+       if (this.button_weight.length) {
+           cfg.tag = this.href ? 'a' : 'button';
+           cfg.html = this.html || '';
+           cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
+           if (this.href) {
+               cfg.href = this.href;
+           }
+           if (this.fa) {
+                cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
+            }
+           
+           // menu .. should add dropdown-menu class - so no need for carat..
+           
+           if (this.badge !== '') {
+                 
+                cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
+            }
+           return cfg;
+       }
         
         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
             cfg.cn = [
@@ -103,10 +129,10 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
                cfg.cn[0].cls = 'nav-link';
            }
             if (this.icon) {
-                cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>'
+                cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
             }
            if (this.fa) {
-                cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>'
+                cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
             }
             if(this.glyphicon) {
                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
@@ -135,7 +161,9 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
            this.tag = 'div';
        }
        
-        return Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
+        var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
+       this.navLink = this.el.select('.nav-link',true).first();
+       return ret;
     },
       
     
@@ -240,8 +268,14 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
         
         if (!state ) {
             this.el.removeClass('active');
+           this.navLink ? this.navLink.removeClass('active') : false;
         } else if (!this.el.hasClass('active')) {
+           
             this.el.addClass('active');
+           if (Roo.bootstrap.version == 4 && this.navLink ) {
+               this.navLink.addClass('active');
+           }
+           
         }
         if (fire) {
             this.fireEvent('changed', this, state);
index c7f8ca5..5b1dd0f 100644 (file)
@@ -55,7 +55,7 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
         
         var cfg = {
             tag : this.tag || 'div',
-            cls : 'navbar navbar-expand-lg'
+            cls : 'navbar navbar-expand-lg roo-navbar-simple'
         };
        if (['light','white'].indexOf(this.weight) > -1) {
            cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
@@ -69,9 +69,9 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
        
        // i'm not actually sure these are really used - normally we add a navGroup to a navbar
        
-       if (Roo.bootstrap.version == 4) {
-           return cfg;
-       }
+       //if (Roo.bootstrap.version == 4) {
+       //    return cfg;
+       //}
        
         cfg.cn = [
             {
@@ -82,7 +82,7 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
         
          
         this.type = this.type || 'nav';
-        if (['tabs','pills'].indexOf(this.type)!==-1) {
+        if (['tabs','pills'].indexOf(this.type) != -1) {
             cfg.cn[0].cls += ' nav-' + this.type
         
         
@@ -96,7 +96,7 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
         
         
         
-        if (['stacked','justified'].indexOf(this.arrangement)!==-1) {
+        if (['stacked','justified'].indexOf(this.arrangement) != -1) {
             cfg.cn[0].cls += ' nav-' + this.arrangement;
         }
         
index f00627d..a0e4387 100644 (file)
@@ -203,7 +203,7 @@ Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
     {
         if(this.transition || typeof(pan) == 'undefined'){
             Roo.log("waiting for the transitionend");
-            return;
+            return false;
         }
         
         if (typeof(pan) == 'number') {
@@ -235,22 +235,28 @@ Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
         
         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
             
+            //class="carousel-item carousel-item-next carousel-item-left"
+            
             this.transition = true;
             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
             var lr = dir == 'next' ? 'left' : 'right';
             pan.el.addClass(dir); // or prev
+            pan.el.addClass('carousel-item-' + dir); // or prev
             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
             cur.el.addClass(lr); // or right
             pan.el.addClass(lr);
+            cur.el.addClass('carousel-item-' +lr); // or right
+            pan.el.addClass('carousel-item-' +lr);
+            
             
             var _this = this;
             cur.el.on('transitionend', function() {
                 Roo.log("trans end?");
                 
-                pan.el.removeClass([lr,dir]);
+                pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
                 pan.setActive(true);
                 
-                cur.el.removeClass([lr]);
+                cur.el.removeClass([lr, 'carousel-item-' + lr]);
                 cur.setActive(false);
                 
                 _this.transition = false;
index 8704be0..c92294b 100644 (file)
@@ -55,10 +55,12 @@ Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
     href : '',
     
     getAutoCreate : function(){
-        var cfg = {
+        
+       
+       var cfg = {
             tag: 'div',
             // item is needed for carousel - not sure if it has any effect otherwise
-            cls: 'tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
+            cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
             html: this.html || ''
         };
         
@@ -70,6 +72,7 @@ Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
             cfg.tabId = this.tabId;
         }
         
+       
         
         return cfg;
     },
index 5bc51e4..b115eb9 100644 (file)
@@ -555,7 +555,7 @@ table.fc-border-separate {
   position: absolute;
   display: block;
   top: 50%;
-  color: #fff;
+  color: #343a40;
   z-index: 100;
   cursor: pointer;
   padding: 10px;
@@ -566,7 +566,7 @@ table.fc-border-separate {
   position: absolute;
   display: block;
   top: 50%;
-  color: #fff;
+  color: #343a40;
   z-index: 100;
   cursor: pointer;
   padding: 10px;
@@ -579,6 +579,16 @@ table.fc-border-separate {
 .carousel-inner .tab-pane.clickable {
   cursor: pointer;
 }
+.tab-content > .carousel-inner {
+  padding: 16px 35px;
+  background: #f8f9fa;
+}
+.tab-content > .carousel-inner > .tab-pane {
+  display: none;
+}
+.tab-content > .carousel-inner > .active {
+  display: block;
+}
 /*
  *
  * From https://github.com/flatlogic/awesome-bootstrap-checkbox
@@ -2512,6 +2522,7 @@ table td .navbar {
 }
 /** not sure if these are needed with is-valid / is-invalid.. */
 /*
+ * DISABLED probably needs deleting...
  .roo-radio-set.has-warning {
  .roo-radio-set-items label,
  .roo-radio-set-label {
index 85d3432..e86b285 100644 (file)
@@ -1 +1 @@
-{"version":3,"file":"\/home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/css-bootstrap4\/roojs-bootstrap-debug.css.map","sourceRoot":"..\/scss\/roojs-bootstrap\/","sources":["(stdin)","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/alert.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/calendar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/carousel.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/checkbox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/combobox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/datepicker.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/document-manager.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/document-slider.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/document-viewer.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/dropdown.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/input.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/label-pill.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/layout.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/list-group.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/mask.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/masonary-squares.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/modal.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/nav-progress-bar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/nav-tabs.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/navbar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/numberbox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/pull-xs-right.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/radio-set.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/secure-pass.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/select2.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/sidebar-nav.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/sticky-footer.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/table.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/top-bar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/tweaks.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/upload-cropbox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/phone-input.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/money-field.scss"],"names":[],"mappings":"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AAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,UAAA,AAAA,CC3jCA,qCAAA,iBAAA,AAAA,CAIA,mCAAA,gBAAA,AAAA,CAIA,2CAAA,gBAAA,AAAA,CAIA,oCAAA,+EAAA,AAAA,CAOA,yCAAA,yEAAA,AAAA,CAQJ,2EAAA,mFAAA,AAAA,CAKA,2EAAA,mFAAA,AAAA,CAKA,yEAAA,mFAAA,AAAA"}
\ No newline at end of file
+{"version":3,"file":"\/home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/css-bootstrap4\/roojs-bootstrap-debug.css.map","sourceRoot":"..\/scss\/roojs-bootstrap\/","sources":["(stdin)","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/alert.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/calendar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/carousel.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/checkbox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/combobox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/datepicker.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/document-manager.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/document-slider.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/document-viewer.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/dropdown.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/input.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/label-pill.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/layout.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/list-group.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/mask.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/masonary-squares.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/modal.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/nav-progress-bar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/nav-tabs.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/navbar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/numberbox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/pull-xs-right.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/radio-set.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/secure-pass.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/select2.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/sidebar-nav.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/sticky-footer.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/table.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/top-bar.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/tweaks.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/upload-cropbox.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/phone-input.scss","home\/alan\/gitlive\/roojs1\/buildSDK\/..\/..\/roojs1\/scss\/roojs-bootstrap\/money-field.scss"],"names":[],"mappings":"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AAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,0CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,2CAAA,AAAA,CAIA,SAAA,UAAA,AAAA,CC3jCA,qCAAA,iBAAA,AAAA,CAIA,mCAAA,gBAAA,AAAA,CAIA,2CAAA,gBAAA,AAAA,CAIA,oCAAA,+EAAA,AAAA,CAOA,yCAAA,yEAAA,AAAA,CAQJ,2EAAA,mFAAA,AAAA,CAKA,2EAAA,mFAAA,AAAA,CAKA,yEAAA,mFAAA,AAAA"}
\ No newline at end of file
index f095e92..a7ce7a5 100644 (file)
@@ -1 +1 @@
-.alert{padding-left:30px;margin-top:20px;margin-left:15px;position:relative}.alert > .fa,.alert > .glyphicon{position:absolute;left:-15px;top:-15px;width:35px;height:35px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;line-height:35px;text-align:center;background:inherit;border:inherit}.fc{direction:ltr;text-align:left;margin:0;font-family:Lucida Sans, Arial, sans-serif}.fc table{border-collapse:collapse;border-spacing:0}html .fc,.fc table{font-size:1em}.fc td,.fc th{padding:0;vertical-align:top;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none}.fc-header td{white-space:nowrap}.fc-header-left{width:25%;text-align:left}.fc-header-center{text-align:center}.fc-header-right{width:25%;text-align:right}.fc-header-title{display:inline-block;vertical-align:top}.fc-header-title h2{margin-top:0;white-space:nowrap;font-size:1.5em;font-family:Lucida Sans, Arial, sans-serif;font-weight:bold;line-height:normal;margin:0}.fc .fc-header-space{padding-left:10px}.fc-header .fc-button{margin-bottom:1em;vertical-align:top}.fc-header .fc-button{margin-right:-1px}.fc-header .fc-corner-right,.fc-header .ui-corner-right{margin-right:0;}.fc-header .fc-state-hover,.fc-header .ui-state-hover{z-index:2}.fc-header .fc-state-down{z-index:3}.fc-header .fc-state-active,.fc-header .ui-state-active{z-index:4}.fc-content{clear:both;zoom:1;}.fc-view{width:100%;overflow:hidden}.fc-widget-header,.fc-widget-content{border:1px solid #6c757d}.fc-state-highlight{background:#ffc107}.fc-cell-overlay{background:#17a2b8;opacity:0.3;filter:alpha(opacity=30);}.fc-button{position:relative;display:inline-block;padding:0 0.6em;overflow:hidden;height:1.9em;line-height:1.9em;white-space:nowrap;cursor:pointer}.fc-state-default{border:1px solid}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc-text-arrow{margin:0 0.1em;font-size:2em;font-family:"Courier New", Courier, monospace;vertical-align:baseline;}.fc-button-prev .fc-text-arrow,.fc-button-next .fc-text-arrow{font-weight:bold}.fc-button .fc-icon-wrap{position:relative;float:left;top:50%}.fc-button .ui-icon{position:relative;float:left;margin-top:-50%;*margin-top:0;*top:-50%}.fc-state-default{background-color:#6c757d;background-image:-moz-linear-gradient(top, #fff, #6c757d);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#6c757d));background-image:-webkit-linear-gradient(top, #fff, #6c757d);background-image:-o-linear-gradient(top, #fff, #6c757d);background-image:linear-gradient(to bottom, #fff, #6c757d);background-repeat:repeat-x;border-color:#6c757d #6c757d #6c757d;border-color:#e9ecef #e9ecef #adb5bd;color:#343a40}.fc-state-hover,.fc-state-down,.fc-state-active,.fc-state-disabled{color:#343a40;background-color:#6c757d}.fc-state-hover{color:#343a40;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear}.fc-state-down,.fc-state-active{background-color:#6c757d;background-image:none;outline:0;box-shadow:inset 0 2px 4px #e9ecef, 0 1px 2px #e9ecef}.fc-state-disabled{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);box-shadow:none}.fc-event-container > *{z-index:8}.fc-event-container > .ui-draggable-dragging,.fc-event-container > .ui-resizable-resizing{z-index:9}.fc-event{border:1px solid #007bff;background-color:#007bff;color:#fff;font-size:0.85em;cursor:default}a.fc-event{text-decoration:none}a.fc-event,.fc-event-draggable{cursor:pointer}.fc-rtl .fc-event{text-align:right}.fc-event-inner{width:100%;height:100%;overflow:hidden}.fc-event-time,.fc-event-title{padding:0 1px;overflow:hidden;white-space:nowrap}.fc .ui-resizable-handle{display:block;position:absolute;z-index:99999;overflow:hidden;font-size:300%;line-height:50%;}.fc-event-hori{border-width:1px 0;margin-bottom:1px}.fc-ltr .fc-event-hori.fc-event-start,.fc-rtl .fc-event-hori.fc-event-end{border-left-width:1px;border-top-left-radius:3px;border-bottom-left-radius:3px}.fc-ltr .fc-event-hori.fc-event-end,.fc-rtl .fc-event-hori.fc-event-start{border-right-width:1px;border-top-right-radius:3px;border-bottom-right-radius:3px}.fc-event-hori .ui-resizable-e{top:0 !important;right:-3px !important;width:7px !important;height:100% !important;cursor:e-resize}.fc-event-hori .ui-resizable-w{top:0 !important;left:-3px !important;width:7px !important;height:100% !important;cursor:w-resize}.fc-event-hori .ui-resizable-handle{_padding-bottom:14px;}table.fc-border-separate{border-collapse:separate}.fc-border-separate th,.fc-border-separate td{border-width:1px 0 0 1px}.fc-border-separate th.fc-last,.fc-border-separate td.fc-last{border-right-width:1px}.fc-border-separate tr.fc-last th,.fc-border-separate tr.fc-last td{border-bottom-width:1px}.fc-border-separate tbody tr.fc-first td,.fc-border-separate tbody tr.fc-first th{border-top-width:0}.fc-grid th{text-align:center}.fc .fc-week-number{width:22px;text-align:center}.fc .fc-week-number div{padding:0 2px}.fc-grid .fc-day-number{float:right;padding:0 2px}.fc-grid .fc-other-month .fc-day-number{opacity:0.3;filter:alpha(opacity=30);}.fc-grid .fc-day-content{clear:both;padding:2px 2px 1px;}.fc-grid .fc-event-time{font-weight:bold}.fc-rtl .fc-grid .fc-day-number{float:left}.fc-rtl .fc-grid .fc-event-time{float:right}.fc-agenda table{border-collapse:separate}.fc-agenda-days th{text-align:center}.fc-agenda .fc-agenda-axis{width:50px;padding:0 4px;vertical-align:middle;text-align:right;white-space:nowrap;font-weight:normal}.fc-agenda .fc-week-number{font-weight:bold}.fc-agenda .fc-day-content{padding:2px 2px 1px}.fc-agenda-days .fc-agenda-axis{border-right-width:1px}.fc-agenda-days .fc-col0{border-left-width:0}.fc-agenda-allday th{border-width:0 1px}.fc-agenda-allday .fc-day-content{min-height:34px;_height:34px}.fc-agenda-divider-inner{height:2px;overflow:hidden}.fc-widget-header .fc-agenda-divider-inner{background:#ced4da}.fc-agenda-slots th{border-width:1px 1px 0}.fc-agenda-slots td{border-width:1px 0 0;background:none}.fc-agenda-slots td div{height:20px}.fc-agenda-slots tr.fc-slot0 th,.fc-agenda-slots tr.fc-slot0 td{border-top-width:0}.fc-agenda-slots tr.fc-minor th,.fc-agenda-slots tr.fc-minor td{border-top-style:dotted}.fc-agenda-slots tr.fc-minor th.ui-widget-header{*border-top-style:solid;}.fc-event-vert{border-width:0 1px}.fc-event-vert.fc-event-start{border-top-width:1px;border-top-left-radius:3px;border-top-right-radius:3px}.fc-event-vert.fc-event-end{border-bottom-width:1px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.fc-event-vert .fc-event-time{white-space:nowrap;font-size:10px}.fc-event-vert .fc-event-inner{position:relative;z-index:2}.fc-event-vert .fc-event-bg{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0.25;filter:alpha(opacity=25)}.fc .ui-draggable-dragging .fc-event-bg,.fc-select-helper .fc-event-bg{display:none\9;}.fc-event-vert .ui-resizable-s{bottom:0 !important;width:100% !important;height:8px !important;overflow:hidden !important;line-height:8px !important;font-size:11px !important;font-family:monospace;text-align:center;cursor:s-resize}.fc-agenda .ui-resizable-resizing{_overflow:hidden}.clear{clear:both}.carousel-bullets{height:17px;bottom:20px;width:100%;text-align:center;z-index:1000;position:absolute;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";-moz-opacity:1;-khtml-opacity:1;opacity:1;-webkit-transition:opacity 0.2s ease-out;-moz-transition:opacity 0.2s ease-out;-o-transition:opacity 0.2s ease-out;-ms-transition:opacity 0.2s ease-out;-webkit-transform:translateZ(5px)}.carousel-bullets > .bullet{cursor:pointer;position:relative !important;background:rgba(0, 0, 0, 0.5) !important;-webkit-border-radius:10px;border-radius:10px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;width:6px !important;height:6px !important;border:5px solid rgba(0, 0, 0, 0) !important;display:inline-block;margin-right:2px !important;margin-bottom:0px !important;-webkit-transition:background-color 0.2s, border-color 0.2s;-moz-transition:background-color 0.2s, border-color 0.2s;-o-transition:background-color 0.2s, border-color 0.2s;-ms-transition:background-color 0.2s, border-color 0.2s;transition:background-color 0.2s, border-color 0.2s;float:none !important;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}.carousel-bullets > .bullet:hover,.carousel-bullets > .bullet.selected{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:rgba(255, 255, 255, 1) !important;width:6px !important;height:6px !important;border:5px solid rgba(0, 0, 0, 1) !important}.carousel-inner > .carousel-arrow > .carousel-prev{position:absolute;display:block;top:50%;color:#fff;z-index:100;cursor:pointer;padding:10px;margin-top:-22px;left:0}.carousel-inner > .carousel-arrow > .carousel-next{position:absolute;display:block;top:50%;color:#fff;z-index:100;cursor:pointer;padding:10px;margin-top:-22px;right:0}.carousel-inner > .carousel-arrow > .carousel-prev > i,.carousel-inner > .carousel-arrow > .carousel-next > i{font-size:24px}.carousel-inner .tab-pane.clickable{cursor:pointer}.checkbox label{display:inline-block;position:relative;padding-left:5px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox label::after{display:inline-block;position:absolute;width:16px;height:16px;left:0;top:0;margin-left:-20px;padding-left:3px;padding-top:1px;font-size:11px;color:#495057}.checkbox input[type="checkbox"]{display:none}.checkbox input[type="checkbox"]:checked + label::after{font-size:18px;padding-top:0px;font-family:'Font Awesome 5 Free 400';font-weight:900;color:#28a745;content:"\f14a"}.checkbox input[type="checkbox"]:not(:checked) + label::after{font-size:18px;padding-top:0px;font-family:'Font Awesome 5 Free 400';font-weight:900;content:"\f0c8"}.checkbox input[type="checkbox"]:disabled + label{opacity:0.65}.checkbox input[type="checkbox"]:disabled + label::before{background-color:#ced4da;cursor:not-allowed}.checkbox.checkbox-circle label::before{border-radius:50%}.checkbox-primary input[type="checkbox"]:checked + label::before{background-color:#007bff;border-color:#007bff}.checkbox-primary input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-danger input[type="checkbox"]:checked + label::before{background-color:#dc3545;border-color:#dc3545}.checkbox-danger input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-info input[type="checkbox"]:checked + label::before{background-color:#17a2b8;border-color:#17a2b8}.checkbox-info input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-warning input[type="checkbox"]:checked + label::before{background-color:#ffc107;border-color:#ffc107}.checkbox-warning input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-success input[type="checkbox"]:checked + label::before{background-color:#28a745;border-color:#28a745}.checkbox-success input[type="checkbox"]:checked + label::after{color:#fff}.radio label{display:inline-block;position:relative;padding-left:5px}.radio label::before{content:"";display:inline-block;position:absolute;width:17px;height:17px;left:0;margin-left:-20px;border:1px solid #6c757d;border-radius:50%;background-color:#fff;-webkit-transition:border 0.15s ease-in-out;-o-transition:border 0.15s ease-in-out;transition:border 0.15s ease-in-out}.radio label::after{display:inline-block;position:absolute;content:" ";width:11px;height:11px;left:3px;top:3px;margin-left:-20px;border-radius:50%;background-color:#fff;-webkit-transform:scale(0, 0);-ms-transform:scale(0, 0);-o-transform:scale(0, 0);transform:scale(0, 0);-webkit-transition:-webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);-moz-transition:-moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);-o-transition:-o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);transition:transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33)}.radio input[type="radio"]{display:none}.radio input[type="radio"]:checked + label::after{-webkit-transform:scale(1, 1);-ms-transform:scale(1, 1);-o-transform:scale(1, 1);transform:scale(1, 1);background-color:#495057}.radio input[type="radio"]:disabled + label{opacity:0.65}.radio input[type="radio"]:disabled + label::before{cursor:not-allowed}.radio-primary input[type="radio"] + label::after{background-color:#fff}.radio-primary input[type="radio"]:checked + label::before{border-color:#007bff}.radio-primary input[type="radio"]:checked + label::after{background-color:#007bff}.radio-danger input[type="radio"] + label::after{background-color:#dc3545}.radio-danger input[type="radio"]:checked + label::before{border-color:#dc3545}.radio-danger input[type="radio"]:checked + label::after{background-color:#dc3545}.radio-info input[type="radio"] + label::after{background-color:#fff}.radio-info input[type="radio"]:checked + label::before{border-color:#17a2b8}.radio-info input[type="radio"]:checked + label::after{background-color:#17a2b8}.radio-warning input[type="radio"] + label::after{background-color:#fff}.radio-warning input[type="radio"]:checked + label::before{border-color:#ffc107}.radio-warning input[type="radio"]:checked + label::after{background-color:#ffc107}.radio-success input[type="radio"] + label::after{background-color:#fff}.radio-success input[type="radio"]:checked + label::before{border-color:#28a745}.radio-success input[type="radio"]:checked + label::after{background-color:#28a745}.checkbox.checkbox-inline,.radio.radio-inline{margin-top:0}.combobox-container{margin-bottom:5px;*zoom:1;display:inline-table}.combobox-container:before,.combobox-container:after{display:table;content:""}.combobox-container:after{}.combobox-container input,.combobox-container .uneditable-input{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.combobox-container input:focus,.combobox-container .uneditable-input:focus{position:relative;z-index:2}.combobox-container .uneditable-input{border-left-color:#6c757d}.combobox-container .add-on{float:left;display:inline-block;width:auto;min-width:16px;height:inherit !important;margin-right:-1px;padding:4px 5px;font-weight:normal;color:#6c757d;text-align:center;text-shadow:0 1px 0 #fff;background-color:#6c757d;border:1px solid #6c757d;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.combobox-container .active{background-color:#007bff;color:#fff}.combobox-container input,.combobox-container .uneditable-input{float:left;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.combobox-container .uneditable-input{border-left-color:#ced4da;border-right-color:#6c757d}.combobox-container .add-on{margin-right:0;margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.combobox-container input:first-child{*margin-left:-160px}.combobox-container input:first-child + .add-on{*margin-left:-21px}.combobox-container select{display:inline-block;width:0;height:0;border:0;padding:0;margin:0;text-indent:-99999px;*text-indent:0}.form-search .combobox-container,.form-inline .combobox-container{display:inline-block;margin-bottom:0;vertical-align:top}.form-search .combobox-container .add-on,.form-inline .combobox-container .add-on{vertical-align:middle}.combobox-selected .combobox-clear{display:inline-block}.combobox-selected .caret{display:none}.combobox-clear{display:none;width:14px;height:14px;line-height:14px;vertical-align:top;opacity:0.3;filter:alpha(opacity=30)}.dropdown:hover .combobox-clear,.open.dropdown .combobox-clear{opacity:1;filter:alpha(opacity=100)}.btn .combobox-clear{margin-top:1px;margin-left:1px}.btn:hover .combobox-clear,.open.btn-group .combobox-clear{opacity:1;filter:alpha(opacity=100)}.typeahead-long{max-height:300px;overflow-y:auto}.control-group.error .combobox-container .add-on{color:#dc3545;border-color:#dc3545}.control-group.error .combobox-container .caret{border-top-color:#dc3545}.control-group.warning .combobox-container .add-on{color:#ffc107;border-color:#ffc107}.control-group.warning .combobox-container .caret{border-top-color:#ffc107}.control-group.success .combobox-container .add-on{color:#28a745;border-color:#28a745}.control-group.success .combobox-container .caret{border-top-color:#28a745}.btn .combobox-clear [class^="icon-"]{line-height:1.4em}.combobox-container .dropdown-menu{border-radius:0;padding:0;border:1px solid #007bff;border-top:none}.roo-select2-container .dropdown-menu{border:1px solid #007bff}.dropdown-menu .active{background:#007bff;color:#fff}.dropdown-menu .active label{color:#fff}.dropdown-menu .roo-select2-result{padding:3px 7px 4px;margin:0;cursor:pointer;min-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.roo-select2-container,.roo-select2-choices .roo-select2-search-field{width:100%}.roo-select2-container .x-combo-noedit{cursor:pointer;background-color:#fff}.roo-select2-container .x-combo-noedit[disabled]{cursor:not-allowed;background-color:#ced4da}.roo-combobox-tickable .roo-select2-choices{border:none;background-image:none}.roo-combobox-tickable .roo-select2-result label{width:100%}.dropdown-menu{z-index:20002 !important}.dropdown-menu .checkbox label{width:100%}.roo-select2-container-multi .dropdown-menu .roo-select2-result .checkbox{margin-top:0px;margin-bottom:0px}.dropdown-menu .roo-select2-result .checkbox{margin-top:3px;margin-bottom:3px}.roo-select2-container .input-group-addon{padding:6px 12px;border:1px solid #ced4da;border-left:0px}.roo-select2-container .roo-removable{position:relative}.roo-select2-container .roo-removable .roo-combo-removable-btn{position:absolute;right:10px;z-index:2;top:5px}.roo-select2-container .has-feedback .roo-combo-removable-btn{position:absolute;right:35px;z-index:2;top:5px}.has-warning .roo-select2-container-multi{border:1px solid #ffc107}.roo-ios-select{width:100%}.datepicker{padding:8px 12px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr;font-size:13px;}.datepicker-inline{width:220px}.datepicker.datepicker-rtl{direction:rtl}.datepicker.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown.bottom:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #6c757d;border-bottom-color:#e9ecef;position:absolute;top:-7px;left:7px}.datepicker-dropdown.bottom:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.datepicker-dropdown.top:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #6c757d;border-bottom:0;border-top-color:#e9ecef;position:absolute;bottom:-7px;left:6px}.datepicker-dropdown.top:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;border-bottom:0;position:absolute;bottom:-6px;left:7px}.datepicker-dropdown.bottom-right:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #6c757d;border-bottom-color:#e9ecef;position:absolute;top:-7px;left:7px}.datepicker-dropdown.bottom-right:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.datepicker-dropdown.bottom-left:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #6c757d;border-bottom-color:#e9ecef;position:absolute;top:-7px;left:260px}.datepicker-dropdown.bottom-left:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:261px}.datepicker-dropdown.top-right:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #6c757d;border-top-color:#e9ecef;position:absolute;bottom:-7px;left:6px}.datepicker-dropdown.top-right:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:7px}.datepicker-dropdown.top-left:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #6c757d;border-top-color:#e9ecef;position:absolute;bottom:-7px;left:260px}.datepicker-dropdown.top-left:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:261px}.datepicker > div{display:none}.datepicker.days div.datepicker-days{display:block}.datepicker.months div.datepicker-months{display:block}.datepicker.years div.datepicker-years{display:block}.datepicker table{margin:0}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day:hover{background:#ced4da;cursor:pointer}.datepicker table tr td.old,.datepicker table tr td.new{color:#ced4da}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:none;color:#ced4da;cursor:default}.datepicker table tr td.today,.datepicker table tr td.today:hover,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover{background-color:#ffc107;background-image:-moz-linear-gradient(top, #ffc107, #ffc107);background-image:-ms-linear-gradient(top, #ffc107, #ffc107);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffc107), to(#ffc107));background-image:-webkit-linear-gradient(top, #ffc107, #ffc107);background-image:-o-linear-gradient(top, #ffc107, #ffc107);background-image:linear-gradient(top, #ffc107, #ffc107);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$brand-warning', endColorstr='$brand-warning', GradientType=0);border-color:#ffc107 #ffc107 #ffc107;border-color:#e9ecef #e9ecef #adb5bd;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.datepicker table tr td.today:hover,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today:active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today[disabled],.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today.disabled:hover[disabled]{background-color:#ffc107}.datepicker table tr td.today:active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:hover.active{background-color:#ffc107}.datepicker table tr td.active,.datepicker table tr td.active:hover,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover{background-color:#007bff;background-image:-moz-linear-gradient(top, #1a88ff, #007bff);background-image:-ms-linear-gradient(top, #1a88ff, #007bff);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#1a88ff), to(#007bff));background-image:-webkit-linear-gradient(top, #1a88ff, #007bff);background-image:-o-linear-gradient(top, #1a88ff, #007bff);background-image:linear-gradient(top, #1a88ff, #007bff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='lighten($brand-primary, 5%)', endColorstr='$brand-primary', GradientType=0);border-color:#007bff #007bff #0062cc;border-color:#e9ecef #e9ecef #adb5bd;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 #adb5bd}.datepicker table tr td.active:hover,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active[disabled],.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active.disabled:hover[disabled]{background-color:#007bff}.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active{background-color:#0062cc}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker table tr td span:hover{background:#ced4da}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:none;color:#6c757d;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover{background-color:#007bff;background-image:-moz-linear-gradient(top, #1a88ff, #007bff);background-image:-ms-linear-gradient(top, #1a88ff, #007bff);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#1a88ff), to(#007bff));background-image:-webkit-linear-gradient(top, #1a88ff, #007bff);background-image:-o-linear-gradient(top, #1a88ff, #007bff);background-image:linear-gradient(top, #1a88ff, #007bff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='lighten($brand-primary, 5%)', endColorstr='$brand-primary', GradientType=0);border-color:#007bff #007bff #0062cc;border-color:#e9ecef #e9ecef #adb5bd;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 #adb5bd}.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active[disabled],.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active.disabled:hover[disabled]{background-color:#007bff}.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active{background-color:#0062cc}.datepicker table tr td span.old{color:#6c757d}.datepicker th.switch{width:145px}.datepicker thead tr:first-child th,.datepicker tfoot tr:first-child th{cursor:pointer}.datepicker thead tr:first-child th:hover,.datepicker tfoot tr:first-child th:hover{background:#ced4da}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.datepicker thead tr:first-child th.cw{cursor:default;background-color:transparent}.input-append.date .add-on i,.input-prepend.date .add-on i{display:block;cursor:pointer;width:16px;height:16px}.datepicker .datepicker-time td span{display:block;width:47px;height:54px;line-height:54px;float:left;margin:2px;cursor:pointer;border-radius:4px}.datepicker .datepicker-time td span.timepicker-hour,.datepicker .datepicker-time td span.timepicker-minute{width:100%;font-weight:bold;font-size:1.2em}.roo-document-manager-selector{visibility:hidden;height:0px}.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{position:relative;float:left;width:25%;padding-left:5px;height:100px;max-height:100px;margin-top:10px;margin-left:10px}.roo-document-manager-preview.wide{width:50%}.roo-document-manager-thumb,.roo-document-manager-upload-btn{width:100%;height:100px;line-height:100px;max-height:100px;border:1px solid #ced4da;-webkit-box-shadow:1px 0px 5px 0px fade(#6c757d, 75%);-moz-box-shadow:1px 0px 5px 0px fade(#6c757d, 75%);box-shadow:1px 0px 5px 0px fade(#6c757d, 75%)}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{width:100%;line-height:98px;text-align:center;vertical-align:middle;color:#6c757d;font-size:2.5em}.roo-document-manager-thumb > i.fa{font-size:2.5em}.roo-document-manager-thumb > img{width:100%;max-height:100%;text-align:center;vertical-align:middle;padding-bottom:5px}.roo-document-manager-preview > .close{position:absolute;top:0px;right:3px;font-size:20px;opacity:1}.roo-document-manager-preview > .close:hover{color:#343a40}.roo-document-manager-preview.disabled > .roo-document-manager-thumb > img{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-o-filter:grayscale(100%);-ms-filter:grayscale(100%);filter:grayscale(100%)}.roo-document-manager-preview.disabled > .close{display:none !important}.roo-document-manager-preview > .roo-document-manager-thumb > .fa{position:absolute;left:-5px;top:-5px;width:25px;height:25px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;line-height:25px;text-align:center;background-color:#fff;font-size:1.8em;z-index:1}.roo-document-manager-preview > .roo-document-manager-thumb.bottom > .fa{top:inherit;bottom:-5px}.roo-document-manager-preview > .roo-document-manager-thumb.primary > .fa{color:#007bff}.roo-document-manager-preview > .roo-document-manager-thumb.border-primary{border:3px solid #007bff}.roo-document-manager-preview.disabled > .roo-document-manager-thumb.primary > .fa{color:#495057}.roo-document-manager-preview.disabled > .roo-document-manager-thumb.border-primary{border:none}@media (min-width:768px){.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{height:200px;max-height:200px}.roo-document-manager-thumb,.roo-document-manager-upload-btn{line-height:200px;height:200px;max-height:200px}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{line-height:198px}}@media (min-width:992px){.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{width:8.33333333%;height:80px;max-height:80px}.roo-document-manager-preview.wide{width:16.66666666%}.roo-document-manager-thumb,.roo-document-manager-upload-btn{line-height:80px;height:80px;max-height:80px}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{line-height:78px}}@media (min-width:1200px){.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{width:8.33333333%;height:100px;max-height:100px}.roo-document-manager-preview.wide{width:16.66666666%}.roo-document-manager-thumb,.roo-document-manager-upload-btn{line-height:100px;height:100px;max-height:100px}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{line-height:98px}}.document-slider-dialog .modal-body{padding:0px}.roo-document-slider-header{background-color:#adb5bd}.roo-document-slider-header .roo-document-slider-header-title{width:80%;margin:0 auto;padding:10px 0;color:#fff;font-weight:bold;text-align:center}.roo-document-slider-body{background-color:#fff;width:100%;height:450px;position:relative;overflow:hidden}.roo-document-slider-body .roo-document-slider-thumb{position:absolute;width:80%;height:100%;top:50%;left:50%;transform:translate(-50%, -50%);box-sizing:border-box;border:1px solid #666;box-shadow:0 0 0 1000px #adb5bd;text-align:center;vertical-align:middle;overflow:auto;cursor:move}.roo-document-slider-body .roo-document-slider-image{width:100%}.roo-document-slider-prev{position:absolute;top:0;left:0;text-align:center;width:10%;height:100%}.roo-document-slider-next{position:absolute;top:0;right:0;text-align:center;width:10%;height:100%}.roo-document-slider-prev > i,.roo-document-slider-next > i{position:relative;top:50%;transform:translateY(-50%);cursor:pointer;font-size:2em}.document-viewer-dialog .modal-dialog{margin:0px auto}.document-viewer-dialog .modal-header,.document-viewer-dialog .modal-footer{padding-top:5px;padding-bottom:5px}.document-viewer-dialog .modal-body{padding:0px}.roo-document-viewer-body{background-color:#fff;width:100%;height:450px;max-height:450px;position:relative;overflow:hidden;cursor:move}.roo-document-viewer-body .roo-document-viewer-thumb{position:absolute;width:80%;height:80%;top:50%;left:50%;transform:translate(-50%, -50%);box-sizing:border-box;border:1px solid #666;box-shadow:0 0 0 1000px #adb5bd;text-align:center;vertical-align:middle;overflow:auto}.roo-document-viewer-body .roo-document-viewer-image{width:100%}.roo-document-viewer-btn-group button{background-color:#000;color:#fff;border-color:#343a40}.roo-document-viewer-btn-group > .btn-group:first-child > button{border-top-left-radius:0}.roo-document-viewer-btn-group > .btn-group:last-child > button{border-top-right-radius:0}.dropdown-submenu:hover > a,.dropdown-submenu:focus > a{color:#fff;text-decoration:none;background-color:#007bff;background-image:-moz-linear-gradient(top, #007bff, #0074f0);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#007bff), to(#0074f0));background-image:-webkit-linear-gradient(top, #007bff, #0074f0);background-image:-o-linear-gradient(top, #007bff, #0074f0);background-image:linear-gradient(to bottom, #007bff, #0074f0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$brand-primary', endColorstr='darken($brand-primary, 3%)', GradientType=0)}.dropdown-submenu{position:relative}.dropdown-submenu > .dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover > .dropdown-menu{display:block}.dropup .dropdown-submenu > .dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropup .dropdown-menu{-webkit-animation-name:inherit}.dropdown-submenu > a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#6c757d;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover > a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none !important}.dropdown-submenu.pull-left > .dropdown-menu{left:0;margin-left:1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown-button > i{margin-right:5px}li.dropdown-toggle i.glyphicon + span{margin-left:5px}li.dropdown-toggle span + i.glyphicon{margin-left:5px}li.dropdown-menu-item i.fa + span{margin-left:5px}li.dropdown-toggle button > i.glyphicon{margin:3px 0 0 5px}.dropdown-menu.nowrap li a span{white-space:nowrap}div.input-group.has-feedback > .form-control-feedback{right:30px}div.input-group.has-feedback > .roo-input-after + .form-control-feedback{right:39px}.roo-required-indicator{font-size:8px;color:#dc3545;vertical-align:top}.roo-required-indicator.left-indicator{margin-right:3px}.roo-required-indicator.right-indicator{margin-left:3px}.label-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.roo-layout-container{width:100%;height:100%;overflow:hidden}.roo-layout-inactive-content{position:absolute;left:-10000px;top:-10000px;visibility:hidden}.roo-layout-active-content{visibility:visible}.roo-layout-panel{position:absolute}.roo-layout-panel-east,.roo-layout-panel-west{z-index:10}.roo-layout-panel-north,.roo-layout-panel-south{z-index:11}.roo-layout-panel-body{overflow:hidden}.roo-layout-split{position:absolute;height:5px;width:5px;line-height:1px;font-size:1px;z-index:3;background-color:#6c757d}.roo-layout-split-south,.roo-layout-split-north{border-bottom:1px solid #6c757d}.roo-layout-split-east,.roo-layout-split-west{border-right:1px solid #6c757d}.roo-layout-panel-hd{position:relative}.roo-layout-panel-hd.breadcrumb{margin-bottom:0}.roo-layout-panel-hd-text{padding:4px;padding-left:4px;display:block;white-space:nowrap}.roo-layout-panel-hd-tools{position:absolute;right:0;top:0;text-align:right;padding-top:2px;padding-right:2px;width:40px}.roo-layout-panel .roo-tabbody{background-color:#fff;overflow:auto;height:100%}.roo-layout-component-panel,.roo-layout-nested-layout{position:relative;padding:0;overflow:hidden;width:200px;height:200px}.roo-layout-nested-layout .roo-layout-panel{border:0 none}.roo-repaint{zoom:1;background-color:transparent}.roo-unselectable{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;cursor:default}.roo-splitbar-proxy{z-index:40009;visibility:hidden;position:absolute;background:#6c757d;border:1px solid #000;overflow:hidden}.roo-splitbar-h,.roo-splitbar-proxy-h{cursor:col-resize}.roo-splitbar-v,.roo-splitbar-proxy-v{cursor:row-resize}.roo-layout-panel-body .navbar ul.nav-tabs{margin-top:9px;display:table}.roo-layout-panel-body .navbar{margin-bottom:0px}.roo-form-group-label-left::before,.roo-form-group-label-left::after{display:table;content:" ";clear:both}a.list-group-item,button.list-group-item{width:100%;color:#495057;text-align:inherit}.roo-el-mask{z-index:20000;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:0.5;filter:alpha(opacity=50);background-color:#6c757d;width:100%;height:100%;zoom:1}.roo-el-mask-msg{position:absolute;z-index:20000;background-color:#fff;padding:0px;background-repeat:no-repeat;border:10px solid white;border-radius:20px;display:table;min-width:250px}.roo-el-mask-msg i{font-size:36px;vertical-align:middle;float:left}.roo-el-mask-msg div{font-family:'Source Sans Pro', sans-serif;font-size:24px;font-weight:500;z-index:20001;padding:0px 15px;color:#495057;display:table-cell;vertical-align:middle;float:left}.x-body-masked{overflow:hidden !important}.x-body-masked select,.ext-masked object,.ext-masked embed{visibility:hidden}.x-dlg-mask{z-index:10000;display:none;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:0.5;filter:alpha(opacity=50);background-color:#6c757d}.masonary .masonry-bottom-title{background-color:transparent}.masonry-brick-link,.roo-brick-link{cursor:pointer;text-decoration:none;outline:0}.masonry-brick-paragraph,.roo-brick-paragraph{overflow:hidden}.masonry-brick .masonry-brick-paragraph{padding:9px;width:100%;height:100%;position:absolute;top:0;left:0;background-color:inherit}.masonry-center-title .masonry-brick-paragraph,.masonry-bottom-title .masonry-brick-paragraph,.roo-brick-center-title .roo-brick-paragraph,.roo-brick-bottom-title .roo-brick-paragraph{display:table}.masonry-center-title .masonry-brick-paragraph .masonry-brick-title,.roo-brick-center-title .roo-brick-paragraph .roo-brick-title{display:table-cell;vertical-align:middle;text-align:center}.masonry-bottom-title .masonry-brick-paragraph .masonry-brick-title,.roo-brick-bottom-title .roo-brick-paragraph .roo-brick-title{display:table-cell;vertical-align:bottom;text-align:right}.masonry-brick-image .masonry-brick-paragraph,.roo-brick-image .roo-brick-paragraph{opacity:0}.masonry-bottom-title .masonry-brick-paragraph{opacity:1}.masonry-brick-image-view{width:100%;height:100%;object-fit:cover}.masonry-brick-paragraph .masonry-brick-title,.roo-brick-paragraph .roo-brick-title{margin-top:0}.roo-brick .roo-brick-paragraph{padding:9px;width:100%;height:100%;background-color:inherit}.roo-brick-image-view{position:absolute;top:0;object-fit:cover}a.roo-brick-link:focus,a.roo-brick-link:hover{text-decoration:none;outline:0}.masonry-brick-split .masonry-brick-split-head,.masonry-brick-split .masonry-brick-split-head .masonry-brick-paragraph{height:75%}.masonry-brick-split .masonry-brick-split-body{height:25%;padding:4px;color:#000;font-size:11px}.enable-mask:hover .masonry-brick-mask{width:100%;height:100%;position:absolute;top:0;left:0;background-color:#000;opacity:0.2}@media (min-width:768px){.mask-inverse .masonry-brick-paragraph{background:#adb5bd}.mask-inverse:hover .masonry-brick-paragraph{background:none}}.modal-md-1,.modal-md-2,.modal-md-3,.modal-md-4,.modal-md-5,.modal-md-6,.modal-md-7,.modal-md-8,.modal-md-9,.modal-md-10,.modal-md-11,.modal-md-12{float:left}.modal-md-12 .modal-dialog{width:100%;margin:30 auto}.modal-md-11 .modal-dialog{width:91.6666666667%;margin:30 auto}.modal-md-10 .modal-dialog{width:83.3333333333%;margin:30 auto}.modal-md-9 .modal-dialog{width:75%;margin:30 auto}.modal-md-8 .modal-dialog{width:66.6666666667%;margin:30 auto}.modal-md-7 .modal-dialog{width:58.3333333333%;margin:30 auto}.modal-md-6 .modal-dialog{width:50%;margin:30 auto}.modal-md-5 .modal-dialog{width:41.6666666667%;margin:30 auto}.modal-md-4 .modal-dialog{width:33.3333333333%;margin:30 auto}.modal-md-3 .modal-dialog{width:25%;margin:30 auto}.modal-md-2 .modal-dialog{width:16.6666666667%;margin:30 auto}.modal-md-1 .modal-dialog{width:8.3333333333%;margin:30 auto}.modal-body.roo-layout-container,.modal-body > .container{padding:0}@media (max-width:768px){.modal-body .col-md-12{padding:0}.modal-body{padding:5px}.modal-body .row{margin-left:-5px;margin-right:-5px}.modal-body > .container .col-xs-12{padding:0}}.modal .roo-mb-progress-wrap{margin-top:4px;border:1px solid #0062cc}.modal .roo-mb-progress-wrap .roo-mb-progress{height:18px;background:transparent url("../images/default/basic-dialog/progress2.gif") repeat-x 1px 1px}.modal .roo-mb-progress-wrap .roo-mb-progress .roo-mb-progress-bar{height:18px;overflow:hidden;width:0;background:#007bff}.roo-navigation-bar-group,.roo-navigation-top-bar,.roo-navigation-bullets-bar,.roo-navigation-bottom-bar{width:100%;float:left}.roo-navigation-bar-text > span{text-transform:uppercase;width:90%;display:inline-block}.roo-navigation-bar-text{float:left;line-height:24px;height:100%;min-height:24px;text-align:center;position:relative}.roo-navigation-bar{counter-reset:step;text-align:center;padding:0px;overflow:hidden;margin:0px}.roo-navigation-bar .roo-navigation-bar-item{list-style-type:none;color:#000;text-transform:uppercase;font-size:14px;float:left;position:relative}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon:before{counter-increment:step;width:25px;line-height:25px;display:block;color:#fff;background:#007bff;border-radius:5px;font-weight:bold;cursor:pointer}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon.step-number:before{content:counter(step)}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon:after{content:'';width:100%;height:5px;background:#007bff;position:absolute;top:10px;z-index:-1}.roo-navigation-bar .roo-navigation-bar-item:last-child > .roo-navigation-bar-item-icon:after{content:none}.roo-navigation-bar .roo-navigation-bar-item.active .roo-navigation-bar-item-icon:before{background:#9f1c28;color:#fff}.roo-navigation-bar .roo-navigation-bar-item.disabled .roo-navigation-bar-item-icon:before{background:#6c757d;color:#fff;cursor:not-allowed}.roo-navigation-bar .roo-navigation-bar-item.active .roo-navigation-bar-item-icon:before{cursor:default}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon{font:normal normal normal 14px/1 FontAwesome;display:inline-block}@media (min-width:768px){.roo-navigation-bar .roo-navigation-bar-item.xs-icon > .roo-navigation-bar-item-icon:before{content:counter(step)}}@media (min-width:992px){.roo-navigation-bar .roo-navigation-bar-item.xs-icon > .roo-navigation-bar-item-icon:before,.roo-navigation-bar .roo-navigation-bar-item.sm-icon > .roo-navigation-bar-item-icon:before{content:counter(step)}}@media (min-width:1200px){.roo-navigation-bar .roo-navigation-bar-item.xs-icon > .roo-navigation-bar-item-icon:before,.roo-navigation-bar .roo-navigation-bar-item.sm-icon > .roo-navigation-bar-item-icon:before,.roo-navigation-bar .roo-navigation-bar-item.md-icon > .roo-navigation-bar-item-icon:before{content:counter(step)}}.nav-tabs-custom{margin-bottom:20px;background:#fff;box-shadow:0px 1px 3px rgba(0, 0, 0, 0.1)}.nav-tabs-custom > .nav-tabs{margin:0;border-bottom-color:#6c757d}.nav-tabs-custom > .nav-tabs > li{border-top:3px solid transparent;margin-bottom:-2px;margin-right:5px}.nav-tabs-custom > .nav-tabs > li > a{-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.nav-tabs-custom > .nav-tabs > li > a,.nav-tabs-custom > .nav-tabs > li > a:hover{background:transparent;margin:0}.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active{border-color:transparent}.nav-tabs-custom > .nav-tabs > li.active{border-top-color:#007bff}.nav-tabs-custom > .nav-tabs > li.active > a,.nav-tabs-custom > .nav-tabs > li.active:hover > a{background-color:#fff}.nav-tabs-custom > .nav-tabs > li.active > a{border-top:0;border-left-color:#6c757d;border-right-color:#6c757d}.nav-tabs-custom > .nav-tabs > li:first-of-type{margin-left:0px}.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a{border-left-width:0}.nav-tabs-custom > .nav-tabs.pull-right{float:none !important}.nav-tabs-custom > .nav-tabs.pull-right > li{float:right}.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type{margin-right:0px}.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a{border-left-width:1px;border-right-width:0px}.nav-tabs-custom > .nav-tabs > li.header{font-weight:400;line-height:35px;padding:0 10px;font-size:20px;color:#343a40;cursor:default}.nav-tabs-custom > .nav-tabs > li.header > .fa,.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,.nav-tabs-custom > .nav-tabs > li.header > .ion{margin-right:10px}.nav-tabs-custom > .tab-content{background:#fff;padding:10px}.tab-content > .tab-pane{position:absolute}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .roo-toolbar{margin:0 5px}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .roo-toolbar > .column{padding:10px 5px}@media (max-width:768px){.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .roo-toolbar > .column{padding:5px 5px}}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .form-group{margin-bottom:0px}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item button + button{margin-left:5px}.tab-content > .tab-pane .navbar > .navbar-nav a.dropdown-toggle{padding:10px 5px}@media (min-width:768px){.navbar-right{margin-right:15px}}.navbar-nav{margin:0px -5px}table td .navbar{min-height:auto}.roo-numberbox{background-color:#007bff !important;border:10px solid black}.roo-numberbox h{font-size:24px}.pull-xs-right{float:right !important}.roo-radio-set:before,.roo-radio-set:after{display:table;content:" ";clear:both}.radio.checked label::after{-webkit-transform:scale(1, 1);-ms-transform:scale(1, 1);-o-transform:scale(1, 1);transform:scale(1, 1);background-color:#495057}.roo-radio-set.disabled .radio label{opacity:0.65}.roo-radio-set.disabled .radio label{cursor:not-allowed}.roo-radio-primary .radio label::after{background-color:#fff}.roo-radio-primary .radio.checked label::before{border-color:#007bff}.roo-radio-primary .radio.checked label::after{background-color:#007bff}.roo-radio-danger .radio label::after{background-color:#dc3545}.roo-radio-danger .radio.checked label::before{border-color:#dc3545}.roo-radio-danger .radio.checked label::after{background-color:#dc3545}.roo-radio-info .radio label::after{background-color:#fff}.roo-radio-info .radio.checked label::before{border-color:#17a2b8}.roo-radio-info .radio.checked label::after{background-color:#17a2b8}.roo-radio-warning .radio label::after{background-color:#fff}.roo-radio-warning .radio.checked label::before{border-color:#ffc107}.roo-radio-warning .radio.checked label::after{background-color:#ffc107}.roo-radio-success .radio label::after{background-color:#fff}.roo-radio-success .radio.checked label::before{border-color:#28a745}.roo-radio-success .radio.checked label::after{background-color:#28a745}.roo-radio-set.is-invalid .roo-radio-set-items label,.roo-radio-set.is-invalid .roo-radio-set-label{color:#dc3545}.roo-radio-set.is-valid .roo-radio-set-items label,.roo-radio-set.is-valid .roo-radio-set-label{color:#28a745}.roo-radio-set-inline .radio{position:relative;display:inline-block;padding-left:20px;margin-top:0px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.roo-radio-set-inline .radio + .radio{margin-left:10px}.roo-radio-set-label .roo-required-indicator.right-indicator{position:absolute}.roo-radio-set-label .roo-required-indicator.right-indicator.fa-star{font-size:8px;margin-left:3px;color:#dc3545}.roo-form-error-popover.in{opacity:1}.roo-form-error-popover .tooltip-inner{max-width:100%;padding:10px}.x-form-field-wrap .form-group{margin-bottom:0px}.roo-password-meter-grey{background:#6c757d;margin-bottom:30px;height:10px}.roo-password-meter{font-size:12px}.roo-password-meter-container{margin-bottom:20px}.roo-password-meter-tooweak{background:#dc3545;height:10px}.roo-password-meter-weak{background:#ffc107;height:10px}.roo-password-meter-medium{background:#17a2b8;height:10px}.roo-password-meter-strong{background:#28a745;height:10px}.roo-password-meter-text{margin-bottom:30px;font-size:12px;height:10px}.roo-select2-container{margin:0;position:relative;zoom:1;*display:inline;vertical-align:middle}.roo-select2-container,.roo-select2-drop,.roo-select2-search,.roo-select2-search input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.roo-select2-container .roo-select2-choice{display:block;height:26px;padding:0 0 0 8px;overflow:hidden;position:relative;border:1px solid #6c757d;white-space:nowrap;line-height:26px;color:#343a40;text-decoration:none;border-radius:4px;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #ced4da), color-stop(0.5, #fff));background-image:-webkit-linear-gradient(center bottom, #ced4da 0%, #fff 50%);background-image:-moz-linear-gradient(center bottom, #ced4da 0%, #fff 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '$body-bg', endColorstr = '$gray-lighter', GradientType = 0);background-image:linear-gradient(to top, #ced4da 0%, #fff 50%)}.roo-select2-container.roo-select2-drop-above .roo-select2-choice{border-bottom-color:#6c757d;border-radius:0 0 4px 4px;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #ced4da), color-stop(0.9, #fff));background-image:-webkit-linear-gradient(center bottom, #ced4da 0%, #fff 90%);background-image:-moz-linear-gradient(center bottom, #ced4da 0%, #fff 90%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$body-bg', endColorstr='$gray-lighter', GradientType=0);background-image:linear-gradient(to bottom, #ced4da 0%, #fff 90%)}.roo-select2-container.roo-select2-allowclear .roo-select2-choice .roo-select2-chosen{margin-right:42px}.roo-select2-container .roo-select2-choice > .roo-select2-chosen{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;float:none;width:auto}.roo-select2-container .roo-select2-choice abbr{display:none;width:12px;height:12px;position:absolute;right:24px;top:8px;font-size:1px;text-decoration:none;border:0;background:url("../images/select2/select2.png") right top no-repeat;cursor:pointer;outline:0}.roo-select2-container.roo-select2-allowclear .roo-select2-choice abbr{display:inline-block}.roo-select2-container .roo-select2-choice abbr:hover{background-position:right -11px;cursor:pointer}.roo-select2-drop-mask{border:0;margin:0;padding:0;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:9998;background-color:#fff;filter:alpha(opacity=0)}.roo-select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:9999;top:100%;background:#fff;color:#000;border:1px solid #6c757d;border-top:0;border-radius:0 0 4px 4px;-webkit-box-shadow:0 4px 5px #e9ecef;box-shadow:0 4px 5px #e9ecef}.roo-select2-drop.roo-select2-drop-above{margin-top:1px;border-top:1px solid #6c757d;border-bottom:0;border-radius:4px 4px 0 0;-webkit-box-shadow:0 -4px 5px #e9ecef;box-shadow:0 -4px 5px #e9ecef}.roo-select2-drop-active{border:1px solid #007bff;border-top:none}.roo-select2-drop.roo-select2-drop-above.roo-select2-drop-active{border-top:1px solid #007bff}.roo-select2-drop-auto-width{border-top:1px solid #6c757d;width:auto}.roo-select2-drop-auto-width .roo-select2-search{padding-top:4px}.roo-select2-container .roo-select2-choice .roo-select2-arrow{display:inline-block;width:18px;height:100%;position:absolute;right:0;top:0;border-left:1px solid #6c757d;border-radius:0 4px 4px 0;background-clip:padding-box;background:#6c757d;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #6c757d), color-stop(0.6, #ced4da));background-image:-webkit-linear-gradient(center bottom, #6c757d 0%, #ced4da 60%);background-image:-moz-linear-gradient(center bottom, #6c757d 0%, #ced4da 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '$gray-lighter', endColorstr = '$gray-light', GradientType = 0);background-image:linear-gradient(to top, #6c757d 0%, #ced4da 60%)}.roo-select2-container .roo-select2-choice .roo-select2-arrow b{display:block;width:100%;height:100%;background:url("../images/select2/select2.png") no-repeat 0 1px}.roo-select2-search{display:inline-block;width:100%;min-height:26px;margin:0;padding-left:4px;padding-right:4px;position:relative;z-index:10000;white-space:nowrap}.roo-select2-search input{width:100%;height:auto !important;min-height:26px;padding:4px 20px 4px 5px;margin:0;outline:0;font-family:sans-serif;font-size:1em;border:1px solid #6c757d;border-radius:0;-webkit-box-shadow:none;box-shadow:none;background:#fff url("../images/select2/select2.png") no-repeat 100% -22px;background:url("../images/select2/select2.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #ced4da));background:url("../images/select2/select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2.png") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #ced4da 99%) 0 0}.roo-select2-drop.roo-select2-drop-above .roo-select2-search input{margin-top:4px}.roo-select2-search input.roo-select2-active{background:#fff url("../images/select2/select2-spinner.gif") no-repeat 100%;background:url("../images/select2/select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #ced4da));background:url("../images/select2/select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #ced4da 99%) 0 0}.roo-select2-container-active .roo-select2-choice,.roo-select2-container-active .roo-select2-choices{border:1px solid #007bff;outline:none;-webkit-box-shadow:0 0 5px #adb5bd;box-shadow:0 0 5px #adb5bd}.roo-select2-dropdown-open .roo-select2-choice{border-bottom-color:transparent;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;border-bottom-left-radius:0;border-bottom-right-radius:0;background-color:#ced4da;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #ced4da));background-image:-webkit-linear-gradient(center bottom, #fff 0%, #ced4da 50%);background-image:-moz-linear-gradient(center bottom, #fff 0%, #ced4da 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$gray-lighter', endColorstr='$body-bg', GradientType=0);background-image:linear-gradient(to top, #fff 0%, #ced4da 50%)}.roo-select2-dropdown-open.roo-select2-drop-above .roo-select2-choice,.roo-select2-dropdown-open.roo-select2-drop-above .roo-select2-choices{border:1px solid #007bff;border-top-color:transparent;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #ced4da));background-image:-webkit-linear-gradient(center top, #fff 0%, #ced4da 50%);background-image:-moz-linear-gradient(center top, #fff 0%, #ced4da 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$gray-lighter', endColorstr='$body-bg', GradientType=0);background-image:linear-gradient(to bottom, #fff 0%, #ced4da 50%)}.roo-select2-dropdown-open .roo-select2-choice .roo-select2-arrow{background:transparent;border-left:none;filter:none}.roo-select2-dropdown-open .roo-select2-choice .roo-select2-arrow b{background-position:-18px 1px}.roo-select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.roo-select2-results{max-height:200px;padding:0 0 0 4px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:fade(#000, 0%)}.roo-select2-results ul.roo-select2-result-sub{margin:0;padding-left:0}.roo-select2-results li{list-style:none;display:list-item;background-image:none}.roo-select2-results li.roo-select2-result-with-children > .roo-select2-result-label{font-weight:bold}.roo-select2-results .roo-select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;min-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.roo-select2-results-dept-1 .roo-select2-result-label{padding-left:20px}.roo-select2-results-dept-2 .roo-select2-result-label{padding-left:40px}.roo-select2-results-dept-3 .roo-select2-result-label{padding-left:60px}.roo-select2-results-dept-4 .roo-select2-result-label{padding-left:80px}.roo-select2-results-dept-5 .roo-select2-result-label{padding-left:100px}.roo-select2-results-dept-6 .roo-select2-result-label{padding-left:110px}.roo-select2-results-dept-7 .roo-select2-result-label{padding-left:120px}.roo-select2-results .roo-select2-highlighted{background:#007bff;color:#fff}.roo-select2-results li em{background:#ffc107;font-style:normal}.roo-select2-results .roo-select2-highlighted em{background:transparent}.roo-select2-results .roo-select2-highlighted ul{background:#fff;color:#000}.roo-select2-results .roo-select2-no-results,.roo-select2-results .roo-select2-searching,.roo-select2-results .roo-select2-selection-limit{background:#6c757d;display:list-item;padding-left:5px}.roo-select2-results .roo-select2-disabled.roo-select2-highlighted{color:#ced4da;background:#6c757d;display:list-item;cursor:default}.roo-select2-results .roo-select2-disabled{background:#6c757d;display:list-item;cursor:default}.roo-select2-results .roo-select2-selected{display:none}.roo-select2-more-results.roo-select2-active{background:#6c757d url("../images/select2/select2-spinner.gif") no-repeat 100%}.roo-select2-more-results{background:#6c757d;display:list-item}.roo-select2-container.roo-select2-container-disabled .roo-select2-choice{background-color:#6c757d;background-image:none;border:1px solid #6c757d;cursor:default}.roo-select2-container.roo-select2-container-disabled .roo-select2-choice .roo-select2-arrow{background-color:#6c757d;background-image:none;border-left:0}.roo-select2-container.roo-select2-container-disabled .roo-select2-choice abbr{display:none}.roo-select2-container-multi{width:100%;}.roo-select2-container-multi .roo-select2-choices{height:auto !important;height:1%;margin:0;padding:0;width:100%;border:1px solid #6c757d;cursor:text;overflow:hidden;background-color:#fff;background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #ced4da), color-stop(15%, #fff));background-image:-webkit-linear-gradient(top, #ced4da 1%, #fff 15%);background-image:-moz-linear-gradient(top, #ced4da 1%, #fff 15%);background-image:linear-gradient(to bottom, #ced4da 1%, #fff 15%)}.roo-select2-locked{padding:3px 5px 3px 5px !important}.roo-select2-container-multi .roo-select2-choices{min-height:26px}.roo-select2-container-multi.roo-select2-container-active .roo-select2-choices{border:1px solid #007bff;outline:none;-webkit-box-shadow:0 0 5px #adb5bd;box-shadow:0 0 5px #adb5bd}.roo-select2-container-multi .roo-select2-choices li{float:left;list-style:none}html[dir="rtl"] .roo-select2-container-multi .roo-select2-choices li{float:right}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-field{margin:0;padding:0;white-space:nowrap}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-field input{padding:5px;margin:1px 0;font-family:sans-serif;font-size:100%;color:#495057;outline:0;border:0;-webkit-box-shadow:none;box-shadow:none;background:transparent !important}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-field input.roo-select2-active{background:#fff url("../images/select2/select2-spinner.gif") no-repeat 100% !important}.roo-select2-default{color:#6c757d !important}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice{padding:4px 7px 4px 16px;margin:0 1px;position:relative;line-height:13px;color:#343a40;cursor:default;border:1px solid #6c757d;border-radius:3px;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[dir="rtl"] .roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice{margin-left:0;margin-right:5px}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice .roo-select2-chosen{cursor:default}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice-focus{background:#6c757d}.roo-select2-search-choice-close{display:block;width:12px;height:13px;position:absolute;right:3px;top:4px;font-size:12px;outline:none;color:#6c757d;}.roo-select2-search-choice-close:hover{color:#343a40}html[dir="rtl"] .roo-select2-search-choice-close{right:auto;left:3px}.roo-select2-container-multi .roo-select2-search-choice-close{left:3px}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice .roo-select2-search-choice-close:hover{background-position:right -11px}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice-focus .roo-select2-search-choice-close{background-position:right -11px}.roo-select2-container-multi.roo-select2-container-disabled .roo-select2-choices{background-color:#6c757d;background-image:none;border:1px solid #6c757d;cursor:default}.roo-select2-container-multi.roo-select2-container-disabled .roo-select2-choices .roo-select2-search-choice{padding:3px 5px 3px 5px;border:1px solid #6c757d;background-image:none;background-color:#6c757d}.roo-select2-container-multi.roo-select2-container-disabled .roo-select2-choices .roo-select2-search-choice .roo-select2-search-choice-close{display:none;background:none}.roo-select2-result-selectable .roo-select2-match,.roo-select2-result-unselectable .roo-select2-match{text-decoration:underline}.roo-select2-offscreen,.roo-select2-offscreen:focus{clip:rect(0 0 0 0) !important;width:1px !important;height:1px !important;border:0 !important;margin:0 !important;padding:0 !important;overflow:hidden !important;position:absolute !important;outline:0 !important;left:0px !important;top:0px !important}.roo-select2-display-none{display:none}.roo-select2-measure-scrollbar{position:absolute;top:-10000px;left:-10000px;width:100px;height:100px;overflow:scroll}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:2dppx){.roo-select2-search input,.roo-select2-search-choice-close,.roo-select2-container .roo-select2-choice abbr,.roo-select2-container .roo-select2-choice .roo-select2-arrow b{background-image:url("../images/select2/select2x2.png") !important;background-repeat:no-repeat !important;background-size:60px 40px !important}.roo-select2-search input{background-position:100% -21px !important}}.has-error .roo-select2-choices{border-color:#dc3545;-webkit-box-shadow:inset 0 1px 1px #343a40;box-shadow:inset 0 1px 1px #343a40}.dropdown-menu .roo-select2-result.disabled{background-color:#ced4da;color:#6c757d;cursor:not-allowed}.sidebar{margin-bottom:5px}.sidebar a:hover{text-decoration:none}.sidebar .sidebar-menu{list-style:none;margin:0;padding:0}.sidebar .sidebar-menu > li,.sidebar .sidebar-menu li.active li.treeview-menu{margin:0;padding:0;border-bottom:1px solid #6c757d;background-color:#ced4da}.sidebar .sidebar-menu li.active li.treeview-menu{background-color:#6c757d}.sidebar .sidebar-menu > li > a,.sidebar .sidebar-menu li.open li.treeview-menu > a{padding:12px 5px 12px 15px;display:block;color:#343a40}.sidebar .sidebar-menu > li > a > .fa,.sidebar .sidebar-menu > li > a > .glyphicon,.sidebar .sidebar-menu > li > a > .ion{width:20px}.sidebar .sidebar-menu li:hover,.sidebar .sidebar-menu li:focus,.sidebar .sidebar-menu li:active,.sidebar .sidebar-menu li.active li.treeview-menu:hover,.sidebar .sidebar-menu li.active li.treeview-menu:focus,.sidebar .sidebar-menu li.active li.treeview-menu:active{background-color:#fff}.sidebar .sidebar-menu li:hover a,.sidebar .sidebar-menu li:focus a,.sidebar .sidebar-menu li:active a,.sidebar .sidebar-menu li.oepn li.treeview-menu a:hover,.sidebar .sidebar-menu li.open li.treeview-menu a:focus,.sidebar .sidebar-menu li.open li.treeview-menu a:active{color:#000;text-decoration:none}.sidebar .sidebar-menu li.active{color:#fff;background-color:#007bff;border-color:#0062cc}.sidebar .sidebar-menu li.active:hover,.sidebar .sidebar-menu li.active:focus,.sidebar .sidebar-menu li.active.focus{color:#fff;background-color:#007bff;border-color:#0062cc}.sidebar .sidebar-menu li.active a{color:#fff}.sidebar .sidebar-menu li.disabled{color:#343a40;background-color:#fff;border-color:#343a40}.sidebar .sidebar-menu li.disabled a{color:#6c757d;cursor:default}.sidebar .sidebar-menu li.danger,.sidebar .sidebar-menu li.danger.active{color:#fff;background-color:#dc3545;border-color:#e4606d}.sidebar .sidebar-menu li.danger:hover,.sidebar .sidebar-menu li.danger:focus,.sidebar .sidebar-menu li.danger.active:focus{color:#fff;background-color:#dc3545;border-color:#bd2130;border-bottom:1px solid #bd2130}.sidebar .sidebar-menu li.danger a,.sidebar .sidebar-menu li.danger.active a{color:#fff}.sidebar .sidebar-menu li.open ul{display:block}.sidebar .sidebar-menu li.open .treeview-menu{display:block}.sidebar .sidebar-menu .treeview-menu{display:none;list-style:none;padding:0;margin:0}.sidebar .sidebar-menu .treeview-menu > li{margin:0}.sidebar .sidebar-menu li.open li.treeview-menu > a{padding:5px 5px 5px 20px;display:block;font-size:14px;margin:0px 0px}.sidebar .sidebar-menu .treeview-menu > li > a > .fa,.sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,.sidebar .sidebar-menu .treeview-menu > li > a > .ion{width:20px}.sidebar .sidebar-menu li li.treeview-menu.active > a{font-weight:bold}.badge-default{background-color:#6c757d;color:#fff}.badge-primary{background-color:#007bff;color:#fff}.badge-success{background-color:#28a745;color:#fff}.badge-info{background-color:#17a2b8;color:#fff}.badge-warning{background-color:#ffc107;color:#fff}.badge-danger{background-color:#dc3545;color:#fff}.sidebar .sidebar-menu > li.active .badge-info{background-color:#fff;color:#17a2b8}html.bootstrap-sticky{position:relative;min-height:100%}html.bootstrap-sticky body{margin-bottom:60px}.bootstrap-sticky-footer{position:absolute;bottom:0;width:100%;height:60px;background-color:#6c757d}@media (max-width:767px){.bootstrap-sticky-footer{margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px}}.table .pagination .x-paging-position span{padding:3px 6px}.table .pagination .x-paging-position span input{margin:0 0 0 7px;width:42px;padding:0 5px}.navbar .pagination > li > span{min-height:34px}.table tfoot td{padding:0}.navbar .pagination{margin:0}.skin-blue .navbar .pagination > li > a:active,.skin-blue .navbar .pagination > li > a:focus,.skin-blue .navbar .pagination > li > a{background-color:#007bff}.skin-blue .navbar .pagination > li > a:hover{background-color:#6c757d}.skin-blue table .navbar{background-color:#fff}.skin-blue .navbar .pagination > li.disabled > a{background-color:#6c757d}.skin-blue table .navbar{margin-bottom:0;min-height:0}.table .sortable{cursor:pointer}.table-body-fixed tbody{overflow-y:scroll;width:100%}.table-body-fixed thead,.table-body-fixed tbody,.table-body-fixed th{display:block}.table-body-fixed thead{overflow:hidden}.table-body-fixed tbody td,.table-body-fixed thead > tr > th{float:left;border-bottom-width:0}.table-body-fixed thead > tr,.table-body-fixed tbody > tr{display:block;overflow:hidden}.table > tbody > tr.info{background-color:#d9edf7}.table-hover > tbody > tr.info:hover{background-color:#c4e3f3}.table tfoot .navbar{min-height:inherit}.roo-ie11 table.table tbody tr,.roo-edge table.table tbody tr{height:auto}.header .top-bar{min-height:30px;background:#6c757d;border-bottom:1px solid #ced4da;padding:0}@media (min-width:980px){.top-bar .collapse{display:block !important;visibility:visible !important;height:auto !important;overflow:visible !important;padding-bottom:0}}@media (min-width:768px) and (max-width:979px){.header .top-bar{min-height:0;padding:3px 0}}.header .social,.footer .social{margin-right:4px;line-height:30px;padding-left:0;margin-bottom:0}.footer .social li:last-child,.footer .social{margin-right:0 !important}.header .social li:first-child{border-left:1px solid #6c757d}.header .social li,.footer .social li{border-right:1px solid #6c757d;display:table-cell;vertical-align:middle;height:40px;margin-right:5px;width:40px;text-align:center;-webkit-transition:background 0.5s ease-in-out;-moz-transition:background 0.5s ease-in-out;-o-transition:background 0.5s ease-in-out;-ms-transition:background 0.5s ease-in-out;transition:background 0.5s ease-in-out;padding:1px}.header .social i,.footer .social i{color:#495057;font-size:16px;-webkit-transition:color 0.5s ease-in-out;-moz-transition:color 0.5s ease-in-out;-o-transition:color 0.5s ease-in-out;-ms-transition:color 0.5s ease-in-out;transition:color 0.5s ease-in-out}.header .social li:hover a i,.footer .social li:hover a i{color:#fff}.team .item .team-member-links a.facebook:hover,.member-social.dark a.facebook:hover,.header .social li.facebook:hover,.footer .social li.facebook:hover{background:#007bff}.team .item .team-member-links a.dribbble:hover,.member-social.dark a.dribbble:hover,.header .social li.dribbble:hover,.footer .social li.dribbble:hover{background:#ffc107}.team .item .team-member-links a.twitter:hover,.member-social.dark a.twitter:hover,.header .social li.twitter:hover,.footer .social li.twitter:hover{background:#007bff}.team .item .team-member-links a.gplus:hover,.member-social.dark a.gplus:hover,.header .social li.gplus:hover,.footer .social li.gplus:hover{background:#dc3545}.team .item .team-member-links a.linkedin:hover,.member-social.dark a.linkedin:hover,.header .social li.linkedin:hover,.footer .social li.linkedin:hover{background:#007bff}.team .item .team-member-links a.pinterest:hover,.member-social.dark a.pinterest:hover,.header .social li.pinterest:hover,.footer .social li.pinterest:hover{background:#dc3545}.header .social li.rss:hover,.footer .social li.rss:hover{background:#ffc107}.top-bar .languages{padding:8px 0}.top-bar .languages a{margin-right:20px;color:#495057;font-family:"Open Sans", Helvetica, Arial, sans-serif;font-size:14px;line-height:24px}.navbar-left .input-group[class*="col-"]{float:left}.ellipsis{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.sw-child-headline{display:inline-block;width:auto}.box-input-label{width:100%;display:inline-block;font-weight:bold}.box-label{margin-left:5px;cursor:pointer}.input-group .form-control{z-index:1}.checkbox,.radio{padding-left:15px !important}.pagination .x-paging-position span{padding-top:3px;padding-bottom:3px}.pagination .x-paging-position span input{margin:0 3px}.panel-header-right{float:right;text-align:right}.badge-error{background-color:#dc3545}.badge-error:hover{background-color:#bd2130}.badge-warning{background-color:#ffc107}.badge-warning:hover{background-color:#d39e00}.badge-success{background-color:#28a745}.badge-success:hover{background-color:#1e7e34}.badge-info{background-color:#17a2b8}.badge-info:hover{background-color:#117a8b}.badge-inverse{background-color:#343a40}.badge-inverse:hover{background-color:#212529}.tooltip.fade.in{z-index:10002}.x-hidden{position:absolute;top:0;left:0;visibility:hidden;display:none}.roo-upload-cropbox-selector{visibility:hidden;height:0px}.roo-upload-cropbox-dialog .modal-header,.roo-upload-cropbox-dialog .modal-footer{padding-top:5px;padding-bottom:5px}.roo-upload-cropbox-body{background-color:#fff;border:1px solid #6c757d;width:100%;height:450px;max-height:450px;position:relative;overflow:hidden;cursor:move}.roo-upload-cropbox-preview{position:absolute;top:0px;left:0px;text-align:center;margin:0px;padding:0px;border:none}.roo-upload-cropbox-body .roo-upload-cropbox-thumb{position:absolute;box-sizing:border-box;border:1px solid #6c757d;box-shadow:0 0 0 1000px #adb5bd;background:none repeat scroll 0% 0% transparent}.roo-upload-cropbox-body .roo-upload-cropbox-empty-notify{height:100%;background-color:#adb5bd;color:#fff;font-weight:bold;font-size:24px;text-align:center;padding-top:50px;font-style:italic}.roo-upload-cropbox-btn-group button{background-color:#000;color:#fff;border-color:#343a40}.roo-upload-cropbox-error-notify{border-radius:0px;text-align:center;padding:0px !important;margin:0px !important;position:absolute;top:0;left:0}.tel-input{padding-left:105px;border-radius:4px !important}.dial-code-holder{position:absolute;width:60px;left:55px;z-index:3;padding:7px;border:1px solid transparent;background:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tel-list li a{padding-left:10px}.tel-list li a .flag{margin-right:20px}.tel-list li a .dial-code{color:#999}.flag-box{position:absolute;top:6px;height:20px;width:50px;padding:5px;margin-left:5px;display:flex;flex-direction:row;justify-content:space-around;z-index:4}.flag-box .caret{margin-top:3px}.flag{background-image:url("../images/default/flags.png");background-repeat:no-repeat;width:20px;height:inherit;display:inline-block;margin-right:10px}.flag.ac{height:10px;background-position:0px 0px}.flag.ad{height:14px;background-position:-22px 0px}.flag.ae{height:10px;background-position:-44px 0px}.flag.af{height:14px;background-position:-66px 0px}.flag.ag{height:14px;background-position:-88px 0px}.flag.ai{height:10px;background-position:-110px 0px}.flag.al{height:15px;background-position:-132px 0px}.flag.am{height:10px;background-position:-154px 0px}.flag.ao{height:14px;background-position:-176px 0px}.flag.aq{height:14px;background-position:-198px 0px}.flag.ar{height:13px;background-position:-220px 0px}.flag.as{height:10px;background-position:-242px 0px}.flag.at{height:14px;background-position:-264px 0px}.flag.au{height:10px;background-position:-286px 0px}.flag.aw{height:14px;background-position:-308px 0px}.flag.ax{height:13px;background-position:-330px 0px}.flag.az{height:10px;background-position:-352px 0px}.flag.ba{height:10px;background-position:-374px 0px}.flag.bb{height:14px;background-position:-396px 0px}.flag.bd{height:12px;background-position:-418px 0px}.flag.be{height:15px;background-position:-440px 0px}.flag.bf{height:14px;background-position:-460px 0px}.flag.bg{height:12px;background-position:-482px 0px}.flag.bh{height:12px;background-position:-504px 0px}.flag.bi{height:12px;background-position:-526px 0px}.flag.bj{height:14px;background-position:-548px 0px}.flag.bl{height:14px;background-position:-570px 0px}.flag.bm{height:10px;background-position:-592px 0px}.flag.bn{height:10px;background-position:-614px 0px}.flag.bo{height:14px;background-position:-636px 0px}.flag.bq{height:14px;background-position:-658px 0px}.flag.br{height:14px;background-position:-680px 0px}.flag.bs{height:10px;background-position:-702px 0px}.flag.bt{height:14px;background-position:-724px 0px}.flag.bv{height:15px;background-position:-746px 0px}.flag.bw{height:14px;background-position:-768px 0px}.flag.by{height:10px;background-position:-790px 0px}.flag.bz{height:14px;background-position:-812px 0px}.flag.ca{height:10px;background-position:-834px 0px}.flag.cc{height:10px;background-position:-856px 0px}.flag.cd{height:15px;background-position:-878px 0px}.flag.cf{height:14px;background-position:-900px 0px}.flag.cg{height:14px;background-position:-922px 0px}.flag.ch{height:15px;background-position:-944px 0px}.flag.ci{height:14px;background-position:-961px 0px}.flag.ck{height:10px;background-position:-983px 0px}.flag.cl{height:14px;background-position:-1005px 0px}.flag.cm{height:14px;background-position:-1027px 0px}.flag.cn{height:14px;background-position:-1049px 0px}.flag.co{height:14px;background-position:-1071px 0px}.flag.cp{height:14px;background-position:-1093px 0px}.flag.cr{height:12px;background-position:-1115px 0px}.flag.cu{height:10px;background-position:-1137px 0px}.flag.cv{height:12px;background-position:-1159px 0px}.flag.cw{height:14px;background-position:-1181px 0px}.flag.cx{height:10px;background-position:-1203px 0px}.flag.cy{height:13px;background-position:-1225px 0px}.flag.cz{height:14px;background-position:-1247px 0px}.flag.de{height:12px;background-position:-1269px 0px}.flag.dg{height:10px;background-position:-1291px 0px}.flag.dj{height:14px;background-position:-1313px 0px}.flag.dk{height:15px;background-position:-1335px 0px}.flag.dm{height:10px;background-position:-1357px 0px}.flag.do{height:13px;background-position:-1379px 0px}.flag.dz{height:14px;background-position:-1401px 0px}.flag.ea{height:14px;background-position:-1423px 0px}.flag.ec{height:14px;background-position:-1445px 0px}.flag.ee{height:13px;background-position:-1467px 0px}.flag.eg{height:14px;background-position:-1489px 0px}.flag.eh{height:10px;background-position:-1511px 0px}.flag.er{height:10px;background-position:-1533px 0px}.flag.es{height:14px;background-position:-1555px 0px}.flag.et{height:10px;background-position:-1577px 0px}.flag.eu{height:14px;background-position:-1599px 0px}.flag.fi{height:12px;background-position:-1621px 0px}.flag.fj{height:10px;background-position:-1643px 0px}.flag.fk{height:10px;background-position:-1665px 0px}.flag.fm{height:11px;background-position:-1687px 0px}.flag.fo{height:15px;background-position:-1709px 0px}.flag.fr{height:14px;background-position:-1731px 0px}.flag.ga{height:15px;background-position:-1753px 0px}.flag.gb{height:10px;background-position:-1775px 0px}.flag.gd{height:12px;background-position:-1797px 0px}.flag.ge{height:14px;background-position:-1819px 0px}.flag.gf{height:14px;background-position:-1841px 0px}.flag.gg{height:14px;background-position:-1863px 0px}.flag.gh{height:14px;background-position:-1885px 0px}.flag.gi{height:10px;background-position:-1907px 0px}.flag.gl{height:14px;background-position:-1929px 0px}.flag.gm{height:14px;background-position:-1951px 0px}.flag.gn{height:14px;background-position:-1973px 0px}.flag.gp{height:14px;background-position:-1995px 0px}.flag.gq{height:14px;background-position:-2017px 0px}.flag.gr{height:14px;background-position:-2039px 0px}.flag.gs{height:10px;background-position:-2061px 0px}.flag.gt{height:13px;background-position:-2083px 0px}.flag.gu{height:11px;background-position:-2105px 0px}.flag.gw{height:10px;background-position:-2127px 0px}.flag.gy{height:12px;background-position:-2149px 0px}.flag.hk{height:14px;background-position:-2171px 0px}.flag.hm{height:10px;background-position:-2193px 0px}.flag.hn{height:10px;background-position:-2215px 0px}.flag.hr{height:10px;background-position:-2237px 0px}.flag.ht{height:12px;background-position:-2259px 0px}.flag.hu{height:10px;background-position:-2281px 0px}.flag.ic{height:14px;background-position:-2303px 0px}.flag.id{height:14px;background-position:-2325px 0px}.flag.ie{height:10px;background-position:-2347px 0px}.flag.il{height:15px;background-position:-2369px 0px}.flag.im{height:10px;background-position:-2391px 0px}.flag.in{height:14px;background-position:-2413px 0px}.flag.io{height:10px;background-position:-2435px 0px}.flag.iq{height:14px;background-position:-2457px 0px}.flag.ir{height:12px;background-position:-2479px 0px}.flag.is{height:15px;background-position:-2501px 0px}.flag.it{height:14px;background-position:-2523px 0px}.flag.je{height:12px;background-position:-2545px 0px}.flag.jm{height:10px;background-position:-2567px 0px}.flag.jo{height:10px;background-position:-2589px 0px}.flag.jp{height:14px;background-position:-2611px 0px}.flag.ke{height:14px;background-position:-2633px 0px}.flag.kg{height:12px;background-position:-2655px 0px}.flag.kh{height:13px;background-position:-2677px 0px}.flag.ki{height:10px;background-position:-2699px 0px}.flag.km{height:12px;background-position:-2721px 0px}.flag.kn{height:14px;background-position:-2743px 0px}.flag.kp{height:10px;background-position:-2765px 0px}.flag.kr{height:14px;background-position:-2787px 0px}.flag.kw{height:10px;background-position:-2809px 0px}.flag.ky{height:10px;background-position:-2831px 0px}.flag.kz{height:10px;background-position:-2853px 0px}.flag.la{height:14px;background-position:-2875px 0px}.flag.lb{height:14px;background-position:-2897px 0px}.flag.lc{height:10px;background-position:-2919px 0px}.flag.li{height:12px;background-position:-2941px 0px}.flag.lk{height:10px;background-position:-2963px 0px}.flag.lr{height:11px;background-position:-2985px 0px}.flag.ls{height:14px;background-position:-3007px 0px}.flag.lt{height:12px;background-position:-3029px 0px}.flag.lu{height:12px;background-position:-3051px 0px}.flag.lv{height:10px;background-position:-3073px 0px}.flag.ly{height:10px;background-position:-3095px 0px}.flag.ma{height:14px;background-position:-3117px 0px}.flag.mc{height:15px;background-position:-3139px 0px}.flag.md{height:10px;background-position:-3160px 0px}.flag.me{height:10px;background-position:-3182px 0px}.flag.mf{height:14px;background-position:-3204px 0px}.flag.mg{height:14px;background-position:-3226px 0px}.flag.mh{height:11px;background-position:-3248px 0px}.flag.mk{height:10px;background-position:-3270px 0px}.flag.ml{height:14px;background-position:-3292px 0px}.flag.mm{height:14px;background-position:-3314px 0px}.flag.mn{height:10px;background-position:-3336px 0px}.flag.mo{height:14px;background-position:-3358px 0px}.flag.mp{height:10px;background-position:-3380px 0px}.flag.mq{height:14px;background-position:-3402px 0px}.flag.mr{height:14px;background-position:-3424px 0px}.flag.ms{height:10px;background-position:-3446px 0px}.flag.mt{height:14px;background-position:-3468px 0px}.flag.mu{height:14px;background-position:-3490px 0px}.flag.mv{height:14px;background-position:-3512px 0px}.flag.mw{height:14px;background-position:-3534px 0px}.flag.mx{height:12px;background-position:-3556px 0px}.flag.my{height:10px;background-position:-3578px 0px}.flag.mz{height:14px;background-position:-3600px 0px}.flag.na{height:14px;background-position:-3622px 0px}.flag.nc{height:10px;background-position:-3644px 0px}.flag.ne{height:15px;background-position:-3666px 0px}.flag.nf{height:10px;background-position:-3686px 0px}.flag.ng{height:10px;background-position:-3708px 0px}.flag.ni{height:12px;background-position:-3730px 0px}.flag.nl{height:14px;background-position:-3752px 0px}.flag.no{height:15px;background-position:-3774px 0px}.flag.np{height:15px;background-position:-3796px 0px}.flag.nr{height:10px;background-position:-3811px 0px}.flag.nu{height:10px;background-position:-3833px 0px}.flag.nz{height:10px;background-position:-3855px 0px}.flag.om{height:10px;background-position:-3877px 0px}.flag.pa{height:14px;background-position:-3899px 0px}.flag.pe{height:14px;background-position:-3921px 0px}.flag.pf{height:14px;background-position:-3943px 0px}.flag.pg{height:15px;background-position:-3965px 0px}.flag.ph{height:10px;background-position:-3987px 0px}.flag.pk{height:14px;background-position:-4009px 0px}.flag.pl{height:13px;background-position:-4031px 0px}.flag.pm{height:14px;background-position:-4053px 0px}.flag.pn{height:10px;background-position:-4075px 0px}.flag.pr{height:14px;background-position:-4097px 0px}.flag.ps{height:10px;background-position:-4119px 0px}.flag.pt{height:14px;background-position:-4141px 0px}.flag.pw{height:13px;background-position:-4163px 0px}.flag.py{height:11px;background-position:-4185px 0px}.flag.qa{height:8px;background-position:-4207px 0px}.flag.re{height:14px;background-position:-4229px 0px}.flag.ro{height:14px;background-position:-4251px 0px}.flag.rs{height:14px;background-position:-4273px 0px}.flag.ru{height:14px;background-position:-4295px 0px}.flag.rw{height:14px;background-position:-4317px 0px}.flag.sa{height:14px;background-position:-4339px 0px}.flag.sb{height:10px;background-position:-4361px 0px}.flag.sc{height:10px;background-position:-4383px 0px}.flag.sd{height:10px;background-position:-4405px 0px}.flag.se{height:13px;background-position:-4427px 0px}.flag.sg{height:14px;background-position:-4449px 0px}.flag.sh{height:10px;background-position:-4471px 0px}.flag.si{height:10px;background-position:-4493px 0px}.flag.sj{height:15px;background-position:-4515px 0px}.flag.sk{height:14px;background-position:-4537px 0px}.flag.sl{height:14px;background-position:-4559px 0px}.flag.sm{height:15px;background-position:-4581px 0px}.flag.sn{height:14px;background-position:-4603px 0px}.flag.so{height:14px;background-position:-4625px 0px}.flag.sr{height:14px;background-position:-4647px 0px}.flag.ss{height:10px;background-position:-4669px 0px}.flag.st{height:10px;background-position:-4691px 0px}.flag.sv{height:12px;background-position:-4713px 0px}.flag.sx{height:14px;background-position:-4735px 0px}.flag.sy{height:14px;background-position:-4757px 0px}.flag.sz{height:14px;background-position:-4779px 0px}.flag.ta{height:10px;background-position:-4801px 0px}.flag.tc{height:10px;background-position:-4823px 0px}.flag.td{height:14px;background-position:-4845px 0px}.flag.tf{height:14px;background-position:-4867px 0px}.flag.tg{height:13px;background-position:-4889px 0px}.flag.th{height:14px;background-position:-4911px 0px}.flag.tj{height:10px;background-position:-4933px 0px}.flag.tk{height:10px;background-position:-4955px 0px}.flag.tl{height:10px;background-position:-4977px 0px}.flag.tm{height:14px;background-position:-4999px 0px}.flag.tn{height:14px;background-position:-5021px 0px}.flag.to{height:10px;background-position:-5043px 0px}.flag.tr{height:14px;background-position:-5065px 0px}.flag.tt{height:12px;background-position:-5087px 0px}.flag.tv{height:10px;background-position:-5109px 0px}.flag.tw{height:14px;background-position:-5131px 0px}.flag.tz{height:14px;background-position:-5153px 0px}.flag.ua{height:14px;background-position:-5175px 0px}.flag.ug{height:14px;background-position:-5197px 0px}.flag.um{height:11px;background-position:-5219px 0px}.flag.us{height:11px;background-position:-5241px 0px}.flag.uy{height:14px;background-position:-5263px 0px}.flag.uz{height:10px;background-position:-5285px 0px}.flag.va{height:15px;background-position:-5307px 0px}.flag.vc{height:14px;background-position:-5324px 0px}.flag.ve{height:14px;background-position:-5346px 0px}.flag.vg{height:10px;background-position:-5368px 0px}.flag.vi{height:14px;background-position:-5390px 0px}.flag.vn{height:14px;background-position:-5412px 0px}.flag.vu{height:12px;background-position:-5434px 0px}.flag.wf{height:14px;background-position:-5456px 0px}.flag.ws{height:10px;background-position:-5478px 0px}.flag.xk{height:15px;background-position:-5500px 0px}.flag.ye{height:14px;background-position:-5522px 0px}.flag.yt{height:14px;background-position:-5544px 0px}.flag.za{height:14px;background-position:-5566px 0px}.flag.zm{height:14px;background-position:-5588px 0px}.flag.zw{height:10px;background-position:-5610px 0px}.flag.ot{height:0px}.roo-money-field .roo-money-currency{padding-right:0px}.roo-money-field .roo-money-amount{padding-left:0px}.roo-money-field .roo-money-currency-input{border-right:0px}.roo-money-field .input-group-addon{background-color:transparent;border-left:0px;border-right:0px;border-radius:0px}.roo-money-field .roo-money-amount-input{border-top-left-radius:0px;border-bottom-left-radius:0px;text-align:right}.has-success .roo-money-currency .roo-select2-container .input-group-addon{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px #3c763d}.has-warning .roo-money-currency .roo-select2-container .input-group-addon{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px #8a6d3b}.has-error .roo-money-currency .roo-select2-container .input-group-addon{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px #a94442}/*# sourceMappingURL=roojs-bootstrap-debug.css.map */
\ No newline at end of file
+.alert{padding-left:30px;margin-top:20px;margin-left:15px;position:relative}.alert > .fa,.alert > .glyphicon{position:absolute;left:-15px;top:-15px;width:35px;height:35px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;line-height:35px;text-align:center;background:inherit;border:inherit}.fc{direction:ltr;text-align:left;margin:0;font-family:Lucida Sans, Arial, sans-serif}.fc table{border-collapse:collapse;border-spacing:0}html .fc,.fc table{font-size:1em}.fc td,.fc th{padding:0;vertical-align:top;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none}.fc-header td{white-space:nowrap}.fc-header-left{width:25%;text-align:left}.fc-header-center{text-align:center}.fc-header-right{width:25%;text-align:right}.fc-header-title{display:inline-block;vertical-align:top}.fc-header-title h2{margin-top:0;white-space:nowrap;font-size:1.5em;font-family:Lucida Sans, Arial, sans-serif;font-weight:bold;line-height:normal;margin:0}.fc .fc-header-space{padding-left:10px}.fc-header .fc-button{margin-bottom:1em;vertical-align:top}.fc-header .fc-button{margin-right:-1px}.fc-header .fc-corner-right,.fc-header .ui-corner-right{margin-right:0;}.fc-header .fc-state-hover,.fc-header .ui-state-hover{z-index:2}.fc-header .fc-state-down{z-index:3}.fc-header .fc-state-active,.fc-header .ui-state-active{z-index:4}.fc-content{clear:both;zoom:1;}.fc-view{width:100%;overflow:hidden}.fc-widget-header,.fc-widget-content{border:1px solid #6c757d}.fc-state-highlight{background:#ffc107}.fc-cell-overlay{background:#17a2b8;opacity:0.3;filter:alpha(opacity=30);}.fc-button{position:relative;display:inline-block;padding:0 0.6em;overflow:hidden;height:1.9em;line-height:1.9em;white-space:nowrap;cursor:pointer}.fc-state-default{border:1px solid}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc-text-arrow{margin:0 0.1em;font-size:2em;font-family:"Courier New", Courier, monospace;vertical-align:baseline;}.fc-button-prev .fc-text-arrow,.fc-button-next .fc-text-arrow{font-weight:bold}.fc-button .fc-icon-wrap{position:relative;float:left;top:50%}.fc-button .ui-icon{position:relative;float:left;margin-top:-50%;*margin-top:0;*top:-50%}.fc-state-default{background-color:#6c757d;background-image:-moz-linear-gradient(top, #fff, #6c757d);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#6c757d));background-image:-webkit-linear-gradient(top, #fff, #6c757d);background-image:-o-linear-gradient(top, #fff, #6c757d);background-image:linear-gradient(to bottom, #fff, #6c757d);background-repeat:repeat-x;border-color:#6c757d #6c757d #6c757d;border-color:#e9ecef #e9ecef #adb5bd;color:#343a40}.fc-state-hover,.fc-state-down,.fc-state-active,.fc-state-disabled{color:#343a40;background-color:#6c757d}.fc-state-hover{color:#343a40;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear}.fc-state-down,.fc-state-active{background-color:#6c757d;background-image:none;outline:0;box-shadow:inset 0 2px 4px #e9ecef, 0 1px 2px #e9ecef}.fc-state-disabled{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);box-shadow:none}.fc-event-container > *{z-index:8}.fc-event-container > .ui-draggable-dragging,.fc-event-container > .ui-resizable-resizing{z-index:9}.fc-event{border:1px solid #007bff;background-color:#007bff;color:#fff;font-size:0.85em;cursor:default}a.fc-event{text-decoration:none}a.fc-event,.fc-event-draggable{cursor:pointer}.fc-rtl .fc-event{text-align:right}.fc-event-inner{width:100%;height:100%;overflow:hidden}.fc-event-time,.fc-event-title{padding:0 1px;overflow:hidden;white-space:nowrap}.fc .ui-resizable-handle{display:block;position:absolute;z-index:99999;overflow:hidden;font-size:300%;line-height:50%;}.fc-event-hori{border-width:1px 0;margin-bottom:1px}.fc-ltr .fc-event-hori.fc-event-start,.fc-rtl .fc-event-hori.fc-event-end{border-left-width:1px;border-top-left-radius:3px;border-bottom-left-radius:3px}.fc-ltr .fc-event-hori.fc-event-end,.fc-rtl .fc-event-hori.fc-event-start{border-right-width:1px;border-top-right-radius:3px;border-bottom-right-radius:3px}.fc-event-hori .ui-resizable-e{top:0 !important;right:-3px !important;width:7px !important;height:100% !important;cursor:e-resize}.fc-event-hori .ui-resizable-w{top:0 !important;left:-3px !important;width:7px !important;height:100% !important;cursor:w-resize}.fc-event-hori .ui-resizable-handle{_padding-bottom:14px;}table.fc-border-separate{border-collapse:separate}.fc-border-separate th,.fc-border-separate td{border-width:1px 0 0 1px}.fc-border-separate th.fc-last,.fc-border-separate td.fc-last{border-right-width:1px}.fc-border-separate tr.fc-last th,.fc-border-separate tr.fc-last td{border-bottom-width:1px}.fc-border-separate tbody tr.fc-first td,.fc-border-separate tbody tr.fc-first th{border-top-width:0}.fc-grid th{text-align:center}.fc .fc-week-number{width:22px;text-align:center}.fc .fc-week-number div{padding:0 2px}.fc-grid .fc-day-number{float:right;padding:0 2px}.fc-grid .fc-other-month .fc-day-number{opacity:0.3;filter:alpha(opacity=30);}.fc-grid .fc-day-content{clear:both;padding:2px 2px 1px;}.fc-grid .fc-event-time{font-weight:bold}.fc-rtl .fc-grid .fc-day-number{float:left}.fc-rtl .fc-grid .fc-event-time{float:right}.fc-agenda table{border-collapse:separate}.fc-agenda-days th{text-align:center}.fc-agenda .fc-agenda-axis{width:50px;padding:0 4px;vertical-align:middle;text-align:right;white-space:nowrap;font-weight:normal}.fc-agenda .fc-week-number{font-weight:bold}.fc-agenda .fc-day-content{padding:2px 2px 1px}.fc-agenda-days .fc-agenda-axis{border-right-width:1px}.fc-agenda-days .fc-col0{border-left-width:0}.fc-agenda-allday th{border-width:0 1px}.fc-agenda-allday .fc-day-content{min-height:34px;_height:34px}.fc-agenda-divider-inner{height:2px;overflow:hidden}.fc-widget-header .fc-agenda-divider-inner{background:#ced4da}.fc-agenda-slots th{border-width:1px 1px 0}.fc-agenda-slots td{border-width:1px 0 0;background:none}.fc-agenda-slots td div{height:20px}.fc-agenda-slots tr.fc-slot0 th,.fc-agenda-slots tr.fc-slot0 td{border-top-width:0}.fc-agenda-slots tr.fc-minor th,.fc-agenda-slots tr.fc-minor td{border-top-style:dotted}.fc-agenda-slots tr.fc-minor th.ui-widget-header{*border-top-style:solid;}.fc-event-vert{border-width:0 1px}.fc-event-vert.fc-event-start{border-top-width:1px;border-top-left-radius:3px;border-top-right-radius:3px}.fc-event-vert.fc-event-end{border-bottom-width:1px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.fc-event-vert .fc-event-time{white-space:nowrap;font-size:10px}.fc-event-vert .fc-event-inner{position:relative;z-index:2}.fc-event-vert .fc-event-bg{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background:#fff;opacity:0.25;filter:alpha(opacity=25)}.fc .ui-draggable-dragging .fc-event-bg,.fc-select-helper .fc-event-bg{display:none\9;}.fc-event-vert .ui-resizable-s{bottom:0 !important;width:100% !important;height:8px !important;overflow:hidden !important;line-height:8px !important;font-size:11px !important;font-family:monospace;text-align:center;cursor:s-resize}.fc-agenda .ui-resizable-resizing{_overflow:hidden}.clear{clear:both}.carousel-bullets{height:17px;bottom:20px;width:100%;text-align:center;z-index:1000;position:absolute;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";-moz-opacity:1;-khtml-opacity:1;opacity:1;-webkit-transition:opacity 0.2s ease-out;-moz-transition:opacity 0.2s ease-out;-o-transition:opacity 0.2s ease-out;-ms-transition:opacity 0.2s ease-out;-webkit-transform:translateZ(5px)}.carousel-bullets > .bullet{cursor:pointer;position:relative !important;background:rgba(0, 0, 0, 0.5) !important;-webkit-border-radius:10px;border-radius:10px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;width:6px !important;height:6px !important;border:5px solid rgba(0, 0, 0, 0) !important;display:inline-block;margin-right:2px !important;margin-bottom:0px !important;-webkit-transition:background-color 0.2s, border-color 0.2s;-moz-transition:background-color 0.2s, border-color 0.2s;-o-transition:background-color 0.2s, border-color 0.2s;-ms-transition:background-color 0.2s, border-color 0.2s;transition:background-color 0.2s, border-color 0.2s;float:none !important;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}.carousel-bullets > .bullet:hover,.carousel-bullets > .bullet.selected{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:rgba(255, 255, 255, 1) !important;width:6px !important;height:6px !important;border:5px solid rgba(0, 0, 0, 1) !important}.carousel-inner > .carousel-arrow > .carousel-prev{position:absolute;display:block;top:50%;color:#343a40;z-index:100;cursor:pointer;padding:10px;margin-top:-22px;left:0}.carousel-inner > .carousel-arrow > .carousel-next{position:absolute;display:block;top:50%;color:#343a40;z-index:100;cursor:pointer;padding:10px;margin-top:-22px;right:0}.carousel-inner > .carousel-arrow > .carousel-prev > i,.carousel-inner > .carousel-arrow > .carousel-next > i{font-size:24px}.carousel-inner .tab-pane.clickable{cursor:pointer}.tab-content > .carousel-inner{padding:16px 35px;background:#f8f9fa}.tab-content > .carousel-inner > .tab-pane{display:none}.tab-content > .carousel-inner > .active{display:block}.checkbox label{display:inline-block;position:relative;padding-left:5px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.checkbox label::after{display:inline-block;position:absolute;width:16px;height:16px;left:0;top:0;margin-left:-20px;padding-left:3px;padding-top:1px;font-size:11px;color:#495057}.checkbox input[type="checkbox"]{display:none}.checkbox input[type="checkbox"]:checked + label::after{font-size:18px;padding-top:0px;font-family:'Font Awesome 5 Free 400';font-weight:900;color:#28a745;content:"\f14a"}.checkbox input[type="checkbox"]:not(:checked) + label::after{font-size:18px;padding-top:0px;font-family:'Font Awesome 5 Free 400';font-weight:900;content:"\f0c8"}.checkbox input[type="checkbox"]:disabled + label{opacity:0.65}.checkbox input[type="checkbox"]:disabled + label::before{background-color:#ced4da;cursor:not-allowed}.checkbox.checkbox-circle label::before{border-radius:50%}.checkbox-primary input[type="checkbox"]:checked + label::before{background-color:#007bff;border-color:#007bff}.checkbox-primary input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-danger input[type="checkbox"]:checked + label::before{background-color:#dc3545;border-color:#dc3545}.checkbox-danger input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-info input[type="checkbox"]:checked + label::before{background-color:#17a2b8;border-color:#17a2b8}.checkbox-info input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-warning input[type="checkbox"]:checked + label::before{background-color:#ffc107;border-color:#ffc107}.checkbox-warning input[type="checkbox"]:checked + label::after{color:#fff}.checkbox-success input[type="checkbox"]:checked + label::before{background-color:#28a745;border-color:#28a745}.checkbox-success input[type="checkbox"]:checked + label::after{color:#fff}.radio label{display:inline-block;position:relative;padding-left:5px}.radio label::before{content:"";display:inline-block;position:absolute;width:17px;height:17px;left:0;margin-left:-20px;border:1px solid #6c757d;border-radius:50%;background-color:#fff;-webkit-transition:border 0.15s ease-in-out;-o-transition:border 0.15s ease-in-out;transition:border 0.15s ease-in-out}.radio label::after{display:inline-block;position:absolute;content:" ";width:11px;height:11px;left:3px;top:3px;margin-left:-20px;border-radius:50%;background-color:#fff;-webkit-transform:scale(0, 0);-ms-transform:scale(0, 0);-o-transform:scale(0, 0);transform:scale(0, 0);-webkit-transition:-webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);-moz-transition:-moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);-o-transition:-o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);transition:transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33)}.radio input[type="radio"]{display:none}.radio input[type="radio"]:checked + label::after{-webkit-transform:scale(1, 1);-ms-transform:scale(1, 1);-o-transform:scale(1, 1);transform:scale(1, 1);background-color:#495057}.radio input[type="radio"]:disabled + label{opacity:0.65}.radio input[type="radio"]:disabled + label::before{cursor:not-allowed}.radio-primary input[type="radio"] + label::after{background-color:#fff}.radio-primary input[type="radio"]:checked + label::before{border-color:#007bff}.radio-primary input[type="radio"]:checked + label::after{background-color:#007bff}.radio-danger input[type="radio"] + label::after{background-color:#dc3545}.radio-danger input[type="radio"]:checked + label::before{border-color:#dc3545}.radio-danger input[type="radio"]:checked + label::after{background-color:#dc3545}.radio-info input[type="radio"] + label::after{background-color:#fff}.radio-info input[type="radio"]:checked + label::before{border-color:#17a2b8}.radio-info input[type="radio"]:checked + label::after{background-color:#17a2b8}.radio-warning input[type="radio"] + label::after{background-color:#fff}.radio-warning input[type="radio"]:checked + label::before{border-color:#ffc107}.radio-warning input[type="radio"]:checked + label::after{background-color:#ffc107}.radio-success input[type="radio"] + label::after{background-color:#fff}.radio-success input[type="radio"]:checked + label::before{border-color:#28a745}.radio-success input[type="radio"]:checked + label::after{background-color:#28a745}.checkbox.checkbox-inline,.radio.radio-inline{margin-top:0}.combobox-container{margin-bottom:5px;*zoom:1;display:inline-table}.combobox-container:before,.combobox-container:after{display:table;content:""}.combobox-container:after{}.combobox-container input,.combobox-container .uneditable-input{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.combobox-container input:focus,.combobox-container .uneditable-input:focus{position:relative;z-index:2}.combobox-container .uneditable-input{border-left-color:#6c757d}.combobox-container .add-on{float:left;display:inline-block;width:auto;min-width:16px;height:inherit !important;margin-right:-1px;padding:4px 5px;font-weight:normal;color:#6c757d;text-align:center;text-shadow:0 1px 0 #fff;background-color:#6c757d;border:1px solid #6c757d;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.combobox-container .active{background-color:#007bff;color:#fff}.combobox-container input,.combobox-container .uneditable-input{float:left;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.combobox-container .uneditable-input{border-left-color:#ced4da;border-right-color:#6c757d}.combobox-container .add-on{margin-right:0;margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.combobox-container input:first-child{*margin-left:-160px}.combobox-container input:first-child + .add-on{*margin-left:-21px}.combobox-container select{display:inline-block;width:0;height:0;border:0;padding:0;margin:0;text-indent:-99999px;*text-indent:0}.form-search .combobox-container,.form-inline .combobox-container{display:inline-block;margin-bottom:0;vertical-align:top}.form-search .combobox-container .add-on,.form-inline .combobox-container .add-on{vertical-align:middle}.combobox-selected .combobox-clear{display:inline-block}.combobox-selected .caret{display:none}.combobox-clear{display:none;width:14px;height:14px;line-height:14px;vertical-align:top;opacity:0.3;filter:alpha(opacity=30)}.dropdown:hover .combobox-clear,.open.dropdown .combobox-clear{opacity:1;filter:alpha(opacity=100)}.btn .combobox-clear{margin-top:1px;margin-left:1px}.btn:hover .combobox-clear,.open.btn-group .combobox-clear{opacity:1;filter:alpha(opacity=100)}.typeahead-long{max-height:300px;overflow-y:auto}.control-group.error .combobox-container .add-on{color:#dc3545;border-color:#dc3545}.control-group.error .combobox-container .caret{border-top-color:#dc3545}.control-group.warning .combobox-container .add-on{color:#ffc107;border-color:#ffc107}.control-group.warning .combobox-container .caret{border-top-color:#ffc107}.control-group.success .combobox-container .add-on{color:#28a745;border-color:#28a745}.control-group.success .combobox-container .caret{border-top-color:#28a745}.btn .combobox-clear [class^="icon-"]{line-height:1.4em}.combobox-container .dropdown-menu{border-radius:0;padding:0;border:1px solid #007bff;border-top:none}.roo-select2-container .dropdown-menu{border:1px solid #007bff}.dropdown-menu .active{background:#007bff;color:#fff}.dropdown-menu .active label{color:#fff}.dropdown-menu .roo-select2-result{padding:3px 7px 4px;margin:0;cursor:pointer;min-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.roo-select2-container,.roo-select2-choices .roo-select2-search-field{width:100%}.roo-select2-container .x-combo-noedit{cursor:pointer;background-color:#fff}.roo-select2-container .x-combo-noedit[disabled]{cursor:not-allowed;background-color:#ced4da}.roo-combobox-tickable .roo-select2-choices{border:none;background-image:none}.roo-combobox-tickable .roo-select2-result label{width:100%}.dropdown-menu{z-index:20002 !important}.dropdown-menu .checkbox label{width:100%}.roo-select2-container-multi .dropdown-menu .roo-select2-result .checkbox{margin-top:0px;margin-bottom:0px}.dropdown-menu .roo-select2-result .checkbox{margin-top:3px;margin-bottom:3px}.roo-select2-container .input-group-addon{padding:6px 12px;border:1px solid #ced4da;border-left:0px}.roo-select2-container .roo-removable{position:relative}.roo-select2-container .roo-removable .roo-combo-removable-btn{position:absolute;right:10px;z-index:2;top:5px}.roo-select2-container .has-feedback .roo-combo-removable-btn{position:absolute;right:35px;z-index:2;top:5px}.has-warning .roo-select2-container-multi{border:1px solid #ffc107}.roo-ios-select{width:100%}.datepicker{padding:8px 12px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr;font-size:13px;}.datepicker-inline{width:220px}.datepicker.datepicker-rtl{direction:rtl}.datepicker.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown.bottom:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #6c757d;border-bottom-color:#e9ecef;position:absolute;top:-7px;left:7px}.datepicker-dropdown.bottom:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.datepicker-dropdown.top:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #6c757d;border-bottom:0;border-top-color:#e9ecef;position:absolute;bottom:-7px;left:6px}.datepicker-dropdown.top:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;border-bottom:0;position:absolute;bottom:-6px;left:7px}.datepicker-dropdown.bottom-right:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #6c757d;border-bottom-color:#e9ecef;position:absolute;top:-7px;left:7px}.datepicker-dropdown.bottom-right:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:8px}.datepicker-dropdown.bottom-left:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #6c757d;border-bottom-color:#e9ecef;position:absolute;top:-7px;left:260px}.datepicker-dropdown.bottom-left:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:261px}.datepicker-dropdown.top-right:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #6c757d;border-top-color:#e9ecef;position:absolute;bottom:-7px;left:6px}.datepicker-dropdown.top-right:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:7px}.datepicker-dropdown.top-left:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #6c757d;border-top-color:#e9ecef;position:absolute;bottom:-7px;left:260px}.datepicker-dropdown.top-left:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;position:absolute;bottom:-6px;left:261px}.datepicker > div{display:none}.datepicker.days div.datepicker-days{display:block}.datepicker.months div.datepicker-months{display:block}.datepicker.years div.datepicker-years{display:block}.datepicker table{margin:0}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day:hover{background:#ced4da;cursor:pointer}.datepicker table tr td.old,.datepicker table tr td.new{color:#ced4da}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:none;color:#ced4da;cursor:default}.datepicker table tr td.today,.datepicker table tr td.today:hover,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover{background-color:#ffc107;background-image:-moz-linear-gradient(top, #ffc107, #ffc107);background-image:-ms-linear-gradient(top, #ffc107, #ffc107);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffc107), to(#ffc107));background-image:-webkit-linear-gradient(top, #ffc107, #ffc107);background-image:-o-linear-gradient(top, #ffc107, #ffc107);background-image:linear-gradient(top, #ffc107, #ffc107);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$brand-warning', endColorstr='$brand-warning', GradientType=0);border-color:#ffc107 #ffc107 #ffc107;border-color:#e9ecef #e9ecef #adb5bd;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.datepicker table tr td.today:hover,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today:active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today[disabled],.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today.disabled:hover[disabled]{background-color:#ffc107}.datepicker table tr td.today:active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:hover.active{background-color:#ffc107}.datepicker table tr td.active,.datepicker table tr td.active:hover,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover{background-color:#007bff;background-image:-moz-linear-gradient(top, #1a88ff, #007bff);background-image:-ms-linear-gradient(top, #1a88ff, #007bff);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#1a88ff), to(#007bff));background-image:-webkit-linear-gradient(top, #1a88ff, #007bff);background-image:-o-linear-gradient(top, #1a88ff, #007bff);background-image:linear-gradient(top, #1a88ff, #007bff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='lighten($brand-primary, 5%)', endColorstr='$brand-primary', GradientType=0);border-color:#007bff #007bff #0062cc;border-color:#e9ecef #e9ecef #adb5bd;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 #adb5bd}.datepicker table tr td.active:hover,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active[disabled],.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active.disabled:hover[disabled]{background-color:#007bff}.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active{background-color:#0062cc}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker table tr td span:hover{background:#ced4da}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:none;color:#6c757d;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover{background-color:#007bff;background-image:-moz-linear-gradient(top, #1a88ff, #007bff);background-image:-ms-linear-gradient(top, #1a88ff, #007bff);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#1a88ff), to(#007bff));background-image:-webkit-linear-gradient(top, #1a88ff, #007bff);background-image:-o-linear-gradient(top, #1a88ff, #007bff);background-image:linear-gradient(top, #1a88ff, #007bff);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='lighten($brand-primary, 5%)', endColorstr='$brand-primary', GradientType=0);border-color:#007bff #007bff #0062cc;border-color:#e9ecef #e9ecef #adb5bd;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 #adb5bd}.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active[disabled],.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active.disabled:hover[disabled]{background-color:#007bff}.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active{background-color:#0062cc}.datepicker table tr td span.old{color:#6c757d}.datepicker th.switch{width:145px}.datepicker thead tr:first-child th,.datepicker tfoot tr:first-child th{cursor:pointer}.datepicker thead tr:first-child th:hover,.datepicker tfoot tr:first-child th:hover{background:#ced4da}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.datepicker thead tr:first-child th.cw{cursor:default;background-color:transparent}.input-append.date .add-on i,.input-prepend.date .add-on i{display:block;cursor:pointer;width:16px;height:16px}.datepicker .datepicker-time td span{display:block;width:47px;height:54px;line-height:54px;float:left;margin:2px;cursor:pointer;border-radius:4px}.datepicker .datepicker-time td span.timepicker-hour,.datepicker .datepicker-time td span.timepicker-minute{width:100%;font-weight:bold;font-size:1.2em}.roo-document-manager-selector{visibility:hidden;height:0px}.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{position:relative;float:left;width:25%;padding-left:5px;height:100px;max-height:100px;margin-top:10px;margin-left:10px}.roo-document-manager-preview.wide{width:50%}.roo-document-manager-thumb,.roo-document-manager-upload-btn{width:100%;height:100px;line-height:100px;max-height:100px;border:1px solid #ced4da;-webkit-box-shadow:1px 0px 5px 0px fade(#6c757d, 75%);-moz-box-shadow:1px 0px 5px 0px fade(#6c757d, 75%);box-shadow:1px 0px 5px 0px fade(#6c757d, 75%)}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{width:100%;line-height:98px;text-align:center;vertical-align:middle;color:#6c757d;font-size:2.5em}.roo-document-manager-thumb > i.fa{font-size:2.5em}.roo-document-manager-thumb > img{width:100%;max-height:100%;text-align:center;vertical-align:middle;padding-bottom:5px}.roo-document-manager-preview > .close{position:absolute;top:0px;right:3px;font-size:20px;opacity:1}.roo-document-manager-preview > .close:hover{color:#343a40}.roo-document-manager-preview.disabled > .roo-document-manager-thumb > img{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-o-filter:grayscale(100%);-ms-filter:grayscale(100%);filter:grayscale(100%)}.roo-document-manager-preview.disabled > .close{display:none !important}.roo-document-manager-preview > .roo-document-manager-thumb > .fa{position:absolute;left:-5px;top:-5px;width:25px;height:25px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;line-height:25px;text-align:center;background-color:#fff;font-size:1.8em;z-index:1}.roo-document-manager-preview > .roo-document-manager-thumb.bottom > .fa{top:inherit;bottom:-5px}.roo-document-manager-preview > .roo-document-manager-thumb.primary > .fa{color:#007bff}.roo-document-manager-preview > .roo-document-manager-thumb.border-primary{border:3px solid #007bff}.roo-document-manager-preview.disabled > .roo-document-manager-thumb.primary > .fa{color:#495057}.roo-document-manager-preview.disabled > .roo-document-manager-thumb.border-primary{border:none}@media (min-width:768px){.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{height:200px;max-height:200px}.roo-document-manager-thumb,.roo-document-manager-upload-btn{line-height:200px;height:200px;max-height:200px}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{line-height:198px}}@media (min-width:992px){.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{width:8.33333333%;height:80px;max-height:80px}.roo-document-manager-preview.wide{width:16.66666666%}.roo-document-manager-thumb,.roo-document-manager-upload-btn{line-height:80px;height:80px;max-height:80px}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{line-height:78px}}@media (min-width:1200px){.roo-document-manager-uploader,.roo-document-manager-loading,.roo-document-manager-preview{width:8.33333333%;height:100px;max-height:100px}.roo-document-manager-preview.wide{width:16.66666666%}.roo-document-manager-thumb,.roo-document-manager-upload-btn{line-height:100px;height:100px;max-height:100px}.roo-document-manager-thumb > i.fa,.roo-document-manager-upload-btn > i.fa{line-height:98px}}.document-slider-dialog .modal-body{padding:0px}.roo-document-slider-header{background-color:#adb5bd}.roo-document-slider-header .roo-document-slider-header-title{width:80%;margin:0 auto;padding:10px 0;color:#fff;font-weight:bold;text-align:center}.roo-document-slider-body{background-color:#fff;width:100%;height:450px;position:relative;overflow:hidden}.roo-document-slider-body .roo-document-slider-thumb{position:absolute;width:80%;height:100%;top:50%;left:50%;transform:translate(-50%, -50%);box-sizing:border-box;border:1px solid #666;box-shadow:0 0 0 1000px #adb5bd;text-align:center;vertical-align:middle;overflow:auto;cursor:move}.roo-document-slider-body .roo-document-slider-image{width:100%}.roo-document-slider-prev{position:absolute;top:0;left:0;text-align:center;width:10%;height:100%}.roo-document-slider-next{position:absolute;top:0;right:0;text-align:center;width:10%;height:100%}.roo-document-slider-prev > i,.roo-document-slider-next > i{position:relative;top:50%;transform:translateY(-50%);cursor:pointer;font-size:2em}.document-viewer-dialog .modal-dialog{margin:0px auto}.document-viewer-dialog .modal-header,.document-viewer-dialog .modal-footer{padding-top:5px;padding-bottom:5px}.document-viewer-dialog .modal-body{padding:0px}.roo-document-viewer-body{background-color:#fff;width:100%;height:450px;max-height:450px;position:relative;overflow:hidden;cursor:move}.roo-document-viewer-body .roo-document-viewer-thumb{position:absolute;width:80%;height:80%;top:50%;left:50%;transform:translate(-50%, -50%);box-sizing:border-box;border:1px solid #666;box-shadow:0 0 0 1000px #adb5bd;text-align:center;vertical-align:middle;overflow:auto}.roo-document-viewer-body .roo-document-viewer-image{width:100%}.roo-document-viewer-btn-group button{background-color:#000;color:#fff;border-color:#343a40}.roo-document-viewer-btn-group > .btn-group:first-child > button{border-top-left-radius:0}.roo-document-viewer-btn-group > .btn-group:last-child > button{border-top-right-radius:0}.dropdown-submenu:hover > a,.dropdown-submenu:focus > a{color:#fff;text-decoration:none;background-color:#007bff;background-image:-moz-linear-gradient(top, #007bff, #0074f0);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#007bff), to(#0074f0));background-image:-webkit-linear-gradient(top, #007bff, #0074f0);background-image:-o-linear-gradient(top, #007bff, #0074f0);background-image:linear-gradient(to bottom, #007bff, #0074f0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$brand-primary', endColorstr='darken($brand-primary, 3%)', GradientType=0)}.dropdown-submenu{position:relative}.dropdown-submenu > .dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px}.dropdown-submenu:hover > .dropdown-menu{display:block}.dropup .dropdown-submenu > .dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0}.dropup .dropdown-menu{-webkit-animation-name:inherit}.dropdown-submenu > a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#6c757d;border-style:solid;border-width:5px 0 5px 5px;content:" "}.dropdown-submenu:hover > a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none !important}.dropdown-submenu.pull-left > .dropdown-menu{left:0;margin-left:1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px}.dropdown-button > i{margin-right:5px}li.dropdown-toggle i.glyphicon + span{margin-left:5px}li.dropdown-toggle span + i.glyphicon{margin-left:5px}li.dropdown-menu-item i.fa + span{margin-left:5px}li.dropdown-toggle button > i.glyphicon{margin:3px 0 0 5px}.dropdown-menu.nowrap li a span{white-space:nowrap}div.input-group.has-feedback > .form-control-feedback{right:30px}div.input-group.has-feedback > .roo-input-after + .form-control-feedback{right:39px}.roo-required-indicator{font-size:8px;color:#dc3545;vertical-align:top}.roo-required-indicator.left-indicator{margin-right:3px}.roo-required-indicator.right-indicator{margin-left:3px}.label-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.roo-layout-container{width:100%;height:100%;overflow:hidden}.roo-layout-inactive-content{position:absolute;left:-10000px;top:-10000px;visibility:hidden}.roo-layout-active-content{visibility:visible}.roo-layout-panel{position:absolute}.roo-layout-panel-east,.roo-layout-panel-west{z-index:10}.roo-layout-panel-north,.roo-layout-panel-south{z-index:11}.roo-layout-panel-body{overflow:hidden}.roo-layout-split{position:absolute;height:5px;width:5px;line-height:1px;font-size:1px;z-index:3;background-color:#6c757d}.roo-layout-split-south,.roo-layout-split-north{border-bottom:1px solid #6c757d}.roo-layout-split-east,.roo-layout-split-west{border-right:1px solid #6c757d}.roo-layout-panel-hd{position:relative}.roo-layout-panel-hd.breadcrumb{margin-bottom:0}.roo-layout-panel-hd-text{padding:4px;padding-left:4px;display:block;white-space:nowrap}.roo-layout-panel-hd-tools{position:absolute;right:0;top:0;text-align:right;padding-top:2px;padding-right:2px;width:40px}.roo-layout-panel .roo-tabbody{background-color:#fff;overflow:auto;height:100%}.roo-layout-component-panel,.roo-layout-nested-layout{position:relative;padding:0;overflow:hidden;width:200px;height:200px}.roo-layout-nested-layout .roo-layout-panel{border:0 none}.roo-repaint{zoom:1;background-color:transparent}.roo-unselectable{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;cursor:default}.roo-splitbar-proxy{z-index:40009;visibility:hidden;position:absolute;background:#6c757d;border:1px solid #000;overflow:hidden}.roo-splitbar-h,.roo-splitbar-proxy-h{cursor:col-resize}.roo-splitbar-v,.roo-splitbar-proxy-v{cursor:row-resize}.roo-layout-panel-body .navbar ul.nav-tabs{margin-top:9px;display:table}.roo-layout-panel-body .navbar{margin-bottom:0px}.roo-form-group-label-left::before,.roo-form-group-label-left::after{display:table;content:" ";clear:both}a.list-group-item,button.list-group-item{width:100%;color:#495057;text-align:inherit}.roo-el-mask{z-index:20000;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:0.5;filter:alpha(opacity=50);background-color:#6c757d;width:100%;height:100%;zoom:1}.roo-el-mask-msg{position:absolute;z-index:20000;background-color:#fff;padding:0px;background-repeat:no-repeat;border:10px solid white;border-radius:20px;display:table;min-width:250px}.roo-el-mask-msg i{font-size:36px;vertical-align:middle;float:left}.roo-el-mask-msg div{font-family:'Source Sans Pro', sans-serif;font-size:24px;font-weight:500;z-index:20001;padding:0px 15px;color:#495057;display:table-cell;vertical-align:middle;float:left}.x-body-masked{overflow:hidden !important}.x-body-masked select,.ext-masked object,.ext-masked embed{visibility:hidden}.x-dlg-mask{z-index:10000;display:none;position:absolute;top:0;left:0;-moz-opacity:0.5;opacity:0.5;filter:alpha(opacity=50);background-color:#6c757d}.masonary .masonry-bottom-title{background-color:transparent}.masonry-brick-link,.roo-brick-link{cursor:pointer;text-decoration:none;outline:0}.masonry-brick-paragraph,.roo-brick-paragraph{overflow:hidden}.masonry-brick .masonry-brick-paragraph{padding:9px;width:100%;height:100%;position:absolute;top:0;left:0;background-color:inherit}.masonry-center-title .masonry-brick-paragraph,.masonry-bottom-title .masonry-brick-paragraph,.roo-brick-center-title .roo-brick-paragraph,.roo-brick-bottom-title .roo-brick-paragraph{display:table}.masonry-center-title .masonry-brick-paragraph .masonry-brick-title,.roo-brick-center-title .roo-brick-paragraph .roo-brick-title{display:table-cell;vertical-align:middle;text-align:center}.masonry-bottom-title .masonry-brick-paragraph .masonry-brick-title,.roo-brick-bottom-title .roo-brick-paragraph .roo-brick-title{display:table-cell;vertical-align:bottom;text-align:right}.masonry-brick-image .masonry-brick-paragraph,.roo-brick-image .roo-brick-paragraph{opacity:0}.masonry-bottom-title .masonry-brick-paragraph{opacity:1}.masonry-brick-image-view{width:100%;height:100%;object-fit:cover}.masonry-brick-paragraph .masonry-brick-title,.roo-brick-paragraph .roo-brick-title{margin-top:0}.roo-brick .roo-brick-paragraph{padding:9px;width:100%;height:100%;background-color:inherit}.roo-brick-image-view{position:absolute;top:0;object-fit:cover}a.roo-brick-link:focus,a.roo-brick-link:hover{text-decoration:none;outline:0}.masonry-brick-split .masonry-brick-split-head,.masonry-brick-split .masonry-brick-split-head .masonry-brick-paragraph{height:75%}.masonry-brick-split .masonry-brick-split-body{height:25%;padding:4px;color:#000;font-size:11px}.enable-mask:hover .masonry-brick-mask{width:100%;height:100%;position:absolute;top:0;left:0;background-color:#000;opacity:0.2}@media (min-width:768px){.mask-inverse .masonry-brick-paragraph{background:#adb5bd}.mask-inverse:hover .masonry-brick-paragraph{background:none}}.modal-md-1,.modal-md-2,.modal-md-3,.modal-md-4,.modal-md-5,.modal-md-6,.modal-md-7,.modal-md-8,.modal-md-9,.modal-md-10,.modal-md-11,.modal-md-12{float:left}.modal-md-12 .modal-dialog{width:100%;margin:30 auto}.modal-md-11 .modal-dialog{width:91.6666666667%;margin:30 auto}.modal-md-10 .modal-dialog{width:83.3333333333%;margin:30 auto}.modal-md-9 .modal-dialog{width:75%;margin:30 auto}.modal-md-8 .modal-dialog{width:66.6666666667%;margin:30 auto}.modal-md-7 .modal-dialog{width:58.3333333333%;margin:30 auto}.modal-md-6 .modal-dialog{width:50%;margin:30 auto}.modal-md-5 .modal-dialog{width:41.6666666667%;margin:30 auto}.modal-md-4 .modal-dialog{width:33.3333333333%;margin:30 auto}.modal-md-3 .modal-dialog{width:25%;margin:30 auto}.modal-md-2 .modal-dialog{width:16.6666666667%;margin:30 auto}.modal-md-1 .modal-dialog{width:8.3333333333%;margin:30 auto}.modal-body.roo-layout-container,.modal-body > .container{padding:0}@media (max-width:768px){.modal-body .col-md-12{padding:0}.modal-body{padding:5px}.modal-body .row{margin-left:-5px;margin-right:-5px}.modal-body > .container .col-xs-12{padding:0}}.modal .roo-mb-progress-wrap{margin-top:4px;border:1px solid #0062cc}.modal .roo-mb-progress-wrap .roo-mb-progress{height:18px;background:transparent url("../images/default/basic-dialog/progress2.gif") repeat-x 1px 1px}.modal .roo-mb-progress-wrap .roo-mb-progress .roo-mb-progress-bar{height:18px;overflow:hidden;width:0;background:#007bff}.roo-navigation-bar-group,.roo-navigation-top-bar,.roo-navigation-bullets-bar,.roo-navigation-bottom-bar{width:100%;float:left}.roo-navigation-bar-text > span{text-transform:uppercase;width:90%;display:inline-block}.roo-navigation-bar-text{float:left;line-height:24px;height:100%;min-height:24px;text-align:center;position:relative}.roo-navigation-bar{counter-reset:step;text-align:center;padding:0px;overflow:hidden;margin:0px}.roo-navigation-bar .roo-navigation-bar-item{list-style-type:none;color:#000;text-transform:uppercase;font-size:14px;float:left;position:relative}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon:before{counter-increment:step;width:25px;line-height:25px;display:block;color:#fff;background:#007bff;border-radius:5px;font-weight:bold;cursor:pointer}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon.step-number:before{content:counter(step)}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon:after{content:'';width:100%;height:5px;background:#007bff;position:absolute;top:10px;z-index:-1}.roo-navigation-bar .roo-navigation-bar-item:last-child > .roo-navigation-bar-item-icon:after{content:none}.roo-navigation-bar .roo-navigation-bar-item.active .roo-navigation-bar-item-icon:before{background:#9f1c28;color:#fff}.roo-navigation-bar .roo-navigation-bar-item.disabled .roo-navigation-bar-item-icon:before{background:#6c757d;color:#fff;cursor:not-allowed}.roo-navigation-bar .roo-navigation-bar-item.active .roo-navigation-bar-item-icon:before{cursor:default}.roo-navigation-bar .roo-navigation-bar-item .roo-navigation-bar-item-icon{font:normal normal normal 14px/1 FontAwesome;display:inline-block}@media (min-width:768px){.roo-navigation-bar .roo-navigation-bar-item.xs-icon > .roo-navigation-bar-item-icon:before{content:counter(step)}}@media (min-width:992px){.roo-navigation-bar .roo-navigation-bar-item.xs-icon > .roo-navigation-bar-item-icon:before,.roo-navigation-bar .roo-navigation-bar-item.sm-icon > .roo-navigation-bar-item-icon:before{content:counter(step)}}@media (min-width:1200px){.roo-navigation-bar .roo-navigation-bar-item.xs-icon > .roo-navigation-bar-item-icon:before,.roo-navigation-bar .roo-navigation-bar-item.sm-icon > .roo-navigation-bar-item-icon:before,.roo-navigation-bar .roo-navigation-bar-item.md-icon > .roo-navigation-bar-item-icon:before{content:counter(step)}}.nav-tabs-custom{margin-bottom:20px;background:#fff;box-shadow:0px 1px 3px rgba(0, 0, 0, 0.1)}.nav-tabs-custom > .nav-tabs{margin:0;border-bottom-color:#6c757d}.nav-tabs-custom > .nav-tabs > li{border-top:3px solid transparent;margin-bottom:-2px;margin-right:5px}.nav-tabs-custom > .nav-tabs > li > a{-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.nav-tabs-custom > .nav-tabs > li > a,.nav-tabs-custom > .nav-tabs > li > a:hover{background:transparent;margin:0}.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active{border-color:transparent}.nav-tabs-custom > .nav-tabs > li.active{border-top-color:#007bff}.nav-tabs-custom > .nav-tabs > li.active > a,.nav-tabs-custom > .nav-tabs > li.active:hover > a{background-color:#fff}.nav-tabs-custom > .nav-tabs > li.active > a{border-top:0;border-left-color:#6c757d;border-right-color:#6c757d}.nav-tabs-custom > .nav-tabs > li:first-of-type{margin-left:0px}.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a{border-left-width:0}.nav-tabs-custom > .nav-tabs.pull-right{float:none !important}.nav-tabs-custom > .nav-tabs.pull-right > li{float:right}.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type{margin-right:0px}.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a{border-left-width:1px;border-right-width:0px}.nav-tabs-custom > .nav-tabs > li.header{font-weight:400;line-height:35px;padding:0 10px;font-size:20px;color:#343a40;cursor:default}.nav-tabs-custom > .nav-tabs > li.header > .fa,.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,.nav-tabs-custom > .nav-tabs > li.header > .ion{margin-right:10px}.nav-tabs-custom > .tab-content{background:#fff;padding:10px}.tab-content > .tab-pane{position:absolute}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .roo-toolbar{margin:0 5px}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .roo-toolbar > .column{padding:10px 5px}@media (max-width:768px){.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .roo-toolbar > .column{padding:5px 5px}}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item .form-group{margin-bottom:0px}.tab-content > .tab-pane .navbar > .navbar-nav > .nav-item button + button{margin-left:5px}.tab-content > .tab-pane .navbar > .navbar-nav a.dropdown-toggle{padding:10px 5px}@media (min-width:768px){.navbar-right{margin-right:15px}}.navbar-nav{margin:0px -5px}table td .navbar{min-height:auto}.roo-numberbox{background-color:#007bff !important;border:10px solid black}.roo-numberbox h{font-size:24px}.pull-xs-right{float:right !important}.roo-radio-set:before,.roo-radio-set:after{display:table;content:" ";clear:both}.radio.checked label::after{-webkit-transform:scale(1, 1);-ms-transform:scale(1, 1);-o-transform:scale(1, 1);transform:scale(1, 1);background-color:#495057}.roo-radio-set.disabled .radio label{opacity:0.65}.roo-radio-set.disabled .radio label{cursor:not-allowed}.roo-radio-primary .radio label::after{background-color:#fff}.roo-radio-primary .radio.checked label::before{border-color:#007bff}.roo-radio-primary .radio.checked label::after{background-color:#007bff}.roo-radio-danger .radio label::after{background-color:#dc3545}.roo-radio-danger .radio.checked label::before{border-color:#dc3545}.roo-radio-danger .radio.checked label::after{background-color:#dc3545}.roo-radio-info .radio label::after{background-color:#fff}.roo-radio-info .radio.checked label::before{border-color:#17a2b8}.roo-radio-info .radio.checked label::after{background-color:#17a2b8}.roo-radio-warning .radio label::after{background-color:#fff}.roo-radio-warning .radio.checked label::before{border-color:#ffc107}.roo-radio-warning .radio.checked label::after{background-color:#ffc107}.roo-radio-success .radio label::after{background-color:#fff}.roo-radio-success .radio.checked label::before{border-color:#28a745}.roo-radio-success .radio.checked label::after{background-color:#28a745}.roo-radio-set.is-invalid .roo-radio-set-items label,.roo-radio-set.is-invalid .roo-radio-set-label{color:#dc3545}.roo-radio-set.is-valid .roo-radio-set-items label,.roo-radio-set.is-valid .roo-radio-set-label{color:#28a745}.roo-radio-set-inline .radio{position:relative;display:inline-block;padding-left:20px;margin-top:0px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.roo-radio-set-inline .radio + .radio{margin-left:10px}.roo-radio-set-label .roo-required-indicator.right-indicator{position:absolute}.roo-radio-set-label .roo-required-indicator.right-indicator.fa-star{font-size:8px;margin-left:3px;color:#dc3545}.roo-form-error-popover.in{opacity:1}.roo-form-error-popover .tooltip-inner{max-width:100%;padding:10px}.x-form-field-wrap .form-group{margin-bottom:0px}.roo-password-meter-grey{background:#6c757d;margin-bottom:30px;height:10px}.roo-password-meter{font-size:12px}.roo-password-meter-container{margin-bottom:20px}.roo-password-meter-tooweak{background:#dc3545;height:10px}.roo-password-meter-weak{background:#ffc107;height:10px}.roo-password-meter-medium{background:#17a2b8;height:10px}.roo-password-meter-strong{background:#28a745;height:10px}.roo-password-meter-text{margin-bottom:30px;font-size:12px;height:10px}.roo-select2-container{margin:0;position:relative;zoom:1;*display:inline;vertical-align:middle}.roo-select2-container,.roo-select2-drop,.roo-select2-search,.roo-select2-search input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.roo-select2-container .roo-select2-choice{display:block;height:26px;padding:0 0 0 8px;overflow:hidden;position:relative;border:1px solid #6c757d;white-space:nowrap;line-height:26px;color:#343a40;text-decoration:none;border-radius:4px;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #ced4da), color-stop(0.5, #fff));background-image:-webkit-linear-gradient(center bottom, #ced4da 0%, #fff 50%);background-image:-moz-linear-gradient(center bottom, #ced4da 0%, #fff 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '$body-bg', endColorstr = '$gray-lighter', GradientType = 0);background-image:linear-gradient(to top, #ced4da 0%, #fff 50%)}.roo-select2-container.roo-select2-drop-above .roo-select2-choice{border-bottom-color:#6c757d;border-radius:0 0 4px 4px;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #ced4da), color-stop(0.9, #fff));background-image:-webkit-linear-gradient(center bottom, #ced4da 0%, #fff 90%);background-image:-moz-linear-gradient(center bottom, #ced4da 0%, #fff 90%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$body-bg', endColorstr='$gray-lighter', GradientType=0);background-image:linear-gradient(to bottom, #ced4da 0%, #fff 90%)}.roo-select2-container.roo-select2-allowclear .roo-select2-choice .roo-select2-chosen{margin-right:42px}.roo-select2-container .roo-select2-choice > .roo-select2-chosen{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;float:none;width:auto}.roo-select2-container .roo-select2-choice abbr{display:none;width:12px;height:12px;position:absolute;right:24px;top:8px;font-size:1px;text-decoration:none;border:0;background:url("../images/select2/select2.png") right top no-repeat;cursor:pointer;outline:0}.roo-select2-container.roo-select2-allowclear .roo-select2-choice abbr{display:inline-block}.roo-select2-container .roo-select2-choice abbr:hover{background-position:right -11px;cursor:pointer}.roo-select2-drop-mask{border:0;margin:0;padding:0;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:9998;background-color:#fff;filter:alpha(opacity=0)}.roo-select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:9999;top:100%;background:#fff;color:#000;border:1px solid #6c757d;border-top:0;border-radius:0 0 4px 4px;-webkit-box-shadow:0 4px 5px #e9ecef;box-shadow:0 4px 5px #e9ecef}.roo-select2-drop.roo-select2-drop-above{margin-top:1px;border-top:1px solid #6c757d;border-bottom:0;border-radius:4px 4px 0 0;-webkit-box-shadow:0 -4px 5px #e9ecef;box-shadow:0 -4px 5px #e9ecef}.roo-select2-drop-active{border:1px solid #007bff;border-top:none}.roo-select2-drop.roo-select2-drop-above.roo-select2-drop-active{border-top:1px solid #007bff}.roo-select2-drop-auto-width{border-top:1px solid #6c757d;width:auto}.roo-select2-drop-auto-width .roo-select2-search{padding-top:4px}.roo-select2-container .roo-select2-choice .roo-select2-arrow{display:inline-block;width:18px;height:100%;position:absolute;right:0;top:0;border-left:1px solid #6c757d;border-radius:0 4px 4px 0;background-clip:padding-box;background:#6c757d;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #6c757d), color-stop(0.6, #ced4da));background-image:-webkit-linear-gradient(center bottom, #6c757d 0%, #ced4da 60%);background-image:-moz-linear-gradient(center bottom, #6c757d 0%, #ced4da 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '$gray-lighter', endColorstr = '$gray-light', GradientType = 0);background-image:linear-gradient(to top, #6c757d 0%, #ced4da 60%)}.roo-select2-container .roo-select2-choice .roo-select2-arrow b{display:block;width:100%;height:100%;background:url("../images/select2/select2.png") no-repeat 0 1px}.roo-select2-search{display:inline-block;width:100%;min-height:26px;margin:0;padding-left:4px;padding-right:4px;position:relative;z-index:10000;white-space:nowrap}.roo-select2-search input{width:100%;height:auto !important;min-height:26px;padding:4px 20px 4px 5px;margin:0;outline:0;font-family:sans-serif;font-size:1em;border:1px solid #6c757d;border-radius:0;-webkit-box-shadow:none;box-shadow:none;background:#fff url("../images/select2/select2.png") no-repeat 100% -22px;background:url("../images/select2/select2.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #ced4da));background:url("../images/select2/select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2.png") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #ced4da 99%) 0 0}.roo-select2-drop.roo-select2-drop-above .roo-select2-search input{margin-top:4px}.roo-select2-search input.roo-select2-active{background:#fff url("../images/select2/select2-spinner.gif") no-repeat 100%;background:url("../images/select2/select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #ced4da));background:url("../images/select2/select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #ced4da 99%);background:url("../images/select2/select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #ced4da 99%) 0 0}.roo-select2-container-active .roo-select2-choice,.roo-select2-container-active .roo-select2-choices{border:1px solid #007bff;outline:none;-webkit-box-shadow:0 0 5px #adb5bd;box-shadow:0 0 5px #adb5bd}.roo-select2-dropdown-open .roo-select2-choice{border-bottom-color:transparent;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;border-bottom-left-radius:0;border-bottom-right-radius:0;background-color:#ced4da;background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #ced4da));background-image:-webkit-linear-gradient(center bottom, #fff 0%, #ced4da 50%);background-image:-moz-linear-gradient(center bottom, #fff 0%, #ced4da 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$gray-lighter', endColorstr='$body-bg', GradientType=0);background-image:linear-gradient(to top, #fff 0%, #ced4da 50%)}.roo-select2-dropdown-open.roo-select2-drop-above .roo-select2-choice,.roo-select2-dropdown-open.roo-select2-drop-above .roo-select2-choices{border:1px solid #007bff;border-top-color:transparent;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #ced4da));background-image:-webkit-linear-gradient(center top, #fff 0%, #ced4da 50%);background-image:-moz-linear-gradient(center top, #fff 0%, #ced4da 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='$gray-lighter', endColorstr='$body-bg', GradientType=0);background-image:linear-gradient(to bottom, #fff 0%, #ced4da 50%)}.roo-select2-dropdown-open .roo-select2-choice .roo-select2-arrow{background:transparent;border-left:none;filter:none}.roo-select2-dropdown-open .roo-select2-choice .roo-select2-arrow b{background-position:-18px 1px}.roo-select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.roo-select2-results{max-height:200px;padding:0 0 0 4px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:fade(#000, 0%)}.roo-select2-results ul.roo-select2-result-sub{margin:0;padding-left:0}.roo-select2-results li{list-style:none;display:list-item;background-image:none}.roo-select2-results li.roo-select2-result-with-children > .roo-select2-result-label{font-weight:bold}.roo-select2-results .roo-select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;min-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.roo-select2-results-dept-1 .roo-select2-result-label{padding-left:20px}.roo-select2-results-dept-2 .roo-select2-result-label{padding-left:40px}.roo-select2-results-dept-3 .roo-select2-result-label{padding-left:60px}.roo-select2-results-dept-4 .roo-select2-result-label{padding-left:80px}.roo-select2-results-dept-5 .roo-select2-result-label{padding-left:100px}.roo-select2-results-dept-6 .roo-select2-result-label{padding-left:110px}.roo-select2-results-dept-7 .roo-select2-result-label{padding-left:120px}.roo-select2-results .roo-select2-highlighted{background:#007bff;color:#fff}.roo-select2-results li em{background:#ffc107;font-style:normal}.roo-select2-results .roo-select2-highlighted em{background:transparent}.roo-select2-results .roo-select2-highlighted ul{background:#fff;color:#000}.roo-select2-results .roo-select2-no-results,.roo-select2-results .roo-select2-searching,.roo-select2-results .roo-select2-selection-limit{background:#6c757d;display:list-item;padding-left:5px}.roo-select2-results .roo-select2-disabled.roo-select2-highlighted{color:#ced4da;background:#6c757d;display:list-item;cursor:default}.roo-select2-results .roo-select2-disabled{background:#6c757d;display:list-item;cursor:default}.roo-select2-results .roo-select2-selected{display:none}.roo-select2-more-results.roo-select2-active{background:#6c757d url("../images/select2/select2-spinner.gif") no-repeat 100%}.roo-select2-more-results{background:#6c757d;display:list-item}.roo-select2-container.roo-select2-container-disabled .roo-select2-choice{background-color:#6c757d;background-image:none;border:1px solid #6c757d;cursor:default}.roo-select2-container.roo-select2-container-disabled .roo-select2-choice .roo-select2-arrow{background-color:#6c757d;background-image:none;border-left:0}.roo-select2-container.roo-select2-container-disabled .roo-select2-choice abbr{display:none}.roo-select2-container-multi{width:100%;}.roo-select2-container-multi .roo-select2-choices{height:auto !important;height:1%;margin:0;padding:0;width:100%;border:1px solid #6c757d;cursor:text;overflow:hidden;background-color:#fff;background-image:-webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #ced4da), color-stop(15%, #fff));background-image:-webkit-linear-gradient(top, #ced4da 1%, #fff 15%);background-image:-moz-linear-gradient(top, #ced4da 1%, #fff 15%);background-image:linear-gradient(to bottom, #ced4da 1%, #fff 15%)}.roo-select2-locked{padding:3px 5px 3px 5px !important}.roo-select2-container-multi .roo-select2-choices{min-height:26px}.roo-select2-container-multi.roo-select2-container-active .roo-select2-choices{border:1px solid #007bff;outline:none;-webkit-box-shadow:0 0 5px #adb5bd;box-shadow:0 0 5px #adb5bd}.roo-select2-container-multi .roo-select2-choices li{float:left;list-style:none}html[dir="rtl"] .roo-select2-container-multi .roo-select2-choices li{float:right}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-field{margin:0;padding:0;white-space:nowrap}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-field input{padding:5px;margin:1px 0;font-family:sans-serif;font-size:100%;color:#495057;outline:0;border:0;-webkit-box-shadow:none;box-shadow:none;background:transparent !important}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-field input.roo-select2-active{background:#fff url("../images/select2/select2-spinner.gif") no-repeat 100% !important}.roo-select2-default{color:#6c757d !important}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice{padding:4px 7px 4px 16px;margin:0 1px;position:relative;line-height:13px;color:#343a40;cursor:default;border:1px solid #6c757d;border-radius:3px;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[dir="rtl"] .roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice{margin-left:0;margin-right:5px}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice .roo-select2-chosen{cursor:default}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice-focus{background:#6c757d}.roo-select2-search-choice-close{display:block;width:12px;height:13px;position:absolute;right:3px;top:4px;font-size:12px;outline:none;color:#6c757d;}.roo-select2-search-choice-close:hover{color:#343a40}html[dir="rtl"] .roo-select2-search-choice-close{right:auto;left:3px}.roo-select2-container-multi .roo-select2-search-choice-close{left:3px}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice .roo-select2-search-choice-close:hover{background-position:right -11px}.roo-select2-container-multi .roo-select2-choices .roo-select2-search-choice-focus .roo-select2-search-choice-close{background-position:right -11px}.roo-select2-container-multi.roo-select2-container-disabled .roo-select2-choices{background-color:#6c757d;background-image:none;border:1px solid #6c757d;cursor:default}.roo-select2-container-multi.roo-select2-container-disabled .roo-select2-choices .roo-select2-search-choice{padding:3px 5px 3px 5px;border:1px solid #6c757d;background-image:none;background-color:#6c757d}.roo-select2-container-multi.roo-select2-container-disabled .roo-select2-choices .roo-select2-search-choice .roo-select2-search-choice-close{display:none;background:none}.roo-select2-result-selectable .roo-select2-match,.roo-select2-result-unselectable .roo-select2-match{text-decoration:underline}.roo-select2-offscreen,.roo-select2-offscreen:focus{clip:rect(0 0 0 0) !important;width:1px !important;height:1px !important;border:0 !important;margin:0 !important;padding:0 !important;overflow:hidden !important;position:absolute !important;outline:0 !important;left:0px !important;top:0px !important}.roo-select2-display-none{display:none}.roo-select2-measure-scrollbar{position:absolute;top:-10000px;left:-10000px;width:100px;height:100px;overflow:scroll}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:2dppx){.roo-select2-search input,.roo-select2-search-choice-close,.roo-select2-container .roo-select2-choice abbr,.roo-select2-container .roo-select2-choice .roo-select2-arrow b{background-image:url("../images/select2/select2x2.png") !important;background-repeat:no-repeat !important;background-size:60px 40px !important}.roo-select2-search input{background-position:100% -21px !important}}.has-error .roo-select2-choices{border-color:#dc3545;-webkit-box-shadow:inset 0 1px 1px #343a40;box-shadow:inset 0 1px 1px #343a40}.dropdown-menu .roo-select2-result.disabled{background-color:#ced4da;color:#6c757d;cursor:not-allowed}.sidebar{margin-bottom:5px}.sidebar a:hover{text-decoration:none}.sidebar .sidebar-menu{list-style:none;margin:0;padding:0}.sidebar .sidebar-menu > li,.sidebar .sidebar-menu li.active li.treeview-menu{margin:0;padding:0;border-bottom:1px solid #6c757d;background-color:#ced4da}.sidebar .sidebar-menu li.active li.treeview-menu{background-color:#6c757d}.sidebar .sidebar-menu > li > a,.sidebar .sidebar-menu li.open li.treeview-menu > a{padding:12px 5px 12px 15px;display:block;color:#343a40}.sidebar .sidebar-menu > li > a > .fa,.sidebar .sidebar-menu > li > a > .glyphicon,.sidebar .sidebar-menu > li > a > .ion{width:20px}.sidebar .sidebar-menu li:hover,.sidebar .sidebar-menu li:focus,.sidebar .sidebar-menu li:active,.sidebar .sidebar-menu li.active li.treeview-menu:hover,.sidebar .sidebar-menu li.active li.treeview-menu:focus,.sidebar .sidebar-menu li.active li.treeview-menu:active{background-color:#fff}.sidebar .sidebar-menu li:hover a,.sidebar .sidebar-menu li:focus a,.sidebar .sidebar-menu li:active a,.sidebar .sidebar-menu li.oepn li.treeview-menu a:hover,.sidebar .sidebar-menu li.open li.treeview-menu a:focus,.sidebar .sidebar-menu li.open li.treeview-menu a:active{color:#000;text-decoration:none}.sidebar .sidebar-menu li.active{color:#fff;background-color:#007bff;border-color:#0062cc}.sidebar .sidebar-menu li.active:hover,.sidebar .sidebar-menu li.active:focus,.sidebar .sidebar-menu li.active.focus{color:#fff;background-color:#007bff;border-color:#0062cc}.sidebar .sidebar-menu li.active a{color:#fff}.sidebar .sidebar-menu li.disabled{color:#343a40;background-color:#fff;border-color:#343a40}.sidebar .sidebar-menu li.disabled a{color:#6c757d;cursor:default}.sidebar .sidebar-menu li.danger,.sidebar .sidebar-menu li.danger.active{color:#fff;background-color:#dc3545;border-color:#e4606d}.sidebar .sidebar-menu li.danger:hover,.sidebar .sidebar-menu li.danger:focus,.sidebar .sidebar-menu li.danger.active:focus{color:#fff;background-color:#dc3545;border-color:#bd2130;border-bottom:1px solid #bd2130}.sidebar .sidebar-menu li.danger a,.sidebar .sidebar-menu li.danger.active a{color:#fff}.sidebar .sidebar-menu li.open ul{display:block}.sidebar .sidebar-menu li.open .treeview-menu{display:block}.sidebar .sidebar-menu .treeview-menu{display:none;list-style:none;padding:0;margin:0}.sidebar .sidebar-menu .treeview-menu > li{margin:0}.sidebar .sidebar-menu li.open li.treeview-menu > a{padding:5px 5px 5px 20px;display:block;font-size:14px;margin:0px 0px}.sidebar .sidebar-menu .treeview-menu > li > a > .fa,.sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,.sidebar .sidebar-menu .treeview-menu > li > a > .ion{width:20px}.sidebar .sidebar-menu li li.treeview-menu.active > a{font-weight:bold}.badge-default{background-color:#6c757d;color:#fff}.badge-primary{background-color:#007bff;color:#fff}.badge-success{background-color:#28a745;color:#fff}.badge-info{background-color:#17a2b8;color:#fff}.badge-warning{background-color:#ffc107;color:#fff}.badge-danger{background-color:#dc3545;color:#fff}.sidebar .sidebar-menu > li.active .badge-info{background-color:#fff;color:#17a2b8}html.bootstrap-sticky{position:relative;min-height:100%}html.bootstrap-sticky body{margin-bottom:60px}.bootstrap-sticky-footer{position:absolute;bottom:0;width:100%;height:60px;background-color:#6c757d}@media (max-width:767px){.bootstrap-sticky-footer{margin-left:-20px;margin-right:-20px;padding-left:20px;padding-right:20px}}.table .pagination .x-paging-position span{padding:3px 6px}.table .pagination .x-paging-position span input{margin:0 0 0 7px;width:42px;padding:0 5px}.navbar .pagination > li > span{min-height:34px}.table tfoot td{padding:0}.navbar .pagination{margin:0}.skin-blue .navbar .pagination > li > a:active,.skin-blue .navbar .pagination > li > a:focus,.skin-blue .navbar .pagination > li > a{background-color:#007bff}.skin-blue .navbar .pagination > li > a:hover{background-color:#6c757d}.skin-blue table .navbar{background-color:#fff}.skin-blue .navbar .pagination > li.disabled > a{background-color:#6c757d}.skin-blue table .navbar{margin-bottom:0;min-height:0}.table .sortable{cursor:pointer}.table-body-fixed tbody{overflow-y:scroll;width:100%}.table-body-fixed thead,.table-body-fixed tbody,.table-body-fixed th{display:block}.table-body-fixed thead{overflow:hidden}.table-body-fixed tbody td,.table-body-fixed thead > tr > th{float:left;border-bottom-width:0}.table-body-fixed thead > tr,.table-body-fixed tbody > tr{display:block;overflow:hidden}.table > tbody > tr.info{background-color:#d9edf7}.table-hover > tbody > tr.info:hover{background-color:#c4e3f3}.table tfoot .navbar{min-height:inherit}.roo-ie11 table.table tbody tr,.roo-edge table.table tbody tr{height:auto}.header .top-bar{min-height:30px;background:#6c757d;border-bottom:1px solid #ced4da;padding:0}@media (min-width:980px){.top-bar .collapse{display:block !important;visibility:visible !important;height:auto !important;overflow:visible !important;padding-bottom:0}}@media (min-width:768px) and (max-width:979px){.header .top-bar{min-height:0;padding:3px 0}}.header .social,.footer .social{margin-right:4px;line-height:30px;padding-left:0;margin-bottom:0}.footer .social li:last-child,.footer .social{margin-right:0 !important}.header .social li:first-child{border-left:1px solid #6c757d}.header .social li,.footer .social li{border-right:1px solid #6c757d;display:table-cell;vertical-align:middle;height:40px;margin-right:5px;width:40px;text-align:center;-webkit-transition:background 0.5s ease-in-out;-moz-transition:background 0.5s ease-in-out;-o-transition:background 0.5s ease-in-out;-ms-transition:background 0.5s ease-in-out;transition:background 0.5s ease-in-out;padding:1px}.header .social i,.footer .social i{color:#495057;font-size:16px;-webkit-transition:color 0.5s ease-in-out;-moz-transition:color 0.5s ease-in-out;-o-transition:color 0.5s ease-in-out;-ms-transition:color 0.5s ease-in-out;transition:color 0.5s ease-in-out}.header .social li:hover a i,.footer .social li:hover a i{color:#fff}.team .item .team-member-links a.facebook:hover,.member-social.dark a.facebook:hover,.header .social li.facebook:hover,.footer .social li.facebook:hover{background:#007bff}.team .item .team-member-links a.dribbble:hover,.member-social.dark a.dribbble:hover,.header .social li.dribbble:hover,.footer .social li.dribbble:hover{background:#ffc107}.team .item .team-member-links a.twitter:hover,.member-social.dark a.twitter:hover,.header .social li.twitter:hover,.footer .social li.twitter:hover{background:#007bff}.team .item .team-member-links a.gplus:hover,.member-social.dark a.gplus:hover,.header .social li.gplus:hover,.footer .social li.gplus:hover{background:#dc3545}.team .item .team-member-links a.linkedin:hover,.member-social.dark a.linkedin:hover,.header .social li.linkedin:hover,.footer .social li.linkedin:hover{background:#007bff}.team .item .team-member-links a.pinterest:hover,.member-social.dark a.pinterest:hover,.header .social li.pinterest:hover,.footer .social li.pinterest:hover{background:#dc3545}.header .social li.rss:hover,.footer .social li.rss:hover{background:#ffc107}.top-bar .languages{padding:8px 0}.top-bar .languages a{margin-right:20px;color:#495057;font-family:"Open Sans", Helvetica, Arial, sans-serif;font-size:14px;line-height:24px}.navbar-left .input-group[class*="col-"]{float:left}.ellipsis{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.sw-child-headline{display:inline-block;width:auto}.box-input-label{width:100%;display:inline-block;font-weight:bold}.box-label{margin-left:5px;cursor:pointer}.input-group .form-control{z-index:1}.checkbox,.radio{padding-left:15px !important}.pagination .x-paging-position span{padding-top:3px;padding-bottom:3px}.pagination .x-paging-position span input{margin:0 3px}.panel-header-right{float:right;text-align:right}.badge-error{background-color:#dc3545}.badge-error:hover{background-color:#bd2130}.badge-warning{background-color:#ffc107}.badge-warning:hover{background-color:#d39e00}.badge-success{background-color:#28a745}.badge-success:hover{background-color:#1e7e34}.badge-info{background-color:#17a2b8}.badge-info:hover{background-color:#117a8b}.badge-inverse{background-color:#343a40}.badge-inverse:hover{background-color:#212529}.tooltip.fade.in{z-index:10002}.x-hidden{position:absolute;top:0;left:0;visibility:hidden;display:none}.roo-upload-cropbox-selector{visibility:hidden;height:0px}.roo-upload-cropbox-dialog .modal-header,.roo-upload-cropbox-dialog .modal-footer{padding-top:5px;padding-bottom:5px}.roo-upload-cropbox-body{background-color:#fff;border:1px solid #6c757d;width:100%;height:450px;max-height:450px;position:relative;overflow:hidden;cursor:move}.roo-upload-cropbox-preview{position:absolute;top:0px;left:0px;text-align:center;margin:0px;padding:0px;border:none}.roo-upload-cropbox-body .roo-upload-cropbox-thumb{position:absolute;box-sizing:border-box;border:1px solid #6c757d;box-shadow:0 0 0 1000px #adb5bd;background:none repeat scroll 0% 0% transparent}.roo-upload-cropbox-body .roo-upload-cropbox-empty-notify{height:100%;background-color:#adb5bd;color:#fff;font-weight:bold;font-size:24px;text-align:center;padding-top:50px;font-style:italic}.roo-upload-cropbox-btn-group button{background-color:#000;color:#fff;border-color:#343a40}.roo-upload-cropbox-error-notify{border-radius:0px;text-align:center;padding:0px !important;margin:0px !important;position:absolute;top:0;left:0}.tel-input{padding-left:105px;border-radius:4px !important}.dial-code-holder{position:absolute;width:60px;left:55px;z-index:3;padding:7px;border:1px solid transparent;background:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tel-list li a{padding-left:10px}.tel-list li a .flag{margin-right:20px}.tel-list li a .dial-code{color:#999}.flag-box{position:absolute;top:6px;height:20px;width:50px;padding:5px;margin-left:5px;display:flex;flex-direction:row;justify-content:space-around;z-index:4}.flag-box .caret{margin-top:3px}.flag{background-image:url("../images/default/flags.png");background-repeat:no-repeat;width:20px;height:inherit;display:inline-block;margin-right:10px}.flag.ac{height:10px;background-position:0px 0px}.flag.ad{height:14px;background-position:-22px 0px}.flag.ae{height:10px;background-position:-44px 0px}.flag.af{height:14px;background-position:-66px 0px}.flag.ag{height:14px;background-position:-88px 0px}.flag.ai{height:10px;background-position:-110px 0px}.flag.al{height:15px;background-position:-132px 0px}.flag.am{height:10px;background-position:-154px 0px}.flag.ao{height:14px;background-position:-176px 0px}.flag.aq{height:14px;background-position:-198px 0px}.flag.ar{height:13px;background-position:-220px 0px}.flag.as{height:10px;background-position:-242px 0px}.flag.at{height:14px;background-position:-264px 0px}.flag.au{height:10px;background-position:-286px 0px}.flag.aw{height:14px;background-position:-308px 0px}.flag.ax{height:13px;background-position:-330px 0px}.flag.az{height:10px;background-position:-352px 0px}.flag.ba{height:10px;background-position:-374px 0px}.flag.bb{height:14px;background-position:-396px 0px}.flag.bd{height:12px;background-position:-418px 0px}.flag.be{height:15px;background-position:-440px 0px}.flag.bf{height:14px;background-position:-460px 0px}.flag.bg{height:12px;background-position:-482px 0px}.flag.bh{height:12px;background-position:-504px 0px}.flag.bi{height:12px;background-position:-526px 0px}.flag.bj{height:14px;background-position:-548px 0px}.flag.bl{height:14px;background-position:-570px 0px}.flag.bm{height:10px;background-position:-592px 0px}.flag.bn{height:10px;background-position:-614px 0px}.flag.bo{height:14px;background-position:-636px 0px}.flag.bq{height:14px;background-position:-658px 0px}.flag.br{height:14px;background-position:-680px 0px}.flag.bs{height:10px;background-position:-702px 0px}.flag.bt{height:14px;background-position:-724px 0px}.flag.bv{height:15px;background-position:-746px 0px}.flag.bw{height:14px;background-position:-768px 0px}.flag.by{height:10px;background-position:-790px 0px}.flag.bz{height:14px;background-position:-812px 0px}.flag.ca{height:10px;background-position:-834px 0px}.flag.cc{height:10px;background-position:-856px 0px}.flag.cd{height:15px;background-position:-878px 0px}.flag.cf{height:14px;background-position:-900px 0px}.flag.cg{height:14px;background-position:-922px 0px}.flag.ch{height:15px;background-position:-944px 0px}.flag.ci{height:14px;background-position:-961px 0px}.flag.ck{height:10px;background-position:-983px 0px}.flag.cl{height:14px;background-position:-1005px 0px}.flag.cm{height:14px;background-position:-1027px 0px}.flag.cn{height:14px;background-position:-1049px 0px}.flag.co{height:14px;background-position:-1071px 0px}.flag.cp{height:14px;background-position:-1093px 0px}.flag.cr{height:12px;background-position:-1115px 0px}.flag.cu{height:10px;background-position:-1137px 0px}.flag.cv{height:12px;background-position:-1159px 0px}.flag.cw{height:14px;background-position:-1181px 0px}.flag.cx{height:10px;background-position:-1203px 0px}.flag.cy{height:13px;background-position:-1225px 0px}.flag.cz{height:14px;background-position:-1247px 0px}.flag.de{height:12px;background-position:-1269px 0px}.flag.dg{height:10px;background-position:-1291px 0px}.flag.dj{height:14px;background-position:-1313px 0px}.flag.dk{height:15px;background-position:-1335px 0px}.flag.dm{height:10px;background-position:-1357px 0px}.flag.do{height:13px;background-position:-1379px 0px}.flag.dz{height:14px;background-position:-1401px 0px}.flag.ea{height:14px;background-position:-1423px 0px}.flag.ec{height:14px;background-position:-1445px 0px}.flag.ee{height:13px;background-position:-1467px 0px}.flag.eg{height:14px;background-position:-1489px 0px}.flag.eh{height:10px;background-position:-1511px 0px}.flag.er{height:10px;background-position:-1533px 0px}.flag.es{height:14px;background-position:-1555px 0px}.flag.et{height:10px;background-position:-1577px 0px}.flag.eu{height:14px;background-position:-1599px 0px}.flag.fi{height:12px;background-position:-1621px 0px}.flag.fj{height:10px;background-position:-1643px 0px}.flag.fk{height:10px;background-position:-1665px 0px}.flag.fm{height:11px;background-position:-1687px 0px}.flag.fo{height:15px;background-position:-1709px 0px}.flag.fr{height:14px;background-position:-1731px 0px}.flag.ga{height:15px;background-position:-1753px 0px}.flag.gb{height:10px;background-position:-1775px 0px}.flag.gd{height:12px;background-position:-1797px 0px}.flag.ge{height:14px;background-position:-1819px 0px}.flag.gf{height:14px;background-position:-1841px 0px}.flag.gg{height:14px;background-position:-1863px 0px}.flag.gh{height:14px;background-position:-1885px 0px}.flag.gi{height:10px;background-position:-1907px 0px}.flag.gl{height:14px;background-position:-1929px 0px}.flag.gm{height:14px;background-position:-1951px 0px}.flag.gn{height:14px;background-position:-1973px 0px}.flag.gp{height:14px;background-position:-1995px 0px}.flag.gq{height:14px;background-position:-2017px 0px}.flag.gr{height:14px;background-position:-2039px 0px}.flag.gs{height:10px;background-position:-2061px 0px}.flag.gt{height:13px;background-position:-2083px 0px}.flag.gu{height:11px;background-position:-2105px 0px}.flag.gw{height:10px;background-position:-2127px 0px}.flag.gy{height:12px;background-position:-2149px 0px}.flag.hk{height:14px;background-position:-2171px 0px}.flag.hm{height:10px;background-position:-2193px 0px}.flag.hn{height:10px;background-position:-2215px 0px}.flag.hr{height:10px;background-position:-2237px 0px}.flag.ht{height:12px;background-position:-2259px 0px}.flag.hu{height:10px;background-position:-2281px 0px}.flag.ic{height:14px;background-position:-2303px 0px}.flag.id{height:14px;background-position:-2325px 0px}.flag.ie{height:10px;background-position:-2347px 0px}.flag.il{height:15px;background-position:-2369px 0px}.flag.im{height:10px;background-position:-2391px 0px}.flag.in{height:14px;background-position:-2413px 0px}.flag.io{height:10px;background-position:-2435px 0px}.flag.iq{height:14px;background-position:-2457px 0px}.flag.ir{height:12px;background-position:-2479px 0px}.flag.is{height:15px;background-position:-2501px 0px}.flag.it{height:14px;background-position:-2523px 0px}.flag.je{height:12px;background-position:-2545px 0px}.flag.jm{height:10px;background-position:-2567px 0px}.flag.jo{height:10px;background-position:-2589px 0px}.flag.jp{height:14px;background-position:-2611px 0px}.flag.ke{height:14px;background-position:-2633px 0px}.flag.kg{height:12px;background-position:-2655px 0px}.flag.kh{height:13px;background-position:-2677px 0px}.flag.ki{height:10px;background-position:-2699px 0px}.flag.km{height:12px;background-position:-2721px 0px}.flag.kn{height:14px;background-position:-2743px 0px}.flag.kp{height:10px;background-position:-2765px 0px}.flag.kr{height:14px;background-position:-2787px 0px}.flag.kw{height:10px;background-position:-2809px 0px}.flag.ky{height:10px;background-position:-2831px 0px}.flag.kz{height:10px;background-position:-2853px 0px}.flag.la{height:14px;background-position:-2875px 0px}.flag.lb{height:14px;background-position:-2897px 0px}.flag.lc{height:10px;background-position:-2919px 0px}.flag.li{height:12px;background-position:-2941px 0px}.flag.lk{height:10px;background-position:-2963px 0px}.flag.lr{height:11px;background-position:-2985px 0px}.flag.ls{height:14px;background-position:-3007px 0px}.flag.lt{height:12px;background-position:-3029px 0px}.flag.lu{height:12px;background-position:-3051px 0px}.flag.lv{height:10px;background-position:-3073px 0px}.flag.ly{height:10px;background-position:-3095px 0px}.flag.ma{height:14px;background-position:-3117px 0px}.flag.mc{height:15px;background-position:-3139px 0px}.flag.md{height:10px;background-position:-3160px 0px}.flag.me{height:10px;background-position:-3182px 0px}.flag.mf{height:14px;background-position:-3204px 0px}.flag.mg{height:14px;background-position:-3226px 0px}.flag.mh{height:11px;background-position:-3248px 0px}.flag.mk{height:10px;background-position:-3270px 0px}.flag.ml{height:14px;background-position:-3292px 0px}.flag.mm{height:14px;background-position:-3314px 0px}.flag.mn{height:10px;background-position:-3336px 0px}.flag.mo{height:14px;background-position:-3358px 0px}.flag.mp{height:10px;background-position:-3380px 0px}.flag.mq{height:14px;background-position:-3402px 0px}.flag.mr{height:14px;background-position:-3424px 0px}.flag.ms{height:10px;background-position:-3446px 0px}.flag.mt{height:14px;background-position:-3468px 0px}.flag.mu{height:14px;background-position:-3490px 0px}.flag.mv{height:14px;background-position:-3512px 0px}.flag.mw{height:14px;background-position:-3534px 0px}.flag.mx{height:12px;background-position:-3556px 0px}.flag.my{height:10px;background-position:-3578px 0px}.flag.mz{height:14px;background-position:-3600px 0px}.flag.na{height:14px;background-position:-3622px 0px}.flag.nc{height:10px;background-position:-3644px 0px}.flag.ne{height:15px;background-position:-3666px 0px}.flag.nf{height:10px;background-position:-3686px 0px}.flag.ng{height:10px;background-position:-3708px 0px}.flag.ni{height:12px;background-position:-3730px 0px}.flag.nl{height:14px;background-position:-3752px 0px}.flag.no{height:15px;background-position:-3774px 0px}.flag.np{height:15px;background-position:-3796px 0px}.flag.nr{height:10px;background-position:-3811px 0px}.flag.nu{height:10px;background-position:-3833px 0px}.flag.nz{height:10px;background-position:-3855px 0px}.flag.om{height:10px;background-position:-3877px 0px}.flag.pa{height:14px;background-position:-3899px 0px}.flag.pe{height:14px;background-position:-3921px 0px}.flag.pf{height:14px;background-position:-3943px 0px}.flag.pg{height:15px;background-position:-3965px 0px}.flag.ph{height:10px;background-position:-3987px 0px}.flag.pk{height:14px;background-position:-4009px 0px}.flag.pl{height:13px;background-position:-4031px 0px}.flag.pm{height:14px;background-position:-4053px 0px}.flag.pn{height:10px;background-position:-4075px 0px}.flag.pr{height:14px;background-position:-4097px 0px}.flag.ps{height:10px;background-position:-4119px 0px}.flag.pt{height:14px;background-position:-4141px 0px}.flag.pw{height:13px;background-position:-4163px 0px}.flag.py{height:11px;background-position:-4185px 0px}.flag.qa{height:8px;background-position:-4207px 0px}.flag.re{height:14px;background-position:-4229px 0px}.flag.ro{height:14px;background-position:-4251px 0px}.flag.rs{height:14px;background-position:-4273px 0px}.flag.ru{height:14px;background-position:-4295px 0px}.flag.rw{height:14px;background-position:-4317px 0px}.flag.sa{height:14px;background-position:-4339px 0px}.flag.sb{height:10px;background-position:-4361px 0px}.flag.sc{height:10px;background-position:-4383px 0px}.flag.sd{height:10px;background-position:-4405px 0px}.flag.se{height:13px;background-position:-4427px 0px}.flag.sg{height:14px;background-position:-4449px 0px}.flag.sh{height:10px;background-position:-4471px 0px}.flag.si{height:10px;background-position:-4493px 0px}.flag.sj{height:15px;background-position:-4515px 0px}.flag.sk{height:14px;background-position:-4537px 0px}.flag.sl{height:14px;background-position:-4559px 0px}.flag.sm{height:15px;background-position:-4581px 0px}.flag.sn{height:14px;background-position:-4603px 0px}.flag.so{height:14px;background-position:-4625px 0px}.flag.sr{height:14px;background-position:-4647px 0px}.flag.ss{height:10px;background-position:-4669px 0px}.flag.st{height:10px;background-position:-4691px 0px}.flag.sv{height:12px;background-position:-4713px 0px}.flag.sx{height:14px;background-position:-4735px 0px}.flag.sy{height:14px;background-position:-4757px 0px}.flag.sz{height:14px;background-position:-4779px 0px}.flag.ta{height:10px;background-position:-4801px 0px}.flag.tc{height:10px;background-position:-4823px 0px}.flag.td{height:14px;background-position:-4845px 0px}.flag.tf{height:14px;background-position:-4867px 0px}.flag.tg{height:13px;background-position:-4889px 0px}.flag.th{height:14px;background-position:-4911px 0px}.flag.tj{height:10px;background-position:-4933px 0px}.flag.tk{height:10px;background-position:-4955px 0px}.flag.tl{height:10px;background-position:-4977px 0px}.flag.tm{height:14px;background-position:-4999px 0px}.flag.tn{height:14px;background-position:-5021px 0px}.flag.to{height:10px;background-position:-5043px 0px}.flag.tr{height:14px;background-position:-5065px 0px}.flag.tt{height:12px;background-position:-5087px 0px}.flag.tv{height:10px;background-position:-5109px 0px}.flag.tw{height:14px;background-position:-5131px 0px}.flag.tz{height:14px;background-position:-5153px 0px}.flag.ua{height:14px;background-position:-5175px 0px}.flag.ug{height:14px;background-position:-5197px 0px}.flag.um{height:11px;background-position:-5219px 0px}.flag.us{height:11px;background-position:-5241px 0px}.flag.uy{height:14px;background-position:-5263px 0px}.flag.uz{height:10px;background-position:-5285px 0px}.flag.va{height:15px;background-position:-5307px 0px}.flag.vc{height:14px;background-position:-5324px 0px}.flag.ve{height:14px;background-position:-5346px 0px}.flag.vg{height:10px;background-position:-5368px 0px}.flag.vi{height:14px;background-position:-5390px 0px}.flag.vn{height:14px;background-position:-5412px 0px}.flag.vu{height:12px;background-position:-5434px 0px}.flag.wf{height:14px;background-position:-5456px 0px}.flag.ws{height:10px;background-position:-5478px 0px}.flag.xk{height:15px;background-position:-5500px 0px}.flag.ye{height:14px;background-position:-5522px 0px}.flag.yt{height:14px;background-position:-5544px 0px}.flag.za{height:14px;background-position:-5566px 0px}.flag.zm{height:14px;background-position:-5588px 0px}.flag.zw{height:10px;background-position:-5610px 0px}.flag.ot{height:0px}.roo-money-field .roo-money-currency{padding-right:0px}.roo-money-field .roo-money-amount{padding-left:0px}.roo-money-field .roo-money-currency-input{border-right:0px}.roo-money-field .input-group-addon{background-color:transparent;border-left:0px;border-right:0px;border-radius:0px}.roo-money-field .roo-money-amount-input{border-top-left-radius:0px;border-bottom-left-radius:0px;text-align:right}.has-success .roo-money-currency .roo-select2-container .input-group-addon{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px #3c763d}.has-warning .roo-money-currency .roo-select2-container .input-group-addon{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px #8a6d3b}.has-error .roo-money-currency .roo-select2-container .input-group-addon{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 2px #a94442}/*# sourceMappingURL=roojs-bootstrap-debug.css.map */
\ No newline at end of file
index 4422837..56668fc 100644 (file)
@@ -13,16 +13,10 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
     _tree : function()
     {
         
-        this.parent = {
-            el : new Roo.bootstrap.Body()
-        }
-        this.parent.el.layout = false;
-        this.parent.el.render(document.body);
         
         var _this = this;
         var MODULE = this;
-        var baseURL = '/web.eventmanager/demo.local.php';
-        
+         
         return {
             xtype: 'Body',
             xns: Roo.bootstrap,
@@ -152,14 +146,14 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                             xtype: 'ComboBox',
                                                                                             xns: Roo.bootstrap,
                                                                                             placeholder : 'Select a country',
-                                                                                            displayField : 'name',
+                                                                                            displayField : 'title',
                                                                                             hiddenName : 'country_id',
                                                                                             md : '12',
                                                                                             size : 'sm',
                                                                                             name : 'country_id_name',
                                                                                             triggerAction : 'all',
                                                                                             minChars : '1',
-                                                                                            tpl : '<li class="roo-select2-result"><b>{name}</b></div>',
+                                                                                            tpl : '<li class="roo-select2-result"><b>{title}</b></div>',
                                                                                             style : 'margin-top:20px;',
                                                                                             listeners : {
                                                                                                 render : function (_self) {
@@ -183,11 +177,11 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                                     }
                                                                                                 },
                                                                                                 remoteSort : true,
-                                                                                                sortInfo : { direction : 'ASC', field: 'name' },
+                                                                                                sortInfo : { direction : 'ASC', field: 'title' },
                                                                                                 proxy : {
                                                                                                     xtype: 'HttpProxy',
                                                                                                     xns: Roo.data,
-                                                                                                    url : baseURL + '/Geoip/Core_geoip_country',
+                                                                                                    url : '../bootstrap/data.country.js',
                                                                                                     method : 'GET'
                                                                                                 },
                                                                                                 reader : {
@@ -203,7 +197,7 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                                             'type': 'string'
                                                                                                         },
                                                                                                         {
-                                                                                                            'name': 'name',
+                                                                                                            'name': 'title',
                                                                                                             'type': 'string'
                                                                                                         }
                                                                                                     ]
@@ -261,14 +255,14 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                             xtype: 'ComboBox',
                                                                                             xns: Roo.bootstrap,
                                                                                             placeholder : 'Select a country',
-                                                                                            displayField : 'name',
+                                                                                            displayField : 'title',
                                                                                             hiddenName : 'country_id',
                                                                                             md : '12',
                                                                                             size : 'sm',
                                                                                             name : 'country_id_name',
                                                                                             triggerAction : 'all',
                                                                                             minChars : '1',
-                                                                                            tpl : '<li class="roo-select2-result"><b>{name}</b></div>',
+                                                                                            tpl : '<li class="roo-select2-result"><b>{title}</b></div>',
                                                                                             style : 'margin-top:20px;',
                                                                                             multiple: true,
                                                                                             listeners : {
@@ -292,12 +286,12 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
 
                                                                                                     }
                                                                                                 },
-                                                                                                remoteSort : true,
-                                                                                                sortInfo : { direction : 'ASC', field: 'name' },
+                                                                                                remoteSort : false,
+                                                                                                sortInfo : { direction : 'ASC', field: 'title' },
                                                                                                 proxy : {
                                                                                                     xtype: 'HttpProxy',
                                                                                                     xns: Roo.data,
-                                                                                                    url : baseURL + '/Geoip/Core_geoip_country',
+                                                                                                    url : '../bootstrap/data.country.js',
                                                                                                     method : 'GET'
                                                                                                 },
                                                                                                 reader : {
@@ -313,7 +307,7 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                                             'type': 'string'
                                                                                                         },
                                                                                                         {
-                                                                                                            'name': 'name',
+                                                                                                            'name': 'title',
                                                                                                             'type': 'string'
                                                                                                         }
                                                                                                     ]
@@ -366,7 +360,7 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                     xtype: 'ComboBox',
                                                                                     xns: Roo.bootstrap,
                                                                                     placeholder : 'Select a country',
-                                                                                    displayField : 'name',
+                                                                                    displayField : 'title',
                                                                                     hiddenName : 'country_id',
                                                                                     md : '12',
                                                                                     size : 'sm',
@@ -398,12 +392,12 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
 
                                                                                             }
                                                                                         },
-                                                                                        remoteSort : true,
-                                                                                        sortInfo : { direction : 'ASC', field: 'name' },
+                                                                                        remoteSort : false,
+                                                                                        sortInfo : { direction : 'ASC', field: 'title' },
                                                                                         proxy : {
                                                                                             xtype: 'HttpProxy',
                                                                                             xns: Roo.data,
-                                                                                            url : baseURL + '/Geoip/Core_geoip_country',
+                                                                                            url : '../bootstrap/data.country.js',
                                                                                             method : 'GET'
                                                                                         },
                                                                                         reader : {
@@ -419,7 +413,7 @@ Roo.example.TabPanelCombobox = new Roo.XComponent({
                                                                                                     'type': 'string'
                                                                                                 },
                                                                                                 {
-                                                                                                    'name': 'name',
+                                                                                                    'name': 'title',
                                                                                                     'type': 'string'
                                                                                                 }
                                                                                             ]
index 8887bc6..4ece2a7 100644 (file)
 {
-    "name" : "homepage",
-    "parent" : "",
-    "title" : "",
-    "path" : "/home/michael/gitlive/roojs1/examples/bootstrap/homepage.bjs",
-    "permname" : "",
-    "modOrder" : "001",
-    "items" : [
+ "name" : "homepage",
+ "parent" : "",
+ "title" : "",
+ "path" : "/home/alan/gitlive/roojs1/examples/bootstrap/homepage.bjs",
+ "permname" : "",
+ "modOrder" : "001",
+ "strings" : {
+  "167d10e1548c4dd34c59a5a143acbcc8" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque aliquid adipisci aspernatur. Soluta quisquam dignissimos earum quasi voluptate. Amet, dignissimos, tenetur vitae dolor quam iusto assumenda hic reprehenderit?",
+  "20d25edf30cd635994f8636d1b7af16f" : "The best place to tell people why they are here",
+  "6fc642524ba59140ab8b69301261d393" : "<i class=\"fa fa-heart fa-5\"></i>Creative Commons",
+  "2295195aac9d2c7b410428029f2369bf" : "More Pages",
+  "4e01ca94bcef3d1d6e1caff7fa42a099" : "Follow me",
+  "0b6d966a2b73f4617ae20d9d0f286926" : "<i class=\"fa fa-twitter fa-2\"></i>",
+  "c90c8c53c27cd538b32a2fd0b7e2ac50" : "Well, there are thousands of stock art galleries, but personally, \n\t\t\t\t\tI prefer to use photos from these sites: \n\t\t<a href=\"http://unsplash.com\">Unsplash.com</a> \n\t\t\t\t\tand \n<a href=\"http://www.flickr.com/creativecommons/by-2.0/tags/\">Flickr - Creative Commons</a>",
+  "544ed65266ffc37e762fb588771a5c50" : "Nice header. Where do I find more images like that one?",
+  "65e69ec9f42722989b738ea6c97aa70c" : "\tThe difference between involvement and commitment is like an eggs-and-ham breakfast:\n\t<br> \n\tthe chicken was involved; the pig was committed.\n\t\t",
+  "bbaff12800505b22a853e8b7f4eb6a22" : "Contact",
+  "9cef554366342b985660f540adad49a3" : "+234 23 9873237\n<br>\n<a href=\"mailto:#\">some.email@somewhere.com</a>\n<br>\n<br>\n234 Hidden Pond Road, Ashland City, TN 37015\n\t\t\t\t\t\t\t",
+  "d54164e86d9e4d31e5c683861d3832a2" : "<i class=\"fa fa-dribbble fa-2\"></i>",
+  "fa7d0f3e094ac32ae6947791153a4ff7" : "Eius consequatur nihil quibusdam! Laborum, rerum, quis, inventore ipsa autem repellat provident assumenda labore soluta minima alias temporibus facere distinctio quas adipisci nam sunt explicabo officia tenetur at ea quos doloribus dolorum voluptate reprehenderit architecto sint libero illo et hic.",
+  "bd04e83c01b437cca28fc08e693a76a8" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, commodi, sequi quis ad fugit omnis cumque a libero error nesciunt molestiae repellat quos perferendis numquam quibusdam rerum repellendus laboriosam reprehenderit! ",
+  "5405d8a903c83e89cb649f1b518ef1be" : "Frequently Asked Questions",
+  "bda9f9ca9e653bb4a20a30b8d0f253d4" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, excepturi, maiores, dolorem quasi reprehenderit illo accusamus nulla minima repudiandae quas ducimus reiciendis odio sequi atque temporibus facere corporis eos expedita? ",
+  "ca98e91c48e9c483c403abb7af44d036" : "<i class=\"fa fa-smile-o fa-5\"></i>Author's support",
+  "748d1c66b53692e34084b5d1be6eb07a" : "some tag line",
+  "f757cef8954558e37499e14b7fcb23d3" : "Reasons to use this template",
+  "1522f8912011fd73c3b6b72604e9eb4f" : "<i class=\"fa fa-flash fa-5\"></i>Fat-free",
+  "a966e9d1c9065dbbea23d8d6705b9e42" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, vitae, perferendis, perspiciatis nobis voluptate quod illum soluta minima ipsam ratione quia numquam eveniet eum reprehenderit dolorem dicta nesciunt corporis?",
+  "c71c85fb79a1e589cfe00a8233e37841" : "a button",
+  "932c1787f028d8eb514db1ac402fac54" : "I'd highly recommend you <a href=\"http://www.sublimetext.com/\">Sublime Text</a> \n- a free to try text editor which I'm using daily. Awesome tool!",
+  "5b6c1f1969e02981d7d8455b6538292d" : "Can you customize this template for me?",
+  "8f7f4c1ce7a4f933663d10543562b096" : "About",
+  "89f57a5ba6334d012ddb709b186b3a98" : "<i class=\"fa fa-github fa-2\"></i>",
+  "3cf1ef47ec04254f4a98d9fde7f70581" : "Text widget",
+  "5264548d77038db97f4f4aa5d8813b8b" : "Dicta, nostrum nemo soluta sapiente sit dolor quae voluptas quidem doloribus recusandae facere magni ullam suscipit sunt atque rerum eaque iusto facilis esse nam veniam incidunt officia perspiciatis at voluptatibus. Libero, aliquid illum possimus numquam fuga.",
+  "8e9efcdf6f236ccbbd6ba45378fc5938" : "<i class=\"fa fa-facebook fa-2\"></i>",
+  "25d3bc8aaa2306df70a61938535634dc" : "<a class=\"btn btn-primary btn-large\">Learn more Â»</a>",
+  "4b4614a2a02ceb468d0030b06c9fc151" : "The HR Platform",
+  "c57215a93662add542baf3690cbde5db" : "Can I use it to build a site for my client?",
+  "f106c3ac1b76182d358f96951c8bb235" : "<i class=\"fa fa-cogs fa-5\"></i>Bootstrap-powered",
+  "43afe83e70e529de2ddba6b515c4cb37" : "Which code editor would you recommend?",
+  "778d568d19d00c60b9cd62573dff9d48" : "Yes, I can. Please drop me a line to sergey-at-pozhilov.com and describe your needs in details. Please note, my services are not cheap.",
+  "8cf04a9734132302f96da8e113e80ce5" : "Home",
+  "6b405cff8a90f9f3fae8d953edf67160" : "Yes, you can. You may use this template for any purpose, just don't forget about the \n<a href=\"http://creativecommons.org/licenses/by/3.0/\">license</a>\nwhich says: \"You must give appropriate credit\", i.e. you must provide the name of the creator and a link to the original template in your work. \n",
+  "2a2f84bd9854960f2c63eeb3af60fb70" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, dolores, quibusdam architecto voluptatem amet fugiat nesciunt placeat provident cumque accusamus itaque voluptate modi quidem dolore optio velit hic iusto vero praesentium repellat commodi ad id expedita cupiditate repellendus possimus unde?",
+  "5ac2119f318eaad0c139c729c78eba5f" : "Sign in / Sign up"
+ },
+ "items" : [
+  {
+   "String cls" : "home",
+   "xtype" : "Body",
+   "$ xns" : "Roo.bootstrap",
+   "items" : [
+    {
+     "String cls" : "headroom animated",
+     "String position" : "fixed-top",
+     "xtype" : "NavHeaderbar",
+     "Boolean inverse" : true,
+     "String brand" : "Hydra",
+     "$ xns" : "Roo.bootstrap",
+     "items" : [
+      {
+       "String type" : "nav",
+       "xtype" : "NavGroup",
+       "String align" : "right",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
         {
-            "String cls" : "home",
-            "xtype" : "Body",
-            "$ xns" : "Roo.bootstrap",
-            "items" : [
-                {
-                    "String cls" : "headroom animated",
-                    "String position" : "fixed-top",
-                    "xtype" : "NavHeaderbar",
-                    "Boolean inverse" : true,
-                    "String brand" : "Hydra",
-                    "$ xns" : "Roo.bootstrap",
-                    "items" : [
-                        {
-                            "String type" : "nav",
-                            "xtype" : "NavGroup",
-                            "String align" : "right",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "xtype" : "NavItem",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "Home"
-                                },
-                                {
-                                    "xtype" : "NavItem",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "About"
-                                },
-                                {
-                                    "xtype" : "NavItem",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "More Pages"
-                                },
-                                {
-                                    "xtype" : "NavItem",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "Contact"
-                                },
-                                {
-                                    "String cls" : "btn",
-                                    "xtype" : "NavItem",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "Sign in / Sign up"
-                                }
-                            ]
-                        }
-                    ]
-                },
-                {
-                    "String tag" : "header",
-                    "String cls" : "pr-head",
-                    "xtype" : "Element",
-                    "$ xns" : "Roo.bootstrap",
-                    "items" : [
-                        {
-                            "xtype" : "Container",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "xtype" : "Row",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "String cls" : "lead",
-                                            "xtype" : "Header",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "The HR Platform"
-                                        },
-                                        {
-                                            "String tag" : "p",
-                                            "String cls" : "tagline",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "some tag line"
-                                        },
-                                        {
-                                            "String tag" : "p",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "items" : [
-                                                {
-                                                    "String tag" : "a",
-                                                    "String size" : "lg",
-                                                    "String href" : "#",
-                                                    "xtype" : "Button",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "String html" : "a button"
-                                                },
-                                                {
-                                                    "String tag" : "a",
-                                                    "String size" : "lg",
-                                                    "String href" : "#",
-                                                    "xtype" : "Button",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "String html" : "a button"
-                                                }
-                                            ]
-                                        }
-                                    ]
-                                }
-                            ]
-                        }
-                    ]
-                },
+         "xtype" : "NavItem",
+         "$ xns" : "Roo.bootstrap",
+         "String html" : "Home"
+        },
+        {
+         "xtype" : "NavItem",
+         "$ xns" : "Roo.bootstrap",
+         "String html" : "About"
+        },
+        {
+         "xtype" : "NavItem",
+         "$ xns" : "Roo.bootstrap",
+         "String html" : "More Pages"
+        },
+        {
+         "xtype" : "NavItem",
+         "$ xns" : "Roo.bootstrap",
+         "String html" : "Contact"
+        },
+        {
+         "string button_weight" : "primary",
+         "String cls" : "btn",
+         "xtype" : "NavItem",
+         "bool button_outline" : true,
+         "$ xns" : "Roo.bootstrap",
+         "String html" : "Sign in / Sign up"
+        }
+       ]
+      }
+     ]
+    },
+    {
+     "String tag" : "header",
+     "String cls" : "pr-head",
+     "xtype" : "Element",
+     "$ xns" : "Roo.bootstrap",
+     "items" : [
+      {
+       "xtype" : "Container",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
+        {
+         "xtype" : "Row",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "String cls" : "lead",
+           "xtype" : "Header",
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "The HR Platform"
+          },
+          {
+           "String tag" : "p",
+           "String cls" : "tagline",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "some tag line"
+          },
+          {
+           "String tag" : "p",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "items" : [
+            {
+             "String tag" : "a",
+             "String size" : "lg",
+             "String href" : "#",
+             "xtype" : "Button",
+             "$ xns" : "Roo.bootstrap",
+             "String html" : "a button"
+            },
+            {
+             "String tag" : "a",
+             "String size" : "lg",
+             "String href" : "#",
+             "xtype" : "Button",
+             "$ xns" : "Roo.bootstrap",
+             "String html" : "a button"
+            }
+           ]
+          }
+         ]
+        }
+       ]
+      }
+     ]
+    },
+    {
+     "String cls" : "container text-center",
+     "xtype" : "Element",
+     "$ xns" : "Roo.bootstrap",
+     "items" : [
+      {
+       "String cls" : "thin",
+       "xtype" : "Header",
+       "$ xns" : "Roo.bootstrap",
+       "Number level" : 2,
+       "String html" : "The best place to tell people why they are here"
+      },
+      {
+       "String tag" : "p",
+       "String cls" : "text-muted",
+       "xtype" : "Element",
+       "$ xns" : "Roo.bootstrap",
+       "String html" : "\tThe difference between involvement and commitment is like an eggs-and-ham breakfast:\n\t<br> \n\tthe chicken was involved; the pig was committed.\n\t\t"
+      }
+     ]
+    },
+    {
+     "String cls" : "",
+     "xtype" : "Element",
+     "$ xns" : "Roo.bootstrap",
+     "items" : [
+      {
+       "xtype" : "Container",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
+        {
+         "String cls" : "text-center thin",
+         "xtype" : "Header",
+         "$ xns" : "Roo.bootstrap",
+         "Number level" : 3,
+         "String html" : "Reasons to use this template"
+        },
+        {
+         "String cls" : "",
+         "xtype" : "Row",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "String cls" : "col-md-3 col-sm-6 highlight",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "items" : [
+            {
+             "String cls" : "h-caption",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "xtype" : "Header",
+               "Number level" : 4,
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "<i class=\"fa fa-cogs fa-5\"></i>Bootstrap-powered"
+              }
+             ]
+            },
+            {
+             "String cls" : "h-body text-center",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String tag" : "p",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque aliquid adipisci aspernatur. Soluta quisquam dignissimos earum quasi voluptate. Amet, dignissimos, tenetur vitae dolor quam iusto assumenda hic reprehenderit?"
+              }
+             ]
+            }
+           ]
+          },
+          {
+           "String cls" : "col-md-3 col-sm-6 highlight",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "items" : [
+            {
+             "String cls" : "h-caption",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "xtype" : "Header",
+               "Number level" : 4,
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "<i class=\"fa fa-flash fa-5\"></i>Fat-free"
+              }
+             ]
+            },
+            {
+             "String cls" : "h-body text-center",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String tag" : "p",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, commodi, sequi quis ad fugit omnis cumque a libero error nesciunt molestiae repellat quos perferendis numquam quibusdam rerum repellendus laboriosam reprehenderit! "
+              }
+             ]
+            }
+           ]
+          },
+          {
+           "String cls" : "col-md-3 col-sm-6 highlight",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "items" : [
+            {
+             "String cls" : "h-caption",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "xtype" : "Header",
+               "$ xns" : "Roo.bootstrap",
+               "Number level" : 4,
+               "String html" : "<i class=\"fa fa-heart fa-5\"></i>Creative Commons"
+              }
+             ]
+            },
+            {
+             "String cls" : "h-body text-center",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String tag" : "p",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, vitae, perferendis, perspiciatis nobis voluptate quod illum soluta minima ipsam ratione quia numquam eveniet eum reprehenderit dolorem dicta nesciunt corporis?"
+              }
+             ]
+            }
+           ]
+          },
+          {
+           "String cls" : "col-md-3 col-sm-6 highlight",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "items" : [
+            {
+             "String cls" : "h-caption",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "xtype" : "Header",
+               "Number level" : 4,
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "<i class=\"fa fa-smile-o fa-5\"></i>Author's support"
+              }
+             ]
+            },
+            {
+             "String cls" : "h-body text-center",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String tag" : "p",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, excepturi, maiores, dolorem quasi reprehenderit illo accusamus nulla minima repudiandae quas ducimus reiciendis odio sequi atque temporibus facere corporis eos expedita? "
+              }
+             ]
+            }
+           ]
+          }
+         ]
+        }
+       ]
+      }
+     ]
+    },
+    {
+     "xtype" : "Container",
+     "$ xns" : "Roo.bootstrap",
+     "items" : [
+      {
+       "String cls" : "text-center top-space",
+       "xtype" : "Header",
+       "$ xns" : "Roo.bootstrap",
+       "Number level" : 2,
+       "String html" : "Frequently Asked Questions"
+      },
+      {
+       "xtype" : "Row",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
+        {
+         "String cls" : "col-sm-6",
+         "xtype" : "Element",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "xtype" : "Header",
+           "$ xns" : "Roo.bootstrap",
+           "Number level" : 3,
+           "String html" : "Which code editor would you recommend?"
+          },
+          {
+           "String tag" : "p",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "I'd highly recommend you <a href=\"http://www.sublimetext.com/\">Sublime Text</a> \n- a free to try text editor which I'm using daily. Awesome tool!"
+          }
+         ]
+        },
+        {
+         "String cls" : "col-sm-6",
+         "xtype" : "Element",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "xtype" : "Header",
+           "$ xns" : "Roo.bootstrap",
+           "Number level" : 3,
+           "String html" : "Nice header. Where do I find more images like that one?"
+          },
+          {
+           "String tag" : "p",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "Well, there are thousands of stock art galleries, but personally, \n\t\t\t\t\tI prefer to use photos from these sites: \n\t\t<a href=\"http://unsplash.com\">Unsplash.com</a> \n\t\t\t\t\tand \n<a href=\"http://www.flickr.com/creativecommons/by-2.0/tags/\">Flickr - Creative Commons</a>"
+          }
+         ]
+        }
+       ]
+      },
+      {
+       "xtype" : "Row",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
+        {
+         "String cls" : "col-sm-6",
+         "xtype" : "Element",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "xtype" : "Header",
+           "Number level" : 3,
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "Can I use it to build a site for my client?"
+          },
+          {
+           "String tag" : "p",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "Yes, you can. You may use this template for any purpose, just don't forget about the \n<a href=\"http://creativecommons.org/licenses/by/3.0/\">license</a>\nwhich says: \"You must give appropriate credit\", i.e. you must provide the name of the creator and a link to the original template in your work. \n"
+          }
+         ]
+        },
+        {
+         "String cls" : "col-sm-6",
+         "xtype" : "Element",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "xtype" : "Header",
+           "Number level" : 3,
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "Can you customize this template for me?"
+          },
+          {
+           "String tag" : "p",
+           "xtype" : "Element",
+           "$ xns" : "Roo.bootstrap",
+           "String html" : "Yes, I can. Please drop me a line to sergey-at-pozhilov.com and describe your needs in details. Please note, my services are not cheap."
+          }
+         ]
+        }
+       ]
+      },
+      {
+       "String cls" : "jumbotron top-space",
+       "xtype" : "Element",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
+        {
+         "xtype" : "Header",
+         "$ xns" : "Roo.bootstrap",
+         "Number level" : 4,
+         "String html" : "Dicta, nostrum nemo soluta sapiente sit dolor quae voluptas quidem doloribus recusandae facere magni ullam suscipit sunt atque rerum eaque iusto facilis esse nam veniam incidunt officia perspiciatis at voluptatibus. Libero, aliquid illum possimus numquam fuga."
+        },
+        {
+         "String tag" : "p",
+         "String cls" : "text-right",
+         "xtype" : "Element",
+         "$ xns" : "Roo.bootstrap",
+         "String html" : "<a class=\"btn btn-primary btn-large\">Learn more Â»</a>"
+        }
+       ]
+      }
+     ]
+    },
+    {
+     "String cls" : "top-space",
+     "xtype" : "Container",
+     "$ xns" : "Roo.bootstrap",
+     "items" : [
+      {
+       "String cls" : "footer1",
+       "xtype" : "Container",
+       "$ xns" : "Roo.bootstrap",
+       "items" : [
+        {
+         "xtype" : "Container",
+         "$ xns" : "Roo.bootstrap",
+         "items" : [
+          {
+           "xtype" : "Row",
+           "$ xns" : "Roo.bootstrap",
+           "items" : [
+            {
+             "String cls" : "col-md-3 widget",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String cls" : "widget-title",
+               "xtype" : "Header",
+               "Number level" : 3,
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Contact"
+              },
+              {
+               "String cls" : "widget-body",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "items" : [
                 {
-                    "String cls" : "container text-center",
-                    "xtype" : "Element",
-                    "$ xns" : "Roo.bootstrap",
-                    "items" : [
-                        {
-                            "String cls" : "thin",
-                            "xtype" : "Header",
-                            "$ xns" : "Roo.bootstrap",
-                            "Number level" : 2,
-                            "String html" : "The best place to tell people why they are here"
-                        },
-                        {
-                            "String tag" : "p",
-                            "String cls" : "text-muted",
-                            "xtype" : "Element",
-                            "$ xns" : "Roo.bootstrap",
-                            "String html" : "\tThe difference between involvement and commitment is like an eggs-and-ham breakfast:\n\t<br> \n\tthe chicken was involved; the pig was committed.\n\t\t"
-                        }
-                    ]
-                },
+                 "String tag" : "p",
+                 "xtype" : "Element",
+                 "$ xns" : "Roo.bootstrap",
+                 "String html" : "+234 23 9873237\n<br>\n<a href=\"mailto:#\">some.email@somewhere.com</a>\n<br>\n<br>\n234 Hidden Pond Road, Ashland City, TN 37015\n\t\t\t\t\t\t\t"
+                }
+               ]
+              }
+             ]
+            },
+            {
+             "String cls" : "col-md-3 widget",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String cls" : "widget-title",
+               "xtype" : "Header",
+               "Number level" : 3,
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Follow me"
+              },
+              {
+               "String cls" : "widget-body",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "items" : [
                 {
-                    "String cls" : "",
-                    "xtype" : "Element",
-                    "$ xns" : "Roo.bootstrap",
-                    "items" : [
-                        {
-                            "xtype" : "Container",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "String cls" : "text-center thin",
-                                    "xtype" : "Header",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "Number level" : 3,
-                                    "String html" : "Reasons to use this template"
-                                },
-                                {
-                                    "String cls" : "",
-                                    "xtype" : "Row",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "String cls" : "col-md-3 col-sm-6 highlight",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "items" : [
-                                                {
-                                                    "String cls" : "h-caption",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "xtype" : "Header",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "Number level" : 4,
-                                                            "String html" : "<i class=\"fa fa-cogs fa-5\"></i>Bootstrap-powered"
-                                                        }
-                                                    ]
-                                                },
-                                                {
-                                                    "String cls" : "h-body text-center",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String tag" : "p",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque aliquid adipisci aspernatur. Soluta quisquam dignissimos earum quasi voluptate. Amet, dignissimos, tenetur vitae dolor quam iusto assumenda hic reprehenderit?"
-                                                        }
-                                                    ]
-                                                }
-                                            ]
-                                        },
-                                        {
-                                            "String cls" : "col-md-3 col-sm-6 highlight",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "items" : [
-                                                {
-                                                    "String cls" : "h-caption",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "xtype" : "Header",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "Number level" : 4,
-                                                            "String html" : "<i class=\"fa fa-flash fa-5\"></i>Fat-free"
-                                                        }
-                                                    ]
-                                                },
-                                                {
-                                                    "String cls" : "h-body text-center",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String tag" : "p",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, commodi, sequi quis ad fugit omnis cumque a libero error nesciunt molestiae repellat quos perferendis numquam quibusdam rerum repellendus laboriosam reprehenderit! "
-                                                        }
-                                                    ]
-                                                }
-                                            ]
-                                        },
-                                        {
-                                            "String cls" : "col-md-3 col-sm-6 highlight",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "items" : [
-                                                {
-                                                    "String cls" : "h-caption",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "xtype" : "Header",
-                                                            "Number level" : 4,
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "<i class=\"fa fa-heart fa-5\"></i>Creative Commons"
-                                                        }
-                                                    ]
-                                                },
-                                                {
-                                                    "String cls" : "h-body text-center",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String tag" : "p",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, vitae, perferendis, perspiciatis nobis voluptate quod illum soluta minima ipsam ratione quia numquam eveniet eum reprehenderit dolorem dicta nesciunt corporis?"
-                                                        }
-                                                    ]
-                                                }
-                                            ]
-                                        },
-                                        {
-                                            "String cls" : "col-md-3 col-sm-6 highlight",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "items" : [
-                                                {
-                                                    "String cls" : "h-caption",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "xtype" : "Header",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "Number level" : 4,
-                                                            "String html" : "<i class=\"fa fa-smile-o fa-5\"></i>Author's support"
-                                                        }
-                                                    ]
-                                                },
-                                                {
-                                                    "String cls" : "h-body text-center",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String tag" : "p",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, excepturi, maiores, dolorem quasi reprehenderit illo accusamus nulla minima repudiandae quas ducimus reiciendis odio sequi atque temporibus facere corporis eos expedita? "
-                                                        }
-                                                    ]
-                                                }
-                                            ]
-                                        }
-                                    ]
-                                }
-                            ]
-                        }
-                    ]
-                },
+                 "String tag" : "p",
+                 "String cls" : "follow-me-icons",
+                 "xtype" : "Element",
+                 "$ xns" : "Roo.bootstrap",
+                 "items" : [
+                  {
+                   "String tag" : "a",
+                   "xtype" : "Element",
+                   "$ xns" : "Roo.bootstrap",
+                   "String html" : "<i class=\"fa fa-twitter fa-2\"></i>"
+                  },
+                  {
+                   "String tag" : "a",
+                   "xtype" : "Element",
+                   "$ xns" : "Roo.bootstrap",
+                   "String html" : "<i class=\"fa fa-dribbble fa-2\"></i>"
+                  },
+                  {
+                   "String tag" : "a",
+                   "xtype" : "Element",
+                   "$ xns" : "Roo.bootstrap",
+                   "String html" : "<i class=\"fa fa-github fa-2\"></i>"
+                  },
+                  {
+                   "String tag" : "a",
+                   "xtype" : "Element",
+                   "$ xns" : "Roo.bootstrap",
+                   "String html" : "<i class=\"fa fa-facebook fa-2\"></i>"
+                  }
+                 ]
+                }
+               ]
+              }
+             ]
+            },
+            {
+             "String cls" : "col-md-6 widget",
+             "xtype" : "Element",
+             "$ xns" : "Roo.bootstrap",
+             "items" : [
+              {
+               "String cls" : "widget-title",
+               "xtype" : "Header",
+               "Number level" : 3,
+               "$ xns" : "Roo.bootstrap",
+               "String html" : "Text widget"
+              },
+              {
+               "String cls" : "widget-body",
+               "xtype" : "Element",
+               "$ xns" : "Roo.bootstrap",
+               "items" : [
                 {
-                    "xtype" : "Container",
-                    "$ xns" : "Roo.bootstrap",
-                    "items" : [
-                        {
-                            "String cls" : "text-center top-space",
-                            "xtype" : "Header",
-                            "$ xns" : "Roo.bootstrap",
-                            "Number level" : 2,
-                            "String html" : "Frequently Asked Questions"
-                        },
-                        {
-                            "xtype" : "Row",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "String cls" : "col-sm-6",
-                                    "xtype" : "Element",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "xtype" : "Header",
-                                            "Number level" : 3,
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "Which code editor would you recommend?"
-                                        },
-                                        {
-                                            "String tag" : "p",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "I'd highly recommend you <a href=\"http://www.sublimetext.com/\">Sublime Text</a> \n- a free to try text editor which I'm using daily. Awesome tool!"
-                                        }
-                                    ]
-                                },
-                                {
-                                    "String cls" : "col-sm-6",
-                                    "xtype" : "Element",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "xtype" : "Header",
-                                            "Number level" : 3,
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "Nice header. Where do I find more images like that one?"
-                                        },
-                                        {
-                                            "String tag" : "p",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "Well, there are thousands of stock art galleries, but personally, \n\t\t\t\t\tI prefer to use photos from these sites: \n\t\t<a href=\"http://unsplash.com\">Unsplash.com</a> \n\t\t\t\t\tand \n<a href=\"http://www.flickr.com/creativecommons/by-2.0/tags/\">Flickr - Creative Commons</a>"
-                                        }
-                                    ]
-                                }
-                            ]
-                        },
-                        {
-                            "xtype" : "Row",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "String cls" : "col-sm-6",
-                                    "xtype" : "Element",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "xtype" : "Header",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "Number level" : 3,
-                                            "String html" : "Can I use it to build a site for my client?"
-                                        },
-                                        {
-                                            "String tag" : "p",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "Yes, you can. You may use this template for any purpose, just don't forget about the \n<a href=\"http://creativecommons.org/licenses/by/3.0/\">license</a>\nwhich says: \"You must give appropriate credit\", i.e. you must provide the name of the creator and a link to the original template in your work. \n"
-                                        }
-                                    ]
-                                },
-                                {
-                                    "String cls" : "col-sm-6",
-                                    "xtype" : "Element",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "xtype" : "Header",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "Number level" : 3,
-                                            "String html" : "Can you customize this template for me?"
-                                        },
-                                        {
-                                            "String tag" : "p",
-                                            "xtype" : "Element",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "String html" : "Yes, I can. Please drop me a line to sergey-at-pozhilov.com and describe your needs in details. Please note, my services are not cheap."
-                                        }
-                                    ]
-                                }
-                            ]
-                        },
-                        {
-                            "String cls" : "jumbotron top-space",
-                            "xtype" : "Element",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "xtype" : "Header",
-                                    "Number level" : 4,
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "Dicta, nostrum nemo soluta sapiente sit dolor quae voluptas quidem doloribus recusandae facere magni ullam suscipit sunt atque rerum eaque iusto facilis esse nam veniam incidunt officia perspiciatis at voluptatibus. Libero, aliquid illum possimus numquam fuga."
-                                },
-                                {
-                                    "String tag" : "p",
-                                    "String cls" : "text-right",
-                                    "xtype" : "Element",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "String html" : "<a class=\"btn btn-primary btn-large\">Learn more Â»</a>"
-                                }
-                            ]
-                        }
-                    ]
+                 "String tag" : "p",
+                 "xtype" : "Element",
+                 "$ xns" : "Roo.bootstrap",
+                 "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, dolores, quibusdam architecto voluptatem amet fugiat nesciunt placeat provident cumque accusamus itaque voluptate modi quidem dolore optio velit hic iusto vero praesentium repellat commodi ad id expedita cupiditate repellendus possimus unde?"
                 },
                 {
-                    "String cls" : "top-space",
-                    "xtype" : "Container",
-                    "$ xns" : "Roo.bootstrap",
-                    "items" : [
-                        {
-                            "String cls" : "footer1",
-                            "xtype" : "Container",
-                            "$ xns" : "Roo.bootstrap",
-                            "items" : [
-                                {
-                                    "xtype" : "Container",
-                                    "$ xns" : "Roo.bootstrap",
-                                    "items" : [
-                                        {
-                                            "xtype" : "Row",
-                                            "$ xns" : "Roo.bootstrap",
-                                            "items" : [
-                                                {
-                                                    "String cls" : "col-md-3 widget",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String cls" : "widget-title",
-                                                            "xtype" : "Header",
-                                                            "Number level" : 3,
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Contact"
-                                                        },
-                                                        {
-                                                            "String cls" : "widget-body",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "items" : [
-                                                                {
-                                                                    "String tag" : "p",
-                                                                    "xtype" : "Element",
-                                                                    "$ xns" : "Roo.bootstrap",
-                                                                    "String html" : "+234 23 9873237\n<br>\n<a href=\"mailto:#\">some.email@somewhere.com</a>\n<br>\n<br>\n234 Hidden Pond Road, Ashland City, TN 37015\n\t\t\t\t\t\t\t"
-                                                                }
-                                                            ]
-                                                        }
-                                                    ]
-                                                },
-                                                {
-                                                    "String cls" : "col-md-3 widget",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String cls" : "widget-title",
-                                                            "xtype" : "Header",
-                                                            "Number level" : 3,
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Follow me"
-                                                        },
-                                                        {
-                                                            "String cls" : "widget-body",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "items" : [
-                                                                {
-                                                                    "String tag" : "p",
-                                                                    "String cls" : "follow-me-icons",
-                                                                    "xtype" : "Element",
-                                                                    "$ xns" : "Roo.bootstrap",
-                                                                    "items" : [
-                                                                        {
-                                                                            "String tag" : "a",
-                                                                            "xtype" : "Element",
-                                                                            "$ xns" : "Roo.bootstrap",
-                                                                            "String html" : "<i class=\"fa fa-twitter fa-2\"></i>"
-                                                                        },
-                                                                        {
-                                                                            "String tag" : "a",
-                                                                            "xtype" : "Element",
-                                                                            "$ xns" : "Roo.bootstrap",
-                                                                            "String html" : "<i class=\"fa fa-dribbble fa-2\"></i>"
-                                                                        },
-                                                                        {
-                                                                            "String tag" : "a",
-                                                                            "xtype" : "Element",
-                                                                            "$ xns" : "Roo.bootstrap",
-                                                                            "String html" : "<i class=\"fa fa-github fa-2\"></i>"
-                                                                        },
-                                                                        {
-                                                                            "String tag" : "a",
-                                                                            "xtype" : "Element",
-                                                                            "$ xns" : "Roo.bootstrap",
-                                                                            "String html" : "<i class=\"fa fa-facebook fa-2\"></i>"
-                                                                        }
-                                                                    ]
-                                                                }
-                                                            ]
-                                                        }
-                                                    ]
-                                                },
-                                                {
-                                                    "String cls" : "col-md-6 widget",
-                                                    "xtype" : "Element",
-                                                    "$ xns" : "Roo.bootstrap",
-                                                    "items" : [
-                                                        {
-                                                            "String cls" : "widget-title",
-                                                            "xtype" : "Header",
-                                                            "Number level" : 3,
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "String html" : "Text widget"
-                                                        },
-                                                        {
-                                                            "String cls" : "widget-body",
-                                                            "xtype" : "Element",
-                                                            "$ xns" : "Roo.bootstrap",
-                                                            "items" : [
-                                                                {
-                                                                    "String tag" : "p",
-                                                                    "xtype" : "Element",
-                                                                    "$ xns" : "Roo.bootstrap",
-                                                                    "String html" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, dolores, quibusdam architecto voluptatem amet fugiat nesciunt placeat provident cumque accusamus itaque voluptate modi quidem dolore optio velit hic iusto vero praesentium repellat commodi ad id expedita cupiditate repellendus possimus unde?"
-                                                                },
-                                                                {
-                                                                    "String tag" : "p",
-                                                                    "xtype" : "Element",
-                                                                    "$ xns" : "Roo.bootstrap",
-                                                                    "String html" : "Eius consequatur nihil quibusdam! Laborum, rerum, quis, inventore ipsa autem repellat provident assumenda labore soluta minima alias temporibus facere distinctio quas adipisci nam sunt explicabo officia tenetur at ea quos doloribus dolorum voluptate reprehenderit architecto sint libero illo et hic."
-                                                                }
-                                                            ]
-                                                        }
-                                                    ]
-                                                }
-                                            ]
-                                        }
-                                    ]
-                                }
-                            ]
-                        }
-                    ]
+                 "String tag" : "p",
+                 "xtype" : "Element",
+                 "$ xns" : "Roo.bootstrap",
+                 "String html" : "Eius consequatur nihil quibusdam! Laborum, rerum, quis, inventore ipsa autem repellat provident assumenda labore soluta minima alias temporibus facere distinctio quas adipisci nam sunt explicabo officia tenetur at ea quos doloribus dolorum voluptate reprehenderit architecto sint libero illo et hic."
                 }
-            ]
+               ]
+              }
+             ]
+            }
+           ]
+          }
+         ]
         }
-    ]
+       ]
+      }
+     ]
+    }
+   ]
+  }
+ ]
 }
\ No newline at end of file
index 8f8104f..1186463 100644 (file)
 // Auto generated file - created by app.Builder.js- do not edit directly (at present!)
 
 homepage = new Roo.XComponent({
-    part     :  ["bootstrap", "homepage" ],
-    order    : '001-homepage',
-    region   : 'center',
-    parent   : false,
-    name     : "unnamed module",
-    disabled : false, 
-    permname : '', 
-    _tree : function()
-    {
-        var _this = this;
-        var MODULE = this;
-        return {
-            '|xns' : 'Roo.bootstrap',
-            cls : 'home',
-            xtype : 'Body',
-            xns : Roo.bootstrap,
-            items : [
-               {
-                    '|xns' : 'Roo.bootstrap',
-                    cls : 'headroom animated',
-                    position : 'fixed-top',
-                    xtype : 'NavHeaderbar',
-                    inverse : true,
-                    brand : 'Hydra',
-                    xns : Roo.bootstrap,
-                    items : [
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            type : 'nav',
-                            xtype : 'NavGroup',
-                            align : 'right',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'NavItem',
-                                    xns : Roo.bootstrap,
-                                    html : 'Home'
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'NavItem',
-                                    xns : Roo.bootstrap,
-                                    html : 'About'
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'NavItem',
-                                    xns : Roo.bootstrap,
-                                    html : 'More Pages'
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'NavItem',
-                                    xns : Roo.bootstrap,
-                                    html : 'Contact'
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : 'btn',
-                                    xtype : 'NavItem',
-                                    xns : Roo.bootstrap,
-                                    html : 'Sign in / Sign up'
-                                }
-                            ]
-
-                        }
-                    ]
-
-                },
-               {
-                    '|xns' : 'Roo.bootstrap',
-                    tag : 'header',
-                    cls : 'pr-head',
-                    xtype : 'Element',
-                    xns : Roo.bootstrap,
-                    items : [
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            xtype : 'Container',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'Row',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            cls : 'lead',
-                                            xtype : 'Header',
-                                            xns : Roo.bootstrap,
-                                            html : 'The HR Platform'
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            tag : 'p',
-                                            cls : 'tagline',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            html : 'some tag line'
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            tag : 'p',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            items : [
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    tag : 'a',
-                                                    size : 'lg',
-                                                    href : '#',
-                                                    xtype : 'Button',
-                                                    xns : Roo.bootstrap,
-                                                    html : 'a button'
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    tag : 'a',
-                                                    size : 'lg',
-                                                    href : '#',
-                                                    xtype : 'Button',
-                                                    xns : Roo.bootstrap,
-                                                    html : 'a button'
-                                                }
-                                            ]
-
-                                        }
-                                    ]
-
-                                }
-                            ]
-
-                        }
-                    ]
-
-                },
-               {
-                    '|xns' : 'Roo.bootstrap',
-                    cls : 'container text-center',
-                    xtype : 'Element',
-                    xns : Roo.bootstrap,
-                    items : [
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            cls : 'thin',
-                            xtype : 'Header',
-                            xns : Roo.bootstrap,
-                            level : 2,
-                            html : 'The best place to tell people why they are here'
-                        },
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            tag : 'p',
-                            cls : 'text-muted',
-                            xtype : 'Element',
-                            xns : Roo.bootstrap,
-                            html : '\tThe difference between involvement and commitment is like an eggs-and-ham breakfast:\n\t<br> \n\tthe chicken was involved; the pig was committed.\n\t\t'
-                        }
-                    ]
-
-                },
-               {
-                    '|xns' : 'Roo.bootstrap',
-                    cls : '',
-                    xtype : 'Element',
-                    xns : Roo.bootstrap,
-                    items : [
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            xtype : 'Container',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : 'text-center thin',
-                                    xtype : 'Header',
-                                    xns : Roo.bootstrap,
-                                    level : 3,
-                                    html : 'Reasons to use this template'
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : '',
-                                    xtype : 'Row',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            cls : 'col-md-3 col-sm-6 highlight',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            items : [
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-caption',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            xtype : 'Header',
-                                                            xns : Roo.bootstrap,
-                                                            level : 4,
-                                                            html : '<i class=\"fa fa-cogs fa-5\"></i>Bootstrap-powered'
-                                                        }
-                                                    ]
-
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-body text-center',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            tag : 'p',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque aliquid adipisci aspernatur. Soluta quisquam dignissimos earum quasi voluptate. Amet, dignissimos, tenetur vitae dolor quam iusto assumenda hic reprehenderit?'
-                                                        }
-                                                    ]
-
-                                                }
-                                            ]
-
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            cls : 'col-md-3 col-sm-6 highlight',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            items : [
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-caption',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            xtype : 'Header',
-                                                            xns : Roo.bootstrap,
-                                                            level : 4,
-                                                            html : '<i class=\"fa fa-flash fa-5\"></i>Fat-free'
-                                                        }
-                                                    ]
-
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-body text-center',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            tag : 'p',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, commodi, sequi quis ad fugit omnis cumque a libero error nesciunt molestiae repellat quos perferendis numquam quibusdam rerum repellendus laboriosam reprehenderit! '
-                                                        }
-                                                    ]
-
-                                                }
-                                            ]
-
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            cls : 'col-md-3 col-sm-6 highlight',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            items : [
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-caption',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            xtype : 'Header',
-                                                            level : 4,
-                                                            xns : Roo.bootstrap,
-                                                            html : '<i class=\"fa fa-heart fa-5\"></i>Creative Commons'
-                                                        }
-                                                    ]
-
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-body text-center',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            tag : 'p',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, vitae, perferendis, perspiciatis nobis voluptate quod illum soluta minima ipsam ratione quia numquam eveniet eum reprehenderit dolorem dicta nesciunt corporis?'
-                                                        }
-                                                    ]
-
-                                                }
-                                            ]
-
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            cls : 'col-md-3 col-sm-6 highlight',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            items : [
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-caption',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            xtype : 'Header',
-                                                            xns : Roo.bootstrap,
-                                                            level : 4,
-                                                            html : '<i class=\"fa fa-smile-o fa-5\"></i>Author\'s support'
-                                                        }
-                                                    ]
-
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'h-body text-center',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            tag : 'p',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, excepturi, maiores, dolorem quasi reprehenderit illo accusamus nulla minima repudiandae quas ducimus reiciendis odio sequi atque temporibus facere corporis eos expedita? '
-                                                        }
-                                                    ]
-
-                                                }
-                                            ]
-
-                                        }
-                                    ]
-
-                                }
-                            ]
-
-                        }
-                    ]
-
-                },
-               {
-                    '|xns' : 'Roo.bootstrap',
-                    xtype : 'Container',
-                    xns : Roo.bootstrap,
-                    items : [
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            cls : 'text-center top-space',
-                            xtype : 'Header',
-                            xns : Roo.bootstrap,
-                            level : 2,
-                            html : 'Frequently Asked Questions'
-                        },
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            xtype : 'Row',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : 'col-sm-6',
-                                    xtype : 'Element',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            xtype : 'Header',
-                                            level : 3,
-                                            xns : Roo.bootstrap,
-                                            html : 'Which code editor would you recommend?'
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            tag : 'p',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            html : 'I\'d highly recommend you <a href=\"http://www.sublimetext.com/\">Sublime Text</a> \n- a free to try text editor which I\'m using daily. Awesome tool!'
-                                        }
-                                    ]
-
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : 'col-sm-6',
-                                    xtype : 'Element',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            xtype : 'Header',
-                                            level : 3,
-                                            xns : Roo.bootstrap,
-                                            html : 'Nice header. Where do I find more images like that one?'
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            tag : 'p',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            html : 'Well, there are thousands of stock art galleries, but personally, \n\t\t\t\t\tI prefer to use photos from these sites: \n\t\t<a href=\"http://unsplash.com\">Unsplash.com</a> \n\t\t\t\t\tand \n<a href=\"http://www.flickr.com/creativecommons/by-2.0/tags/\">Flickr - Creative Commons</a>'
-                                        }
-                                    ]
-
-                                }
-                            ]
-
-                        },
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            xtype : 'Row',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : 'col-sm-6',
-                                    xtype : 'Element',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            xtype : 'Header',
-                                            xns : Roo.bootstrap,
-                                            level : 3,
-                                            html : 'Can I use it to build a site for my client?'
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            tag : 'p',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            html : 'Yes, you can. You may use this template for any purpose, just don\'t forget about the \n<a href=\"http://creativecommons.org/licenses/by/3.0/\">license</a>\nwhich says: \"You must give appropriate credit\", i.e. you must provide the name of the creator and a link to the original template in your work. \n'
-                                        }
-                                    ]
-
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    cls : 'col-sm-6',
-                                    xtype : 'Element',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            xtype : 'Header',
-                                            xns : Roo.bootstrap,
-                                            level : 3,
-                                            html : 'Can you customize this template for me?'
-                                        },
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            tag : 'p',
-                                            xtype : 'Element',
-                                            xns : Roo.bootstrap,
-                                            html : 'Yes, I can. Please drop me a line to sergey-at-pozhilov.com and describe your needs in details. Please note, my services are not cheap.'
-                                        }
-                                    ]
-
-                                }
-                            ]
-
-                        },
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            cls : 'jumbotron top-space',
-                            xtype : 'Element',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'Header',
-                                    level : 4,
-                                    xns : Roo.bootstrap,
-                                    html : 'Dicta, nostrum nemo soluta sapiente sit dolor quae voluptas quidem doloribus recusandae facere magni ullam suscipit sunt atque rerum eaque iusto facilis esse nam veniam incidunt officia perspiciatis at voluptatibus. Libero, aliquid illum possimus numquam fuga.'
-                                },
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    tag : 'p',
-                                    cls : 'text-right',
-                                    xtype : 'Element',
-                                    xns : Roo.bootstrap,
-                                    html : '<a class=\"btn btn-primary btn-large\">Learn more Â»</a>'
-                                }
-                            ]
-
-                        }
-                    ]
 
+ _strings : {
+  '167d10e1548c4dd34c59a5a143acbcc8' :"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque aliquid adipisci aspernatur. Soluta quisquam dignissimos earum quasi voluptate. Amet, dignissimos, tenetur vitae dolor quam iusto assumenda hic reprehenderit?",
+  '20d25edf30cd635994f8636d1b7af16f' :"The best place to tell people why they are here",
+  '6fc642524ba59140ab8b69301261d393' :"<i class=\"fa fa-heart fa-5\"></i>Creative Commons",
+  '2295195aac9d2c7b410428029f2369bf' :"More Pages",
+  '4e01ca94bcef3d1d6e1caff7fa42a099' :"Follow me",
+  '0b6d966a2b73f4617ae20d9d0f286926' :"<i class=\"fa fa-twitter fa-2\"></i>",
+  'c90c8c53c27cd538b32a2fd0b7e2ac50' :"Well, there are thousands of stock art galleries, but personally, \n\t\t\t\t\tI prefer to use photos from these sites: \n\t\t<a href=\"http://unsplash.com\">Unsplash.com</a> \n\t\t\t\t\tand \n<a href=\"http://www.flickr.com/creativecommons/by-2.0/tags/\">Flickr - Creative Commons</a>",
+  '544ed65266ffc37e762fb588771a5c50' :"Nice header. Where do I find more images like that one?",
+  '65e69ec9f42722989b738ea6c97aa70c' :"\tThe difference between involvement and commitment is like an eggs-and-ham breakfast:\n\t<br> \n\tthe chicken was involved; the pig was committed.\n\t\t",
+  'bbaff12800505b22a853e8b7f4eb6a22' :"Contact",
+  '9cef554366342b985660f540adad49a3' :"+234 23 9873237\n<br>\n<a href=\"mailto:#\">some.email@somewhere.com</a>\n<br>\n<br>\n234 Hidden Pond Road, Ashland City, TN 37015\n\t\t\t\t\t\t\t",
+  'd54164e86d9e4d31e5c683861d3832a2' :"<i class=\"fa fa-dribbble fa-2\"></i>",
+  'fa7d0f3e094ac32ae6947791153a4ff7' :"Eius consequatur nihil quibusdam! Laborum, rerum, quis, inventore ipsa autem repellat provident assumenda labore soluta minima alias temporibus facere distinctio quas adipisci nam sunt explicabo officia tenetur at ea quos doloribus dolorum voluptate reprehenderit architecto sint libero illo et hic.",
+  'bd04e83c01b437cca28fc08e693a76a8' :"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, commodi, sequi quis ad fugit omnis cumque a libero error nesciunt molestiae repellat quos perferendis numquam quibusdam rerum repellendus laboriosam reprehenderit! ",
+  '5405d8a903c83e89cb649f1b518ef1be' :"Frequently Asked Questions",
+  'bda9f9ca9e653bb4a20a30b8d0f253d4' :"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, excepturi, maiores, dolorem quasi reprehenderit illo accusamus nulla minima repudiandae quas ducimus reiciendis odio sequi atque temporibus facere corporis eos expedita? ",
+  'ca98e91c48e9c483c403abb7af44d036' :"<i class=\"fa fa-smile-o fa-5\"></i>Author's support",
+  '748d1c66b53692e34084b5d1be6eb07a' :"some tag line",
+  'f757cef8954558e37499e14b7fcb23d3' :"Reasons to use this template",
+  '1522f8912011fd73c3b6b72604e9eb4f' :"<i class=\"fa fa-flash fa-5\"></i>Fat-free",
+  'a966e9d1c9065dbbea23d8d6705b9e42' :"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, vitae, perferendis, perspiciatis nobis voluptate quod illum soluta minima ipsam ratione quia numquam eveniet eum reprehenderit dolorem dicta nesciunt corporis?",
+  'c71c85fb79a1e589cfe00a8233e37841' :"a button",
+  '932c1787f028d8eb514db1ac402fac54' :"I'd highly recommend you <a href=\"http://www.sublimetext.com/\">Sublime Text</a> \n- a free to try text editor which I'm using daily. Awesome tool!",
+  '5b6c1f1969e02981d7d8455b6538292d' :"Can you customize this template for me?",
+  '8f7f4c1ce7a4f933663d10543562b096' :"About",
+  '89f57a5ba6334d012ddb709b186b3a98' :"<i class=\"fa fa-github fa-2\"></i>",
+  '3cf1ef47ec04254f4a98d9fde7f70581' :"Text widget",
+  '5264548d77038db97f4f4aa5d8813b8b' :"Dicta, nostrum nemo soluta sapiente sit dolor quae voluptas quidem doloribus recusandae facere magni ullam suscipit sunt atque rerum eaque iusto facilis esse nam veniam incidunt officia perspiciatis at voluptatibus. Libero, aliquid illum possimus numquam fuga.",
+  '8e9efcdf6f236ccbbd6ba45378fc5938' :"<i class=\"fa fa-facebook fa-2\"></i>",
+  '25d3bc8aaa2306df70a61938535634dc' :"<a class=\"btn btn-primary btn-large\">Learn more Â»</a>",
+  '4b4614a2a02ceb468d0030b06c9fc151' :"The HR Platform",
+  'c57215a93662add542baf3690cbde5db' :"Can I use it to build a site for my client?",
+  'f106c3ac1b76182d358f96951c8bb235' :"<i class=\"fa fa-cogs fa-5\"></i>Bootstrap-powered",
+  '43afe83e70e529de2ddba6b515c4cb37' :"Which code editor would you recommend?",
+  '778d568d19d00c60b9cd62573dff9d48' :"Yes, I can. Please drop me a line to sergey-at-pozhilov.com and describe your needs in details. Please note, my services are not cheap.",
+  '8cf04a9734132302f96da8e113e80ce5' :"Home",
+  '6b405cff8a90f9f3fae8d953edf67160' :"Yes, you can. You may use this template for any purpose, just don't forget about the \n<a href=\"http://creativecommons.org/licenses/by/3.0/\">license</a>\nwhich says: \"You must give appropriate credit\", i.e. you must provide the name of the creator and a link to the original template in your work. \n",
+  '2a2f84bd9854960f2c63eeb3af60fb70' :"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, dolores, quibusdam architecto voluptatem amet fugiat nesciunt placeat provident cumque accusamus itaque voluptate modi quidem dolore optio velit hic iusto vero praesentium repellat commodi ad id expedita cupiditate repellendus possimus unde?",
+  '5ac2119f318eaad0c139c729c78eba5f' :"Sign in / Sign up"
+ },
+
+  part     :  ["bootstrap", "homepage" ],
+  order    : '001-homepage',
+  region   : 'center',
+  parent   : false,
+  name     : "unnamed module",
+  disabled : false, 
+  permname : '', 
+  _tree : function(_data)
+  {
+   var _this = this;
+   var MODULE = this;
+   return {
+   xtype : 'Body',
+   cls : 'home',
+   xns : Roo.bootstrap,
+   '|xns' : 'Roo.bootstrap',
+   items  : [
+    {
+     xtype : 'NavHeaderbar',
+     brand : 'Hydra',
+     cls : 'headroom animated',
+     inverse : true,
+     position : 'fixed-top',
+     xns : Roo.bootstrap,
+     '|xns' : 'Roo.bootstrap',
+     items  : [
+      {
+       xtype : 'NavGroup',
+       align : 'right',
+       type : 'nav',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'NavItem',
+         html : _this._strings['8cf04a9734132302f96da8e113e80ce5'] /* Home */,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        },
+        {
+         xtype : 'NavItem',
+         html : _this._strings['8f7f4c1ce7a4f933663d10543562b096'] /* About */,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        },
+        {
+         xtype : 'NavItem',
+         html : _this._strings['2295195aac9d2c7b410428029f2369bf'] /* More Pages */,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        },
+        {
+         xtype : 'NavItem',
+         html : _this._strings['bbaff12800505b22a853e8b7f4eb6a22'] /* Contact */,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        },
+        {
+         xtype : 'NavItem',
+         button_outline : true,
+         button_weight : 'primary',
+         cls : 'btn',
+         html : _this._strings['5ac2119f318eaad0c139c729c78eba5f'] /* Sign in / Sign up */,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        }
+       ]
+      }
+     ]
+    },
+    {
+     xtype : 'Element',
+     cls : 'pr-head',
+     tag : 'header',
+     xns : Roo.bootstrap,
+     '|xns' : 'Roo.bootstrap',
+     items  : [
+      {
+       xtype : 'Container',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'Row',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Header',
+           cls : 'lead',
+           html : _this._strings['4b4614a2a02ceb468d0030b06c9fc151'] /* The HR Platform */,
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          },
+          {
+           xtype : 'Element',
+           cls : 'tagline',
+           html : _this._strings['748d1c66b53692e34084b5d1be6eb07a'] /* some tag line */,
+           tag : 'p',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          },
+          {
+           xtype : 'Element',
+           tag : 'p',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap',
+           items  : [
+            {
+             xtype : 'Button',
+             href : '#',
+             html : _this._strings['c71c85fb79a1e589cfe00a8233e37841'] /* a button */,
+             size : 'lg',
+             tag : 'a',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap'
+            },
+            {
+             xtype : 'Button',
+             href : '#',
+             html : _this._strings['c71c85fb79a1e589cfe00a8233e37841'] /* a button */,
+             size : 'lg',
+             tag : 'a',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap'
+            }
+           ]
+          }
+         ]
+        }
+       ]
+      }
+     ]
+    },
+    {
+     xtype : 'Element',
+     cls : 'container text-center',
+     xns : Roo.bootstrap,
+     '|xns' : 'Roo.bootstrap',
+     items  : [
+      {
+       xtype : 'Header',
+       cls : 'thin',
+       html : _this._strings['20d25edf30cd635994f8636d1b7af16f'] /* The best place to tell people why they are here */,
+       level : 2,
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap'
+      },
+      {
+       xtype : 'Element',
+       cls : 'text-muted',
+       html : _this._strings['65e69ec9f42722989b738ea6c97aa70c'] /* 
+               The difference between involvement and commitment is like an eggs-and-ham breakfast:       
+       <br>        
+       the chicken was involved; the pig was committed.       
+               
+       */ ,
+       tag : 'p',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap'
+      }
+     ]
+    },
+    {
+     xtype : 'Element',
+     cls : '',
+     xns : Roo.bootstrap,
+     '|xns' : 'Roo.bootstrap',
+     items  : [
+      {
+       xtype : 'Container',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'Header',
+         cls : 'text-center thin',
+         html : _this._strings['f757cef8954558e37499e14b7fcb23d3'] /* Reasons to use this template */,
+         level : 3,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        },
+        {
+         xtype : 'Row',
+         cls : '',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Element',
+           cls : 'col-md-3 col-sm-6 highlight',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap',
+           items  : [
+            {
+             xtype : 'Element',
+             cls : 'h-caption',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               html : _this._strings['f106c3ac1b76182d358f96951c8bb235'] /* <i class="fa fa-cogs fa-5"></i>Bootstrap-powered */,
+               level : 4,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            },
+            {
+             xtype : 'Element',
+             cls : 'h-body text-center',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Element',
+               html : _this._strings['167d10e1548c4dd34c59a5a143acbcc8'] /* Lorem ipsum dolor sit amet, consectetur adipisicing elit. Atque aliquid adipisci aspernatur. Soluta quisquam dignissimos earum quasi voluptate. Amet, dignissimos, tenetur vitae dolor quam iusto assumenda hic reprehenderit? */,
+               tag : 'p',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            }
+           ]
+          },
+          {
+           xtype : 'Element',
+           cls : 'col-md-3 col-sm-6 highlight',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap',
+           items  : [
+            {
+             xtype : 'Element',
+             cls : 'h-caption',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               html : _this._strings['1522f8912011fd73c3b6b72604e9eb4f'] /* <i class="fa fa-flash fa-5"></i>Fat-free */,
+               level : 4,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            },
+            {
+             xtype : 'Element',
+             cls : 'h-body text-center',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Element',
+               html : _this._strings['bd04e83c01b437cca28fc08e693a76a8'] /* Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, commodi, sequi quis ad fugit omnis cumque a libero error nesciunt molestiae repellat quos perferendis numquam quibusdam rerum repellendus laboriosam reprehenderit!  */,
+               tag : 'p',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            }
+           ]
+          },
+          {
+           xtype : 'Element',
+           cls : 'col-md-3 col-sm-6 highlight',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap',
+           items  : [
+            {
+             xtype : 'Element',
+             cls : 'h-caption',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               html : _this._strings['6fc642524ba59140ab8b69301261d393'] /* <i class="fa fa-heart fa-5"></i>Creative Commons */,
+               level : 4,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            },
+            {
+             xtype : 'Element',
+             cls : 'h-body text-center',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Element',
+               html : _this._strings['a966e9d1c9065dbbea23d8d6705b9e42'] /* Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem, vitae, perferendis, perspiciatis nobis voluptate quod illum soluta minima ipsam ratione quia numquam eveniet eum reprehenderit dolorem dicta nesciunt corporis? */,
+               tag : 'p',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            }
+           ]
+          },
+          {
+           xtype : 'Element',
+           cls : 'col-md-3 col-sm-6 highlight',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap',
+           items  : [
+            {
+             xtype : 'Element',
+             cls : 'h-caption',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               html : _this._strings['ca98e91c48e9c483c403abb7af44d036'] /* <i class="fa fa-smile-o fa-5"></i>Author's support */,
+               level : 4,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            },
+            {
+             xtype : 'Element',
+             cls : 'h-body text-center',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Element',
+               html : _this._strings['bda9f9ca9e653bb4a20a30b8d0f253d4'] /* Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias, excepturi, maiores, dolorem quasi reprehenderit illo accusamus nulla minima repudiandae quas ducimus reiciendis odio sequi atque temporibus facere corporis eos expedita?  */,
+               tag : 'p',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              }
+             ]
+            }
+           ]
+          }
+         ]
+        }
+       ]
+      }
+     ]
+    },
+    {
+     xtype : 'Container',
+     xns : Roo.bootstrap,
+     '|xns' : 'Roo.bootstrap',
+     items  : [
+      {
+       xtype : 'Header',
+       cls : 'text-center top-space',
+       html : _this._strings['5405d8a903c83e89cb649f1b518ef1be'] /* Frequently Asked Questions */,
+       level : 2,
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap'
+      },
+      {
+       xtype : 'Row',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'Element',
+         cls : 'col-sm-6',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Header',
+           html : _this._strings['43afe83e70e529de2ddba6b515c4cb37'] /* Which code editor would you recommend? */,
+           level : 3,
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          },
+          {
+           xtype : 'Element',
+           html : _this._strings['932c1787f028d8eb514db1ac402fac54'] /* 
+           I'd highly recommend you <a href="http://www.sublimetext.com/">Sublime Text</a>            
+- a free to try text editor which I'm using daily. Awesome tool!
+           */ ,
+           tag : 'p',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          }
+         ]
+        },
+        {
+         xtype : 'Element',
+         cls : 'col-sm-6',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Header',
+           html : _this._strings['544ed65266ffc37e762fb588771a5c50'] /* Nice header. Where do I find more images like that one? */,
+           level : 3,
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          },
+          {
+           xtype : 'Element',
+           html : _this._strings['c90c8c53c27cd538b32a2fd0b7e2ac50'] /* 
+           Well, there are thousands of stock art galleries, but personally,            
+                                       I prefer to use photos from these sites:            
+               <a href="http://unsplash.com">Unsplash.com</a>            
+                                       and            
+<a href="http://www.flickr.com/creativecommons/by-2.0/tags/">Flickr - Creative Commons</a>
+           */ ,
+           tag : 'p',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          }
+         ]
+        }
+       ]
+      },
+      {
+       xtype : 'Row',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'Element',
+         cls : 'col-sm-6',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Header',
+           html : _this._strings['c57215a93662add542baf3690cbde5db'] /* Can I use it to build a site for my client? */,
+           level : 3,
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          },
+          {
+           xtype : 'Element',
+           html : _this._strings['6b405cff8a90f9f3fae8d953edf67160'] /* 
+           Yes, you can. You may use this template for any purpose, just don't forget about the            
+<a href="http://creativecommons.org/licenses/by/3.0/">license</a>           
+which says: "You must give appropriate credit", i.e. you must provide the name of the creator and a link to the original template in your work.            
+
+           */ ,
+           tag : 'p',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          }
+         ]
+        },
+        {
+         xtype : 'Element',
+         cls : 'col-sm-6',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Header',
+           html : _this._strings['5b6c1f1969e02981d7d8455b6538292d'] /* Can you customize this template for me? */,
+           level : 3,
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          },
+          {
+           xtype : 'Element',
+           html : _this._strings['778d568d19d00c60b9cd62573dff9d48'] /* Yes, I can. Please drop me a line to sergey-at-pozhilov.com and describe your needs in details. Please note, my services are not cheap. */,
+           tag : 'p',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap'
+          }
+         ]
+        }
+       ]
+      },
+      {
+       xtype : 'Element',
+       cls : 'jumbotron top-space',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'Header',
+         html : _this._strings['5264548d77038db97f4f4aa5d8813b8b'] /* Dicta, nostrum nemo soluta sapiente sit dolor quae voluptas quidem doloribus recusandae facere magni ullam suscipit sunt atque rerum eaque iusto facilis esse nam veniam incidunt officia perspiciatis at voluptatibus. Libero, aliquid illum possimus numquam fuga. */,
+         level : 4,
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        },
+        {
+         xtype : 'Element',
+         cls : 'text-right',
+         html : _this._strings['25d3bc8aaa2306df70a61938535634dc'] /* <a class="btn btn-primary btn-large">Learn more Â»</a> */,
+         tag : 'p',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap'
+        }
+       ]
+      }
+     ]
+    },
+    {
+     xtype : 'Container',
+     cls : 'top-space',
+     xns : Roo.bootstrap,
+     '|xns' : 'Roo.bootstrap',
+     items  : [
+      {
+       xtype : 'Container',
+       cls : 'footer1',
+       xns : Roo.bootstrap,
+       '|xns' : 'Roo.bootstrap',
+       items  : [
+        {
+         xtype : 'Container',
+         xns : Roo.bootstrap,
+         '|xns' : 'Roo.bootstrap',
+         items  : [
+          {
+           xtype : 'Row',
+           xns : Roo.bootstrap,
+           '|xns' : 'Roo.bootstrap',
+           items  : [
+            {
+             xtype : 'Element',
+             cls : 'col-md-3 widget',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               cls : 'widget-title',
+               html : _this._strings['bbaff12800505b22a853e8b7f4eb6a22'] /* Contact */,
+               level : 3,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              },
+              {
+               xtype : 'Element',
+               cls : 'widget-body',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap',
+               items  : [
+                {
+                 xtype : 'Element',
+                 html : _this._strings['9cef554366342b985660f540adad49a3'] /* 
+                 +234 23 9873237                 
+<br>                 
+<a href="mailto:#">some.email@somewhere.com</a>                 
+<br>                 
+<br>                 
+234 Hidden Pond Road, Ashland City, TN 37015                 
+                                                       
+                 */ ,
+                 tag : 'p',
+                 xns : Roo.bootstrap,
+                 '|xns' : 'Roo.bootstrap'
+                }
+               ]
+              }
+             ]
+            },
+            {
+             xtype : 'Element',
+             cls : 'col-md-3 widget',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               cls : 'widget-title',
+               html : _this._strings['4e01ca94bcef3d1d6e1caff7fa42a099'] /* Follow me */,
+               level : 3,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              },
+              {
+               xtype : 'Element',
+               cls : 'widget-body',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap',
+               items  : [
+                {
+                 xtype : 'Element',
+                 cls : 'follow-me-icons',
+                 tag : 'p',
+                 xns : Roo.bootstrap,
+                 '|xns' : 'Roo.bootstrap',
+                 items  : [
+                  {
+                   xtype : 'Element',
+                   html : _this._strings['0b6d966a2b73f4617ae20d9d0f286926'] /* <i class="fa fa-twitter fa-2"></i> */,
+                   tag : 'a',
+                   xns : Roo.bootstrap,
+                   '|xns' : 'Roo.bootstrap'
+                  },
+                  {
+                   xtype : 'Element',
+                   html : _this._strings['d54164e86d9e4d31e5c683861d3832a2'] /* <i class="fa fa-dribbble fa-2"></i> */,
+                   tag : 'a',
+                   xns : Roo.bootstrap,
+                   '|xns' : 'Roo.bootstrap'
+                  },
+                  {
+                   xtype : 'Element',
+                   html : _this._strings['89f57a5ba6334d012ddb709b186b3a98'] /* <i class="fa fa-github fa-2"></i> */,
+                   tag : 'a',
+                   xns : Roo.bootstrap,
+                   '|xns' : 'Roo.bootstrap'
+                  },
+                  {
+                   xtype : 'Element',
+                   html : _this._strings['8e9efcdf6f236ccbbd6ba45378fc5938'] /* <i class="fa fa-facebook fa-2"></i> */,
+                   tag : 'a',
+                   xns : Roo.bootstrap,
+                   '|xns' : 'Roo.bootstrap'
+                  }
+                 ]
+                }
+               ]
+              }
+             ]
+            },
+            {
+             xtype : 'Element',
+             cls : 'col-md-6 widget',
+             xns : Roo.bootstrap,
+             '|xns' : 'Roo.bootstrap',
+             items  : [
+              {
+               xtype : 'Header',
+               cls : 'widget-title',
+               html : _this._strings['3cf1ef47ec04254f4a98d9fde7f70581'] /* Text widget */,
+               level : 3,
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap'
+              },
+              {
+               xtype : 'Element',
+               cls : 'widget-body',
+               xns : Roo.bootstrap,
+               '|xns' : 'Roo.bootstrap',
+               items  : [
+                {
+                 xtype : 'Element',
+                 html : _this._strings['2a2f84bd9854960f2c63eeb3af60fb70'] /* Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, dolores, quibusdam architecto voluptatem amet fugiat nesciunt placeat provident cumque accusamus itaque voluptate modi quidem dolore optio velit hic iusto vero praesentium repellat commodi ad id expedita cupiditate repellendus possimus unde? */,
+                 tag : 'p',
+                 xns : Roo.bootstrap,
+                 '|xns' : 'Roo.bootstrap'
                 },
-               {
-                    '|xns' : 'Roo.bootstrap',
-                    cls : 'top-space',
-                    xtype : 'Container',
-                    xns : Roo.bootstrap,
-                    items : [
-                       {
-                            '|xns' : 'Roo.bootstrap',
-                            cls : 'footer1',
-                            xtype : 'Container',
-                            xns : Roo.bootstrap,
-                            items : [
-                               {
-                                    '|xns' : 'Roo.bootstrap',
-                                    xtype : 'Container',
-                                    xns : Roo.bootstrap,
-                                    items : [
-                                       {
-                                            '|xns' : 'Roo.bootstrap',
-                                            xtype : 'Row',
-                                            xns : Roo.bootstrap,
-                                            items : [
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'col-md-3 widget',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            cls : 'widget-title',
-                                                            xtype : 'Header',
-                                                            level : 3,
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Contact'
-                                                        },
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            cls : 'widget-body',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            items : [
-                                                               {
-                                                                    '|xns' : 'Roo.bootstrap',
-                                                                    tag : 'p',
-                                                                    xtype : 'Element',
-                                                                    xns : Roo.bootstrap,
-                                                                    html : '+234 23 9873237\n<br>\n<a href=\"mailto:#\">some.email@somewhere.com</a>\n<br>\n<br>\n234 Hidden Pond Road, Ashland City, TN 37015\n\t\t\t\t\t\t\t'
-                                                                }
-                                                            ]
-
-                                                        }
-                                                    ]
-
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'col-md-3 widget',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            cls : 'widget-title',
-                                                            xtype : 'Header',
-                                                            level : 3,
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Follow me'
-                                                        },
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            cls : 'widget-body',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            items : [
-                                                               {
-                                                                    '|xns' : 'Roo.bootstrap',
-                                                                    tag : 'p',
-                                                                    cls : 'follow-me-icons',
-                                                                    xtype : 'Element',
-                                                                    xns : Roo.bootstrap,
-                                                                    items : [
-                                                                       {
-                                                                            '|xns' : 'Roo.bootstrap',
-                                                                            tag : 'a',
-                                                                            xtype : 'Element',
-                                                                            xns : Roo.bootstrap,
-                                                                            html : '<i class=\"fa fa-twitter fa-2\"></i>'
-                                                                        },
-                                                                       {
-                                                                            '|xns' : 'Roo.bootstrap',
-                                                                            tag : 'a',
-                                                                            xtype : 'Element',
-                                                                            xns : Roo.bootstrap,
-                                                                            html : '<i class=\"fa fa-dribbble fa-2\"></i>'
-                                                                        },
-                                                                       {
-                                                                            '|xns' : 'Roo.bootstrap',
-                                                                            tag : 'a',
-                                                                            xtype : 'Element',
-                                                                            xns : Roo.bootstrap,
-                                                                            html : '<i class=\"fa fa-github fa-2\"></i>'
-                                                                        },
-                                                                       {
-                                                                            '|xns' : 'Roo.bootstrap',
-                                                                            tag : 'a',
-                                                                            xtype : 'Element',
-                                                                            xns : Roo.bootstrap,
-                                                                            html : '<i class=\"fa fa-facebook fa-2\"></i>'
-                                                                        }
-                                                                    ]
-
-                                                                }
-                                                            ]
-
-                                                        }
-                                                    ]
-
-                                                },
-                                               {
-                                                    '|xns' : 'Roo.bootstrap',
-                                                    cls : 'col-md-6 widget',
-                                                    xtype : 'Element',
-                                                    xns : Roo.bootstrap,
-                                                    items : [
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            cls : 'widget-title',
-                                                            xtype : 'Header',
-                                                            level : 3,
-                                                            xns : Roo.bootstrap,
-                                                            html : 'Text widget'
-                                                        },
-                                                       {
-                                                            '|xns' : 'Roo.bootstrap',
-                                                            cls : 'widget-body',
-                                                            xtype : 'Element',
-                                                            xns : Roo.bootstrap,
-                                                            items : [
-                                                               {
-                                                                    '|xns' : 'Roo.bootstrap',
-                                                                    tag : 'p',
-                                                                    xtype : 'Element',
-                                                                    xns : Roo.bootstrap,
-                                                                    html : 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Excepturi, dolores, quibusdam architecto voluptatem amet fugiat nesciunt placeat provident cumque accusamus itaque voluptate modi quidem dolore optio velit hic iusto vero praesentium repellat commodi ad id expedita cupiditate repellendus possimus unde?'
-                                                                },
-                                                               {
-                                                                    '|xns' : 'Roo.bootstrap',
-                                                                    tag : 'p',
-                                                                    xtype : 'Element',
-                                                                    xns : Roo.bootstrap,
-                                                                    html : 'Eius consequatur nihil quibusdam! Laborum, rerum, quis, inventore ipsa autem repellat provident assumenda labore soluta minima alias temporibus facere distinctio quas adipisci nam sunt explicabo officia tenetur at ea quos doloribus dolorum voluptate reprehenderit architecto sint libero illo et hic.'
-                                                                }
-                                                            ]
-
-                                                        }
-                                                    ]
-
-                                                }
-                                            ]
-
-                                        }
-                                    ]
-
-                                }
-                            ]
-
-                        }
-                    ]
-
+                {
+                 xtype : 'Element',
+                 html : _this._strings['fa7d0f3e094ac32ae6947791153a4ff7'] /* Eius consequatur nihil quibusdam! Laborum, rerum, quis, inventore ipsa autem repellat provident assumenda labore soluta minima alias temporibus facere distinctio quas adipisci nam sunt explicabo officia tenetur at ea quos doloribus dolorum voluptate reprehenderit architecto sint libero illo et hic. */,
+                 tag : 'p',
+                 xns : Roo.bootstrap,
+                 '|xns' : 'Roo.bootstrap'
                 }
-            ]
-
-        };    }
+               ]
+              }
+             ]
+            }
+           ]
+          }
+         ]
+        }
+       ]
+      }
+     ]
+    }
+   ]
+  };  }
 });
index e56642c..7b2a9e2 100644 (file)
@@ -4,21 +4,24 @@
     <title>Bootstrap TabPanel - ComboBox Example</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     
-    <!-- Bootstrap -->
-       <link rel="stylesheet" href="../../css-bootstrap/bootstrap.min.css">
-    <link rel="stylesheet" href="../../css-bootstrap/roojs-bootstrap-debug.css">
-    <link rel="stylesheet" href="../../css-bootstrap/font-awesome.css">
-        
-    <link href="../../../bootswatch/AdminLTE-master/css/font-awesome.min.css" rel="stylesheet" type="text/css" /> 
-        
+  
+     <!-- Bootstrap -->
+    <link href="../../css-bootstrap4/bootstrap.min.css" rel="stylesheet" type="text/css" />   
+    <link href="../../css-bootstrap/font-awesome.css" rel="stylesheet" type="text/css" />
+    <link href="../../css-bootstrap4/roojs-bootstrap-debug.css" rel="stylesheet" type="text/css" />
+    
+  
+
+    
         
     <script type="text/javascript" src="../../roojs-core-debug.js"></script>
-        <script type="text/javascript" src="../../roojs-bootstrap-debug.js"></script>
-
+    <!-- bootstrap js.. needs to compile it later.. -->
+    <script type="text/javascript" src="../../roojs-bootstrap-debug.js"></script>
+          
         
     <!-- test code -->
-    <script type="text/javascript" src="TabPanel-ComboBox.js"></script>
+    <script type="text/javascript" src="../bootstrap/TabPanel-ComboBox.js"></script>
   </head>
   
   <body id="body">
index 4933edf..62d3625 100644 (file)
@@ -8,8 +8,7 @@
       <link rel="stylesheet" type="text/css" href="../../css-bootstrap4/bootstrap.min.css">
     <link rel="stylesheet" type="text/css" href="../../css-bootstrap4/roojs-bootstrap.css">
     <link rel="stylesheet" type="text/css" href="../../css-bootstrap/font-awesome.css">
-        <link href="../../../bootswatch/AdminLTE-master/css/AdminLTE.css" rel="stylesheet" type="text/css" />
-
     <script type="text/javascript" src="../../roojs-debug.js"></script>
     
     <!-- bootstrap js.. needs to compile it later.. -->
     <!-- bootstrap js.. needs to compile it later.. -->
     
    
-   <!--  <link href="http://localhost/bootswatch/Progressus/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />  -->
-
-    <link href="http://localhost/bootswatch/Progressus/assets/css/bootstrap-theme.css" rel="stylesheet" type="text/css" /> 
-    <link href="http://localhost/bootswatch/Progressus/assets/css/main-cls.css" rel="stylesheet" type="text/css" /> 
-    <!--   <link href="http://localhost/bootswatch/AdminLTE-master/css/AdminLTE.css" rel="stylesheet" type="text/css" /> -->
+   
 
         
     <!-- test code -->
index 6fe86ad..032b823 100644 (file)
@@ -9,11 +9,10 @@ porting tst for layout classes from original roo library into bootstrap one.
   <title>Nested Layout</title>
   
    <!-- Bootstrap -->
-    <link rel="stylesheet" href="../../css-bootstrap/bootstrap.min.css">
-       
+     <!-- Bootstrap -->
+    <link href="../../css-bootstrap4/bootstrap.min.css" rel="stylesheet" type="text/css" />   
     <link href="../../css-bootstrap/font-awesome.css" rel="stylesheet" type="text/css" />
-   
-    <link href="../../css-bootstrap/roojs-bootstrap-debug.css" rel="stylesheet" type="text/css" />
+    <link href="../../css-bootstrap4/roojs-bootstrap-debug.css" rel="stylesheet" type="text/css" />
     
   <!--  <link href="../../../bootswatch/material-kit/css/material-kit.css" rel="stylesheet"> -->
 
@@ -22,23 +21,8 @@ porting tst for layout classes from original roo library into bootstrap one.
     <script type="text/javascript" src="../../roojs-core-debug.js"></script>
     <!-- bootstrap js.. needs to compile it later.. -->
     <script type="text/javascript" src="../../roojs-bootstrap-debug.js"></script>
-        <script type="text/javascript" src="../../Roo/bootstrap/Modal.js"></script>
-    <script type="text/javascript" src="../../Roo/bootstrap/panel/Tabs.js"></script>
-
-    <script type="text/javascript" src="../../Roo/bootstrap/layout/Border.js"></script>
-    <script type="text/javascript" src="../../Roo/bootstrap/layout/Region.js"></script>
-    <script type="text/javascript" src="../../Roo/bootstrap/layout/Center.js"></script>
-
-    <script type="text/javascript" src="../../Roo/bootstrap/panel/Content.js"></script>
-    
-    <script type="text/javascript" src="../../Roo/bootstrap//Table.js"></script>
-    <script type="text/javascript" src="../../Roo/bootstrap//Table/AbstractSelectionModel.js"></script>
-    <script type="text/javascript" src="../../Roo/bootstrap//Table/RowSelectionModel.js"></script>
     
-    <script type="text/javascript" src="../../Roo/bootstrap/panel/Grid.js"></script>
-    
-    
-    <script type="text/javascript" src="../../Roo/bootstrap/Input.js"></script>
+  
     
     
     
@@ -48,7 +32,7 @@ Roo.namespace("Dashboard");
     </script>
      
          <script type="text/javascript" src="Dashboard.Header1.js"></script>
-<script type="text/javascript" src="./nested-dialog.js"></script>
+<script type="text/javascript" src="../bootstrap/nested-dialog.js"></script>
      
      
      
index 31bc174..8d860a3 100644 (file)
@@ -4,20 +4,24 @@
     <title>Bootstrap 101 Template</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  
-    <!-- Bootstrap -->
-   <link rel="stylesheet" href="../../css-bootstrap/bootstrap.min.css">
-    <link rel="stylesheet" href="../../css-bootstrap/roojs-bootstrap-debug.css">
-    <link rel="stylesheet" href="../../css-bootstrap/font-awesome.css">
+   
+     <!-- Bootstrap -->
+    <link href="../../css-bootstrap4/bootstrap.min.css" rel="stylesheet" type="text/css" />   
+    <link href="../../css-bootstrap/font-awesome.css" rel="stylesheet" type="text/css" />
+    <link href="../../css-bootstrap4/roojs-bootstrap-debug.css" rel="stylesheet" type="text/css" />
     
-      
+  <!--  <link href="../../../bootswatch/material-kit/css/material-kit.css" rel="stylesheet"> -->
+
     
-    <script type="text/javascript" src="../../roojs-debug.js"></script>
-     
+        
+    <script type="text/javascript" src="../../roojs-core-debug.js"></script>
+    <!-- bootstrap js.. needs to compile it later.. -->
     <script type="text/javascript" src="../../roojs-bootstrap-debug.js"></script>
     
+  
 
     
-    <script type="text/javascript" src="sample.js"></script>
+    <script type="text/javascript" src="../bootstrap/sample.js"></script>
     
   </head>
   <body id="body">
index 41b98e7..88785e9 100644 (file)
@@ -4020,7 +4020,7 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
         
         var cfg = {
             tag : this.tag || 'div',
-            cls : 'navbar navbar-expand-lg'
+            cls : 'navbar navbar-expand-lg roo-navbar-simple'
         };
        if (['light','white'].indexOf(this.weight) > -1) {
            cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
@@ -4034,9 +4034,9 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
        
        // i'm not actually sure these are really used - normally we add a navGroup to a navbar
        
-       if (Roo.bootstrap.version == 4) {
-           return cfg;
-       }
+       //if (Roo.bootstrap.version == 4) {
+       //    return cfg;
+       //}
        
         cfg.cn = [
             {
@@ -4047,7 +4047,7 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
         
          
         this.type = this.type || 'nav';
-        if (['tabs','pills'].indexOf(this.type)!==-1) {
+        if (['tabs','pills'].indexOf(this.type) != -1) {
             cfg.cn[0].cls += ' nav-' + this.type
         
         
@@ -4061,7 +4061,7 @@ Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
         
         
         
-        if (['stacked','justified'].indexOf(this.arrangement)!==-1) {
+        if (['stacked','justified'].indexOf(this.arrangement) != -1) {
             cfg.cn[0].cls += ' nav-' + this.arrangement;
         }
         
@@ -4188,6 +4188,12 @@ Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
         
         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
         
+        if (['light','white'].indexOf(this.weight) > -1) {
+           cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
+       }
+       cfg.cls += ' bg-' + this.weight;
+        
+        
         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
             
@@ -4365,11 +4371,13 @@ Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
             cls: 'nav' 
         };
         if (Roo.bootstrap.version == 4) {
-           if (this.type == 'pills') {
-               cfg.cls = ' nav-pills';
+           if (['tabs','pills'].indexOf(this.type) != -1) {
+               cfg.cls += ' nav-' + this.type; 
+           } else {
+               cfg.cls += ' navbar-nav';
            }
        } else {
-           if (['tabs','pills'].indexOf(this.type)!==-1) {
+           if (['tabs','pills'].indexOf(this.type) != -1) {
                cfg.cls += ' nav-' + this.type
            } else {
                if (this.type !== 'nav') {
@@ -4607,6 +4615,8 @@ Roo.apply(Roo.bootstrap.NavGroup, {
  * @extends Roo.bootstrap.Component
  * Bootstrap Navbar.NavItem class
  * @cfg {String} href  link to
+ * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
+
  * @cfg {String} html content of button
  * @cfg {String} badge text inside badge
  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
@@ -4672,13 +4682,16 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
     disabled : false,
     animateRef : false,
     was_active : false,
+    button_weight : '',
+    button_outline : false,
+    
+    navLink: false,
     
     getAutoCreate : function(){
          
         var cfg = {
             tag: this.tag,
             cls: 'nav-item'
-            
         };
         
         if (this.active) {
@@ -4687,6 +4700,27 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
         if (this.disabled) {
             cfg.cls += ' disabled';
         }
+       
+       // BS4 only?
+       if (this.button_weight.length) {
+           cfg.tag = this.href ? 'a' : 'button';
+           cfg.html = this.html || '';
+           cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
+           if (this.href) {
+               cfg.href = this.href;
+           }
+           if (this.fa) {
+                cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
+            }
+           
+           // menu .. should add dropdown-menu class - so no need for carat..
+           
+           if (this.badge !== '') {
+                 
+                cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
+            }
+           return cfg;
+       }
         
         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
             cfg.cn = [
@@ -4700,10 +4734,10 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
                cfg.cn[0].cls = 'nav-link';
            }
             if (this.icon) {
-                cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>'
+                cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
             }
            if (this.fa) {
-                cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>'
+                cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
             }
             if(this.glyphicon) {
                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
@@ -4732,7 +4766,9 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
            this.tag = 'div';
        }
        
-        return Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
+        var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
+       this.navLink = this.el.select('.nav-link',true).first();
+       return ret;
     },
       
     
@@ -4837,8 +4873,14 @@ Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
         
         if (!state ) {
             this.el.removeClass('active');
+           this.navLink ? this.navLink.removeClass('active') : false;
         } else if (!this.el.hasClass('active')) {
+           
             this.el.addClass('active');
+           if (Roo.bootstrap.version == 4 && this.navLink ) {
+               this.navLink.addClass('active');
+           }
+           
         }
         if (fire) {
             this.fireEvent('changed', this, state);
@@ -18317,7 +18359,7 @@ Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
     {
         if(this.transition || typeof(pan) == 'undefined'){
             Roo.log("waiting for the transitionend");
-            return;
+            return false;
         }
         
         if (typeof(pan) == 'number') {
@@ -18349,22 +18391,28 @@ Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
         
         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
             
+            //class="carousel-item carousel-item-next carousel-item-left"
+            
             this.transition = true;
             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
             var lr = dir == 'next' ? 'left' : 'right';
             pan.el.addClass(dir); // or prev
+            pan.el.addClass('carousel-item-' + dir); // or prev
             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
             cur.el.addClass(lr); // or right
             pan.el.addClass(lr);
+            cur.el.addClass('carousel-item-' +lr); // or right
+            pan.el.addClass('carousel-item-' +lr);
+            
             
             var _this = this;
             cur.el.on('transitionend', function() {
                 Roo.log("trans end?");
                 
-                pan.el.removeClass([lr,dir]);
+                pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
                 pan.setActive(true);
                 
-                cur.el.removeClass([lr]);
+                cur.el.removeClass([lr, 'carousel-item-' + lr]);
                 cur.setActive(false);
                 
                 _this.transition = false;
@@ -18556,10 +18604,12 @@ Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
     href : '',
     
     getAutoCreate : function(){
-        var cfg = {
+        
+       
+       var cfg = {
             tag: 'div',
             // item is needed for carousel - not sure if it has any effect otherwise
-            cls: 'tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
+            cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
             html: this.html || ''
         };
         
@@ -18571,6 +18621,7 @@ Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
             cfg.tabId = this.tabId;
         }
         
+       
         
         return cfg;
     },
index 53bdfb9..f70eb59 100644 (file)
@@ -159,45 +159,48 @@ ce.addClass('show');var h=ce.getHeight();Roo.log(h);ce.removeClass('show');ce.ad
 }}},this);var A={tag:"div",cls:"x-dlg-mask"};this.maskEl=Roo.DomHelper.append(this.el,A,true);var B=this.el.getSize();this.maskEl.setSize(B.width,B.height);this.maskEl.enableDisplayMode("block");this.maskEl.hide();if(this.loadMask){this.maskEl.show();}},getChildContainer:function(){if(this.el.select('.collapse').getCount()){return this.el.select('.collapse',true).first();
 }return this.el;},mask:function(){this.maskEl.show();},unmask:function(){this.maskEl.hide();}});
 // Roo/bootstrap/NavSimplebar.js
-Roo.bootstrap.NavSimplebar=function(A){Roo.bootstrap.NavSimplebar.superclass.constructor.call(this,A);};Roo.extend(Roo.bootstrap.NavSimplebar,Roo.bootstrap.Navbar,{inverse:false,type:false,arrangement:'',align:false,weight:'light',main:false,tag:false,getAutoCreate:function(){var A={tag:this.tag||'div',cls:'navbar navbar-expand-lg'}
-;if(['light','white'].indexOf(this.weight)>-1){A.cls+=['light','white'].indexOf(this.weight)>-1?' navbar-light':' navbar-dark';}A.cls+=' bg-'+this.weight;if(this.inverse){A.cls+=' navbar-inverse';}if(Roo.bootstrap.version==4){return A;}A.cn=[{cls:'nav',tag:'ul'}
-];this.type=this.type||'nav';if(['tabs','pills'].indexOf(this.type)!==-1){A.cn[0].cls+=' nav-'+this.type}else{if(this.type!=='nav'){Roo.log('nav type must be nav/tabs/pills')}A.cn[0].cls+=' navbar-nav'}if(['stacked','justified'].indexOf(this.arrangement)!==-1){A.cn[0].cls+=' nav-'+this.arrangement;
-}if(this.align==='right'){A.cn[0].cls+=' navbar-right';}return A;}});
+Roo.bootstrap.NavSimplebar=function(A){Roo.bootstrap.NavSimplebar.superclass.constructor.call(this,A);};Roo.extend(Roo.bootstrap.NavSimplebar,Roo.bootstrap.Navbar,{inverse:false,type:false,arrangement:'',align:false,weight:'light',main:false,tag:false,getAutoCreate:function(){var A={tag:this.tag||'div',cls:'navbar navbar-expand-lg roo-navbar-simple'}
+;if(['light','white'].indexOf(this.weight)>-1){A.cls+=['light','white'].indexOf(this.weight)>-1?' navbar-light':' navbar-dark';}A.cls+=' bg-'+this.weight;if(this.inverse){A.cls+=' navbar-inverse';}A.cn=[{cls:'nav',tag:'ul'}];this.type=this.type||'nav';if(['tabs','pills'].indexOf(this.type)!=-1){A.cn[0].cls+=' nav-'+this.type}
+else{if(this.type!=='nav'){Roo.log('nav type must be nav/tabs/pills')}A.cn[0].cls+=' navbar-nav'}if(['stacked','justified'].indexOf(this.arrangement)!=-1){A.cn[0].cls+=' nav-'+this.arrangement;}if(this.align==='right'){A.cn[0].cls+=' navbar-right';}return A;
+}});
 // Roo/bootstrap/NavHeaderbar.js
 Roo.bootstrap.NavHeaderbar=function(A){Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this,A);};Roo.extend(Roo.bootstrap.NavHeaderbar,Roo.bootstrap.NavSimplebar,{position:'',brand:'',brand_href:false,srButton:true,autohide:false,desktopCenter:false,getAutoCreate:function(){var A={tag:this.nav||'nav',cls:'navbar navbar-expand-md',role:'navigation',cn:[]}
 ;var cn=A.cn;if(this.desktopCenter){cn.push({cls:'container',cn:[]});cn=cn[0].cn;}if(this.srButton){var B={tag:'button',type:'button',cls:'navbar-toggle navbar-toggler','data-toggle':'collapse',cn:[{tag:'span',cls:'sr-only',html:'Toggle navigation'},{tag:'span',cls:'icon-bar navbar-toggler-icon'}
 ,{tag:'span',cls:'icon-bar'},{tag:'span',cls:'icon-bar'}]};cn.push(Roo.bootstrap.version==4?B:{tag:'div',cls:'navbar-header',cn:[B]});}cn.push({tag:'div',cls:'collapse navbar-collapse',cn:[]});A.cls+=this.inverse?' navbar-inverse navbar-dark bg-dark':' navbar-default';
-if(['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1){A.cls+=' navbar-'+this.position+' '+this.position;A.tag=this.tag||(this.position=='fixed-bottom'?'footer':'header');}if(this.brand!==''){var cp=Roo.bootstrap.version==4?cn:cn[0].cn;cp.unshift({tag:'a',href:this.brand_href?this.brand_href:'#',cls:'navbar-brand',cn:[this.brand]}
-);}if(this.main){A.cls+=' main-nav';}return A;},getHeaderChildContainer:function(){if(this.srButton&&this.el.select('.navbar-header').getCount()){return this.el.select('.navbar-header',true).first();}return this.getChildContainer();},initEvents:function(){Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
+if(['light','white'].indexOf(this.weight)>-1){A.cls+=['light','white'].indexOf(this.weight)>-1?' navbar-light':' navbar-dark';}A.cls+=' bg-'+this.weight;if(['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1){A.cls+=' navbar-'+this.position+' '+this.position;
+A.tag=this.tag||(this.position=='fixed-bottom'?'footer':'header');}if(this.brand!==''){var cp=Roo.bootstrap.version==4?cn:cn[0].cn;cp.unshift({tag:'a',href:this.brand_href?this.brand_href:'#',cls:'navbar-brand',cn:[this.brand]});}if(this.main){A.cls+=' main-nav';
+}return A;},getHeaderChildContainer:function(){if(this.srButton&&this.el.select('.navbar-header').getCount()){return this.el.select('.navbar-header',true).first();}return this.getChildContainer();},initEvents:function(){Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
 if(this.autohide){var A=0;var ft=this.el;Roo.get(document).on('scroll',function(e){var ns=Roo.get(document).getScroll().top;var os=A;A=ns;if(ns>os){ft.removeClass('slideDown');ft.addClass('slideUp');return;}ft.removeClass('slideUp');ft.addClass('slideDown');
 },this);}}});
 // Roo/bootstrap/NavSidebar.js
 Roo.bootstrap.NavSidebar=function(A){Roo.bootstrap.NavSidebar.superclass.constructor.call(this,A);};Roo.extend(Roo.bootstrap.NavSidebar,Roo.bootstrap.Navbar,{sidebar:true,getAutoCreate:function(){return {tag:'div',cls:'sidebar sidebar-nav'};}});
 // Roo/bootstrap/NavGroup.js
 Roo.bootstrap.NavGroup=function(A){Roo.bootstrap.NavGroup.superclass.constructor.call(this,A);this.navItems=[];Roo.bootstrap.NavGroup.register(this);this.addEvents({'changed':true});};Roo.extend(Roo.bootstrap.NavGroup,Roo.bootstrap.Component,{align:'',inverse:false,form:false,type:'nav',navId:'',navItems:false,getAutoCreate:function(){var A=Roo.apply({}
-,Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));A={tag:'ul',cls:'nav'};if(Roo.bootstrap.version==4){if(this.type=='pills'){A.cls=' nav-pills';}}else{if(['tabs','pills'].indexOf(this.type)!==-1){A.cls+=' nav-'+this.type}else{if(this.type!=='nav'){Roo.log('nav type must be nav/tabs/pills')}
-A.cls+=' navbar-nav'}}if(this.parent()&&this.parent().sidebar){A={tag:'ul',cls:'dashboard-menu sidebar-menu'};return A;}if(this.form===true){A={tag:'form',cls:'navbar-form form-inline'};if(this.align==='right'){A.cls+=' navbar-right ml-md-auto';}else{A.cls+=' navbar-left';
-}}if(this.align==='right'){A.cls+=' navbar-right ml-md-auto';}else{A.cls+=' mr-auto';}if(this.inverse){A.cls+=' navbar-inverse';}return A;},setActiveItem:function(A){var B=false;Roo.each(this.navItems,function(v){if(v==A){return;}if(v.isActive()){v.setActive(false,true);
-B=v;}});A.setActive(true,true);this.fireEvent('changed',this,A,B);},getActive:function(){var A=false;Roo.each(this.navItems,function(v){if(v.isActive()){A=v;}});return A;},indexOfNav:function(){var A=false;Roo.each(this.navItems,function(v,i){if(v.isActive()){A=i;
-}});return A;},addItem:function(A){if(this.form&&Roo.bootstrap.version==4){A.tag='div';}var cn=new Roo.bootstrap.NavItem(A);this.register(cn);cn.parentId=this.id;cn.onRender(this.el,null);return cn;},register:function(A){this.navItems.push(A);A.navId=this.navId;
-},clearAll:function(){this.navItems=[];this.el.dom.innerHTML='';},getNavItem:function(A){var B=false;Roo.each(this.navItems,function(e){if(e.tabId==A){B=e;return false;}return true;});return B;},setActiveNext:function(){var i=this.indexOfNav(this.getActive());
-if(i>this.navItems.length){return;}this.setActiveItem(this.navItems[i+1]);},setActivePrev:function(){var i=this.indexOfNav(this.getActive());if(i<1){return;}this.setActiveItem(this.navItems[i-1]);},clearWasActive:function(A){Roo.each(this.navItems,function(e){if(e.tabId!=A.tabId&&e.was_active){e.was_active=false;
-return false;}return true;});},getWasActive:function(){var r=false;Roo.each(this.navItems,function(e){if(e.was_active){r=e;return false;}return true;});return r;}});Roo.apply(Roo.bootstrap.NavGroup,{groups:{},register:function(A){this.groups[A.navId]=A;},get:function(A){if(typeof(this.groups[A])=='undefined'){return false;
-}return this.groups[A];}});
+,Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));A={tag:'ul',cls:'nav'};if(Roo.bootstrap.version==4){if(['tabs','pills'].indexOf(this.type)!=-1){A.cls+=' nav-'+this.type;}else{A.cls+=' navbar-nav';}}else{if(['tabs','pills'].indexOf(this.type)!=-1){A.cls+=' nav-'+this.type}
+else{if(this.type!=='nav'){Roo.log('nav type must be nav/tabs/pills')}A.cls+=' navbar-nav'}}if(this.parent()&&this.parent().sidebar){A={tag:'ul',cls:'dashboard-menu sidebar-menu'};return A;}if(this.form===true){A={tag:'form',cls:'navbar-form form-inline'}
+;if(this.align==='right'){A.cls+=' navbar-right ml-md-auto';}else{A.cls+=' navbar-left';}}if(this.align==='right'){A.cls+=' navbar-right ml-md-auto';}else{A.cls+=' mr-auto';}if(this.inverse){A.cls+=' navbar-inverse';}return A;},setActiveItem:function(A){var B=false;
+Roo.each(this.navItems,function(v){if(v==A){return;}if(v.isActive()){v.setActive(false,true);B=v;}});A.setActive(true,true);this.fireEvent('changed',this,A,B);},getActive:function(){var A=false;Roo.each(this.navItems,function(v){if(v.isActive()){A=v;}});return A;
+},indexOfNav:function(){var A=false;Roo.each(this.navItems,function(v,i){if(v.isActive()){A=i;}});return A;},addItem:function(A){if(this.form&&Roo.bootstrap.version==4){A.tag='div';}var cn=new Roo.bootstrap.NavItem(A);this.register(cn);cn.parentId=this.id;
+cn.onRender(this.el,null);return cn;},register:function(A){this.navItems.push(A);A.navId=this.navId;},clearAll:function(){this.navItems=[];this.el.dom.innerHTML='';},getNavItem:function(A){var B=false;Roo.each(this.navItems,function(e){if(e.tabId==A){B=e;
+return false;}return true;});return B;},setActiveNext:function(){var i=this.indexOfNav(this.getActive());if(i>this.navItems.length){return;}this.setActiveItem(this.navItems[i+1]);},setActivePrev:function(){var i=this.indexOfNav(this.getActive());if(i<1){return;
+}this.setActiveItem(this.navItems[i-1]);},clearWasActive:function(A){Roo.each(this.navItems,function(e){if(e.tabId!=A.tabId&&e.was_active){e.was_active=false;return false;}return true;});},getWasActive:function(){var r=false;Roo.each(this.navItems,function(e){if(e.was_active){r=e;
+return false;}return true;});return r;}});Roo.apply(Roo.bootstrap.NavGroup,{groups:{},register:function(A){this.groups[A.navId]=A;},get:function(A){if(typeof(this.groups[A])=='undefined'){return false;}return this.groups[A];}});
 // Roo/bootstrap/NavItem.js
-Roo.bootstrap.NavItem=function(A){Roo.bootstrap.NavItem.superclass.constructor.call(this,A);this.addEvents({"click":true,'changed':true,'scrollto':true});};Roo.extend(Roo.bootstrap.NavItem,Roo.bootstrap.Component,{href:false,html:'',badge:'',icon:false,fa:false,glyphicon:false,active:false,preventDefault:false,tabId:false,tagtype:'a',tag:'li',disabled:false,animateRef:false,was_active:false,getAutoCreate:function(){var A={tag:this.tag,cls:'nav-item'}
-;if(this.active){A.cls=typeof(A.cls)=='undefined'?'active':A.cls+' active';}if(this.disabled){A.cls+=' disabled';}if(this.href||this.html||this.glyphicon||this.icon||this.fa){A.cn=[{tag:this.tagtype,href:this.href||"#",html:this.html||''}];if(this.tagtype=='a'){A.cn[0].cls='nav-link';
-}if(this.icon){A.cn[0].html='<i class="'+this.icon+'"></i> <span>'+A.cn[0].html+'</span>'}if(this.fa){A.cn[0].html='<i class="fa fas fa-'+this.fa+'"></i> <span>'+A.cn[0].html+'</span>'}if(this.glyphicon){A.cn[0].html='<span class="glyphicon glyphicon-'+this.glyphicon+'"></span> '+A.cn[0].html;
+Roo.bootstrap.NavItem=function(A){Roo.bootstrap.NavItem.superclass.constructor.call(this,A);this.addEvents({"click":true,'changed':true,'scrollto':true});};Roo.extend(Roo.bootstrap.NavItem,Roo.bootstrap.Component,{href:false,html:'',badge:'',icon:false,fa:false,glyphicon:false,active:false,preventDefault:false,tabId:false,tagtype:'a',tag:'li',disabled:false,animateRef:false,was_active:false,button_weight:'',button_outline:false,navLink:false,getAutoCreate:function(){var A={tag:this.tag,cls:'nav-item'}
+;if(this.active){A.cls=typeof(A.cls)=='undefined'?'active':A.cls+' active';}if(this.disabled){A.cls+=' disabled';}if(this.button_weight.length){A.tag=this.href?'a':'button';A.html=this.html||'';A.cls+=' btn btn'+(this.button_outline?'-outline':'')+'-'+this.button_weight;
+if(this.href){A.href=this.href;}if(this.fa){A.html='<i class="fa fas fa-'+this.fa+'"></i> <span>'+this.html+'</span>';}if(this.badge!==''){A.html+=' <span class="badge badge-secondary">'+this.badge+'</span>';}return A;}if(this.href||this.html||this.glyphicon||this.icon||this.fa){A.cn=[{tag:this.tagtype,href:this.href||"#",html:this.html||''}
+];if(this.tagtype=='a'){A.cn[0].cls='nav-link';}if(this.icon){A.cn[0].html='<i class="'+this.icon+'"></i> <span>'+A.cn[0].html+'</span>';}if(this.fa){A.cn[0].html='<i class="fa fas fa-'+this.fa+'"></i> <span>'+A.cn[0].html+'</span>';}if(this.glyphicon){A.cn[0].html='<span class="glyphicon glyphicon-'+this.glyphicon+'"></span> '+A.cn[0].html;
 }if(this.menu){A.cn[0].html+=" <span class='caret'></span>";}if(this.badge!==''){A.cn[0].html+=' <span class="badge badge-secondary">'+this.badge+'</span>';}}return A;},onRender:function(ct,A){if(Roo.bootstrap.version==4&&ct.dom.type!='ul'){this.tag='div';
-}return Roo.bootstrap.NavItem.superclass.onRender.call(this,ct,A);},initEvents:function(){if(typeof(this.menu)!='undefined'){this.menu.parentType=this.xtype;this.menu.triggerEl=this.el;this.menu=this.addxtype(Roo.apply({},this.menu));}this.el.select('a',true).on('click',this.onClick,this);
-if(this.tagtype=='span'){this.el.select('span',true).on('click',this.onClick,this);}this.parent().register(this);},onClick:function(e){if(e.getTarget('.dropdown-menu-item')){return;}if(this.preventDefault||this.href=='#'){Roo.log("NavItem - prevent Default?");
+}var B=Roo.bootstrap.NavItem.superclass.onRender.call(this,ct,A);this.navLink=this.el.select('.nav-link',true).first();return B;},initEvents:function(){if(typeof(this.menu)!='undefined'){this.menu.parentType=this.xtype;this.menu.triggerEl=this.el;this.menu=this.addxtype(Roo.apply({}
+,this.menu));}this.el.select('a',true).on('click',this.onClick,this);if(this.tagtype=='span'){this.el.select('span',true).on('click',this.onClick,this);}this.parent().register(this);},onClick:function(e){if(e.getTarget('.dropdown-menu-item')){return;}if(this.preventDefault||this.href=='#'){Roo.log("NavItem - prevent Default?");
 e.preventDefault();}if(this.disabled){return;}var tg=Roo.bootstrap.TabGroup.get(this.navId);if(tg&&tg.transition){Roo.log("waiting for the transitionend");return;}if(this.fireEvent('click',this,e)===false){return;};if(this.tagtype=='span'){return;}var A=this.el.select('a',true).first();
 if(A&&this.animateRef&&this.href.indexOf('#')>-1){if(A.dom.href.split("#")[0]!=document.location.toString().split("#")[0]){return;}Roo.log("NavItem - prevent Default?");e.preventDefault();this.scrollToElement(e);}var p=this.parent();if(['tabs','pills'].indexOf(p.type)!==-1){if(typeof(p.setActiveItem)!=='undefined'){p.setActiveItem(this);
 }}if(p.parentType=='NavHeaderbar'&&!this.menu){p.parent().el.select('.navbar-collapse',true).removeClass('in');}},isActive:function(){return this.active},setActive:function(A,B,C){if(this.active&&!A&&this.navId){this.was_active=true;var nv=Roo.bootstrap.NavGroup.get(this.navId);
-if(nv){nv.clearWasActive(this);}}this.active=A;if(!A){this.el.removeClass('active');}else if(!this.el.hasClass('active')){this.el.addClass('active');}if(B){this.fireEvent('changed',this,A);}if(!this.navId||!this.tabId||!A||C){return;}var tg=Roo.bootstrap.TabGroup.get(this.navId);
-if(!tg){return;}var D=tg.getPanelByName(this.tabId);if(!D){return;}if(false==tg.showPanel(D)){var nv=Roo.bootstrap.NavGroup.get(this.navId);if(nv){var E=nv.getWasActive();if(E){E.setActive(true,false,true);}}}},setDisabled:function(A){this.disabled=A;if(!A){this.el.removeClass('disabled');
-}else if(!this.el.hasClass('disabled')){this.el.addClass('disabled');}},tooltipEl:function(){return this.el.select(''+this.tagtype+'',true).first();},scrollToElement:function(e){var c=document.body;if(Roo.isFirefox||Roo.isIE||Roo.isIE11){c=document.documentElement;
-}var A=Roo.get(c).select('a[name='+this.href.split('#')[1]+']',true).first();if(!A){return;}var o=A.calcOffsetsTo(c);var B={target:A,value:o[1]};this.fireEvent('scrollto',this,B,e);Roo.get(c).scrollTo('top',B.value,true);return;}});
+if(nv){nv.clearWasActive(this);}}this.active=A;if(!A){this.el.removeClass('active');this.navLink?this.navLink.removeClass('active'):false;}else if(!this.el.hasClass('active')){this.el.addClass('active');if(Roo.bootstrap.version==4&&this.navLink){this.navLink.addClass('active');
+}}if(B){this.fireEvent('changed',this,A);}if(!this.navId||!this.tabId||!A||C){return;}var tg=Roo.bootstrap.TabGroup.get(this.navId);if(!tg){return;}var D=tg.getPanelByName(this.tabId);if(!D){return;}if(false==tg.showPanel(D)){var nv=Roo.bootstrap.NavGroup.get(this.navId);
+if(nv){var E=nv.getWasActive();if(E){E.setActive(true,false,true);}}}},setDisabled:function(A){this.disabled=A;if(!A){this.el.removeClass('disabled');}else if(!this.el.hasClass('disabled')){this.el.addClass('disabled');}},tooltipEl:function(){return this.el.select(''+this.tagtype+'',true).first();
+},scrollToElement:function(e){var c=document.body;if(Roo.isFirefox||Roo.isIE||Roo.isIE11){c=document.documentElement;}var A=Roo.get(c).select('a[name='+this.href.split('#')[1]+']',true).first();if(!A){return;}var o=A.calcOffsetsTo(c);var B={target:A,value:o[1]}
+;this.fireEvent('scrollto',this,B,e);Roo.get(c).scrollTo('top',B.value,true);return;}});
 // Roo/bootstrap/NavSidebarItem.js
 Roo.bootstrap.NavSidebarItem=function(A){Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this,A);this.addEvents({"click":true,'changed':true});};Roo.extend(Roo.bootstrap.NavSidebarItem,Roo.bootstrap.NavItem,{badgeWeight:'default',open:false,buttonView:false,buttonWeight:'default',buttonSize:'md',showArrow:true,getAutoCreate:function(){var a={tag:'a',href:this.href||'#',cls:'',html:'',cn:[]}
 ;if(this.buttonView){a={tag:'button',href:this.href||'#',cls:'btn btn-'+this.buttonWeight+' btn-'+this.buttonSize+'roo-button-dropdown-toggle',html:this.html,cn:[]};}var A={tag:'li',cls:'',cn:[a]};if(this.active){A.cls+=' active';}if(this.disabled){A.cls+=' disabled';
@@ -753,17 +756,18 @@ Roo.bootstrap.TabGroup=function(A){Roo.bootstrap.TabGroup.superclass.constructor
 ]}]});}}return A;},initEvents:function(){if(this.autoslide){var A=this;this.slideFn=window.setInterval(function(){A.showPanelNext();},this.timer);}if(this.showarrow){this.el.select('.carousel-prev',true).first().on('click',this.showPanelPrev,this);this.el.select('.carousel-next',true).first().on('click',this.showPanelNext,this);
 }},getChildContainer:function(){return this.carousel?this.el.select('.carousel-inner',true).first():this.el;},register:function(A){this.tabs.push(A);A.navId=this.navId;this.addBullet();},getActivePanel:function(){var r=false;Roo.each(this.tabs,function(t){if(t.active){r=t;
 return false;}return null;});return r;},getPanelByName:function(n){var r=false;Roo.each(this.tabs,function(t){if(t.tabId==n){r=t;return false;}return null;});return r;},indexOfPanel:function(p){var r=false;Roo.each(this.tabs,function(t,i){if(t.tabId==p.tabId){r=i;
-return false;}return null;});return r;},showPanel:function(A){if(this.transition||typeof(A)=='undefined'){Roo.log("waiting for the transitionend");return;}if(typeof(A)=='number'){A=this.tabs[A];}if(typeof(A)=='string'){A=this.getPanelByName(A);}var B=this.getActivePanel();
+return false;}return null;});return r;},showPanel:function(A){if(this.transition||typeof(A)=='undefined'){Roo.log("waiting for the transitionend");return false;}if(typeof(A)=='number'){A=this.tabs[A];}if(typeof(A)=='string'){A=this.getPanelByName(A);}var B=this.getActivePanel();
 if(!A||!B){Roo.log('pan or acitve pan is undefined');return false;}if(A.tabId==this.getActivePanel().tabId){return true;}if(false===B.fireEvent('beforedeactivate')){return false;}if(this.bullets>0&&!Roo.isTouch){this.setActiveBullet(this.indexOfPanel(A));
-}if(this.carousel&&typeof(Roo.get(document.body).dom.style.transition)!='undefined'){this.transition=true;var C=this.indexOfPanel(A)>this.indexOfPanel(B)?'next':'prev';var lr=C=='next'?'left':'right';A.el.addClass(C);A.el.dom.offsetWidth;B.el.addClass(lr);
-A.el.addClass(lr);var D=this;B.el.on('transitionend',function(){Roo.log("trans end?");A.el.removeClass([lr,C]);A.setActive(true);B.el.removeClass([lr]);B.setActive(false);D.transition=false;},this,{single:true});return true;}B.setActive(false);A.setActive(true);
-return true;},showPanelNext:function(){var i=this.indexOfPanel(this.getActivePanel());if(i>=this.tabs.length-1&&!this.autoslide){return;}if(i>=this.tabs.length-1&&this.autoslide){i=-1;}this.showPanel(this.tabs[i+1]);},showPanelPrev:function(){var i=this.indexOfPanel(this.getActivePanel());
-if(i<1&&!this.autoslide){return;}if(i<1&&this.autoslide){i=this.tabs.length;}this.showPanel(this.tabs[i-1]);},addBullet:function(){if(!this.bullets||Roo.isTouch){return;}var A=this.el.select('.carousel-bullets',true).first();var i=this.el.select('.carousel-bullets .bullet',true).getCount();
-var B=A.createChild({cls:'bullet bullet-'+i},A.dom.lastChild);var C=this;B.on('click',(function(e,el,o,ii,t){e.preventDefault();this.showPanel(ii);if(this.autoslide&&this.slideFn){clearInterval(this.slideFn);this.slideFn=window.setInterval(function(){C.showPanelNext();
-},this.timer);}}).createDelegate(this,[i,B],true));},setActiveBullet:function(i){if(Roo.isTouch){return;}Roo.each(this.el.select('.bullet',true).elements,function(el){el.removeClass('selected');});var A=this.el.select('.bullet-'+i,true).first();if(!A){return;
-}A.addClass('selected');}});Roo.apply(Roo.bootstrap.TabGroup,{groups:{},register:function(A){this.groups[A.navId]=A;},get:function(A){if(typeof(this.groups[A])=='undefined'){this.register(new Roo.bootstrap.TabGroup({navId:A}));}return this.groups[A];}});
+}if(this.carousel&&typeof(Roo.get(document.body).dom.style.transition)!='undefined'){this.transition=true;var C=this.indexOfPanel(A)>this.indexOfPanel(B)?'next':'prev';var lr=C=='next'?'left':'right';A.el.addClass(C);A.el.addClass('carousel-item-'+C);A.el.dom.offsetWidth;
+B.el.addClass(lr);A.el.addClass(lr);B.el.addClass('carousel-item-'+lr);A.el.addClass('carousel-item-'+lr);var D=this;B.el.on('transitionend',function(){Roo.log("trans end?");A.el.removeClass([lr,C,'carousel-item-'+lr,'carousel-item-'+C]);A.setActive(true);
+B.el.removeClass([lr,'carousel-item-'+lr]);B.setActive(false);D.transition=false;},this,{single:true});return true;}B.setActive(false);A.setActive(true);return true;},showPanelNext:function(){var i=this.indexOfPanel(this.getActivePanel());if(i>=this.tabs.length-1&&!this.autoslide){return;
+}if(i>=this.tabs.length-1&&this.autoslide){i=-1;}this.showPanel(this.tabs[i+1]);},showPanelPrev:function(){var i=this.indexOfPanel(this.getActivePanel());if(i<1&&!this.autoslide){return;}if(i<1&&this.autoslide){i=this.tabs.length;}this.showPanel(this.tabs[i-1]);
+},addBullet:function(){if(!this.bullets||Roo.isTouch){return;}var A=this.el.select('.carousel-bullets',true).first();var i=this.el.select('.carousel-bullets .bullet',true).getCount();var B=A.createChild({cls:'bullet bullet-'+i},A.dom.lastChild);var C=this;
+B.on('click',(function(e,el,o,ii,t){e.preventDefault();this.showPanel(ii);if(this.autoslide&&this.slideFn){clearInterval(this.slideFn);this.slideFn=window.setInterval(function(){C.showPanelNext();},this.timer);}}).createDelegate(this,[i,B],true));},setActiveBullet:function(i){if(Roo.isTouch){return;
+}Roo.each(this.el.select('.bullet',true).elements,function(el){el.removeClass('selected');});var A=this.el.select('.bullet-'+i,true).first();if(!A){return;}A.addClass('selected');}});Roo.apply(Roo.bootstrap.TabGroup,{groups:{},register:function(A){this.groups[A.navId]=A;
+},get:function(A){if(typeof(this.groups[A])=='undefined'){this.register(new Roo.bootstrap.TabGroup({navId:A}));}return this.groups[A];}});
 // Roo/bootstrap/TabPanel.js
-Roo.bootstrap.TabPanel=function(A){Roo.bootstrap.TabPanel.superclass.constructor.call(this,A);this.addEvents({'changed':true,'beforedeactivate':true});this.tabId=this.tabId||Roo.id();};Roo.extend(Roo.bootstrap.TabPanel,Roo.bootstrap.Component,{active:false,html:false,tabId:false,navId:false,href:'',getAutoCreate:function(){var A={tag:'div',cls:'tab-pane item'+((this.href.length)?' clickable ':''),html:this.html||''}
+Roo.bootstrap.TabPanel=function(A){Roo.bootstrap.TabPanel.superclass.constructor.call(this,A);this.addEvents({'changed':true,'beforedeactivate':true});this.tabId=this.tabId||Roo.id();};Roo.extend(Roo.bootstrap.TabPanel,Roo.bootstrap.Component,{active:false,html:false,tabId:false,navId:false,href:'',getAutoCreate:function(){var A={tag:'div',cls:'carousel-item tab-pane item'+((this.href.length)?' clickable ':''),html:this.html||''}
 ;if(this.active){A.cls+=' active';}if(this.tabId){A.tabId=this.tabId;}return A;},initEvents:function(){var p=this.parent();this.navId=this.navId||p.navId;if(typeof(this.navId)!='undefined'){var tg=Roo.bootstrap.TabGroup.get(this.navId);tg.register(this);var i=tg.tabs.length-1;
 if(this.active&&tg.bullets>0&&i<tg.bullets){tg.setActiveBullet(i);}}this.el.on('click',this.onClick,this);if(Roo.isTouch){this.el.on("touchstart",this.onTouchStart,this);this.el.on("touchmove",this.onTouchMove,this);this.el.on("touchend",this.onTouchEnd,this);
 }},onRender:function(ct,A){Roo.bootstrap.TabPanel.superclass.onRender.call(this,ct,A);},setActive:function(A){Roo.log("panel - set active "+this.tabId+"="+A);this.active=A;if(!A){this.el.removeClass('active');}else if(!this.el.hasClass('active')){this.el.addClass('active');
index d6d4c4a..75bdf9f 100644 (file)
@@ -62,7 +62,7 @@
     position: absolute;
     display: block;
     top: 50%;
-    color: $body-bg;
+    color: $dark;
     z-index: 100;
     cursor: pointer;
     padding: 10px;
@@ -74,7 +74,7 @@
     position: absolute;
     display: block;
     top: 50%;
-    color: $body-bg;
+    color: $dark;
     z-index: 100;
     cursor: pointer;
     padding: 10px;
 .carousel-inner .tab-pane.clickable {
     cursor: pointer;
 }
+
+
+.tab-content {
+    > .carousel-inner {
+                
+        padding: 16px 35px;
+        background: $light;
+        > .tab-pane {
+          display: none;
+        }
+        > .active {
+          display: block;
+        }
+    }
+}
+