pbw 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
 - data/MIT-LICENSE +1 -1
 - data/Rakefile +7 -0
 - data/app/controllers/pbw/application_controller.rb +9 -3
 - data/app/controllers/pbw/areas_controller.rb +7 -0
 - data/app/controllers/pbw/base_models_controller.rb +106 -0
 - data/app/controllers/pbw/capabilities_controller.rb +7 -0
 - data/app/controllers/pbw/constraints_controller.rb +7 -0
 - data/app/controllers/pbw/item_containers_controller.rb +7 -0
 - data/app/controllers/pbw/item_conversions_controller.rb +7 -0
 - data/app/controllers/pbw/item_transfers_controller.rb +7 -0
 - data/app/controllers/pbw/items_controller.rb +7 -0
 - data/app/controllers/pbw/processes_controller.rb +7 -0
 - data/app/controllers/pbw/roles_controller.rb +5 -2
 - data/app/controllers/pbw/tokens_controller.rb +7 -0
 - data/app/controllers/pbw/triggers_controller.rb +7 -0
 - data/app/controllers/pbw/user_tokens_controller.rb +7 -0
 - data/app/models/pbw/area.rb +17 -0
 - data/app/models/pbw/capability.rb +5 -0
 - data/app/models/pbw/constraint.rb +6 -0
 - data/app/models/pbw/item.rb +15 -0
 - data/app/models/pbw/item_container.rb +12 -0
 - data/app/models/pbw/item_conversion.rb +9 -0
 - data/app/models/pbw/item_transfer.rb +9 -0
 - data/app/models/pbw/permission.rb +1 -0
 - data/app/models/pbw/process.rb +10 -0
 - data/app/models/pbw/role.rb +1 -0
 - data/app/models/pbw/rule.rb +11 -0
 - data/app/models/pbw/token.rb +16 -0
 - data/app/models/pbw/trigger.rb +7 -0
 - data/app/models/pbw/user.rb +7 -5
 - data/app/models/pbw/user_token.rb +16 -0
 - data/app/views/layouts/pbw/application.html.erb +41 -8
 - data/config/initializers/devise.rb +80 -4
 - data/config/locales/devise.en.yml +59 -0
 - data/config/routes.rb +11 -0
 - data/lib/generators/pbw/install/install_generator.rb +9 -1
 - data/lib/generators/pbw/install/templates/application.html.erb +47 -0
 - data/lib/pbw/engine.rb +33 -13
 - data/lib/pbw/version.rb +1 -1
 - data/public/Foundation-MIT-LICENSE.txt +20 -0
 - data/public/config.rb +26 -0
 - data/public/humans.txt +8 -0
 - data/public/javascripts/foundation/foundation.alerts.js +52 -0
 - data/public/javascripts/foundation/foundation.clearing.js +516 -0
 - data/public/javascripts/foundation/foundation.cookie.js +74 -0
 - data/public/javascripts/foundation/foundation.dropdown.js +178 -0
 - data/public/javascripts/foundation/foundation.forms.js +525 -0
 - data/public/javascripts/foundation/foundation.interchange.js +271 -0
 - data/public/javascripts/foundation/foundation.joyride.js +844 -0
 - data/public/javascripts/foundation/foundation.js +447 -0
 - data/public/javascripts/foundation/foundation.magellan.js +134 -0
 - data/public/javascripts/foundation/foundation.orbit.js +390 -0
 - data/public/javascripts/foundation/foundation.placeholder.js +179 -0
 - data/public/javascripts/foundation/foundation.reveal.js +330 -0
 - data/public/javascripts/foundation/foundation.section.js +422 -0
 - data/public/javascripts/foundation/foundation.tooltips.js +208 -0
 - data/public/javascripts/foundation/foundation.topbar.js +303 -0
 - data/public/javascripts/vendor/custom.modernizr.js +4 -0
 - data/public/javascripts/vendor/jquery.js +9807 -0
 - data/public/javascripts/vendor/zepto.js +2000 -0
 - data/public/robots.txt +4 -0
 - data/public/sass/_normalize.scss +402 -0
 - data/public/sass/_settings.scss +1271 -0
 - data/public/sass/app.scss +48 -0
 - data/public/stylesheets/app.css +6686 -0
 - metadata +82 -4
 - data/app/assets/javascripts/pbw/application.js +0 -13
 - data/app/assets/stylesheets/pbw/application.css +0 -13
 
| 
         @@ -0,0 +1,1271 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            //
         
     | 
| 
      
 2 
     | 
    
         
            +
            // Foundation Variables
         
     | 
| 
      
 3 
     | 
    
         
            +
            //
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            // The default font-size is set to 100% of the browser style sheet (usually 16px)
         
     | 
| 
      
 6 
     | 
    
         
            +
            // for compatibility with browser-based text zoom or user-set defaults.
         
     | 
| 
      
 7 
     | 
    
         
            +
            $base-font-size: 100% !default;
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            // $base-line-height is 24px while $base-font-size is 16px
         
     | 
| 
      
 10 
     | 
    
         
            +
            // $base-line-height: 150%;
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            // This is the default html and body font-size for the base em value.
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
         
     | 
| 
      
 15 
     | 
    
         
            +
            // If you want your base font-size to be a different size and not have it effect grid size too,
         
     | 
| 
      
 16 
     | 
    
         
            +
            // set the value of $em-base to $base-font-size ($em-base: $base-font-size;)
         
     | 
| 
      
 17 
     | 
    
         
            +
            $em-base: 16px !default;
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            // Working in ems is annoying. Think in pixels by using this handy function, emCalc(#px)
         
     | 
| 
      
 20 
     | 
    
         
            +
            @function emCalc($pxWidth) {
         
     | 
| 
      
 21 
     | 
    
         
            +
              @return $pxWidth / $em-base * 1em;
         
     | 
| 
      
 22 
     | 
    
         
            +
            }
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            // Change whether or not you include browser prefixes
         
     | 
| 
      
 25 
     | 
    
         
            +
            // $experimental: true;
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            // Various global styles
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            $default-float: left;
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            // $body-bg: #fff;
         
     | 
| 
      
 32 
     | 
    
         
            +
            // $body-font-color: #222;
         
     | 
| 
      
 33 
     | 
    
         
            +
            // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
         
     | 
| 
      
 34 
     | 
    
         
            +
            // $body-font-weight: normal;
         
     | 
| 
      
 35 
     | 
    
         
            +
            // $body-font-style: normal;
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            // Font-smoothing
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            // $font-smoothing: antialiased;
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            // Text direction settings
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            // $text-direction: ltr;
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            // Colors
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            // $primary-color: #2ba6cb;
         
     | 
| 
      
 48 
     | 
    
         
            +
            // $secondary-color: #e9e9e9;
         
     | 
| 
      
 49 
     | 
    
         
            +
            // $alert-color: #c60f13;
         
     | 
| 
      
 50 
     | 
    
         
            +
            // $success-color: #5da423;
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
            // Make sure border radius matches unless we want it different.
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
            // $global-radius: 3px;
         
     | 
| 
      
 55 
     | 
    
         
            +
            // $global-rounded: 1000px;
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            // Inset shadow shiny edges and depressions.
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            // $shiny-edge-size: 0 1px 0;
         
     | 
| 
      
 60 
     | 
    
         
            +
            // $shiny-edge-color: rgba(#fff, .5);
         
     | 
| 
      
 61 
     | 
    
         
            +
            // $shiny-edge-active-color: rgba(#000, .2);
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            // Control whether or not CSS classes come through in the CSS files.
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
            // $include-html-classes: true;
         
     | 
| 
      
 66 
     | 
    
         
            +
            // $include-print-styles: true;
         
     | 
| 
      
 67 
     | 
    
         
            +
            // $include-html-global-classes: $include-html-classes;
         
     | 
| 
      
 68 
     | 
    
         
            +
            // $include-html-inline-list-classes: $include-html-classes;
         
     | 
| 
      
 69 
     | 
    
         
            +
            // $include-html-type-classes: $include-html-classes;
         
     | 
| 
      
 70 
     | 
    
         
            +
            // $include-html-grid-classes: $include-html-classes;
         
     | 
| 
      
 71 
     | 
    
         
            +
            // $include-html-visibility-classes: $include-html-classes;
         
     | 
| 
      
 72 
     | 
    
         
            +
            // $include-html-button-classes: $include-html-classes;
         
     | 
| 
      
 73 
     | 
    
         
            +
            // $include-html-form-classes: $include-html-classes;
         
     | 
| 
      
 74 
     | 
    
         
            +
            // $include-html-custom-form-classes: $include-html-classes;
         
     | 
| 
      
 75 
     | 
    
         
            +
            // $include-html-media-classes: $include-html-classes;
         
     | 
| 
      
 76 
     | 
    
         
            +
            // $include-html-section-classes: $include-html-classes;
         
     | 
| 
      
 77 
     | 
    
         
            +
            // $include-html-orbit-classes: $include-html-classes;
         
     | 
| 
      
 78 
     | 
    
         
            +
            // $include-html-reveal-classes: $include-html-classes;
         
     | 
| 
      
 79 
     | 
    
         
            +
            // $include-html-joyride-classes: $include-html-classes;
         
     | 
| 
      
 80 
     | 
    
         
            +
            // $include-html-clearing-classes: $include-html-classes;
         
     | 
| 
      
 81 
     | 
    
         
            +
            // $include-html-alert-classes: $include-html-classes;
         
     | 
| 
      
 82 
     | 
    
         
            +
            // $include-html-nav-classes: $include-html-classes;
         
     | 
| 
      
 83 
     | 
    
         
            +
            // $include-html-top-bar-classes: $include-html-classes;
         
     | 
| 
      
 84 
     | 
    
         
            +
            // $include-html-label-classes: $include-html-classes;
         
     | 
| 
      
 85 
     | 
    
         
            +
            // $include-html-panel-classes: $include-html-classes;
         
     | 
| 
      
 86 
     | 
    
         
            +
            // $include-html-pricing-classes: $include-html-classes;
         
     | 
| 
      
 87 
     | 
    
         
            +
            // $include-html-progress-classes: $include-html-classes;
         
     | 
| 
      
 88 
     | 
    
         
            +
            // $include-html-magellan-classes: $include-html-classes;
         
     | 
| 
      
 89 
     | 
    
         
            +
            // $include-html-tooltip-classes: $include-html-classes;
         
     | 
| 
      
 90 
     | 
    
         
            +
             
     | 
| 
      
 91 
     | 
    
         
            +
            // Media Queries
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
            // $small-screen: 768px;
         
     | 
| 
      
 94 
     | 
    
         
            +
            // $medium-screen: 1280px;
         
     | 
| 
      
 95 
     | 
    
         
            +
            // $large-screen: 1440px;
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
            // $screen: "only screen";
         
     | 
| 
      
 98 
     | 
    
         
            +
            // $small: "only screen and (min-width: #{$small-screen})";
         
     | 
| 
      
 99 
     | 
    
         
            +
            // $medium: "only screen and (min-width: #{$medium-screen})";
         
     | 
| 
      
 100 
     | 
    
         
            +
            // $large: "only screen and (min-width: #{$large-screen})";
         
     | 
| 
      
 101 
     | 
    
         
            +
            // $landscape: "only screen and (orientation: landscape)";
         
     | 
| 
      
 102 
     | 
    
         
            +
            // $portrait: "only screen and (orientation: portrait)";
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            //// Cursors
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
            //Custom use example -> $cursor-default-value: url(http://cursors-site.net/path/to/custom/cursor/default.cur),progress;
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
            // $cursor-crosshair-value: "crosshair";
         
     | 
| 
      
 109 
     | 
    
         
            +
            // $cursor-default-value: "default";
         
     | 
| 
      
 110 
     | 
    
         
            +
            // $cursor-pointer-value: "pointer";
         
     | 
| 
      
 111 
     | 
    
         
            +
            // $cursor-help-value: "help";
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
      
 113 
     | 
    
         
            +
            //
         
     | 
| 
      
 114 
     | 
    
         
            +
            // Grid Variables
         
     | 
| 
      
 115 
     | 
    
         
            +
            //
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            // $row-width: emCalc(1000px);
         
     | 
| 
      
 118 
     | 
    
         
            +
            // $column-gutter: emCalc(30px);
         
     | 
| 
      
 119 
     | 
    
         
            +
            // $total-columns: 12;
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            //
         
     | 
| 
      
 122 
     | 
    
         
            +
            // Block Grid Variables
         
     | 
| 
      
 123 
     | 
    
         
            +
            //
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
            // Maximum number of block grid elements per row
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
            // $block-grid-elements: 12;
         
     | 
| 
      
 128 
     | 
    
         
            +
            // $block-grid-default-spacing: emCalc(20px);
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
            // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
            // $block-grid-media-queries: true;
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
            //
         
     | 
| 
      
 135 
     | 
    
         
            +
            // Typography Variables
         
     | 
| 
      
 136 
     | 
    
         
            +
            //
         
     | 
| 
      
 137 
     | 
    
         
            +
             
     | 
| 
      
 138 
     | 
    
         
            +
            // Heading font styles
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
            // $header-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
         
     | 
| 
      
 141 
     | 
    
         
            +
            // $header-font-weight: bold;
         
     | 
| 
      
 142 
     | 
    
         
            +
            // $header-font-style: normal;
         
     | 
| 
      
 143 
     | 
    
         
            +
            // $header-font-color: #222;
         
     | 
| 
      
 144 
     | 
    
         
            +
            // $header-line-height: 1.4;
         
     | 
| 
      
 145 
     | 
    
         
            +
            // $header-top-margin: .2em;
         
     | 
| 
      
 146 
     | 
    
         
            +
            // $header-bottom-margin: .5em;
         
     | 
| 
      
 147 
     | 
    
         
            +
            // $header-text-rendering: optimizeLegibility;
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
            // Heading font sizes
         
     | 
| 
      
 150 
     | 
    
         
            +
             
     | 
| 
      
 151 
     | 
    
         
            +
            // $h1-font-size: emCalc(44px);
         
     | 
| 
      
 152 
     | 
    
         
            +
            // $h2-font-size: emCalc(37px);
         
     | 
| 
      
 153 
     | 
    
         
            +
            // $h3-font-size: emCalc(27px);
         
     | 
| 
      
 154 
     | 
    
         
            +
            // $h4-font-size: emCalc(23px);
         
     | 
| 
      
 155 
     | 
    
         
            +
            // $h5-font-size: emCalc(18px);
         
     | 
| 
      
 156 
     | 
    
         
            +
            // $h6-font-size: 1em;
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
            // Subheaders
         
     | 
| 
      
 159 
     | 
    
         
            +
             
     | 
| 
      
 160 
     | 
    
         
            +
            // $subheader-line-height: 1.4;
         
     | 
| 
      
 161 
     | 
    
         
            +
            // $subheader-font-color: lighten($header-font-color, 30%);
         
     | 
| 
      
 162 
     | 
    
         
            +
            // $subheader-font-weight: 300;
         
     | 
| 
      
 163 
     | 
    
         
            +
            // $subheader-top-margin: .2em;
         
     | 
| 
      
 164 
     | 
    
         
            +
            // $subheader-bottom-margin: .5em;
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
            // <small> styling
         
     | 
| 
      
 167 
     | 
    
         
            +
             
     | 
| 
      
 168 
     | 
    
         
            +
            // $small-font-size: 60%;
         
     | 
| 
      
 169 
     | 
    
         
            +
            // $small-font-color: lighten($header-font-color, 30%);
         
     | 
| 
      
 170 
     | 
    
         
            +
             
     | 
| 
      
 171 
     | 
    
         
            +
            // Paragraphs
         
     | 
| 
      
 172 
     | 
    
         
            +
             
     | 
| 
      
 173 
     | 
    
         
            +
            // $paragraph-font-family: inherit;
         
     | 
| 
      
 174 
     | 
    
         
            +
            // $paragraph-font-weight: normal;
         
     | 
| 
      
 175 
     | 
    
         
            +
            // $paragraph-font-size: 1em;
         
     | 
| 
      
 176 
     | 
    
         
            +
            // $paragraph-line-height: 1.6;
         
     | 
| 
      
 177 
     | 
    
         
            +
            // $paragraph-margin-bottom: emCalc(20px);
         
     | 
| 
      
 178 
     | 
    
         
            +
            // $paragraph-aside-font-size: emCalc(14px);
         
     | 
| 
      
 179 
     | 
    
         
            +
            // $paragraph-aside-line-height: 1.35;
         
     | 
| 
      
 180 
     | 
    
         
            +
            // $paragraph-aside-font-style: italic;
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
            // <code> tags
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
            // $code-color: darken($alert-color, 15%);
         
     | 
| 
      
 185 
     | 
    
         
            +
            // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
         
     | 
| 
      
 186 
     | 
    
         
            +
            // $code-font-weight: bold;
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
            // Anchors
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
      
 190 
     | 
    
         
            +
            // $anchor-text-decoration: none;
         
     | 
| 
      
 191 
     | 
    
         
            +
            // $anchor-font-color: $primary-color;
         
     | 
| 
      
 192 
     | 
    
         
            +
            // $anchor-font-color-hover: darken($primary-color, 5%);
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
            // <hr> element
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            // $hr-border-width: 1px;
         
     | 
| 
      
 197 
     | 
    
         
            +
            // $hr-border-style: solid;
         
     | 
| 
      
 198 
     | 
    
         
            +
            // $hr-border-color: #ddd;
         
     | 
| 
      
 199 
     | 
    
         
            +
            // $hr-margin: emCalc(20px);
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
            // Lists
         
     | 
| 
      
 202 
     | 
    
         
            +
             
     | 
| 
      
 203 
     | 
    
         
            +
            // $list-style-position: outside;
         
     | 
| 
      
 204 
     | 
    
         
            +
            // $list-side-margin: emCalc(20px);
         
     | 
| 
      
 205 
     | 
    
         
            +
            // $list-nested-margin: emCalc(20px);
         
     | 
| 
      
 206 
     | 
    
         
            +
            // $definition-list-header-weight: bold;
         
     | 
| 
      
 207 
     | 
    
         
            +
            // $definition-list-header-margin-bottom: .3em;
         
     | 
| 
      
 208 
     | 
    
         
            +
            // $definition-list-margin-bottom: emCalc(12px);
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
            // Blockquotes
         
     | 
| 
      
 211 
     | 
    
         
            +
             
     | 
| 
      
 212 
     | 
    
         
            +
            // $blockquote-font-color: lighten($header-font-color, 30%);
         
     | 
| 
      
 213 
     | 
    
         
            +
            // $blockquote-padding: emCalc(9px) emCalc(20px) 0 emCalc(19px);
         
     | 
| 
      
 214 
     | 
    
         
            +
            // $blockquote-border: 1px solid #ddd;
         
     | 
| 
      
 215 
     | 
    
         
            +
            // $blockquote-cite-font-size: emCalc(13px);
         
     | 
| 
      
 216 
     | 
    
         
            +
            // $blockquote-cite-font-color: lighten($header-font-color, 20%);
         
     | 
| 
      
 217 
     | 
    
         
            +
            // $blockquote-cite-link-color: $blockquote-cite-font-color;
         
     | 
| 
      
 218 
     | 
    
         
            +
             
     | 
| 
      
 219 
     | 
    
         
            +
            // Acronym
         
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
            // $acronym-underline: 1px dotted #ddd;
         
     | 
| 
      
 222 
     | 
    
         
            +
             
     | 
| 
      
 223 
     | 
    
         
            +
            // Padding and margin
         
     | 
| 
      
 224 
     | 
    
         
            +
             
     | 
| 
      
 225 
     | 
    
         
            +
            // $microformat-padding: emCalc(10px) emCalc(12px);
         
     | 
| 
      
 226 
     | 
    
         
            +
            // $microformat-margin: 0 0 emCalc(20px) 0;
         
     | 
| 
      
 227 
     | 
    
         
            +
             
     | 
| 
      
 228 
     | 
    
         
            +
            // Border styles
         
     | 
| 
      
 229 
     | 
    
         
            +
             
     | 
| 
      
 230 
     | 
    
         
            +
            // $microformat-border-width: 1px;
         
     | 
| 
      
 231 
     | 
    
         
            +
            // $microformat-border-style: solid;
         
     | 
| 
      
 232 
     | 
    
         
            +
            // $microformat-border-color: #ddd;
         
     | 
| 
      
 233 
     | 
    
         
            +
             
     | 
| 
      
 234 
     | 
    
         
            +
            // Full name font styles
         
     | 
| 
      
 235 
     | 
    
         
            +
             
     | 
| 
      
 236 
     | 
    
         
            +
            // $microformat-fullname-font-weight: bold;
         
     | 
| 
      
 237 
     | 
    
         
            +
            // $microformat-fullname-font-size: emCalc(15px);
         
     | 
| 
      
 238 
     | 
    
         
            +
             
     | 
| 
      
 239 
     | 
    
         
            +
            // Summary font styles
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
            // $microformat-summary-font-weight: bold;
         
     | 
| 
      
 242 
     | 
    
         
            +
             
     | 
| 
      
 243 
     | 
    
         
            +
            // <abbr> padding
         
     | 
| 
      
 244 
     | 
    
         
            +
             
     | 
| 
      
 245 
     | 
    
         
            +
            // $microformat-abbr-padding: 0 emCalc(1px);
         
     | 
| 
      
 246 
     | 
    
         
            +
             
     | 
| 
      
 247 
     | 
    
         
            +
            // <abbr> font styles
         
     | 
| 
      
 248 
     | 
    
         
            +
             
     | 
| 
      
 249 
     | 
    
         
            +
            // $microformat-abbr-font-weight: bold;
         
     | 
| 
      
 250 
     | 
    
         
            +
            // $microformat-abbr-font-decoration: none;
         
     | 
| 
      
 251 
     | 
    
         
            +
             
     | 
| 
      
 252 
     | 
    
         
            +
            //
         
     | 
| 
      
 253 
     | 
    
         
            +
            // Form Variables
         
     | 
| 
      
 254 
     | 
    
         
            +
            //
         
     | 
| 
      
 255 
     | 
    
         
            +
             
     | 
| 
      
 256 
     | 
    
         
            +
            // Base for lots of form spacing and positioning styles
         
     | 
| 
      
 257 
     | 
    
         
            +
             
     | 
| 
      
 258 
     | 
    
         
            +
            // $form-spacing: emCalc(16px);
         
     | 
| 
      
 259 
     | 
    
         
            +
             
     | 
| 
      
 260 
     | 
    
         
            +
            // Labels
         
     | 
| 
      
 261 
     | 
    
         
            +
             
     | 
| 
      
 262 
     | 
    
         
            +
            // $form-label-pointer: pointer;
         
     | 
| 
      
 263 
     | 
    
         
            +
            // $form-label-font-size: emCalc(14px);
         
     | 
| 
      
 264 
     | 
    
         
            +
            // $form-label-font-weight: 500;
         
     | 
| 
      
 265 
     | 
    
         
            +
            // $form-label-font-color: lighten(#000, 30%);
         
     | 
| 
      
 266 
     | 
    
         
            +
            // $form-label-bottom-margin: emCalc(3px);
         
     | 
| 
      
 267 
     | 
    
         
            +
            // $input-font-family: inherit;
         
     | 
| 
      
 268 
     | 
    
         
            +
            // $input-font-color: rgba(0,0,0,0.75);
         
     | 
| 
      
 269 
     | 
    
         
            +
            // $input-font-size: emCalc(14px);
         
     | 
| 
      
 270 
     | 
    
         
            +
            // $input-bg-color: #fff;
         
     | 
| 
      
 271 
     | 
    
         
            +
            // $input-focus-bg-color: darken(#fff, 2%);
         
     | 
| 
      
 272 
     | 
    
         
            +
            // $input-border-color: darken(#fff, 20%);
         
     | 
| 
      
 273 
     | 
    
         
            +
            // $input-focus-border-color: darken(#fff, 40%);
         
     | 
| 
      
 274 
     | 
    
         
            +
            // $input-border-style: solid;
         
     | 
| 
      
 275 
     | 
    
         
            +
            // $input-border-width: 1px;
         
     | 
| 
      
 276 
     | 
    
         
            +
            // $input-disabled-bg: #ddd;
         
     | 
| 
      
 277 
     | 
    
         
            +
            // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
         
     | 
| 
      
 278 
     | 
    
         
            +
            // $input-include-glowing-effect: true;
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
            // Fieldset border and spacing.
         
     | 
| 
      
 281 
     | 
    
         
            +
             
     | 
| 
      
 282 
     | 
    
         
            +
            // $fieldset-border-style: solid;
         
     | 
| 
      
 283 
     | 
    
         
            +
            // $fieldset-border-width: 1px;
         
     | 
| 
      
 284 
     | 
    
         
            +
            // $fieldset-border-color: #ddd;
         
     | 
| 
      
 285 
     | 
    
         
            +
            // $fieldset-padding: emCalc(20px);
         
     | 
| 
      
 286 
     | 
    
         
            +
            // $fieldset-margin: emCalc(18px) 0;
         
     | 
| 
      
 287 
     | 
    
         
            +
             
     | 
| 
      
 288 
     | 
    
         
            +
            // Legends
         
     | 
| 
      
 289 
     | 
    
         
            +
             
     | 
| 
      
 290 
     | 
    
         
            +
            // $legend-bg: #fff;
         
     | 
| 
      
 291 
     | 
    
         
            +
            // $legend-font-weight: bold;
         
     | 
| 
      
 292 
     | 
    
         
            +
            // $legend-padding: 0 emCalc(3px);
         
     | 
| 
      
 293 
     | 
    
         
            +
             
     | 
| 
      
 294 
     | 
    
         
            +
            // Prefix and postfix input elements
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
            // $input-prefix-bg: darken(#fff, 5%);
         
     | 
| 
      
 297 
     | 
    
         
            +
            // $input-prefix-border-color: darken(#fff, 20%);
         
     | 
| 
      
 298 
     | 
    
         
            +
            // $input-prefix-border-size: 1px;
         
     | 
| 
      
 299 
     | 
    
         
            +
            // $input-prefix-border-type: solid;
         
     | 
| 
      
 300 
     | 
    
         
            +
            // $input-prefix-overflow: hidden;
         
     | 
| 
      
 301 
     | 
    
         
            +
            // $input-prefix-font-color: #333;
         
     | 
| 
      
 302 
     | 
    
         
            +
            // $input-prefix-font-color-alt: #fff;
         
     | 
| 
      
 303 
     | 
    
         
            +
             
     | 
| 
      
 304 
     | 
    
         
            +
            // Error states for inputs and labels
         
     | 
| 
      
 305 
     | 
    
         
            +
             
     | 
| 
      
 306 
     | 
    
         
            +
            // $input-error-message-padding: emCalc(6px) emCalc(4px);
         
     | 
| 
      
 307 
     | 
    
         
            +
            // $input-error-message-top: -($form-spacing) - emCalc(5px);
         
     | 
| 
      
 308 
     | 
    
         
            +
            // $input-error-message-font-size: emCalc(12px);
         
     | 
| 
      
 309 
     | 
    
         
            +
            // $input-error-message-font-weight: bold;
         
     | 
| 
      
 310 
     | 
    
         
            +
            // $input-error-message-font-color: #fff;
         
     | 
| 
      
 311 
     | 
    
         
            +
            // $input-error-message-font-color-alt: #333;
         
     | 
| 
      
 312 
     | 
    
         
            +
             
     | 
| 
      
 313 
     | 
    
         
            +
            // Glowing effect of inputs when focused
         
     | 
| 
      
 314 
     | 
    
         
            +
             
     | 
| 
      
 315 
     | 
    
         
            +
            // $glowing-effect-fade-time: 0.45s;
         
     | 
| 
      
 316 
     | 
    
         
            +
            // $glowing-effect-color: $input-focus-border-color;
         
     | 
| 
      
 317 
     | 
    
         
            +
             
     | 
| 
      
 318 
     | 
    
         
            +
            //
         
     | 
| 
      
 319 
     | 
    
         
            +
            // Button Variables
         
     | 
| 
      
 320 
     | 
    
         
            +
            //
         
     | 
| 
      
 321 
     | 
    
         
            +
             
     | 
| 
      
 322 
     | 
    
         
            +
            // Padding for buttons.
         
     | 
| 
      
 323 
     | 
    
         
            +
             
     | 
| 
      
 324 
     | 
    
         
            +
            // $button-tny: emCalc(7px);
         
     | 
| 
      
 325 
     | 
    
         
            +
            // $button-sml: emCalc(9px);
         
     | 
| 
      
 326 
     | 
    
         
            +
            // $button-med: emCalc(12px);
         
     | 
| 
      
 327 
     | 
    
         
            +
            // $button-lrg: emCalc(16px);
         
     | 
| 
      
 328 
     | 
    
         
            +
             
     | 
| 
      
 329 
     | 
    
         
            +
            // Display property.
         
     | 
| 
      
 330 
     | 
    
         
            +
             
     | 
| 
      
 331 
     | 
    
         
            +
            // $button-display: inline-block;
         
     | 
| 
      
 332 
     | 
    
         
            +
            // $button-margin-bottom: emCalc(20px);
         
     | 
| 
      
 333 
     | 
    
         
            +
             
     | 
| 
      
 334 
     | 
    
         
            +
            // Button text styles.
         
     | 
| 
      
 335 
     | 
    
         
            +
             
     | 
| 
      
 336 
     | 
    
         
            +
            // $button-font-family: inherit;
         
     | 
| 
      
 337 
     | 
    
         
            +
            // $button-font-color: #fff;
         
     | 
| 
      
 338 
     | 
    
         
            +
            // $button-font-color-alt: #333;
         
     | 
| 
      
 339 
     | 
    
         
            +
            // $button-font-med: emCalc(16px);
         
     | 
| 
      
 340 
     | 
    
         
            +
            // $button-font-tny: emCalc(11px);
         
     | 
| 
      
 341 
     | 
    
         
            +
            // $button-font-sml: emCalc(13px);
         
     | 
| 
      
 342 
     | 
    
         
            +
            // $button-font-lrg: emCalc(20px);
         
     | 
| 
      
 343 
     | 
    
         
            +
            // $button-font-weight: bold;
         
     | 
| 
      
 344 
     | 
    
         
            +
            // $button-font-align: center;
         
     | 
| 
      
 345 
     | 
    
         
            +
             
     | 
| 
      
 346 
     | 
    
         
            +
            // Various hover effects.
         
     | 
| 
      
 347 
     | 
    
         
            +
             
     | 
| 
      
 348 
     | 
    
         
            +
            // $button-function-factor: 10%;
         
     | 
| 
      
 349 
     | 
    
         
            +
             
     | 
| 
      
 350 
     | 
    
         
            +
            // Button border styles.
         
     | 
| 
      
 351 
     | 
    
         
            +
             
     | 
| 
      
 352 
     | 
    
         
            +
            // $button-border-width: 1px;
         
     | 
| 
      
 353 
     | 
    
         
            +
            // $button-border-style: solid;
         
     | 
| 
      
 354 
     | 
    
         
            +
            // $button-border-color: darken($primary-color, $button-function-factor);
         
     | 
| 
      
 355 
     | 
    
         
            +
             
     | 
| 
      
 356 
     | 
    
         
            +
            // Radius used throughout the core.
         
     | 
| 
      
 357 
     | 
    
         
            +
             
     | 
| 
      
 358 
     | 
    
         
            +
            // $button-radius: $global-radius;
         
     | 
| 
      
 359 
     | 
    
         
            +
             
     | 
| 
      
 360 
     | 
    
         
            +
            // Opacity for disabled buttons.
         
     | 
| 
      
 361 
     | 
    
         
            +
             
     | 
| 
      
 362 
     | 
    
         
            +
            // $button-disabled-opacity: 0.6;
         
     | 
| 
      
 363 
     | 
    
         
            +
             
     | 
| 
      
 364 
     | 
    
         
            +
            //
         
     | 
| 
      
 365 
     | 
    
         
            +
            // Button Groups
         
     | 
| 
      
 366 
     | 
    
         
            +
            //
         
     | 
| 
      
 367 
     | 
    
         
            +
             
     | 
| 
      
 368 
     | 
    
         
            +
            // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
         
     | 
| 
      
 369 
     | 
    
         
            +
             
     | 
| 
      
 370 
     | 
    
         
            +
            // $button-bar-margin-opposite: emCalc(10px);
         
     | 
| 
      
 371 
     | 
    
         
            +
             
     | 
| 
      
 372 
     | 
    
         
            +
            //
         
     | 
| 
      
 373 
     | 
    
         
            +
            // Dropdown Button Variables
         
     | 
| 
      
 374 
     | 
    
         
            +
            //
         
     | 
| 
      
 375 
     | 
    
         
            +
             
     | 
| 
      
 376 
     | 
    
         
            +
            // Color of the pip in dropdown buttons
         
     | 
| 
      
 377 
     | 
    
         
            +
             
     | 
| 
      
 378 
     | 
    
         
            +
            // $dropdown-button-pip-color: #fff;
         
     | 
| 
      
 379 
     | 
    
         
            +
            // $dropdown-button-pip-color-alt: #333;
         
     | 
| 
      
 380 
     | 
    
         
            +
             
     | 
| 
      
 381 
     | 
    
         
            +
            // Tiny dropdown buttons
         
     | 
| 
      
 382 
     | 
    
         
            +
             
     | 
| 
      
 383 
     | 
    
         
            +
            // $dropdown-button-padding-tny: $button-tny * 5;
         
     | 
| 
      
 384 
     | 
    
         
            +
            // $dropdown-button-pip-size-tny: $button-tny;
         
     | 
| 
      
 385 
     | 
    
         
            +
            // $dropdown-button-pip-right-tny: $button-tny * 2;
         
     | 
| 
      
 386 
     | 
    
         
            +
            // $dropdown-button-pip-top-tny: -$button-tny / 2 + emCalc(1px);
         
     | 
| 
      
 387 
     | 
    
         
            +
             
     | 
| 
      
 388 
     | 
    
         
            +
            // Small dropdown buttons
         
     | 
| 
      
 389 
     | 
    
         
            +
             
     | 
| 
      
 390 
     | 
    
         
            +
            // $dropdown-button-padding-sml: $button-sml * 5;
         
     | 
| 
      
 391 
     | 
    
         
            +
            // $dropdown-button-pip-size-sml: $button-sml;
         
     | 
| 
      
 392 
     | 
    
         
            +
            // $dropdown-button-pip-right-sml: $button-sml * 2;
         
     | 
| 
      
 393 
     | 
    
         
            +
            // $dropdown-button-pip-top-sml: -$button-sml / 2 + emCalc(1px);
         
     | 
| 
      
 394 
     | 
    
         
            +
             
     | 
| 
      
 395 
     | 
    
         
            +
            // Medium dropdown buttons
         
     | 
| 
      
 396 
     | 
    
         
            +
             
     | 
| 
      
 397 
     | 
    
         
            +
            // $dropdown-button-padding-med: $button-med * 4 + emCalc(3px);
         
     | 
| 
      
 398 
     | 
    
         
            +
            // $dropdown-button-pip-size-med: $button-med - emCalc(3px);
         
     | 
| 
      
 399 
     | 
    
         
            +
            // $dropdown-button-pip-right-med: $button-med * 2;
         
     | 
| 
      
 400 
     | 
    
         
            +
            // $dropdown-button-pip-top-med: -$button-med / 2 + emCalc(2px);
         
     | 
| 
      
 401 
     | 
    
         
            +
             
     | 
| 
      
 402 
     | 
    
         
            +
            // Large dropdown buttons
         
     | 
| 
      
 403 
     | 
    
         
            +
             
     | 
| 
      
 404 
     | 
    
         
            +
            // $dropdown-button-padding-lrg: $button-lrg * 4;
         
     | 
| 
      
 405 
     | 
    
         
            +
            // $dropdown-button-pip-size-lrg: $button-lrg - emCalc(6px);
         
     | 
| 
      
 406 
     | 
    
         
            +
            // $dropdown-button-pip-right-lrg: $button-lrg + emCalc(12px);
         
     | 
| 
      
 407 
     | 
    
         
            +
            // $dropdown-button-pip-top-lrg: -$button-lrg / 2 + emCalc(3px);
         
     | 
| 
      
 408 
     | 
    
         
            +
             
     | 
| 
      
 409 
     | 
    
         
            +
            //
         
     | 
| 
      
 410 
     | 
    
         
            +
            // Split Button Variables
         
     | 
| 
      
 411 
     | 
    
         
            +
            //
         
     | 
| 
      
 412 
     | 
    
         
            +
             
     | 
| 
      
 413 
     | 
    
         
            +
            // Shared styles for Split Buttons
         
     | 
| 
      
 414 
     | 
    
         
            +
             
     | 
| 
      
 415 
     | 
    
         
            +
            // $split-button-function-factor: 15%;
         
     | 
| 
      
 416 
     | 
    
         
            +
            // $split-button-pip-color: #fff;
         
     | 
| 
      
 417 
     | 
    
         
            +
            // $split-button-pip-color-alt: #333;
         
     | 
| 
      
 418 
     | 
    
         
            +
            // $split-button-active-bg-tint: rgba(0,0,0,0.1);
         
     | 
| 
      
 419 
     | 
    
         
            +
             
     | 
| 
      
 420 
     | 
    
         
            +
            // Tiny split buttons
         
     | 
| 
      
 421 
     | 
    
         
            +
             
     | 
| 
      
 422 
     | 
    
         
            +
            // $split-button-padding-tny: $button-tny * 9;
         
     | 
| 
      
 423 
     | 
    
         
            +
            // $split-button-span-width-tny: $button-tny * 6.5;
         
     | 
| 
      
 424 
     | 
    
         
            +
            // $split-button-pip-size-tny: $button-tny;
         
     | 
| 
      
 425 
     | 
    
         
            +
            // $split-button-pip-top-tny: $button-tny * 2;
         
     | 
| 
      
 426 
     | 
    
         
            +
            // $split-button-pip-left-tny: emCalc(-5px);
         
     | 
| 
      
 427 
     | 
    
         
            +
             
     | 
| 
      
 428 
     | 
    
         
            +
            // Small split buttons
         
     | 
| 
      
 429 
     | 
    
         
            +
             
     | 
| 
      
 430 
     | 
    
         
            +
            // $split-button-padding-sml: $button-sml * 7;
         
     | 
| 
      
 431 
     | 
    
         
            +
            // $split-button-span-width-sml: $button-sml * 5;
         
     | 
| 
      
 432 
     | 
    
         
            +
            // $split-button-pip-size-sml: $button-sml;
         
     | 
| 
      
 433 
     | 
    
         
            +
            // $split-button-pip-top-sml: $button-sml * 1.5;
         
     | 
| 
      
 434 
     | 
    
         
            +
            // $split-button-pip-left-sml: emCalc(-9px);
         
     | 
| 
      
 435 
     | 
    
         
            +
             
     | 
| 
      
 436 
     | 
    
         
            +
            // Medium split buttons
         
     | 
| 
      
 437 
     | 
    
         
            +
             
     | 
| 
      
 438 
     | 
    
         
            +
            // $split-button-padding-med: $button-med * 6.4;
         
     | 
| 
      
 439 
     | 
    
         
            +
            // $split-button-span-width-med: $button-med * 4;
         
     | 
| 
      
 440 
     | 
    
         
            +
            // $split-button-pip-size-med: $button-med - emCalc(3px);
         
     | 
| 
      
 441 
     | 
    
         
            +
            // $split-button-pip-top-med: $button-med * 1.5;
         
     | 
| 
      
 442 
     | 
    
         
            +
            // $split-button-pip-left-med: emCalc(-9px);
         
     | 
| 
      
 443 
     | 
    
         
            +
             
     | 
| 
      
 444 
     | 
    
         
            +
            // Large split buttons
         
     | 
| 
      
 445 
     | 
    
         
            +
             
     | 
| 
      
 446 
     | 
    
         
            +
            // $split-button-padding-lrg: $button-lrg * 6;
         
     | 
| 
      
 447 
     | 
    
         
            +
            // $split-button-span-width-lrg: $button-lrg * 3.75;
         
     | 
| 
      
 448 
     | 
    
         
            +
            // $split-button-pip-size-lrg: $button-lrg - emCalc(6px);
         
     | 
| 
      
 449 
     | 
    
         
            +
            // $split-button-pip-top-lrg: $button-lrg + emCalc(5px);
         
     | 
| 
      
 450 
     | 
    
         
            +
            // $split-button-pip-left-lrg: emCalc(-9px);
         
     | 
| 
      
 451 
     | 
    
         
            +
             
     | 
| 
      
 452 
     | 
    
         
            +
            //
         
     | 
| 
      
 453 
     | 
    
         
            +
            // Alert Variables
         
     | 
| 
      
 454 
     | 
    
         
            +
            //
         
     | 
| 
      
 455 
     | 
    
         
            +
             
     | 
| 
      
 456 
     | 
    
         
            +
            // Alert padding
         
     | 
| 
      
 457 
     | 
    
         
            +
             
     | 
| 
      
 458 
     | 
    
         
            +
            // $alert-padding-top: emCalc(11px);
         
     | 
| 
      
 459 
     | 
    
         
            +
            // $alert-padding-default-float: $alert-padding-top;
         
     | 
| 
      
 460 
     | 
    
         
            +
            // $alert-padding-opposite-direction: $alert-padding-top + emCalc(10px);
         
     | 
| 
      
 461 
     | 
    
         
            +
            // $alert-padding-bottom: $alert-padding-top + emCalc(1px);
         
     | 
| 
      
 462 
     | 
    
         
            +
             
     | 
| 
      
 463 
     | 
    
         
            +
            // Text style
         
     | 
| 
      
 464 
     | 
    
         
            +
             
     | 
| 
      
 465 
     | 
    
         
            +
            // $alert-font-weight: bold;
         
     | 
| 
      
 466 
     | 
    
         
            +
            // $alert-font-size: emCalc(14px);
         
     | 
| 
      
 467 
     | 
    
         
            +
            // $alert-font-color: #fff;
         
     | 
| 
      
 468 
     | 
    
         
            +
            // $alert-font-color-alt: darken($secondary-color, 60%);
         
     | 
| 
      
 469 
     | 
    
         
            +
             
     | 
| 
      
 470 
     | 
    
         
            +
            // Hover effect
         
     | 
| 
      
 471 
     | 
    
         
            +
             
     | 
| 
      
 472 
     | 
    
         
            +
            // $alert-function-factor: 10%;
         
     | 
| 
      
 473 
     | 
    
         
            +
             
     | 
| 
      
 474 
     | 
    
         
            +
            // Border Styles
         
     | 
| 
      
 475 
     | 
    
         
            +
             
     | 
| 
      
 476 
     | 
    
         
            +
            // $alert-border-style: solid;
         
     | 
| 
      
 477 
     | 
    
         
            +
            // $alert-border-width: 1px;
         
     | 
| 
      
 478 
     | 
    
         
            +
            // $alert-border-color: darken($primary-color, $alert-function-factor);
         
     | 
| 
      
 479 
     | 
    
         
            +
            // $alert-bottom-margin: emCalc(20px);
         
     | 
| 
      
 480 
     | 
    
         
            +
             
     | 
| 
      
 481 
     | 
    
         
            +
            // Close Button style
         
     | 
| 
      
 482 
     | 
    
         
            +
             
     | 
| 
      
 483 
     | 
    
         
            +
            // $alert-close-color: #333;
         
     | 
| 
      
 484 
     | 
    
         
            +
            // $alert-close-position: emCalc(5px);
         
     | 
| 
      
 485 
     | 
    
         
            +
            // $alert-close-font-size: emCalc(22px);
         
     | 
| 
      
 486 
     | 
    
         
            +
            // $alert-close-opacity: 0.3;
         
     | 
| 
      
 487 
     | 
    
         
            +
            // $alert-close-opacity-hover: 0.5;
         
     | 
| 
      
 488 
     | 
    
         
            +
            // $alert-close-padding: 5px 4px 4px;
         
     | 
| 
      
 489 
     | 
    
         
            +
             
     | 
| 
      
 490 
     | 
    
         
            +
            // Border radius
         
     | 
| 
      
 491 
     | 
    
         
            +
             
     | 
| 
      
 492 
     | 
    
         
            +
            // $alert-radius: $global-radius;
         
     | 
| 
      
 493 
     | 
    
         
            +
             
     | 
| 
      
 494 
     | 
    
         
            +
             
     | 
| 
      
 495 
     | 
    
         
            +
            //
         
     | 
| 
      
 496 
     | 
    
         
            +
            // Breadcrumb Variables
         
     | 
| 
      
 497 
     | 
    
         
            +
            //
         
     | 
| 
      
 498 
     | 
    
         
            +
             
     | 
| 
      
 499 
     | 
    
         
            +
            // Background color for the breadcrumb container.
         
     | 
| 
      
 500 
     | 
    
         
            +
             
     | 
| 
      
 501 
     | 
    
         
            +
            // $crumb-bg: lighten($secondary-color, 5%);
         
     | 
| 
      
 502 
     | 
    
         
            +
             
     | 
| 
      
 503 
     | 
    
         
            +
            // Padding around the breadcrumbs.
         
     | 
| 
      
 504 
     | 
    
         
            +
             
     | 
| 
      
 505 
     | 
    
         
            +
            // $crumb-padding: emCalc(6px) emCalc(14px) emCalc(9px);
         
     | 
| 
      
 506 
     | 
    
         
            +
            // $crumb-side-padding: emCalc(12px);
         
     | 
| 
      
 507 
     | 
    
         
            +
             
     | 
| 
      
 508 
     | 
    
         
            +
            // Border styles.
         
     | 
| 
      
 509 
     | 
    
         
            +
             
     | 
| 
      
 510 
     | 
    
         
            +
            // $crumb-function-factor: 10%;
         
     | 
| 
      
 511 
     | 
    
         
            +
            // $crumb-border-size: 1px;
         
     | 
| 
      
 512 
     | 
    
         
            +
            // $crumb-border-style: solid;
         
     | 
| 
      
 513 
     | 
    
         
            +
            // $crumb-border-color: darken($crumb-bg, $crumb-function-factor);
         
     | 
| 
      
 514 
     | 
    
         
            +
            // $crumb-radius: $global-radius;
         
     | 
| 
      
 515 
     | 
    
         
            +
             
     | 
| 
      
 516 
     | 
    
         
            +
            // Various text styles for breadcrumbs.
         
     | 
| 
      
 517 
     | 
    
         
            +
             
     | 
| 
      
 518 
     | 
    
         
            +
            // $crumb-font-size: emCalc(11px);
         
     | 
| 
      
 519 
     | 
    
         
            +
            // $crumb-font-color: $primary-color;
         
     | 
| 
      
 520 
     | 
    
         
            +
            // $crumb-font-color-current: #333;
         
     | 
| 
      
 521 
     | 
    
         
            +
            // $crumb-font-color-unavailable: #999;
         
     | 
| 
      
 522 
     | 
    
         
            +
            // $crumb-font-transform: uppercase;
         
     | 
| 
      
 523 
     | 
    
         
            +
            // $crumb-link-decor: underline;
         
     | 
| 
      
 524 
     | 
    
         
            +
             
     | 
| 
      
 525 
     | 
    
         
            +
            // Slash between breadcrumbs
         
     | 
| 
      
 526 
     | 
    
         
            +
             
     | 
| 
      
 527 
     | 
    
         
            +
            // $crumb-slash-color: #aaa;
         
     | 
| 
      
 528 
     | 
    
         
            +
            // $crumb-slash: "/";
         
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
            //
         
     | 
| 
      
 531 
     | 
    
         
            +
            // Clearing Variables
         
     | 
| 
      
 532 
     | 
    
         
            +
            //
         
     | 
| 
      
 533 
     | 
    
         
            +
             
     | 
| 
      
 534 
     | 
    
         
            +
            // Background colors for parts of Clearing.
         
     | 
| 
      
 535 
     | 
    
         
            +
             
     | 
| 
      
 536 
     | 
    
         
            +
            // $clearing-bg: #111;
         
     | 
| 
      
 537 
     | 
    
         
            +
            // $clearing-caption-bg: $clearing-bg;
         
     | 
| 
      
 538 
     | 
    
         
            +
            // $clearing-carousel-bg: #111;
         
     | 
| 
      
 539 
     | 
    
         
            +
            // $clearing-img-bg: $clearing-bg;
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
            // Close button
         
     | 
| 
      
 542 
     | 
    
         
            +
             
     | 
| 
      
 543 
     | 
    
         
            +
            // $clearing-close-color: #fff;
         
     | 
| 
      
 544 
     | 
    
         
            +
            // $clearing-close-size: 40px;
         
     | 
| 
      
 545 
     | 
    
         
            +
             
     | 
| 
      
 546 
     | 
    
         
            +
            // Style the arrows
         
     | 
| 
      
 547 
     | 
    
         
            +
             
     | 
| 
      
 548 
     | 
    
         
            +
            // $clearing-arrow-size: 16px;
         
     | 
| 
      
 549 
     | 
    
         
            +
            // $clearing-arrow-color: $clearing-close-color;
         
     | 
| 
      
 550 
     | 
    
         
            +
             
     | 
| 
      
 551 
     | 
    
         
            +
            // Style captions
         
     | 
| 
      
 552 
     | 
    
         
            +
             
     | 
| 
      
 553 
     | 
    
         
            +
            // $clearing-caption-font-color: #fff;
         
     | 
| 
      
 554 
     | 
    
         
            +
            // $clearing-caption-padding: 10px 30px;
         
     | 
| 
      
 555 
     | 
    
         
            +
             
     | 
| 
      
 556 
     | 
    
         
            +
            // Make the image and carousel height and style
         
     | 
| 
      
 557 
     | 
    
         
            +
             
     | 
| 
      
 558 
     | 
    
         
            +
            // $clearing-active-img-height: 75%;
         
     | 
| 
      
 559 
     | 
    
         
            +
            // $clearing-carousel-height: 150px;
         
     | 
| 
      
 560 
     | 
    
         
            +
            // $clearing-carousel-thumb-width: 175px;
         
     | 
| 
      
 561 
     | 
    
         
            +
            // $clearing-carousel-thumb-active-border: 4px solid rgb(255,255,255);
         
     | 
| 
      
 562 
     | 
    
         
            +
             
     | 
| 
      
 563 
     | 
    
         
            +
            //
         
     | 
| 
      
 564 
     | 
    
         
            +
            // Custom Form Variables
         
     | 
| 
      
 565 
     | 
    
         
            +
            //
         
     | 
| 
      
 566 
     | 
    
         
            +
             
     | 
| 
      
 567 
     | 
    
         
            +
            // Basic form styles input styles
         
     | 
| 
      
 568 
     | 
    
         
            +
             
     | 
| 
      
 569 
     | 
    
         
            +
            // $custom-form-border-color: #ccc;
         
     | 
| 
      
 570 
     | 
    
         
            +
            // $custom-form-border-size: 1px;
         
     | 
| 
      
 571 
     | 
    
         
            +
            // $custom-form-bg: #fff;
         
     | 
| 
      
 572 
     | 
    
         
            +
            // $custom-form-bg-disabled: #ddd;
         
     | 
| 
      
 573 
     | 
    
         
            +
            // $custom-form-input-size: 16px;
         
     | 
| 
      
 574 
     | 
    
         
            +
            // $custom-form-check-color: #222;
         
     | 
| 
      
 575 
     | 
    
         
            +
            // $custom-form-check-size: 14px;
         
     | 
| 
      
 576 
     | 
    
         
            +
            // $custom-form-radio-size: 8px;
         
     | 
| 
      
 577 
     | 
    
         
            +
            // $custom-form-checkbox-radius: 0px;
         
     | 
| 
      
 578 
     | 
    
         
            +
             
     | 
| 
      
 579 
     | 
    
         
            +
            // Custom select form element.
         
     | 
| 
      
 580 
     | 
    
         
            +
             
     | 
| 
      
 581 
     | 
    
         
            +
            // $custom-select-bg: #fff;
         
     | 
| 
      
 582 
     | 
    
         
            +
            // $custom-select-fade-to-color: #f3f3f3;
         
     | 
| 
      
 583 
     | 
    
         
            +
            // $custom-select-border-color: #ddd;
         
     | 
| 
      
 584 
     | 
    
         
            +
            // $custom-select-triangle-color: #aaa;
         
     | 
| 
      
 585 
     | 
    
         
            +
            // $custom-select-triangle-color-open: #222;
         
     | 
| 
      
 586 
     | 
    
         
            +
            // $custom-select-height: emCalc(13px) + ($form-spacing * 1.5);
         
     | 
| 
      
 587 
     | 
    
         
            +
            // $custom-select-margin-bottom: emCalc(20px);
         
     | 
| 
      
 588 
     | 
    
         
            +
            // $custom-select-font-color-selected: #141414;
         
     | 
| 
      
 589 
     | 
    
         
            +
            // $custom-select-disabled-color: #888;
         
     | 
| 
      
 590 
     | 
    
         
            +
             
     | 
| 
      
 591 
     | 
    
         
            +
            // Custom select dropdown element.
         
     | 
| 
      
 592 
     | 
    
         
            +
             
     | 
| 
      
 593 
     | 
    
         
            +
            // $custom-dropdown-height: 200px;
         
     | 
| 
      
 594 
     | 
    
         
            +
            // $custom-dropdown-bg: #fff;
         
     | 
| 
      
 595 
     | 
    
         
            +
            // $custom-dropdown-border-color: darken(#fff, 20%);
         
     | 
| 
      
 596 
     | 
    
         
            +
            // $custom-dropdown-border-width: 1px;
         
     | 
| 
      
 597 
     | 
    
         
            +
            // $custom-dropdown-border-style: solid;
         
     | 
| 
      
 598 
     | 
    
         
            +
            // $custom-dropdown-font-color: #555;
         
     | 
| 
      
 599 
     | 
    
         
            +
            // $custom-dropdown-font-size: emCalc(14px);
         
     | 
| 
      
 600 
     | 
    
         
            +
            // $custom-dropdown-color-selected: #eeeeee;
         
     | 
| 
      
 601 
     | 
    
         
            +
            // $custom-dropdown-font-color-selected: #000;
         
     | 
| 
      
 602 
     | 
    
         
            +
            // $custom-dropdown-shadow: 0 2px 2px 0px rgba(0,0,0,0.1);
         
     | 
| 
      
 603 
     | 
    
         
            +
            // $custom-dropdown-offset-top: none;
         
     | 
| 
      
 604 
     | 
    
         
            +
            // $custom-dropdown-list-padding: emCalc(4px);
         
     | 
| 
      
 605 
     | 
    
         
            +
            // $custom-dropdown-left-padding: emCalc(6px);
         
     | 
| 
      
 606 
     | 
    
         
            +
            // $custom-dropdown-right-padding: emCalc(38px);
         
     | 
| 
      
 607 
     | 
    
         
            +
            // $custom-dropdown-list-item-min-height: emCalc(24px);
         
     | 
| 
      
 608 
     | 
    
         
            +
             
     | 
| 
      
 609 
     | 
    
         
            +
            //
         
     | 
| 
      
 610 
     | 
    
         
            +
            // Dropdown Variables
         
     | 
| 
      
 611 
     | 
    
         
            +
            //
         
     | 
| 
      
 612 
     | 
    
         
            +
             
     | 
| 
      
 613 
     | 
    
         
            +
            // Height and width styles.
         
     | 
| 
      
 614 
     | 
    
         
            +
             
     | 
| 
      
 615 
     | 
    
         
            +
            // $f-dropdown-max-width: 200px;
         
     | 
| 
      
 616 
     | 
    
         
            +
            // $f-dropdown-height: auto;
         
     | 
| 
      
 617 
     | 
    
         
            +
            // $f-dropdown-max-height: none;
         
     | 
| 
      
 618 
     | 
    
         
            +
            // $f-dropdown-margin-top: 2px;
         
     | 
| 
      
 619 
     | 
    
         
            +
             
     | 
| 
      
 620 
     | 
    
         
            +
            // Background color
         
     | 
| 
      
 621 
     | 
    
         
            +
             
     | 
| 
      
 622 
     | 
    
         
            +
            // $f-dropdown-bg: #fff;
         
     | 
| 
      
 623 
     | 
    
         
            +
             
     | 
| 
      
 624 
     | 
    
         
            +
            // Border styles for dropdowns.
         
     | 
| 
      
 625 
     | 
    
         
            +
             
     | 
| 
      
 626 
     | 
    
         
            +
            // $f-dropdown-border-style: solid;
         
     | 
| 
      
 627 
     | 
    
         
            +
            // $f-dropdown-border-width: 1px;
         
     | 
| 
      
 628 
     | 
    
         
            +
            // $f-dropdown-border-color: darken(#fff, 20%);
         
     | 
| 
      
 629 
     | 
    
         
            +
             
     | 
| 
      
 630 
     | 
    
         
            +
            // Triangle pip.
         
     | 
| 
      
 631 
     | 
    
         
            +
             
     | 
| 
      
 632 
     | 
    
         
            +
            // $f-dropdown-triangle-size: 6px;
         
     | 
| 
      
 633 
     | 
    
         
            +
            // $f-dropdown-triangle-color: #fff;
         
     | 
| 
      
 634 
     | 
    
         
            +
            // $f-dropdown-triangle-side-offset: 10px;
         
     | 
| 
      
 635 
     | 
    
         
            +
             
     | 
| 
      
 636 
     | 
    
         
            +
            // List elements.
         
     | 
| 
      
 637 
     | 
    
         
            +
             
     | 
| 
      
 638 
     | 
    
         
            +
            // $f-dropdown-list-style: none;
         
     | 
| 
      
 639 
     | 
    
         
            +
            // $f-dropdown-font-color: #555;
         
     | 
| 
      
 640 
     | 
    
         
            +
            // $f-dropdown-font-size: emCalc(14px);
         
     | 
| 
      
 641 
     | 
    
         
            +
            // $f-dropdown-list-padding: emCalc(5px) emCalc(10px);
         
     | 
| 
      
 642 
     | 
    
         
            +
            // $f-dropdown-line-height: emCalc(18px);
         
     | 
| 
      
 643 
     | 
    
         
            +
            // $f-dropdown-list-hover-bg: #eeeeee;
         
     | 
| 
      
 644 
     | 
    
         
            +
            // $dropdown-mobile-left: 0;
         
     | 
| 
      
 645 
     | 
    
         
            +
             
     | 
| 
      
 646 
     | 
    
         
            +
            // When the dropdown has custom content.
         
     | 
| 
      
 647 
     | 
    
         
            +
             
     | 
| 
      
 648 
     | 
    
         
            +
            // $f-dropdown-content-padding: emCalc(20px);
         
     | 
| 
      
 649 
     | 
    
         
            +
             
     | 
| 
      
 650 
     | 
    
         
            +
            //
         
     | 
| 
      
 651 
     | 
    
         
            +
            // Flex Video Variables
         
     | 
| 
      
 652 
     | 
    
         
            +
            //
         
     | 
| 
      
 653 
     | 
    
         
            +
             
     | 
| 
      
 654 
     | 
    
         
            +
            // Video container padding and margins
         
     | 
| 
      
 655 
     | 
    
         
            +
             
     | 
| 
      
 656 
     | 
    
         
            +
            // $flex-video-padding-top: emCalc(25px);
         
     | 
| 
      
 657 
     | 
    
         
            +
            // $flex-video-padding-bottom: 67.5%;
         
     | 
| 
      
 658 
     | 
    
         
            +
            // $flex-video-margin-bottom: emCalc(16px);
         
     | 
| 
      
 659 
     | 
    
         
            +
             
     | 
| 
      
 660 
     | 
    
         
            +
            // Widescreen bottom padding
         
     | 
| 
      
 661 
     | 
    
         
            +
             
     | 
| 
      
 662 
     | 
    
         
            +
            // $flex-video-widescreen-padding-bottom: 57.25%;
         
     | 
| 
      
 663 
     | 
    
         
            +
             
     | 
| 
      
 664 
     | 
    
         
            +
            //
         
     | 
| 
      
 665 
     | 
    
         
            +
            // Inline List Variables
         
     | 
| 
      
 666 
     | 
    
         
            +
            //
         
     | 
| 
      
 667 
     | 
    
         
            +
             
     | 
| 
      
 668 
     | 
    
         
            +
            // Margins and padding of the inline list.
         
     | 
| 
      
 669 
     | 
    
         
            +
             
     | 
| 
      
 670 
     | 
    
         
            +
            // $inline-list-margin-bottom: emCalc(17px) emCalc(-22px );
         
     | 
| 
      
 671 
     | 
    
         
            +
            // $inline-list-margin: 0 0;
         
     | 
| 
      
 672 
     | 
    
         
            +
            // $inline-list-padding: 0;
         
     | 
| 
      
 673 
     | 
    
         
            +
             
     | 
| 
      
 674 
     | 
    
         
            +
            // Overflow of the inline list.
         
     | 
| 
      
 675 
     | 
    
         
            +
             
     | 
| 
      
 676 
     | 
    
         
            +
            // $inline-list-overflow: hidden;
         
     | 
| 
      
 677 
     | 
    
         
            +
             
     | 
| 
      
 678 
     | 
    
         
            +
            // List items
         
     | 
| 
      
 679 
     | 
    
         
            +
             
     | 
| 
      
 680 
     | 
    
         
            +
            // $inline-list-display: block;
         
     | 
| 
      
 681 
     | 
    
         
            +
             
     | 
| 
      
 682 
     | 
    
         
            +
            // Elments within list items
         
     | 
| 
      
 683 
     | 
    
         
            +
             
     | 
| 
      
 684 
     | 
    
         
            +
            // $inline-list-children-display: block;
         
     | 
| 
      
 685 
     | 
    
         
            +
             
     | 
| 
      
 686 
     | 
    
         
            +
            //
         
     | 
| 
      
 687 
     | 
    
         
            +
            // Joyride Variables
         
     | 
| 
      
 688 
     | 
    
         
            +
            //
         
     | 
| 
      
 689 
     | 
    
         
            +
             
     | 
| 
      
 690 
     | 
    
         
            +
            // Joyride styles
         
     | 
| 
      
 691 
     | 
    
         
            +
             
     | 
| 
      
 692 
     | 
    
         
            +
            // $joyride-tip-bg: rgb(0,0,0);
         
     | 
| 
      
 693 
     | 
    
         
            +
            // $joyride-tip-default-width: 300px;
         
     | 
| 
      
 694 
     | 
    
         
            +
            // $joyride-tip-padding: emCalc(18px) emCalc(20px) emCalc(24px);
         
     | 
| 
      
 695 
     | 
    
         
            +
            // $joyride-tip-border: solid 1px #555;
         
     | 
| 
      
 696 
     | 
    
         
            +
            // $joyride-tip-radius: 4px;
         
     | 
| 
      
 697 
     | 
    
         
            +
            // $joyride-tip-position-offset: 22px;
         
     | 
| 
      
 698 
     | 
    
         
            +
             
     | 
| 
      
 699 
     | 
    
         
            +
            // Tip font styles
         
     | 
| 
      
 700 
     | 
    
         
            +
             
     | 
| 
      
 701 
     | 
    
         
            +
            // $joyride-tip-font-color: #fff;
         
     | 
| 
      
 702 
     | 
    
         
            +
            // $joyride-tip-font-size: emCalc(14px);
         
     | 
| 
      
 703 
     | 
    
         
            +
            // $joyride-tip-header-weight: bold;
         
     | 
| 
      
 704 
     | 
    
         
            +
             
     | 
| 
      
 705 
     | 
    
         
            +
            // Changes the nub size
         
     | 
| 
      
 706 
     | 
    
         
            +
             
     | 
| 
      
 707 
     | 
    
         
            +
            // $joyride-tip-nub-size: 14px;
         
     | 
| 
      
 708 
     | 
    
         
            +
             
     | 
| 
      
 709 
     | 
    
         
            +
            // Adjusts the styles for the timer when its enabled
         
     | 
| 
      
 710 
     | 
    
         
            +
             
     | 
| 
      
 711 
     | 
    
         
            +
            // $joyride-tip-timer-width: 50px;
         
     | 
| 
      
 712 
     | 
    
         
            +
            // $joyride-tip-timer-height: 3px;
         
     | 
| 
      
 713 
     | 
    
         
            +
            // $joyride-tip-timer-color: #666;
         
     | 
| 
      
 714 
     | 
    
         
            +
             
     | 
| 
      
 715 
     | 
    
         
            +
            // Changes up the styles for the close button
         
     | 
| 
      
 716 
     | 
    
         
            +
             
     | 
| 
      
 717 
     | 
    
         
            +
            // $joyride-tip-close-color: #777;
         
     | 
| 
      
 718 
     | 
    
         
            +
            // $joyride-tip-close-size: 30px;
         
     | 
| 
      
 719 
     | 
    
         
            +
            // $joyride-tip-close-weight: normal;
         
     | 
| 
      
 720 
     | 
    
         
            +
             
     | 
| 
      
 721 
     | 
    
         
            +
            // When Joyride is filling the screen, style for the bg
         
     | 
| 
      
 722 
     | 
    
         
            +
             
     | 
| 
      
 723 
     | 
    
         
            +
            // $joyride-screenfill: rgba(0,0,0,0.5);
         
     | 
| 
      
 724 
     | 
    
         
            +
             
     | 
| 
      
 725 
     | 
    
         
            +
            //
         
     | 
| 
      
 726 
     | 
    
         
            +
            // Keystroke Variables
         
     | 
| 
      
 727 
     | 
    
         
            +
            //
         
     | 
| 
      
 728 
     | 
    
         
            +
             
     | 
| 
      
 729 
     | 
    
         
            +
            // Text styles.
         
     | 
| 
      
 730 
     | 
    
         
            +
             
     | 
| 
      
 731 
     | 
    
         
            +
            // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
         
     | 
| 
      
 732 
     | 
    
         
            +
            // $keystroke-font-size: emCalc(15px);
         
     | 
| 
      
 733 
     | 
    
         
            +
            // $keystroke-font-color: #222;
         
     | 
| 
      
 734 
     | 
    
         
            +
            // $keystroke-font-color-alt: #fff;
         
     | 
| 
      
 735 
     | 
    
         
            +
            // $keystroke-function-factor: 7%;
         
     | 
| 
      
 736 
     | 
    
         
            +
             
     | 
| 
      
 737 
     | 
    
         
            +
            // Keystroke padding.
         
     | 
| 
      
 738 
     | 
    
         
            +
             
     | 
| 
      
 739 
     | 
    
         
            +
            // $keystroke-padding: emCalc(2px) emCalc(4px) emCalc(0px);
         
     | 
| 
      
 740 
     | 
    
         
            +
             
     | 
| 
      
 741 
     | 
    
         
            +
            // Background and border styles.
         
     | 
| 
      
 742 
     | 
    
         
            +
             
     | 
| 
      
 743 
     | 
    
         
            +
            // $keystroke-bg: darken(#fff, $keystroke-function-factor);
         
     | 
| 
      
 744 
     | 
    
         
            +
            // $keystroke-border-style: solid;
         
     | 
| 
      
 745 
     | 
    
         
            +
            // $keystroke-border-width: 1px;
         
     | 
| 
      
 746 
     | 
    
         
            +
            // $keystroke-border-color: darken($keystroke-bg, $keystroke-function-factor);
         
     | 
| 
      
 747 
     | 
    
         
            +
            // $keystroke-radius: $global-radius;
         
     | 
| 
      
 748 
     | 
    
         
            +
             
     | 
| 
      
 749 
     | 
    
         
            +
            //
         
     | 
| 
      
 750 
     | 
    
         
            +
            // Label Variables
         
     | 
| 
      
 751 
     | 
    
         
            +
            //
         
     | 
| 
      
 752 
     | 
    
         
            +
             
     | 
| 
      
 753 
     | 
    
         
            +
            // Style the labels
         
     | 
| 
      
 754 
     | 
    
         
            +
             
     | 
| 
      
 755 
     | 
    
         
            +
            // $label-padding: emCalc(3px) emCalc(10px) emCalc(4px);
         
     | 
| 
      
 756 
     | 
    
         
            +
            // $label-radius: $global-radius;
         
     | 
| 
      
 757 
     | 
    
         
            +
             
     | 
| 
      
 758 
     | 
    
         
            +
            // We use these to style the label text
         
     | 
| 
      
 759 
     | 
    
         
            +
             
     | 
| 
      
 760 
     | 
    
         
            +
            // $label-font-sizing: emCalc(14px);
         
     | 
| 
      
 761 
     | 
    
         
            +
            // $label-font-weight: bold;
         
     | 
| 
      
 762 
     | 
    
         
            +
            // $label-font-color: #333;
         
     | 
| 
      
 763 
     | 
    
         
            +
            // $label-font-color-alt: #fff;
         
     | 
| 
      
 764 
     | 
    
         
            +
             
     | 
| 
      
 765 
     | 
    
         
            +
            //
         
     | 
| 
      
 766 
     | 
    
         
            +
            // Magellan Variables
         
     | 
| 
      
 767 
     | 
    
         
            +
            //
         
     | 
| 
      
 768 
     | 
    
         
            +
             
     | 
| 
      
 769 
     | 
    
         
            +
            // Basic visual styles
         
     | 
| 
      
 770 
     | 
    
         
            +
             
     | 
| 
      
 771 
     | 
    
         
            +
            // $magellan-bg: #fff;
         
     | 
| 
      
 772 
     | 
    
         
            +
            // $magellan-padding: 10px;
         
     | 
| 
      
 773 
     | 
    
         
            +
             
     | 
| 
      
 774 
     | 
    
         
            +
            //
         
     | 
| 
      
 775 
     | 
    
         
            +
            // Orbit Settings
         
     | 
| 
      
 776 
     | 
    
         
            +
            //
         
     | 
| 
      
 777 
     | 
    
         
            +
             
     | 
| 
      
 778 
     | 
    
         
            +
            // Caption styles
         
     | 
| 
      
 779 
     | 
    
         
            +
             
     | 
| 
      
 780 
     | 
    
         
            +
            // $orbit-container-bg: #f5f5f5;
         
     | 
| 
      
 781 
     | 
    
         
            +
            // $orbit-caption-bg-old: rgb(0,0,0);
         
     | 
| 
      
 782 
     | 
    
         
            +
            // $orbit-caption-bg: rgba(0,0,0,0.6);
         
     | 
| 
      
 783 
     | 
    
         
            +
            // $orbit-caption-font-color: #fff;
         
     | 
| 
      
 784 
     | 
    
         
            +
             
     | 
| 
      
 785 
     | 
    
         
            +
            // Left/right nav styles
         
     | 
| 
      
 786 
     | 
    
         
            +
             
     | 
| 
      
 787 
     | 
    
         
            +
            // $orbit-nav-bg-old: rgb(0,0,0);
         
     | 
| 
      
 788 
     | 
    
         
            +
            // $orbit-nav-bg: rgba(0,0,0,0.6);
         
     | 
| 
      
 789 
     | 
    
         
            +
             
     | 
| 
      
 790 
     | 
    
         
            +
            // Timer styles
         
     | 
| 
      
 791 
     | 
    
         
            +
             
     | 
| 
      
 792 
     | 
    
         
            +
            // $orbit-timer-bg-old: rgb(0,0,0);
         
     | 
| 
      
 793 
     | 
    
         
            +
            // $orbit-timer-bg: rgba(0,0,0,0.6);
         
     | 
| 
      
 794 
     | 
    
         
            +
             
     | 
| 
      
 795 
     | 
    
         
            +
            // Bullet nav styles
         
     | 
| 
      
 796 
     | 
    
         
            +
             
     | 
| 
      
 797 
     | 
    
         
            +
            // $orbit-bullet-nav-color: #999;
         
     | 
| 
      
 798 
     | 
    
         
            +
            // $orbit-bullet-nav-color-active: #222;
         
     | 
| 
      
 799 
     | 
    
         
            +
             
     | 
| 
      
 800 
     | 
    
         
            +
            // Slide numbers
         
     | 
| 
      
 801 
     | 
    
         
            +
             
     | 
| 
      
 802 
     | 
    
         
            +
            // $orbit-slide-number-bg: rgba(0,0,0,0);
         
     | 
| 
      
 803 
     | 
    
         
            +
            // $orbit-slide-number-font-color: #fff;
         
     | 
| 
      
 804 
     | 
    
         
            +
            // $orbit-slide-number-padding: emCalc(5px);
         
     | 
| 
      
 805 
     | 
    
         
            +
             
     | 
| 
      
 806 
     | 
    
         
            +
            // Graceful Loading Wrapper and preloader
         
     | 
| 
      
 807 
     | 
    
         
            +
             
     | 
| 
      
 808 
     | 
    
         
            +
            // $wrapper-class: "slideshow-wrapper";
         
     | 
| 
      
 809 
     | 
    
         
            +
            // $preloader-class: "preloader" ;
         
     | 
| 
      
 810 
     | 
    
         
            +
             
     | 
| 
      
 811 
     | 
    
         
            +
            //
         
     | 
| 
      
 812 
     | 
    
         
            +
            // Pagination Variables
         
     | 
| 
      
 813 
     | 
    
         
            +
            //
         
     | 
| 
      
 814 
     | 
    
         
            +
             
     | 
| 
      
 815 
     | 
    
         
            +
            // Pagination container
         
     | 
| 
      
 816 
     | 
    
         
            +
             
     | 
| 
      
 817 
     | 
    
         
            +
            // $pagination-height: emCalc(24px);
         
     | 
| 
      
 818 
     | 
    
         
            +
            // $pagination-margin: emCalc(-5px);
         
     | 
| 
      
 819 
     | 
    
         
            +
             
     | 
| 
      
 820 
     | 
    
         
            +
            // List-item properties
         
     | 
| 
      
 821 
     | 
    
         
            +
             
     | 
| 
      
 822 
     | 
    
         
            +
            // $pagination-li-float: $default-float;
         
     | 
| 
      
 823 
     | 
    
         
            +
            // $pagination-li-height: emCalc(24px);
         
     | 
| 
      
 824 
     | 
    
         
            +
            // $pagination-li-font-color: #222;
         
     | 
| 
      
 825 
     | 
    
         
            +
            // $pagination-li-font-size: emCalc(14px);
         
     | 
| 
      
 826 
     | 
    
         
            +
            // $pagination-li-margin: emCalc(5px);
         
     | 
| 
      
 827 
     | 
    
         
            +
             
     | 
| 
      
 828 
     | 
    
         
            +
            // Pagination anchor links
         
     | 
| 
      
 829 
     | 
    
         
            +
             
     | 
| 
      
 830 
     | 
    
         
            +
            // $pagination-link-pad: emCalc(1px) emCalc(7px) emCalc(1px);
         
     | 
| 
      
 831 
     | 
    
         
            +
            // $pagination-link-font-color: #999;
         
     | 
| 
      
 832 
     | 
    
         
            +
            // $pagination-link-active-bg: darken(#fff, 10%);
         
     | 
| 
      
 833 
     | 
    
         
            +
             
     | 
| 
      
 834 
     | 
    
         
            +
            // Disabled anchor links
         
     | 
| 
      
 835 
     | 
    
         
            +
             
     | 
| 
      
 836 
     | 
    
         
            +
            // $pagination-link-unavailable-cursor: $cursor-default-value;
         
     | 
| 
      
 837 
     | 
    
         
            +
            // $pagination-link-unavailable-font-color: #999;
         
     | 
| 
      
 838 
     | 
    
         
            +
            // $pagination-link-unavailable-bg-active: transparent;
         
     | 
| 
      
 839 
     | 
    
         
            +
             
     | 
| 
      
 840 
     | 
    
         
            +
            // Currently selected anchor links
         
     | 
| 
      
 841 
     | 
    
         
            +
             
     | 
| 
      
 842 
     | 
    
         
            +
            // $pagination-link-current-background: $primary-color;
         
     | 
| 
      
 843 
     | 
    
         
            +
            // $pagination-link-current-font-color: #fff;
         
     | 
| 
      
 844 
     | 
    
         
            +
            // $pagination-link-current-font-weight: bold;
         
     | 
| 
      
 845 
     | 
    
         
            +
            // $pagination-link-current-cursor: $cursor-default-value;
         
     | 
| 
      
 846 
     | 
    
         
            +
            // $pagination-link-current-active-bg: $primary-color;
         
     | 
| 
      
 847 
     | 
    
         
            +
             
     | 
| 
      
 848 
     | 
    
         
            +
            //
         
     | 
| 
      
 849 
     | 
    
         
            +
            // Panel Variables
         
     | 
| 
      
 850 
     | 
    
         
            +
            //
         
     | 
| 
      
 851 
     | 
    
         
            +
             
     | 
| 
      
 852 
     | 
    
         
            +
            // Background and border styles
         
     | 
| 
      
 853 
     | 
    
         
            +
             
     | 
| 
      
 854 
     | 
    
         
            +
            // $panel-bg: darken(#fff, 5%);
         
     | 
| 
      
 855 
     | 
    
         
            +
            // $panel-border-style: solid;
         
     | 
| 
      
 856 
     | 
    
         
            +
            // $panel-border-size: 1px;
         
     | 
| 
      
 857 
     | 
    
         
            +
             
     | 
| 
      
 858 
     | 
    
         
            +
            // Control how much we darken things on hover
         
     | 
| 
      
 859 
     | 
    
         
            +
             
     | 
| 
      
 860 
     | 
    
         
            +
            // $panel-function-factor: 10%;
         
     | 
| 
      
 861 
     | 
    
         
            +
            // $panel-border-color: darken($panel-bg, $panel-function-factor);
         
     | 
| 
      
 862 
     | 
    
         
            +
             
     | 
| 
      
 863 
     | 
    
         
            +
            // Inner padding and bottom margin
         
     | 
| 
      
 864 
     | 
    
         
            +
             
     | 
| 
      
 865 
     | 
    
         
            +
            // $panel-margin-bottom: emCalc(20px);
         
     | 
| 
      
 866 
     | 
    
         
            +
            // $panel-padding: emCalc(20px);
         
     | 
| 
      
 867 
     | 
    
         
            +
             
     | 
| 
      
 868 
     | 
    
         
            +
            // Font colors
         
     | 
| 
      
 869 
     | 
    
         
            +
             
     | 
| 
      
 870 
     | 
    
         
            +
            // $panel-font-color: #333;
         
     | 
| 
      
 871 
     | 
    
         
            +
            // $panel-font-color-alt: #fff;
         
     | 
| 
      
 872 
     | 
    
         
            +
            // $panel-header-adjust: true; // Set to false to keep default header styles
         
     | 
| 
      
 873 
     | 
    
         
            +
             
     | 
| 
      
 874 
     | 
    
         
            +
            //
         
     | 
| 
      
 875 
     | 
    
         
            +
            // Pricing Table Variables
         
     | 
| 
      
 876 
     | 
    
         
            +
            //
         
     | 
| 
      
 877 
     | 
    
         
            +
             
     | 
| 
      
 878 
     | 
    
         
            +
            // Border color
         
     | 
| 
      
 879 
     | 
    
         
            +
             
     | 
| 
      
 880 
     | 
    
         
            +
            // $price-table-border: solid 1px #ddd;
         
     | 
| 
      
 881 
     | 
    
         
            +
             
     | 
| 
      
 882 
     | 
    
         
            +
            // Bottom margin of the pricing table
         
     | 
| 
      
 883 
     | 
    
         
            +
             
     | 
| 
      
 884 
     | 
    
         
            +
            // $price-table-margin-bottom: emCalc(20px);
         
     | 
| 
      
 885 
     | 
    
         
            +
             
     | 
| 
      
 886 
     | 
    
         
            +
            // Control the title styles
         
     | 
| 
      
 887 
     | 
    
         
            +
             
     | 
| 
      
 888 
     | 
    
         
            +
            // $price-title-bg: #ddd;
         
     | 
| 
      
 889 
     | 
    
         
            +
            // $price-title-padding: emCalc(15px) emCalc(20px);
         
     | 
| 
      
 890 
     | 
    
         
            +
            // $price-title-align: center;
         
     | 
| 
      
 891 
     | 
    
         
            +
            // $price-title-color: #333;
         
     | 
| 
      
 892 
     | 
    
         
            +
            // $price-title-weight: bold;
         
     | 
| 
      
 893 
     | 
    
         
            +
            // $price-title-size: emCalc(16px);
         
     | 
| 
      
 894 
     | 
    
         
            +
             
     | 
| 
      
 895 
     | 
    
         
            +
            // Control the price styles
         
     | 
| 
      
 896 
     | 
    
         
            +
             
     | 
| 
      
 897 
     | 
    
         
            +
            // $price-money-bg: #eee;
         
     | 
| 
      
 898 
     | 
    
         
            +
            // $price-money-padding: emCalc(15px) emCalc(20px);
         
     | 
| 
      
 899 
     | 
    
         
            +
            // $price-money-align: center;
         
     | 
| 
      
 900 
     | 
    
         
            +
            // $price-money-color: #333;
         
     | 
| 
      
 901 
     | 
    
         
            +
            // $price-money-weight: normal;
         
     | 
| 
      
 902 
     | 
    
         
            +
            // $price-money-size: emCalc(20px);
         
     | 
| 
      
 903 
     | 
    
         
            +
             
     | 
| 
      
 904 
     | 
    
         
            +
            // Description styles
         
     | 
| 
      
 905 
     | 
    
         
            +
             
     | 
| 
      
 906 
     | 
    
         
            +
            // $price-bg: #fff;
         
     | 
| 
      
 907 
     | 
    
         
            +
            // $price-desc-color: #777;
         
     | 
| 
      
 908 
     | 
    
         
            +
            // $price-desc-padding: emCalc(15px);
         
     | 
| 
      
 909 
     | 
    
         
            +
            // $price-desc-align: center;
         
     | 
| 
      
 910 
     | 
    
         
            +
            // $price-desc-font-size: emCalc(12px);
         
     | 
| 
      
 911 
     | 
    
         
            +
            // $price-desc-weight: normal;
         
     | 
| 
      
 912 
     | 
    
         
            +
            // $price-desc-line-height: 1.4;
         
     | 
| 
      
 913 
     | 
    
         
            +
            // $price-desc-bottom-border: dotted 1px #ddd;
         
     | 
| 
      
 914 
     | 
    
         
            +
             
     | 
| 
      
 915 
     | 
    
         
            +
            // List item styles
         
     | 
| 
      
 916 
     | 
    
         
            +
             
     | 
| 
      
 917 
     | 
    
         
            +
            // $price-item-color: #333;
         
     | 
| 
      
 918 
     | 
    
         
            +
            // $price-item-padding: emCalc(15px);
         
     | 
| 
      
 919 
     | 
    
         
            +
            // $price-item-align: center;
         
     | 
| 
      
 920 
     | 
    
         
            +
            // $price-item-font-size: emCalc(14px);
         
     | 
| 
      
 921 
     | 
    
         
            +
            // $price-item-weight: normal;
         
     | 
| 
      
 922 
     | 
    
         
            +
            // $price-item-bottom-border: dotted 1px #ddd;
         
     | 
| 
      
 923 
     | 
    
         
            +
             
     | 
| 
      
 924 
     | 
    
         
            +
            // CTA area styles
         
     | 
| 
      
 925 
     | 
    
         
            +
             
     | 
| 
      
 926 
     | 
    
         
            +
            // $price-cta-bg: #f5f5f5;
         
     | 
| 
      
 927 
     | 
    
         
            +
            // $price-cta-align: center;
         
     | 
| 
      
 928 
     | 
    
         
            +
            // $price-cta-padding: emCalc(20px) emCalc(20px) 0;
         
     | 
| 
      
 929 
     | 
    
         
            +
             
     | 
| 
      
 930 
     | 
    
         
            +
            //
         
     | 
| 
      
 931 
     | 
    
         
            +
            // Progress Bar Variables
         
     | 
| 
      
 932 
     | 
    
         
            +
            //
         
     | 
| 
      
 933 
     | 
    
         
            +
             
     | 
| 
      
 934 
     | 
    
         
            +
            // Progress bar height
         
     | 
| 
      
 935 
     | 
    
         
            +
             
     | 
| 
      
 936 
     | 
    
         
            +
            // $progress-bar-height: emCalc(25px);
         
     | 
| 
      
 937 
     | 
    
         
            +
            // $progress-bar-color: transparent;
         
     | 
| 
      
 938 
     | 
    
         
            +
             
     | 
| 
      
 939 
     | 
    
         
            +
            // Border styles
         
     | 
| 
      
 940 
     | 
    
         
            +
             
     | 
| 
      
 941 
     | 
    
         
            +
            // $progress-bar-border-color: darken(#fff, 20%);
         
     | 
| 
      
 942 
     | 
    
         
            +
            // $progress-bar-border-size: 1px;
         
     | 
| 
      
 943 
     | 
    
         
            +
            // $progress-bar-border-style: solid;
         
     | 
| 
      
 944 
     | 
    
         
            +
            // $progress-bar-border-radius: $global-radius;
         
     | 
| 
      
 945 
     | 
    
         
            +
             
     | 
| 
      
 946 
     | 
    
         
            +
            // Margin & padding
         
     | 
| 
      
 947 
     | 
    
         
            +
             
     | 
| 
      
 948 
     | 
    
         
            +
            // $progress-bar-pad: emCalc(2px);
         
     | 
| 
      
 949 
     | 
    
         
            +
            // $progress-bar-margin-bottom: emCalc(10px);
         
     | 
| 
      
 950 
     | 
    
         
            +
             
     | 
| 
      
 951 
     | 
    
         
            +
            // Meter colors
         
     | 
| 
      
 952 
     | 
    
         
            +
             
     | 
| 
      
 953 
     | 
    
         
            +
            // $progress-meter-color: $primary-color;
         
     | 
| 
      
 954 
     | 
    
         
            +
            // $progress-meter-secondary-color: $secondary-color;
         
     | 
| 
      
 955 
     | 
    
         
            +
            // $progress-meter-success-color: $success-color;
         
     | 
| 
      
 956 
     | 
    
         
            +
            // $progress-meter-alert-color: $alert-color;
         
     | 
| 
      
 957 
     | 
    
         
            +
             
     | 
| 
      
 958 
     | 
    
         
            +
            //
         
     | 
| 
      
 959 
     | 
    
         
            +
            // Reveal Variables
         
     | 
| 
      
 960 
     | 
    
         
            +
            //
         
     | 
| 
      
 961 
     | 
    
         
            +
             
     | 
| 
      
 962 
     | 
    
         
            +
            // Reveal overlay.
         
     | 
| 
      
 963 
     | 
    
         
            +
             
     | 
| 
      
 964 
     | 
    
         
            +
            // $reveal-overlay-bg: rgba(#000, .45);
         
     | 
| 
      
 965 
     | 
    
         
            +
            // $reveal-overlay-bg-old: #000;
         
     | 
| 
      
 966 
     | 
    
         
            +
             
     | 
| 
      
 967 
     | 
    
         
            +
            // Modal itself.
         
     | 
| 
      
 968 
     | 
    
         
            +
             
     | 
| 
      
 969 
     | 
    
         
            +
            // $reveal-modal-bg: #fff;
         
     | 
| 
      
 970 
     | 
    
         
            +
            // $reveal-position-top: 50px;
         
     | 
| 
      
 971 
     | 
    
         
            +
            // $reveal-default-width: 80%;
         
     | 
| 
      
 972 
     | 
    
         
            +
            // $reveal-modal-padding: emCalc(20px);
         
     | 
| 
      
 973 
     | 
    
         
            +
            // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
         
     | 
| 
      
 974 
     | 
    
         
            +
             
     | 
| 
      
 975 
     | 
    
         
            +
            // Reveal close button
         
     | 
| 
      
 976 
     | 
    
         
            +
             
     | 
| 
      
 977 
     | 
    
         
            +
            // $reveal-close-font-size: emCalc(22px);
         
     | 
| 
      
 978 
     | 
    
         
            +
            // $reveal-close-top: emCalc(8px);
         
     | 
| 
      
 979 
     | 
    
         
            +
            // $reveal-close-side: emCalc(11px);
         
     | 
| 
      
 980 
     | 
    
         
            +
            // $reveal-close-color: #aaa;
         
     | 
| 
      
 981 
     | 
    
         
            +
            // $reveal-close-weight: bold;
         
     | 
| 
      
 982 
     | 
    
         
            +
             
     | 
| 
      
 983 
     | 
    
         
            +
            // Modal border
         
     | 
| 
      
 984 
     | 
    
         
            +
             
     | 
| 
      
 985 
     | 
    
         
            +
            // $reveal-border-style: solid;
         
     | 
| 
      
 986 
     | 
    
         
            +
            // $reveal-border-width: 1px;
         
     | 
| 
      
 987 
     | 
    
         
            +
            // $reveal-border-color: #666;
         
     | 
| 
      
 988 
     | 
    
         
            +
             
     | 
| 
      
 989 
     | 
    
         
            +
            // $reveal-modal-class: "reveal-modal";
         
     | 
| 
      
 990 
     | 
    
         
            +
            // $close-reveal-modal-class: "close-reveal-modal";
         
     | 
| 
      
 991 
     | 
    
         
            +
             
     | 
| 
      
 992 
     | 
    
         
            +
            //
         
     | 
| 
      
 993 
     | 
    
         
            +
            // Section Variables
         
     | 
| 
      
 994 
     | 
    
         
            +
            //
         
     | 
| 
      
 995 
     | 
    
         
            +
             
     | 
| 
      
 996 
     | 
    
         
            +
            // Padding and hover factor
         
     | 
| 
      
 997 
     | 
    
         
            +
             
     | 
| 
      
 998 
     | 
    
         
            +
            // $section-title-padding: emCalc(15px);
         
     | 
| 
      
 999 
     | 
    
         
            +
            // $section-content-padding: emCalc(15px);
         
     | 
| 
      
 1000 
     | 
    
         
            +
            // $section-function-factor: 10%;
         
     | 
| 
      
 1001 
     | 
    
         
            +
             
     | 
| 
      
 1002 
     | 
    
         
            +
            // Titles
         
     | 
| 
      
 1003 
     | 
    
         
            +
             
     | 
| 
      
 1004 
     | 
    
         
            +
            // $section-title-color: #333;
         
     | 
| 
      
 1005 
     | 
    
         
            +
            // $section-title-bg: #efefef;
         
     | 
| 
      
 1006 
     | 
    
         
            +
            // $section-title-bg-active: darken($section-title-bg, $section-function-factor);
         
     | 
| 
      
 1007 
     | 
    
         
            +
            // $section-title-bg-active-tabs: #fff;
         
     | 
| 
      
 1008 
     | 
    
         
            +
            // $section-title-bg-hover: darken($section-title-bg, $section-function-factor/2);
         
     | 
| 
      
 1009 
     | 
    
         
            +
             
     | 
| 
      
 1010 
     | 
    
         
            +
            // Border size
         
     | 
| 
      
 1011 
     | 
    
         
            +
             
     | 
| 
      
 1012 
     | 
    
         
            +
            // $section-border-size: 1px;
         
     | 
| 
      
 1013 
     | 
    
         
            +
            // $section-border-style: solid;
         
     | 
| 
      
 1014 
     | 
    
         
            +
            // $section-border-color: #ccc;
         
     | 
| 
      
 1015 
     | 
    
         
            +
             
     | 
| 
      
 1016 
     | 
    
         
            +
            // Font controls
         
     | 
| 
      
 1017 
     | 
    
         
            +
             
     | 
| 
      
 1018 
     | 
    
         
            +
            // $section-font-size: emCalc(14px);
         
     | 
| 
      
 1019 
     | 
    
         
            +
             
     | 
| 
      
 1020 
     | 
    
         
            +
            // Control the color of the background and some size options
         
     | 
| 
      
 1021 
     | 
    
         
            +
             
     | 
| 
      
 1022 
     | 
    
         
            +
            // $section-content-bg: #fff;
         
     | 
| 
      
 1023 
     | 
    
         
            +
            // $section-vertical-nav-min-width: emCalc(200px);
         
     | 
| 
      
 1024 
     | 
    
         
            +
            // $section-vertical-tabs-title-width: emCalc(200px);
         
     | 
| 
      
 1025 
     | 
    
         
            +
            // $section-bottom-margin: emCalc(20px);
         
     | 
| 
      
 1026 
     | 
    
         
            +
             
     | 
| 
      
 1027 
     | 
    
         
            +
            // $title-selector: ".title";
         
     | 
| 
      
 1028 
     | 
    
         
            +
            // $content-selector: ".content";
         
     | 
| 
      
 1029 
     | 
    
         
            +
             
     | 
| 
      
 1030 
     | 
    
         
            +
            //
         
     | 
| 
      
 1031 
     | 
    
         
            +
            // Side Nav Variables
         
     | 
| 
      
 1032 
     | 
    
         
            +
            //
         
     | 
| 
      
 1033 
     | 
    
         
            +
             
     | 
| 
      
 1034 
     | 
    
         
            +
            // Padding
         
     | 
| 
      
 1035 
     | 
    
         
            +
             
     | 
| 
      
 1036 
     | 
    
         
            +
            // $side-nav-padding: emCalc(14px) 0;
         
     | 
| 
      
 1037 
     | 
    
         
            +
             
     | 
| 
      
 1038 
     | 
    
         
            +
            // List styles
         
     | 
| 
      
 1039 
     | 
    
         
            +
             
     | 
| 
      
 1040 
     | 
    
         
            +
            // $side-nav-list-type: none;
         
     | 
| 
      
 1041 
     | 
    
         
            +
            // $side-nav-list-position: inside;
         
     | 
| 
      
 1042 
     | 
    
         
            +
            // $side-nav-list-margin: 0 0 emCalc(7px) 0;
         
     | 
| 
      
 1043 
     | 
    
         
            +
             
     | 
| 
      
 1044 
     | 
    
         
            +
            // Link styles
         
     | 
| 
      
 1045 
     | 
    
         
            +
             
     | 
| 
      
 1046 
     | 
    
         
            +
            // $side-nav-link-color: $primary-color;
         
     | 
| 
      
 1047 
     | 
    
         
            +
            // $side-nav-link-color-active: lighten(#000, 30%);
         
     | 
| 
      
 1048 
     | 
    
         
            +
            // $side-nav-font-size: emCalc(14px);
         
     | 
| 
      
 1049 
     | 
    
         
            +
            // $side-nav-font-weight: bold;
         
     | 
| 
      
 1050 
     | 
    
         
            +
             
     | 
| 
      
 1051 
     | 
    
         
            +
            // Border styles
         
     | 
| 
      
 1052 
     | 
    
         
            +
             
     | 
| 
      
 1053 
     | 
    
         
            +
            // $side-nav-divider-size: 1px;
         
     | 
| 
      
 1054 
     | 
    
         
            +
            // $side-nav-divider-style: solid;
         
     | 
| 
      
 1055 
     | 
    
         
            +
            // $side-nav-divider-color: darken(#fff, 10%);
         
     | 
| 
      
 1056 
     | 
    
         
            +
             
     | 
| 
      
 1057 
     | 
    
         
            +
            //
         
     | 
| 
      
 1058 
     | 
    
         
            +
            // Sub Nav Variables
         
     | 
| 
      
 1059 
     | 
    
         
            +
            //
         
     | 
| 
      
 1060 
     | 
    
         
            +
             
     | 
| 
      
 1061 
     | 
    
         
            +
            // Margin and padding
         
     | 
| 
      
 1062 
     | 
    
         
            +
             
     | 
| 
      
 1063 
     | 
    
         
            +
            // $sub-nav-list-margin: emCalc(-4px) 0 emCalc(18px);
         
     | 
| 
      
 1064 
     | 
    
         
            +
            // $sub-nav-list-padding-top: emCalc(4px);
         
     | 
| 
      
 1065 
     | 
    
         
            +
             
     | 
| 
      
 1066 
     | 
    
         
            +
            // Definition
         
     | 
| 
      
 1067 
     | 
    
         
            +
             
     | 
| 
      
 1068 
     | 
    
         
            +
            // $sub-nav-font-size: emCalc(14px);
         
     | 
| 
      
 1069 
     | 
    
         
            +
            // $sub-nav-font-color: #999;
         
     | 
| 
      
 1070 
     | 
    
         
            +
            // $sub-nav-font-weight: normal;
         
     | 
| 
      
 1071 
     | 
    
         
            +
            // $sub-nav-text-decoration: none;
         
     | 
| 
      
 1072 
     | 
    
         
            +
            // $sub-nav-border-radius: 1000px;
         
     | 
| 
      
 1073 
     | 
    
         
            +
             
     | 
| 
      
 1074 
     | 
    
         
            +
            // Active item styles
         
     | 
| 
      
 1075 
     | 
    
         
            +
             
     | 
| 
      
 1076 
     | 
    
         
            +
            // $sub-nav-active-font-weight: bold;
         
     | 
| 
      
 1077 
     | 
    
         
            +
            // $sub-nav-active-bg: $primary-color;
         
     | 
| 
      
 1078 
     | 
    
         
            +
            // $sub-nav-active-color: #fff;
         
     | 
| 
      
 1079 
     | 
    
         
            +
            // $sub-nav-active-padding: emCalc(3px) emCalc(9px);
         
     | 
| 
      
 1080 
     | 
    
         
            +
            // $sub-nav-active-cursor: $cursor-default-value;
         
     | 
| 
      
 1081 
     | 
    
         
            +
             
     | 
| 
      
 1082 
     | 
    
         
            +
            //
         
     | 
| 
      
 1083 
     | 
    
         
            +
            // Switch Variables
         
     | 
| 
      
 1084 
     | 
    
         
            +
            //
         
     | 
| 
      
 1085 
     | 
    
         
            +
             
     | 
| 
      
 1086 
     | 
    
         
            +
            // Border styles and background colors for the switch container
         
     | 
| 
      
 1087 
     | 
    
         
            +
             
     | 
| 
      
 1088 
     | 
    
         
            +
            // $switch-border-color: darken(#fff, 20%);
         
     | 
| 
      
 1089 
     | 
    
         
            +
            // $switch-border-style: solid;
         
     | 
| 
      
 1090 
     | 
    
         
            +
            // $switch-border-width: 1px;
         
     | 
| 
      
 1091 
     | 
    
         
            +
            // $switch-bg: #fff;
         
     | 
| 
      
 1092 
     | 
    
         
            +
             
     | 
| 
      
 1093 
     | 
    
         
            +
            // Switch heights for our default classes
         
     | 
| 
      
 1094 
     | 
    
         
            +
             
     | 
| 
      
 1095 
     | 
    
         
            +
            // $switch-height-tny: 22px;
         
     | 
| 
      
 1096 
     | 
    
         
            +
            // $switch-height-sml: 28px;
         
     | 
| 
      
 1097 
     | 
    
         
            +
            // $switch-height-med: 36px;
         
     | 
| 
      
 1098 
     | 
    
         
            +
            // $switch-height-lrg: 44px;
         
     | 
| 
      
 1099 
     | 
    
         
            +
            // $switch-bottom-margin: emCalc(20px);
         
     | 
| 
      
 1100 
     | 
    
         
            +
             
     | 
| 
      
 1101 
     | 
    
         
            +
            // Font sizes for our classes.
         
     | 
| 
      
 1102 
     | 
    
         
            +
             
     | 
| 
      
 1103 
     | 
    
         
            +
            // $switch-font-size-tny: 11px;
         
     | 
| 
      
 1104 
     | 
    
         
            +
            // $switch-font-size-sml: 12px;
         
     | 
| 
      
 1105 
     | 
    
         
            +
            // $switch-font-size-med: 14px;
         
     | 
| 
      
 1106 
     | 
    
         
            +
            // $switch-font-size-lrg: 17px;
         
     | 
| 
      
 1107 
     | 
    
         
            +
            // $switch-label-side-padding: 6px;
         
     | 
| 
      
 1108 
     | 
    
         
            +
             
     | 
| 
      
 1109 
     | 
    
         
            +
            // Switch-paddle
         
     | 
| 
      
 1110 
     | 
    
         
            +
             
     | 
| 
      
 1111 
     | 
    
         
            +
            // $switch-paddle-bg: #fff;
         
     | 
| 
      
 1112 
     | 
    
         
            +
            // $switch-paddle-fade-to-color: darken($switch-paddle-bg, 10%);
         
     | 
| 
      
 1113 
     | 
    
         
            +
            // $switch-paddle-border-color: darken($switch-paddle-bg, 35%);
         
     | 
| 
      
 1114 
     | 
    
         
            +
            // $switch-paddle-border-width: 1px;
         
     | 
| 
      
 1115 
     | 
    
         
            +
            // $switch-paddle-border-style: solid;
         
     | 
| 
      
 1116 
     | 
    
         
            +
            // $switch-paddle-transition-speed: .1s;
         
     | 
| 
      
 1117 
     | 
    
         
            +
            // $switch-paddle-transition-ease: ease-out;
         
     | 
| 
      
 1118 
     | 
    
         
            +
            // $switch-positive-color: lighten($success-color, 50%);
         
     | 
| 
      
 1119 
     | 
    
         
            +
            // $switch-negative-color: #f5f5f5;
         
     | 
| 
      
 1120 
     | 
    
         
            +
             
     | 
| 
      
 1121 
     | 
    
         
            +
            // Outline Style for tabbing through switches
         
     | 
| 
      
 1122 
     | 
    
         
            +
             
     | 
| 
      
 1123 
     | 
    
         
            +
            // $switch-label-outline: 1px dotted #888;
         
     | 
| 
      
 1124 
     | 
    
         
            +
             
     | 
| 
      
 1125 
     | 
    
         
            +
            //
         
     | 
| 
      
 1126 
     | 
    
         
            +
            // Table Variables
         
     | 
| 
      
 1127 
     | 
    
         
            +
            //
         
     | 
| 
      
 1128 
     | 
    
         
            +
             
     | 
| 
      
 1129 
     | 
    
         
            +
            // Background color for the table and even rows
         
     | 
| 
      
 1130 
     | 
    
         
            +
             
     | 
| 
      
 1131 
     | 
    
         
            +
            // $table-bg: #fff;
         
     | 
| 
      
 1132 
     | 
    
         
            +
            // $table-even-row-bg: #f9f9f9;
         
     | 
| 
      
 1133 
     | 
    
         
            +
             
     | 
| 
      
 1134 
     | 
    
         
            +
            // Table cell border style
         
     | 
| 
      
 1135 
     | 
    
         
            +
             
     | 
| 
      
 1136 
     | 
    
         
            +
            // $table-border-style: solid;
         
     | 
| 
      
 1137 
     | 
    
         
            +
            // $table-border-size: 1px;
         
     | 
| 
      
 1138 
     | 
    
         
            +
            // $table-border-color: #ddd;
         
     | 
| 
      
 1139 
     | 
    
         
            +
             
     | 
| 
      
 1140 
     | 
    
         
            +
            // Table head styles
         
     | 
| 
      
 1141 
     | 
    
         
            +
             
     | 
| 
      
 1142 
     | 
    
         
            +
            // $table-head-bg: #f5f5f5;
         
     | 
| 
      
 1143 
     | 
    
         
            +
            // $table-head-font-size: emCalc(14px);
         
     | 
| 
      
 1144 
     | 
    
         
            +
            // $table-head-font-color: #222;
         
     | 
| 
      
 1145 
     | 
    
         
            +
            // $table-head-font-weight: bold;
         
     | 
| 
      
 1146 
     | 
    
         
            +
            // $table-head-padding: emCalc(8px) emCalc(10px) emCalc(10px);
         
     | 
| 
      
 1147 
     | 
    
         
            +
             
     | 
| 
      
 1148 
     | 
    
         
            +
            // Row padding and font styles
         
     | 
| 
      
 1149 
     | 
    
         
            +
             
     | 
| 
      
 1150 
     | 
    
         
            +
            // $table-row-padding: emCalc(9px) emCalc(10px);
         
     | 
| 
      
 1151 
     | 
    
         
            +
            // $table-row-font-size: emCalc(14px);
         
     | 
| 
      
 1152 
     | 
    
         
            +
            // $table-row-font-color: #222;
         
     | 
| 
      
 1153 
     | 
    
         
            +
            // $table-line-height: emCalc(18px);
         
     | 
| 
      
 1154 
     | 
    
         
            +
             
     | 
| 
      
 1155 
     | 
    
         
            +
            // Display and margin of tables
         
     | 
| 
      
 1156 
     | 
    
         
            +
             
     | 
| 
      
 1157 
     | 
    
         
            +
            // $table-display: table-cell;
         
     | 
| 
      
 1158 
     | 
    
         
            +
            // $table-margin-bottom: emCalc(20px);
         
     | 
| 
      
 1159 
     | 
    
         
            +
             
     | 
| 
      
 1160 
     | 
    
         
            +
            //
         
     | 
| 
      
 1161 
     | 
    
         
            +
            // Image Thumbnail Variables
         
     | 
| 
      
 1162 
     | 
    
         
            +
            //
         
     | 
| 
      
 1163 
     | 
    
         
            +
             
     | 
| 
      
 1164 
     | 
    
         
            +
            // Border styles
         
     | 
| 
      
 1165 
     | 
    
         
            +
             
     | 
| 
      
 1166 
     | 
    
         
            +
            // $thumb-border-style: solid;
         
     | 
| 
      
 1167 
     | 
    
         
            +
            // $thumb-border-width: 4px;
         
     | 
| 
      
 1168 
     | 
    
         
            +
            // $thumb-border-color: #fff;
         
     | 
| 
      
 1169 
     | 
    
         
            +
            // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
         
     | 
| 
      
 1170 
     | 
    
         
            +
            // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
         
     | 
| 
      
 1171 
     | 
    
         
            +
             
     | 
| 
      
 1172 
     | 
    
         
            +
            // Radius and transition speed for thumbs
         
     | 
| 
      
 1173 
     | 
    
         
            +
             
     | 
| 
      
 1174 
     | 
    
         
            +
            // $thumb-radius: $global-radius;
         
     | 
| 
      
 1175 
     | 
    
         
            +
            // $thumb-transition-speed: 200ms;
         
     | 
| 
      
 1176 
     | 
    
         
            +
             
     | 
| 
      
 1177 
     | 
    
         
            +
            //
         
     | 
| 
      
 1178 
     | 
    
         
            +
            // Tooltip Variables
         
     | 
| 
      
 1179 
     | 
    
         
            +
            //
         
     | 
| 
      
 1180 
     | 
    
         
            +
             
     | 
| 
      
 1181 
     | 
    
         
            +
            // $has-tip-border-bottom: dotted 1px #ccc;
         
     | 
| 
      
 1182 
     | 
    
         
            +
            // $has-tip-font-weight: bold;
         
     | 
| 
      
 1183 
     | 
    
         
            +
            // $has-tip-font-color: #333;
         
     | 
| 
      
 1184 
     | 
    
         
            +
            // $has-tip-border-bottom-hover: dotted 1px darken($primary-color, 20%);
         
     | 
| 
      
 1185 
     | 
    
         
            +
            // $has-tip-font-color-hover: $primary-color;
         
     | 
| 
      
 1186 
     | 
    
         
            +
            // $has-tip-cursor-type: help;
         
     | 
| 
      
 1187 
     | 
    
         
            +
             
     | 
| 
      
 1188 
     | 
    
         
            +
            // $tooltip-padding: emCalc(8px);
         
     | 
| 
      
 1189 
     | 
    
         
            +
            // $tooltip-bg: #000;
         
     | 
| 
      
 1190 
     | 
    
         
            +
            // $tooltip-font-size: emCalc(15px);
         
     | 
| 
      
 1191 
     | 
    
         
            +
            // $tooltip-font-weight: bold;
         
     | 
| 
      
 1192 
     | 
    
         
            +
            // $tooltip-font-color: #fff;
         
     | 
| 
      
 1193 
     | 
    
         
            +
            // $tooltip-line-height: 1.3;
         
     | 
| 
      
 1194 
     | 
    
         
            +
            // $tooltip-close-font-size: emCalc(10px);
         
     | 
| 
      
 1195 
     | 
    
         
            +
            // $tooltip-close-font-weight: normal;
         
     | 
| 
      
 1196 
     | 
    
         
            +
            // $tooltip-close-font-color: #888;
         
     | 
| 
      
 1197 
     | 
    
         
            +
            // $tooltip-font-size-sml: emCalc(14px);
         
     | 
| 
      
 1198 
     | 
    
         
            +
            // $tooltip-radius: $global-radius;
         
     | 
| 
      
 1199 
     | 
    
         
            +
            // $tooltip-pip-size: 5px;
         
     | 
| 
      
 1200 
     | 
    
         
            +
             
     | 
| 
      
 1201 
     | 
    
         
            +
            //
         
     | 
| 
      
 1202 
     | 
    
         
            +
            // Top Bar Variables
         
     | 
| 
      
 1203 
     | 
    
         
            +
            //
         
     | 
| 
      
 1204 
     | 
    
         
            +
             
     | 
| 
      
 1205 
     | 
    
         
            +
            // Background color for the top bar
         
     | 
| 
      
 1206 
     | 
    
         
            +
             
     | 
| 
      
 1207 
     | 
    
         
            +
            // $topbar-bg: #111 !default;
         
     | 
| 
      
 1208 
     | 
    
         
            +
             
     | 
| 
      
 1209 
     | 
    
         
            +
            // Height and margin
         
     | 
| 
      
 1210 
     | 
    
         
            +
             
     | 
| 
      
 1211 
     | 
    
         
            +
            // $topbar-height: 45px;
         
     | 
| 
      
 1212 
     | 
    
         
            +
            // $topbar-margin-bottom: emCalc(30px);
         
     | 
| 
      
 1213 
     | 
    
         
            +
             
     | 
| 
      
 1214 
     | 
    
         
            +
            // Control Input height for top bar
         
     | 
| 
      
 1215 
     | 
    
         
            +
             
     | 
| 
      
 1216 
     | 
    
         
            +
            // $topbar-input-height: 2.45em;
         
     | 
| 
      
 1217 
     | 
    
         
            +
             
     | 
| 
      
 1218 
     | 
    
         
            +
            // Controlling the styles for the title in the top bar
         
     | 
| 
      
 1219 
     | 
    
         
            +
             
     | 
| 
      
 1220 
     | 
    
         
            +
            // $topbar-title-weight: bold;
         
     | 
| 
      
 1221 
     | 
    
         
            +
            // $topbar-title-font-size: emCalc(17px);
         
     | 
| 
      
 1222 
     | 
    
         
            +
             
     | 
| 
      
 1223 
     | 
    
         
            +
            // Style the top bar dropdown elements
         
     | 
| 
      
 1224 
     | 
    
         
            +
             
     | 
| 
      
 1225 
     | 
    
         
            +
            // $topbar-dropdown-bg: #222;
         
     | 
| 
      
 1226 
     | 
    
         
            +
            // $topbar-dropdown-link-color: #fff;
         
     | 
| 
      
 1227 
     | 
    
         
            +
            // $topbar-dropdown-link-bg: lighten($topbar-bg, 5%);
         
     | 
| 
      
 1228 
     | 
    
         
            +
            // $topbar-dropdown-toggle-size: 5px;
         
     | 
| 
      
 1229 
     | 
    
         
            +
            // $topbar-dropdown-toggle-color: #fff;
         
     | 
| 
      
 1230 
     | 
    
         
            +
            // $topbar-dropdown-toggle-alpha: 0.5;
         
     | 
| 
      
 1231 
     | 
    
         
            +
             
     | 
| 
      
 1232 
     | 
    
         
            +
            // Set the link colors and styles for top-level nav
         
     | 
| 
      
 1233 
     | 
    
         
            +
             
     | 
| 
      
 1234 
     | 
    
         
            +
            // $topbar-link-color: #fff;
         
     | 
| 
      
 1235 
     | 
    
         
            +
            // $topbar-link-color-hover: #fff;
         
     | 
| 
      
 1236 
     | 
    
         
            +
            // $topbar-link-color-active: #fff;
         
     | 
| 
      
 1237 
     | 
    
         
            +
            // $topbar-link-weight: bold;
         
     | 
| 
      
 1238 
     | 
    
         
            +
            // $topbar-link-font-size: emCalc(13px);
         
     | 
| 
      
 1239 
     | 
    
         
            +
            // $topbar-link-hover-lightness: -30%; // Darken by 30%
         
     | 
| 
      
 1240 
     | 
    
         
            +
            // $topbar-link-bg-hover: darken($topbar-bg, 3%);
         
     | 
| 
      
 1241 
     | 
    
         
            +
            // $topbar-link-bg-active: darken($topbar-bg, 3%);
         
     | 
| 
      
 1242 
     | 
    
         
            +
             
     | 
| 
      
 1243 
     | 
    
         
            +
            // $topbar-dropdown-label-color: #555;
         
     | 
| 
      
 1244 
     | 
    
         
            +
            // $topbar-dropdown-label-text-transform: uppercase;
         
     | 
| 
      
 1245 
     | 
    
         
            +
            // $topbar-dropdown-label-font-weight: bold;
         
     | 
| 
      
 1246 
     | 
    
         
            +
            // $topbar-dropdown-label-font-size: emCalc(10px);
         
     | 
| 
      
 1247 
     | 
    
         
            +
             
     | 
| 
      
 1248 
     | 
    
         
            +
            // Top menu icon styles
         
     | 
| 
      
 1249 
     | 
    
         
            +
             
     | 
| 
      
 1250 
     | 
    
         
            +
            // $topbar-menu-link-transform: uppercase;
         
     | 
| 
      
 1251 
     | 
    
         
            +
            // $topbar-menu-link-font-size: emCalc(13px);
         
     | 
| 
      
 1252 
     | 
    
         
            +
            // $topbar-menu-link-weight: bold;
         
     | 
| 
      
 1253 
     | 
    
         
            +
            // $topbar-menu-link-color: #fff;
         
     | 
| 
      
 1254 
     | 
    
         
            +
            // $topbar-menu-icon-color: #fff;
         
     | 
| 
      
 1255 
     | 
    
         
            +
            // $topbar-menu-link-color-toggled: #888;
         
     | 
| 
      
 1256 
     | 
    
         
            +
            // $topbar-menu-icon-color-toggled: #888;
         
     | 
| 
      
 1257 
     | 
    
         
            +
             
     | 
| 
      
 1258 
     | 
    
         
            +
            // Transitions and breakpoint styles
         
     | 
| 
      
 1259 
     | 
    
         
            +
             
     | 
| 
      
 1260 
     | 
    
         
            +
            // $topbar-transition-speed: 300ms;
         
     | 
| 
      
 1261 
     | 
    
         
            +
            // $topbar-breakpoint: emCalc(940px); // Change to 9999px for always mobile layout
         
     | 
| 
      
 1262 
     | 
    
         
            +
            // $topbar-media-query: "only screen and (min-width: #{$topbar-breakpoint})";
         
     | 
| 
      
 1263 
     | 
    
         
            +
             
     | 
| 
      
 1264 
     | 
    
         
            +
            // Divider Styles
         
     | 
| 
      
 1265 
     | 
    
         
            +
             
     | 
| 
      
 1266 
     | 
    
         
            +
            // $topbar-divider-border-bottom: solid 1px lighten($topbar-bg, 10%);
         
     | 
| 
      
 1267 
     | 
    
         
            +
            // $topbar-divider-border-top: solid 1px darken($topbar-bg, 10%);
         
     | 
| 
      
 1268 
     | 
    
         
            +
             
     | 
| 
      
 1269 
     | 
    
         
            +
            // Sticky Class
         
     | 
| 
      
 1270 
     | 
    
         
            +
             
     | 
| 
      
 1271 
     | 
    
         
            +
            // $topbar-sticky-class: ".sticky";
         
     |