Repository: monarkee/beard Branch: master Commit: 70064f566531 Files: 103 Total size: 1.3 MB Directory structure: gitextract_tbjnbn08/ ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── beard.scss ├── bower.json ├── build_production/ │ ├── CNAME │ ├── border-radius/ │ │ └── index.html │ ├── borders/ │ │ └── index.html │ ├── colors/ │ │ └── index.html │ ├── configuration/ │ │ └── index.html │ ├── css/ │ │ ├── main.css │ │ └── vendor.css │ ├── display/ │ │ └── index.html │ ├── examples/ │ │ └── index.html │ ├── flexbox/ │ │ └── index.html │ ├── floats/ │ │ └── index.html │ ├── fonts/ │ │ └── index.html │ ├── grid/ │ │ └── index.html │ ├── index.html │ ├── installation/ │ │ └── index.html │ ├── js/ │ │ └── app.js │ ├── letter-spacing/ │ │ └── index.html │ ├── line-heights/ │ │ └── index.html │ ├── misc/ │ │ └── index.html │ ├── overflow/ │ │ └── index.html │ ├── philosophy/ │ │ └── index.html │ ├── position/ │ │ └── index.html │ ├── reset-and-base/ │ │ └── index.html │ ├── responsive-prefixes/ │ │ └── index.html │ ├── spacing/ │ │ └── index.html │ ├── text-alignment/ │ │ └── index.html │ └── tools/ │ └── index.html ├── config.php ├── dist/ │ └── beard.css ├── gulpfile.js ├── index.js ├── package.json ├── source/ │ ├── CNAME │ ├── _assets/ │ │ ├── css/ │ │ │ ├── prism-ghcolors.css │ │ │ └── prism.css │ │ ├── js/ │ │ │ ├── main.js │ │ │ └── prism.js │ │ └── sass/ │ │ └── main.scss │ ├── _layouts/ │ │ ├── master.blade.php │ │ └── subpage.blade.php │ ├── _partials/ │ │ ├── _footer.blade.php │ │ ├── _header.blade.php │ │ └── _sidebar.blade.php │ ├── border-radius.md │ ├── borders.md │ ├── colors.md │ ├── configuration.md │ ├── css/ │ │ ├── main.css │ │ └── vendor.css │ ├── display.md │ ├── examples.md │ ├── flexbox.md │ ├── floats.md │ ├── fonts.md │ ├── grid.md │ ├── index.md │ ├── installation.md │ ├── js/ │ │ └── app.js │ ├── letter-spacing.md │ ├── line-heights.md │ ├── misc.md │ ├── overflow.md │ ├── philosophy.md │ ├── position.md │ ├── reset-and-base.md │ ├── responsive-prefixes.md │ ├── spacing.md │ ├── text-alignment.md │ └── tools.md └── stylesheets/ ├── _base.scss ├── _beard.after.scss ├── _beard.before.scss ├── _generic.reset.scss ├── _helpers.border-radius.scss ├── _helpers.borders.scss ├── _helpers.colors.scss ├── _helpers.display.scss ├── _helpers.flex.scss ├── _helpers.floats.scss ├── _helpers.fonts.scss ├── _helpers.grid.scss ├── _helpers.letter-spacing.scss ├── _helpers.line-heights.scss ├── _helpers.misc.scss ├── _helpers.overflow.scss ├── _helpers.position.scss ├── _helpers.spacing.scss ├── _helpers.text-align.scss ├── _objects.media.scss ├── _settings.colors.scss ├── _settings.scss ├── _tools.appearance.scss ├── _tools.breakpoints.scss ├── _tools.colors.scss ├── _tools.font-size.scss ├── _tools.spacing.scss └── _tools.user-drag.scss ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ build_local node_modules vendor npm-debug.log .DS_Store ================================================ FILE: .npmignore ================================================ /build_local/ /build_production/ /node_modules/ /source/ config.php gulpfile.js ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2014 David Hemphill Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ Beard ===== [![Join the chat at https://gitter.im/monarkee/beard](https://badges.gitter.im/monarkee/beard.svg)](https://gitter.im/monarkee/beard?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Beard is an extremely pragmatic and utility-focused CSS framework. Actually, don't call it that. Beard focuses on developer speed, maintenance, and ease-of-use, versus "pretty" markup. ## Installation Beard can be installed via [NPM](https://www.npmjs.com). ```$ npm install beardcss``` --- ### Adding Beard into your project ### The Recommended Way The best way to add Beard to your project is to copy the contents of beard/beard.scss to your main Sass file. This allows for the best source ordering. From there, we recommend adding your site styles between the "Objects" and "Helpers" sections, like so: ```scss @import '../node_modules/beardcss/stylesheets/beard.before'; // Place custom spacing, color, and media query configuration here // @include new-spacing-helper('0-5', 0.5); // @include new-color('1--light', lighten($brand-color-1, 15%)); @include new-breakpoint(tablet, '(min-width: 600px)'); // Your site styles go here // @import 'app' @import '../node_modules/beardcss/stylesheets/beard.after'; ``` --- ### Or…Just the Dead Simple Installation Or you could just import it directly. We don't recommend it, but if you need something quick, go ahead! ```@import '../node_modules/beardcss/beard'``` ================================================ FILE: beard.scss ================================================ @import 'stylesheets/beard.before'; // Custom colors, breakpoints and spacing helpers //-------------------------------------------------------------------------- */ // @include new-color('1--light', lighten($brand-color-1, 15%)); // @include new-breakpoint(tablet, '(min-width: 600px)'); // @include new-spacing-helper('small', 0.3); // Put your site styles here //-------------------------------------------------------------------------- */ // @import 'app.scss'; @import 'stylesheets/beard.after'; ================================================ FILE: bower.json ================================================ { "name": "beard", "description": "A CSS framework for people with better things to do", "main": [ "beard.scss" ], "version": "2.2.4", "homepage": "https://github.com/monarkee/beard", "authors": [ "David Hemphill " ], "keywords": [ "scss", "sass", "framework", "front-end" ], "license": "MIT", "private": false, "ignore": [ "**/.*", "node_modules", "bower_components", "test", "tests", "output_dev", "output_prod", "app", "source" ] } ================================================ FILE: build_production/CNAME ================================================ buildwithbeard.com ================================================ FILE: build_production/border-radius/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Border Radius Helpers

Border Direction Class Prefix Default Amounts
Border Radius .br 0-10
Border Left Radius .blr 0-10
Border Right Radius .brr 0-10
Border Top Left Radius .btlr 0-10
Border Top Right Radius .btrr 0-10
Border Bottom Left Radius .bblr 0-10
Border Bottom Right Radius .bbrr 0-10
================================================ FILE: build_production/borders/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Borders

Beard’s border helpers use a default scale from 1 to 3. This can be changed by setting $beard-border-size-amount before you import Beard.

Class Purpose
.xbrdr Remove the border from an element
.brdr1 Add a border to all sides of an element
.brdr1--top Add a border to the top of an element
.brdr1--right Add a border to the right side of an element
.brdr1--bottom Add a border to the bottom of an element
.brdr1--left Add a border to the left side of an element
================================================ FILE: build_production/colors/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Color Helpers

Beard's color helpers are generated with !important to provide the ability to override any color values set in your CSS. It's also encouraged to use these helpers in place of modifiers which do the same thing.

.bgsuccess
.tcsuccess
.bgwarning
.tcwarning
.bgdanger
.tcdanger
.bg1
.bg2
.bg3
.bg4
.bg5
.tc1
.tc2
.tc3
.tc4
.tc5
.bc1
.bc2
.bc3
.bc4
.bc5
.bgw
.tcw
.bcw
.bgg05
.bgg10
.bgg20
.bgg30
.bgg40
.bgg50
.bgg60
.bgg70
.bgg80
.bgg90
.bgb
.tcg05
.tcg10
.tcg20
.tcg30
.tcg40
.tcg50
.tcg60
.tcg70
.tcg80
.tcg90
.tcb
.bcg05
.bcg10
.bcg20
.bcg30
.bcg40
.bcg50
.bcg60
.bcg70
.bcg80
.bcg90
.bcb

Hover, Focus, and Active Color Helpers

Beard's color helper system allows you to use hover, focus, and active colors, using a special syntax. Beard can transition any color to any other color in the system, which makes these helpers real timesavers.

Prefix Purpose Example Demo
: Hover class="tc1 :tcwarning" Sample link hover text
:: Focus class="bcg20 ::bc1"
@ Active class="bgg05 tcg40 @bg1 @tcw" Click Me

Another Example

<div class="df ofh br3">
    <input type="text" class="xbrdr brdr1--top brdr1--bottom brdr1--left bcg20 ::bc1 ph2 ft4" placeholder="Enter your email">
    <button class="dib pv1 ph2 ft4 fw6 bg1 :bg2 ::bg3 @bg4 tcw brdr1 bc1">Click Me</button>
</div>

Adding New Color Helpers

This mixin allows you to add colors to be generated along with Beard's default color helpers.

// Tools & Mixins
//-------------------------------------------------------------------------- */
// @import '../../../stylesheets/tools.font-size';

// This has to go between Beard's tool.font-size and helpers.spacing partials
@include new-color('1--light', #85D7FF); // Outputs .bg1--light { background-color: #85D7FF !important }
@include new-color('red', #FF0000); // Outputs .bgred { background-color: #FF0000 !important }

// Helpers
//-------------------------------------------------------------------------- */
// @import '../../../stylesheets/helpers.spacing';

Note: Calling this mixin will only work if you import each of Beard’s partials individually, as recommended by the installation guide.

================================================ FILE: build_production/configuration/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Configuration

Beard has a set of settings you can tweak to customize the framework for you project. Listed below are some of the important ones. The complete list is found in stylesheets/_settings.scss.

Variable Default Purpose
$beard-reset true Adds a classic CSS reset
$beard-base true Adds Beard’s base styling
$beard-enable-responsive true Enable responsive features
$beard-enable-spacing-helpers true Enable the spacing helpers
$beard-spacing-helper-amount 10 Specify how many spacer levels to generate
$beard-grid-block-count 12 The amount of column classes to create
$beard-grid-gutter 30px The default size of the column gutters
$site-width 114rem The maximum size of the site wrappers
$sans-serif 'Helvetica Neue', Helvetica, Arial, sans-serif
$serif Merriweather, Georgia, serif
$code Menlo, Consolas, Monaco, 'Andale Mono', monospace
================================================ FILE: build_production/css/main.css ================================================ a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,meter,nav,object,ol,output,p,pre,progress,q,rp,rt,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,xmp{border:0;margin:0;padding:0;font-size:100%}body,html{height:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}b,strong{font-weight:700}img{color:transparent;font-size:0;vertical-align:middle;-ms-interpolation-mode:bicubic}ol,ul{list-style:none}li{display:list-item}table{border-collapse:collapse;border-spacing:0}caption,td,th{font-weight:400;vertical-align:top;text-align:left}q{quotes:none}q:after,q:before{content:"";content:none}small,sub,sup{font-size:75%}sub,sup{line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg{overflow:hidden}*,:after,:before{box-sizing:inherit}html{font-size:62.5%;box-sizing:border-box;height:100%}body{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;min-height:100%}h1,h2,h3,h4,h5,h6{font-weight:400}hr{background:none;border-top:1px solid rgba(0,0,0,.2);margin:0}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button{cursor:pointer;border:none}button,input,textarea{outline:none}img{max-width:100%;font-style:italic;vertical-align:middle}img[height],img[width]{max-width:none}body{font-family:system,-apple-system,BlinkMacSystemFont,ubuntu,sans-serif}:not(pre)>code{background:#fafafa;padding:.5rem 1rem;color:#666;border-radius:3px;border:1px solid #dcdcdc}.btn--sm{padding:.85rem 1rem}.ht3{height:7px}.main-content{max-width:96rem}.main-sidebar{-ms-flex:0 0 200px;flex:0 0 200px}.sticky{background-color:rgba(67,70,74,.1);position:relative;padding:2rem 1rem;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-size:13px;color:rgba(67,70,74,.4)}.sticky--nopad{left:0;right:0}.outline{outline:1px solid rgba(67,70,74,.4)}.example-nested-frame{background:rgba(67,70,74,.1)}.pv05{padding-top:.5rem;padding-bottom:.5rem}.badge{padding:4px 6px}th{background:#f2f2f2}.z30{z-index:30}.pointer{cursor:pointer}.tal{text-align:left!important}.tac{text-align:center!important}.tar{text-align:right!important}@media screen and (min-width:30rem){.sm-tal{text-align:left!important}}@media screen and (min-width:30rem){.sm-tac{text-align:center!important}}@media screen and (min-width:30rem){.sm-tar{text-align:right!important}}@media screen and (max-width:59.99999rem){.only-sm-tal{text-align:left!important}}@media screen and (max-width:59.99999rem){.only-sm-tac{text-align:center!important}}@media screen and (max-width:59.99999rem){.only-sm-tar{text-align:right!important}}@media screen and (min-width:60rem){.md-tal{text-align:left!important}}@media screen and (min-width:60rem){.md-tac{text-align:center!important}}@media screen and (min-width:60rem){.md-tar{text-align:right!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tal{text-align:left!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tac{text-align:center!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tar{text-align:right!important}}@media screen and (min-width:90rem){.lg-tal{text-align:left!important}}@media screen and (min-width:90rem){.lg-tac{text-align:center!important}}@media screen and (min-width:90rem){.lg-tar{text-align:right!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tal{text-align:left!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tac{text-align:center!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tar{text-align:right!important}}@media screen and (min-width:144rem){.xlg-tal{text-align:left!important}}@media screen and (min-width:144rem){.xlg-tac{text-align:center!important}}@media screen and (min-width:144rem){.xlg-tar{text-align:right!important}}@media screen and (min-width:144rem){.only-xlg-tal{text-align:left!important}}@media screen and (min-width:144rem){.only-xlg-tac{text-align:center!important}}@media screen and (min-width:144rem){.only-xlg-tar{text-align:right!important}}.pa1{padding:1rem!important}@media screen and (min-width:30rem){.sm-pa1{padding:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa1{padding:1rem!important}}@media screen and (min-width:60rem){.md-pa1{padding:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa1{padding:1rem!important}}@media screen and (min-width:90rem){.lg-pa1{padding:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa1{padding:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pa1,.xlg-pa1{padding:1rem!important}}.pt1{padding-top:1rem!important}@media screen and (min-width:30rem){.sm-pt1{padding-top:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt1{padding-top:1rem!important}}@media screen and (min-width:60rem){.md-pt1{padding-top:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt1{padding-top:1rem!important}}@media screen and (min-width:90rem){.lg-pt1{padding-top:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt1{padding-top:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pt1,.xlg-pt1{padding-top:1rem!important}}.pr1{padding-right:1rem!important}@media screen and (min-width:30rem){.sm-pr1{padding-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr1{padding-right:1rem!important}}@media screen and (min-width:60rem){.md-pr1{padding-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr1{padding-right:1rem!important}}@media screen and (min-width:90rem){.lg-pr1{padding-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr1{padding-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pr1,.xlg-pr1{padding-right:1rem!important}}.pb1{padding-bottom:1rem!important}@media screen and (min-width:30rem){.sm-pb1{padding-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb1{padding-bottom:1rem!important}}@media screen and (min-width:60rem){.md-pb1{padding-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb1{padding-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-pb1{padding-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb1{padding-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pb1,.xlg-pb1{padding-bottom:1rem!important}}.pl1{padding-left:1rem!important}@media screen and (min-width:30rem){.sm-pl1{padding-left:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl1{padding-left:1rem!important}}@media screen and (min-width:60rem){.md-pl1{padding-left:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl1{padding-left:1rem!important}}@media screen and (min-width:90rem){.lg-pl1{padding-left:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl1{padding-left:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pl1,.xlg-pl1{padding-left:1rem!important}}.pv1{padding-top:1rem!important;padding-bottom:1rem!important}@media screen and (min-width:30rem){.sm-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:60rem){.md-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pv1,.xlg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}.ph1{padding-left:1rem!important;padding-right:1rem!important}@media screen and (min-width:30rem){.sm-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:60rem){.md-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:90rem){.lg-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ph1,.xlg-ph1{padding-left:1rem!important;padding-right:1rem!important}}.pa2{padding:2rem!important}@media screen and (min-width:30rem){.sm-pa2{padding:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa2{padding:2rem!important}}@media screen and (min-width:60rem){.md-pa2{padding:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa2{padding:2rem!important}}@media screen and (min-width:90rem){.lg-pa2{padding:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa2{padding:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pa2,.xlg-pa2{padding:2rem!important}}.pt2{padding-top:2rem!important}@media screen and (min-width:30rem){.sm-pt2{padding-top:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt2{padding-top:2rem!important}}@media screen and (min-width:60rem){.md-pt2{padding-top:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt2{padding-top:2rem!important}}@media screen and (min-width:90rem){.lg-pt2{padding-top:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt2{padding-top:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pt2,.xlg-pt2{padding-top:2rem!important}}.pr2{padding-right:2rem!important}@media screen and (min-width:30rem){.sm-pr2{padding-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr2{padding-right:2rem!important}}@media screen and (min-width:60rem){.md-pr2{padding-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr2{padding-right:2rem!important}}@media screen and (min-width:90rem){.lg-pr2{padding-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr2{padding-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pr2,.xlg-pr2{padding-right:2rem!important}}.pb2{padding-bottom:2rem!important}@media screen and (min-width:30rem){.sm-pb2{padding-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb2{padding-bottom:2rem!important}}@media screen and (min-width:60rem){.md-pb2{padding-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb2{padding-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-pb2{padding-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb2{padding-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pb2,.xlg-pb2{padding-bottom:2rem!important}}.pl2{padding-left:2rem!important}@media screen and (min-width:30rem){.sm-pl2{padding-left:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl2{padding-left:2rem!important}}@media screen and (min-width:60rem){.md-pl2{padding-left:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl2{padding-left:2rem!important}}@media screen and (min-width:90rem){.lg-pl2{padding-left:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl2{padding-left:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pl2,.xlg-pl2{padding-left:2rem!important}}.pv2{padding-top:2rem!important;padding-bottom:2rem!important}@media screen and (min-width:30rem){.sm-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:60rem){.md-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pv2,.xlg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}.ph2,td,th{padding-left:2rem!important;padding-right:2rem!important}@media screen and (min-width:30rem){.sm-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:60rem){.md-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:90rem){.lg-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ph2,.xlg-ph2{padding-left:2rem!important;padding-right:2rem!important}}.pa3{padding:3rem!important}@media screen and (min-width:30rem){.sm-pa3{padding:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa3{padding:3rem!important}}@media screen and (min-width:60rem){.md-pa3{padding:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa3{padding:3rem!important}}@media screen and (min-width:90rem){.lg-pa3{padding:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa3{padding:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pa3,.xlg-pa3{padding:3rem!important}}.pt3{padding-top:3rem!important}@media screen and (min-width:30rem){.sm-pt3{padding-top:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt3{padding-top:3rem!important}}@media screen and (min-width:60rem){.md-pt3{padding-top:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt3{padding-top:3rem!important}}@media screen and (min-width:90rem){.lg-pt3{padding-top:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt3{padding-top:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pt3,.xlg-pt3{padding-top:3rem!important}}.pr3{padding-right:3rem!important}@media screen and (min-width:30rem){.sm-pr3{padding-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr3{padding-right:3rem!important}}@media screen and (min-width:60rem){.md-pr3{padding-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr3{padding-right:3rem!important}}@media screen and (min-width:90rem){.lg-pr3{padding-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr3{padding-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pr3,.xlg-pr3{padding-right:3rem!important}}.pb3{padding-bottom:3rem!important}@media screen and (min-width:30rem){.sm-pb3{padding-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb3{padding-bottom:3rem!important}}@media screen and (min-width:60rem){.md-pb3{padding-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb3{padding-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-pb3{padding-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb3{padding-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pb3,.xlg-pb3{padding-bottom:3rem!important}}.pl3{padding-left:3rem!important}@media screen and (min-width:30rem){.sm-pl3{padding-left:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl3{padding-left:3rem!important}}@media screen and (min-width:60rem){.md-pl3{padding-left:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl3{padding-left:3rem!important}}@media screen and (min-width:90rem){.lg-pl3{padding-left:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl3{padding-left:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pl3,.xlg-pl3{padding-left:3rem!important}}.pv3{padding-top:3rem!important;padding-bottom:3rem!important}@media screen and (min-width:30rem){.sm-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:60rem){.md-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pv3,.xlg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}.ph3{padding-left:3rem!important;padding-right:3rem!important}@media screen and (min-width:30rem){.sm-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:60rem){.md-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:90rem){.lg-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ph3,.xlg-ph3{padding-left:3rem!important;padding-right:3rem!important}}.pa4{padding:4rem!important}@media screen and (min-width:30rem){.sm-pa4{padding:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa4{padding:4rem!important}}@media screen and (min-width:60rem){.md-pa4{padding:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa4{padding:4rem!important}}@media screen and (min-width:90rem){.lg-pa4{padding:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa4{padding:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pa4,.xlg-pa4{padding:4rem!important}}.pt4{padding-top:4rem!important}@media screen and (min-width:30rem){.sm-pt4{padding-top:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt4{padding-top:4rem!important}}@media screen and (min-width:60rem){.md-pt4{padding-top:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt4{padding-top:4rem!important}}@media screen and (min-width:90rem){.lg-pt4{padding-top:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt4{padding-top:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pt4,.xlg-pt4{padding-top:4rem!important}}.pr4{padding-right:4rem!important}@media screen and (min-width:30rem){.sm-pr4{padding-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr4{padding-right:4rem!important}}@media screen and (min-width:60rem){.md-pr4{padding-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr4{padding-right:4rem!important}}@media screen and (min-width:90rem){.lg-pr4{padding-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr4{padding-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pr4,.xlg-pr4{padding-right:4rem!important}}.pb4{padding-bottom:4rem!important}@media screen and (min-width:30rem){.sm-pb4{padding-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb4{padding-bottom:4rem!important}}@media screen and (min-width:60rem){.md-pb4{padding-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb4{padding-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-pb4{padding-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb4{padding-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pb4,.xlg-pb4{padding-bottom:4rem!important}}.pl4{padding-left:4rem!important}@media screen and (min-width:30rem){.sm-pl4{padding-left:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl4{padding-left:4rem!important}}@media screen and (min-width:60rem){.md-pl4{padding-left:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl4{padding-left:4rem!important}}@media screen and (min-width:90rem){.lg-pl4{padding-left:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl4{padding-left:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pl4,.xlg-pl4{padding-left:4rem!important}}.pv4{padding-top:4rem!important;padding-bottom:4rem!important}@media screen and (min-width:30rem){.sm-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:60rem){.md-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pv4,.xlg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}.ph4{padding-left:4rem!important;padding-right:4rem!important}@media screen and (min-width:30rem){.sm-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:60rem){.md-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:90rem){.lg-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ph4,.xlg-ph4{padding-left:4rem!important;padding-right:4rem!important}}.pa5{padding:5rem!important}@media screen and (min-width:30rem){.sm-pa5{padding:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa5{padding:5rem!important}}@media screen and (min-width:60rem){.md-pa5{padding:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa5{padding:5rem!important}}@media screen and (min-width:90rem){.lg-pa5{padding:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa5{padding:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pa5,.xlg-pa5{padding:5rem!important}}.pt5{padding-top:5rem!important}@media screen and (min-width:30rem){.sm-pt5{padding-top:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt5{padding-top:5rem!important}}@media screen and (min-width:60rem){.md-pt5{padding-top:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt5{padding-top:5rem!important}}@media screen and (min-width:90rem){.lg-pt5{padding-top:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt5{padding-top:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pt5,.xlg-pt5{padding-top:5rem!important}}.pr5{padding-right:5rem!important}@media screen and (min-width:30rem){.sm-pr5{padding-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr5{padding-right:5rem!important}}@media screen and (min-width:60rem){.md-pr5{padding-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr5{padding-right:5rem!important}}@media screen and (min-width:90rem){.lg-pr5{padding-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr5{padding-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pr5,.xlg-pr5{padding-right:5rem!important}}.pb5{padding-bottom:5rem!important}@media screen and (min-width:30rem){.sm-pb5{padding-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb5{padding-bottom:5rem!important}}@media screen and (min-width:60rem){.md-pb5{padding-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb5{padding-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-pb5{padding-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb5{padding-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pb5,.xlg-pb5{padding-bottom:5rem!important}}.pl5{padding-left:5rem!important}@media screen and (min-width:30rem){.sm-pl5{padding-left:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl5{padding-left:5rem!important}}@media screen and (min-width:60rem){.md-pl5{padding-left:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl5{padding-left:5rem!important}}@media screen and (min-width:90rem){.lg-pl5{padding-left:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl5{padding-left:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pl5,.xlg-pl5{padding-left:5rem!important}}.pv5{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width:30rem){.sm-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:60rem){.md-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pv5,.xlg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}.ph5{padding-left:5rem!important;padding-right:5rem!important}@media screen and (min-width:30rem){.sm-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:60rem){.md-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:90rem){.lg-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ph5,.xlg-ph5{padding-left:5rem!important;padding-right:5rem!important}}.pa6{padding:6rem!important}@media screen and (min-width:30rem){.sm-pa6{padding:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa6{padding:6rem!important}}@media screen and (min-width:60rem){.md-pa6{padding:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa6{padding:6rem!important}}@media screen and (min-width:90rem){.lg-pa6{padding:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa6{padding:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pa6,.xlg-pa6{padding:6rem!important}}.pt6{padding-top:6rem!important}@media screen and (min-width:30rem){.sm-pt6{padding-top:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt6{padding-top:6rem!important}}@media screen and (min-width:60rem){.md-pt6{padding-top:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt6{padding-top:6rem!important}}@media screen and (min-width:90rem){.lg-pt6{padding-top:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt6{padding-top:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pt6,.xlg-pt6{padding-top:6rem!important}}.pr6{padding-right:6rem!important}@media screen and (min-width:30rem){.sm-pr6{padding-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr6{padding-right:6rem!important}}@media screen and (min-width:60rem){.md-pr6{padding-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr6{padding-right:6rem!important}}@media screen and (min-width:90rem){.lg-pr6{padding-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr6{padding-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pr6,.xlg-pr6{padding-right:6rem!important}}.pb6{padding-bottom:6rem!important}@media screen and (min-width:30rem){.sm-pb6{padding-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb6{padding-bottom:6rem!important}}@media screen and (min-width:60rem){.md-pb6{padding-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb6{padding-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-pb6{padding-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb6{padding-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pb6,.xlg-pb6{padding-bottom:6rem!important}}.pl6{padding-left:6rem!important}@media screen and (min-width:30rem){.sm-pl6{padding-left:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl6{padding-left:6rem!important}}@media screen and (min-width:60rem){.md-pl6{padding-left:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl6{padding-left:6rem!important}}@media screen and (min-width:90rem){.lg-pl6{padding-left:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl6{padding-left:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pl6,.xlg-pl6{padding-left:6rem!important}}.pv6{padding-top:6rem!important;padding-bottom:6rem!important}@media screen and (min-width:30rem){.sm-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:60rem){.md-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pv6,.xlg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}.ph6{padding-left:6rem!important;padding-right:6rem!important}@media screen and (min-width:30rem){.sm-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:60rem){.md-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:90rem){.lg-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ph6,.xlg-ph6{padding-left:6rem!important;padding-right:6rem!important}}.pa7{padding:7rem!important}@media screen and (min-width:30rem){.sm-pa7{padding:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa7{padding:7rem!important}}@media screen and (min-width:60rem){.md-pa7{padding:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa7{padding:7rem!important}}@media screen and (min-width:90rem){.lg-pa7{padding:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa7{padding:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pa7,.xlg-pa7{padding:7rem!important}}.pt7{padding-top:7rem!important}@media screen and (min-width:30rem){.sm-pt7{padding-top:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt7{padding-top:7rem!important}}@media screen and (min-width:60rem){.md-pt7{padding-top:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt7{padding-top:7rem!important}}@media screen and (min-width:90rem){.lg-pt7{padding-top:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt7{padding-top:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pt7,.xlg-pt7{padding-top:7rem!important}}.pr7{padding-right:7rem!important}@media screen and (min-width:30rem){.sm-pr7{padding-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr7{padding-right:7rem!important}}@media screen and (min-width:60rem){.md-pr7{padding-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr7{padding-right:7rem!important}}@media screen and (min-width:90rem){.lg-pr7{padding-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr7{padding-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pr7,.xlg-pr7{padding-right:7rem!important}}.pb7{padding-bottom:7rem!important}@media screen and (min-width:30rem){.sm-pb7{padding-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb7{padding-bottom:7rem!important}}@media screen and (min-width:60rem){.md-pb7{padding-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb7{padding-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-pb7{padding-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb7{padding-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pb7,.xlg-pb7{padding-bottom:7rem!important}}.pl7{padding-left:7rem!important}@media screen and (min-width:30rem){.sm-pl7{padding-left:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl7{padding-left:7rem!important}}@media screen and (min-width:60rem){.md-pl7{padding-left:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl7{padding-left:7rem!important}}@media screen and (min-width:90rem){.lg-pl7{padding-left:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl7{padding-left:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pl7,.xlg-pl7{padding-left:7rem!important}}.pv7{padding-top:7rem!important;padding-bottom:7rem!important}@media screen and (min-width:30rem){.sm-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:60rem){.md-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pv7,.xlg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}.ph7{padding-left:7rem!important;padding-right:7rem!important}@media screen and (min-width:30rem){.sm-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:60rem){.md-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:90rem){.lg-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ph7,.xlg-ph7{padding-left:7rem!important;padding-right:7rem!important}}.pa8{padding:8rem!important}@media screen and (min-width:30rem){.sm-pa8{padding:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa8{padding:8rem!important}}@media screen and (min-width:60rem){.md-pa8{padding:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa8{padding:8rem!important}}@media screen and (min-width:90rem){.lg-pa8{padding:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa8{padding:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pa8,.xlg-pa8{padding:8rem!important}}.pt8{padding-top:8rem!important}@media screen and (min-width:30rem){.sm-pt8{padding-top:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt8{padding-top:8rem!important}}@media screen and (min-width:60rem){.md-pt8{padding-top:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt8{padding-top:8rem!important}}@media screen and (min-width:90rem){.lg-pt8{padding-top:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt8{padding-top:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pt8,.xlg-pt8{padding-top:8rem!important}}.pr8{padding-right:8rem!important}@media screen and (min-width:30rem){.sm-pr8{padding-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr8{padding-right:8rem!important}}@media screen and (min-width:60rem){.md-pr8{padding-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr8{padding-right:8rem!important}}@media screen and (min-width:90rem){.lg-pr8{padding-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr8{padding-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pr8,.xlg-pr8{padding-right:8rem!important}}.pb8{padding-bottom:8rem!important}@media screen and (min-width:30rem){.sm-pb8{padding-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb8{padding-bottom:8rem!important}}@media screen and (min-width:60rem){.md-pb8{padding-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb8{padding-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-pb8{padding-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb8{padding-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pb8,.xlg-pb8{padding-bottom:8rem!important}}.pl8{padding-left:8rem!important}@media screen and (min-width:30rem){.sm-pl8{padding-left:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl8{padding-left:8rem!important}}@media screen and (min-width:60rem){.md-pl8{padding-left:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl8{padding-left:8rem!important}}@media screen and (min-width:90rem){.lg-pl8{padding-left:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl8{padding-left:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pl8,.xlg-pl8{padding-left:8rem!important}}.pv8{padding-top:8rem!important;padding-bottom:8rem!important}@media screen and (min-width:30rem){.sm-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:60rem){.md-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pv8,.xlg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}.ph8{padding-left:8rem!important;padding-right:8rem!important}@media screen and (min-width:30rem){.sm-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:60rem){.md-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:90rem){.lg-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ph8,.xlg-ph8{padding-left:8rem!important;padding-right:8rem!important}}.pa9{padding:9rem!important}@media screen and (min-width:30rem){.sm-pa9{padding:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa9{padding:9rem!important}}@media screen and (min-width:60rem){.md-pa9{padding:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa9{padding:9rem!important}}@media screen and (min-width:90rem){.lg-pa9{padding:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa9{padding:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pa9,.xlg-pa9{padding:9rem!important}}.pt9{padding-top:9rem!important}@media screen and (min-width:30rem){.sm-pt9{padding-top:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt9{padding-top:9rem!important}}@media screen and (min-width:60rem){.md-pt9{padding-top:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt9{padding-top:9rem!important}}@media screen and (min-width:90rem){.lg-pt9{padding-top:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt9{padding-top:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pt9,.xlg-pt9{padding-top:9rem!important}}.pr9{padding-right:9rem!important}@media screen and (min-width:30rem){.sm-pr9{padding-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr9{padding-right:9rem!important}}@media screen and (min-width:60rem){.md-pr9{padding-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr9{padding-right:9rem!important}}@media screen and (min-width:90rem){.lg-pr9{padding-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr9{padding-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pr9,.xlg-pr9{padding-right:9rem!important}}.pb9{padding-bottom:9rem!important}@media screen and (min-width:30rem){.sm-pb9{padding-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb9{padding-bottom:9rem!important}}@media screen and (min-width:60rem){.md-pb9{padding-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb9{padding-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-pb9{padding-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb9{padding-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pb9,.xlg-pb9{padding-bottom:9rem!important}}.pl9{padding-left:9rem!important}@media screen and (min-width:30rem){.sm-pl9{padding-left:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl9{padding-left:9rem!important}}@media screen and (min-width:60rem){.md-pl9{padding-left:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl9{padding-left:9rem!important}}@media screen and (min-width:90rem){.lg-pl9{padding-left:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl9{padding-left:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pl9,.xlg-pl9{padding-left:9rem!important}}.pv9{padding-top:9rem!important;padding-bottom:9rem!important}@media screen and (min-width:30rem){.sm-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:60rem){.md-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pv9,.xlg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}.ph9{padding-left:9rem!important;padding-right:9rem!important}@media screen and (min-width:30rem){.sm-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:60rem){.md-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:90rem){.lg-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ph9,.xlg-ph9{padding-left:9rem!important;padding-right:9rem!important}}.pa10{padding:10rem!important}@media screen and (min-width:30rem){.sm-pa10{padding:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa10{padding:10rem!important}}@media screen and (min-width:60rem){.md-pa10{padding:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa10{padding:10rem!important}}@media screen and (min-width:90rem){.lg-pa10{padding:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa10{padding:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pa10,.xlg-pa10{padding:10rem!important}}.pt10{padding-top:10rem!important}@media screen and (min-width:30rem){.sm-pt10{padding-top:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt10{padding-top:10rem!important}}@media screen and (min-width:60rem){.md-pt10{padding-top:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt10{padding-top:10rem!important}}@media screen and (min-width:90rem){.lg-pt10{padding-top:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt10{padding-top:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pt10,.xlg-pt10{padding-top:10rem!important}}.pr10{padding-right:10rem!important}@media screen and (min-width:30rem){.sm-pr10{padding-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr10{padding-right:10rem!important}}@media screen and (min-width:60rem){.md-pr10{padding-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr10{padding-right:10rem!important}}@media screen and (min-width:90rem){.lg-pr10{padding-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr10{padding-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pr10,.xlg-pr10{padding-right:10rem!important}}.pb10{padding-bottom:10rem!important}@media screen and (min-width:30rem){.sm-pb10{padding-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb10{padding-bottom:10rem!important}}@media screen and (min-width:60rem){.md-pb10{padding-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb10{padding-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-pb10{padding-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb10{padding-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pb10,.xlg-pb10{padding-bottom:10rem!important}}.pl10{padding-left:10rem!important}@media screen and (min-width:30rem){.sm-pl10{padding-left:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl10{padding-left:10rem!important}}@media screen and (min-width:60rem){.md-pl10{padding-left:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl10{padding-left:10rem!important}}@media screen and (min-width:90rem){.lg-pl10{padding-left:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl10{padding-left:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pl10,.xlg-pl10{padding-left:10rem!important}}.pv10{padding-top:10rem!important;padding-bottom:10rem!important}@media screen and (min-width:30rem){.sm-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:60rem){.md-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pv10,.xlg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}.ph10{padding-left:10rem!important;padding-right:10rem!important}@media screen and (min-width:30rem){.sm-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:60rem){.md-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:90rem){.lg-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ph10,.xlg-ph10{padding-left:10rem!important;padding-right:10rem!important}}.pa0{padding:0!important}@media screen and (min-width:30rem){.sm-pa0{padding:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pa0{padding:0!important}}@media screen and (min-width:60rem){.md-pa0{padding:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa0{padding:0!important}}@media screen and (min-width:90rem){.lg-pa0{padding:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa0{padding:0!important}}@media screen and (min-width:144rem){.only-xlg-pa0,.xlg-pa0{padding:0!important}}.pt0{padding-top:0!important}@media screen and (min-width:30rem){.sm-pt0{padding-top:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pt0{padding-top:0!important}}@media screen and (min-width:60rem){.md-pt0{padding-top:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt0{padding-top:0!important}}@media screen and (min-width:90rem){.lg-pt0{padding-top:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt0{padding-top:0!important}}@media screen and (min-width:144rem){.only-xlg-pt0,.xlg-pt0{padding-top:0!important}}.pr0{padding-right:0!important}@media screen and (min-width:30rem){.sm-pr0{padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pr0{padding-right:0!important}}@media screen and (min-width:60rem){.md-pr0{padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr0{padding-right:0!important}}@media screen and (min-width:90rem){.lg-pr0{padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr0{padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-pr0,.xlg-pr0{padding-right:0!important}}.pb0{padding-bottom:0!important}@media screen and (min-width:30rem){.sm-pb0{padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pb0{padding-bottom:0!important}}@media screen and (min-width:60rem){.md-pb0{padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb0{padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-pb0{padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb0{padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-pb0,.xlg-pb0{padding-bottom:0!important}}.pl0{padding-left:0!important}@media screen and (min-width:30rem){.sm-pl0{padding-left:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pl0{padding-left:0!important}}@media screen and (min-width:60rem){.md-pl0{padding-left:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl0{padding-left:0!important}}@media screen and (min-width:90rem){.lg-pl0{padding-left:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl0{padding-left:0!important}}@media screen and (min-width:144rem){.only-xlg-pl0,.xlg-pl0{padding-left:0!important}}.pv0{padding-top:0!important;padding-bottom:0!important}@media screen and (min-width:30rem){.sm-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem){.md-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-pv0,.xlg-pv0{padding-top:0!important;padding-bottom:0!important}}.ph0{padding-left:0!important;padding-right:0!important}@media screen and (min-width:30rem){.sm-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem){.md-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem){.lg-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-ph0,.xlg-ph0{padding-left:0!important;padding-right:0!important}}.ma1{margin:1rem!important}@media screen and (min-width:30rem){.sm-ma1{margin:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma1{margin:1rem!important}}@media screen and (min-width:60rem){.md-ma1{margin:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma1{margin:1rem!important}}@media screen and (min-width:90rem){.lg-ma1{margin:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma1{margin:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ma1,.xlg-ma1{margin:1rem!important}}.mt1{margin-top:1rem!important}@media screen and (min-width:30rem){.sm-mt1{margin-top:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt1{margin-top:1rem!important}}@media screen and (min-width:60rem){.md-mt1{margin-top:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt1{margin-top:1rem!important}}@media screen and (min-width:90rem){.lg-mt1{margin-top:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt1{margin-top:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mt1,.xlg-mt1{margin-top:1rem!important}}.mr1{margin-right:1rem!important}@media screen and (min-width:30rem){.sm-mr1{margin-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr1{margin-right:1rem!important}}@media screen and (min-width:60rem){.md-mr1{margin-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr1{margin-right:1rem!important}}@media screen and (min-width:90rem){.lg-mr1{margin-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr1{margin-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mr1,.xlg-mr1{margin-right:1rem!important}}.mb1{margin-bottom:1rem!important}@media screen and (min-width:30rem){.sm-mb1{margin-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb1{margin-bottom:1rem!important}}@media screen and (min-width:60rem){.md-mb1{margin-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb1{margin-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-mb1{margin-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb1{margin-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mb1,.xlg-mb1{margin-bottom:1rem!important}}.ml1{margin-left:1rem!important}@media screen and (min-width:30rem){.sm-ml1{margin-left:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml1{margin-left:1rem!important}}@media screen and (min-width:60rem){.md-ml1{margin-left:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml1{margin-left:1rem!important}}@media screen and (min-width:90rem){.lg-ml1{margin-left:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml1{margin-left:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ml1,.xlg-ml1{margin-left:1rem!important}}.mv1{margin-top:1rem!important;margin-bottom:1rem!important}@media screen and (min-width:30rem){.sm-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:60rem){.md-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mv1,.xlg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}.mh1{margin-left:1rem!important;margin-right:1rem!important}@media screen and (min-width:30rem){.sm-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:60rem){.md-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:90rem){.lg-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mh1,.xlg-mh1{margin-left:1rem!important;margin-right:1rem!important}}.ma2{margin:2rem!important}@media screen and (min-width:30rem){.sm-ma2{margin:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma2{margin:2rem!important}}@media screen and (min-width:60rem){.md-ma2{margin:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma2{margin:2rem!important}}@media screen and (min-width:90rem){.lg-ma2{margin:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma2{margin:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ma2,.xlg-ma2{margin:2rem!important}}.mt2{margin-top:2rem!important}@media screen and (min-width:30rem){.sm-mt2{margin-top:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt2{margin-top:2rem!important}}@media screen and (min-width:60rem){.md-mt2{margin-top:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt2{margin-top:2rem!important}}@media screen and (min-width:90rem){.lg-mt2{margin-top:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt2{margin-top:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mt2,.xlg-mt2{margin-top:2rem!important}}.mr2{margin-right:2rem!important}@media screen and (min-width:30rem){.sm-mr2{margin-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr2{margin-right:2rem!important}}@media screen and (min-width:60rem){.md-mr2{margin-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr2{margin-right:2rem!important}}@media screen and (min-width:90rem){.lg-mr2{margin-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr2{margin-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mr2,.xlg-mr2{margin-right:2rem!important}}.main-content>pre,.mb2{margin-bottom:2rem!important}@media screen and (min-width:30rem){.sm-mb2{margin-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb2{margin-bottom:2rem!important}}@media screen and (min-width:60rem){.md-mb2{margin-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb2{margin-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-mb2{margin-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb2{margin-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mb2,.xlg-mb2{margin-bottom:2rem!important}}.ml2{margin-left:2rem!important}@media screen and (min-width:30rem){.sm-ml2{margin-left:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml2{margin-left:2rem!important}}@media screen and (min-width:60rem){.md-ml2{margin-left:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml2{margin-left:2rem!important}}@media screen and (min-width:90rem){.lg-ml2{margin-left:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml2{margin-left:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ml2,.xlg-ml2{margin-left:2rem!important}}.mv2{margin-top:2rem!important;margin-bottom:2rem!important}@media screen and (min-width:30rem){.sm-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:60rem){.md-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mv2,.xlg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}.mh2{margin-left:2rem!important;margin-right:2rem!important}@media screen and (min-width:30rem){.sm-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:60rem){.md-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:90rem){.lg-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mh2,.xlg-mh2{margin-left:2rem!important;margin-right:2rem!important}}.ma3{margin:3rem!important}@media screen and (min-width:30rem){.sm-ma3{margin:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma3{margin:3rem!important}}@media screen and (min-width:60rem){.md-ma3{margin:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma3{margin:3rem!important}}@media screen and (min-width:90rem){.lg-ma3{margin:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma3{margin:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ma3,.xlg-ma3{margin:3rem!important}}.mt3{margin-top:3rem!important}@media screen and (min-width:30rem){.sm-mt3{margin-top:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt3{margin-top:3rem!important}}@media screen and (min-width:60rem){.md-mt3{margin-top:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt3{margin-top:3rem!important}}@media screen and (min-width:90rem){.lg-mt3{margin-top:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt3{margin-top:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mt3,.xlg-mt3{margin-top:3rem!important}}.mr3{margin-right:3rem!important}@media screen and (min-width:30rem){.sm-mr3{margin-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr3{margin-right:3rem!important}}@media screen and (min-width:60rem){.md-mr3{margin-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr3{margin-right:3rem!important}}@media screen and (min-width:90rem){.lg-mr3{margin-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr3{margin-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mr3,.xlg-mr3{margin-right:3rem!important}}.mb3{margin-bottom:3rem!important}@media screen and (min-width:30rem){.sm-mb3{margin-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb3{margin-bottom:3rem!important}}@media screen and (min-width:60rem){.md-mb3{margin-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb3{margin-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-mb3{margin-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb3{margin-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mb3,.xlg-mb3{margin-bottom:3rem!important}}.ml3{margin-left:3rem!important}@media screen and (min-width:30rem){.sm-ml3{margin-left:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml3{margin-left:3rem!important}}@media screen and (min-width:60rem){.md-ml3{margin-left:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml3{margin-left:3rem!important}}@media screen and (min-width:90rem){.lg-ml3{margin-left:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml3{margin-left:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ml3,.xlg-ml3{margin-left:3rem!important}}.mv3{margin-top:3rem!important;margin-bottom:3rem!important}@media screen and (min-width:30rem){.sm-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:60rem){.md-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mv3,.xlg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}.mh3{margin-left:3rem!important;margin-right:3rem!important}@media screen and (min-width:30rem){.sm-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:60rem){.md-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:90rem){.lg-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mh3,.xlg-mh3{margin-left:3rem!important;margin-right:3rem!important}}.ma4{margin:4rem!important}@media screen and (min-width:30rem){.sm-ma4{margin:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma4{margin:4rem!important}}@media screen and (min-width:60rem){.md-ma4{margin:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma4{margin:4rem!important}}@media screen and (min-width:90rem){.lg-ma4{margin:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma4{margin:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ma4,.xlg-ma4{margin:4rem!important}}.mt4{margin-top:4rem!important}@media screen and (min-width:30rem){.sm-mt4{margin-top:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt4{margin-top:4rem!important}}@media screen and (min-width:60rem){.md-mt4{margin-top:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt4{margin-top:4rem!important}}@media screen and (min-width:90rem){.lg-mt4{margin-top:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt4{margin-top:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mt4,.xlg-mt4{margin-top:4rem!important}}.mr4{margin-right:4rem!important}@media screen and (min-width:30rem){.sm-mr4{margin-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr4{margin-right:4rem!important}}@media screen and (min-width:60rem){.md-mr4{margin-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr4{margin-right:4rem!important}}@media screen and (min-width:90rem){.lg-mr4{margin-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr4{margin-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mr4,.xlg-mr4{margin-right:4rem!important}}.mb4{margin-bottom:4rem!important}@media screen and (min-width:30rem){.sm-mb4{margin-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb4{margin-bottom:4rem!important}}@media screen and (min-width:60rem){.main-content>pre,.md-mb4{margin-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb4{margin-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-mb4{margin-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb4{margin-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mb4,.xlg-mb4{margin-bottom:4rem!important}}.ml4{margin-left:4rem!important}@media screen and (min-width:30rem){.sm-ml4{margin-left:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml4{margin-left:4rem!important}}@media screen and (min-width:60rem){.md-ml4{margin-left:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml4{margin-left:4rem!important}}@media screen and (min-width:90rem){.lg-ml4{margin-left:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml4{margin-left:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ml4,.xlg-ml4{margin-left:4rem!important}}.mv4{margin-top:4rem!important;margin-bottom:4rem!important}@media screen and (min-width:30rem){.sm-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:60rem){.md-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mv4,.xlg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}.mh4{margin-left:4rem!important;margin-right:4rem!important}@media screen and (min-width:30rem){.sm-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:60rem){.md-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:90rem){.lg-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mh4,.xlg-mh4{margin-left:4rem!important;margin-right:4rem!important}}.ma5{margin:5rem!important}@media screen and (min-width:30rem){.sm-ma5{margin:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma5{margin:5rem!important}}@media screen and (min-width:60rem){.md-ma5{margin:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma5{margin:5rem!important}}@media screen and (min-width:90rem){.lg-ma5{margin:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma5{margin:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ma5,.xlg-ma5{margin:5rem!important}}.mt5{margin-top:5rem!important}@media screen and (min-width:30rem){.sm-mt5{margin-top:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt5{margin-top:5rem!important}}@media screen and (min-width:60rem){.md-mt5{margin-top:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt5{margin-top:5rem!important}}@media screen and (min-width:90rem){.lg-mt5{margin-top:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt5{margin-top:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mt5,.xlg-mt5{margin-top:5rem!important}}.mr5{margin-right:5rem!important}@media screen and (min-width:30rem){.sm-mr5{margin-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr5{margin-right:5rem!important}}@media screen and (min-width:60rem){.md-mr5{margin-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr5{margin-right:5rem!important}}@media screen and (min-width:90rem){.lg-mr5{margin-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr5{margin-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mr5,.xlg-mr5{margin-right:5rem!important}}.mb5{margin-bottom:5rem!important}@media screen and (min-width:30rem){.sm-mb5{margin-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb5{margin-bottom:5rem!important}}@media screen and (min-width:60rem){.md-mb5{margin-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb5{margin-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-mb5{margin-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb5{margin-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mb5,.xlg-mb5{margin-bottom:5rem!important}}.ml5{margin-left:5rem!important}@media screen and (min-width:30rem){.sm-ml5{margin-left:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml5{margin-left:5rem!important}}@media screen and (min-width:60rem){.md-ml5{margin-left:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml5{margin-left:5rem!important}}@media screen and (min-width:90rem){.lg-ml5{margin-left:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml5{margin-left:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ml5,.xlg-ml5{margin-left:5rem!important}}.mv5{margin-top:5rem!important;margin-bottom:5rem!important}@media screen and (min-width:30rem){.sm-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:60rem){.md-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mv5,.xlg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}.mh5{margin-left:5rem!important;margin-right:5rem!important}@media screen and (min-width:30rem){.sm-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:60rem){.md-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:90rem){.lg-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mh5,.xlg-mh5{margin-left:5rem!important;margin-right:5rem!important}}.ma6{margin:6rem!important}@media screen and (min-width:30rem){.sm-ma6{margin:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma6{margin:6rem!important}}@media screen and (min-width:60rem){.md-ma6{margin:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma6{margin:6rem!important}}@media screen and (min-width:90rem){.lg-ma6{margin:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma6{margin:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ma6,.xlg-ma6{margin:6rem!important}}.mt6{margin-top:6rem!important}@media screen and (min-width:30rem){.sm-mt6{margin-top:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt6{margin-top:6rem!important}}@media screen and (min-width:60rem){.md-mt6{margin-top:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt6{margin-top:6rem!important}}@media screen and (min-width:90rem){.lg-mt6{margin-top:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt6{margin-top:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mt6,.xlg-mt6{margin-top:6rem!important}}.mr6{margin-right:6rem!important}@media screen and (min-width:30rem){.sm-mr6{margin-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr6{margin-right:6rem!important}}@media screen and (min-width:60rem){.md-mr6{margin-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr6{margin-right:6rem!important}}@media screen and (min-width:90rem){.lg-mr6{margin-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr6{margin-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mr6,.xlg-mr6{margin-right:6rem!important}}.mb6{margin-bottom:6rem!important}@media screen and (min-width:30rem){.sm-mb6{margin-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb6{margin-bottom:6rem!important}}@media screen and (min-width:60rem){.md-mb6{margin-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb6{margin-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-mb6{margin-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb6{margin-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mb6,.xlg-mb6{margin-bottom:6rem!important}}.ml6{margin-left:6rem!important}@media screen and (min-width:30rem){.sm-ml6{margin-left:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml6{margin-left:6rem!important}}@media screen and (min-width:60rem){.md-ml6{margin-left:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml6{margin-left:6rem!important}}@media screen and (min-width:90rem){.lg-ml6{margin-left:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml6{margin-left:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ml6,.xlg-ml6{margin-left:6rem!important}}.mv6{margin-top:6rem!important;margin-bottom:6rem!important}@media screen and (min-width:30rem){.sm-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:60rem){.md-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mv6,.xlg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}.mh6{margin-left:6rem!important;margin-right:6rem!important}@media screen and (min-width:30rem){.sm-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:60rem){.md-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:90rem){.lg-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mh6,.xlg-mh6{margin-left:6rem!important;margin-right:6rem!important}}.ma7{margin:7rem!important}@media screen and (min-width:30rem){.sm-ma7{margin:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma7{margin:7rem!important}}@media screen and (min-width:60rem){.md-ma7{margin:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma7{margin:7rem!important}}@media screen and (min-width:90rem){.lg-ma7{margin:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma7{margin:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ma7,.xlg-ma7{margin:7rem!important}}.mt7{margin-top:7rem!important}@media screen and (min-width:30rem){.sm-mt7{margin-top:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt7{margin-top:7rem!important}}@media screen and (min-width:60rem){.md-mt7{margin-top:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt7{margin-top:7rem!important}}@media screen and (min-width:90rem){.lg-mt7{margin-top:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt7{margin-top:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mt7,.xlg-mt7{margin-top:7rem!important}}.mr7{margin-right:7rem!important}@media screen and (min-width:30rem){.sm-mr7{margin-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr7{margin-right:7rem!important}}@media screen and (min-width:60rem){.md-mr7{margin-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr7{margin-right:7rem!important}}@media screen and (min-width:90rem){.lg-mr7{margin-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr7{margin-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mr7,.xlg-mr7{margin-right:7rem!important}}.mb7{margin-bottom:7rem!important}@media screen and (min-width:30rem){.sm-mb7{margin-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb7{margin-bottom:7rem!important}}@media screen and (min-width:60rem){.md-mb7{margin-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb7{margin-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-mb7{margin-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb7{margin-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mb7,.xlg-mb7{margin-bottom:7rem!important}}.ml7{margin-left:7rem!important}@media screen and (min-width:30rem){.sm-ml7{margin-left:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml7{margin-left:7rem!important}}@media screen and (min-width:60rem){.md-ml7{margin-left:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml7{margin-left:7rem!important}}@media screen and (min-width:90rem){.lg-ml7{margin-left:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml7{margin-left:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ml7,.xlg-ml7{margin-left:7rem!important}}.mv7{margin-top:7rem!important;margin-bottom:7rem!important}@media screen and (min-width:30rem){.sm-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:60rem){.md-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mv7,.xlg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}.mh7{margin-left:7rem!important;margin-right:7rem!important}@media screen and (min-width:30rem){.sm-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:60rem){.md-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:90rem){.lg-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mh7,.xlg-mh7{margin-left:7rem!important;margin-right:7rem!important}}.ma8{margin:8rem!important}@media screen and (min-width:30rem){.sm-ma8{margin:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma8{margin:8rem!important}}@media screen and (min-width:60rem){.md-ma8{margin:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma8{margin:8rem!important}}@media screen and (min-width:90rem){.lg-ma8{margin:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma8{margin:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ma8,.xlg-ma8{margin:8rem!important}}.mt8{margin-top:8rem!important}@media screen and (min-width:30rem){.sm-mt8{margin-top:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt8{margin-top:8rem!important}}@media screen and (min-width:60rem){.md-mt8{margin-top:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt8{margin-top:8rem!important}}@media screen and (min-width:90rem){.lg-mt8{margin-top:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt8{margin-top:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mt8,.xlg-mt8{margin-top:8rem!important}}.mr8{margin-right:8rem!important}@media screen and (min-width:30rem){.sm-mr8{margin-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr8{margin-right:8rem!important}}@media screen and (min-width:60rem){.md-mr8{margin-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr8{margin-right:8rem!important}}@media screen and (min-width:90rem){.lg-mr8{margin-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr8{margin-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mr8,.xlg-mr8{margin-right:8rem!important}}.mb8{margin-bottom:8rem!important}@media screen and (min-width:30rem){.sm-mb8{margin-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb8{margin-bottom:8rem!important}}@media screen and (min-width:60rem){.md-mb8{margin-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb8{margin-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-mb8{margin-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb8{margin-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mb8,.xlg-mb8{margin-bottom:8rem!important}}.ml8{margin-left:8rem!important}@media screen and (min-width:30rem){.sm-ml8{margin-left:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml8{margin-left:8rem!important}}@media screen and (min-width:60rem){.md-ml8{margin-left:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml8{margin-left:8rem!important}}@media screen and (min-width:90rem){.lg-ml8{margin-left:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml8{margin-left:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ml8,.xlg-ml8{margin-left:8rem!important}}.mv8{margin-top:8rem!important;margin-bottom:8rem!important}@media screen and (min-width:30rem){.sm-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:60rem){.md-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mv8,.xlg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}.mh8{margin-left:8rem!important;margin-right:8rem!important}@media screen and (min-width:30rem){.sm-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:60rem){.md-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:90rem){.lg-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mh8,.xlg-mh8{margin-left:8rem!important;margin-right:8rem!important}}.ma9{margin:9rem!important}@media screen and (min-width:30rem){.sm-ma9{margin:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma9{margin:9rem!important}}@media screen and (min-width:60rem){.md-ma9{margin:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma9{margin:9rem!important}}@media screen and (min-width:90rem){.lg-ma9{margin:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma9{margin:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ma9,.xlg-ma9{margin:9rem!important}}.mt9{margin-top:9rem!important}@media screen and (min-width:30rem){.sm-mt9{margin-top:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt9{margin-top:9rem!important}}@media screen and (min-width:60rem){.md-mt9{margin-top:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt9{margin-top:9rem!important}}@media screen and (min-width:90rem){.lg-mt9{margin-top:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt9{margin-top:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mt9,.xlg-mt9{margin-top:9rem!important}}.mr9{margin-right:9rem!important}@media screen and (min-width:30rem){.sm-mr9{margin-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr9{margin-right:9rem!important}}@media screen and (min-width:60rem){.md-mr9{margin-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr9{margin-right:9rem!important}}@media screen and (min-width:90rem){.lg-mr9{margin-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr9{margin-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mr9,.xlg-mr9{margin-right:9rem!important}}.mb9{margin-bottom:9rem!important}@media screen and (min-width:30rem){.sm-mb9{margin-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb9{margin-bottom:9rem!important}}@media screen and (min-width:60rem){.md-mb9{margin-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb9{margin-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-mb9{margin-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb9{margin-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mb9,.xlg-mb9{margin-bottom:9rem!important}}.ml9{margin-left:9rem!important}@media screen and (min-width:30rem){.sm-ml9{margin-left:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml9{margin-left:9rem!important}}@media screen and (min-width:60rem){.md-ml9{margin-left:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml9{margin-left:9rem!important}}@media screen and (min-width:90rem){.lg-ml9{margin-left:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml9{margin-left:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ml9,.xlg-ml9{margin-left:9rem!important}}.mv9{margin-top:9rem!important;margin-bottom:9rem!important}@media screen and (min-width:30rem){.sm-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:60rem){.md-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mv9,.xlg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}.mh9{margin-left:9rem!important;margin-right:9rem!important}@media screen and (min-width:30rem){.sm-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:60rem){.md-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:90rem){.lg-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mh9,.xlg-mh9{margin-left:9rem!important;margin-right:9rem!important}}.ma10{margin:10rem!important}@media screen and (min-width:30rem){.sm-ma10{margin:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma10{margin:10rem!important}}@media screen and (min-width:60rem){.md-ma10{margin:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma10{margin:10rem!important}}@media screen and (min-width:90rem){.lg-ma10{margin:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma10{margin:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ma10,.xlg-ma10{margin:10rem!important}}.mt10{margin-top:10rem!important}@media screen and (min-width:30rem){.sm-mt10{margin-top:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt10{margin-top:10rem!important}}@media screen and (min-width:60rem){.md-mt10{margin-top:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt10{margin-top:10rem!important}}@media screen and (min-width:90rem){.lg-mt10{margin-top:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt10{margin-top:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mt10,.xlg-mt10{margin-top:10rem!important}}.mr10{margin-right:10rem!important}@media screen and (min-width:30rem){.sm-mr10{margin-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr10{margin-right:10rem!important}}@media screen and (min-width:60rem){.md-mr10{margin-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr10{margin-right:10rem!important}}@media screen and (min-width:90rem){.lg-mr10{margin-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr10{margin-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mr10,.xlg-mr10{margin-right:10rem!important}}.mb10{margin-bottom:10rem!important}@media screen and (min-width:30rem){.sm-mb10{margin-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb10{margin-bottom:10rem!important}}@media screen and (min-width:60rem){.md-mb10{margin-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb10{margin-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-mb10{margin-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb10{margin-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mb10,.xlg-mb10{margin-bottom:10rem!important}}.ml10{margin-left:10rem!important}@media screen and (min-width:30rem){.sm-ml10{margin-left:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml10{margin-left:10rem!important}}@media screen and (min-width:60rem){.md-ml10{margin-left:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml10{margin-left:10rem!important}}@media screen and (min-width:90rem){.lg-ml10{margin-left:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml10{margin-left:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ml10,.xlg-ml10{margin-left:10rem!important}}.mv10{margin-top:10rem!important;margin-bottom:10rem!important}@media screen and (min-width:30rem){.sm-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:60rem){.md-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mv10,.xlg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}.mh10{margin-left:10rem!important;margin-right:10rem!important}@media screen and (min-width:30rem){.sm-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:60rem){.md-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:90rem){.lg-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mh10,.xlg-mh10{margin-left:10rem!important;margin-right:10rem!important}}.ma0{margin:0!important}@media screen and (min-width:30rem){.sm-ma0{margin:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ma0{margin:0!important}}@media screen and (min-width:60rem){.md-ma0{margin:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma0{margin:0!important}}@media screen and (min-width:90rem){.lg-ma0{margin:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma0{margin:0!important}}@media screen and (min-width:144rem){.only-xlg-ma0,.xlg-ma0{margin:0!important}}.mt0{margin-top:0!important}@media screen and (min-width:30rem){.sm-mt0{margin-top:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mt0{margin-top:0!important}}@media screen and (min-width:60rem){.md-mt0{margin-top:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt0{margin-top:0!important}}@media screen and (min-width:90rem){.lg-mt0{margin-top:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt0{margin-top:0!important}}@media screen and (min-width:144rem){.only-xlg-mt0,.xlg-mt0{margin-top:0!important}}.mr0{margin-right:0!important}@media screen and (min-width:30rem){.sm-mr0{margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mr0{margin-right:0!important}}@media screen and (min-width:60rem){.md-mr0{margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr0{margin-right:0!important}}@media screen and (min-width:90rem){.lg-mr0{margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr0{margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-mr0,.xlg-mr0{margin-right:0!important}}.mb0{margin-bottom:0!important}@media screen and (min-width:30rem){.sm-mb0{margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mb0{margin-bottom:0!important}}@media screen and (min-width:60rem){.md-mb0{margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb0{margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-mb0{margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb0{margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-mb0,.xlg-mb0{margin-bottom:0!important}}.ml0{margin-left:0!important}@media screen and (min-width:30rem){.sm-ml0{margin-left:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ml0{margin-left:0!important}}@media screen and (min-width:60rem){.md-ml0{margin-left:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml0{margin-left:0!important}}@media screen and (min-width:90rem){.lg-ml0{margin-left:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml0{margin-left:0!important}}@media screen and (min-width:144rem){.only-xlg-ml0,.xlg-ml0{margin-left:0!important}}.mv0{margin-top:0!important;margin-bottom:0!important}@media screen and (min-width:30rem){.sm-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem){.md-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-mv0,.xlg-mv0{margin-top:0!important;margin-bottom:0!important}}.mh0{margin-left:0!important;margin-right:0!important}@media screen and (min-width:30rem){.sm-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem){.md-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem){.lg-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-mh0,.xlg-mh0{margin-left:0!important;margin-right:0!important}}.xp{padding:0!important}.xpv{padding-top:0!important;padding-bottom:0!important}.xph{padding-left:0!important;padding-right:0!important}.xm{margin:0!important}.xmv{margin-top:0!important;margin-bottom:0!important}.xmh{margin-left:0!important;margin-right:0!important}@media screen and (min-width:30rem){.sm-xp{padding:0!important}}@media screen and (min-width:30rem){.sm-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:30rem){.sm-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:30rem){.sm-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (max-width:59.99999rem){.only-sm-xp{padding:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xph{padding-left:0!important;padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:60rem){.md-xp{padding:0!important}}@media screen and (min-width:60rem){.md-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem){.md-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem){.md-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xp{padding:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:90rem){.lg-xp{padding:0!important}}@media screen and (min-width:90rem){.lg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem){.lg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xp{padding:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:144rem){.xlg-xp{padding:0!important}}@media screen and (min-width:144rem){.xlg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.xlg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.xlg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:144rem){.only-xlg-xp{padding:0!important}}@media screen and (min-width:144rem){.only-xlg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:30rem){.sm-xm{margin:0!important}}@media screen and (min-width:30rem){.sm-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:30rem){.sm-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:30rem){.sm-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (max-width:59.99999rem){.only-sm-xm{margin:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:60rem){.md-xm{margin:0!important}}@media screen and (min-width:60rem){.md-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem){.md-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem){.md-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xm{margin:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:90rem){.lg-xm{margin:0!important}}@media screen and (min-width:90rem){.lg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem){.lg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xm{margin:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:144rem){.xlg-xm{margin:0!important}}@media screen and (min-width:144rem){.xlg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.xlg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.xlg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:144rem){.only-xlg-xm{margin:0!important}}@media screen and (min-width:144rem){.only-xlg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-center{margin-left:auto!important;margin-right:auto!important}}.lh1{line-height:1!important}.lh1-1{line-height:1.1!important}.lh1-2{line-height:1.2!important}.lh1-3{line-height:1.3!important}.lh1-4{line-height:1.4!important}.lh1-5{line-height:1.5!important}.lh1-6{line-height:1.6!important}.lh1-7{line-height:1.7!important}.lh1-8{line-height:1.8!important}.lh1-9{line-height:1.9!important}.lh2{line-height:2!important}@media screen and (min-width:30rem){.sm-lh1{line-height:1!important}}@media screen and (min-width:30rem){.sm-lh1-1{line-height:1.1!important}}@media screen and (min-width:30rem){.sm-lh1-2{line-height:1.2!important}}@media screen and (min-width:30rem){.sm-lh1-3{line-height:1.3!important}}@media screen and (min-width:30rem){.sm-lh1-4{line-height:1.4!important}}@media screen and (min-width:30rem){.sm-lh1-5{line-height:1.5!important}}@media screen and (min-width:30rem){.sm-lh1-6{line-height:1.6!important}}@media screen and (min-width:30rem){.sm-lh1-7{line-height:1.7!important}}@media screen and (min-width:30rem){.sm-lh1-8{line-height:1.8!important}}@media screen and (min-width:30rem){.sm-lh1-9{line-height:1.9!important}}@media screen and (min-width:30rem){.sm-lh2{line-height:2!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1{line-height:1!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-1{line-height:1.1!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-2{line-height:1.2!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-3{line-height:1.3!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-4{line-height:1.4!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-5{line-height:1.5!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-6{line-height:1.6!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-7{line-height:1.7!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-8{line-height:1.8!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-9{line-height:1.9!important}}@media screen and (max-width:59.99999rem){.only-sm-lh2{line-height:2!important}}@media screen and (min-width:60rem){.md-lh1{line-height:1!important}}@media screen and (min-width:60rem){.md-lh1-1{line-height:1.1!important}}@media screen and (min-width:60rem){.md-lh1-2{line-height:1.2!important}}@media screen and (min-width:60rem){.md-lh1-3{line-height:1.3!important}}@media screen and (min-width:60rem){.md-lh1-4{line-height:1.4!important}}@media screen and (min-width:60rem){.md-lh1-5{line-height:1.5!important}}@media screen and (min-width:60rem){.md-lh1-6{line-height:1.6!important}}@media screen and (min-width:60rem){.md-lh1-7{line-height:1.7!important}}@media screen and (min-width:60rem){.md-lh1-8{line-height:1.8!important}}@media screen and (min-width:60rem){.md-lh1-9{line-height:1.9!important}}@media screen and (min-width:60rem){.md-lh2{line-height:2!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1{line-height:1!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-1{line-height:1.1!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-2{line-height:1.2!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-3{line-height:1.3!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-4{line-height:1.4!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-5{line-height:1.5!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-6{line-height:1.6!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-7{line-height:1.7!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-8{line-height:1.8!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-9{line-height:1.9!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh2{line-height:2!important}}@media screen and (min-width:90rem){.lg-lh1{line-height:1!important}}@media screen and (min-width:90rem){.lg-lh1-1{line-height:1.1!important}}@media screen and (min-width:90rem){.lg-lh1-2{line-height:1.2!important}}@media screen and (min-width:90rem){.lg-lh1-3{line-height:1.3!important}}@media screen and (min-width:90rem){.lg-lh1-4{line-height:1.4!important}}@media screen and (min-width:90rem){.lg-lh1-5{line-height:1.5!important}}@media screen and (min-width:90rem){.lg-lh1-6{line-height:1.6!important}}@media screen and (min-width:90rem){.lg-lh1-7{line-height:1.7!important}}@media screen and (min-width:90rem){.lg-lh1-8{line-height:1.8!important}}@media screen and (min-width:90rem){.lg-lh1-9{line-height:1.9!important}}@media screen and (min-width:90rem){.lg-lh2{line-height:2!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1{line-height:1!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-1{line-height:1.1!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-2{line-height:1.2!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-3{line-height:1.3!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-4{line-height:1.4!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-5{line-height:1.5!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-6{line-height:1.6!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-7{line-height:1.7!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-8{line-height:1.8!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-9{line-height:1.9!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh2{line-height:2!important}}@media screen and (min-width:144rem){.xlg-lh1{line-height:1!important}}@media screen and (min-width:144rem){.xlg-lh1-1{line-height:1.1!important}}@media screen and (min-width:144rem){.xlg-lh1-2{line-height:1.2!important}}@media screen and (min-width:144rem){.xlg-lh1-3{line-height:1.3!important}}@media screen and (min-width:144rem){.xlg-lh1-4{line-height:1.4!important}}@media screen and (min-width:144rem){.xlg-lh1-5{line-height:1.5!important}}@media screen and (min-width:144rem){.xlg-lh1-6{line-height:1.6!important}}@media screen and (min-width:144rem){.xlg-lh1-7{line-height:1.7!important}}@media screen and (min-width:144rem){.xlg-lh1-8{line-height:1.8!important}}@media screen and (min-width:144rem){.xlg-lh1-9{line-height:1.9!important}}@media screen and (min-width:144rem){.xlg-lh2{line-height:2!important}}@media screen and (min-width:144rem){.only-xlg-lh1{line-height:1!important}}@media screen and (min-width:144rem){.only-xlg-lh1-1{line-height:1.1!important}}@media screen and (min-width:144rem){.only-xlg-lh1-2{line-height:1.2!important}}@media screen and (min-width:144rem){.only-xlg-lh1-3{line-height:1.3!important}}@media screen and (min-width:144rem){.only-xlg-lh1-4{line-height:1.4!important}}@media screen and (min-width:144rem){.only-xlg-lh1-5{line-height:1.5!important}}@media screen and (min-width:144rem){.only-xlg-lh1-6{line-height:1.6!important}}@media screen and (min-width:144rem){.only-xlg-lh1-7{line-height:1.7!important}}@media screen and (min-width:144rem){.only-xlg-lh1-8{line-height:1.8!important}}@media screen and (min-width:144rem){.only-xlg-lh1-9{line-height:1.9!important}}@media screen and (min-width:144rem){.only-xlg-lh2{line-height:2!important}}.ls1{letter-spacing:.1rem}@media screen and (min-width:30rem){.sm-ls1{letter-spacing:.1rem}}@media screen and (max-width:59.99999rem){.only-sm-ls1{letter-spacing:.1rem}}@media screen and (min-width:60rem){.md-ls1{letter-spacing:.1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls1{letter-spacing:.1rem}}@media screen and (min-width:90rem){.lg-ls1{letter-spacing:.1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls1{letter-spacing:.1rem}}@media screen and (min-width:144rem){.only-xlg-ls1,.xlg-ls1{letter-spacing:.1rem}}.ls2{letter-spacing:.2rem}@media screen and (min-width:30rem){.sm-ls2{letter-spacing:.2rem}}@media screen and (max-width:59.99999rem){.only-sm-ls2{letter-spacing:.2rem}}@media screen and (min-width:60rem){.md-ls2{letter-spacing:.2rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls2{letter-spacing:.2rem}}@media screen and (min-width:90rem){.lg-ls2{letter-spacing:.2rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls2{letter-spacing:.2rem}}@media screen and (min-width:144rem){.only-xlg-ls2,.xlg-ls2{letter-spacing:.2rem}}.ls3{letter-spacing:.3rem}@media screen and (min-width:30rem){.sm-ls3{letter-spacing:.3rem}}@media screen and (max-width:59.99999rem){.only-sm-ls3{letter-spacing:.3rem}}@media screen and (min-width:60rem){.md-ls3{letter-spacing:.3rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls3{letter-spacing:.3rem}}@media screen and (min-width:90rem){.lg-ls3{letter-spacing:.3rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls3{letter-spacing:.3rem}}@media screen and (min-width:144rem){.only-xlg-ls3,.xlg-ls3{letter-spacing:.3rem}}.ls4{letter-spacing:.4rem}@media screen and (min-width:30rem){.sm-ls4{letter-spacing:.4rem}}@media screen and (max-width:59.99999rem){.only-sm-ls4{letter-spacing:.4rem}}@media screen and (min-width:60rem){.md-ls4{letter-spacing:.4rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls4{letter-spacing:.4rem}}@media screen and (min-width:90rem){.lg-ls4{letter-spacing:.4rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls4{letter-spacing:.4rem}}@media screen and (min-width:144rem){.only-xlg-ls4,.xlg-ls4{letter-spacing:.4rem}}.ls5{letter-spacing:.5rem}@media screen and (min-width:30rem){.sm-ls5{letter-spacing:.5rem}}@media screen and (max-width:59.99999rem){.only-sm-ls5{letter-spacing:.5rem}}@media screen and (min-width:60rem){.md-ls5{letter-spacing:.5rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls5{letter-spacing:.5rem}}@media screen and (min-width:90rem){.lg-ls5{letter-spacing:.5rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls5{letter-spacing:.5rem}}@media screen and (min-width:144rem){.only-xlg-ls5,.xlg-ls5{letter-spacing:.5rem}}.ls6{letter-spacing:.6rem}@media screen and (min-width:30rem){.sm-ls6{letter-spacing:.6rem}}@media screen and (max-width:59.99999rem){.only-sm-ls6{letter-spacing:.6rem}}@media screen and (min-width:60rem){.md-ls6{letter-spacing:.6rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls6{letter-spacing:.6rem}}@media screen and (min-width:90rem){.lg-ls6{letter-spacing:.6rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls6{letter-spacing:.6rem}}@media screen and (min-width:144rem){.only-xlg-ls6,.xlg-ls6{letter-spacing:.6rem}}.ls7{letter-spacing:.7rem}@media screen and (min-width:30rem){.sm-ls7{letter-spacing:.7rem}}@media screen and (max-width:59.99999rem){.only-sm-ls7{letter-spacing:.7rem}}@media screen and (min-width:60rem){.md-ls7{letter-spacing:.7rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls7{letter-spacing:.7rem}}@media screen and (min-width:90rem){.lg-ls7{letter-spacing:.7rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls7{letter-spacing:.7rem}}@media screen and (min-width:144rem){.only-xlg-ls7,.xlg-ls7{letter-spacing:.7rem}}.ls8{letter-spacing:.8rem}@media screen and (min-width:30rem){.sm-ls8{letter-spacing:.8rem}}@media screen and (max-width:59.99999rem){.only-sm-ls8{letter-spacing:.8rem}}@media screen and (min-width:60rem){.md-ls8{letter-spacing:.8rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls8{letter-spacing:.8rem}}@media screen and (min-width:90rem){.lg-ls8{letter-spacing:.8rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls8{letter-spacing:.8rem}}@media screen and (min-width:144rem){.only-xlg-ls8,.xlg-ls8{letter-spacing:.8rem}}.ls9{letter-spacing:.9rem}@media screen and (min-width:30rem){.sm-ls9{letter-spacing:.9rem}}@media screen and (max-width:59.99999rem){.only-sm-ls9{letter-spacing:.9rem}}@media screen and (min-width:60rem){.md-ls9{letter-spacing:.9rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls9{letter-spacing:.9rem}}@media screen and (min-width:90rem){.lg-ls9{letter-spacing:.9rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls9{letter-spacing:.9rem}}@media screen and (min-width:144rem){.only-xlg-ls9,.xlg-ls9{letter-spacing:.9rem}}.ls10{letter-spacing:1rem}@media screen and (min-width:30rem){.sm-ls10{letter-spacing:1rem}}@media screen and (max-width:59.99999rem){.only-sm-ls10{letter-spacing:1rem}}@media screen and (min-width:60rem){.md-ls10{letter-spacing:1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls10{letter-spacing:1rem}}@media screen and (min-width:90rem){.lg-ls10{letter-spacing:1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls10{letter-spacing:1rem}}@media screen and (min-width:144rem){.only-xlg-ls10,.xlg-ls10{letter-spacing:1rem}}.ft1{font-size:10px;font-size:1rem}@media screen and (min-width:30rem){.sm-ft1{font-size:10px;font-size:1rem}}@media screen and (max-width:59.99999rem){.only-sm-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:60rem){.md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:90rem){.lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:144rem){.only-xlg-ft1,.xlg-ft1{font-size:10px;font-size:1rem}}.ft2{font-size:11px;font-size:1.1rem}@media screen and (min-width:30rem){.sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (max-width:59.99999rem){.only-sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:60rem){.md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:90rem){.lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:144rem){.only-xlg-ft2,.xlg-ft2{font-size:11px;font-size:1.1rem}}.ft3{font-size:12px;font-size:1.2rem}@media screen and (min-width:30rem){.sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (max-width:59.99999rem){.only-sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:60rem){.md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:90rem){.lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:144rem){.only-xlg-ft3,.xlg-ft3{font-size:12px;font-size:1.2rem}}.ft4{font-size:15px;font-size:1.5rem}@media screen and (min-width:30rem){.sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (max-width:59.99999rem){.only-sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:60rem){.md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:90rem){.lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:144rem){.only-xlg-ft4,.xlg-ft4{font-size:15px;font-size:1.5rem}}.ft5{font-size:16.5px;font-size:1.65rem}@media screen and (min-width:30rem){.sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (max-width:59.99999rem){.only-sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:60rem){.md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:90rem){.lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:144rem){.only-xlg-ft5,.xlg-ft5{font-size:16.5px;font-size:1.65rem}}.ft6{font-size:18px;font-size:1.8rem}@media screen and (min-width:30rem){.sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (max-width:59.99999rem){.only-sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:60rem){.md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:90rem){.lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:144rem){.only-xlg-ft6,.xlg-ft6{font-size:18px;font-size:1.8rem}}.ft7{font-size:22.5px;font-size:2.25rem}@media screen and (min-width:30rem){.sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (max-width:59.99999rem){.only-sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:60rem){.md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:90rem){.lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:144rem){.only-xlg-ft7,.xlg-ft7{font-size:22.5px;font-size:2.25rem}}.ft8{font-size:24.75px;font-size:2.475rem}@media screen and (min-width:30rem){.sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (max-width:59.99999rem){.only-sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:60rem){.md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:90rem){.lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:144rem){.only-xlg-ft8,.xlg-ft8{font-size:24.75px;font-size:2.475rem}}.ft9{font-size:27px;font-size:2.7rem}@media screen and (min-width:30rem){.sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (max-width:59.99999rem){.only-sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:60rem){.md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:90rem){.lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:144rem){.only-xlg-ft9,.xlg-ft9{font-size:27px;font-size:2.7rem}}.ft10{font-size:33.75px;font-size:3.375rem}@media screen and (min-width:30rem){.sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (max-width:59.99999rem){.only-sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:60rem){.md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:90rem){.lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:144rem){.only-xlg-ft10,.xlg-ft10{font-size:33.75px;font-size:3.375rem}}.ft11{font-size:37.13px;font-size:3.713rem}@media screen and (min-width:30rem){.sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (max-width:59.99999rem){.only-sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:60rem){.md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:90rem){.lg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:144rem){.only-xlg-ft11,.xlg-ft11{font-size:37.13px;font-size:3.713rem}}.ft12{font-size:40.5px;font-size:4.05rem}@media screen and (min-width:30rem){.sm-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (max-width:59.99999rem){.only-sm-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:60rem){.md-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:90rem){.lg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:144rem){.only-xlg-ft12,.xlg-ft12{font-size:40.5px;font-size:4.05rem}}.ft13{font-size:50.63px;font-size:5.063rem}@media screen and (min-width:30rem){.sm-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (max-width:59.99999rem){.only-sm-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:60rem){.md-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:90rem){.lg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:144rem){.only-xlg-ft13,.xlg-ft13{font-size:50.63px;font-size:5.063rem}}.ft14{font-size:55.69px;font-size:5.569rem}@media screen and (min-width:30rem){.sm-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (max-width:59.99999rem){.only-sm-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:60rem){.md-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:90rem){.lg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:144rem){.only-xlg-ft14,.xlg-ft14{font-size:55.69px;font-size:5.569rem}}.ft15{font-size:60.75px;font-size:6.075rem}@media screen and (min-width:30rem){.sm-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (max-width:59.99999rem){.only-sm-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:60rem){.md-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:90rem){.lg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:144rem){.only-xlg-ft15,.xlg-ft15{font-size:60.75px;font-size:6.075rem}}.ft16{font-size:75.94px;font-size:7.594rem}@media screen and (min-width:30rem){.sm-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (max-width:59.99999rem){.only-sm-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:60rem){.md-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:90rem){.lg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:144rem){.only-xlg-ft16,.xlg-ft16{font-size:75.94px;font-size:7.594rem}}.ft17{font-size:83.53px;font-size:8.353rem}@media screen and (min-width:30rem){.sm-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (max-width:59.99999rem){.only-sm-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:60rem){.md-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:90rem){.lg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:144rem){.only-xlg-ft17,.xlg-ft17{font-size:83.53px;font-size:8.353rem}}.fw1,.fwthin{font-weight:100!important}.fw2,.fwxlight{font-weight:200!important}.fw3,.fwlight{font-weight:300!important}.fw4,.fwnormal{font-weight:400!important}.fw5,.fwmedium{font-weight:500!important}.fw6,.fwsemibold,th{font-weight:600!important}.fw7,.fwbold{font-weight:700!important}.fw8,.fwxbold{font-weight:800!important}.fw9,.fwblack{font-weight:900!important}.center{margin-left:auto;margin-right:auto}.sans-serif{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.serif{font-family:Merriweather,Georgia,serif}.code{font-family:Menlo,Consolas,Monaco,Andale Mono,monospace}.clearfix:after{content:"";display:table;clear:both}.hidetext{text-indent:100%;white-space:nowrap;overflow:hidden}.default-hover:focus,.default-hover:hover,.dim:focus,.dim:hover{opacity:.5}.default-active:active,.dim:active{opacity:.8}.site-width{max-width:114rem}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.ell{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.xbrdr{border:none}.imax{max-width:100%;width:auto;height:auto}.i100{width:100%}.bgcover{background-size:cover}.bgcenter{background-position:50%}.vam{vertical-align:middle}.xts{text-shadow:none!important}.wrap{margin-left:auto;margin-right:auto;padding-left:30px;padding-right:30px}.wrap--xpad{padding-left:0;padding-right:0}.frame{margin-left:-30px;margin-right:-30px}@media screen and (min-width:60rem){.frame{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:59.99999rem){.frame--stay{display:-ms-flexbox;display:flex}}.frame--xpad [class^=blk]{padding-left:0;padding-right:0}.blk,.blk1,.blk2,.blk3,.blk4,.blk5,.blk6,.blk7,.blk8,.blk9,.blk10,.blk11,.blk12,.lg-blk1,.lg-blk2,.lg-blk3,.lg-blk4,.lg-blk5,.lg-blk6,.lg-blk7,.lg-blk8,.lg-blk9,.lg-blk10,.lg-blk11,.lg-blk12,.md-blk1,.md-blk2,.md-blk3,.md-blk4,.md-blk5,.md-blk6,.md-blk7,.md-blk8,.md-blk9,.md-blk10,.md-blk11,.md-blk12,.only-lg-blk1,.only-lg-blk2,.only-lg-blk3,.only-lg-blk4,.only-lg-blk5,.only-lg-blk6,.only-lg-blk7,.only-lg-blk8,.only-lg-blk9,.only-lg-blk10,.only-lg-blk11,.only-lg-blk12,.only-md-blk1,.only-md-blk2,.only-md-blk3,.only-md-blk4,.only-md-blk5,.only-md-blk6,.only-md-blk7,.only-md-blk8,.only-md-blk9,.only-md-blk10,.only-md-blk11,.only-md-blk12,.only-sm-blk1,.only-sm-blk2,.only-sm-blk3,.only-sm-blk4,.only-sm-blk5,.only-sm-blk6,.only-sm-blk7,.only-sm-blk8,.only-sm-blk9,.only-sm-blk10,.only-sm-blk11,.only-sm-blk12,.only-xlg-blk1,.only-xlg-blk2,.only-xlg-blk3,.only-xlg-blk4,.only-xlg-blk5,.only-xlg-blk6,.only-xlg-blk7,.only-xlg-blk8,.only-xlg-blk9,.only-xlg-blk10,.only-xlg-blk11,.only-xlg-blk12,.sm-blk1,.sm-blk2,.sm-blk3,.sm-blk4,.sm-blk5,.sm-blk6,.sm-blk7,.sm-blk8,.sm-blk9,.sm-blk10,.sm-blk11,.sm-blk12,.xlg-blk1,.xlg-blk2,.xlg-blk3,.xlg-blk4,.xlg-blk5,.xlg-blk6,.xlg-blk7,.xlg-blk8,.xlg-blk9,.xlg-blk10,.xlg-blk11,.xlg-blk12{position:relative;padding-left:30px;padding-right:30px}.blk{-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0}.blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}.blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}.blk3{-ms-flex-preferred-size:25%;flex-basis:25%}.blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}.blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}.blk6{-ms-flex-preferred-size:50%;flex-basis:50%}.blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}.blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}.blk9{-ms-flex-preferred-size:75%;flex-basis:75%}.blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}.blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}.blk12{-ms-flex-preferred-size:100%;flex-basis:100%}@media screen and (min-width:30rem){.sm-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:30rem){.sm-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:30rem){.sm-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:30rem){.sm-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem){.md-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:60rem){.md-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:60rem){.md-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:60rem){.md-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:60rem){.md-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:60rem){.md-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:60rem){.md-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:60rem){.md-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:60rem){.md-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:60rem){.md-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:60rem){.md-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:60rem){.md-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem){.lg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:90rem){.lg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:90rem){.lg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:90rem){.lg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.xlg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:144rem){.xlg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:144rem){.xlg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:144rem){.xlg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.only-xlg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:144rem){.only-xlg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:144rem){.only-xlg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:144rem){.only-xlg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}.blk--offset1{margin-left:8.3333333333%}.blk--offset2{margin-left:16.6666666667%}.blk--offset3{margin-left:25%}.blk--offset4{margin-left:33.3333333333%}.blk--offset5{margin-left:41.6666666667%}.blk--offset6{margin-left:50%}.blk--offset7{margin-left:58.3333333333%}.blk--offset8{margin-left:66.6666666667%}.blk--offset9{margin-left:75%}.blk--offset10{margin-left:83.3333333333%}.blk--offset11{margin-left:91.6666666667%}.blk--offset12{margin-left:100%}@media screen and (min-width:30rem){.sm-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset3{margin-left:25%}}@media screen and (min-width:30rem){.sm-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset6{margin-left:50%}}@media screen and (min-width:30rem){.sm-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset9{margin-left:75%}}@media screen and (min-width:30rem){.sm-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset12{margin-left:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset1{margin-left:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset2{margin-left:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset3{margin-left:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset4{margin-left:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset5{margin-left:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset6{margin-left:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset7{margin-left:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset8{margin-left:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset9{margin-left:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset10{margin-left:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset11{margin-left:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset12{margin-left:100%}}@media screen and (min-width:60rem){.md-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset3{margin-left:25%}}@media screen and (min-width:60rem){.md-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset6{margin-left:50%}}@media screen and (min-width:60rem){.md-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset9{margin-left:75%}}@media screen and (min-width:60rem){.md-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset12{margin-left:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset3{margin-left:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset6{margin-left:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset9{margin-left:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset12{margin-left:100%}}@media screen and (min-width:90rem){.lg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset3{margin-left:25%}}@media screen and (min-width:90rem){.lg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset6{margin-left:50%}}@media screen and (min-width:90rem){.lg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset9{margin-left:75%}}@media screen and (min-width:90rem){.lg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset12{margin-left:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset3{margin-left:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset6{margin-left:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset9{margin-left:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset12{margin-left:100%}}@media screen and (min-width:144rem){.xlg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset3{margin-left:25%}}@media screen and (min-width:144rem){.xlg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset6{margin-left:50%}}@media screen and (min-width:144rem){.xlg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset9{margin-left:75%}}@media screen and (min-width:144rem){.xlg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset12{margin-left:100%}}@media screen and (min-width:144rem){.only-xlg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset3{margin-left:25%}}@media screen and (min-width:144rem){.only-xlg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset6{margin-left:50%}}@media screen and (min-width:144rem){.only-xlg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset9{margin-left:75%}}@media screen and (min-width:144rem){.only-xlg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset12{margin-left:100%}}.blk--push1{left:8.3333333333%}.blk--push2{left:16.6666666667%}.blk--push3{left:25%}.blk--push4{left:33.3333333333%}.blk--push5{left:41.6666666667%}.blk--push6{left:50%}.blk--push7{left:58.3333333333%}.blk--push8{left:66.6666666667%}.blk--push9{left:75%}.blk--push10{left:83.3333333333%}.blk--push11{left:91.6666666667%}.blk--push12{left:100%}@media screen and (min-width:30rem){.sm-blk--push1{left:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push2{left:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push3{left:25%}}@media screen and (min-width:30rem){.sm-blk--push4{left:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push5{left:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push6{left:50%}}@media screen and (min-width:30rem){.sm-blk--push7{left:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push8{left:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push9{left:75%}}@media screen and (min-width:30rem){.sm-blk--push10{left:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push11{left:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push12{left:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push1{left:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push2{left:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push3{left:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push4{left:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push5{left:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push6{left:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push7{left:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push8{left:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push9{left:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push10{left:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push11{left:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push12{left:100%}}@media screen and (min-width:60rem){.md-blk--push1{left:8.3333333333%}}@media screen and (min-width:60rem){.md-blk--push2{left:16.6666666667%}}@media screen and (min-width:60rem){.md-blk--push3{left:25%}}@media screen and (min-width:60rem){.md-blk--push4{left:33.3333333333%}}@media screen and (min-width:60rem){.md-blk--push5{left:41.6666666667%}}@media screen and (min-width:60rem){.md-blk--push6{left:50%}}@media screen and (min-width:60rem){.md-blk--push7{left:58.3333333333%}}@media screen and (min-width:60rem){.md-blk--push8{left:66.6666666667%}}@media screen and (min-width:60rem){.md-blk--push9{left:75%}}@media screen and (min-width:60rem){.md-blk--push10{left:83.3333333333%}}@media screen and (min-width:60rem){.md-blk--push11{left:91.6666666667%}}@media screen and (min-width:60rem){.md-blk--push12{left:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push1{left:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push2{left:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push3{left:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push4{left:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push5{left:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push6{left:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push7{left:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push8{left:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push9{left:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push10{left:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push11{left:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push12{left:100%}}@media screen and (min-width:90rem){.lg-blk--push1{left:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push2{left:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push3{left:25%}}@media screen and (min-width:90rem){.lg-blk--push4{left:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push5{left:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push6{left:50%}}@media screen and (min-width:90rem){.lg-blk--push7{left:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push8{left:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push9{left:75%}}@media screen and (min-width:90rem){.lg-blk--push10{left:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push11{left:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push12{left:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push1{left:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push2{left:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push3{left:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push4{left:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push5{left:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push6{left:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push7{left:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push8{left:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push9{left:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push10{left:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push11{left:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push12{left:100%}}@media screen and (min-width:144rem){.xlg-blk--push1{left:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push2{left:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push3{left:25%}}@media screen and (min-width:144rem){.xlg-blk--push4{left:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push5{left:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push6{left:50%}}@media screen and (min-width:144rem){.xlg-blk--push7{left:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push8{left:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push9{left:75%}}@media screen and (min-width:144rem){.xlg-blk--push10{left:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push11{left:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push12{left:100%}}@media screen and (min-width:144rem){.only-xlg-blk--push1{left:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push2{left:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push3{left:25%}}@media screen and (min-width:144rem){.only-xlg-blk--push4{left:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push5{left:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push6{left:50%}}@media screen and (min-width:144rem){.only-xlg-blk--push7{left:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push8{left:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push9{left:75%}}@media screen and (min-width:144rem){.only-xlg-blk--push10{left:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push11{left:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push12{left:100%}}.blk--pull1{right:8.3333333333%}.blk--pull2{right:16.6666666667%}.blk--pull3{right:25%}.blk--pull4{right:33.3333333333%}.blk--pull5{right:41.6666666667%}.blk--pull6{right:50%}.blk--pull7{right:58.3333333333%}.blk--pull8{right:66.6666666667%}.blk--pull9{right:75%}.blk--pull10{right:83.3333333333%}.blk--pull11{right:91.6666666667%}.blk--pull12{right:100%}@media screen and (min-width:30rem){.sm-blk--pull1{right:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull2{right:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull3{right:25%}}@media screen and (min-width:30rem){.sm-blk--pull4{right:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull5{right:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull6{right:50%}}@media screen and (min-width:30rem){.sm-blk--pull7{right:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull8{right:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull9{right:75%}}@media screen and (min-width:30rem){.sm-blk--pull10{right:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull11{right:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull12{right:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull1{right:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull2{right:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull3{right:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull4{right:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull5{right:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull6{right:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull7{right:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull8{right:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull9{right:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull10{right:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull11{right:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull12{right:100%}}@media screen and (min-width:60rem){.md-blk--pull1{right:8.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull2{right:16.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull3{right:25%}}@media screen and (min-width:60rem){.md-blk--pull4{right:33.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull5{right:41.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull6{right:50%}}@media screen and (min-width:60rem){.md-blk--pull7{right:58.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull8{right:66.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull9{right:75%}}@media screen and (min-width:60rem){.md-blk--pull10{right:83.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull11{right:91.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull12{right:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull1{right:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull2{right:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull3{right:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull4{right:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull5{right:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull6{right:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull7{right:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull8{right:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull9{right:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull10{right:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull11{right:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull12{right:100%}}@media screen and (min-width:90rem){.lg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull3{right:25%}}@media screen and (min-width:90rem){.lg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull6{right:50%}}@media screen and (min-width:90rem){.lg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull9{right:75%}}@media screen and (min-width:90rem){.lg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull12{right:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull3{right:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull6{right:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull9{right:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull12{right:100%}}@media screen and (min-width:144rem){.xlg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull3{right:25%}}@media screen and (min-width:144rem){.xlg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull6{right:50%}}@media screen and (min-width:144rem){.xlg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull9{right:75%}}@media screen and (min-width:144rem){.xlg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull12{right:100%}}@media screen and (min-width:144rem){.only-xlg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull3{right:25%}}@media screen and (min-width:144rem){.only-xlg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull6{right:50%}}@media screen and (min-width:144rem){.only-xlg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull9{right:75%}}@media screen and (min-width:144rem){.only-xlg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull12{right:100%}}.blk--first{-ms-flex-order:0;order:0}.blk--last{-ms-flex-order:1;order:1}@media screen and (min-width:30rem){.sm-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:30rem){.sm-blk--last{-ms-flex-order:1;order:1}}@media screen and (max-width:59.99999rem){.only-sm-blk--first{-ms-flex-order:0;order:0}}@media screen and (max-width:59.99999rem){.only-sm-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:60rem){.md-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:60rem){.md-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:90rem){.lg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:90rem){.lg-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:144rem){.xlg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:144rem){.xlg-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:144rem){.only-xlg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:144rem){.only-xlg-blk--last{-ms-flex-order:1;order:1}}.fl{float:left!important}.fr{float:right!important}.finit,.fn{float:none!important}.finhe{float:inherit!important}.sm-fl{float:left!important}.sm-fr{float:right!important}.sm-finit,.sm-fn{float:none!important}.sm-finhe{float:inherit!important}.only-sm-fl{float:left!important}.only-sm-fr{float:right!important}.only-sm-finit,.only-sm-fn{float:none!important}.only-sm-finhe{float:inherit!important}.md-fl{float:left!important}.md-fr{float:right!important}.md-finit,.md-fn{float:none!important}.md-finhe{float:inherit!important}.only-md-fl{float:left!important}.only-md-fr{float:right!important}.only-md-finit,.only-md-fn{float:none!important}.only-md-finhe{float:inherit!important}.lg-fl{float:left!important}.lg-fr{float:right!important}.lg-finit,.lg-fn{float:none!important}.lg-finhe{float:inherit!important}.only-lg-fl{float:left!important}.only-lg-fr{float:right!important}.only-lg-finit,.only-lg-fn{float:none!important}.only-lg-finhe{float:inherit!important}.xlg-fl{float:left!important}.xlg-fr{float:right!important}.xlg-finit,.xlg-fn{float:none!important}.xlg-finhe{float:inherit!important}.only-xlg-fl{float:left!important}.only-xlg-fr{float:right!important}.only-xlg-finit,.only-xlg-fn{float:none!important}.only-xlg-finhe{float:inherit!important}.db{display:block}.di{display:inline}.dib{display:inline-block}.dn{display:none}.df{display:-ms-flexbox;display:flex}.full{display:block}.full,.w100{width:100%}@media screen and (min-width:30rem){.sm-db{display:block!important}}@media screen and (min-width:30rem){.sm-di{display:inline!important}}@media screen and (min-width:30rem){.sm-dib{display:inline-block!important}}@media screen and (min-width:30rem){.sm-dn{display:none!important}}@media screen and (min-width:30rem){.sm-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (max-width:59.99999rem){.only-sm-db{display:block!important}}@media screen and (max-width:59.99999rem){.only-sm-di{display:inline!important}}@media screen and (max-width:59.99999rem){.only-sm-dib{display:inline-block!important}}@media screen and (max-width:59.99999rem){.only-sm-dn{display:none!important}}@media screen and (max-width:59.99999rem){.only-sm-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:60rem){.md-db{display:block!important}}@media screen and (min-width:60rem){.md-di{display:inline!important}}@media screen and (min-width:60rem){.md-dib{display:inline-block!important}}@media screen and (min-width:60rem){.md-dn{display:none!important}}@media screen and (min-width:60rem){.md-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-db{display:block!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-di{display:inline!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-dib{display:inline-block!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-dn{display:none!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:90rem){.lg-db{display:block!important}}@media screen and (min-width:90rem){.lg-di{display:inline!important}}@media screen and (min-width:90rem){.lg-dib{display:inline-block!important}}@media screen and (min-width:90rem){.lg-dn{display:none!important}}@media screen and (min-width:90rem){.lg-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-db{display:block!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-di{display:inline!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-dib{display:inline-block!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-dn{display:none!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:144rem){.xlg-db{display:block!important}}@media screen and (min-width:144rem){.xlg-di{display:inline!important}}@media screen and (min-width:144rem){.xlg-dib{display:inline-block!important}}@media screen and (min-width:144rem){.xlg-dn{display:none!important}}@media screen and (min-width:144rem){.xlg-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:144rem){.only-xlg-db{display:block!important}}@media screen and (min-width:144rem){.only-xlg-di{display:inline!important}}@media screen and (min-width:144rem){.only-xlg-dib{display:inline-block!important}}@media screen and (min-width:144rem){.only-xlg-dn{display:none!important}}@media screen and (min-width:144rem){.only-xlg-df{display:-ms-flexbox!important;display:flex!important}}.flex{display:-ms-flexbox;display:flex}.iflex{display:-ms-inline-flexbox;display:inline-flex}.flex-grow{-ms-flex-positive:1;flex-grow:1}.fb100{-ms-flex-preferred-size:100%;flex-basis:100%}.fdr{-ms-flex-direction:row;flex-direction:row}.fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.fdc{-ms-flex-direction:column;flex-direction:column}.fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.fww{-ms-flex-wrap:wrap;flex-wrap:wrap}.fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.jcc{-ms-flex-pack:center;justify-content:center}.jcsb{-ms-flex-pack:justify;justify-content:space-between}.jcsa{-ms-flex-pack:distribute;justify-content:space-around}.jcfs{-ms-flex-pack:start;justify-content:flex-start}.jcfe{-ms-flex-pack:end;justify-content:flex-end}.aic{-ms-flex-align:center;align-items:center}.aifs{-ms-flex-align:start;align-items:flex-start}.aife{-ms-flex-align:end;align-items:flex-end}.ais{-ms-flex-align:stretch;align-items:stretch}.aib{-ms-flex-align:baseline;align-items:baseline}.acc{-ms-flex-line-pack:center;align-content:center}.acfs{-ms-flex-line-pack:start;align-content:flex-start}.acfe{-ms-flex-line-pack:end;align-content:flex-end}.acs{-ms-flex-line-pack:stretch;align-content:stretch}.acb{-ms-flex-line-pack:baseline;align-content:baseline}@media screen and (min-width:30rem){.sm-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:30rem){.sm-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:30rem){.sm-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:30rem){.sm-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:30rem){.sm-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:30rem){.sm-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:30rem){.sm-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:30rem){.sm-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:30rem){.sm-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:30rem){.sm-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:30rem){.sm-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:30rem){.sm-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:30rem){.sm-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:30rem){.sm-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:30rem){.sm-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:30rem){.sm-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:30rem){.sm-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:30rem){.sm-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:30rem){.sm-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:30rem){.sm-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:30rem){.sm-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:30rem){.sm-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:30rem){.sm-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:30rem){.sm-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:30rem){.sm-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (max-width:59.99999rem){.only-sm-flex{display:-ms-flexbox;display:flex}}@media screen and (max-width:59.99999rem){.only-sm-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (max-width:59.99999rem){.only-sm-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (max-width:59.99999rem){.only-sm-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (max-width:59.99999rem){.only-sm-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (max-width:59.99999rem){.only-sm-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (max-width:59.99999rem){.only-sm-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (max-width:59.99999rem){.only-sm-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (max-width:59.99999rem){.only-sm-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:59.99999rem){.only-sm-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (max-width:59.99999rem){.only-sm-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (max-width:59.99999rem){.only-sm-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (max-width:59.99999rem){.only-sm-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (max-width:59.99999rem){.only-sm-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (max-width:59.99999rem){.only-sm-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (max-width:59.99999rem){.only-sm-aic{-ms-flex-align:center;align-items:center}}@media screen and (max-width:59.99999rem){.only-sm-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (max-width:59.99999rem){.only-sm-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (max-width:59.99999rem){.only-sm-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (max-width:59.99999rem){.only-sm-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (max-width:59.99999rem){.only-sm-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (max-width:59.99999rem){.only-sm-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (max-width:59.99999rem){.only-sm-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (max-width:59.99999rem){.only-sm-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (max-width:59.99999rem){.only-sm-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:60rem){.md-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:60rem){.md-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:60rem){.md-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem){.md-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:60rem){.md-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:60rem){.md-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:60rem){.md-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:60rem){.md-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:60rem){.md-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:60rem){.md-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:60rem){.md-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:60rem){.md-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:60rem){.md-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:60rem){.md-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:60rem){.md-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:60rem){.md-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:60rem){.md-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:60rem){.md-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:60rem){.md-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:60rem){.md-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:60rem){.md-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:60rem){.md-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:60rem){.md-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:60rem){.md-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:60rem){.md-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:90rem){.lg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:90rem){.lg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:90rem){.lg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem){.lg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:90rem){.lg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:90rem){.lg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:90rem){.lg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:90rem){.lg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:90rem){.lg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:90rem){.lg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:90rem){.lg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:90rem){.lg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:90rem){.lg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:90rem){.lg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:90rem){.lg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:90rem){.lg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:90rem){.lg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:90rem){.lg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:90rem){.lg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:90rem){.lg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:90rem){.lg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:90rem){.lg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:90rem){.lg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:90rem){.lg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:90rem){.lg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:144rem){.xlg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:144rem){.xlg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:144rem){.xlg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.xlg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:144rem){.xlg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:144rem){.xlg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:144rem){.xlg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:144rem){.xlg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:144rem){.xlg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:144rem){.xlg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:144rem){.xlg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:144rem){.xlg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:144rem){.xlg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:144rem){.xlg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:144rem){.xlg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:144rem){.xlg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:144rem){.xlg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:144rem){.xlg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:144rem){.xlg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:144rem){.xlg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:144rem){.xlg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:144rem){.xlg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:144rem){.xlg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:144rem){.xlg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:144rem){.xlg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:144rem){.only-xlg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:144rem){.only-xlg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:144rem){.only-xlg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.only-xlg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:144rem){.only-xlg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:144rem){.only-xlg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:144rem){.only-xlg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:144rem){.only-xlg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:144rem){.only-xlg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:144rem){.only-xlg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:144rem){.only-xlg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:144rem){.only-xlg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:144rem){.only-xlg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:144rem){.only-xlg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:144rem){.only-xlg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:144rem){.only-xlg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:144rem){.only-xlg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:144rem){.only-xlg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:144rem){.only-xlg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:144rem){.only-xlg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:144rem){.only-xlg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:144rem){.only-xlg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:144rem){.only-xlg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:144rem){.only-xlg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:144rem){.only-xlg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}.ofh{overflow:hidden!important}.ofx{overflow-x:scroll!important}.ofy{overflow-y:scroll!important}.bgb{background-color:#000!important}.tcb{color:#000!important}.bcb{border-color:#000!important}.bgw{background-color:#fff!important}.tcw{color:#fff!important}.bcw{border-color:#fff!important}.bg1{background-color:#3498db!important}.tc1{color:#3498db!important}.bc1{border-color:#3498db!important}.bg2{background-color:#258cd1!important}.tc2{color:#258cd1!important}.bc2{border-color:#258cd1!important}.bg3{background-color:#217dbb!important}.tc3{color:#217dbb!important}.bc3{border-color:#217dbb!important}.bg4{background-color:#1d6fa5!important}.tc4{color:#1d6fa5!important}.bc4{border-color:#1d6fa5!important}.bg5{background-color:#196090!important}.tc5{color:#196090!important}.bc5{border-color:#196090!important}.bgsuccess{background-color:#4ab471!important}.tcsuccess{color:#4ab471!important}.bcsuccess{border-color:#4ab471!important}.bgwarning{background-color:#f3ae4e!important}.tcwarning{color:#f3ae4e!important}.bcwarning{border-color:#f3ae4e!important}.bgdanger{background-color:#cf5c60!important}.tcdanger{color:#cf5c60!important}.bcdanger{border-color:#cf5c60!important}.bgg05{background-color:#f2f2f2!important}.tcg05{color:#f2f2f2!important}.bcg05{border-color:#f2f2f2!important}.bgg10{background-color:#e6e6e6!important}.tcg10{color:#e6e6e6!important}.bcg10{border-color:#e6e6e6!important}.bgg20{background-color:#ccc!important}.tcg20{color:#ccc!important}.bcg20{border-color:#ccc!important}.bgg30{background-color:#b3b3b3!important}.tcg30{color:#b3b3b3!important}.bcg30{border-color:#b3b3b3!important}.bgg40{background-color:#999!important}.tcg40{color:#999!important}.bcg40{border-color:#999!important}.bgg50{background-color:gray!important}.tcg50{color:gray!important}.bcg50{border-color:gray!important}.bgg60{background-color:#666!important}.tcg60{color:#666!important}.bcg60{border-color:#666!important}.bgg70{background-color:#4d4d4d!important}.tcg70{color:#4d4d4d!important}.bcg70{border-color:#4d4d4d!important}.bgg80{background-color:#333!important}.tcg80{color:#333!important}.bcg80{border-color:#333!important}.bgg90{background-color:#1a1a1a!important}.tcg90{color:#1a1a1a!important}.bcg90{border-color:#1a1a1a!important}.\:bgb:hover{background-color:#000!important}.\:tcb:hover{color:#000!important}.\:bcb:hover{border-color:#000!important}.\:bgw:hover{background-color:#fff!important}.\:tcw:hover{color:#fff!important}.\:bcw:hover{border-color:#fff!important}.\:bg1:hover{background-color:#3498db!important}.\:tc1:hover{color:#3498db!important}.\:bc1:hover{border-color:#3498db!important}.\:bg2:hover{background-color:#258cd1!important}.\:tc2:hover{color:#258cd1!important}.\:bc2:hover{border-color:#258cd1!important}.\:bg3:hover{background-color:#217dbb!important}.\:tc3:hover{color:#217dbb!important}.\:bc3:hover{border-color:#217dbb!important}.\:bg4:hover{background-color:#1d6fa5!important}.\:tc4:hover{color:#1d6fa5!important}.\:bc4:hover{border-color:#1d6fa5!important}.\:bg5:hover{background-color:#196090!important}.\:tc5:hover{color:#196090!important}.\:bc5:hover{border-color:#196090!important}.\:bgsuccess:hover{background-color:#4ab471!important}.\:tcsuccess:hover{color:#4ab471!important}.\:bcsuccess:hover{border-color:#4ab471!important}.\:bgwarning:hover{background-color:#f3ae4e!important}.\:tcwarning:hover{color:#f3ae4e!important}.\:bcwarning:hover{border-color:#f3ae4e!important}.\:bgdanger:hover{background-color:#cf5c60!important}.\:tcdanger:hover{color:#cf5c60!important}.\:bcdanger:hover{border-color:#cf5c60!important}.\:bgg05:hover{background-color:#f2f2f2!important}.\:tcg05:hover{color:#f2f2f2!important}.\:bcg05:hover{border-color:#f2f2f2!important}.\:bgg10:hover{background-color:#e6e6e6!important}.\:tcg10:hover{color:#e6e6e6!important}.\:bcg10:hover{border-color:#e6e6e6!important}.\:bgg20:hover{background-color:#ccc!important}.\:tcg20:hover{color:#ccc!important}.\:bcg20:hover{border-color:#ccc!important}.\:bgg30:hover{background-color:#b3b3b3!important}.\:tcg30:hover{color:#b3b3b3!important}.\:bcg30:hover{border-color:#b3b3b3!important}.\:bgg40:hover{background-color:#999!important}.\:tcg40:hover{color:#999!important}.\:bcg40:hover{border-color:#999!important}.\:bgg50:hover{background-color:gray!important}.\:tcg50:hover{color:gray!important}.\:bcg50:hover{border-color:gray!important}.\:bgg60:hover{background-color:#666!important}.\:tcg60:hover{color:#666!important}.\:bcg60:hover{border-color:#666!important}.\:bgg70:hover{background-color:#4d4d4d!important}.\:tcg70:hover{color:#4d4d4d!important}.\:bcg70:hover{border-color:#4d4d4d!important}.\:bgg80:hover{background-color:#333!important}.\:tcg80:hover{color:#333!important}.\:bcg80:hover{border-color:#333!important}.\:bgg90:hover{background-color:#1a1a1a!important}.\:tcg90:hover{color:#1a1a1a!important}.\:bcg90:hover{border-color:#1a1a1a!important}.\:\:bgb:focus{background-color:#000!important}.\:\:tcb:focus{color:#000!important}.\:\:bcb:focus{border-color:#000!important}.\:\:bgw:focus{background-color:#fff!important}.\:\:tcw:focus{color:#fff!important}.\:\:bcw:focus{border-color:#fff!important}.\:\:bg1:focus{background-color:#3498db!important}.\:\:tc1:focus{color:#3498db!important}.\:\:bc1:focus{border-color:#3498db!important}.\:\:bg2:focus{background-color:#258cd1!important}.\:\:tc2:focus{color:#258cd1!important}.\:\:bc2:focus{border-color:#258cd1!important}.\:\:bg3:focus{background-color:#217dbb!important}.\:\:tc3:focus{color:#217dbb!important}.\:\:bc3:focus{border-color:#217dbb!important}.\:\:bg4:focus{background-color:#1d6fa5!important}.\:\:tc4:focus{color:#1d6fa5!important}.\:\:bc4:focus{border-color:#1d6fa5!important}.\:\:bg5:focus{background-color:#196090!important}.\:\:tc5:focus{color:#196090!important}.\:\:bc5:focus{border-color:#196090!important}.\:\:bgsuccess:focus{background-color:#4ab471!important}.\:\:tcsuccess:focus{color:#4ab471!important}.\:\:bcsuccess:focus{border-color:#4ab471!important}.\:\:bgwarning:focus{background-color:#f3ae4e!important}.\:\:tcwarning:focus{color:#f3ae4e!important}.\:\:bcwarning:focus{border-color:#f3ae4e!important}.\:\:bgdanger:focus{background-color:#cf5c60!important}.\:\:tcdanger:focus{color:#cf5c60!important}.\:\:bcdanger:focus{border-color:#cf5c60!important}.\:\:bgg05:focus{background-color:#f2f2f2!important}.\:\:tcg05:focus{color:#f2f2f2!important}.\:\:bcg05:focus{border-color:#f2f2f2!important}.\:\:bgg10:focus{background-color:#e6e6e6!important}.\:\:tcg10:focus{color:#e6e6e6!important}.\:\:bcg10:focus{border-color:#e6e6e6!important}.\:\:bgg20:focus{background-color:#ccc!important}.\:\:tcg20:focus{color:#ccc!important}.\:\:bcg20:focus{border-color:#ccc!important}.\:\:bgg30:focus{background-color:#b3b3b3!important}.\:\:tcg30:focus{color:#b3b3b3!important}.\:\:bcg30:focus{border-color:#b3b3b3!important}.\:\:bgg40:focus{background-color:#999!important}.\:\:tcg40:focus{color:#999!important}.\:\:bcg40:focus{border-color:#999!important}.\:\:bgg50:focus{background-color:gray!important}.\:\:tcg50:focus{color:gray!important}.\:\:bcg50:focus{border-color:gray!important}.\:\:bgg60:focus{background-color:#666!important}.\:\:tcg60:focus{color:#666!important}.\:\:bcg60:focus{border-color:#666!important}.\:\:bgg70:focus{background-color:#4d4d4d!important}.\:\:tcg70:focus{color:#4d4d4d!important}.\:\:bcg70:focus{border-color:#4d4d4d!important}.\:\:bgg80:focus{background-color:#333!important}.\:\:tcg80:focus{color:#333!important}.\:\:bcg80:focus{border-color:#333!important}.\:\:bgg90:focus{background-color:#1a1a1a!important}.\:\:tcg90:focus{color:#1a1a1a!important}.\:\:bcg90:focus{border-color:#1a1a1a!important}.\@bgb:active{background-color:#000!important}.\@tcb:active{color:#000!important}.\@bcb:active{border-color:#000!important}.\@bgw:active{background-color:#fff!important}.\@tcw:active{color:#fff!important}.\@bcw:active{border-color:#fff!important}.\@bg1:active{background-color:#3498db!important}.\@tc1:active{color:#3498db!important}.\@bc1:active{border-color:#3498db!important}.\@bg2:active{background-color:#258cd1!important}.\@tc2:active{color:#258cd1!important}.\@bc2:active{border-color:#258cd1!important}.\@bg3:active{background-color:#217dbb!important}.\@tc3:active{color:#217dbb!important}.\@bc3:active{border-color:#217dbb!important}.\@bg4:active{background-color:#1d6fa5!important}.\@tc4:active{color:#1d6fa5!important}.\@bc4:active{border-color:#1d6fa5!important}.\@bg5:active{background-color:#196090!important}.\@tc5:active{color:#196090!important}.\@bc5:active{border-color:#196090!important}.\@bgsuccess:active{background-color:#4ab471!important}.\@tcsuccess:active{color:#4ab471!important}.\@bcsuccess:active{border-color:#4ab471!important}.\@bgwarning:active{background-color:#f3ae4e!important}.\@tcwarning:active{color:#f3ae4e!important}.\@bcwarning:active{border-color:#f3ae4e!important}.\@bgdanger:active{background-color:#cf5c60!important}.\@tcdanger:active{color:#cf5c60!important}.\@bcdanger:active{border-color:#cf5c60!important}.\@bgg05:active{background-color:#f2f2f2!important}.\@tcg05:active{color:#f2f2f2!important}.\@bcg05:active{border-color:#f2f2f2!important}.\@bgg10:active{background-color:#e6e6e6!important}.\@tcg10:active{color:#e6e6e6!important}.\@bcg10:active{border-color:#e6e6e6!important}.\@bgg20:active{background-color:#ccc!important}.\@tcg20:active{color:#ccc!important}.\@bcg20:active{border-color:#ccc!important}.\@bgg30:active{background-color:#b3b3b3!important}.\@tcg30:active{color:#b3b3b3!important}.\@bcg30:active{border-color:#b3b3b3!important}.\@bgg40:active{background-color:#999!important}.\@tcg40:active{color:#999!important}.\@bcg40:active{border-color:#999!important}.\@bgg50:active{background-color:gray!important}.\@tcg50:active{color:gray!important}.\@bcg50:active{border-color:gray!important}.\@bgg60:active{background-color:#666!important}.\@tcg60:active{color:#666!important}.\@bcg60:active{border-color:#666!important}.\@bgg70:active{background-color:#4d4d4d!important}.\@tcg70:active{color:#4d4d4d!important}.\@bcg70:active{border-color:#4d4d4d!important}.\@bgg80:active{background-color:#333!important}.\@tcg80:active{color:#333!important}.\@bcg80:active{border-color:#333!important}.\@bgg90:active{background-color:#1a1a1a!important}.\@tcg90:active{color:#1a1a1a!important}.\@bcg90:active{border-color:#1a1a1a!important}.xbg{background-color:transparent!important}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.pin-top{top:0}.pin-right{right:0}.pin-bottom{bottom:0}.pin-left{left:0}.pin-edges{top:0;right:0;bottom:0;left:0}.brdr0{border-style:solid!important;border-width:0!important}.brdr0--top{border-top-style:solid!important;border-top-width:0!important}.brdr0--right{border-right-style:solid!important;border-right-width:0!important}.brdr0--bottom{border-bottom-style:solid!important;border-bottom-width:0!important}.brdr0--left{border-left-style:solid!important;border-left-width:0!important}.brdr1{border-style:solid!important;border-width:1px!important}.brdr1--top{border-top-style:solid!important;border-top-width:1px!important}.brdr1--right{border-right-style:solid!important;border-right-width:1px!important}.brdr1--bottom{border-bottom-style:solid!important;border-bottom-width:1px!important}.brdr1--left{border-left-style:solid!important;border-left-width:1px!important}.brdr2{border-style:solid!important;border-width:2px!important}.brdr2--top{border-top-style:solid!important;border-top-width:2px!important}.brdr2--right{border-right-style:solid!important;border-right-width:2px!important}.brdr2--bottom{border-bottom-style:solid!important;border-bottom-width:2px!important}.brdr2--left{border-left-style:solid!important;border-left-width:2px!important}.brdr3{border-style:solid!important;border-width:3px!important}.brdr3--top{border-top-style:solid!important;border-top-width:3px!important}.brdr3--right{border-right-style:solid!important;border-right-width:3px!important}.brdr3--bottom{border-bottom-style:solid!important;border-bottom-width:3px!important}.brdr3--left{border-left-style:solid!important;border-left-width:3px!important}.br1{border-radius:1px!important}.blr1{border-top-left-radius:1px!important;border-bottom-left-radius:1px!important}.brr1{border-top-right-radius:1px!important;border-bottom-right-radius:1px!important}.btlr1{border-top-left-radius:1px!important}.btrr1{border-top-right-radius:1px!important}.bbrr1{border-bottom-right-radius:1px!important}.bblr1{border-bottom-left-radius:1px!important}.br2{border-radius:2px!important}.blr2{border-top-left-radius:2px!important;border-bottom-left-radius:2px!important}.brr2{border-top-right-radius:2px!important;border-bottom-right-radius:2px!important}.btlr2{border-top-left-radius:2px!important}.btrr2{border-top-right-radius:2px!important}.bbrr2{border-bottom-right-radius:2px!important}.bblr2{border-bottom-left-radius:2px!important}.br3{border-radius:3px!important}.blr3{border-top-left-radius:3px!important;border-bottom-left-radius:3px!important}.brr3{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.btlr3{border-top-left-radius:3px!important}.btrr3{border-top-right-radius:3px!important}.bbrr3{border-bottom-right-radius:3px!important}.bblr3{border-bottom-left-radius:3px!important}.br4{border-radius:4px!important}.blr4{border-top-left-radius:4px!important;border-bottom-left-radius:4px!important}.brr4{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.btlr4{border-top-left-radius:4px!important}.btrr4{border-top-right-radius:4px!important}.bbrr4{border-bottom-right-radius:4px!important}.bblr4{border-bottom-left-radius:4px!important}.br5{border-radius:5px!important}.blr5{border-top-left-radius:5px!important;border-bottom-left-radius:5px!important}.brr5{border-top-right-radius:5px!important;border-bottom-right-radius:5px!important}.btlr5{border-top-left-radius:5px!important}.btrr5{border-top-right-radius:5px!important}.bbrr5{border-bottom-right-radius:5px!important}.bblr5{border-bottom-left-radius:5px!important}.br6{border-radius:6px!important}.blr6{border-top-left-radius:6px!important;border-bottom-left-radius:6px!important}.brr6{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.btlr6{border-top-left-radius:6px!important}.btrr6{border-top-right-radius:6px!important}.bbrr6{border-bottom-right-radius:6px!important}.bblr6{border-bottom-left-radius:6px!important}.circle{border-radius:50%!important} ================================================ FILE: build_production/css/vendor.css ================================================ code[class*=language-],pre[class*=language-]{color:#777;font-family:Menlo,Consolas,Bitstream Vera Sans Mono,Courier New,Courier,monospace;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;font-size:1.3rem;line-height:1.5;tab-size:4;hyphens:none;font-size:1.4rem}code[class*=language-]::-moz-selection,code[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection{background:#b3d4fc}code[class*=language-]::selection,code[class*=language-] ::selection,pre[class*=language-]::selection,pre[class*=language-] ::selection{background:#b3d4fc}pre[class*=language-]{padding:2rem 2.5rem;overflow:auto;border:1px solid rgba(0,0,0,.2);border-radius:4px;background-color:#fff}:not(pre)>code[class*=language-]{padding:.2em;padding-top:1px;padding-bottom:1px;background:#f8f8f8;border:1px solid #ddd}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#aaa;font-style:italic}.token.namespace{opacity:.7}.token.attr-value,.token.string{color:#e3116c}.token.operator,.token.punctuation{color:#888}.token.boolean,.token.constant,.token.entity,.token.inserted,.token.number,.token.property,.token.regex,.token.symbol,.token.url,.token.variable{color:#3498db}.language-autohotkey .token.selector,.token.atrule,.token.attr-name,.token.keyword{color:#00a4db}.language-autohotkey .token.keyword,.language-autohotkey .token.tag,.token.deleted,.token.function,.token.selector,.token.tag{color:#3498db}.token.bold,.token.function,.token.important{font-weight:700}.token.italic{font-style:italic} ================================================ FILE: build_production/display/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Display Responsive

Name Class
Display Block .db
Display Inline .di
Display Inline-block .dib
Display None .dn
Display Flex .df
Full Width Not Responsive .full
W100 Not Responsive .w100

Example:

<div class="dn lg-df w100">
    <!-- Show content on large breakpoint -->
</div>
================================================ FILE: build_production/examples/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Modal Titles Are Hard

Modal Content goes here

<div class="relative br4 brdr1 bcg30">
    <button class="xbg dim absolute pin-top pin-right lh1 tcg30 ft9 mt1 mr1">&times;</button>
    <div class="brdr1--bottom bcg10 pv2 ph2">
        <h2 class="tcg50 ft6 fw6">Modal Titles Are Hard</h2>
    </div>
    <div class="pv2 ph2">
        <p class="tcg50 ft4">Modal Content goes here</p>
    </div>
    <div class="brdr1--top bcg10 pv2 ph2">
        <p class="tar">
            <button class="dib dim pv1 ph3 tcg50 brdr1 bgw bcg20 br3 ft5 mr1">No</button>
            <button class="dib dim pv1 ph3 tcw brdr1 bc1 bg1 br3 ft5">Yes</button>
        </p>
    </div>
</div>

Put your tab content here.

<div class="df brdr1--top brdr1--left brdr1--right bcg20">
    <a href="#" class="brdr1--right bcg20 w100 pv2 tac ft3 fw6 uppercase ls2 tc1">Account</a>
    <a href="#" class="brdr1--bottom bcg20 w100 pv2 tac ft3 fw6 uppercase ls2 bgg05 tcg30">Invoices</a>
    <a href="#" class="brdr1--bottom bcg20 w100 pv2 tac ft3 fw6 uppercase ls2 bgg05 tcg30">Stripe</a>
    <a href="#" class="brdr1--bottom bcg20 w100 pv2 tac ft3 fw6 uppercase ls2 bgg05 tcg30">Billing</a>
</div>
<div class="brdr1--bottom brdr1--left brdr1--right bcg20 pv4 ph4">
    <p class="tcg50 ft4">Put your tab content here.</p>
</div>
================================================ FILE: build_production/flexbox/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Flexbox Responsive

Class Value
.flex or .df display: flex
.iflex display: inline-flex
.flex-grow flex-grow: 1
.fb100 flex-basis: 100%
.fdr flex-direction: row
.fdrr flex-direction: row-reverse
.fdc flex-direction: column
.fdcr flex-direction: column-reverse

Content Justification Responsive

Class Value
.jcc justify-content: center
.jcsb justify-content: space-between
.jcsa justify-content: space-around
.jcfs justify-content: flex-start
.jcfe justify-content: flex-end

Item Alignment Responsive

Class Value
.aic align-items: center
.aifs align-items: flex-start
.aife align-items: flex-end
.ais align-items: stretch
.aib align-items: baseline

Content Alignment Responsive

Class Value
.acc align-content: center
.acfs align-content: flex-start
.acfe align-content: flex-end
.acs align-content: stretch
.acb align-content: baseline
================================================ FILE: build_production/floats/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Floats Responsive

Class Value
.fl float: left
.fr float: right
.fn float: none
.finit float: initial
.finhe float: inherit

Example:

<div class="clearfix">
    <div class="md-fl">Floated left on medium breakpoint</div>
    <div class="md-fr">Floated right on medium breakpoint</div>
</div>
================================================ FILE: build_production/fonts/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Fonts Partially Responsive

Yes, even letter-spacing gets responsive love in Beard. Why would you need responsive letter-spacing? Whenever spaced out text changes in size, it's helpful to have the letter-spacing change with it. These helpers make it easy to do so in a similar way to the font-sizing helpers.

Font Family Helpers Not Responsive

Style Class Default Stack
Sans Serif .sans 'Helvetica Neue', Helvetica, Arial, sans-serif
Serif .serif Merriweather, Georgia, serif
Code .code Consolas, Monaco, 'Andale Mono', monospace

Example:

<code class="code">Help</code>

Note: The font family helpers are not responsive. That would just be silly.


Font Weight Helpers Not Responsive

Weight Value Classes
Thin 100 .fw1 or .fwthin
Extra Light 200 .fw2 or .fwxlight
Light 300 .fw3 or .fwlight
Normal 400 .fw4 or .fwnormal
Medium 500 .fw5 or .fwmedium
Semibold 600 .fw6 or .fwsemibold
Bold 700 .fw7 or .fwbold
Extra Bold 800 .fw8 or .fwxbold
Black 900 .fw9 or .fwblack

Example:

<p class="fw8">This text would be really bold</code>

Font Sizing Helpers Responsive

Beard offers 17 levels of font-sizing. These helpers are responsive to make sizing easy across breakpoints.

Name Class Example
Font Level 1 .ft1 Hi
Font Level 2 .ft2 Hi
Font Level 3 .ft3 Hi
Font Level 4 .ft4 Hi
Font Level 5 .ft4 Hi
Font Level 6 .ft4 Hi
Font Level 7 .ft7 Hi
Font Level 8 .ft8 Hi
Font Level 9 .ft9 Hi
Font Level 10 .ft10 Hi
Font Level 11 .ft11 Hi
Font Level 12 .ft12 Hi
Font Level 13 .ft13 Hi
Font Level 14 .ft14 Hi
Font Level 15 .ft15 Hi
Font Level 16 .ft16 Hi
Font Level 17 .ft17 Hi

Example:

<h1 class="ft2 md-ft4 xlg-ft12">This Headline Gets Bigger With Space!</h1>
================================================ FILE: build_production/grid/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Grid Responsive

12-column Grid

Beard ships with a standard 12-column grid and provides responsive helper classes to change the layout when the viewport reaches a certain breakpoint. It also supports nested grids and non-responsive grids for increased flexibility.

Hint: To get the grid to maintain its ratios on the small breakpoint, use the .frame--stay modifier on your .frame wrapper.

Examples

.blk.md-blk6
.blk.md-blk6
.blk.md-blk--offset3
.blk3.md-blk--push9
blk9.md-blk--pull3

The Auto Grid

The AutoGrid is the easiest way to get started. Simply use a div with a .frame class and place any number of .blk elements as direct descendants. The AutoGrid will automatically figure out the width for each column and will give it a generous 30px of padding between each of them. This will create 60px wide gutter between columns.

.blk
.blk
.blk
.blk
.blk
.blk
.blk
.blk
.blk

Grids with no padding .frame--xpad

Uno
Dos
Tres
Quatro
1
2
3
1
2

Nested Grids with .frame--stay

Nested
Nested
1
2
3
================================================ FILE: build_production/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Quickstart

Beard can be installed via NPM:

npm install beardcss

Or link it from the CDN

<link rel="stylesheet" href="https://unpkg.com/beardcss/dist/beard.css">

Introduction

Beard's most popular and polarizing feature is its helper classes. Many people feel utility classes like the ones that Beard generates for you leads to bloat and are just as bad as using inline styles. We've found that having a rich set of helper classes makes your projects easier to build, easier to reason, and more bulletproof. This approach is more common in web application contexts, which is where Beard was born out of.

Beard utilizes shorthand for most of the classes it provides. For example, to achieve a margin-top which uses the 2nd step in the spacing scale, use .mt2. The padding version of this would be .pt2. You’ll find that once you master the basic nomenclature, you’ll be able to quickly compose sets of classes together to style elements.

<h1 class="tcg50 ft8 fw6 pv2 ph2">This is your header</h1>

Another example of the Beard nomenclature is font sizing. To use the 7th step in the font scale, you use .ft7. If you wanted to change the size on a different breakpoint, you would use .md-ft9

================================================ FILE: build_production/installation/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Installation

Beard can be installed via NPM:

npm install beardcss

Or link it from the CDN

<link rel="stylesheet" href="https://unpkg.com/beardcss/dist/beard.css">

Adding Beard into your project

The Recommended Way

The best way to add Beard to your project is to import beard.before and beard.after into your main Sass file. From there, we recommend adding your site styles between the `beard.before` and `beard.after` sections. This allows for the best source ordering. For example:

// Customize Beard's defaults
$brand-color-1: #3BBD61;

// Import Beard's settings and tools
@import '../node_modules/beardcss/stylesheets/beard.before';

// Place custom spacing, color, and media query configuration here
@include new-spacing-helper('0\\.5', 0.5);
@include new-color('1--light', lighten($brand-color-1, 15%));
@include new-breakpoint(tablet, '(min-width: 600px)');

// Your site styles go here
@import 'app';

// Beard's helpers are generated here
@import '../node_modules/beardcss/stylesheets/beard.after';

Note: Don’t forget to change the import paths to where you installed Beard.


Or…Just the Dead Simple Installation

Or you could just import it directly. We don't recommend it, but if you need something quick, go ahead!

@import '../node_modules/beardcss/beard'

================================================ FILE: build_production/js/app.js ================================================ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(e,n,r){if(i(e,n))return void(e[n]=r);if(e._isVue)return void t(e._data,n,r);var s=e.__ob__;if(!s)return void(e[n]=r);if(s.convert(n,r),s.dep.notify(),s.vms)for(var a=s.vms.length;a--;){var o=s.vms[a];o._proxy(n),o._digest()}return r}function e(t,e){if(i(t,e)){delete t[e];var n=t.__ob__;if(!n)return void(t._isVue&&(delete t._data[e],t._digest()));if(n.dep.notify(),n.vms)for(var r=n.vms.length;r--;){var s=n.vms[r];s._unproxy(e),s._digest()}}}function i(t,e){return Pi.call(t,e)}function n(t){return Ni.test(t)}function r(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function s(t){return null==t?"":t.toString()}function a(t){if("string"!=typeof t)return t;var e=Number(t);return isNaN(e)?t:e}function o(t){return"true"===t||"false"!==t&&t}function l(t){var e=t.charCodeAt(0),i=t.charCodeAt(t.length-1);return e!==i||34!==e&&39!==e?t:t.slice(1,-1)}function h(t){return t.replace(Oi,c)}function c(t,e){return e?e.toUpperCase():""}function u(t){return t.replace(Ti,"$1-$2").toLowerCase()}function f(t){return t.replace(ji,c)}function p(t,e){return function(i){var n=arguments.length;return n?n>1?t.apply(e,arguments):t.call(e,i):t.call(e)}}function d(t,e){e=e||0;for(var i=t.length-e,n=new Array(i);i--;)n[i]=t[i+e];return n}function v(t,e){for(var i=Object.keys(e),n=i.length;n--;)t[i[n]]=e[i[n]];return t}function g(t){return null!==t&&"object"==typeof t}function m(t){return Si.call(t)===Ei}function b(t,e,i,n){Object.defineProperty(t,e,{value:i,enumerable:!!n,writable:!0,configurable:!0})}function _(t,e){var i,n,r,s,a,o=function l(){var o=Date.now()-s;e>o&&o>=0?i=setTimeout(l,e-o):(i=null,a=t.apply(r,n),i||(r=n=null))};return function(){return r=this,n=arguments,s=Date.now(),i||(i=setTimeout(o,e)),a}}function y(t,e){for(var i=t.length;i--;)if(t[i]===e)return i;return-1}function w(t){var e=function i(){return i.cancelled?void 0:t.apply(this,arguments)};return e.cancel=function(){e.cancelled=!0},e}function k(t,e){return t==e||!(!g(t)||!g(e))&&JSON.stringify(t)===JSON.stringify(e)}function C(t){this.size=0,this.limit=t,this.head=this.tail=void 0,this._keymap=Object.create(null)}function $(){var t,e=en.slice(ln,an).trim();if(e){t={};var i=e.match(vn);t.name=i[0],i.length>1&&(t.args=i.slice(1).map(x))}t&&(nn.filters=nn.filters||[]).push(t),ln=an+1}function x(t){if(gn.test(t))return{value:a(t),dynamic:!1};var e=l(t),i=e===t;return{value:i?t:e,dynamic:i}}function A(t){var e=dn.get(t);if(e)return e;for(en=t,hn=cn=!1,un=fn=pn=0,ln=0,nn={},an=0,on=en.length;on>an;an++)if(sn=rn,rn=en.charCodeAt(an),hn)39===rn&&92!==sn&&(hn=!hn);else if(cn)34===rn&&92!==sn&&(cn=!cn);else if(124===rn&&124!==en.charCodeAt(an+1)&&124!==en.charCodeAt(an-1))null==nn.expression?(ln=an+1,nn.expression=en.slice(0,an).trim()):$();else switch(rn){case 34:cn=!0;break;case 39:hn=!0;break;case 40:pn++;break;case 41:pn--;break;case 91:fn++;break;case 93:fn--;break;case 123:un++;break;case 125:un--}return null==nn.expression?nn.expression=en.slice(0,an).trim():0!==ln&&$(),dn.put(t,nn),nn}function P(t){return t.replace(bn,"\\$&")}function N(){var t=P(An.delimiters[0]),e=P(An.delimiters[1]),i=P(An.unsafeDelimiters[0]),n=P(An.unsafeDelimiters[1]);yn=new RegExp(i+"((?:.|\\n)+?)"+n+"|"+t+"((?:.|\\n)+?)"+e,"g"),wn=new RegExp("^"+i+"((?:.|\\n)+?)"+n+"$"),_n=new C(1e3)}function O(t){_n||N();var e=_n.get(t);if(e)return e;if(!yn.test(t))return null;for(var i,n,r,s,a,o,l=[],h=yn.lastIndex=0;i=yn.exec(t);)n=i.index,n>h&&l.push({value:t.slice(h,n)}),r=wn.test(i[0]),s=r?i[1]:i[2],a=s.charCodeAt(0),o=42===a,s=o?s.slice(1):s,l.push({tag:!0,value:s.trim(),html:r,oneTime:o}),h=n+i[0].length;return h1?t.map(function(t){return j(t,e)}).join("+"):j(t[0],e,!0)}function j(t,e,i){return t.tag?t.oneTime&&e?'"'+e.$eval(t.value)+'"':S(t.value,i):'"'+t.value+'"'}function S(t,e){if(kn.test(t)){var i=A(t);return i.filters?"this._applyFilters("+i.expression+",null,"+JSON.stringify(i.filters)+",false)":"("+t+")"}return e?t:"("+t+")"}function E(t,e,i,n){R(t,1,function(){e.appendChild(t)},i,n)}function F(t,e,i,n){R(t,1,function(){I(t,e)},i,n)}function D(t,e,i){R(t,-1,function(){z(t)},e,i)}function R(t,e,i,n,r){var s=t.__v_trans;if(!s||!s.hooks&&!Ji||!n._isCompiled||n.$parent&&!n.$parent._isCompiled)return i(),void(r&&r());var a=e>0?"enter":"leave";s[a](i,r)}function B(t){return"string"==typeof t&&(t=document.querySelector(t)),t}function W(t){if(!t)return!1;var e=t.ownerDocument.documentElement,i=t.parentNode;return e===t||e===i||!(!i||1!==i.nodeType||!e.contains(i))}function L(t,e){var i=t.getAttribute(e);return null!==i&&t.removeAttribute(e),i}function H(t,e){var i=L(t,":"+e);return null===i&&(i=L(t,"v-bind:"+e)),i}function M(t,e){return t.hasAttribute(e)||t.hasAttribute(":"+e)||t.hasAttribute("v-bind:"+e)}function I(t,e){e.parentNode.insertBefore(t,e)}function V(t,e){e.nextSibling?I(t,e.nextSibling):e.parentNode.appendChild(t)}function z(t){t.parentNode.removeChild(t)}function U(t,e){e.firstChild?I(t,e.firstChild):e.appendChild(t)}function q(t,e){var i=t.parentNode;i&&i.replaceChild(e,t)}function J(t,e,i,n){t.addEventListener(e,i,n)}function Q(t,e,i){t.removeEventListener(e,i)}function Z(t){var e=t.className;return"object"==typeof e&&(e=e.baseVal||""),e}function G(t,e){Hi&&!/svg$/.test(t.namespaceURI)?t.className=e:t.setAttribute("class",e)}function Y(t,e){if(t.classList)t.classList.add(e);else{var i=" "+Z(t)+" ";i.indexOf(" "+e+" ")<0&&G(t,(i+e).trim())}}function X(t,e){if(t.classList)t.classList.remove(e);else{for(var i=" "+Z(t)+" ",n=" "+e+" ";i.indexOf(n)>=0;)i=i.replace(n," ");G(t,i.trim())}t.className||t.removeAttribute("class")}function K(t,e){var i,n;if(it(t)&&ot(t.content)&&(t=t.content),t.hasChildNodes())for(tt(t),n=e?document.createDocumentFragment():document.createElement("div");i=t.firstChild;)n.appendChild(i);return n}function tt(t){for(var e;e=t.firstChild,et(e);)t.removeChild(e);for(;e=t.lastChild,et(e);)t.removeChild(e)}function et(t){return t&&(3===t.nodeType&&!t.data.trim()||8===t.nodeType)}function it(t){return t.tagName&&"template"===t.tagName.toLowerCase()}function nt(t,e){var i=An.debug?document.createComment(t):document.createTextNode(e?" ":"");return i.__v_anchor=!0,i}function rt(t){if(t.hasAttributes())for(var e=t.attributes,i=0,n=e.length;n>i;i++){var r=e[i].name;if(On.test(r))return h(r.replace(On,""))}}function st(t,e,i){for(var n;t!==e;)n=t.nextSibling,i(t),t=n;i(e)}function at(t,e,i,n,r){function s(){if(o++,a&&o>=l.length){for(var t=0;tr;r++){var a=n[r];Tn.test(a)||jn.test(a)||(e=i[a],m(e)&&(i[a]=wi.extend(e)))}}function dt(t){var e,i,n=t.props;if(Fi(n))for(t.props={},e=n.length;e--;)i=n[e],"string"==typeof i?t.props[i]=null:i.name&&(t.props[i.name]=i);else if(m(n)){var r=Object.keys(n);for(e=r.length;e--;)i=n[r[e]],"function"==typeof i&&(n[r[e]]={type:i})}}function vt(t){if(Fi(t)){for(var e,i={},n=t.length;n--;){e=t[n];var r="function"==typeof e?e.options&&e.options.name||e.id:e.name||e.id;r&&(i[r]=e)}return i}return t}function gt(t,e,n){function r(i){var r=Sn[i]||En;a[i]=r(t[i],e[i],n,i)}pt(e),dt(e);var s,a={};if(e["extends"]&&(t="function"==typeof e["extends"]?gt(t,e["extends"].options,n):gt(t,e["extends"],n)),e.mixins)for(var o=0,l=e.mixins.length;l>o;o++){var h=e.mixins[o],c=h.prototype instanceof wi?h.options:h;t=gt(t,c,n)}for(s in t)r(s);for(s in e)i(t,s)||r(s);return a}function mt(t,e,i,n){if("string"==typeof i){var r,s=t[e],a=s[i]||s[r=h(i)]||s[r.charAt(0).toUpperCase()+r.slice(1)];return a}}function bt(){this.id=Fn++,this.subs=[]}function _t(t){Wn=!1,t(),Wn=!0}function yt(t){if(this.value=t,this.dep=new bt,b(t,"__ob__",this),Fi(t)){var e=Di?wt:kt;e(t,Rn,Bn),this.observeArray(t)}else this.walk(t)}function wt(t,e){t.__proto__=e}function kt(t,e,i){for(var n=0,r=i.length;r>n;n++){var s=i[n];b(t,s,e[s])}}function Ct(t,e){if(t&&"object"==typeof t){var n;return i(t,"__ob__")&&t.__ob__ instanceof yt?n=t.__ob__:Wn&&(Fi(t)||m(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new yt(t)),n&&e&&n.addVm(e),n}}function $t(t,e,i){var n=new bt,r=Object.getOwnPropertyDescriptor(t,e);if(!r||r.configurable!==!1){var s=r&&r.get,a=r&&r.set,o=Ct(i);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):i;if(bt.target&&(n.depend(),o&&o.dep.depend(),Fi(e)))for(var r,a=0,l=e.length;l>a;a++)r=e[a],r&&r.__ob__&&r.__ob__.dep.depend();return e},set:function(e){var r=s?s.call(t):i;e!==r&&(a?a.call(t,e):i=e,o=Ct(e),n.notify())}})}}function xt(t){t.prototype._init=function(t){t=t||{},this.$el=null,this.$parent=t.parent,this.$root=this.$parent?this.$parent.$root:this,this.$children=[],this.$refs={},this.$els={},this._watchers=[],this._directives=[],this._uid=Hn++,this._isVue=!0,this._events={},this._eventsCount={},this._isFragment=!1,this._fragment=this._fragmentStart=this._fragmentEnd=null,this._isCompiled=this._isDestroyed=this._isReady=this._isAttached=this._isBeingDestroyed=this._vForRemoving=!1,this._unlinkFn=null,this._context=t._context||this.$parent,this._scope=t._scope,this._frag=t._frag,this._frag&&this._frag.children.push(this),this.$parent&&this.$parent.$children.push(this),t=this.$options=gt(this.constructor.options,t,this),this._updateRef(),this._data={},this._callHook("init"),this._initState(),this._initEvents(),this._callHook("created"),t.el&&this.$mount(t.el)}}function At(t){if(void 0===t)return"eof";var e=t.charCodeAt(0);switch(e){case 91:case 93:case 46:case 34:case 39:case 48:return t;case 95:case 36:return"ident";case 32:case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"ws"}return e>=97&&122>=e||e>=65&&90>=e?"ident":e>=49&&57>=e?"number":"else"}function Pt(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n(e)?l(e):"*"+e)}function Nt(t){function e(){var e=t[c+1];return u===Yn&&"'"===e||u===Xn&&'"'===e?(c++,n="\\"+e,p[In](),!0):void 0}var i,n,r,s,a,o,l,h=[],c=-1,u=qn,f=0,p=[];for(p[Vn]=function(){void 0!==r&&(h.push(r),r=void 0)},p[In]=function(){void 0===r?r=n:r+=n},p[zn]=function(){p[In](),f++},p[Un]=function(){if(f>0)f--,u=Gn,p[In]();else{if(f=0,r=Pt(r),r===!1)return!1;p[Vn]()}};null!=u;)if(c++,i=t[c],"\\"!==i||!e()){if(s=At(i),l=er[u],a=l[s]||l["else"]||tr,a===tr)return;if(u=a[0],o=p[a[1]],o&&(n=a[2],n=void 0===n?i:n,o()===!1))return;if(u===Kn)return h.raw=t,h}}function Ot(t){var e=Mn.get(t);return e||(e=Nt(t),e&&Mn.put(t,e)),e}function Tt(t,e){return Lt(e).get(t)}function jt(e,i,n){var r=e;if("string"==typeof i&&(i=Nt(i)),!i||!g(e))return!1;for(var s,a,o=0,l=i.length;l>o;o++)s=e,a=i[o],"*"===a.charAt(0)&&(a=Lt(a.slice(1)).get.call(r,r)),l-1>o?(e=e[a],g(e)||(e={},t(s,a,e))):Fi(e)?e.$set(a,n):a in e?e[a]=n:t(e,a,n);return!0}function St(){}function Et(t,e){var i=vr.length;return vr[i]=e?t.replace(hr,"\\n"):t,'"'+i+'"'}function Ft(t){var e=t.charAt(0),i=t.slice(1);return sr.test(i)?t:(i=i.indexOf('"')>-1?i.replace(ur,Dt):i,e+"scope."+i)}function Dt(t,e){return vr[e]}function Rt(t){or.test(t),vr.length=0;var e=t.replace(cr,Et).replace(lr,"");return e=(" "+e).replace(pr,Ft).replace(ur,Dt),Bt(e)}function Bt(t){try{return new Function("scope","return "+t+";")}catch(e){return St}}function Wt(t){var e=Ot(t);return e?function(t,i){jt(t,e,i)}:void 0}function Lt(t,e){t=t.trim();var i=nr.get(t);if(i)return e&&!i.set&&(i.set=Wt(i.exp)),i;var n={exp:t};return n.get=Ht(t)&&t.indexOf("[")<0?Bt("scope."+t):Rt(t),e&&(n.set=Wt(t)),nr.put(t,n),n}function Ht(t){return fr.test(t)&&!dr.test(t)&&"Math."!==t.slice(0,5)}function Mt(){mr.length=0,br.length=0,_r={},yr={},wr=!1}function It(){for(var t=!0;t;)t=!1,Vt(mr),Vt(br),mr.length?t=!0:(Bi&&An.devtools&&Bi.emit("flush"),Mt())}function Vt(t){for(var e=0;e0){var a=s+(n?e:lt(e));r=Dr.get(a),r||(r=Fe(i,t.$options,!0),Dr.put(a,r))}else r=Fe(i,t.$options,!0);this.linker=r}function ae(t,e,i){var n=t.node.previousSibling;if(n){for(t=n.__v_frag;!(t&&t.forId===i&&t.inserted||n===e);){if(n=n.previousSibling,!n)return;t=n.__v_frag}return t}}function oe(t){var e=t.node;if(t.end)for(;!e.__vue__&&e!==t.end&&e.nextSibling;)e=e.nextSibling;return e.__vue__}function le(t){for(var e=-1,i=new Array(Math.floor(t));++eo;o++)if(n=t.options[o],s=i?n.hasAttribute("selected"):n.selected){if(r=n.hasOwnProperty("_value")?n._value:n.value,!e)return r;a.push(r)}return a}function ue(t,e){for(var i=t.length;i--;)if(k(t[i],e))return i;return-1}function fe(t,e){var i=e.map(function(t){var e=t.charCodeAt(0);return e>47&&58>e?parseInt(t,10):1===t.length&&(e=t.toUpperCase().charCodeAt(0),e>64&&91>e)?e:is[t]});return i=[].concat.apply([],i),function(e){return i.indexOf(e.keyCode)>-1?t.call(this,e):void 0}}function pe(t){return function(e){return e.stopPropagation(),t.call(this,e)}}function de(t){return function(e){return e.preventDefault(),t.call(this,e)}}function ve(t){return function(e){return e.target===e.currentTarget?t.call(this,e):void 0}}function ge(t){if(os[t])return os[t];var e=me(t);return os[t]=os[e]=e,e}function me(t){t=u(t);var e=h(t),i=e.charAt(0).toUpperCase()+e.slice(1);ls||(ls=document.createElement("div"));var n,r=rs.length;if("filter"!==e&&e in ls.style)return{kebab:t,camel:e};for(;r--;)if(n=ss[r]+i,n in ls.style)return{kebab:rs[r]+t,camel:n}}function be(t){var e=[];if(Fi(t))for(var i=0,n=t.length;n>i;i++){var r=t[i];if(r)if("string"==typeof r)e.push(r);else for(var s in r)r[s]&&e.push(s)}else if(g(t))for(var a in t)t[a]&&e.push(a);return e}function _e(t,e,i){if(e=e.trim(),-1===e.indexOf(" "))return void i(t,e);for(var n=e.split(/\s+/),r=0,s=n.length;s>r;r++)i(t,n[r])}function ye(t,e,i){function n(){++s>=r?i():t[s].call(e,n)}var r=t.length,s=0;t[0].call(e,n)}function we(t,e,i){for(var r,s,a,o,l,c,f,p=[],d=Object.keys(e),v=d.length;v--;)s=d[v],r=e[s]||$s,l=h(s),xs.test(l)&&(f={name:s,path:l,options:r,mode:Cs.ONE_WAY,raw:null},a=u(s),null===(o=H(t,a))&&(null!==(o=H(t,a+".sync"))?f.mode=Cs.TWO_WAY:null!==(o=H(t,a+".once"))&&(f.mode=Cs.ONE_TIME)),null!==o?(f.raw=o,c=A(o),o=c.expression,f.filters=c.filters,n(o)&&!c.filters?f.optimizedLiteral=!0:f.dynamic=!0,f.parentPath=o):null!==(o=L(t,a))&&(f.raw=o),p.push(f));return ke(p)}function ke(t){return function(e,n){e._props={};for(var r,s,h,c,f,p=e.$options.propsData,d=t.length;d--;)if(r=t[d],f=r.raw,s=r.path,h=r.options,e._props[s]=r,p&&i(p,s)&&$e(e,r,p[s]),null===f)$e(e,r,void 0);else if(r.dynamic)r.mode===Cs.ONE_TIME?(c=(n||e._context||e).$get(r.parentPath),$e(e,r,c)):e._context?e._bindDir({name:"prop",def:Ps,prop:r},null,null,n):$e(e,r,e.$get(r.parentPath));else if(r.optimizedLiteral){var v=l(f);c=v===f?o(a(f)):v,$e(e,r,c)}else c=h.type===Boolean&&(""===f||f===u(r.name))||f,$e(e,r,c)}}function Ce(t,e,i,n){var r=e.dynamic&&Ht(e.parentPath),s=i;void 0===s&&(s=Ae(t,e)),s=Ne(e,s,t);var a=s!==i;Pe(e,s,t)||(s=void 0),r&&!a?_t(function(){n(s)}):n(s)}function $e(t,e,i){Ce(t,e,i,function(i){$t(t,e.path,i)})}function xe(t,e,i){Ce(t,e,i,function(i){t[e.path]=i})}function Ae(t,e){var n=e.options;if(!i(n,"default"))return n.type!==Boolean&&void 0;var r=n["default"];return g(r),"function"==typeof r&&n.type!==Function?r.call(t):r}function Pe(t,e,i){if(!t.options.required&&(null===t.raw||null==e))return!0;var n=t.options,r=n.type,s=!r,a=[];if(r){Fi(r)||(r=[r]);for(var o=0;or;r++)n[r]._bind();return n}function Re(t,e){return t=t.descriptor.def.priority||zs,e=e.descriptor.def.priority||zs,t>e?-1:t===e?0:1}function Be(t,e,i,n){function r(r){We(t,e,r),i&&n&&We(i,n)}return r.dirs=e,r}function We(t,e,i){for(var n=e.length;n--;)e[n]._teardown()}function Le(t,e,i,n){var r=we(e,i,t),s=De(function(){r(t,n)},t);return Be(t,s)}function He(t,e,i){var n,r,s=e._containerAttrs,a=e._replacerAttrs;return 11!==t.nodeType&&(e._asComponent?(s&&i&&(n=ti(s,i)),a&&(r=ti(a,e))):r=ti(t.attributes,e)),e._containerAttrs=e._replacerAttrs=null,function(t,e,i){var s,a=t._context;a&&n&&(s=De(function(){n(a,e,null,i)},a));var o=De(function(){r&&r(t,e)},t);return Be(t,o,a,s)}}function Me(t,e){var i=t.nodeType;return 1!==i||ri(t)?3===i&&t.data.trim()?Ve(t,e):null:Ie(t,e)}function Ie(t,e){if("TEXTAREA"===t.tagName){var i=O(t.value);i&&(t.setAttribute(":value",T(i)),t.value="")}var n,r=t.hasAttributes(),s=r&&d(t.attributes);return r&&(n=Ye(t,s,e)),n||(n=Ze(t,e)),n||(n=Ge(t,e)),!n&&r&&(n=ti(s,e)),n}function Ve(t,e){if(t._skip)return ze;var i=O(t.wholeText);if(!i)return null;for(var n=t.nextSibling;n&&3===n.nodeType;)n._skip=!0,n=n.nextSibling;for(var r,s,a=document.createDocumentFragment(),o=0,l=i.length;l>o;o++)s=i[o],r=s.tag?Ue(s,e):document.createTextNode(s.value),a.appendChild(r);return qe(i,a,e)}function ze(t,e){z(e)}function Ue(t,e){function i(e){if(!t.descriptor){var i=A(t.value);t.descriptor={name:e,def:ys[e],expression:i.expression,filters:i.filters}}}var n;return t.oneTime?n=document.createTextNode(t.value):t.html?(n=document.createComment("v-html"),i("html")):(n=document.createTextNode(" "),i("text")),n}function qe(t,e){return function(i,n,r,a){for(var o,l,h,c=e.cloneNode(!0),u=d(c.childNodes),f=0,p=t.length;p>f;f++)o=t[f],l=o.value,o.tag&&(h=u[f],o.oneTime?(l=(a||i).$eval(l),o.html?q(h,Yt(l,!0)):h.data=s(l)):i._bindDir(o.descriptor,h,r,a));q(n,c)}}function Je(t,e){for(var i,n,r,s=[],a=0,o=t.length;o>a;a++)r=t[a],i=Me(r,e),n=i&&i.terminal||"SCRIPT"===r.tagName||!r.hasChildNodes()?null:Je(r.childNodes,e),s.push(i,n);return s.length?Qe(s):null}function Qe(t){return function(e,i,n,r,s){for(var a,o,l,h=0,c=0,u=t.length;u>h;c++){a=i[c],o=t[h++],l=t[h++];var f=d(a.childNodes);o&&o(e,a,n,r,s),l&&l(e,f,n,r,s)}}}function Ze(t,e){var i=t.tagName.toLowerCase();if(!Tn.test(i)){var n=mt(e,"elementDirectives",i);return n?Ke(t,i,"",e,n):void 0}}function Ge(t,e){var i=ht(t,e);if(i){var n=rt(t),r={name:"component",ref:n,expression:i.id,def:Ws.component,modifiers:{literal:!i.dynamic}},s=function(t,e,i,s,a){n&&$t((s||t).$refs,n,null),t._bindDir(r,e,i,s,a)};return s.terminal=!0,s}}function Ye(t,e,i){if(null!==L(t,"v-pre"))return Xe;if(t.hasAttribute("v-else")){var n=t.previousElementSibling;if(n&&n.hasAttribute("v-if"))return Xe}for(var r,s,a,o,l,h,c,u,f,p,d=0,v=e.length;v>d;d++)r=e[d],s=r.name.replace(Is,""),(l=s.match(Ms))&&(f=mt(i,"directives",l[1]),f&&f.terminal&&(!p||(f.priority||Us)>p.priority)&&(p=f,c=r.name,o=ei(r.name),a=r.value,h=l[1],u=l[2]));return p?Ke(t,h,a,i,p,c,u,o):void 0}function Xe(){}function Ke(t,e,i,n,r,s,a,o){var l=A(i),h={name:e,arg:a,expression:l.expression,filters:l.filters,raw:i,attr:s,modifiers:o,def:r};"for"!==e&&"router-view"!==e||(h.ref=rt(t));var c=function(t,e,i,n,r){h.ref&&$t((n||t).$refs,h.ref,null),t._bindDir(h,e,i,n,r)};return c.terminal=!0,c}function ti(t,e){function i(t,e,i){var n=i&&ni(i),r=!n&&A(s);v.push({name:t,attr:a,raw:o,def:e,arg:h,modifiers:c,expression:r&&r.expression,filters:r&&r.filters,interp:i,hasOneTime:n})}for(var n,r,s,a,o,l,h,c,u,f,p,d=t.length,v=[];d--;)if(n=t[d],r=a=n.name,s=o=n.value,f=O(s),h=null,c=ei(r),r=r.replace(Is,""),f)s=T(f),h=r,i("bind",ys.bind,f);else if(Vs.test(r))c.literal=!Ls.test(r),i("transition",Ws.transition);else if(Hs.test(r))h=r.replace(Hs,""),i("on",ys.on);else if(Ls.test(r))l=r.replace(Ls,""),"style"===l||"class"===l?i(l,Ws[l]):(h=l,i("bind",ys.bind));else if(p=r.match(Ms)){if(l=p[1],h=p[2],"else"===l)continue;u=mt(e,"directives",l,!0),u&&i(l,u)}return v.length?ii(v):void 0}function ei(t){var e=Object.create(null),i=t.match(Is);if(i)for(var n=i.length;n--;)e[i[n].slice(1)]=!0;return e}function ii(t){return function(e,i,n,r,s){for(var a=t.length;a--;)e._bindDir(t[a],i,n,r,s)}}function ni(t){for(var e=t.length;e--;)if(t[e].oneTime)return!0}function ri(t){return"SCRIPT"===t.tagName&&(!t.hasAttribute("type")||"text/javascript"===t.getAttribute("type"))}function si(t,e){return e&&(e._containerAttrs=oi(t)),it(t)&&(t=Yt(t)),e&&(e._asComponent&&!e.template&&(e.template=""),e.template&&(e._content=K(t),t=ai(t,e))),ot(t)&&(U(nt("v-start",!0),t),t.appendChild(nt("v-end",!0))),t}function ai(t,e){var i=e.template,n=Yt(i,!0);if(n){var r=n.firstChild,s=r.tagName&&r.tagName.toLowerCase();return e.replace?(t===document.body,n.childNodes.length>1||1!==r.nodeType||"component"===s||mt(e,"components",s)||M(r,"is")||mt(e,"elementDirectives",s)||r.hasAttribute("v-for")||r.hasAttribute("v-if")?n:(e._replacerAttrs=oi(r),li(t,r),r)):(t.appendChild(n),t)}}function oi(t){return 1===t.nodeType&&t.hasAttributes()?d(t.attributes):void 0}function li(t,e){for(var i,n,r=t.attributes,s=r.length;s--;)i=r[s].name,n=r[s].value,e.hasAttribute(i)||qs.test(i)?"class"===i&&!O(n)&&(n=n.trim())&&n.split(/\s+/).forEach(function(t){Y(e,t)}):e.setAttribute(i,n)}function hi(t,e){if(e){for(var i,n,r=t._slotContents=Object.create(null),s=0,a=e.children.length;a>s;s++)i=e.children[s],(n=i.getAttribute("slot"))&&(r[n]||(r[n]=[])).push(i);for(n in r)r[n]=ci(r[n],e);if(e.hasChildNodes()){var o=e.childNodes;if(1===o.length&&3===o[0].nodeType&&!o[0].data.trim())return;r["default"]=ci(e.childNodes,e)}}}function ci(t,e){var i=document.createDocumentFragment();t=d(t);for(var n=0,r=t.length;r>n;n++){var s=t[n];!it(s)||s.hasAttribute("v-if")||s.hasAttribute("v-for")||(e.removeChild(s),s=Yt(s,!0)),i.appendChild(s)}return i}function ui(t){function e(){}function n(t,e){var i=new Ut(e,t,null,{lazy:!0});return function(){return i.dirty&&i.evaluate(),bt.target&&i.depend(),i.value}}Object.defineProperty(t.prototype,"$data",{get:function(){return this._data},set:function(t){t!==this._data&&this._setData(t)}}),t.prototype._initState=function(){this._initProps(),this._initMeta(),this._initMethods(),this._initData(),this._initComputed()},t.prototype._initProps=function(){var t=this.$options,e=t.el,i=t.props;e=t.el=B(e),this._propsUnlinkFn=e&&1===e.nodeType&&i?Le(this,e,i,this._scope):null},t.prototype._initData=function(){var t=this.$options.data,e=this._data=t?t():{};m(e)||(e={});var n,r,s=this._props,a=Object.keys(e);for(n=a.length;n--;)r=a[n],s&&i(s,r)||this._proxy(r);Ct(e,this)},t.prototype._setData=function(t){t=t||{};var e=this._data;this._data=t;var n,r,s;for(n=Object.keys(e),s=n.length;s--;)r=n[s],r in t||this._unproxy(r);for(n=Object.keys(t),s=n.length;s--;)r=n[s],i(this,r)||this._proxy(r);e.__ob__.removeVm(this),Ct(t,this),this._digest()},t.prototype._proxy=function(t){if(!r(t)){var e=this;Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return e._data[t]},set:function(i){e._data[t]=i}})}},t.prototype._unproxy=function(t){r(t)||delete this[t]},t.prototype._digest=function(){for(var t=0,e=this._watchers.length;e>t;t++)this._watchers[t].update(!0)},t.prototype._initComputed=function(){var t=this.$options.computed;if(t)for(var i in t){var r=t[i],s={enumerable:!0,configurable:!0};"function"==typeof r?(s.get=n(r,this),s.set=e):(s.get=r.get?r.cache!==!1?n(r.get,this):p(r.get,this):e,s.set=r.set?p(r.set,this):e),Object.defineProperty(this,i,s)}},t.prototype._initMethods=function(){var t=this.$options.methods;if(t)for(var e in t)this[e]=p(t[e],this)},t.prototype._initMeta=function(){var t=this.$options._meta;if(t)for(var e in t)$t(this,e,t[e])}}function fi(t){function e(t,e){for(var i,n,r,s=e.attributes,a=0,o=s.length;o>a;a++)i=s[a].name,Qs.test(i)&&(i=i.replace(Qs,""),n=s[a].value,Ht(n)&&(n+=".apply(this, $arguments)"),r=(t._scope||t._context).$eval(n,!0),r._fromParent=!0,t.$on(i.replace(Qs),r))}function i(t,e,i){if(i){var r,s,a,o;for(s in i)if(r=i[s],Fi(r))for(a=0,o=r.length;o>a;a++)n(t,e,s,r[a]);else n(t,e,s,r)}}function n(t,e,i,r,s){var a=typeof r;if("function"===a)t[e](i,r,s);else if("string"===a){var o=t.$options.methods,l=o&&o[r];l&&t[e](i,l,s)}else r&&"object"===a&&n(t,e,i,r.handler,r)}function r(){this._isAttached||(this._isAttached=!0,this.$children.forEach(s))}function s(t){!t._isAttached&&W(t.$el)&&t._callHook("attached")}function a(){this._isAttached&&(this._isAttached=!1,this.$children.forEach(o))}function o(t){t._isAttached&&!W(t.$el)&&t._callHook("detached")}t.prototype._initEvents=function(){var t=this.$options;t._asComponent&&e(this,t.el),i(this,"$on",t.events),i(this,"$watch",t.watch)},t.prototype._initDOMHooks=function(){this.$on("hook:attached",r),this.$on("hook:detached",a)},t.prototype._callHook=function(t){this.$emit("pre-hook:"+t);var e=this.$options[t];if(e)for(var i=0,n=e.length;n>i;i++)e[i].call(this);this.$emit("hook:"+t)}}function pi(){}function di(t,e,i,n,r,s){this.vm=e,this.el=i,this.descriptor=t,this.name=t.name,this.expression=t.expression,this.arg=t.arg,this.modifiers=t.modifiers,this.filters=t.filters,this.literal=this.modifiers&&this.modifiers.literal,this._locked=!1,this._bound=!1,this._listeners=null,this._host=n,this._scope=r,this._frag=s}function vi(t){t.prototype._updateRef=function(t){var e=this.$options._ref;if(e){var i=(this._scope||this._context).$refs;t?i[e]===this&&(i[e]=null):i[e]=this}},t.prototype._compile=function(t){var e=this.$options,i=t;if(t=si(t,e),this._initElement(t),1!==t.nodeType||null===L(t,"v-pre")){var n=this._context&&this._context.$options,r=He(t,e,n);hi(this,e._content);var s,a=this.constructor;e._linkerCachable&&(s=a.linker,s||(s=a.linker=Fe(t,e)));var o=r(this,t,this._scope),l=s?s(this,t):Fe(t,e)(this,t);this._unlinkFn=function(){o(),l(!0)},e.replace&&q(i,t),this._isCompiled=!0,this._callHook("compiled")}},t.prototype._initElement=function(t){ot(t)?(this._isFragment=!0,this.$el=this._fragmentStart=t.firstChild,this._fragmentEnd=t.lastChild,3===this._fragmentStart.nodeType&&(this._fragmentStart.data=this._fragmentEnd.data=""),this._fragment=t):this.$el=t,this.$el.__vue__=this,this._callHook("beforeCompile")},t.prototype._bindDir=function(t,e,i,n,r){this._directives.push(new di(t,this,e,i,n,r))},t.prototype._destroy=function(t,e){if(this._isBeingDestroyed)return void(e||this._cleanup());var i,n,r=this,s=function(){!i||n||e||r._cleanup()};t&&this.$el&&(n=!0,this.$remove(function(){n=!1,s()})),this._callHook("beforeDestroy"), this._isBeingDestroyed=!0;var a,o=this.$parent;for(o&&!o._isBeingDestroyed&&(o.$children.$remove(this),this._updateRef(!0)),a=this.$children.length;a--;)this.$children[a].$destroy();for(this._propsUnlinkFn&&this._propsUnlinkFn(),this._unlinkFn&&this._unlinkFn(),a=this._watchers.length;a--;)this._watchers[a].teardown();this.$el&&(this.$el.__vue__=null),i=!0,s()},t.prototype._cleanup=function(){this._isDestroyed||(this._frag&&this._frag.children.$remove(this),this._data&&this._data.__ob__&&this._data.__ob__.removeVm(this),this.$el=this.$parent=this.$root=this.$children=this._watchers=this._context=this._scope=this._directives=null,this._isDestroyed=!0,this._callHook("destroyed"),this.$off())}}function gi(t){t.prototype._applyFilters=function(t,e,i,n){var r,s,a,o,l,h,c,u,f;for(h=0,c=i.length;c>h;h++)if(r=i[n?c-h-1:h],s=mt(this.$options,"filters",r.name,!0),s&&(s=n?s.write:s.read||s,"function"==typeof s)){if(a=n?[t,e]:[t],l=n?2:1,r.args)for(u=0,f=r.args.length;f>u;u++)o=r.args[u],a[u+l]=o.dynamic?this.$get(o.value):o.value;t=s.apply(this,a)}return t},t.prototype._resolveComponent=function(e,i){var n;if(n="function"==typeof e?e:mt(this.$options,"components",e,!0))if(n.options)i(n);else if(n.resolved)i(n.resolved);else if(n.requested)n.pendingCallbacks.push(i);else{n.requested=!0;var r=n.pendingCallbacks=[i];n.call(this,function(e){m(e)&&(e=t.extend(e)),n.resolved=e;for(var i=0,s=r.length;s>i;i++)r[i](e)},function(t){})}}}function mi(t){function i(t){return JSON.parse(JSON.stringify(t))}t.prototype.$get=function(t,e){var i=Lt(t);if(i){if(e){var n=this;return function(){n.$arguments=d(arguments);var t=i.get.call(n,n);return n.$arguments=null,t}}try{return i.get.call(this,this)}catch(r){}}},t.prototype.$set=function(t,e){var i=Lt(t,!0);i&&i.set&&i.set.call(this,this,e)},t.prototype.$delete=function(t){e(this._data,t)},t.prototype.$watch=function(t,e,i){var n,r=this;"string"==typeof t&&(n=A(t),t=n.expression);var s=new Ut(r,t,e,{deep:i&&i.deep,sync:i&&i.sync,filters:n&&n.filters,user:!i||i.user!==!1});return i&&i.immediate&&e.call(r,s.value),function(){s.teardown()}},t.prototype.$eval=function(t,e){if(Zs.test(t)){var i=A(t),n=this.$get(i.expression,e);return i.filters?this._applyFilters(n,null,i.filters):n}return this.$get(t,e)},t.prototype.$interpolate=function(t){var e=O(t),i=this;return e?1===e.length?i.$eval(e[0].value)+"":e.map(function(t){return t.tag?i.$eval(t.value):t.value}).join(""):t},t.prototype.$log=function(t){var e=t?Tt(this._data,t):this._data;if(e&&(e=i(e)),!t){var n;for(n in this.$options.computed)e[n]=i(this[n]);if(this._props)for(n in this._props)e[n]=i(this[n])}}}function bi(t){function e(t,e,n,r,s,a){e=i(e);var o=!W(e),l=r===!1||o?s:a,h=!o&&!t._isAttached&&!W(t.$el);return t._isFragment?(st(t._fragmentStart,t._fragmentEnd,function(i){l(i,e,t)}),n&&n()):l(t.$el,e,t,n),h&&t._callHook("attached"),t}function i(t){return"string"==typeof t?document.querySelector(t):t}function n(t,e,i,n){e.appendChild(t),n&&n()}function r(t,e,i,n){I(t,e),n&&n()}function s(t,e,i){z(t),i&&i()}t.prototype.$nextTick=function(t){Xi(t,this)},t.prototype.$appendTo=function(t,i,r){return e(this,t,i,r,n,E)},t.prototype.$prependTo=function(t,e,n){return t=i(t),t.hasChildNodes()?this.$before(t.firstChild,e,n):this.$appendTo(t,e,n),this},t.prototype.$before=function(t,i,n){return e(this,t,i,n,r,F)},t.prototype.$after=function(t,e,n){return t=i(t),t.nextSibling?this.$before(t.nextSibling,e,n):this.$appendTo(t.parentNode,e,n),this},t.prototype.$remove=function(t,e){if(!this.$el.parentNode)return t&&t();var i=this._isAttached&&W(this.$el);i||(e=!1);var n=this,r=function(){i&&n._callHook("detached"),t&&t()};if(this._isFragment)at(this._fragmentStart,this._fragmentEnd,this,this._fragment,r);else{var a=e===!1?s:D;a(this.$el,this,r)}return this}}function _i(t){function e(t,e,n){var r=t.$parent;if(r&&n&&!i.test(e))for(;r;)r._eventsCount[e]=(r._eventsCount[e]||0)+n,r=r.$parent}t.prototype.$on=function(t,i){return(this._events[t]||(this._events[t]=[])).push(i),e(this,t,1),this},t.prototype.$once=function(t,e){function i(){n.$off(t,i),e.apply(this,arguments)}var n=this;return i.fn=e,this.$on(t,i),this},t.prototype.$off=function(t,i){var n;if(!arguments.length){if(this.$parent)for(t in this._events)n=this._events[t],n&&e(this,t,-n.length);return this._events={},this}if(n=this._events[t],!n)return this;if(1===arguments.length)return e(this,t,-n.length),this._events[t]=null,this;for(var r,s=n.length;s--;)if(r=n[s],r===i||r.fn===i){e(this,t,-1),n.splice(s,1);break}return this},t.prototype.$emit=function(t){var e="string"==typeof t;t=e?t:t.name;var i=this._events[t],n=e||!i;if(i){i=i.length>1?d(i):i;var r=e&&i.some(function(t){return t._fromParent});r&&(n=!1);for(var s=d(arguments,1),a=0,o=i.length;o>a;a++){var l=i[a],h=l.apply(this,s);h!==!0||r&&!l._fromParent||(n=!0)}}return n},t.prototype.$broadcast=function(t){var e="string"==typeof t;if(t=e?t:t.name,this._eventsCount[t]){var i=this.$children,n=d(arguments);e&&(n[0]={name:t,source:this});for(var r=0,s=i.length;s>r;r++){var a=i[r],o=a.$emit.apply(a,n);o&&a.$broadcast.apply(a,n)}return this}},t.prototype.$dispatch=function(t){var e=this.$emit.apply(this,arguments);if(e){var i=this.$parent,n=d(arguments);for(n[0]={name:t,source:this};i;)e=i.$emit.apply(i,n),i=e?i.$parent:null;return this}};var i=/^hook:/}function yi(t){function e(){this._isAttached=!0,this._isReady=!0,this._callHook("ready")}t.prototype.$mount=function(t){return this._isCompiled?void 0:(t=B(t),t||(t=document.createElement("div")),this._compile(t),this._initDOMHooks(),W(this.$el)?(this._callHook("attached"),e.call(this)):this.$once("hook:attached",e),this)},t.prototype.$destroy=function(t,e){this._destroy(t,e)},t.prototype.$compile=function(t,e,i,n){return Fe(t,this.$options,!0)(this,t,e,i,n)}}function wi(t){this._init(t)}function ki(t,e,i){return i=i?parseInt(i,10):0,e=a(e),"number"==typeof e?t.slice(i,i+e):t}function Ci(t,e,i){if(t=Ks(t),null==e)return t;if("function"==typeof e)return t.filter(e);e=(""+e).toLowerCase();for(var n,r,s,a,o="in"===i?3:2,l=Array.prototype.concat.apply([],d(arguments,o)),h=[],c=0,u=t.length;u>c;c++)if(n=t[c],s=n&&n.$value||n,a=l.length){for(;a--;)if(r=l[a],"$key"===r&&xi(n.$key,e)||xi(Tt(s,r),e)){h.push(n);break}}else xi(n,e)&&h.push(n);return h}function $i(t){function e(t,e,i){var r=n[i];return r&&("$key"!==r&&(g(t)&&"$value"in t&&(t=t.$value),g(e)&&"$value"in e&&(e=e.$value)),t=g(t)?Tt(t,r):t,e=g(e)?Tt(e,r):e),t===e?0:t>e?s:-s}var i=null,n=void 0;t=Ks(t);var r=d(arguments,1),s=r[r.length-1];"number"==typeof s?(s=0>s?-1:1,r=r.length>1?r.slice(0,-1):r):s=1;var a=r[0];return a?("function"==typeof a?i=function(t,e){return a(t,e)*s}:(n=Array.prototype.concat.apply([],r),i=function(t,r,s){return s=s||0,s>=n.length-1?e(t,r,s):e(t,r,s)||i(t,r,s+1)}),t.slice().sort(i)):t}function xi(t,e){var i;if(m(t)){var n=Object.keys(t);for(i=n.length;i--;)if(xi(t[n[i]],e))return!0}else if(Fi(t)){for(i=t.length;i--;)if(xi(t[i],e))return!0}else if(null!=t)return t.toString().toLowerCase().indexOf(e)>-1}function Ai(i){function n(t){return new Function("return function "+f(t)+" (options) { this._init(options) }")()}i.options={directives:ys,elementDirectives:Xs,filters:ea,transitions:{},components:{},partials:{},replace:!0},i.util=Ln,i.config=An,i.set=t,i["delete"]=e,i.nextTick=Xi,i.compiler=Js,i.FragmentFactory=se,i.internalDirectives=Ws,i.parsers={path:ir,text:Cn,template:Er,directive:mn,expression:gr},i.cid=0;var r=1;i.extend=function(t){t=t||{};var e=this,i=0===e.cid;if(i&&t._Ctor)return t._Ctor;var s=t.name||e.options.name,a=n(s||"VueComponent");return a.prototype=Object.create(e.prototype),a.prototype.constructor=a,a.cid=r++,a.options=gt(e.options,t),a["super"]=e,a.extend=e.extend,An._assetTypes.forEach(function(t){a[t]=e[t]}),s&&(a.options.components[s]=a),i&&(t._Ctor=a),a},i.use=function(t){if(!t.installed){var e=d(arguments,1);return e.unshift(this),"function"==typeof t.install?t.install.apply(t,e):t.apply(null,e),t.installed=!0,this}},i.mixin=function(t){i.options=gt(i.options,t)},An._assetTypes.forEach(function(t){i[t]=function(e,n){return n?("component"===t&&m(n)&&(n.name||(n.name=e),n=i.extend(n)),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}),v(i.transition,Nn)}var Pi=Object.prototype.hasOwnProperty,Ni=/^\s?(true|false|-?[\d\.]+|'[^']*'|"[^"]*")\s?$/,Oi=/-(\w)/g,Ti=/([a-z\d])([A-Z])/g,ji=/(?:^|[-_\/])(\w)/g,Si=Object.prototype.toString,Ei="[object Object]",Fi=Array.isArray,Di="__proto__"in{},Ri="undefined"!=typeof window&&"[object Object]"!==Object.prototype.toString.call(window),Bi=Ri&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Wi=Ri&&window.navigator.userAgent.toLowerCase(),Li=Wi&&Wi.indexOf("trident")>0,Hi=Wi&&Wi.indexOf("msie 9.0")>0,Mi=Wi&&Wi.indexOf("android")>0,Ii=Wi&&/(iphone|ipad|ipod|ios)/i.test(Wi),Vi=Ii&&Wi.match(/os ([\d_]+)/),zi=Vi&&Vi[1].split("_"),Ui=zi&&Number(zi[0])>=9&&Number(zi[1])>=3&&!window.indexedDB,qi=void 0,Ji=void 0,Qi=void 0,Zi=void 0;if(Ri&&!Hi){var Gi=void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend,Yi=void 0===window.onanimationend&&void 0!==window.onwebkitanimationend;qi=Gi?"WebkitTransition":"transition",Ji=Gi?"webkitTransitionEnd":"transitionend",Qi=Yi?"WebkitAnimation":"animation",Zi=Yi?"webkitAnimationEnd":"animationend"}var Xi=function(){function t(){n=!1;var t=i.slice(0);i=[];for(var e=0;ee;e++)t[e].update()};var Dn=Array.prototype,Rn=Object.create(Dn);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(t){var e=Dn[t];b(Rn,t,function(){for(var i=arguments.length,n=new Array(i);i--;)n[i]=arguments[i];var r,s=e.apply(this,n),a=this.__ob__;switch(t){case"push":r=n;break;case"unshift":r=n;break;case"splice":r=n.slice(2)}return r&&a.observeArray(r),a.dep.notify(),s})}),b(Dn,"$set",function(t,e){return t>=this.length&&(this.length=Number(t)+1),this.splice(t,1,e)[0]}),b(Dn,"$remove",function(t){if(this.length){var e=y(this,t);return e>-1?this.splice(e,1):void 0}});var Bn=Object.getOwnPropertyNames(Rn),Wn=!0;yt.prototype.walk=function(t){for(var e=Object.keys(t),i=0,n=e.length;n>i;i++)this.convert(e[i],t[e[i]])},yt.prototype.observeArray=function(t){for(var e=0,i=t.length;i>e;e++)Ct(t[e])},yt.prototype.convert=function(t,e){$t(this.value,t,e)},yt.prototype.addVm=function(t){(this.vms||(this.vms=[])).push(t)},yt.prototype.removeVm=function(t){this.vms.$remove(t)};var Ln=Object.freeze({defineReactive:$t,set:t,del:e,hasOwn:i,isLiteral:n,isReserved:r,_toString:s,toNumber:a,toBoolean:o,stripQuotes:l,camelize:h,hyphenate:u,classify:f,bind:p,toArray:d,extend:v,isObject:g,isPlainObject:m,def:b,debounce:_,indexOf:y,cancellable:w,looseEqual:k,isArray:Fi,hasProto:Di,inBrowser:Ri,devtools:Bi,isIE:Li,isIE9:Hi,isAndroid:Mi,isIos:Ii,iosVersionMatch:Vi,iosVersion:zi,hasMutationObserverBug:Ui,get transitionProp(){return qi},get transitionEndEvent(){return Ji},get animationProp(){return Qi},get animationEndEvent(){return Zi},nextTick:Xi,get _Set(){return Ki},query:B,inDoc:W,getAttr:L,getBindAttr:H,hasBindAttr:M,before:I,after:V,remove:z,prepend:U,replace:q,on:J,off:Q,setClass:G,addClass:Y,removeClass:X,extractContent:K,trimNode:tt,isTemplate:it,createAnchor:nt,findRef:rt,mapNodeRange:st,removeNodeRange:at,isFragment:ot,getOuterHTML:lt,mergeOptions:gt,resolveAsset:mt,checkComponentAttr:ht,commonTagRE:Tn,reservedTagRE:jn,warn:Pn}),Hn=0,Mn=new C(1e3),In=0,Vn=1,zn=2,Un=3,qn=0,Jn=1,Qn=2,Zn=3,Gn=4,Yn=5,Xn=6,Kn=7,tr=8,er=[];er[qn]={ws:[qn],ident:[Zn,In],"[":[Gn],eof:[Kn]},er[Jn]={ws:[Jn],".":[Qn],"[":[Gn],eof:[Kn]},er[Qn]={ws:[Qn],ident:[Zn,In]},er[Zn]={ident:[Zn,In],0:[Zn,In],number:[Zn,In],ws:[Jn,Vn],".":[Qn,Vn],"[":[Gn,Vn],eof:[Kn,Vn]},er[Gn]={"'":[Yn,In],'"':[Xn,In],"[":[Gn,zn],"]":[Jn,Un],eof:tr,"else":[Gn,In]},er[Yn]={"'":[Gn,In],eof:tr,"else":[Yn,In]},er[Xn]={'"':[Gn,In],eof:tr,"else":[Xn,In]};var ir=Object.freeze({parsePath:Ot,getPath:Tt,setPath:jt}),nr=new C(1e3),rr="Math,Date,this,true,false,null,undefined,Infinity,NaN,isNaN,isFinite,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,parseInt,parseFloat",sr=new RegExp("^("+rr.replace(/,/g,"\\b|")+"\\b)"),ar="break,case,class,catch,const,continue,debugger,default,delete,do,else,export,extends,finally,for,function,if,import,in,instanceof,let,return,super,switch,throw,try,var,while,with,yield,enum,await,implements,package,protected,static,interface,private,public",or=new RegExp("^("+ar.replace(/,/g,"\\b|")+"\\b)"),lr=/\s/g,hr=/\n/g,cr=/[\{,]\s*[\w\$_]+\s*:|('(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`)|new |typeof |void /g,ur=/"(\d+)"/g,fr=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['.*?'\]|\[".*?"\]|\[\d+\]|\[[A-Za-z_$][\w$]*\])*$/,pr=/[^\w$\.](?:[A-Za-z_$][\w$]*)/g,dr=/^(?:true|false|null|undefined|Infinity|NaN)$/,vr=[],gr=Object.freeze({parseExpression:Lt,isSimplePath:Ht}),mr=[],br=[],_r={},yr={},wr=!1,kr=0;Ut.prototype.get=function(){this.beforeGet();var t,e=this.scope||this.vm;try{t=this.getter.call(e,e)}catch(i){}return this.deep&&qt(t),this.preProcess&&(t=this.preProcess(t)),this.filters&&(t=e._applyFilters(t,null,this.filters,!1)),this.postProcess&&(t=this.postProcess(t)),this.afterGet(),t},Ut.prototype.set=function(t){var e=this.scope||this.vm;this.filters&&(t=e._applyFilters(t,this.value,this.filters,!0));try{this.setter.call(e,e,t)}catch(i){}var n=e.$forContext;if(n&&n.alias===this.expression){if(n.filters)return;n._withLock(function(){e.$key?n.rawValue[e.$key]=t:n.rawValue.$set(e.$index,t)})}},Ut.prototype.beforeGet=function(){bt.target=this},Ut.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},Ut.prototype.afterGet=function(){bt.target=null;for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var i=this.depIds;this.depIds=this.newDepIds,this.newDepIds=i,this.newDepIds.clear(),i=this.deps,this.deps=this.newDeps,this.newDeps=i,this.newDeps.length=0},Ut.prototype.update=function(t){this.lazy?this.dirty=!0:this.sync||!An.async?this.run():(this.shallow=this.queued?!!t&&this.shallow:!!t,this.queued=!0,zt(this))},Ut.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||(g(t)||this.deep)&&!this.shallow){var e=this.value;this.value=t,this.prevError,this.cb.call(this.vm,t,e)}this.queued=this.shallow=!1}},Ut.prototype.evaluate=function(){var t=bt.target;this.value=this.get(),this.dirty=!1,bt.target=t},Ut.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ut.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||this.vm._vForRemoving||this.vm._watchers.$remove(this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1,this.vm=this.cb=this.value=null}};var Cr=new Ki,$r={bind:function(){this.attr=3===this.el.nodeType?"data":"textContent"},update:function(t){this.el[this.attr]=s(t)}},xr=new C(1e3),Ar=new C(1e3),Pr={efault:[0,"",""],legend:[1,"
","
"],tr:[2,"","
"],col:[2,"","
"]};Pr.td=Pr.th=[3,"","
"],Pr.option=Pr.optgroup=[1,'"],Pr.thead=Pr.tbody=Pr.colgroup=Pr.caption=Pr.tfoot=[1,"","
"],Pr.g=Pr.defs=Pr.symbol=Pr.use=Pr.image=Pr.text=Pr.circle=Pr.ellipse=Pr.line=Pr.path=Pr.polygon=Pr.polyline=Pr.rect=[1,'',""];var Nr=/<([\w:-]+)/,Or=/&#?\w+?;/,Tr=//,prolog:/<\?[\w\W]+?\?>/,doctype://,cdata://i,tag:{pattern:/<\/?[^\s>\/=.]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(t){"entity"===t.type&&(t.attributes.title=t.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/()[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag)),Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/},Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}}),Prism.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\`|\\?[^`])*`/,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/()[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}}),Prism.languages.js=Prism.languages.javascript,!function(t){var e=/#(?!\{).+/,i={pattern:/#\{[^}]+\}/,alias:"variable"};t.languages.coffeescript=t.languages.extend("javascript",{comment:e,string:[/'(?:\\?[^\\])*?'/,{pattern:/"(?:\\?[^\\])*?"/,inside:{interpolation:i}}],keyword:/\b(and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,"class-member":{pattern:/@(?!\d)\w+/,alias:"variable"}}),t.languages.insertBefore("coffeescript","comment",{"multiline-comment":{pattern:/###[\s\S]+?###/,alias:"comment"},"block-regex":{pattern:/\/{3}[\s\S]*?\/{3}/,alias:"regex",inside:{comment:e,interpolation:i}}}),t.languages.insertBefore("coffeescript","string",{"inline-javascript":{pattern:/`(?:\\?[\s\S])*?`/,inside:{delimiter:{pattern:/^`|`$/,alias:"punctuation"},rest:t.languages.javascript}},"multiline-string":[{pattern:/'''[\s\S]*?'''/,alias:"string"},{pattern:/"""[\s\S]*?"""/,alias:"string",inside:{interpolation:i}}]}),t.languages.insertBefore("coffeescript","keyword",{property:/(?!\d)\w+(?=\s*:(?!:))/})}(Prism),Prism.languages.php=Prism.languages.extend("clike",{keyword:/\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0}}),Prism.languages.insertBefore("php","class-name",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),Prism.languages.insertBefore("php","keyword",{delimiter:/\?>|<\?(?:php)?/i,variable:/\$\w+\b/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),Prism.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),Prism.languages.markup&&(Prism.hooks.add("before-highlight",function(t){"php"===t.language&&(t.tokenStack=[],t.backupCode=t.code,t.code=t.code.replace(/(?:<\?php|<\?)[\w\W]*?(?:\?>)/gi,function(e){return t.tokenStack.push(e),"{{{PHP"+t.tokenStack.length+"}}}"}))}),Prism.hooks.add("before-insert",function(t){"php"===t.language&&(t.code=t.backupCode,delete t.backupCode)}),Prism.hooks.add("after-highlight",function(t){if("php"===t.language){for(var e,i=0;e=t.tokenStack[i];i++)t.highlightedCode=t.highlightedCode.replace("{{{PHP"+(i+1)+"}}}",Prism.highlight(e,t.grammar,"php").replace(/\$/g,"$$$$"));t.element.innerHTML=t.highlightedCode}}),Prism.hooks.add("wrap",function(t){"php"===t.language&&"markup"===t.type&&(t.content=t.content.replace(/(\{\{\{PHP[0-9]+\}\}\})/g,'$1'))}),Prism.languages.insertBefore("php","comment",{markup:{pattern:/<[^?]\/?(.*?)>/,inside:Prism.languages.markup},php:/\{\{\{PHP[0-9]+\}\}\}/})),!function(t){t.languages.sass=t.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),t.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete t.languages.sass.atrule;var e=/((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i,i=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];t.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:e,operator:i}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:e,operator:i,important:t.languages.sass.important}}}),delete t.languages.sass.property,delete t.languages.sass.important,delete t.languages.sass.selector,t.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism),Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,inside:{placeholder:/%[-_\w]+/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.insertBefore("scss","property",{variable:/\$[-_\w]+|#\{\$[-_\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-_\w]+/,alias:"selector"},statement:/\B!(?:default|optional)\b/i,"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.util.clone(Prism.languages.scss),!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(t){if(t.code){var e=t.element.parentNode,i=/\s*\bline-numbers\b\s*/;if(e&&/pre/i.test(e.nodeName)&&(i.test(e.className)||i.test(t.element.className))&&!t.element.querySelector(".line-numbers-rows")){i.test(t.element.className)&&(t.element.className=t.element.className.replace(i,"")),i.test(e.className)||(e.className+=" line-numbers");var n,r=t.code.match(/\n(?!$)/g),s=r?r.length+1:1,a=new Array(s+1);a=a.join(""),n=document.createElement("span"),n.className="line-numbers-rows",n.innerHTML=a,e.hasAttribute("data-start")&&(e.style.counterReset="linenumber "+(parseInt(e.getAttribute("data-start"),10)-1)),t.element.appendChild(n)}}})}(),!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("before-highlight",function(t){if(t.code){var e=t.element.parentNode,i=/\s*\bkeep-initial-line-feed\b\s*/;!e||"pre"!==e.nodeName.toLowerCase()||i.test(e.className)||i.test(t.element.className)||(t.code=t.code.replace(/^(?:\r?\n|\r)/,""))}})}(),new Vue({el:"body",data:{sidebarVisible:!1}}); ================================================ FILE: build_production/letter-spacing/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Letter Spacing Responsive

Yes, even letter-spacing gets responsive love in Beard. Why would you need responsive letter-spacing? Whenever spaced out text changes in size, it's helpful to have the letter-spacing change with it. These helpers make it easy to do so in a similar way to the font-sizing helpers.

Name Class
Level 1 .ls1
Level 2 .ls2
Level 3 .ls3
Level 4 .ls4
Level 5 .ls5
Level 6 .ls6
Level 7 .ls7
Level 8 .ls8
Level 9 .ls9
Level 10 .ls10

Example:

<h1 class="ls2 md-ls4 xlg-ls7">Eye-Catching Heading!!!</h1>

The text above would be aligned left by default, center on the medium breakpoint, right on the large breakpoint, and back to left on the extra large breakpoint.

================================================ FILE: build_production/line-heights/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Line Heights Responsive

Name Class Generated Value
Level 1 .lh1 line-height: 1
Level 1.1 .lh1-1 line-height: 1.1
Level 1.2 .lh1-2 line-height: 1.2
Level 1.3 .lh1-3 line-height: 1.3
Level 1.4 .lh1-4 line-height: 1.4
Level 1.5 .lh1-5 line-height: 1.5
Level 1.6 .lh1-6 line-height: 1.6
Level 1.7 .lh1-7 line-height: 1.7
Level 1.8 .lh1-8 line-height: 1.8
Level 1.9 .lh1-9 line-height: 1.9
Level 2 .lh2 line-height: 2

Example:

<p class="lh1 lg-lh1-5">Text with responsive line-height.</p>

The text's line-height would have a value of '1' by default and a value of 1.5, starting on the large breakpoint.

================================================ FILE: build_production/misc/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Miscellaneous Helpers

Beard comes with a small helping of odds and ends to make your life easier.

Class / Placeholder Purpose
.center %center Center an element using auto margin.
.default-hover %default-hover Lower the opacity for an element on its hover state
.default-active %default-active Lower the opacity for an element on its active state
.dim %dim Apply a combination of .default-hover and .default-active
.site-width %site-width Set the element's max-width to the global $side-width.
.lowercase Transform the text to lowercase
.uppercase Transform the text to uppercase
.ell Add an ellipsis when text gets longer than its container
.imax Allow an image to scale to 100% of its containing element's size
.i100 Set an image's width to 100%
.bgcover Set an element's background-size to fill up its container proportionally
.bgcenter Center an element's background
.vam Vertically align a td element's content to the middle
.clearfix %clearfix Apply a classic clearfix to a containing element.
.hidetext %hidetext Hide text from the viewer, but leave it for search engines and screen readers.
================================================ FILE: build_production/overflow/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Overflow

Class Value
.ofh overflow: hidden
.ofx overflow-x: scroll
.ofy overflow-y: scroll
================================================ FILE: build_production/philosophy/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Philosophy

Beard is an atomic CSS library for rapidly styling web app components and sites. It was created to meet the CSS needs of a demanding and fast-paced production web app. Beard is not a front-end framework but can be used to create one and can function as the basis for a standardized set of classes for projects. It doesn't come with any pre-built components or widgets, and it doesn't come with any Javascript. It provides only the lowest-level atomic abstractions needed by most web apps.

An Example of the Beard Workflow

For example, let’s pretend you are building a button component for your project. You want buttons to be able to have two background colors and two font colors. You may be tempted to write these classes:

<a class="button dark">Submit Me</a>

There are a number of problems with this approach. It's hard to know what color "dark" is. Does it have more styles in it? Is it connected to the button class?

In Beard, we would encourage you to use the built-in background and text color helper classes:

<a class="button bgb tcw">Submit Me!</a>

This would apply a black background (.bgb) with white text (.tcw). At first, the naming scheme seems odd, until you realize that Beard tries to follow a mnemonic approach.

Next, let’s say you choose to set up some default padding and border styles. Again, using Beard, we can optimize this process by using global helper classes.

<a class="button bgb tcw brdr1 bc1 pv1 ph2 br3">Submit Me!</a>

In addition to the previous styles, this would add a 1px border with the color being the value of $branding-color-1. It would also add vertical padding in the amount of the 1st value in the spacing scale (10px by default), and horizontal padding from the 2nd level in the scale (20px by default). It would finally add a border-radius of 3px.

By now you might be saying to yourself, "So what would be the purpose of having a .button class then? All the styles are in those helper classes." That's exactly what we were thinking! In fact, for some projects you may not need anything more than this. But let's say you now needed to put this button inside another component in your system. You could add a "project-specific" class that can handle that special case:

<div class="card">
    <a class="card__button bgb tcw brdr1 bc1 pv1 ph2 br3">Submit Me!</a>
</div>

The class .card__button could contain rules with absolute positioning, margins, or anything else specific to that "instance" of the component or something that Beard doesn't provide a handy helper for.

================================================ FILE: build_production/position/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Position

Class Value
.relative position: relative
.absolute position: absolute
.fixed position: fixed
.pin-top top: 0
.pin-right right: 0
.pin-bottom bottom: 0
.pin-left left: 0
.pin-edges top: 0; right: 0; bottom: 0; left: 0;
================================================ FILE: build_production/reset-and-base/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Reset & Base

Beard is designed to be highly useful for web applications. To this end, we've added a hard reset in place of other options like Normalize.css. We feel this provides the best method of "setting an even playing field" for building out front-end components.

Of course, you don't have to use this reset, and can instead opt to use your own. If you'd like to disable Beard's reset, simply set the flag before you import Beard.

$beard-reset: false;

Base Styles

Beard comes with a few opinionated defaults for things such as the html and body elements, headings, and other basic elements. These are written as smart defaults which most people want to have out of the box. It also sets images to be responsive by default. However, if the provided defaults don't serve your needs, you can redefine the styles in your own Sass.

Again, you don't have to use these base styles, and can disable them by setting the flag before you import Beard.

$beard-base: false;
================================================ FILE: build_production/responsive-prefixes/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Responsive Prefixes

Because Beard ships with a standard set of breakpoints, many of the helpers are responsive. These helpers are generated from the breakpoints in your configuration. These are the default breakpoints:

Name Prefix Target
Small .sm- (min-width: 300px)
Medium .md- (min-width: 600px)
Large .lg- (min-width: 900px)
Extra Large .xlg- (min-width: 1440px)
Only Small .only-sm- (max-width: 599px)
Only Medium .only-md- (min-width: 600px) and (max-width: 899px)
Only Large .only-lg- (min-width: 900px) and (max-width: 1439px)
Only Extra Large .only-xlg- (min-width: 1440px)

You can use responsive prefixes to specify when an element should be shown on a page. The following would hide the element on the `lg` breakpoint.

<div class="lg-dn">Show on the large breakpoint</div>

Adding New Breakpoints

This mixin allows you to add a new breakpoint to be generated along with Beard’s defaults. This will also cause every responsive-helper type to generate a new classes using this breakpoint's key

@include new-breakpoint(tablet, '(min-width: 600px)');

Note: Calling this mixin will only work if you import Beard’s before and after partials, as recommended by the installation guide.

Using breakpoints in Sass with media()

Used inside a CSS declaration, this mixin will generate the appropriate media query based on the name registered in Beard's configuration. The media queries are configurable by overriding the settings in _config.scss or by adding new ones with the new-breakpoint() mixin.

// This Scss
.narcos {
    @include media(sm) {
        display: none;
    }
}

// Generates this CSS
@media screen and (min-width: 300px) {
    .narcos {
        display: none;
    }
}
================================================ FILE: build_production/spacing/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Spacing Responsive

The spacing system is set up by default to have 10 increments, each representing 1rem in size. For example, to achieve a margin-top which uses the 2nd step in the spacing scale (2rems by deafult), you would use .mt2. If you wanted a padding-left with the 8th step in the scale, it's .pl8.

Name Class
Margin All .ma
Margin Vertical .mv
Margin Horizontal .mh
Margin Top .mt
Margin Right .mr
Margin Bottom .mb
Margin Left .ml
Padding All .pa
Padding Vertical .pv
Padding Horizontal .ph
Padding Top .pt
Padding Right .pr
Padding Bottom .pb
Padding Left .pl

Example:

<div class="mv2 md-mv4 lg-mv6 ph1 md-ph3 lg-ph6">This div has stuff in it</div>

Adding New Spacing Helpers

This mixin allows you to add a value to be generated along with Beard's default spacing helpers, including responsive versions of each.

@include new-spacing-helper(16); // Outputs responsive helpers like .pt16 { padding-top: 16rem !important }
@include new-spacing-helper('--tiny', 0.3); // Outputs responsive helpers like .pt--tiny { padding-top: 0.3rem !important }

Note: Calling this mixin will only work if you import Beard’s before and after partials, as recommended by the installation guide.

================================================ FILE: build_production/text-alignment/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Text Alignment Responsive

Name Class
Text Align Left .tal
Text Align Center .tac
Text Align Right .tar

Example:

<p class="tal md-tac lg-tar xlg-tal">Here is some aligned text</p>

The text above would be aligned left by default, center on the medium breakpoint, right on the large breakpoint, and back to left on the extra large breakpoint.

================================================ FILE: build_production/tools/index.html ================================================ Beard - Atomic CSS framework

Beard Menu

A CSS framework for people with better things to do

Tools

Beard isn't packed full of every feature you might need, but it does come with a small set of mixins to make life easier.

appearance()

The appearance mixin provides an easy way to assign or remove platform-native styling on form elements.

// This Scss
.terry {
    @include appearance(none);
}

// Generates this CSS
.terry {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

font-size()

This mixin allows you to generate font-size declarations with rem units and uses pixels as a fallback value.

// This Scss
.heading {
    @include font-size(16);
}

// Generates this CSS
.heading {
  font-size: 16px;
  font-size: 1.6rem;
}

Note: If you've modified the font-size on the html element, the generated values will not match. It's best to either leave the value at its default or create a mixin of your own which accomplishes the same result.

media()

This mixin allows you to use the breakpoints from Beard inside of your Sass.

// This Scss
.narcos {
    @include media(sm) {
        display: none;
    }
}

// Generates this CSS
@media screen and (min-width: 300px) {
    .narcos {
        display: none;
    }
}

See also: Responsive Prefixes

new-breakpoint()

This mixin allows you to add breakpoints to Beard’s configuration.

@include new-breakpoint('tablet', '(min-width: 600px)');

See also: Adding New Breakpoints

new-color()

This mixin allows you to add a color to Beard’s configuration.

@include new-color('red', #FF0000);

See also: Adding New Color Helpers

new-spacing-helper()

This mixin allows you to add a set of responsive spacing helpers to Beard’s configuration.

@include new-spacing-helper('tiny', 0.3);

See also: Adding New Spacing Helpers

================================================ FILE: config.php ================================================ false, ]; ================================================ FILE: dist/beard.css ================================================ a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,meter,nav,object,ol,output,p,pre,progress,q,rp,rt,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,xmp{border:0;margin:0;padding:0;font-size:100%}html,body{height:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}b,strong{font-weight:bold}img{color:transparent;font-size:0;vertical-align:middle;-ms-interpolation-mode:bicubic}ul,ol{list-style:none}li{display:list-item}table{border-collapse:collapse;border-spacing:0}th,td,caption{font-weight:normal;vertical-align:top;text-align:left}q{quotes:none}q:before,q:after{content:"";content:none}sub,sup,small{font-size:75%}sub,sup{line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}svg{overflow:hidden}*,*:before,*:after{box-sizing:inherit}html{font-size:62.5%;box-sizing:border-box;height:100%}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;min-height:100%}h1,h2,h3,h4,h5,h6{font-weight:400}hr{background:none;border-top:1px solid rgba(0,0,0,0.2);margin:0}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button{cursor:pointer;border:none}input,textarea,button{outline:none}img{max-width:100%;font-style:italic;vertical-align:middle}img[width],img[height]{max-width:none}.tal{text-align:left !important}.tac{text-align:center !important}.tar{text-align:right !important}@media screen and (min-width: 30rem){.sm-tal{text-align:left !important}}@media screen and (min-width: 30rem){.sm-tac{text-align:center !important}}@media screen and (min-width: 30rem){.sm-tar{text-align:right !important}}@media screen and (max-width: 59.99999rem){.only-sm-tal{text-align:left !important}}@media screen and (max-width: 59.99999rem){.only-sm-tac{text-align:center !important}}@media screen and (max-width: 59.99999rem){.only-sm-tar{text-align:right !important}}@media screen and (min-width: 60rem){.md-tal{text-align:left !important}}@media screen and (min-width: 60rem){.md-tac{text-align:center !important}}@media screen and (min-width: 60rem){.md-tar{text-align:right !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-tal{text-align:left !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-tac{text-align:center !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-tar{text-align:right !important}}@media screen and (min-width: 90rem){.lg-tal{text-align:left !important}}@media screen and (min-width: 90rem){.lg-tac{text-align:center !important}}@media screen and (min-width: 90rem){.lg-tar{text-align:right !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-tal{text-align:left !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-tac{text-align:center !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-tar{text-align:right !important}}@media screen and (min-width: 144rem){.xlg-tal{text-align:left !important}}@media screen and (min-width: 144rem){.xlg-tac{text-align:center !important}}@media screen and (min-width: 144rem){.xlg-tar{text-align:right !important}}@media screen and (min-width: 144rem){.only-xlg-tal{text-align:left !important}}@media screen and (min-width: 144rem){.only-xlg-tac{text-align:center !important}}@media screen and (min-width: 144rem){.only-xlg-tar{text-align:right !important}}.pa1{padding:1rem !important}@media screen and (min-width: 30rem){.sm-pa1{padding:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa1{padding:1rem !important}}@media screen and (min-width: 60rem){.md-pa1{padding:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa1{padding:1rem !important}}@media screen and (min-width: 90rem){.lg-pa1{padding:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa1{padding:1rem !important}}@media screen and (min-width: 144rem){.xlg-pa1{padding:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa1{padding:1rem !important}}.pt1{padding-top:1rem !important}@media screen and (min-width: 30rem){.sm-pt1{padding-top:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt1{padding-top:1rem !important}}@media screen and (min-width: 60rem){.md-pt1{padding-top:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt1{padding-top:1rem !important}}@media screen and (min-width: 90rem){.lg-pt1{padding-top:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt1{padding-top:1rem !important}}@media screen and (min-width: 144rem){.xlg-pt1{padding-top:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt1{padding-top:1rem !important}}.pr1{padding-right:1rem !important}@media screen and (min-width: 30rem){.sm-pr1{padding-right:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr1{padding-right:1rem !important}}@media screen and (min-width: 60rem){.md-pr1{padding-right:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr1{padding-right:1rem !important}}@media screen and (min-width: 90rem){.lg-pr1{padding-right:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr1{padding-right:1rem !important}}@media screen and (min-width: 144rem){.xlg-pr1{padding-right:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr1{padding-right:1rem !important}}.pb1{padding-bottom:1rem !important}@media screen and (min-width: 30rem){.sm-pb1{padding-bottom:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb1{padding-bottom:1rem !important}}@media screen and (min-width: 60rem){.md-pb1{padding-bottom:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb1{padding-bottom:1rem !important}}@media screen and (min-width: 90rem){.lg-pb1{padding-bottom:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb1{padding-bottom:1rem !important}}@media screen and (min-width: 144rem){.xlg-pb1{padding-bottom:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb1{padding-bottom:1rem !important}}.pl1{padding-left:1rem !important}@media screen and (min-width: 30rem){.sm-pl1{padding-left:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl1{padding-left:1rem !important}}@media screen and (min-width: 60rem){.md-pl1{padding-left:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl1{padding-left:1rem !important}}@media screen and (min-width: 90rem){.lg-pl1{padding-left:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl1{padding-left:1rem !important}}@media screen and (min-width: 144rem){.xlg-pl1{padding-left:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl1{padding-left:1rem !important}}.pv1{padding-top:1rem !important;padding-bottom:1rem !important}@media screen and (min-width: 30rem){.sm-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (min-width: 60rem){.md-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (min-width: 90rem){.lg-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (min-width: 144rem){.xlg-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv1{padding-top:1rem !important;padding-bottom:1rem !important}}.ph1{padding-left:1rem !important;padding-right:1rem !important}@media screen and (min-width: 30rem){.sm-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (min-width: 60rem){.md-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (min-width: 90rem){.lg-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (min-width: 144rem){.xlg-ph1{padding-left:1rem !important;padding-right:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph1{padding-left:1rem !important;padding-right:1rem !important}}.pa2{padding:2rem !important}@media screen and (min-width: 30rem){.sm-pa2{padding:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa2{padding:2rem !important}}@media screen and (min-width: 60rem){.md-pa2{padding:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa2{padding:2rem !important}}@media screen and (min-width: 90rem){.lg-pa2{padding:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa2{padding:2rem !important}}@media screen and (min-width: 144rem){.xlg-pa2{padding:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa2{padding:2rem !important}}.pt2{padding-top:2rem !important}@media screen and (min-width: 30rem){.sm-pt2{padding-top:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt2{padding-top:2rem !important}}@media screen and (min-width: 60rem){.md-pt2{padding-top:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt2{padding-top:2rem !important}}@media screen and (min-width: 90rem){.lg-pt2{padding-top:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt2{padding-top:2rem !important}}@media screen and (min-width: 144rem){.xlg-pt2{padding-top:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt2{padding-top:2rem !important}}.pr2{padding-right:2rem !important}@media screen and (min-width: 30rem){.sm-pr2{padding-right:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr2{padding-right:2rem !important}}@media screen and (min-width: 60rem){.md-pr2{padding-right:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr2{padding-right:2rem !important}}@media screen and (min-width: 90rem){.lg-pr2{padding-right:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr2{padding-right:2rem !important}}@media screen and (min-width: 144rem){.xlg-pr2{padding-right:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr2{padding-right:2rem !important}}.pb2{padding-bottom:2rem !important}@media screen and (min-width: 30rem){.sm-pb2{padding-bottom:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb2{padding-bottom:2rem !important}}@media screen and (min-width: 60rem){.md-pb2{padding-bottom:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb2{padding-bottom:2rem !important}}@media screen and (min-width: 90rem){.lg-pb2{padding-bottom:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb2{padding-bottom:2rem !important}}@media screen and (min-width: 144rem){.xlg-pb2{padding-bottom:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb2{padding-bottom:2rem !important}}.pl2{padding-left:2rem !important}@media screen and (min-width: 30rem){.sm-pl2{padding-left:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl2{padding-left:2rem !important}}@media screen and (min-width: 60rem){.md-pl2{padding-left:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl2{padding-left:2rem !important}}@media screen and (min-width: 90rem){.lg-pl2{padding-left:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl2{padding-left:2rem !important}}@media screen and (min-width: 144rem){.xlg-pl2{padding-left:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl2{padding-left:2rem !important}}.pv2{padding-top:2rem !important;padding-bottom:2rem !important}@media screen and (min-width: 30rem){.sm-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (min-width: 60rem){.md-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (min-width: 90rem){.lg-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (min-width: 144rem){.xlg-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv2{padding-top:2rem !important;padding-bottom:2rem !important}}.ph2{padding-left:2rem !important;padding-right:2rem !important}@media screen and (min-width: 30rem){.sm-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (min-width: 60rem){.md-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (min-width: 90rem){.lg-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (min-width: 144rem){.xlg-ph2{padding-left:2rem !important;padding-right:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph2{padding-left:2rem !important;padding-right:2rem !important}}.pa3{padding:3rem !important}@media screen and (min-width: 30rem){.sm-pa3{padding:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa3{padding:3rem !important}}@media screen and (min-width: 60rem){.md-pa3{padding:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa3{padding:3rem !important}}@media screen and (min-width: 90rem){.lg-pa3{padding:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa3{padding:3rem !important}}@media screen and (min-width: 144rem){.xlg-pa3{padding:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa3{padding:3rem !important}}.pt3{padding-top:3rem !important}@media screen and (min-width: 30rem){.sm-pt3{padding-top:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt3{padding-top:3rem !important}}@media screen and (min-width: 60rem){.md-pt3{padding-top:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt3{padding-top:3rem !important}}@media screen and (min-width: 90rem){.lg-pt3{padding-top:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt3{padding-top:3rem !important}}@media screen and (min-width: 144rem){.xlg-pt3{padding-top:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt3{padding-top:3rem !important}}.pr3{padding-right:3rem !important}@media screen and (min-width: 30rem){.sm-pr3{padding-right:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr3{padding-right:3rem !important}}@media screen and (min-width: 60rem){.md-pr3{padding-right:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr3{padding-right:3rem !important}}@media screen and (min-width: 90rem){.lg-pr3{padding-right:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr3{padding-right:3rem !important}}@media screen and (min-width: 144rem){.xlg-pr3{padding-right:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr3{padding-right:3rem !important}}.pb3{padding-bottom:3rem !important}@media screen and (min-width: 30rem){.sm-pb3{padding-bottom:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb3{padding-bottom:3rem !important}}@media screen and (min-width: 60rem){.md-pb3{padding-bottom:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb3{padding-bottom:3rem !important}}@media screen and (min-width: 90rem){.lg-pb3{padding-bottom:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb3{padding-bottom:3rem !important}}@media screen and (min-width: 144rem){.xlg-pb3{padding-bottom:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb3{padding-bottom:3rem !important}}.pl3{padding-left:3rem !important}@media screen and (min-width: 30rem){.sm-pl3{padding-left:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl3{padding-left:3rem !important}}@media screen and (min-width: 60rem){.md-pl3{padding-left:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl3{padding-left:3rem !important}}@media screen and (min-width: 90rem){.lg-pl3{padding-left:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl3{padding-left:3rem !important}}@media screen and (min-width: 144rem){.xlg-pl3{padding-left:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl3{padding-left:3rem !important}}.pv3{padding-top:3rem !important;padding-bottom:3rem !important}@media screen and (min-width: 30rem){.sm-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (min-width: 60rem){.md-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (min-width: 90rem){.lg-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (min-width: 144rem){.xlg-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv3{padding-top:3rem !important;padding-bottom:3rem !important}}.ph3{padding-left:3rem !important;padding-right:3rem !important}@media screen and (min-width: 30rem){.sm-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (min-width: 60rem){.md-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (min-width: 90rem){.lg-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (min-width: 144rem){.xlg-ph3{padding-left:3rem !important;padding-right:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph3{padding-left:3rem !important;padding-right:3rem !important}}.pa4{padding:4rem !important}@media screen and (min-width: 30rem){.sm-pa4{padding:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa4{padding:4rem !important}}@media screen and (min-width: 60rem){.md-pa4{padding:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa4{padding:4rem !important}}@media screen and (min-width: 90rem){.lg-pa4{padding:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa4{padding:4rem !important}}@media screen and (min-width: 144rem){.xlg-pa4{padding:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa4{padding:4rem !important}}.pt4{padding-top:4rem !important}@media screen and (min-width: 30rem){.sm-pt4{padding-top:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt4{padding-top:4rem !important}}@media screen and (min-width: 60rem){.md-pt4{padding-top:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt4{padding-top:4rem !important}}@media screen and (min-width: 90rem){.lg-pt4{padding-top:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt4{padding-top:4rem !important}}@media screen and (min-width: 144rem){.xlg-pt4{padding-top:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt4{padding-top:4rem !important}}.pr4{padding-right:4rem !important}@media screen and (min-width: 30rem){.sm-pr4{padding-right:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr4{padding-right:4rem !important}}@media screen and (min-width: 60rem){.md-pr4{padding-right:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr4{padding-right:4rem !important}}@media screen and (min-width: 90rem){.lg-pr4{padding-right:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr4{padding-right:4rem !important}}@media screen and (min-width: 144rem){.xlg-pr4{padding-right:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr4{padding-right:4rem !important}}.pb4{padding-bottom:4rem !important}@media screen and (min-width: 30rem){.sm-pb4{padding-bottom:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb4{padding-bottom:4rem !important}}@media screen and (min-width: 60rem){.md-pb4{padding-bottom:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb4{padding-bottom:4rem !important}}@media screen and (min-width: 90rem){.lg-pb4{padding-bottom:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb4{padding-bottom:4rem !important}}@media screen and (min-width: 144rem){.xlg-pb4{padding-bottom:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb4{padding-bottom:4rem !important}}.pl4{padding-left:4rem !important}@media screen and (min-width: 30rem){.sm-pl4{padding-left:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl4{padding-left:4rem !important}}@media screen and (min-width: 60rem){.md-pl4{padding-left:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl4{padding-left:4rem !important}}@media screen and (min-width: 90rem){.lg-pl4{padding-left:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl4{padding-left:4rem !important}}@media screen and (min-width: 144rem){.xlg-pl4{padding-left:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl4{padding-left:4rem !important}}.pv4{padding-top:4rem !important;padding-bottom:4rem !important}@media screen and (min-width: 30rem){.sm-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (min-width: 60rem){.md-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (min-width: 90rem){.lg-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (min-width: 144rem){.xlg-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv4{padding-top:4rem !important;padding-bottom:4rem !important}}.ph4{padding-left:4rem !important;padding-right:4rem !important}@media screen and (min-width: 30rem){.sm-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (min-width: 60rem){.md-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (min-width: 90rem){.lg-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (min-width: 144rem){.xlg-ph4{padding-left:4rem !important;padding-right:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph4{padding-left:4rem !important;padding-right:4rem !important}}.pa5{padding:5rem !important}@media screen and (min-width: 30rem){.sm-pa5{padding:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa5{padding:5rem !important}}@media screen and (min-width: 60rem){.md-pa5{padding:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa5{padding:5rem !important}}@media screen and (min-width: 90rem){.lg-pa5{padding:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa5{padding:5rem !important}}@media screen and (min-width: 144rem){.xlg-pa5{padding:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa5{padding:5rem !important}}.pt5{padding-top:5rem !important}@media screen and (min-width: 30rem){.sm-pt5{padding-top:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt5{padding-top:5rem !important}}@media screen and (min-width: 60rem){.md-pt5{padding-top:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt5{padding-top:5rem !important}}@media screen and (min-width: 90rem){.lg-pt5{padding-top:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt5{padding-top:5rem !important}}@media screen and (min-width: 144rem){.xlg-pt5{padding-top:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt5{padding-top:5rem !important}}.pr5{padding-right:5rem !important}@media screen and (min-width: 30rem){.sm-pr5{padding-right:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr5{padding-right:5rem !important}}@media screen and (min-width: 60rem){.md-pr5{padding-right:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr5{padding-right:5rem !important}}@media screen and (min-width: 90rem){.lg-pr5{padding-right:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr5{padding-right:5rem !important}}@media screen and (min-width: 144rem){.xlg-pr5{padding-right:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr5{padding-right:5rem !important}}.pb5{padding-bottom:5rem !important}@media screen and (min-width: 30rem){.sm-pb5{padding-bottom:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb5{padding-bottom:5rem !important}}@media screen and (min-width: 60rem){.md-pb5{padding-bottom:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb5{padding-bottom:5rem !important}}@media screen and (min-width: 90rem){.lg-pb5{padding-bottom:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb5{padding-bottom:5rem !important}}@media screen and (min-width: 144rem){.xlg-pb5{padding-bottom:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb5{padding-bottom:5rem !important}}.pl5{padding-left:5rem !important}@media screen and (min-width: 30rem){.sm-pl5{padding-left:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl5{padding-left:5rem !important}}@media screen and (min-width: 60rem){.md-pl5{padding-left:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl5{padding-left:5rem !important}}@media screen and (min-width: 90rem){.lg-pl5{padding-left:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl5{padding-left:5rem !important}}@media screen and (min-width: 144rem){.xlg-pl5{padding-left:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl5{padding-left:5rem !important}}.pv5{padding-top:5rem !important;padding-bottom:5rem !important}@media screen and (min-width: 30rem){.sm-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (min-width: 60rem){.md-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (min-width: 90rem){.lg-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (min-width: 144rem){.xlg-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv5{padding-top:5rem !important;padding-bottom:5rem !important}}.ph5{padding-left:5rem !important;padding-right:5rem !important}@media screen and (min-width: 30rem){.sm-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (min-width: 60rem){.md-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (min-width: 90rem){.lg-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (min-width: 144rem){.xlg-ph5{padding-left:5rem !important;padding-right:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph5{padding-left:5rem !important;padding-right:5rem !important}}.pa6{padding:6rem !important}@media screen and (min-width: 30rem){.sm-pa6{padding:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa6{padding:6rem !important}}@media screen and (min-width: 60rem){.md-pa6{padding:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa6{padding:6rem !important}}@media screen and (min-width: 90rem){.lg-pa6{padding:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa6{padding:6rem !important}}@media screen and (min-width: 144rem){.xlg-pa6{padding:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa6{padding:6rem !important}}.pt6{padding-top:6rem !important}@media screen and (min-width: 30rem){.sm-pt6{padding-top:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt6{padding-top:6rem !important}}@media screen and (min-width: 60rem){.md-pt6{padding-top:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt6{padding-top:6rem !important}}@media screen and (min-width: 90rem){.lg-pt6{padding-top:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt6{padding-top:6rem !important}}@media screen and (min-width: 144rem){.xlg-pt6{padding-top:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt6{padding-top:6rem !important}}.pr6{padding-right:6rem !important}@media screen and (min-width: 30rem){.sm-pr6{padding-right:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr6{padding-right:6rem !important}}@media screen and (min-width: 60rem){.md-pr6{padding-right:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr6{padding-right:6rem !important}}@media screen and (min-width: 90rem){.lg-pr6{padding-right:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr6{padding-right:6rem !important}}@media screen and (min-width: 144rem){.xlg-pr6{padding-right:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr6{padding-right:6rem !important}}.pb6{padding-bottom:6rem !important}@media screen and (min-width: 30rem){.sm-pb6{padding-bottom:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb6{padding-bottom:6rem !important}}@media screen and (min-width: 60rem){.md-pb6{padding-bottom:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb6{padding-bottom:6rem !important}}@media screen and (min-width: 90rem){.lg-pb6{padding-bottom:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb6{padding-bottom:6rem !important}}@media screen and (min-width: 144rem){.xlg-pb6{padding-bottom:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb6{padding-bottom:6rem !important}}.pl6{padding-left:6rem !important}@media screen and (min-width: 30rem){.sm-pl6{padding-left:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl6{padding-left:6rem !important}}@media screen and (min-width: 60rem){.md-pl6{padding-left:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl6{padding-left:6rem !important}}@media screen and (min-width: 90rem){.lg-pl6{padding-left:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl6{padding-left:6rem !important}}@media screen and (min-width: 144rem){.xlg-pl6{padding-left:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl6{padding-left:6rem !important}}.pv6{padding-top:6rem !important;padding-bottom:6rem !important}@media screen and (min-width: 30rem){.sm-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (min-width: 60rem){.md-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (min-width: 90rem){.lg-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (min-width: 144rem){.xlg-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv6{padding-top:6rem !important;padding-bottom:6rem !important}}.ph6{padding-left:6rem !important;padding-right:6rem !important}@media screen and (min-width: 30rem){.sm-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (min-width: 60rem){.md-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (min-width: 90rem){.lg-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (min-width: 144rem){.xlg-ph6{padding-left:6rem !important;padding-right:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph6{padding-left:6rem !important;padding-right:6rem !important}}.pa7{padding:7rem !important}@media screen and (min-width: 30rem){.sm-pa7{padding:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa7{padding:7rem !important}}@media screen and (min-width: 60rem){.md-pa7{padding:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa7{padding:7rem !important}}@media screen and (min-width: 90rem){.lg-pa7{padding:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa7{padding:7rem !important}}@media screen and (min-width: 144rem){.xlg-pa7{padding:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa7{padding:7rem !important}}.pt7{padding-top:7rem !important}@media screen and (min-width: 30rem){.sm-pt7{padding-top:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt7{padding-top:7rem !important}}@media screen and (min-width: 60rem){.md-pt7{padding-top:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt7{padding-top:7rem !important}}@media screen and (min-width: 90rem){.lg-pt7{padding-top:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt7{padding-top:7rem !important}}@media screen and (min-width: 144rem){.xlg-pt7{padding-top:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt7{padding-top:7rem !important}}.pr7{padding-right:7rem !important}@media screen and (min-width: 30rem){.sm-pr7{padding-right:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr7{padding-right:7rem !important}}@media screen and (min-width: 60rem){.md-pr7{padding-right:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr7{padding-right:7rem !important}}@media screen and (min-width: 90rem){.lg-pr7{padding-right:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr7{padding-right:7rem !important}}@media screen and (min-width: 144rem){.xlg-pr7{padding-right:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr7{padding-right:7rem !important}}.pb7{padding-bottom:7rem !important}@media screen and (min-width: 30rem){.sm-pb7{padding-bottom:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb7{padding-bottom:7rem !important}}@media screen and (min-width: 60rem){.md-pb7{padding-bottom:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb7{padding-bottom:7rem !important}}@media screen and (min-width: 90rem){.lg-pb7{padding-bottom:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb7{padding-bottom:7rem !important}}@media screen and (min-width: 144rem){.xlg-pb7{padding-bottom:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb7{padding-bottom:7rem !important}}.pl7{padding-left:7rem !important}@media screen and (min-width: 30rem){.sm-pl7{padding-left:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl7{padding-left:7rem !important}}@media screen and (min-width: 60rem){.md-pl7{padding-left:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl7{padding-left:7rem !important}}@media screen and (min-width: 90rem){.lg-pl7{padding-left:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl7{padding-left:7rem !important}}@media screen and (min-width: 144rem){.xlg-pl7{padding-left:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl7{padding-left:7rem !important}}.pv7{padding-top:7rem !important;padding-bottom:7rem !important}@media screen and (min-width: 30rem){.sm-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (min-width: 60rem){.md-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (min-width: 90rem){.lg-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (min-width: 144rem){.xlg-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv7{padding-top:7rem !important;padding-bottom:7rem !important}}.ph7{padding-left:7rem !important;padding-right:7rem !important}@media screen and (min-width: 30rem){.sm-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (min-width: 60rem){.md-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (min-width: 90rem){.lg-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (min-width: 144rem){.xlg-ph7{padding-left:7rem !important;padding-right:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph7{padding-left:7rem !important;padding-right:7rem !important}}.pa8{padding:8rem !important}@media screen and (min-width: 30rem){.sm-pa8{padding:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa8{padding:8rem !important}}@media screen and (min-width: 60rem){.md-pa8{padding:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa8{padding:8rem !important}}@media screen and (min-width: 90rem){.lg-pa8{padding:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa8{padding:8rem !important}}@media screen and (min-width: 144rem){.xlg-pa8{padding:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa8{padding:8rem !important}}.pt8{padding-top:8rem !important}@media screen and (min-width: 30rem){.sm-pt8{padding-top:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt8{padding-top:8rem !important}}@media screen and (min-width: 60rem){.md-pt8{padding-top:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt8{padding-top:8rem !important}}@media screen and (min-width: 90rem){.lg-pt8{padding-top:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt8{padding-top:8rem !important}}@media screen and (min-width: 144rem){.xlg-pt8{padding-top:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt8{padding-top:8rem !important}}.pr8{padding-right:8rem !important}@media screen and (min-width: 30rem){.sm-pr8{padding-right:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr8{padding-right:8rem !important}}@media screen and (min-width: 60rem){.md-pr8{padding-right:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr8{padding-right:8rem !important}}@media screen and (min-width: 90rem){.lg-pr8{padding-right:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr8{padding-right:8rem !important}}@media screen and (min-width: 144rem){.xlg-pr8{padding-right:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr8{padding-right:8rem !important}}.pb8{padding-bottom:8rem !important}@media screen and (min-width: 30rem){.sm-pb8{padding-bottom:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb8{padding-bottom:8rem !important}}@media screen and (min-width: 60rem){.md-pb8{padding-bottom:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb8{padding-bottom:8rem !important}}@media screen and (min-width: 90rem){.lg-pb8{padding-bottom:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb8{padding-bottom:8rem !important}}@media screen and (min-width: 144rem){.xlg-pb8{padding-bottom:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb8{padding-bottom:8rem !important}}.pl8{padding-left:8rem !important}@media screen and (min-width: 30rem){.sm-pl8{padding-left:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl8{padding-left:8rem !important}}@media screen and (min-width: 60rem){.md-pl8{padding-left:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl8{padding-left:8rem !important}}@media screen and (min-width: 90rem){.lg-pl8{padding-left:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl8{padding-left:8rem !important}}@media screen and (min-width: 144rem){.xlg-pl8{padding-left:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl8{padding-left:8rem !important}}.pv8{padding-top:8rem !important;padding-bottom:8rem !important}@media screen and (min-width: 30rem){.sm-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (min-width: 60rem){.md-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (min-width: 90rem){.lg-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (min-width: 144rem){.xlg-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv8{padding-top:8rem !important;padding-bottom:8rem !important}}.ph8{padding-left:8rem !important;padding-right:8rem !important}@media screen and (min-width: 30rem){.sm-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (min-width: 60rem){.md-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (min-width: 90rem){.lg-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (min-width: 144rem){.xlg-ph8{padding-left:8rem !important;padding-right:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph8{padding-left:8rem !important;padding-right:8rem !important}}.pa9{padding:9rem !important}@media screen and (min-width: 30rem){.sm-pa9{padding:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa9{padding:9rem !important}}@media screen and (min-width: 60rem){.md-pa9{padding:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa9{padding:9rem !important}}@media screen and (min-width: 90rem){.lg-pa9{padding:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa9{padding:9rem !important}}@media screen and (min-width: 144rem){.xlg-pa9{padding:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa9{padding:9rem !important}}.pt9{padding-top:9rem !important}@media screen and (min-width: 30rem){.sm-pt9{padding-top:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt9{padding-top:9rem !important}}@media screen and (min-width: 60rem){.md-pt9{padding-top:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt9{padding-top:9rem !important}}@media screen and (min-width: 90rem){.lg-pt9{padding-top:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt9{padding-top:9rem !important}}@media screen and (min-width: 144rem){.xlg-pt9{padding-top:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt9{padding-top:9rem !important}}.pr9{padding-right:9rem !important}@media screen and (min-width: 30rem){.sm-pr9{padding-right:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr9{padding-right:9rem !important}}@media screen and (min-width: 60rem){.md-pr9{padding-right:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr9{padding-right:9rem !important}}@media screen and (min-width: 90rem){.lg-pr9{padding-right:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr9{padding-right:9rem !important}}@media screen and (min-width: 144rem){.xlg-pr9{padding-right:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr9{padding-right:9rem !important}}.pb9{padding-bottom:9rem !important}@media screen and (min-width: 30rem){.sm-pb9{padding-bottom:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb9{padding-bottom:9rem !important}}@media screen and (min-width: 60rem){.md-pb9{padding-bottom:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb9{padding-bottom:9rem !important}}@media screen and (min-width: 90rem){.lg-pb9{padding-bottom:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb9{padding-bottom:9rem !important}}@media screen and (min-width: 144rem){.xlg-pb9{padding-bottom:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb9{padding-bottom:9rem !important}}.pl9{padding-left:9rem !important}@media screen and (min-width: 30rem){.sm-pl9{padding-left:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl9{padding-left:9rem !important}}@media screen and (min-width: 60rem){.md-pl9{padding-left:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl9{padding-left:9rem !important}}@media screen and (min-width: 90rem){.lg-pl9{padding-left:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl9{padding-left:9rem !important}}@media screen and (min-width: 144rem){.xlg-pl9{padding-left:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl9{padding-left:9rem !important}}.pv9{padding-top:9rem !important;padding-bottom:9rem !important}@media screen and (min-width: 30rem){.sm-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (min-width: 60rem){.md-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (min-width: 90rem){.lg-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (min-width: 144rem){.xlg-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv9{padding-top:9rem !important;padding-bottom:9rem !important}}.ph9{padding-left:9rem !important;padding-right:9rem !important}@media screen and (min-width: 30rem){.sm-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (min-width: 60rem){.md-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (min-width: 90rem){.lg-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (min-width: 144rem){.xlg-ph9{padding-left:9rem !important;padding-right:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph9{padding-left:9rem !important;padding-right:9rem !important}}.pa10{padding:10rem !important}@media screen and (min-width: 30rem){.sm-pa10{padding:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa10{padding:10rem !important}}@media screen and (min-width: 60rem){.md-pa10{padding:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa10{padding:10rem !important}}@media screen and (min-width: 90rem){.lg-pa10{padding:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa10{padding:10rem !important}}@media screen and (min-width: 144rem){.xlg-pa10{padding:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa10{padding:10rem !important}}.pt10{padding-top:10rem !important}@media screen and (min-width: 30rem){.sm-pt10{padding-top:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt10{padding-top:10rem !important}}@media screen and (min-width: 60rem){.md-pt10{padding-top:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt10{padding-top:10rem !important}}@media screen and (min-width: 90rem){.lg-pt10{padding-top:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt10{padding-top:10rem !important}}@media screen and (min-width: 144rem){.xlg-pt10{padding-top:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt10{padding-top:10rem !important}}.pr10{padding-right:10rem !important}@media screen and (min-width: 30rem){.sm-pr10{padding-right:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr10{padding-right:10rem !important}}@media screen and (min-width: 60rem){.md-pr10{padding-right:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr10{padding-right:10rem !important}}@media screen and (min-width: 90rem){.lg-pr10{padding-right:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr10{padding-right:10rem !important}}@media screen and (min-width: 144rem){.xlg-pr10{padding-right:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr10{padding-right:10rem !important}}.pb10{padding-bottom:10rem !important}@media screen and (min-width: 30rem){.sm-pb10{padding-bottom:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb10{padding-bottom:10rem !important}}@media screen and (min-width: 60rem){.md-pb10{padding-bottom:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb10{padding-bottom:10rem !important}}@media screen and (min-width: 90rem){.lg-pb10{padding-bottom:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb10{padding-bottom:10rem !important}}@media screen and (min-width: 144rem){.xlg-pb10{padding-bottom:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb10{padding-bottom:10rem !important}}.pl10{padding-left:10rem !important}@media screen and (min-width: 30rem){.sm-pl10{padding-left:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl10{padding-left:10rem !important}}@media screen and (min-width: 60rem){.md-pl10{padding-left:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl10{padding-left:10rem !important}}@media screen and (min-width: 90rem){.lg-pl10{padding-left:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl10{padding-left:10rem !important}}@media screen and (min-width: 144rem){.xlg-pl10{padding-left:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl10{padding-left:10rem !important}}.pv10{padding-top:10rem !important;padding-bottom:10rem !important}@media screen and (min-width: 30rem){.sm-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (min-width: 60rem){.md-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (min-width: 90rem){.lg-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (min-width: 144rem){.xlg-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv10{padding-top:10rem !important;padding-bottom:10rem !important}}.ph10{padding-left:10rem !important;padding-right:10rem !important}@media screen and (min-width: 30rem){.sm-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (min-width: 60rem){.md-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (min-width: 90rem){.lg-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (min-width: 144rem){.xlg-ph10{padding-left:10rem !important;padding-right:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph10{padding-left:10rem !important;padding-right:10rem !important}}.pa0{padding:0rem !important}@media screen and (min-width: 30rem){.sm-pa0{padding:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pa0{padding:0rem !important}}@media screen and (min-width: 60rem){.md-pa0{padding:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pa0{padding:0rem !important}}@media screen and (min-width: 90rem){.lg-pa0{padding:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pa0{padding:0rem !important}}@media screen and (min-width: 144rem){.xlg-pa0{padding:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-pa0{padding:0rem !important}}.pt0{padding-top:0rem !important}@media screen and (min-width: 30rem){.sm-pt0{padding-top:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pt0{padding-top:0rem !important}}@media screen and (min-width: 60rem){.md-pt0{padding-top:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pt0{padding-top:0rem !important}}@media screen and (min-width: 90rem){.lg-pt0{padding-top:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pt0{padding-top:0rem !important}}@media screen and (min-width: 144rem){.xlg-pt0{padding-top:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-pt0{padding-top:0rem !important}}.pr0{padding-right:0rem !important}@media screen and (min-width: 30rem){.sm-pr0{padding-right:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pr0{padding-right:0rem !important}}@media screen and (min-width: 60rem){.md-pr0{padding-right:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pr0{padding-right:0rem !important}}@media screen and (min-width: 90rem){.lg-pr0{padding-right:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pr0{padding-right:0rem !important}}@media screen and (min-width: 144rem){.xlg-pr0{padding-right:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-pr0{padding-right:0rem !important}}.pb0{padding-bottom:0rem !important}@media screen and (min-width: 30rem){.sm-pb0{padding-bottom:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pb0{padding-bottom:0rem !important}}@media screen and (min-width: 60rem){.md-pb0{padding-bottom:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pb0{padding-bottom:0rem !important}}@media screen and (min-width: 90rem){.lg-pb0{padding-bottom:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pb0{padding-bottom:0rem !important}}@media screen and (min-width: 144rem){.xlg-pb0{padding-bottom:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-pb0{padding-bottom:0rem !important}}.pl0{padding-left:0rem !important}@media screen and (min-width: 30rem){.sm-pl0{padding-left:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pl0{padding-left:0rem !important}}@media screen and (min-width: 60rem){.md-pl0{padding-left:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pl0{padding-left:0rem !important}}@media screen and (min-width: 90rem){.lg-pl0{padding-left:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pl0{padding-left:0rem !important}}@media screen and (min-width: 144rem){.xlg-pl0{padding-left:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-pl0{padding-left:0rem !important}}.pv0{padding-top:0rem !important;padding-bottom:0rem !important}@media screen and (min-width: 30rem){.sm-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (min-width: 60rem){.md-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (min-width: 90rem){.lg-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (min-width: 144rem){.xlg-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-pv0{padding-top:0rem !important;padding-bottom:0rem !important}}.ph0{padding-left:0rem !important;padding-right:0rem !important}@media screen and (min-width: 30rem){.sm-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (min-width: 60rem){.md-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (min-width: 90rem){.lg-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (min-width: 144rem){.xlg-ph0{padding-left:0rem !important;padding-right:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-ph0{padding-left:0rem !important;padding-right:0rem !important}}.ma1{margin:1rem !important}@media screen and (min-width: 30rem){.sm-ma1{margin:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma1{margin:1rem !important}}@media screen and (min-width: 60rem){.md-ma1{margin:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma1{margin:1rem !important}}@media screen and (min-width: 90rem){.lg-ma1{margin:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma1{margin:1rem !important}}@media screen and (min-width: 144rem){.xlg-ma1{margin:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma1{margin:1rem !important}}.mt1{margin-top:1rem !important}@media screen and (min-width: 30rem){.sm-mt1{margin-top:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt1{margin-top:1rem !important}}@media screen and (min-width: 60rem){.md-mt1{margin-top:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt1{margin-top:1rem !important}}@media screen and (min-width: 90rem){.lg-mt1{margin-top:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt1{margin-top:1rem !important}}@media screen and (min-width: 144rem){.xlg-mt1{margin-top:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt1{margin-top:1rem !important}}.mr1{margin-right:1rem !important}@media screen and (min-width: 30rem){.sm-mr1{margin-right:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr1{margin-right:1rem !important}}@media screen and (min-width: 60rem){.md-mr1{margin-right:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr1{margin-right:1rem !important}}@media screen and (min-width: 90rem){.lg-mr1{margin-right:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr1{margin-right:1rem !important}}@media screen and (min-width: 144rem){.xlg-mr1{margin-right:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr1{margin-right:1rem !important}}.mb1{margin-bottom:1rem !important}@media screen and (min-width: 30rem){.sm-mb1{margin-bottom:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb1{margin-bottom:1rem !important}}@media screen and (min-width: 60rem){.md-mb1{margin-bottom:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb1{margin-bottom:1rem !important}}@media screen and (min-width: 90rem){.lg-mb1{margin-bottom:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb1{margin-bottom:1rem !important}}@media screen and (min-width: 144rem){.xlg-mb1{margin-bottom:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb1{margin-bottom:1rem !important}}.ml1{margin-left:1rem !important}@media screen and (min-width: 30rem){.sm-ml1{margin-left:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml1{margin-left:1rem !important}}@media screen and (min-width: 60rem){.md-ml1{margin-left:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml1{margin-left:1rem !important}}@media screen and (min-width: 90rem){.lg-ml1{margin-left:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml1{margin-left:1rem !important}}@media screen and (min-width: 144rem){.xlg-ml1{margin-left:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml1{margin-left:1rem !important}}.mv1{margin-top:1rem !important;margin-bottom:1rem !important}@media screen and (min-width: 30rem){.sm-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (min-width: 60rem){.md-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (min-width: 90rem){.lg-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (min-width: 144rem){.xlg-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv1{margin-top:1rem !important;margin-bottom:1rem !important}}.mh1{margin-left:1rem !important;margin-right:1rem !important}@media screen and (min-width: 30rem){.sm-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (min-width: 60rem){.md-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (min-width: 90rem){.lg-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (min-width: 144rem){.xlg-mh1{margin-left:1rem !important;margin-right:1rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh1{margin-left:1rem !important;margin-right:1rem !important}}.ma2{margin:2rem !important}@media screen and (min-width: 30rem){.sm-ma2{margin:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma2{margin:2rem !important}}@media screen and (min-width: 60rem){.md-ma2{margin:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma2{margin:2rem !important}}@media screen and (min-width: 90rem){.lg-ma2{margin:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma2{margin:2rem !important}}@media screen and (min-width: 144rem){.xlg-ma2{margin:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma2{margin:2rem !important}}.mt2{margin-top:2rem !important}@media screen and (min-width: 30rem){.sm-mt2{margin-top:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt2{margin-top:2rem !important}}@media screen and (min-width: 60rem){.md-mt2{margin-top:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt2{margin-top:2rem !important}}@media screen and (min-width: 90rem){.lg-mt2{margin-top:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt2{margin-top:2rem !important}}@media screen and (min-width: 144rem){.xlg-mt2{margin-top:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt2{margin-top:2rem !important}}.mr2{margin-right:2rem !important}@media screen and (min-width: 30rem){.sm-mr2{margin-right:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr2{margin-right:2rem !important}}@media screen and (min-width: 60rem){.md-mr2{margin-right:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr2{margin-right:2rem !important}}@media screen and (min-width: 90rem){.lg-mr2{margin-right:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr2{margin-right:2rem !important}}@media screen and (min-width: 144rem){.xlg-mr2{margin-right:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr2{margin-right:2rem !important}}.mb2{margin-bottom:2rem !important}@media screen and (min-width: 30rem){.sm-mb2{margin-bottom:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb2{margin-bottom:2rem !important}}@media screen and (min-width: 60rem){.md-mb2{margin-bottom:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb2{margin-bottom:2rem !important}}@media screen and (min-width: 90rem){.lg-mb2{margin-bottom:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb2{margin-bottom:2rem !important}}@media screen and (min-width: 144rem){.xlg-mb2{margin-bottom:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb2{margin-bottom:2rem !important}}.ml2{margin-left:2rem !important}@media screen and (min-width: 30rem){.sm-ml2{margin-left:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml2{margin-left:2rem !important}}@media screen and (min-width: 60rem){.md-ml2{margin-left:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml2{margin-left:2rem !important}}@media screen and (min-width: 90rem){.lg-ml2{margin-left:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml2{margin-left:2rem !important}}@media screen and (min-width: 144rem){.xlg-ml2{margin-left:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml2{margin-left:2rem !important}}.mv2{margin-top:2rem !important;margin-bottom:2rem !important}@media screen and (min-width: 30rem){.sm-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (min-width: 60rem){.md-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (min-width: 90rem){.lg-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (min-width: 144rem){.xlg-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv2{margin-top:2rem !important;margin-bottom:2rem !important}}.mh2{margin-left:2rem !important;margin-right:2rem !important}@media screen and (min-width: 30rem){.sm-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (min-width: 60rem){.md-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (min-width: 90rem){.lg-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (min-width: 144rem){.xlg-mh2{margin-left:2rem !important;margin-right:2rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh2{margin-left:2rem !important;margin-right:2rem !important}}.ma3{margin:3rem !important}@media screen and (min-width: 30rem){.sm-ma3{margin:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma3{margin:3rem !important}}@media screen and (min-width: 60rem){.md-ma3{margin:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma3{margin:3rem !important}}@media screen and (min-width: 90rem){.lg-ma3{margin:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma3{margin:3rem !important}}@media screen and (min-width: 144rem){.xlg-ma3{margin:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma3{margin:3rem !important}}.mt3{margin-top:3rem !important}@media screen and (min-width: 30rem){.sm-mt3{margin-top:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt3{margin-top:3rem !important}}@media screen and (min-width: 60rem){.md-mt3{margin-top:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt3{margin-top:3rem !important}}@media screen and (min-width: 90rem){.lg-mt3{margin-top:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt3{margin-top:3rem !important}}@media screen and (min-width: 144rem){.xlg-mt3{margin-top:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt3{margin-top:3rem !important}}.mr3{margin-right:3rem !important}@media screen and (min-width: 30rem){.sm-mr3{margin-right:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr3{margin-right:3rem !important}}@media screen and (min-width: 60rem){.md-mr3{margin-right:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr3{margin-right:3rem !important}}@media screen and (min-width: 90rem){.lg-mr3{margin-right:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr3{margin-right:3rem !important}}@media screen and (min-width: 144rem){.xlg-mr3{margin-right:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr3{margin-right:3rem !important}}.mb3{margin-bottom:3rem !important}@media screen and (min-width: 30rem){.sm-mb3{margin-bottom:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb3{margin-bottom:3rem !important}}@media screen and (min-width: 60rem){.md-mb3{margin-bottom:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb3{margin-bottom:3rem !important}}@media screen and (min-width: 90rem){.lg-mb3{margin-bottom:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb3{margin-bottom:3rem !important}}@media screen and (min-width: 144rem){.xlg-mb3{margin-bottom:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb3{margin-bottom:3rem !important}}.ml3{margin-left:3rem !important}@media screen and (min-width: 30rem){.sm-ml3{margin-left:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml3{margin-left:3rem !important}}@media screen and (min-width: 60rem){.md-ml3{margin-left:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml3{margin-left:3rem !important}}@media screen and (min-width: 90rem){.lg-ml3{margin-left:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml3{margin-left:3rem !important}}@media screen and (min-width: 144rem){.xlg-ml3{margin-left:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml3{margin-left:3rem !important}}.mv3{margin-top:3rem !important;margin-bottom:3rem !important}@media screen and (min-width: 30rem){.sm-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (min-width: 60rem){.md-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (min-width: 90rem){.lg-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (min-width: 144rem){.xlg-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv3{margin-top:3rem !important;margin-bottom:3rem !important}}.mh3{margin-left:3rem !important;margin-right:3rem !important}@media screen and (min-width: 30rem){.sm-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (min-width: 60rem){.md-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (min-width: 90rem){.lg-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (min-width: 144rem){.xlg-mh3{margin-left:3rem !important;margin-right:3rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh3{margin-left:3rem !important;margin-right:3rem !important}}.ma4{margin:4rem !important}@media screen and (min-width: 30rem){.sm-ma4{margin:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma4{margin:4rem !important}}@media screen and (min-width: 60rem){.md-ma4{margin:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma4{margin:4rem !important}}@media screen and (min-width: 90rem){.lg-ma4{margin:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma4{margin:4rem !important}}@media screen and (min-width: 144rem){.xlg-ma4{margin:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma4{margin:4rem !important}}.mt4{margin-top:4rem !important}@media screen and (min-width: 30rem){.sm-mt4{margin-top:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt4{margin-top:4rem !important}}@media screen and (min-width: 60rem){.md-mt4{margin-top:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt4{margin-top:4rem !important}}@media screen and (min-width: 90rem){.lg-mt4{margin-top:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt4{margin-top:4rem !important}}@media screen and (min-width: 144rem){.xlg-mt4{margin-top:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt4{margin-top:4rem !important}}.mr4{margin-right:4rem !important}@media screen and (min-width: 30rem){.sm-mr4{margin-right:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr4{margin-right:4rem !important}}@media screen and (min-width: 60rem){.md-mr4{margin-right:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr4{margin-right:4rem !important}}@media screen and (min-width: 90rem){.lg-mr4{margin-right:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr4{margin-right:4rem !important}}@media screen and (min-width: 144rem){.xlg-mr4{margin-right:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr4{margin-right:4rem !important}}.mb4{margin-bottom:4rem !important}@media screen and (min-width: 30rem){.sm-mb4{margin-bottom:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb4{margin-bottom:4rem !important}}@media screen and (min-width: 60rem){.md-mb4{margin-bottom:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb4{margin-bottom:4rem !important}}@media screen and (min-width: 90rem){.lg-mb4{margin-bottom:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb4{margin-bottom:4rem !important}}@media screen and (min-width: 144rem){.xlg-mb4{margin-bottom:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb4{margin-bottom:4rem !important}}.ml4{margin-left:4rem !important}@media screen and (min-width: 30rem){.sm-ml4{margin-left:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml4{margin-left:4rem !important}}@media screen and (min-width: 60rem){.md-ml4{margin-left:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml4{margin-left:4rem !important}}@media screen and (min-width: 90rem){.lg-ml4{margin-left:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml4{margin-left:4rem !important}}@media screen and (min-width: 144rem){.xlg-ml4{margin-left:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml4{margin-left:4rem !important}}.mv4{margin-top:4rem !important;margin-bottom:4rem !important}@media screen and (min-width: 30rem){.sm-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (min-width: 60rem){.md-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (min-width: 90rem){.lg-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (min-width: 144rem){.xlg-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv4{margin-top:4rem !important;margin-bottom:4rem !important}}.mh4{margin-left:4rem !important;margin-right:4rem !important}@media screen and (min-width: 30rem){.sm-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (min-width: 60rem){.md-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (min-width: 90rem){.lg-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (min-width: 144rem){.xlg-mh4{margin-left:4rem !important;margin-right:4rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh4{margin-left:4rem !important;margin-right:4rem !important}}.ma5{margin:5rem !important}@media screen and (min-width: 30rem){.sm-ma5{margin:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma5{margin:5rem !important}}@media screen and (min-width: 60rem){.md-ma5{margin:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma5{margin:5rem !important}}@media screen and (min-width: 90rem){.lg-ma5{margin:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma5{margin:5rem !important}}@media screen and (min-width: 144rem){.xlg-ma5{margin:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma5{margin:5rem !important}}.mt5{margin-top:5rem !important}@media screen and (min-width: 30rem){.sm-mt5{margin-top:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt5{margin-top:5rem !important}}@media screen and (min-width: 60rem){.md-mt5{margin-top:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt5{margin-top:5rem !important}}@media screen and (min-width: 90rem){.lg-mt5{margin-top:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt5{margin-top:5rem !important}}@media screen and (min-width: 144rem){.xlg-mt5{margin-top:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt5{margin-top:5rem !important}}.mr5{margin-right:5rem !important}@media screen and (min-width: 30rem){.sm-mr5{margin-right:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr5{margin-right:5rem !important}}@media screen and (min-width: 60rem){.md-mr5{margin-right:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr5{margin-right:5rem !important}}@media screen and (min-width: 90rem){.lg-mr5{margin-right:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr5{margin-right:5rem !important}}@media screen and (min-width: 144rem){.xlg-mr5{margin-right:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr5{margin-right:5rem !important}}.mb5{margin-bottom:5rem !important}@media screen and (min-width: 30rem){.sm-mb5{margin-bottom:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb5{margin-bottom:5rem !important}}@media screen and (min-width: 60rem){.md-mb5{margin-bottom:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb5{margin-bottom:5rem !important}}@media screen and (min-width: 90rem){.lg-mb5{margin-bottom:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb5{margin-bottom:5rem !important}}@media screen and (min-width: 144rem){.xlg-mb5{margin-bottom:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb5{margin-bottom:5rem !important}}.ml5{margin-left:5rem !important}@media screen and (min-width: 30rem){.sm-ml5{margin-left:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml5{margin-left:5rem !important}}@media screen and (min-width: 60rem){.md-ml5{margin-left:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml5{margin-left:5rem !important}}@media screen and (min-width: 90rem){.lg-ml5{margin-left:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml5{margin-left:5rem !important}}@media screen and (min-width: 144rem){.xlg-ml5{margin-left:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml5{margin-left:5rem !important}}.mv5{margin-top:5rem !important;margin-bottom:5rem !important}@media screen and (min-width: 30rem){.sm-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (min-width: 60rem){.md-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (min-width: 90rem){.lg-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (min-width: 144rem){.xlg-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv5{margin-top:5rem !important;margin-bottom:5rem !important}}.mh5{margin-left:5rem !important;margin-right:5rem !important}@media screen and (min-width: 30rem){.sm-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (min-width: 60rem){.md-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (min-width: 90rem){.lg-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (min-width: 144rem){.xlg-mh5{margin-left:5rem !important;margin-right:5rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh5{margin-left:5rem !important;margin-right:5rem !important}}.ma6{margin:6rem !important}@media screen and (min-width: 30rem){.sm-ma6{margin:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma6{margin:6rem !important}}@media screen and (min-width: 60rem){.md-ma6{margin:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma6{margin:6rem !important}}@media screen and (min-width: 90rem){.lg-ma6{margin:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma6{margin:6rem !important}}@media screen and (min-width: 144rem){.xlg-ma6{margin:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma6{margin:6rem !important}}.mt6{margin-top:6rem !important}@media screen and (min-width: 30rem){.sm-mt6{margin-top:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt6{margin-top:6rem !important}}@media screen and (min-width: 60rem){.md-mt6{margin-top:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt6{margin-top:6rem !important}}@media screen and (min-width: 90rem){.lg-mt6{margin-top:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt6{margin-top:6rem !important}}@media screen and (min-width: 144rem){.xlg-mt6{margin-top:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt6{margin-top:6rem !important}}.mr6{margin-right:6rem !important}@media screen and (min-width: 30rem){.sm-mr6{margin-right:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr6{margin-right:6rem !important}}@media screen and (min-width: 60rem){.md-mr6{margin-right:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr6{margin-right:6rem !important}}@media screen and (min-width: 90rem){.lg-mr6{margin-right:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr6{margin-right:6rem !important}}@media screen and (min-width: 144rem){.xlg-mr6{margin-right:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr6{margin-right:6rem !important}}.mb6{margin-bottom:6rem !important}@media screen and (min-width: 30rem){.sm-mb6{margin-bottom:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb6{margin-bottom:6rem !important}}@media screen and (min-width: 60rem){.md-mb6{margin-bottom:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb6{margin-bottom:6rem !important}}@media screen and (min-width: 90rem){.lg-mb6{margin-bottom:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb6{margin-bottom:6rem !important}}@media screen and (min-width: 144rem){.xlg-mb6{margin-bottom:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb6{margin-bottom:6rem !important}}.ml6{margin-left:6rem !important}@media screen and (min-width: 30rem){.sm-ml6{margin-left:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml6{margin-left:6rem !important}}@media screen and (min-width: 60rem){.md-ml6{margin-left:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml6{margin-left:6rem !important}}@media screen and (min-width: 90rem){.lg-ml6{margin-left:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml6{margin-left:6rem !important}}@media screen and (min-width: 144rem){.xlg-ml6{margin-left:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml6{margin-left:6rem !important}}.mv6{margin-top:6rem !important;margin-bottom:6rem !important}@media screen and (min-width: 30rem){.sm-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (min-width: 60rem){.md-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (min-width: 90rem){.lg-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (min-width: 144rem){.xlg-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv6{margin-top:6rem !important;margin-bottom:6rem !important}}.mh6{margin-left:6rem !important;margin-right:6rem !important}@media screen and (min-width: 30rem){.sm-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (min-width: 60rem){.md-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (min-width: 90rem){.lg-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (min-width: 144rem){.xlg-mh6{margin-left:6rem !important;margin-right:6rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh6{margin-left:6rem !important;margin-right:6rem !important}}.ma7{margin:7rem !important}@media screen and (min-width: 30rem){.sm-ma7{margin:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma7{margin:7rem !important}}@media screen and (min-width: 60rem){.md-ma7{margin:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma7{margin:7rem !important}}@media screen and (min-width: 90rem){.lg-ma7{margin:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma7{margin:7rem !important}}@media screen and (min-width: 144rem){.xlg-ma7{margin:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma7{margin:7rem !important}}.mt7{margin-top:7rem !important}@media screen and (min-width: 30rem){.sm-mt7{margin-top:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt7{margin-top:7rem !important}}@media screen and (min-width: 60rem){.md-mt7{margin-top:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt7{margin-top:7rem !important}}@media screen and (min-width: 90rem){.lg-mt7{margin-top:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt7{margin-top:7rem !important}}@media screen and (min-width: 144rem){.xlg-mt7{margin-top:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt7{margin-top:7rem !important}}.mr7{margin-right:7rem !important}@media screen and (min-width: 30rem){.sm-mr7{margin-right:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr7{margin-right:7rem !important}}@media screen and (min-width: 60rem){.md-mr7{margin-right:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr7{margin-right:7rem !important}}@media screen and (min-width: 90rem){.lg-mr7{margin-right:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr7{margin-right:7rem !important}}@media screen and (min-width: 144rem){.xlg-mr7{margin-right:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr7{margin-right:7rem !important}}.mb7{margin-bottom:7rem !important}@media screen and (min-width: 30rem){.sm-mb7{margin-bottom:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb7{margin-bottom:7rem !important}}@media screen and (min-width: 60rem){.md-mb7{margin-bottom:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb7{margin-bottom:7rem !important}}@media screen and (min-width: 90rem){.lg-mb7{margin-bottom:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb7{margin-bottom:7rem !important}}@media screen and (min-width: 144rem){.xlg-mb7{margin-bottom:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb7{margin-bottom:7rem !important}}.ml7{margin-left:7rem !important}@media screen and (min-width: 30rem){.sm-ml7{margin-left:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml7{margin-left:7rem !important}}@media screen and (min-width: 60rem){.md-ml7{margin-left:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml7{margin-left:7rem !important}}@media screen and (min-width: 90rem){.lg-ml7{margin-left:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml7{margin-left:7rem !important}}@media screen and (min-width: 144rem){.xlg-ml7{margin-left:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml7{margin-left:7rem !important}}.mv7{margin-top:7rem !important;margin-bottom:7rem !important}@media screen and (min-width: 30rem){.sm-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (min-width: 60rem){.md-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (min-width: 90rem){.lg-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (min-width: 144rem){.xlg-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv7{margin-top:7rem !important;margin-bottom:7rem !important}}.mh7{margin-left:7rem !important;margin-right:7rem !important}@media screen and (min-width: 30rem){.sm-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (min-width: 60rem){.md-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (min-width: 90rem){.lg-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (min-width: 144rem){.xlg-mh7{margin-left:7rem !important;margin-right:7rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh7{margin-left:7rem !important;margin-right:7rem !important}}.ma8{margin:8rem !important}@media screen and (min-width: 30rem){.sm-ma8{margin:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma8{margin:8rem !important}}@media screen and (min-width: 60rem){.md-ma8{margin:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma8{margin:8rem !important}}@media screen and (min-width: 90rem){.lg-ma8{margin:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma8{margin:8rem !important}}@media screen and (min-width: 144rem){.xlg-ma8{margin:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma8{margin:8rem !important}}.mt8{margin-top:8rem !important}@media screen and (min-width: 30rem){.sm-mt8{margin-top:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt8{margin-top:8rem !important}}@media screen and (min-width: 60rem){.md-mt8{margin-top:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt8{margin-top:8rem !important}}@media screen and (min-width: 90rem){.lg-mt8{margin-top:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt8{margin-top:8rem !important}}@media screen and (min-width: 144rem){.xlg-mt8{margin-top:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt8{margin-top:8rem !important}}.mr8{margin-right:8rem !important}@media screen and (min-width: 30rem){.sm-mr8{margin-right:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr8{margin-right:8rem !important}}@media screen and (min-width: 60rem){.md-mr8{margin-right:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr8{margin-right:8rem !important}}@media screen and (min-width: 90rem){.lg-mr8{margin-right:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr8{margin-right:8rem !important}}@media screen and (min-width: 144rem){.xlg-mr8{margin-right:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr8{margin-right:8rem !important}}.mb8{margin-bottom:8rem !important}@media screen and (min-width: 30rem){.sm-mb8{margin-bottom:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb8{margin-bottom:8rem !important}}@media screen and (min-width: 60rem){.md-mb8{margin-bottom:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb8{margin-bottom:8rem !important}}@media screen and (min-width: 90rem){.lg-mb8{margin-bottom:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb8{margin-bottom:8rem !important}}@media screen and (min-width: 144rem){.xlg-mb8{margin-bottom:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb8{margin-bottom:8rem !important}}.ml8{margin-left:8rem !important}@media screen and (min-width: 30rem){.sm-ml8{margin-left:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml8{margin-left:8rem !important}}@media screen and (min-width: 60rem){.md-ml8{margin-left:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml8{margin-left:8rem !important}}@media screen and (min-width: 90rem){.lg-ml8{margin-left:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml8{margin-left:8rem !important}}@media screen and (min-width: 144rem){.xlg-ml8{margin-left:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml8{margin-left:8rem !important}}.mv8{margin-top:8rem !important;margin-bottom:8rem !important}@media screen and (min-width: 30rem){.sm-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (min-width: 60rem){.md-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (min-width: 90rem){.lg-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (min-width: 144rem){.xlg-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv8{margin-top:8rem !important;margin-bottom:8rem !important}}.mh8{margin-left:8rem !important;margin-right:8rem !important}@media screen and (min-width: 30rem){.sm-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (min-width: 60rem){.md-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (min-width: 90rem){.lg-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (min-width: 144rem){.xlg-mh8{margin-left:8rem !important;margin-right:8rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh8{margin-left:8rem !important;margin-right:8rem !important}}.ma9{margin:9rem !important}@media screen and (min-width: 30rem){.sm-ma9{margin:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma9{margin:9rem !important}}@media screen and (min-width: 60rem){.md-ma9{margin:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma9{margin:9rem !important}}@media screen and (min-width: 90rem){.lg-ma9{margin:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma9{margin:9rem !important}}@media screen and (min-width: 144rem){.xlg-ma9{margin:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma9{margin:9rem !important}}.mt9{margin-top:9rem !important}@media screen and (min-width: 30rem){.sm-mt9{margin-top:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt9{margin-top:9rem !important}}@media screen and (min-width: 60rem){.md-mt9{margin-top:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt9{margin-top:9rem !important}}@media screen and (min-width: 90rem){.lg-mt9{margin-top:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt9{margin-top:9rem !important}}@media screen and (min-width: 144rem){.xlg-mt9{margin-top:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt9{margin-top:9rem !important}}.mr9{margin-right:9rem !important}@media screen and (min-width: 30rem){.sm-mr9{margin-right:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr9{margin-right:9rem !important}}@media screen and (min-width: 60rem){.md-mr9{margin-right:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr9{margin-right:9rem !important}}@media screen and (min-width: 90rem){.lg-mr9{margin-right:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr9{margin-right:9rem !important}}@media screen and (min-width: 144rem){.xlg-mr9{margin-right:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr9{margin-right:9rem !important}}.mb9{margin-bottom:9rem !important}@media screen and (min-width: 30rem){.sm-mb9{margin-bottom:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb9{margin-bottom:9rem !important}}@media screen and (min-width: 60rem){.md-mb9{margin-bottom:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb9{margin-bottom:9rem !important}}@media screen and (min-width: 90rem){.lg-mb9{margin-bottom:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb9{margin-bottom:9rem !important}}@media screen and (min-width: 144rem){.xlg-mb9{margin-bottom:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb9{margin-bottom:9rem !important}}.ml9{margin-left:9rem !important}@media screen and (min-width: 30rem){.sm-ml9{margin-left:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml9{margin-left:9rem !important}}@media screen and (min-width: 60rem){.md-ml9{margin-left:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml9{margin-left:9rem !important}}@media screen and (min-width: 90rem){.lg-ml9{margin-left:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml9{margin-left:9rem !important}}@media screen and (min-width: 144rem){.xlg-ml9{margin-left:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml9{margin-left:9rem !important}}.mv9{margin-top:9rem !important;margin-bottom:9rem !important}@media screen and (min-width: 30rem){.sm-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (min-width: 60rem){.md-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (min-width: 90rem){.lg-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (min-width: 144rem){.xlg-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv9{margin-top:9rem !important;margin-bottom:9rem !important}}.mh9{margin-left:9rem !important;margin-right:9rem !important}@media screen and (min-width: 30rem){.sm-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (min-width: 60rem){.md-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (min-width: 90rem){.lg-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (min-width: 144rem){.xlg-mh9{margin-left:9rem !important;margin-right:9rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh9{margin-left:9rem !important;margin-right:9rem !important}}.ma10{margin:10rem !important}@media screen and (min-width: 30rem){.sm-ma10{margin:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma10{margin:10rem !important}}@media screen and (min-width: 60rem){.md-ma10{margin:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma10{margin:10rem !important}}@media screen and (min-width: 90rem){.lg-ma10{margin:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma10{margin:10rem !important}}@media screen and (min-width: 144rem){.xlg-ma10{margin:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma10{margin:10rem !important}}.mt10{margin-top:10rem !important}@media screen and (min-width: 30rem){.sm-mt10{margin-top:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt10{margin-top:10rem !important}}@media screen and (min-width: 60rem){.md-mt10{margin-top:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt10{margin-top:10rem !important}}@media screen and (min-width: 90rem){.lg-mt10{margin-top:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt10{margin-top:10rem !important}}@media screen and (min-width: 144rem){.xlg-mt10{margin-top:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt10{margin-top:10rem !important}}.mr10{margin-right:10rem !important}@media screen and (min-width: 30rem){.sm-mr10{margin-right:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr10{margin-right:10rem !important}}@media screen and (min-width: 60rem){.md-mr10{margin-right:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr10{margin-right:10rem !important}}@media screen and (min-width: 90rem){.lg-mr10{margin-right:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr10{margin-right:10rem !important}}@media screen and (min-width: 144rem){.xlg-mr10{margin-right:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr10{margin-right:10rem !important}}.mb10{margin-bottom:10rem !important}@media screen and (min-width: 30rem){.sm-mb10{margin-bottom:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb10{margin-bottom:10rem !important}}@media screen and (min-width: 60rem){.md-mb10{margin-bottom:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb10{margin-bottom:10rem !important}}@media screen and (min-width: 90rem){.lg-mb10{margin-bottom:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb10{margin-bottom:10rem !important}}@media screen and (min-width: 144rem){.xlg-mb10{margin-bottom:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb10{margin-bottom:10rem !important}}.ml10{margin-left:10rem !important}@media screen and (min-width: 30rem){.sm-ml10{margin-left:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml10{margin-left:10rem !important}}@media screen and (min-width: 60rem){.md-ml10{margin-left:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml10{margin-left:10rem !important}}@media screen and (min-width: 90rem){.lg-ml10{margin-left:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml10{margin-left:10rem !important}}@media screen and (min-width: 144rem){.xlg-ml10{margin-left:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml10{margin-left:10rem !important}}.mv10{margin-top:10rem !important;margin-bottom:10rem !important}@media screen and (min-width: 30rem){.sm-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (min-width: 60rem){.md-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (min-width: 90rem){.lg-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (min-width: 144rem){.xlg-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv10{margin-top:10rem !important;margin-bottom:10rem !important}}.mh10{margin-left:10rem !important;margin-right:10rem !important}@media screen and (min-width: 30rem){.sm-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (min-width: 60rem){.md-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (min-width: 90rem){.lg-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (min-width: 144rem){.xlg-mh10{margin-left:10rem !important;margin-right:10rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh10{margin-left:10rem !important;margin-right:10rem !important}}.ma0{margin:0rem !important}@media screen and (min-width: 30rem){.sm-ma0{margin:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ma0{margin:0rem !important}}@media screen and (min-width: 60rem){.md-ma0{margin:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ma0{margin:0rem !important}}@media screen and (min-width: 90rem){.lg-ma0{margin:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ma0{margin:0rem !important}}@media screen and (min-width: 144rem){.xlg-ma0{margin:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-ma0{margin:0rem !important}}.mt0{margin-top:0rem !important}@media screen and (min-width: 30rem){.sm-mt0{margin-top:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mt0{margin-top:0rem !important}}@media screen and (min-width: 60rem){.md-mt0{margin-top:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mt0{margin-top:0rem !important}}@media screen and (min-width: 90rem){.lg-mt0{margin-top:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mt0{margin-top:0rem !important}}@media screen and (min-width: 144rem){.xlg-mt0{margin-top:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-mt0{margin-top:0rem !important}}.mr0{margin-right:0rem !important}@media screen and (min-width: 30rem){.sm-mr0{margin-right:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mr0{margin-right:0rem !important}}@media screen and (min-width: 60rem){.md-mr0{margin-right:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mr0{margin-right:0rem !important}}@media screen and (min-width: 90rem){.lg-mr0{margin-right:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mr0{margin-right:0rem !important}}@media screen and (min-width: 144rem){.xlg-mr0{margin-right:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-mr0{margin-right:0rem !important}}.mb0{margin-bottom:0rem !important}@media screen and (min-width: 30rem){.sm-mb0{margin-bottom:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mb0{margin-bottom:0rem !important}}@media screen and (min-width: 60rem){.md-mb0{margin-bottom:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mb0{margin-bottom:0rem !important}}@media screen and (min-width: 90rem){.lg-mb0{margin-bottom:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mb0{margin-bottom:0rem !important}}@media screen and (min-width: 144rem){.xlg-mb0{margin-bottom:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-mb0{margin-bottom:0rem !important}}.ml0{margin-left:0rem !important}@media screen and (min-width: 30rem){.sm-ml0{margin-left:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-ml0{margin-left:0rem !important}}@media screen and (min-width: 60rem){.md-ml0{margin-left:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ml0{margin-left:0rem !important}}@media screen and (min-width: 90rem){.lg-ml0{margin-left:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ml0{margin-left:0rem !important}}@media screen and (min-width: 144rem){.xlg-ml0{margin-left:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-ml0{margin-left:0rem !important}}.mv0{margin-top:0rem !important;margin-bottom:0rem !important}@media screen and (min-width: 30rem){.sm-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (min-width: 60rem){.md-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (min-width: 90rem){.lg-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (min-width: 144rem){.xlg-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-mv0{margin-top:0rem !important;margin-bottom:0rem !important}}.mh0{margin-left:0rem !important;margin-right:0rem !important}@media screen and (min-width: 30rem){.sm-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (max-width: 59.99999rem){.only-sm-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (min-width: 60rem){.md-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (min-width: 90rem){.lg-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (min-width: 144rem){.xlg-mh0{margin-left:0rem !important;margin-right:0rem !important}}@media screen and (min-width: 144rem){.only-xlg-mh0{margin-left:0rem !important;margin-right:0rem !important}}.xp{padding:0 !important}.xpv{padding-top:0 !important;padding-bottom:0 !important}.xph{padding-left:0 !important;padding-right:0 !important}.xm{margin:0 !important}.xmv{margin-top:0 !important;margin-bottom:0 !important}.xmh{margin-left:0 !important;margin-right:0 !important}@media screen and (min-width: 30rem){.sm-xp{padding:0 !important}}@media screen and (min-width: 30rem){.sm-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 30rem){.sm-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 30rem){.sm-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (max-width: 59.99999rem){.only-sm-xp{padding:0 !important}}@media screen and (max-width: 59.99999rem){.only-sm-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (max-width: 59.99999rem){.only-sm-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (max-width: 59.99999rem){.only-sm-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 60rem){.md-xp{padding:0 !important}}@media screen and (min-width: 60rem){.md-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 60rem){.md-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 60rem){.md-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-xp{padding:0 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 90rem){.lg-xp{padding:0 !important}}@media screen and (min-width: 90rem){.lg-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 90rem){.lg-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 90rem){.lg-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-xp{padding:0 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 144rem){.xlg-xp{padding:0 !important}}@media screen and (min-width: 144rem){.xlg-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 144rem){.xlg-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 144rem){.xlg-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 144rem){.only-xlg-xp{padding:0 !important}}@media screen and (min-width: 144rem){.only-xlg-xpv{padding-top:0 !important;padding-bottom:0 !important}}@media screen and (min-width: 144rem){.only-xlg-xph{padding-left:0 !important;padding-right:0 !important}}@media screen and (min-width: 144rem){.only-xlg-center{padding-left:auto !important;padding-right:auto !important}}@media screen and (min-width: 30rem){.sm-xm{margin:0 !important}}@media screen and (min-width: 30rem){.sm-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 30rem){.sm-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 30rem){.sm-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (max-width: 59.99999rem){.only-sm-xm{margin:0 !important}}@media screen and (max-width: 59.99999rem){.only-sm-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (max-width: 59.99999rem){.only-sm-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (max-width: 59.99999rem){.only-sm-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (min-width: 60rem){.md-xm{margin:0 !important}}@media screen and (min-width: 60rem){.md-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 60rem){.md-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 60rem){.md-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-xm{margin:0 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (min-width: 90rem){.lg-xm{margin:0 !important}}@media screen and (min-width: 90rem){.lg-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 90rem){.lg-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 90rem){.lg-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-xm{margin:0 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (min-width: 144rem){.xlg-xm{margin:0 !important}}@media screen and (min-width: 144rem){.xlg-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 144rem){.xlg-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 144rem){.xlg-center{margin-left:auto !important;margin-right:auto !important}}@media screen and (min-width: 144rem){.only-xlg-xm{margin:0 !important}}@media screen and (min-width: 144rem){.only-xlg-xmv{margin-top:0 !important;margin-bottom:0 !important}}@media screen and (min-width: 144rem){.only-xlg-xmh{margin-left:0 !important;margin-right:0 !important}}@media screen and (min-width: 144rem){.only-xlg-center{margin-left:auto !important;margin-right:auto !important}}.lh1{line-height:1 !important}.lh1-1{line-height:1.1 !important}.lh1-2{line-height:1.2 !important}.lh1-3{line-height:1.3 !important}.lh1-4{line-height:1.4 !important}.lh1-5{line-height:1.5 !important}.lh1-6{line-height:1.6 !important}.lh1-7{line-height:1.7 !important}.lh1-8{line-height:1.8 !important}.lh1-9{line-height:1.9 !important}.lh2{line-height:2 !important}@media screen and (min-width: 30rem){.sm-lh1{line-height:1 !important}}@media screen and (min-width: 30rem){.sm-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 30rem){.sm-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 30rem){.sm-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 30rem){.sm-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 30rem){.sm-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 30rem){.sm-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 30rem){.sm-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 30rem){.sm-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 30rem){.sm-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 30rem){.sm-lh2{line-height:2 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1{line-height:1 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-1{line-height:1.1 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-2{line-height:1.2 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-3{line-height:1.3 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-4{line-height:1.4 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-5{line-height:1.5 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-6{line-height:1.6 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-7{line-height:1.7 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-8{line-height:1.8 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh1-9{line-height:1.9 !important}}@media screen and (max-width: 59.99999rem){.only-sm-lh2{line-height:2 !important}}@media screen and (min-width: 60rem){.md-lh1{line-height:1 !important}}@media screen and (min-width: 60rem){.md-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 60rem){.md-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 60rem){.md-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 60rem){.md-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 60rem){.md-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 60rem){.md-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 60rem){.md-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 60rem){.md-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 60rem){.md-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 60rem){.md-lh2{line-height:2 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1{line-height:1 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-lh2{line-height:2 !important}}@media screen and (min-width: 90rem){.lg-lh1{line-height:1 !important}}@media screen and (min-width: 90rem){.lg-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 90rem){.lg-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 90rem){.lg-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 90rem){.lg-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 90rem){.lg-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 90rem){.lg-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 90rem){.lg-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 90rem){.lg-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 90rem){.lg-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 90rem){.lg-lh2{line-height:2 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1{line-height:1 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-lh2{line-height:2 !important}}@media screen and (min-width: 144rem){.xlg-lh1{line-height:1 !important}}@media screen and (min-width: 144rem){.xlg-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 144rem){.xlg-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 144rem){.xlg-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 144rem){.xlg-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 144rem){.xlg-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 144rem){.xlg-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 144rem){.xlg-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 144rem){.xlg-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 144rem){.xlg-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 144rem){.xlg-lh2{line-height:2 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1{line-height:1 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-1{line-height:1.1 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-2{line-height:1.2 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-3{line-height:1.3 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-4{line-height:1.4 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-5{line-height:1.5 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-6{line-height:1.6 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-7{line-height:1.7 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-8{line-height:1.8 !important}}@media screen and (min-width: 144rem){.only-xlg-lh1-9{line-height:1.9 !important}}@media screen and (min-width: 144rem){.only-xlg-lh2{line-height:2 !important}}.ls1{letter-spacing:.1rem}@media screen and (min-width: 30rem){.sm-ls1{letter-spacing:.1rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls1{letter-spacing:.1rem}}@media screen and (min-width: 60rem){.md-ls1{letter-spacing:.1rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls1{letter-spacing:.1rem}}@media screen and (min-width: 90rem){.lg-ls1{letter-spacing:.1rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls1{letter-spacing:.1rem}}@media screen and (min-width: 144rem){.xlg-ls1{letter-spacing:.1rem}}@media screen and (min-width: 144rem){.only-xlg-ls1{letter-spacing:.1rem}}.ls2{letter-spacing:.2rem}@media screen and (min-width: 30rem){.sm-ls2{letter-spacing:.2rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls2{letter-spacing:.2rem}}@media screen and (min-width: 60rem){.md-ls2{letter-spacing:.2rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls2{letter-spacing:.2rem}}@media screen and (min-width: 90rem){.lg-ls2{letter-spacing:.2rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls2{letter-spacing:.2rem}}@media screen and (min-width: 144rem){.xlg-ls2{letter-spacing:.2rem}}@media screen and (min-width: 144rem){.only-xlg-ls2{letter-spacing:.2rem}}.ls3{letter-spacing:.3rem}@media screen and (min-width: 30rem){.sm-ls3{letter-spacing:.3rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls3{letter-spacing:.3rem}}@media screen and (min-width: 60rem){.md-ls3{letter-spacing:.3rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls3{letter-spacing:.3rem}}@media screen and (min-width: 90rem){.lg-ls3{letter-spacing:.3rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls3{letter-spacing:.3rem}}@media screen and (min-width: 144rem){.xlg-ls3{letter-spacing:.3rem}}@media screen and (min-width: 144rem){.only-xlg-ls3{letter-spacing:.3rem}}.ls4{letter-spacing:.4rem}@media screen and (min-width: 30rem){.sm-ls4{letter-spacing:.4rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls4{letter-spacing:.4rem}}@media screen and (min-width: 60rem){.md-ls4{letter-spacing:.4rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls4{letter-spacing:.4rem}}@media screen and (min-width: 90rem){.lg-ls4{letter-spacing:.4rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls4{letter-spacing:.4rem}}@media screen and (min-width: 144rem){.xlg-ls4{letter-spacing:.4rem}}@media screen and (min-width: 144rem){.only-xlg-ls4{letter-spacing:.4rem}}.ls5{letter-spacing:.5rem}@media screen and (min-width: 30rem){.sm-ls5{letter-spacing:.5rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls5{letter-spacing:.5rem}}@media screen and (min-width: 60rem){.md-ls5{letter-spacing:.5rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls5{letter-spacing:.5rem}}@media screen and (min-width: 90rem){.lg-ls5{letter-spacing:.5rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls5{letter-spacing:.5rem}}@media screen and (min-width: 144rem){.xlg-ls5{letter-spacing:.5rem}}@media screen and (min-width: 144rem){.only-xlg-ls5{letter-spacing:.5rem}}.ls6{letter-spacing:.6rem}@media screen and (min-width: 30rem){.sm-ls6{letter-spacing:.6rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls6{letter-spacing:.6rem}}@media screen and (min-width: 60rem){.md-ls6{letter-spacing:.6rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls6{letter-spacing:.6rem}}@media screen and (min-width: 90rem){.lg-ls6{letter-spacing:.6rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls6{letter-spacing:.6rem}}@media screen and (min-width: 144rem){.xlg-ls6{letter-spacing:.6rem}}@media screen and (min-width: 144rem){.only-xlg-ls6{letter-spacing:.6rem}}.ls7{letter-spacing:.7rem}@media screen and (min-width: 30rem){.sm-ls7{letter-spacing:.7rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls7{letter-spacing:.7rem}}@media screen and (min-width: 60rem){.md-ls7{letter-spacing:.7rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls7{letter-spacing:.7rem}}@media screen and (min-width: 90rem){.lg-ls7{letter-spacing:.7rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls7{letter-spacing:.7rem}}@media screen and (min-width: 144rem){.xlg-ls7{letter-spacing:.7rem}}@media screen and (min-width: 144rem){.only-xlg-ls7{letter-spacing:.7rem}}.ls8{letter-spacing:.8rem}@media screen and (min-width: 30rem){.sm-ls8{letter-spacing:.8rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls8{letter-spacing:.8rem}}@media screen and (min-width: 60rem){.md-ls8{letter-spacing:.8rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls8{letter-spacing:.8rem}}@media screen and (min-width: 90rem){.lg-ls8{letter-spacing:.8rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls8{letter-spacing:.8rem}}@media screen and (min-width: 144rem){.xlg-ls8{letter-spacing:.8rem}}@media screen and (min-width: 144rem){.only-xlg-ls8{letter-spacing:.8rem}}.ls9{letter-spacing:.9rem}@media screen and (min-width: 30rem){.sm-ls9{letter-spacing:.9rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls9{letter-spacing:.9rem}}@media screen and (min-width: 60rem){.md-ls9{letter-spacing:.9rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls9{letter-spacing:.9rem}}@media screen and (min-width: 90rem){.lg-ls9{letter-spacing:.9rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls9{letter-spacing:.9rem}}@media screen and (min-width: 144rem){.xlg-ls9{letter-spacing:.9rem}}@media screen and (min-width: 144rem){.only-xlg-ls9{letter-spacing:.9rem}}.ls10{letter-spacing:1rem}@media screen and (min-width: 30rem){.sm-ls10{letter-spacing:1rem}}@media screen and (max-width: 59.99999rem){.only-sm-ls10{letter-spacing:1rem}}@media screen and (min-width: 60rem){.md-ls10{letter-spacing:1rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ls10{letter-spacing:1rem}}@media screen and (min-width: 90rem){.lg-ls10{letter-spacing:1rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ls10{letter-spacing:1rem}}@media screen and (min-width: 144rem){.xlg-ls10{letter-spacing:1rem}}@media screen and (min-width: 144rem){.only-xlg-ls10{letter-spacing:1rem}}.ft1{font-size:10px;font-size:1rem}@media screen and (min-width: 30rem){.sm-ft1{font-size:10px;font-size:1rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width: 60rem){.md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width: 90rem){.lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width: 144rem){.xlg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width: 144rem){.only-xlg-ft1{font-size:10px;font-size:1rem}}.ft2{font-size:11px;font-size:1.1rem}@media screen and (min-width: 30rem){.sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width: 60rem){.md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width: 90rem){.lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width: 144rem){.xlg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width: 144rem){.only-xlg-ft2{font-size:11px;font-size:1.1rem}}.ft3{font-size:12px;font-size:1.2rem}@media screen and (min-width: 30rem){.sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width: 60rem){.md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width: 90rem){.lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width: 144rem){.xlg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width: 144rem){.only-xlg-ft3{font-size:12px;font-size:1.2rem}}.ft4{font-size:15px;font-size:1.5rem}@media screen and (min-width: 30rem){.sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width: 60rem){.md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width: 90rem){.lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width: 144rem){.xlg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width: 144rem){.only-xlg-ft4{font-size:15px;font-size:1.5rem}}.ft5{font-size:16.5px;font-size:1.65rem}@media screen and (min-width: 30rem){.sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width: 60rem){.md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width: 90rem){.lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width: 144rem){.xlg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width: 144rem){.only-xlg-ft5{font-size:16.5px;font-size:1.65rem}}.ft6{font-size:18px;font-size:1.8rem}@media screen and (min-width: 30rem){.sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width: 60rem){.md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width: 90rem){.lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width: 144rem){.xlg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width: 144rem){.only-xlg-ft6{font-size:18px;font-size:1.8rem}}.ft7{font-size:22.5px;font-size:2.25rem}@media screen and (min-width: 30rem){.sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width: 60rem){.md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width: 90rem){.lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width: 144rem){.xlg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width: 144rem){.only-xlg-ft7{font-size:22.5px;font-size:2.25rem}}.ft8{font-size:24.75px;font-size:2.475rem}@media screen and (min-width: 30rem){.sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width: 60rem){.md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width: 90rem){.lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width: 144rem){.xlg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width: 144rem){.only-xlg-ft8{font-size:24.75px;font-size:2.475rem}}.ft9{font-size:27px;font-size:2.7rem}@media screen and (min-width: 30rem){.sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width: 60rem){.md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width: 90rem){.lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width: 144rem){.xlg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width: 144rem){.only-xlg-ft9{font-size:27px;font-size:2.7rem}}.ft10{font-size:33.75px;font-size:3.375rem}@media screen and (min-width: 30rem){.sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width: 60rem){.md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width: 90rem){.lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width: 144rem){.xlg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width: 144rem){.only-xlg-ft10{font-size:33.75px;font-size:3.375rem}}.ft11{font-size:37.13px;font-size:3.713rem}@media screen and (min-width: 30rem){.sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width: 60rem){.md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width: 90rem){.lg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width: 144rem){.xlg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width: 144rem){.only-xlg-ft11{font-size:37.13px;font-size:3.713rem}}.ft12{font-size:40.5px;font-size:4.05rem}@media screen and (min-width: 30rem){.sm-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width: 60rem){.md-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width: 90rem){.lg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width: 144rem){.xlg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width: 144rem){.only-xlg-ft12{font-size:40.5px;font-size:4.05rem}}.ft13{font-size:50.63px;font-size:5.063rem}@media screen and (min-width: 30rem){.sm-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width: 60rem){.md-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width: 90rem){.lg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width: 144rem){.xlg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width: 144rem){.only-xlg-ft13{font-size:50.63px;font-size:5.063rem}}.ft14{font-size:55.69px;font-size:5.569rem}@media screen and (min-width: 30rem){.sm-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width: 60rem){.md-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width: 90rem){.lg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width: 144rem){.xlg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width: 144rem){.only-xlg-ft14{font-size:55.69px;font-size:5.569rem}}.ft15{font-size:60.75px;font-size:6.075rem}@media screen and (min-width: 30rem){.sm-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width: 60rem){.md-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width: 90rem){.lg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width: 144rem){.xlg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width: 144rem){.only-xlg-ft15{font-size:60.75px;font-size:6.075rem}}.ft16{font-size:75.94px;font-size:7.594rem}@media screen and (min-width: 30rem){.sm-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width: 60rem){.md-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width: 90rem){.lg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width: 144rem){.xlg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width: 144rem){.only-xlg-ft16{font-size:75.94px;font-size:7.594rem}}.ft17{font-size:83.53px;font-size:8.353rem}@media screen and (min-width: 30rem){.sm-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (max-width: 59.99999rem){.only-sm-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width: 60rem){.md-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width: 90rem){.lg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width: 144rem){.xlg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width: 144rem){.only-xlg-ft17{font-size:83.53px;font-size:8.353rem}}.fw1,.fwthin{font-weight:100 !important}.fw2,.fwxlight{font-weight:200 !important}.fw3,.fwlight{font-weight:300 !important}.fw4,.fwnormal{font-weight:400 !important}.fw5,.fwmedium{font-weight:500 !important}.fw6,.fwsemibold{font-weight:600 !important}.fw7,.fwbold{font-weight:700 !important}.fw8,.fwxbold{font-weight:800 !important}.fw9,.fwblack{font-weight:900 !important}.center{margin-left:auto;margin-right:auto}.sans-serif{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.serif{font-family:Merriweather,Georgia,serif}.code{font-family:Menlo,Consolas,Monaco,"Andale Mono",monospace}.clearfix:after{content:"";display:table;clear:both}.hidetext{text-indent:100%;white-space:nowrap;overflow:hidden}.dim:hover,.dim:focus,.default-hover:hover,.default-hover:focus{opacity:0.5}.dim:active,.default-active:active{opacity:0.8}.site-width{max-width:114rem}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.ell{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.xbrdr{border:none}.imax{max-width:100%;width:auto;height:auto}.i100{width:100%}.bgcover{background-size:cover}.bgcenter{background-position:center}.vam{vertical-align:middle}.xts{text-shadow:none !important}.wrap{margin-left:auto;margin-right:auto;padding-left:30px;padding-right:30px}.wrap--xpad{padding-left:0;padding-right:0}.frame{margin-left:-30px;margin-right:-30px}@media screen and (min-width: 60rem){.frame{display:-webkit-box;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row;flex-wrap:wrap}}@media screen and (max-width: 59.99999rem){.frame--stay{display:-webkit-box;display:flex}}.frame--xpad [class^='blk']{padding-left:0;padding-right:0}.blk,.blk1,.blk2,.blk3,.blk4,.blk5,.blk6,.blk7,.blk8,.blk9,.blk10,.blk11,.blk12,.sm-blk1,.sm-blk2,.sm-blk3,.sm-blk4,.sm-blk5,.sm-blk6,.sm-blk7,.sm-blk8,.sm-blk9,.sm-blk10,.sm-blk11,.sm-blk12,.only-sm-blk1,.only-sm-blk2,.only-sm-blk3,.only-sm-blk4,.only-sm-blk5,.only-sm-blk6,.only-sm-blk7,.only-sm-blk8,.only-sm-blk9,.only-sm-blk10,.only-sm-blk11,.only-sm-blk12,.md-blk1,.md-blk2,.md-blk3,.md-blk4,.md-blk5,.md-blk6,.md-blk7,.md-blk8,.md-blk9,.md-blk10,.md-blk11,.md-blk12,.only-md-blk1,.only-md-blk2,.only-md-blk3,.only-md-blk4,.only-md-blk5,.only-md-blk6,.only-md-blk7,.only-md-blk8,.only-md-blk9,.only-md-blk10,.only-md-blk11,.only-md-blk12,.lg-blk1,.lg-blk2,.lg-blk3,.lg-blk4,.lg-blk5,.lg-blk6,.lg-blk7,.lg-blk8,.lg-blk9,.lg-blk10,.lg-blk11,.lg-blk12,.only-lg-blk1,.only-lg-blk2,.only-lg-blk3,.only-lg-blk4,.only-lg-blk5,.only-lg-blk6,.only-lg-blk7,.only-lg-blk8,.only-lg-blk9,.only-lg-blk10,.only-lg-blk11,.only-lg-blk12,.xlg-blk1,.xlg-blk2,.xlg-blk3,.xlg-blk4,.xlg-blk5,.xlg-blk6,.xlg-blk7,.xlg-blk8,.xlg-blk9,.xlg-blk10,.xlg-blk11,.xlg-blk12,.only-xlg-blk1,.only-xlg-blk2,.only-xlg-blk3,.only-xlg-blk4,.only-xlg-blk5,.only-xlg-blk6,.only-xlg-blk7,.only-xlg-blk8,.only-xlg-blk9,.only-xlg-blk10,.only-xlg-blk11,.only-xlg-blk12{position:relative}.blk,.blk1,.blk2,.blk3,.blk4,.blk5,.blk6,.blk7,.blk8,.blk9,.blk10,.blk11,.blk12,.sm-blk1,.sm-blk2,.sm-blk3,.sm-blk4,.sm-blk5,.sm-blk6,.sm-blk7,.sm-blk8,.sm-blk9,.sm-blk10,.sm-blk11,.sm-blk12,.only-sm-blk1,.only-sm-blk2,.only-sm-blk3,.only-sm-blk4,.only-sm-blk5,.only-sm-blk6,.only-sm-blk7,.only-sm-blk8,.only-sm-blk9,.only-sm-blk10,.only-sm-blk11,.only-sm-blk12,.md-blk1,.md-blk2,.md-blk3,.md-blk4,.md-blk5,.md-blk6,.md-blk7,.md-blk8,.md-blk9,.md-blk10,.md-blk11,.md-blk12,.only-md-blk1,.only-md-blk2,.only-md-blk3,.only-md-blk4,.only-md-blk5,.only-md-blk6,.only-md-blk7,.only-md-blk8,.only-md-blk9,.only-md-blk10,.only-md-blk11,.only-md-blk12,.lg-blk1,.lg-blk2,.lg-blk3,.lg-blk4,.lg-blk5,.lg-blk6,.lg-blk7,.lg-blk8,.lg-blk9,.lg-blk10,.lg-blk11,.lg-blk12,.only-lg-blk1,.only-lg-blk2,.only-lg-blk3,.only-lg-blk4,.only-lg-blk5,.only-lg-blk6,.only-lg-blk7,.only-lg-blk8,.only-lg-blk9,.only-lg-blk10,.only-lg-blk11,.only-lg-blk12,.xlg-blk1,.xlg-blk2,.xlg-blk3,.xlg-blk4,.xlg-blk5,.xlg-blk6,.xlg-blk7,.xlg-blk8,.xlg-blk9,.xlg-blk10,.xlg-blk11,.xlg-blk12,.only-xlg-blk1,.only-xlg-blk2,.only-xlg-blk3,.only-xlg-blk4,.only-xlg-blk5,.only-xlg-blk6,.only-xlg-blk7,.only-xlg-blk8,.only-xlg-blk9,.only-xlg-blk10,.only-xlg-blk11,.only-xlg-blk12{padding-left:30px;padding-right:30px}.blk{-webkit-box-flex:1;flex-grow:1;flex-basis:0}.blk1{flex-basis:8.33333%}.blk2{flex-basis:16.66667%}.blk3{flex-basis:25%}.blk4{flex-basis:33.33333%}.blk5{flex-basis:41.66667%}.blk6{flex-basis:50%}.blk7{flex-basis:58.33333%}.blk8{flex-basis:66.66667%}.blk9{flex-basis:75%}.blk10{flex-basis:83.33333%}.blk11{flex-basis:91.66667%}.blk12{flex-basis:100%}@media screen and (min-width: 30rem){.sm-blk1{flex-basis:8.33333%}}@media screen and (min-width: 30rem){.sm-blk2{flex-basis:16.66667%}}@media screen and (min-width: 30rem){.sm-blk3{flex-basis:25%}}@media screen and (min-width: 30rem){.sm-blk4{flex-basis:33.33333%}}@media screen and (min-width: 30rem){.sm-blk5{flex-basis:41.66667%}}@media screen and (min-width: 30rem){.sm-blk6{flex-basis:50%}}@media screen and (min-width: 30rem){.sm-blk7{flex-basis:58.33333%}}@media screen and (min-width: 30rem){.sm-blk8{flex-basis:66.66667%}}@media screen and (min-width: 30rem){.sm-blk9{flex-basis:75%}}@media screen and (min-width: 30rem){.sm-blk10{flex-basis:83.33333%}}@media screen and (min-width: 30rem){.sm-blk11{flex-basis:91.66667%}}@media screen and (min-width: 30rem){.sm-blk12{flex-basis:100%}}@media screen and (max-width: 59.99999rem){.only-sm-blk1{flex-basis:8.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk2{flex-basis:16.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk3{flex-basis:25%}}@media screen and (max-width: 59.99999rem){.only-sm-blk4{flex-basis:33.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk5{flex-basis:41.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk6{flex-basis:50%}}@media screen and (max-width: 59.99999rem){.only-sm-blk7{flex-basis:58.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk8{flex-basis:66.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk9{flex-basis:75%}}@media screen and (max-width: 59.99999rem){.only-sm-blk10{flex-basis:83.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk11{flex-basis:91.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk12{flex-basis:100%}}@media screen and (min-width: 60rem){.md-blk1{flex-basis:8.33333%}}@media screen and (min-width: 60rem){.md-blk2{flex-basis:16.66667%}}@media screen and (min-width: 60rem){.md-blk3{flex-basis:25%}}@media screen and (min-width: 60rem){.md-blk4{flex-basis:33.33333%}}@media screen and (min-width: 60rem){.md-blk5{flex-basis:41.66667%}}@media screen and (min-width: 60rem){.md-blk6{flex-basis:50%}}@media screen and (min-width: 60rem){.md-blk7{flex-basis:58.33333%}}@media screen and (min-width: 60rem){.md-blk8{flex-basis:66.66667%}}@media screen and (min-width: 60rem){.md-blk9{flex-basis:75%}}@media screen and (min-width: 60rem){.md-blk10{flex-basis:83.33333%}}@media screen and (min-width: 60rem){.md-blk11{flex-basis:91.66667%}}@media screen and (min-width: 60rem){.md-blk12{flex-basis:100%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk1{flex-basis:8.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk2{flex-basis:16.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk3{flex-basis:25%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk4{flex-basis:33.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk5{flex-basis:41.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk6{flex-basis:50%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk7{flex-basis:58.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk8{flex-basis:66.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk9{flex-basis:75%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk10{flex-basis:83.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk11{flex-basis:91.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk12{flex-basis:100%}}@media screen and (min-width: 90rem){.lg-blk1{flex-basis:8.33333%}}@media screen and (min-width: 90rem){.lg-blk2{flex-basis:16.66667%}}@media screen and (min-width: 90rem){.lg-blk3{flex-basis:25%}}@media screen and (min-width: 90rem){.lg-blk4{flex-basis:33.33333%}}@media screen and (min-width: 90rem){.lg-blk5{flex-basis:41.66667%}}@media screen and (min-width: 90rem){.lg-blk6{flex-basis:50%}}@media screen and (min-width: 90rem){.lg-blk7{flex-basis:58.33333%}}@media screen and (min-width: 90rem){.lg-blk8{flex-basis:66.66667%}}@media screen and (min-width: 90rem){.lg-blk9{flex-basis:75%}}@media screen and (min-width: 90rem){.lg-blk10{flex-basis:83.33333%}}@media screen and (min-width: 90rem){.lg-blk11{flex-basis:91.66667%}}@media screen and (min-width: 90rem){.lg-blk12{flex-basis:100%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk1{flex-basis:8.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk2{flex-basis:16.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk3{flex-basis:25%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk4{flex-basis:33.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk5{flex-basis:41.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk6{flex-basis:50%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk7{flex-basis:58.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk8{flex-basis:66.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk9{flex-basis:75%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk10{flex-basis:83.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk11{flex-basis:91.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk12{flex-basis:100%}}@media screen and (min-width: 144rem){.xlg-blk1{flex-basis:8.33333%}}@media screen and (min-width: 144rem){.xlg-blk2{flex-basis:16.66667%}}@media screen and (min-width: 144rem){.xlg-blk3{flex-basis:25%}}@media screen and (min-width: 144rem){.xlg-blk4{flex-basis:33.33333%}}@media screen and (min-width: 144rem){.xlg-blk5{flex-basis:41.66667%}}@media screen and (min-width: 144rem){.xlg-blk6{flex-basis:50%}}@media screen and (min-width: 144rem){.xlg-blk7{flex-basis:58.33333%}}@media screen and (min-width: 144rem){.xlg-blk8{flex-basis:66.66667%}}@media screen and (min-width: 144rem){.xlg-blk9{flex-basis:75%}}@media screen and (min-width: 144rem){.xlg-blk10{flex-basis:83.33333%}}@media screen and (min-width: 144rem){.xlg-blk11{flex-basis:91.66667%}}@media screen and (min-width: 144rem){.xlg-blk12{flex-basis:100%}}@media screen and (min-width: 144rem){.only-xlg-blk1{flex-basis:8.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk2{flex-basis:16.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk3{flex-basis:25%}}@media screen and (min-width: 144rem){.only-xlg-blk4{flex-basis:33.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk5{flex-basis:41.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk6{flex-basis:50%}}@media screen and (min-width: 144rem){.only-xlg-blk7{flex-basis:58.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk8{flex-basis:66.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk9{flex-basis:75%}}@media screen and (min-width: 144rem){.only-xlg-blk10{flex-basis:83.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk11{flex-basis:91.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk12{flex-basis:100%}}.blk--offset1{margin-left:8.33333%}.blk--offset2{margin-left:16.66667%}.blk--offset3{margin-left:25%}.blk--offset4{margin-left:33.33333%}.blk--offset5{margin-left:41.66667%}.blk--offset6{margin-left:50%}.blk--offset7{margin-left:58.33333%}.blk--offset8{margin-left:66.66667%}.blk--offset9{margin-left:75%}.blk--offset10{margin-left:83.33333%}.blk--offset11{margin-left:91.66667%}.blk--offset12{margin-left:100%}@media screen and (min-width: 30rem){.sm-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 30rem){.sm-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 30rem){.sm-blk--offset3{margin-left:25%}}@media screen and (min-width: 30rem){.sm-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 30rem){.sm-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 30rem){.sm-blk--offset6{margin-left:50%}}@media screen and (min-width: 30rem){.sm-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 30rem){.sm-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 30rem){.sm-blk--offset9{margin-left:75%}}@media screen and (min-width: 30rem){.sm-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 30rem){.sm-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 30rem){.sm-blk--offset12{margin-left:100%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset1{margin-left:8.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset2{margin-left:16.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset3{margin-left:25%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset4{margin-left:33.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset5{margin-left:41.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset6{margin-left:50%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset7{margin-left:58.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset8{margin-left:66.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset9{margin-left:75%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset10{margin-left:83.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset11{margin-left:91.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--offset12{margin-left:100%}}@media screen and (min-width: 60rem){.md-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 60rem){.md-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 60rem){.md-blk--offset3{margin-left:25%}}@media screen and (min-width: 60rem){.md-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 60rem){.md-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 60rem){.md-blk--offset6{margin-left:50%}}@media screen and (min-width: 60rem){.md-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 60rem){.md-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 60rem){.md-blk--offset9{margin-left:75%}}@media screen and (min-width: 60rem){.md-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 60rem){.md-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 60rem){.md-blk--offset12{margin-left:100%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset3{margin-left:25%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset6{margin-left:50%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset9{margin-left:75%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--offset12{margin-left:100%}}@media screen and (min-width: 90rem){.lg-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 90rem){.lg-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 90rem){.lg-blk--offset3{margin-left:25%}}@media screen and (min-width: 90rem){.lg-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 90rem){.lg-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 90rem){.lg-blk--offset6{margin-left:50%}}@media screen and (min-width: 90rem){.lg-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 90rem){.lg-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 90rem){.lg-blk--offset9{margin-left:75%}}@media screen and (min-width: 90rem){.lg-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 90rem){.lg-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 90rem){.lg-blk--offset12{margin-left:100%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset3{margin-left:25%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset6{margin-left:50%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset9{margin-left:75%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--offset12{margin-left:100%}}@media screen and (min-width: 144rem){.xlg-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 144rem){.xlg-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 144rem){.xlg-blk--offset3{margin-left:25%}}@media screen and (min-width: 144rem){.xlg-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 144rem){.xlg-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 144rem){.xlg-blk--offset6{margin-left:50%}}@media screen and (min-width: 144rem){.xlg-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 144rem){.xlg-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 144rem){.xlg-blk--offset9{margin-left:75%}}@media screen and (min-width: 144rem){.xlg-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 144rem){.xlg-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 144rem){.xlg-blk--offset12{margin-left:100%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset1{margin-left:8.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset2{margin-left:16.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset3{margin-left:25%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset4{margin-left:33.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset5{margin-left:41.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset6{margin-left:50%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset7{margin-left:58.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset8{margin-left:66.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset9{margin-left:75%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset10{margin-left:83.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset11{margin-left:91.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--offset12{margin-left:100%}}.blk--push1{left:8.33333%}.blk--push2{left:16.66667%}.blk--push3{left:25%}.blk--push4{left:33.33333%}.blk--push5{left:41.66667%}.blk--push6{left:50%}.blk--push7{left:58.33333%}.blk--push8{left:66.66667%}.blk--push9{left:75%}.blk--push10{left:83.33333%}.blk--push11{left:91.66667%}.blk--push12{left:100%}@media screen and (min-width: 30rem){.sm-blk--push1{left:8.33333%}}@media screen and (min-width: 30rem){.sm-blk--push2{left:16.66667%}}@media screen and (min-width: 30rem){.sm-blk--push3{left:25%}}@media screen and (min-width: 30rem){.sm-blk--push4{left:33.33333%}}@media screen and (min-width: 30rem){.sm-blk--push5{left:41.66667%}}@media screen and (min-width: 30rem){.sm-blk--push6{left:50%}}@media screen and (min-width: 30rem){.sm-blk--push7{left:58.33333%}}@media screen and (min-width: 30rem){.sm-blk--push8{left:66.66667%}}@media screen and (min-width: 30rem){.sm-blk--push9{left:75%}}@media screen and (min-width: 30rem){.sm-blk--push10{left:83.33333%}}@media screen and (min-width: 30rem){.sm-blk--push11{left:91.66667%}}@media screen and (min-width: 30rem){.sm-blk--push12{left:100%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push1{left:8.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push2{left:16.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push3{left:25%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push4{left:33.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push5{left:41.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push6{left:50%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push7{left:58.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push8{left:66.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push9{left:75%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push10{left:83.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push11{left:91.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--push12{left:100%}}@media screen and (min-width: 60rem){.md-blk--push1{left:8.33333%}}@media screen and (min-width: 60rem){.md-blk--push2{left:16.66667%}}@media screen and (min-width: 60rem){.md-blk--push3{left:25%}}@media screen and (min-width: 60rem){.md-blk--push4{left:33.33333%}}@media screen and (min-width: 60rem){.md-blk--push5{left:41.66667%}}@media screen and (min-width: 60rem){.md-blk--push6{left:50%}}@media screen and (min-width: 60rem){.md-blk--push7{left:58.33333%}}@media screen and (min-width: 60rem){.md-blk--push8{left:66.66667%}}@media screen and (min-width: 60rem){.md-blk--push9{left:75%}}@media screen and (min-width: 60rem){.md-blk--push10{left:83.33333%}}@media screen and (min-width: 60rem){.md-blk--push11{left:91.66667%}}@media screen and (min-width: 60rem){.md-blk--push12{left:100%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push1{left:8.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push2{left:16.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push3{left:25%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push4{left:33.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push5{left:41.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push6{left:50%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push7{left:58.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push8{left:66.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push9{left:75%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push10{left:83.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push11{left:91.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--push12{left:100%}}@media screen and (min-width: 90rem){.lg-blk--push1{left:8.33333%}}@media screen and (min-width: 90rem){.lg-blk--push2{left:16.66667%}}@media screen and (min-width: 90rem){.lg-blk--push3{left:25%}}@media screen and (min-width: 90rem){.lg-blk--push4{left:33.33333%}}@media screen and (min-width: 90rem){.lg-blk--push5{left:41.66667%}}@media screen and (min-width: 90rem){.lg-blk--push6{left:50%}}@media screen and (min-width: 90rem){.lg-blk--push7{left:58.33333%}}@media screen and (min-width: 90rem){.lg-blk--push8{left:66.66667%}}@media screen and (min-width: 90rem){.lg-blk--push9{left:75%}}@media screen and (min-width: 90rem){.lg-blk--push10{left:83.33333%}}@media screen and (min-width: 90rem){.lg-blk--push11{left:91.66667%}}@media screen and (min-width: 90rem){.lg-blk--push12{left:100%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push1{left:8.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push2{left:16.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push3{left:25%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push4{left:33.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push5{left:41.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push6{left:50%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push7{left:58.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push8{left:66.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push9{left:75%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push10{left:83.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push11{left:91.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--push12{left:100%}}@media screen and (min-width: 144rem){.xlg-blk--push1{left:8.33333%}}@media screen and (min-width: 144rem){.xlg-blk--push2{left:16.66667%}}@media screen and (min-width: 144rem){.xlg-blk--push3{left:25%}}@media screen and (min-width: 144rem){.xlg-blk--push4{left:33.33333%}}@media screen and (min-width: 144rem){.xlg-blk--push5{left:41.66667%}}@media screen and (min-width: 144rem){.xlg-blk--push6{left:50%}}@media screen and (min-width: 144rem){.xlg-blk--push7{left:58.33333%}}@media screen and (min-width: 144rem){.xlg-blk--push8{left:66.66667%}}@media screen and (min-width: 144rem){.xlg-blk--push9{left:75%}}@media screen and (min-width: 144rem){.xlg-blk--push10{left:83.33333%}}@media screen and (min-width: 144rem){.xlg-blk--push11{left:91.66667%}}@media screen and (min-width: 144rem){.xlg-blk--push12{left:100%}}@media screen and (min-width: 144rem){.only-xlg-blk--push1{left:8.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--push2{left:16.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--push3{left:25%}}@media screen and (min-width: 144rem){.only-xlg-blk--push4{left:33.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--push5{left:41.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--push6{left:50%}}@media screen and (min-width: 144rem){.only-xlg-blk--push7{left:58.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--push8{left:66.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--push9{left:75%}}@media screen and (min-width: 144rem){.only-xlg-blk--push10{left:83.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--push11{left:91.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--push12{left:100%}}.blk--pull1{right:8.33333%}.blk--pull2{right:16.66667%}.blk--pull3{right:25%}.blk--pull4{right:33.33333%}.blk--pull5{right:41.66667%}.blk--pull6{right:50%}.blk--pull7{right:58.33333%}.blk--pull8{right:66.66667%}.blk--pull9{right:75%}.blk--pull10{right:83.33333%}.blk--pull11{right:91.66667%}.blk--pull12{right:100%}@media screen and (min-width: 30rem){.sm-blk--pull1{right:8.33333%}}@media screen and (min-width: 30rem){.sm-blk--pull2{right:16.66667%}}@media screen and (min-width: 30rem){.sm-blk--pull3{right:25%}}@media screen and (min-width: 30rem){.sm-blk--pull4{right:33.33333%}}@media screen and (min-width: 30rem){.sm-blk--pull5{right:41.66667%}}@media screen and (min-width: 30rem){.sm-blk--pull6{right:50%}}@media screen and (min-width: 30rem){.sm-blk--pull7{right:58.33333%}}@media screen and (min-width: 30rem){.sm-blk--pull8{right:66.66667%}}@media screen and (min-width: 30rem){.sm-blk--pull9{right:75%}}@media screen and (min-width: 30rem){.sm-blk--pull10{right:83.33333%}}@media screen and (min-width: 30rem){.sm-blk--pull11{right:91.66667%}}@media screen and (min-width: 30rem){.sm-blk--pull12{right:100%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull1{right:8.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull2{right:16.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull3{right:25%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull4{right:33.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull5{right:41.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull6{right:50%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull7{right:58.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull8{right:66.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull9{right:75%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull10{right:83.33333%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull11{right:91.66667%}}@media screen and (max-width: 59.99999rem){.only-sm-blk--pull12{right:100%}}@media screen and (min-width: 60rem){.md-blk--pull1{right:8.33333%}}@media screen and (min-width: 60rem){.md-blk--pull2{right:16.66667%}}@media screen and (min-width: 60rem){.md-blk--pull3{right:25%}}@media screen and (min-width: 60rem){.md-blk--pull4{right:33.33333%}}@media screen and (min-width: 60rem){.md-blk--pull5{right:41.66667%}}@media screen and (min-width: 60rem){.md-blk--pull6{right:50%}}@media screen and (min-width: 60rem){.md-blk--pull7{right:58.33333%}}@media screen and (min-width: 60rem){.md-blk--pull8{right:66.66667%}}@media screen and (min-width: 60rem){.md-blk--pull9{right:75%}}@media screen and (min-width: 60rem){.md-blk--pull10{right:83.33333%}}@media screen and (min-width: 60rem){.md-blk--pull11{right:91.66667%}}@media screen and (min-width: 60rem){.md-blk--pull12{right:100%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull1{right:8.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull2{right:16.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull3{right:25%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull4{right:33.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull5{right:41.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull6{right:50%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull7{right:58.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull8{right:66.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull9{right:75%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull10{right:83.33333%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull11{right:91.66667%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--pull12{right:100%}}@media screen and (min-width: 90rem){.lg-blk--pull1{right:8.33333%}}@media screen and (min-width: 90rem){.lg-blk--pull2{right:16.66667%}}@media screen and (min-width: 90rem){.lg-blk--pull3{right:25%}}@media screen and (min-width: 90rem){.lg-blk--pull4{right:33.33333%}}@media screen and (min-width: 90rem){.lg-blk--pull5{right:41.66667%}}@media screen and (min-width: 90rem){.lg-blk--pull6{right:50%}}@media screen and (min-width: 90rem){.lg-blk--pull7{right:58.33333%}}@media screen and (min-width: 90rem){.lg-blk--pull8{right:66.66667%}}@media screen and (min-width: 90rem){.lg-blk--pull9{right:75%}}@media screen and (min-width: 90rem){.lg-blk--pull10{right:83.33333%}}@media screen and (min-width: 90rem){.lg-blk--pull11{right:91.66667%}}@media screen and (min-width: 90rem){.lg-blk--pull12{right:100%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull1{right:8.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull2{right:16.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull3{right:25%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull4{right:33.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull5{right:41.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull6{right:50%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull7{right:58.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull8{right:66.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull9{right:75%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull10{right:83.33333%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull11{right:91.66667%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--pull12{right:100%}}@media screen and (min-width: 144rem){.xlg-blk--pull1{right:8.33333%}}@media screen and (min-width: 144rem){.xlg-blk--pull2{right:16.66667%}}@media screen and (min-width: 144rem){.xlg-blk--pull3{right:25%}}@media screen and (min-width: 144rem){.xlg-blk--pull4{right:33.33333%}}@media screen and (min-width: 144rem){.xlg-blk--pull5{right:41.66667%}}@media screen and (min-width: 144rem){.xlg-blk--pull6{right:50%}}@media screen and (min-width: 144rem){.xlg-blk--pull7{right:58.33333%}}@media screen and (min-width: 144rem){.xlg-blk--pull8{right:66.66667%}}@media screen and (min-width: 144rem){.xlg-blk--pull9{right:75%}}@media screen and (min-width: 144rem){.xlg-blk--pull10{right:83.33333%}}@media screen and (min-width: 144rem){.xlg-blk--pull11{right:91.66667%}}@media screen and (min-width: 144rem){.xlg-blk--pull12{right:100%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull1{right:8.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull2{right:16.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull3{right:25%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull4{right:33.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull5{right:41.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull6{right:50%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull7{right:58.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull8{right:66.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull9{right:75%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull10{right:83.33333%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull11{right:91.66667%}}@media screen and (min-width: 144rem){.only-xlg-blk--pull12{right:100%}}.blk--first{-webkit-box-ordinal-group:1;order:0}.blk--last{-webkit-box-ordinal-group:2;order:1}@media screen and (min-width: 30rem){.sm-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 30rem){.sm-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (max-width: 59.99999rem){.only-sm-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (max-width: 59.99999rem){.only-sm-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (min-width: 60rem){.md-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 60rem){.md-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (min-width: 90rem){.lg-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 90rem){.lg-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (min-width: 144rem){.xlg-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 144rem){.xlg-blk--last{-webkit-box-ordinal-group:2;order:1}}@media screen and (min-width: 144rem){.only-xlg-blk--first{-webkit-box-ordinal-group:1;order:0}}@media screen and (min-width: 144rem){.only-xlg-blk--last{-webkit-box-ordinal-group:2;order:1}}.fl{float:left !important}.fr{float:right !important}.fn{float:none !important}.finit{float:initial !important}.finhe{float:inherit !important}.sm-fl{float:left !important}.sm-fr{float:right !important}.sm-fn{float:none !important}.sm-finit{float:initial !important}.sm-finhe{float:inherit !important}.only-sm-fl{float:left !important}.only-sm-fr{float:right !important}.only-sm-fn{float:none !important}.only-sm-finit{float:initial !important}.only-sm-finhe{float:inherit !important}.md-fl{float:left !important}.md-fr{float:right !important}.md-fn{float:none !important}.md-finit{float:initial !important}.md-finhe{float:inherit !important}.only-md-fl{float:left !important}.only-md-fr{float:right !important}.only-md-fn{float:none !important}.only-md-finit{float:initial !important}.only-md-finhe{float:inherit !important}.lg-fl{float:left !important}.lg-fr{float:right !important}.lg-fn{float:none !important}.lg-finit{float:initial !important}.lg-finhe{float:inherit !important}.only-lg-fl{float:left !important}.only-lg-fr{float:right !important}.only-lg-fn{float:none !important}.only-lg-finit{float:initial !important}.only-lg-finhe{float:inherit !important}.xlg-fl{float:left !important}.xlg-fr{float:right !important}.xlg-fn{float:none !important}.xlg-finit{float:initial !important}.xlg-finhe{float:inherit !important}.only-xlg-fl{float:left !important}.only-xlg-fr{float:right !important}.only-xlg-fn{float:none !important}.only-xlg-finit{float:initial !important}.only-xlg-finhe{float:inherit !important}.db{display:block}.di{display:inline}.dib{display:inline-block}.dn{display:none}.df{display:-webkit-box;display:flex}.full{display:block;width:100%}.w100{width:100%}@media screen and (min-width: 30rem){.sm-db{display:block !important}}@media screen and (min-width: 30rem){.sm-di{display:inline !important}}@media screen and (min-width: 30rem){.sm-dib{display:inline-block !important}}@media screen and (min-width: 30rem){.sm-dn{display:none !important}}@media screen and (min-width: 30rem){.sm-df{display:-webkit-box !important;display:flex !important}}@media screen and (max-width: 59.99999rem){.only-sm-db{display:block !important}}@media screen and (max-width: 59.99999rem){.only-sm-di{display:inline !important}}@media screen and (max-width: 59.99999rem){.only-sm-dib{display:inline-block !important}}@media screen and (max-width: 59.99999rem){.only-sm-dn{display:none !important}}@media screen and (max-width: 59.99999rem){.only-sm-df{display:-webkit-box !important;display:flex !important}}@media screen and (min-width: 60rem){.md-db{display:block !important}}@media screen and (min-width: 60rem){.md-di{display:inline !important}}@media screen and (min-width: 60rem){.md-dib{display:inline-block !important}}@media screen and (min-width: 60rem){.md-dn{display:none !important}}@media screen and (min-width: 60rem){.md-df{display:-webkit-box !important;display:flex !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-db{display:block !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-di{display:inline !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-dib{display:inline-block !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-dn{display:none !important}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-df{display:-webkit-box !important;display:flex !important}}@media screen and (min-width: 90rem){.lg-db{display:block !important}}@media screen and (min-width: 90rem){.lg-di{display:inline !important}}@media screen and (min-width: 90rem){.lg-dib{display:inline-block !important}}@media screen and (min-width: 90rem){.lg-dn{display:none !important}}@media screen and (min-width: 90rem){.lg-df{display:-webkit-box !important;display:flex !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-db{display:block !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-di{display:inline !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-dib{display:inline-block !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-dn{display:none !important}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-df{display:-webkit-box !important;display:flex !important}}@media screen and (min-width: 144rem){.xlg-db{display:block !important}}@media screen and (min-width: 144rem){.xlg-di{display:inline !important}}@media screen and (min-width: 144rem){.xlg-dib{display:inline-block !important}}@media screen and (min-width: 144rem){.xlg-dn{display:none !important}}@media screen and (min-width: 144rem){.xlg-df{display:-webkit-box !important;display:flex !important}}@media screen and (min-width: 144rem){.only-xlg-db{display:block !important}}@media screen and (min-width: 144rem){.only-xlg-di{display:inline !important}}@media screen and (min-width: 144rem){.only-xlg-dib{display:inline-block !important}}@media screen and (min-width: 144rem){.only-xlg-dn{display:none !important}}@media screen and (min-width: 144rem){.only-xlg-df{display:-webkit-box !important;display:flex !important}}.flex{display:-webkit-box;display:flex}.iflex{display:-webkit-inline-box;display:inline-flex}.flex-grow{-webkit-box-flex:1;flex-grow:1}.fb100{flex-basis:100%}.fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}.fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}.fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}.fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}.fwn{flex-wrap:nowrap}.fww{flex-wrap:wrap}.fwr{flex-wrap:wrap-reverse}.jcc{-webkit-box-pack:center;justify-content:center}.jcsb{-webkit-box-pack:justify;justify-content:space-between}.jcsa{justify-content:space-around}.jcfs{-webkit-box-pack:start;justify-content:flex-start}.jcfe{-webkit-box-pack:end;justify-content:flex-end}.aic{-webkit-box-align:center;align-items:center}.aifs{-webkit-box-align:start;align-items:flex-start}.aife{-webkit-box-align:end;align-items:flex-end}.ais{-webkit-box-align:stretch;align-items:stretch}.aib{-webkit-box-align:baseline;align-items:baseline}.acc{align-content:center}.acfs{align-content:flex-start}.acfe{align-content:flex-end}.acs{align-content:stretch}.acb{align-content:baseline}@media screen and (min-width: 30rem){.sm-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 30rem){.sm-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 30rem){.sm-fb100{flex-basis:100%}}@media screen and (min-width: 30rem){.sm-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 30rem){.sm-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 30rem){.sm-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 30rem){.sm-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 30rem){.sm-fwn{flex-wrap:nowrap}}@media screen and (min-width: 30rem){.sm-fww{flex-wrap:wrap}}@media screen and (min-width: 30rem){.sm-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 30rem){.sm-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 30rem){.sm-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 30rem){.sm-jcsa{justify-content:space-around}}@media screen and (min-width: 30rem){.sm-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 30rem){.sm-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 30rem){.sm-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 30rem){.sm-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 30rem){.sm-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 30rem){.sm-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 30rem){.sm-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 30rem){.sm-acc{align-content:center}}@media screen and (min-width: 30rem){.sm-acfs{align-content:flex-start}}@media screen and (min-width: 30rem){.sm-acfe{align-content:flex-end}}@media screen and (min-width: 30rem){.sm-acs{align-content:stretch}}@media screen and (min-width: 30rem){.sm-acb{align-content:baseline}}@media screen and (max-width: 59.99999rem){.only-sm-flex{display:-webkit-box;display:flex}}@media screen and (max-width: 59.99999rem){.only-sm-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (max-width: 59.99999rem){.only-sm-fb100{flex-basis:100%}}@media screen and (max-width: 59.99999rem){.only-sm-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (max-width: 59.99999rem){.only-sm-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (max-width: 59.99999rem){.only-sm-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (max-width: 59.99999rem){.only-sm-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (max-width: 59.99999rem){.only-sm-fwn{flex-wrap:nowrap}}@media screen and (max-width: 59.99999rem){.only-sm-fww{flex-wrap:wrap}}@media screen and (max-width: 59.99999rem){.only-sm-fwr{flex-wrap:wrap-reverse}}@media screen and (max-width: 59.99999rem){.only-sm-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (max-width: 59.99999rem){.only-sm-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (max-width: 59.99999rem){.only-sm-jcsa{justify-content:space-around}}@media screen and (max-width: 59.99999rem){.only-sm-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (max-width: 59.99999rem){.only-sm-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (max-width: 59.99999rem){.only-sm-aic{-webkit-box-align:center;align-items:center}}@media screen and (max-width: 59.99999rem){.only-sm-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (max-width: 59.99999rem){.only-sm-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (max-width: 59.99999rem){.only-sm-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (max-width: 59.99999rem){.only-sm-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (max-width: 59.99999rem){.only-sm-acc{align-content:center}}@media screen and (max-width: 59.99999rem){.only-sm-acfs{align-content:flex-start}}@media screen and (max-width: 59.99999rem){.only-sm-acfe{align-content:flex-end}}@media screen and (max-width: 59.99999rem){.only-sm-acs{align-content:stretch}}@media screen and (max-width: 59.99999rem){.only-sm-acb{align-content:baseline}}@media screen and (min-width: 60rem){.md-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 60rem){.md-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 60rem){.md-fb100{flex-basis:100%}}@media screen and (min-width: 60rem){.md-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 60rem){.md-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 60rem){.md-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 60rem){.md-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 60rem){.md-fwn{flex-wrap:nowrap}}@media screen and (min-width: 60rem){.md-fww{flex-wrap:wrap}}@media screen and (min-width: 60rem){.md-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 60rem){.md-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 60rem){.md-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 60rem){.md-jcsa{justify-content:space-around}}@media screen and (min-width: 60rem){.md-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 60rem){.md-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 60rem){.md-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 60rem){.md-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 60rem){.md-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 60rem){.md-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 60rem){.md-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 60rem){.md-acc{align-content:center}}@media screen and (min-width: 60rem){.md-acfs{align-content:flex-start}}@media screen and (min-width: 60rem){.md-acfe{align-content:flex-end}}@media screen and (min-width: 60rem){.md-acs{align-content:stretch}}@media screen and (min-width: 60rem){.md-acb{align-content:baseline}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fb100{flex-basis:100%}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fwn{flex-wrap:nowrap}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fww{flex-wrap:wrap}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-jcsa{justify-content:space-around}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-acc{align-content:center}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-acfs{align-content:flex-start}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-acfe{align-content:flex-end}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-acs{align-content:stretch}}@media screen and (min-width: 60rem) and (max-width: 89.99999rem){.only-md-acb{align-content:baseline}}@media screen and (min-width: 90rem){.lg-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 90rem){.lg-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 90rem){.lg-fb100{flex-basis:100%}}@media screen and (min-width: 90rem){.lg-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 90rem){.lg-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 90rem){.lg-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 90rem){.lg-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 90rem){.lg-fwn{flex-wrap:nowrap}}@media screen and (min-width: 90rem){.lg-fww{flex-wrap:wrap}}@media screen and (min-width: 90rem){.lg-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 90rem){.lg-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 90rem){.lg-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 90rem){.lg-jcsa{justify-content:space-around}}@media screen and (min-width: 90rem){.lg-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 90rem){.lg-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 90rem){.lg-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 90rem){.lg-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 90rem){.lg-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 90rem){.lg-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 90rem){.lg-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 90rem){.lg-acc{align-content:center}}@media screen and (min-width: 90rem){.lg-acfs{align-content:flex-start}}@media screen and (min-width: 90rem){.lg-acfe{align-content:flex-end}}@media screen and (min-width: 90rem){.lg-acs{align-content:stretch}}@media screen and (min-width: 90rem){.lg-acb{align-content:baseline}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fb100{flex-basis:100%}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fwn{flex-wrap:nowrap}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fww{flex-wrap:wrap}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-jcsa{justify-content:space-around}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-acc{align-content:center}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-acfs{align-content:flex-start}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-acfe{align-content:flex-end}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-acs{align-content:stretch}}@media screen and (min-width: 90rem) and (max-width: 143.99999rem){.only-lg-acb{align-content:baseline}}@media screen and (min-width: 144rem){.xlg-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 144rem){.xlg-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 144rem){.xlg-fb100{flex-basis:100%}}@media screen and (min-width: 144rem){.xlg-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 144rem){.xlg-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 144rem){.xlg-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 144rem){.xlg-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 144rem){.xlg-fwn{flex-wrap:nowrap}}@media screen and (min-width: 144rem){.xlg-fww{flex-wrap:wrap}}@media screen and (min-width: 144rem){.xlg-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 144rem){.xlg-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 144rem){.xlg-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 144rem){.xlg-jcsa{justify-content:space-around}}@media screen and (min-width: 144rem){.xlg-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 144rem){.xlg-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 144rem){.xlg-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 144rem){.xlg-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 144rem){.xlg-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 144rem){.xlg-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 144rem){.xlg-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 144rem){.xlg-acc{align-content:center}}@media screen and (min-width: 144rem){.xlg-acfs{align-content:flex-start}}@media screen and (min-width: 144rem){.xlg-acfe{align-content:flex-end}}@media screen and (min-width: 144rem){.xlg-acs{align-content:stretch}}@media screen and (min-width: 144rem){.xlg-acb{align-content:baseline}}@media screen and (min-width: 144rem){.only-xlg-flex{display:-webkit-box;display:flex}}@media screen and (min-width: 144rem){.only-xlg-iflex{display:-webkit-inline-box;display:inline-flex}}@media screen and (min-width: 144rem){.only-xlg-fb100{flex-basis:100%}}@media screen and (min-width: 144rem){.only-xlg-fdr{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-direction:row}}@media screen and (min-width: 144rem){.only-xlg-fdrr{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;flex-direction:row-reverse}}@media screen and (min-width: 144rem){.only-xlg-fdc{-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}}@media screen and (min-width: 144rem){.only-xlg-fdcr{-webkit-box-orient:vertical;-webkit-box-direction:reverse;flex-direction:column-reverse}}@media screen and (min-width: 144rem){.only-xlg-fwn{flex-wrap:nowrap}}@media screen and (min-width: 144rem){.only-xlg-fww{flex-wrap:wrap}}@media screen and (min-width: 144rem){.only-xlg-fwr{flex-wrap:wrap-reverse}}@media screen and (min-width: 144rem){.only-xlg-jcc{-webkit-box-pack:center;justify-content:center}}@media screen and (min-width: 144rem){.only-xlg-jcsb{-webkit-box-pack:justify;justify-content:space-between}}@media screen and (min-width: 144rem){.only-xlg-jcsa{justify-content:space-around}}@media screen and (min-width: 144rem){.only-xlg-jcfs{-webkit-box-pack:start;justify-content:flex-start}}@media screen and (min-width: 144rem){.only-xlg-jcfe{-webkit-box-pack:end;justify-content:flex-end}}@media screen and (min-width: 144rem){.only-xlg-aic{-webkit-box-align:center;align-items:center}}@media screen and (min-width: 144rem){.only-xlg-aifs{-webkit-box-align:start;align-items:flex-start}}@media screen and (min-width: 144rem){.only-xlg-aife{-webkit-box-align:end;align-items:flex-end}}@media screen and (min-width: 144rem){.only-xlg-ais{-webkit-box-align:stretch;align-items:stretch}}@media screen and (min-width: 144rem){.only-xlg-aib{-webkit-box-align:baseline;align-items:baseline}}@media screen and (min-width: 144rem){.only-xlg-acc{align-content:center}}@media screen and (min-width: 144rem){.only-xlg-acfs{align-content:flex-start}}@media screen and (min-width: 144rem){.only-xlg-acfe{align-content:flex-end}}@media screen and (min-width: 144rem){.only-xlg-acs{align-content:stretch}}@media screen and (min-width: 144rem){.only-xlg-acb{align-content:baseline}}.ofh{overflow:hidden !important}.ofx{overflow-x:scroll !important}.ofy{overflow-y:scroll !important}.bgb{background-color:#000 !important}.tcb{color:#000 !important}.bcb{border-color:#000 !important}.bgw{background-color:#fff !important}.tcw{color:#fff !important}.bcw{border-color:#fff !important}.bg1{background-color:#3498DB !important}.tc1{color:#3498DB !important}.bc1{border-color:#3498DB !important}.bg2{background-color:#258cd1 !important}.tc2{color:#258cd1 !important}.bc2{border-color:#258cd1 !important}.bg3{background-color:#217dbb !important}.tc3{color:#217dbb !important}.bc3{border-color:#217dbb !important}.bg4{background-color:#1d6fa5 !important}.tc4{color:#1d6fa5 !important}.bc4{border-color:#1d6fa5 !important}.bg5{background-color:#196090 !important}.tc5{color:#196090 !important}.bc5{border-color:#196090 !important}.bgsuccess{background-color:#4AB471 !important}.tcsuccess{color:#4AB471 !important}.bcsuccess{border-color:#4AB471 !important}.bgwarning{background-color:#F3AE4E !important}.tcwarning{color:#F3AE4E !important}.bcwarning{border-color:#F3AE4E !important}.bgdanger{background-color:#CF5C60 !important}.tcdanger{color:#CF5C60 !important}.bcdanger{border-color:#CF5C60 !important}.bgg05{background-color:#f2f2f2 !important}.tcg05{color:#f2f2f2 !important}.bcg05{border-color:#f2f2f2 !important}.bgg10{background-color:#e6e6e6 !important}.tcg10{color:#e6e6e6 !important}.bcg10{border-color:#e6e6e6 !important}.bgg20{background-color:#ccc !important}.tcg20{color:#ccc !important}.bcg20{border-color:#ccc !important}.bgg30{background-color:#b3b3b3 !important}.tcg30{color:#b3b3b3 !important}.bcg30{border-color:#b3b3b3 !important}.bgg40{background-color:#999 !important}.tcg40{color:#999 !important}.bcg40{border-color:#999 !important}.bgg50{background-color:gray !important}.tcg50{color:gray !important}.bcg50{border-color:gray !important}.bgg60{background-color:#666 !important}.tcg60{color:#666 !important}.bcg60{border-color:#666 !important}.bgg70{background-color:#4d4d4d !important}.tcg70{color:#4d4d4d !important}.bcg70{border-color:#4d4d4d !important}.bgg80{background-color:#333 !important}.tcg80{color:#333 !important}.bcg80{border-color:#333 !important}.bgg90{background-color:#1a1a1a !important}.tcg90{color:#1a1a1a !important}.bcg90{border-color:#1a1a1a !important}.\:bgb:hover{background-color:#000 !important}.\:tcb:hover{color:#000 !important}.\:bcb:hover{border-color:#000 !important}.\:bgw:hover{background-color:#fff !important}.\:tcw:hover{color:#fff !important}.\:bcw:hover{border-color:#fff !important}.\:bg1:hover{background-color:#3498DB !important}.\:tc1:hover{color:#3498DB !important}.\:bc1:hover{border-color:#3498DB !important}.\:bg2:hover{background-color:#258cd1 !important}.\:tc2:hover{color:#258cd1 !important}.\:bc2:hover{border-color:#258cd1 !important}.\:bg3:hover{background-color:#217dbb !important}.\:tc3:hover{color:#217dbb !important}.\:bc3:hover{border-color:#217dbb !important}.\:bg4:hover{background-color:#1d6fa5 !important}.\:tc4:hover{color:#1d6fa5 !important}.\:bc4:hover{border-color:#1d6fa5 !important}.\:bg5:hover{background-color:#196090 !important}.\:tc5:hover{color:#196090 !important}.\:bc5:hover{border-color:#196090 !important}.\:bgsuccess:hover{background-color:#4AB471 !important}.\:tcsuccess:hover{color:#4AB471 !important}.\:bcsuccess:hover{border-color:#4AB471 !important}.\:bgwarning:hover{background-color:#F3AE4E !important}.\:tcwarning:hover{color:#F3AE4E !important}.\:bcwarning:hover{border-color:#F3AE4E !important}.\:bgdanger:hover{background-color:#CF5C60 !important}.\:tcdanger:hover{color:#CF5C60 !important}.\:bcdanger:hover{border-color:#CF5C60 !important}.\:bgg05:hover{background-color:#f2f2f2 !important}.\:tcg05:hover{color:#f2f2f2 !important}.\:bcg05:hover{border-color:#f2f2f2 !important}.\:bgg10:hover{background-color:#e6e6e6 !important}.\:tcg10:hover{color:#e6e6e6 !important}.\:bcg10:hover{border-color:#e6e6e6 !important}.\:bgg20:hover{background-color:#ccc !important}.\:tcg20:hover{color:#ccc !important}.\:bcg20:hover{border-color:#ccc !important}.\:bgg30:hover{background-color:#b3b3b3 !important}.\:tcg30:hover{color:#b3b3b3 !important}.\:bcg30:hover{border-color:#b3b3b3 !important}.\:bgg40:hover{background-color:#999 !important}.\:tcg40:hover{color:#999 !important}.\:bcg40:hover{border-color:#999 !important}.\:bgg50:hover{background-color:gray !important}.\:tcg50:hover{color:gray !important}.\:bcg50:hover{border-color:gray !important}.\:bgg60:hover{background-color:#666 !important}.\:tcg60:hover{color:#666 !important}.\:bcg60:hover{border-color:#666 !important}.\:bgg70:hover{background-color:#4d4d4d !important}.\:tcg70:hover{color:#4d4d4d !important}.\:bcg70:hover{border-color:#4d4d4d !important}.\:bgg80:hover{background-color:#333 !important}.\:tcg80:hover{color:#333 !important}.\:bcg80:hover{border-color:#333 !important}.\:bgg90:hover{background-color:#1a1a1a !important}.\:tcg90:hover{color:#1a1a1a !important}.\:bcg90:hover{border-color:#1a1a1a !important}.\:\:bgb:focus{background-color:#000 !important}.\:\:tcb:focus{color:#000 !important}.\:\:bcb:focus{border-color:#000 !important}.\:\:bgw:focus{background-color:#fff !important}.\:\:tcw:focus{color:#fff !important}.\:\:bcw:focus{border-color:#fff !important}.\:\:bg1:focus{background-color:#3498DB !important}.\:\:tc1:focus{color:#3498DB !important}.\:\:bc1:focus{border-color:#3498DB !important}.\:\:bg2:focus{background-color:#258cd1 !important}.\:\:tc2:focus{color:#258cd1 !important}.\:\:bc2:focus{border-color:#258cd1 !important}.\:\:bg3:focus{background-color:#217dbb !important}.\:\:tc3:focus{color:#217dbb !important}.\:\:bc3:focus{border-color:#217dbb !important}.\:\:bg4:focus{background-color:#1d6fa5 !important}.\:\:tc4:focus{color:#1d6fa5 !important}.\:\:bc4:focus{border-color:#1d6fa5 !important}.\:\:bg5:focus{background-color:#196090 !important}.\:\:tc5:focus{color:#196090 !important}.\:\:bc5:focus{border-color:#196090 !important}.\:\:bgsuccess:focus{background-color:#4AB471 !important}.\:\:tcsuccess:focus{color:#4AB471 !important}.\:\:bcsuccess:focus{border-color:#4AB471 !important}.\:\:bgwarning:focus{background-color:#F3AE4E !important}.\:\:tcwarning:focus{color:#F3AE4E !important}.\:\:bcwarning:focus{border-color:#F3AE4E !important}.\:\:bgdanger:focus{background-color:#CF5C60 !important}.\:\:tcdanger:focus{color:#CF5C60 !important}.\:\:bcdanger:focus{border-color:#CF5C60 !important}.\:\:bgg05:focus{background-color:#f2f2f2 !important}.\:\:tcg05:focus{color:#f2f2f2 !important}.\:\:bcg05:focus{border-color:#f2f2f2 !important}.\:\:bgg10:focus{background-color:#e6e6e6 !important}.\:\:tcg10:focus{color:#e6e6e6 !important}.\:\:bcg10:focus{border-color:#e6e6e6 !important}.\:\:bgg20:focus{background-color:#ccc !important}.\:\:tcg20:focus{color:#ccc !important}.\:\:bcg20:focus{border-color:#ccc !important}.\:\:bgg30:focus{background-color:#b3b3b3 !important}.\:\:tcg30:focus{color:#b3b3b3 !important}.\:\:bcg30:focus{border-color:#b3b3b3 !important}.\:\:bgg40:focus{background-color:#999 !important}.\:\:tcg40:focus{color:#999 !important}.\:\:bcg40:focus{border-color:#999 !important}.\:\:bgg50:focus{background-color:gray !important}.\:\:tcg50:focus{color:gray !important}.\:\:bcg50:focus{border-color:gray !important}.\:\:bgg60:focus{background-color:#666 !important}.\:\:tcg60:focus{color:#666 !important}.\:\:bcg60:focus{border-color:#666 !important}.\:\:bgg70:focus{background-color:#4d4d4d !important}.\:\:tcg70:focus{color:#4d4d4d !important}.\:\:bcg70:focus{border-color:#4d4d4d !important}.\:\:bgg80:focus{background-color:#333 !important}.\:\:tcg80:focus{color:#333 !important}.\:\:bcg80:focus{border-color:#333 !important}.\:\:bgg90:focus{background-color:#1a1a1a !important}.\:\:tcg90:focus{color:#1a1a1a !important}.\:\:bcg90:focus{border-color:#1a1a1a !important}.\@bgb:active{background-color:#000 !important}.\@tcb:active{color:#000 !important}.\@bcb:active{border-color:#000 !important}.\@bgw:active{background-color:#fff !important}.\@tcw:active{color:#fff !important}.\@bcw:active{border-color:#fff !important}.\@bg1:active{background-color:#3498DB !important}.\@tc1:active{color:#3498DB !important}.\@bc1:active{border-color:#3498DB !important}.\@bg2:active{background-color:#258cd1 !important}.\@tc2:active{color:#258cd1 !important}.\@bc2:active{border-color:#258cd1 !important}.\@bg3:active{background-color:#217dbb !important}.\@tc3:active{color:#217dbb !important}.\@bc3:active{border-color:#217dbb !important}.\@bg4:active{background-color:#1d6fa5 !important}.\@tc4:active{color:#1d6fa5 !important}.\@bc4:active{border-color:#1d6fa5 !important}.\@bg5:active{background-color:#196090 !important}.\@tc5:active{color:#196090 !important}.\@bc5:active{border-color:#196090 !important}.\@bgsuccess:active{background-color:#4AB471 !important}.\@tcsuccess:active{color:#4AB471 !important}.\@bcsuccess:active{border-color:#4AB471 !important}.\@bgwarning:active{background-color:#F3AE4E !important}.\@tcwarning:active{color:#F3AE4E !important}.\@bcwarning:active{border-color:#F3AE4E !important}.\@bgdanger:active{background-color:#CF5C60 !important}.\@tcdanger:active{color:#CF5C60 !important}.\@bcdanger:active{border-color:#CF5C60 !important}.\@bgg05:active{background-color:#f2f2f2 !important}.\@tcg05:active{color:#f2f2f2 !important}.\@bcg05:active{border-color:#f2f2f2 !important}.\@bgg10:active{background-color:#e6e6e6 !important}.\@tcg10:active{color:#e6e6e6 !important}.\@bcg10:active{border-color:#e6e6e6 !important}.\@bgg20:active{background-color:#ccc !important}.\@tcg20:active{color:#ccc !important}.\@bcg20:active{border-color:#ccc !important}.\@bgg30:active{background-color:#b3b3b3 !important}.\@tcg30:active{color:#b3b3b3 !important}.\@bcg30:active{border-color:#b3b3b3 !important}.\@bgg40:active{background-color:#999 !important}.\@tcg40:active{color:#999 !important}.\@bcg40:active{border-color:#999 !important}.\@bgg50:active{background-color:gray !important}.\@tcg50:active{color:gray !important}.\@bcg50:active{border-color:gray !important}.\@bgg60:active{background-color:#666 !important}.\@tcg60:active{color:#666 !important}.\@bcg60:active{border-color:#666 !important}.\@bgg70:active{background-color:#4d4d4d !important}.\@tcg70:active{color:#4d4d4d !important}.\@bcg70:active{border-color:#4d4d4d !important}.\@bgg80:active{background-color:#333 !important}.\@tcg80:active{color:#333 !important}.\@bcg80:active{border-color:#333 !important}.\@bgg90:active{background-color:#1a1a1a !important}.\@tcg90:active{color:#1a1a1a !important}.\@bcg90:active{border-color:#1a1a1a !important}.xbg{background-color:transparent !important}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.pin-top{top:0}.pin-right{right:0}.pin-bottom{bottom:0}.pin-left{left:0}.pin-edges{top:0;right:0;bottom:0;left:0}.brdr0{border-style:solid !important;border-width:0px !important}.brdr0--top{border-top-style:solid !important;border-top-width:0px !important}.brdr0--right{border-right-style:solid !important;border-right-width:0px !important}.brdr0--bottom{border-bottom-style:solid !important;border-bottom-width:0px !important}.brdr0--left{border-left-style:solid !important;border-left-width:0px !important}.brdr1{border-style:solid !important;border-width:1px !important}.brdr1--top{border-top-style:solid !important;border-top-width:1px !important}.brdr1--right{border-right-style:solid !important;border-right-width:1px !important}.brdr1--bottom{border-bottom-style:solid !important;border-bottom-width:1px !important}.brdr1--left{border-left-style:solid !important;border-left-width:1px !important}.brdr2{border-style:solid !important;border-width:2px !important}.brdr2--top{border-top-style:solid !important;border-top-width:2px !important}.brdr2--right{border-right-style:solid !important;border-right-width:2px !important}.brdr2--bottom{border-bottom-style:solid !important;border-bottom-width:2px !important}.brdr2--left{border-left-style:solid !important;border-left-width:2px !important}.brdr3{border-style:solid !important;border-width:3px !important}.brdr3--top{border-top-style:solid !important;border-top-width:3px !important}.brdr3--right{border-right-style:solid !important;border-right-width:3px !important}.brdr3--bottom{border-bottom-style:solid !important;border-bottom-width:3px !important}.brdr3--left{border-left-style:solid !important;border-left-width:3px !important}.br1{border-radius:1px !important}.blr1{border-top-left-radius:1px !important;border-bottom-left-radius:1px !important}.brr1{border-top-right-radius:1px !important;border-bottom-right-radius:1px !important}.btlr1{border-top-left-radius:1px !important}.btrr1{border-top-right-radius:1px !important}.bbrr1{border-bottom-right-radius:1px !important}.bblr1{border-bottom-left-radius:1px !important}.br2{border-radius:2px !important}.blr2{border-top-left-radius:2px !important;border-bottom-left-radius:2px !important}.brr2{border-top-right-radius:2px !important;border-bottom-right-radius:2px !important}.btlr2{border-top-left-radius:2px !important}.btrr2{border-top-right-radius:2px !important}.bbrr2{border-bottom-right-radius:2px !important}.bblr2{border-bottom-left-radius:2px !important}.br3{border-radius:3px !important}.blr3{border-top-left-radius:3px !important;border-bottom-left-radius:3px !important}.brr3{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.btlr3{border-top-left-radius:3px !important}.btrr3{border-top-right-radius:3px !important}.bbrr3{border-bottom-right-radius:3px !important}.bblr3{border-bottom-left-radius:3px !important}.br4{border-radius:4px !important}.blr4{border-top-left-radius:4px !important;border-bottom-left-radius:4px !important}.brr4{border-top-right-radius:4px !important;border-bottom-right-radius:4px !important}.btlr4{border-top-left-radius:4px !important}.btrr4{border-top-right-radius:4px !important}.bbrr4{border-bottom-right-radius:4px !important}.bblr4{border-bottom-left-radius:4px !important}.br5{border-radius:5px !important}.blr5{border-top-left-radius:5px !important;border-bottom-left-radius:5px !important}.brr5{border-top-right-radius:5px !important;border-bottom-right-radius:5px !important}.btlr5{border-top-left-radius:5px !important}.btrr5{border-top-right-radius:5px !important}.bbrr5{border-bottom-right-radius:5px !important}.bblr5{border-bottom-left-radius:5px !important}.br6{border-radius:6px !important}.blr6{border-top-left-radius:6px !important;border-bottom-left-radius:6px !important}.brr6{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.btlr6{border-top-left-radius:6px !important}.btrr6{border-top-right-radius:6px !important}.bbrr6{border-bottom-right-radius:6px !important}.bblr6{border-bottom-left-radius:6px !important}.circle{border-radius:50% !important} ================================================ FILE: gulpfile.js ================================================ var gulp = require('gulp'); var elixir = require('laravel-elixir'); var argv = require('yargs').argv; elixir.config.assetsPath = 'source/_assets'; elixir.config.publicPath = 'source'; elixir(function(mix) { var env = argv.e || argv.env || 'local'; mix.sass('main.scss') .exec('jigsaw build ' + env, ['./source/*', './source/**/*', '!./source/_assets/**/*']) .browserSync({ server: { baseDir: 'build_' + env }, proxy: null, files: [ 'build_' + env + '/**/*' ] }) .styles(['prism-ghcolors.css', 'prism.css'], 'source/css/vendor.css') .scripts(['vue.min.js', 'prism.js', 'main.js'], 'source/js/app.js'); }); ================================================ FILE: index.js ================================================ var path = require('path'); function includePaths() { return [path.join(__dirname, 'stylesheets')]; } module.exports = { includePaths: includePaths(), with: function() { var paths = Array.prototype.slice.call(arguments); var result = [].concat.apply(includePaths(), paths); return result; } }; ================================================ FILE: package.json ================================================ { "name": "beardcss", "version": "2.2.4", "description": "A CSS framework for people with better things to do", "main": "beard.scss", "repository": { "type": "git", "url": "https://github.com/monarkee/beard.git" }, "keywords": [ "sass", "scss", "atomic", "css", "framework", "frontend" ], "author": "David Hemphill", "license": "MIT", "bugs": { "url": "https://github.com/monarkee/beard/issues" }, "homepage": "http://buildwithbeard.com", "scripts": { "scss": "node-sass --output-style compressed -o dist beard.scss", "autoprefixer": "postcss -u autoprefixer --autoprefixer.browsers '> 5%, ie 9' -r dist/*", "build:beard": "npm run scss && npm run autoprefixer", "watch:beard": "onchange 'stylesheets/*.scss' '*.scss' -- npm run build:beard" }, "devDependencies": { "autoprefixer": "^6.3.6", "gulp": "^3.8.8", "laravel-elixir": "^4.2.0", "node-sass": "^3.7.0", "onchange": "^2.5.0", "postcss-cli": "^2.5.2", "yargs": "^4.6.0" } } ================================================ FILE: source/CNAME ================================================ buildwithbeard.com ================================================ FILE: source/_assets/css/prism-ghcolors.css ================================================ /** * GHColors theme by Avi Aryan (http://aviaryan.in) * Inspired by Github syntax coloring */ code[class*="language-"], pre[class*="language-"] { color: #777; font-family: "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; direction: ltr; text-align: left; white-space: pre; word-spacing: normal; word-break: normal; font-size: 1.3rem; line-height: 1.5; tab-size: 4; hyphens: none; } pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { background: #b3d4fc; } pre[class*="language-"]::selection, pre[class*="language-"] ::selection, code[class*="language-"]::selection, code[class*="language-"] ::selection { background: #b3d4fc; } /* Code blocks */ pre[class*="language-"] { padding: 2rem 2.5rem; overflow: auto; border: 1px solid rgba(0,0,0,.2); border-radius: 4px; background-color: white; } :not(pre) > code[class*="language-"], pre[class*="language-"] { } /* Inline code */ :not(pre) > code[class*="language-"] { padding: .2em; padding-top: 1px; padding-bottom: 1px; background: #f8f8f8; border: 1px solid #dddddd; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: #AAA; font-style: italic; } .token.namespace { opacity: .7; } .token.string, .token.attr-value { color: #e3116c; } .token.punctuation, .token.operator { color: #888; /* no highlight */ } .token.entity, .token.url, .token.symbol, .token.number, .token.boolean, .token.variable, .token.constant, .token.property, .token.regex, .token.inserted { color: #3498DB; } .token.atrule, .token.keyword, .token.attr-name, .language-autohotkey .token.selector { color: #00a4db; } .token.function, .token.deleted, .language-autohotkey .token.tag { color: #3498DB; } .token.tag, .token.selector, .language-autohotkey .token.keyword { color: #3498DB; } .token.important, .token.function, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } ================================================ FILE: source/_assets/css/prism.css ================================================ /** * GHColors theme by Avi Aryan (http://aviaryan.in) * Inspired by Github syntax coloring */ code[class*="language-"], pre[class*="language-"] { color: #777; font-family: "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; direction: ltr; text-align: left; white-space: pre; word-spacing: normal; word-break: normal; font-size: 1.4rem; line-height: 1.5; tab-size: 4; hyphens: none; } pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { background: #b3d4fc; } pre[class*="language-"]::selection, pre[class*="language-"] ::selection, code[class*="language-"]::selection, code[class*="language-"] ::selection { background: #b3d4fc; } /* Code blocks */ pre[class*="language-"] { padding: 2rem 2.5rem; overflow: auto; border: 1px solid rgba(0,0,0,.2); border-radius: 4px; background-color: white; } :not(pre) > code[class*="language-"], pre[class*="language-"] { } /* Inline code */ :not(pre) > code[class*="language-"] { padding: .2em; padding-top: 1px; padding-bottom: 1px; background: #f8f8f8; border: 1px solid #dddddd; } .token.comment, .token.prolog, .token.doctype, .token.cdata { color: #AAA; font-style: italic; } .token.namespace { opacity: .7; } .token.string, .token.attr-value { color: #e3116c; } .token.punctuation, .token.operator { color: #888; /* no highlight */ } .token.entity, .token.url, .token.symbol, .token.number, .token.boolean, .token.variable, .token.constant, .token.property, .token.regex, .token.inserted { color: #3498DB; } .token.atrule, .token.keyword, .token.attr-name, .language-autohotkey .token.selector { color: #00a4db; } .token.function, .token.deleted, .language-autohotkey .token.tag { color: #3498DB; } .token.tag, .token.selector, .language-autohotkey .token.keyword { color: #3498DB; } .token.important, .token.function, .token.bold { font-weight: bold; } .token.italic { font-style: italic; } ================================================ FILE: source/_assets/js/main.js ================================================ new Vue({ el: 'body', data: { sidebarVisible: false, } }) ================================================ FILE: source/_assets/js/prism.js ================================================ /* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+coffeescript+php+sass+scss&plugins=line-numbers+remove-initial-line-feed */ var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=_self.Prism={util:{encode:function(e){return e instanceof n?new n(e.type,t.util.encode(e.content),e.alias):"Array"===t.util.type(e)?e.map(t.util.encode):e.replace(/&/g,"&").replace(/e.length)break e;if(!(d instanceof a)){u.lastIndex=0;var m=u.exec(d);if(m){c&&(f=m[1].length);var y=m.index-1+f,m=m[0].slice(f),v=m.length,k=y+v,b=d.slice(0,y+1),w=d.slice(k+1),P=[p,1];b&&P.push(b);var A=new a(i,g?t.tokenize(m,g):m,h);P.push(A),w&&P.push(w),Array.prototype.splice.apply(r,P)}}}}}return r},hooks:{all:{},add:function(e,n){var a=t.hooks.all;a[e]=a[e]||[],a[e].push(n)},run:function(e,n){var a=t.hooks.all[e];if(a&&a.length)for(var r,l=0;r=a[l++];)r(n)}}},n=t.Token=function(e,t,n){this.type=e,this.content=t,this.alias=n};if(n.stringify=function(e,a,r){if("string"==typeof e)return e;if("Array"===t.util.type(e))return e.map(function(t){return n.stringify(t,a,e)}).join("");var l={type:e.type,content:n.stringify(e.content,a,r),tag:"span",classes:["token",e.type],attributes:{},language:a,parent:r};if("comment"==l.type&&(l.attributes.spellcheck="true"),e.alias){var i="Array"===t.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(l.classes,i)}t.hooks.run("wrap",l);var o="";for(var s in l.attributes)o+=(o?" ":"")+s+'="'+(l.attributes[s]||"")+'"';return"<"+l.tag+' class="'+l.classes.join(" ")+'" '+o+">"+l.content+""},!_self.document)return _self.addEventListener?(_self.addEventListener("message",function(e){var n=JSON.parse(e.data),a=n.language,r=n.code,l=n.immediateClose;_self.postMessage(t.highlight(r,t.languages[a],a)),l&&_self.close()},!1),_self.Prism):_self.Prism;var a=document.getElementsByTagName("script");return a=a[a.length-1],a&&(t.filename=a.src,document.addEventListener&&!a.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)),_self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism); Prism.languages.markup={comment://,prolog:/<\?[\w\W]+?\?>/,doctype://,cdata://i,tag:{pattern:/<\/?[^\s>\/=.]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup; Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/()[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag)); Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/}; Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}}),Prism.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\`|\\?[^`])*`/,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/()[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}}),Prism.languages.js=Prism.languages.javascript; !function(e){var n=/#(?!\{).+/,t={pattern:/#\{[^}]+\}/,alias:"variable"};e.languages.coffeescript=e.languages.extend("javascript",{comment:n,string:[/'(?:\\?[^\\])*?'/,{pattern:/"(?:\\?[^\\])*?"/,inside:{interpolation:t}}],keyword:/\b(and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,"class-member":{pattern:/@(?!\d)\w+/,alias:"variable"}}),e.languages.insertBefore("coffeescript","comment",{"multiline-comment":{pattern:/###[\s\S]+?###/,alias:"comment"},"block-regex":{pattern:/\/{3}[\s\S]*?\/{3}/,alias:"regex",inside:{comment:n,interpolation:t}}}),e.languages.insertBefore("coffeescript","string",{"inline-javascript":{pattern:/`(?:\\?[\s\S])*?`/,inside:{delimiter:{pattern:/^`|`$/,alias:"punctuation"},rest:e.languages.javascript}},"multiline-string":[{pattern:/'''[\s\S]*?'''/,alias:"string"},{pattern:/"""[\s\S]*?"""/,alias:"string",inside:{interpolation:t}}]}),e.languages.insertBefore("coffeescript","keyword",{property:/(?!\d)\w+(?=\s*:(?!:))/})}(Prism); Prism.languages.php=Prism.languages.extend("clike",{keyword:/\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0}}),Prism.languages.insertBefore("php","class-name",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),Prism.languages.insertBefore("php","keyword",{delimiter:/\?>|<\?(?:php)?/i,variable:/\$\w+\b/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),Prism.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),Prism.languages.markup&&(Prism.hooks.add("before-highlight",function(e){"php"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(/(?:<\?php|<\?)[\w\W]*?(?:\?>)/gi,function(a){return e.tokenStack.push(a),"{{{PHP"+e.tokenStack.length+"}}}"}))}),Prism.hooks.add("before-insert",function(e){"php"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),Prism.hooks.add("after-highlight",function(e){if("php"===e.language){for(var a,n=0;a=e.tokenStack[n];n++)e.highlightedCode=e.highlightedCode.replace("{{{PHP"+(n+1)+"}}}",Prism.highlight(a,e.grammar,"php").replace(/\$/g,"$$$$"));e.element.innerHTML=e.highlightedCode}}),Prism.hooks.add("wrap",function(e){"php"===e.language&&"markup"===e.type&&(e.content=e.content.replace(/(\{\{\{PHP[0-9]+\}\}\})/g,'$1'))}),Prism.languages.insertBefore("php","comment",{markup:{pattern:/<[^?]\/?(.*?)>/,inside:Prism.languages.markup},php:/\{\{\{PHP[0-9]+\}\}\}/})); !function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete e.languages.sass.atrule;var a=/((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i,t=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:a,operator:t}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:a,operator:t,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,delete e.languages.sass.selector,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism); Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,inside:{placeholder:/%[-_\w]+/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.insertBefore("scss","property",{variable:/\$[-_\w]+|#\{\$[-_\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-_\w]+/,alias:"selector"},statement:/\B!(?:default|optional)\b/i,"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.util.clone(Prism.languages.scss); !function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(e){if(e.code){var t=e.element.parentNode,s=/\s*\bline-numbers\b\s*/;if(t&&/pre/i.test(t.nodeName)&&(s.test(t.className)||s.test(e.element.className))&&!e.element.querySelector(".line-numbers-rows")){s.test(e.element.className)&&(e.element.className=e.element.className.replace(s,"")),s.test(t.className)||(t.className+=" line-numbers");var n,a=e.code.match(/\n(?!$)/g),l=a?a.length+1:1,m=new Array(l+1);m=m.join(""),n=document.createElement("span"),n.className="line-numbers-rows",n.innerHTML=m,t.hasAttribute("data-start")&&(t.style.counterReset="linenumber "+(parseInt(t.getAttribute("data-start"),10)-1)),e.element.appendChild(n)}}})}(); !function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("before-highlight",function(e){if(e.code){var s=e.element.parentNode,n=/\s*\bkeep-initial-line-feed\b\s*/;!s||"pre"!==s.nodeName.toLowerCase()||n.test(s.className)||n.test(e.element.className)||(e.code=e.code.replace(/^(?:\r?\n|\r)/,""))}})}(); ================================================ FILE: source/_assets/sass/main.scss ================================================ // Settings //-------------------------------------------------------------------------- */ @import '../../../stylesheets/settings'; @import '../../../stylesheets/settings.colors'; // Tools & Mixins //-------------------------------------------------------------------------- */ @import '../../../stylesheets/tools.appearance'; @import '../../../stylesheets/tools.breakpoints'; @import '../../../stylesheets/tools.user-drag'; @import '../../../stylesheets/tools.font-size'; @import '../../../stylesheets/tools.spacing'; // Generic //-------------------------------------------------------------------------- */ @import '../../../stylesheets/generic.reset'; // Base //-------------------------------------------------------------------------- */ @import '../../../stylesheets/base'; // Custom colors, breakpoints and spacing helpers //-------------------------------------------------------------------------- */ body { font-family: system, -apple-system, BlinkMacSystemFont, ubuntu, sans-serif; } :not(pre) > code { background: rgb(250, 250, 250); padding: 0.5rem 1rem; color: #666; border-radius: 3px; border: 1px solid rgb(220, 220, 220); } .btn--sm { padding: 0.85rem 1rem; } .ht3 { height: 7px; } .main-content { max-width: 96rem; & > pre { @extend .mb2; @extend .md-mb4; } } .main-sidebar { flex: 0 0 200px; } // @media screen and (max-width: 960px) { // .main-sidebar { // display: none; // } // } .sticky { background-color: rgba(67,70,74, 0.1); position: relative; padding: 2rem 1rem; display: flex; justify-content: center; align-items: center; font-size: 13px; color: rgba(67,70,74, 0.4); } .sticky--nopad { left: 0; right: 0; } .outline { outline: 1px solid rgba(67,70,74, 0.4); } .example-nested-frame { background: rgba(67,70,74, 0.1); } .pv05 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .badge { padding: 4px 6px; } th, td { @extend .ph2; } th { @extend .fw6; background: $bgg05; } .z30 { z-index: 30; } .pointer { cursor: pointer; } // Helpers //-------------------------------------------------------------------------- */ @import '../../../stylesheets/helpers.text-align'; @import '../../../stylesheets/helpers.spacing'; @import '../../../stylesheets/helpers.line-heights'; @import '../../../stylesheets/helpers.letter-spacing'; @import '../../../stylesheets/helpers.fonts'; @import '../../../stylesheets/helpers.misc'; @import '../../../stylesheets/helpers.grid'; @import '../../../stylesheets/helpers.floats'; @import '../../../stylesheets/helpers.display'; @import '../../../stylesheets/helpers.flex'; @import '../../../stylesheets/helpers.overflow'; @import '../../../stylesheets/helpers.colors'; @import '../../../stylesheets/helpers.position'; @import '../../../stylesheets/helpers.borders'; @import '../../../stylesheets/helpers.border-radius'; ================================================ FILE: source/_layouts/master.blade.php ================================================ Beard - Atomic CSS framework @include('_partials/_header')
@include('_partials/_sidebar')
@yield('content')
@include('_partials/_footer') ================================================ FILE: source/_layouts/subpage.blade.php ================================================ @extends('_layouts.master') @section('content')
@yield('subpage_content')
@stop ================================================ FILE: source/_partials/_footer.blade.php ================================================ ================================================ FILE: source/_partials/_header.blade.php ================================================

Beard Menu

A CSS framework for people with better things to do

================================================ FILE: source/_partials/_sidebar.blade.php ================================================ ================================================ FILE: source/border-radius.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Border Radius Helpers

Border Direction Class Prefix Default Amounts
Border Radius .br 0-10
Border Left Radius .blr 0-10
Border Right Radius .brr 0-10
Border Top Left Radius .btlr 0-10
Border Top Right Radius .btrr 0-10
Border Bottom Left Radius .bblr 0-10
Border Bottom Right Radius .bbrr 0-10
================================================ FILE: source/borders.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Borders

Beard’s border helpers use a default scale from 1 to 3. This can be changed by setting $beard-border-size-amount before you import Beard.

Class Purpose
.xbrdr Remove the border from an element
.brdr1 Add a border to all sides of an element
.brdr1--top Add a border to the top of an element
.brdr1--right Add a border to the right side of an element
.brdr1--bottom Add a border to the bottom of an element
.brdr1--left Add a border to the left side of an element
================================================ FILE: source/colors.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Color Helpers

Beard's color helpers are generated with !important to provide the ability to override any color values set in your CSS. It's also encouraged to use these helpers in place of modifiers which do the same thing.

.bgsuccess
.tcsuccess
.bgwarning
.tcwarning
.bgdanger
.tcdanger
.bg1
.bg2
.bg3
.bg4
.bg5
.tc1
.tc2
.tc3
.tc4
.tc5
.bc1
.bc2
.bc3
.bc4
.bc5
.bgw
.tcw
.bcw
.bgg05
.bgg10
.bgg20
.bgg30
.bgg40
.bgg50
.bgg60
.bgg70
.bgg80
.bgg90
.bgb
.tcg05
.tcg10
.tcg20
.tcg30
.tcg40
.tcg50
.tcg60
.tcg70
.tcg80
.tcg90
.tcb
.bcg05
.bcg10
.bcg20
.bcg30
.bcg40
.bcg50
.bcg60
.bcg70
.bcg80
.bcg90
.bcb

Hover, Focus, and Active Color Helpers

Beard's color helper system allows you to use hover, focus, and active colors, using a special syntax. Beard can transition any color to any other color in the system, which makes these helpers real timesavers.

Prefix Purpose Example Demo
: Hover class="tc1 :tcwarning" Sample link hover text
:: Focus class="bcg20 ::bc1"
@ Active class="bgg05 tcg40 @bg1 @tcw" Click Me

Another Example

```html
```

Adding New Color Helpers

This mixin allows you to add colors to be generated along with Beard's default color helpers.

```scss // Tools & Mixins //-------------------------------------------------------------------------- */ // @import '../../../stylesheets/tools.font-size'; // This has to go between Beard's tool.font-size and helpers.spacing partials @include new-color('1--light', #85D7FF); // Outputs .bg1--light { background-color: #85D7FF !important } @include new-color('red', #FF0000); // Outputs .bgred { background-color: #FF0000 !important } // Helpers //-------------------------------------------------------------------------- */ // @import '../../../stylesheets/helpers.spacing'; ```

Note: Calling this mixin will only work if you import each of Beard’s partials individually, as recommended by the installation guide.

================================================ FILE: source/configuration.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Configuration

Beard has a set of settings you can tweak to customize the framework for you project. Listed below are some of the important ones. The complete list is found in stylesheets/_settings.scss.

Variable Default Purpose
$beard-reset true Adds a classic CSS reset
$beard-base true Adds Beard’s base styling
$beard-enable-responsive true Enable responsive features
$beard-enable-spacing-helpers true Enable the spacing helpers
$beard-spacing-helper-amount 10 Specify how many spacer levels to generate
$beard-grid-block-count 12 The amount of column classes to create
$beard-grid-gutter 30px The default size of the column gutters
$site-width 114rem The maximum size of the site wrappers
$sans-serif 'Helvetica Neue', Helvetica, Arial, sans-serif
$serif Merriweather, Georgia, serif
$code Menlo, Consolas, Monaco, 'Andale Mono', monospace
================================================ FILE: source/css/main.css ================================================ a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,meter,nav,object,ol,output,p,pre,progress,q,rp,rt,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,xmp{border:0;margin:0;padding:0;font-size:100%}body,html{height:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}b,strong{font-weight:700}img{color:transparent;font-size:0;vertical-align:middle;-ms-interpolation-mode:bicubic}ol,ul{list-style:none}li{display:list-item}table{border-collapse:collapse;border-spacing:0}caption,td,th{font-weight:400;vertical-align:top;text-align:left}q{quotes:none}q:after,q:before{content:"";content:none}small,sub,sup{font-size:75%}sub,sup{line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg{overflow:hidden}*,:after,:before{box-sizing:inherit}html{font-size:62.5%;box-sizing:border-box;height:100%}body{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;min-height:100%}h1,h2,h3,h4,h5,h6{font-weight:400}hr{background:none;border-top:1px solid rgba(0,0,0,.2);margin:0}a{text-decoration:none;-webkit-tap-highlight-color:transparent}button{cursor:pointer;border:none}button,input,textarea{outline:none}img{max-width:100%;font-style:italic;vertical-align:middle}img[height],img[width]{max-width:none}body{font-family:system,-apple-system,BlinkMacSystemFont,ubuntu,sans-serif}:not(pre)>code{background:#fafafa;padding:.5rem 1rem;color:#666;border-radius:3px;border:1px solid #dcdcdc}.btn--sm{padding:.85rem 1rem}.ht3{height:7px}.main-content{max-width:96rem}.main-sidebar{-ms-flex:0 0 200px;flex:0 0 200px}.sticky{background-color:rgba(67,70,74,.1);position:relative;padding:2rem 1rem;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-size:13px;color:rgba(67,70,74,.4)}.sticky--nopad{left:0;right:0}.outline{outline:1px solid rgba(67,70,74,.4)}.example-nested-frame{background:rgba(67,70,74,.1)}.pv05{padding-top:.5rem;padding-bottom:.5rem}.badge{padding:4px 6px}th{background:#f2f2f2}.z30{z-index:30}.pointer{cursor:pointer}.tal{text-align:left!important}.tac{text-align:center!important}.tar{text-align:right!important}@media screen and (min-width:30rem){.sm-tal{text-align:left!important}}@media screen and (min-width:30rem){.sm-tac{text-align:center!important}}@media screen and (min-width:30rem){.sm-tar{text-align:right!important}}@media screen and (max-width:59.99999rem){.only-sm-tal{text-align:left!important}}@media screen and (max-width:59.99999rem){.only-sm-tac{text-align:center!important}}@media screen and (max-width:59.99999rem){.only-sm-tar{text-align:right!important}}@media screen and (min-width:60rem){.md-tal{text-align:left!important}}@media screen and (min-width:60rem){.md-tac{text-align:center!important}}@media screen and (min-width:60rem){.md-tar{text-align:right!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tal{text-align:left!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tac{text-align:center!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-tar{text-align:right!important}}@media screen and (min-width:90rem){.lg-tal{text-align:left!important}}@media screen and (min-width:90rem){.lg-tac{text-align:center!important}}@media screen and (min-width:90rem){.lg-tar{text-align:right!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tal{text-align:left!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tac{text-align:center!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-tar{text-align:right!important}}@media screen and (min-width:144rem){.xlg-tal{text-align:left!important}}@media screen and (min-width:144rem){.xlg-tac{text-align:center!important}}@media screen and (min-width:144rem){.xlg-tar{text-align:right!important}}@media screen and (min-width:144rem){.only-xlg-tal{text-align:left!important}}@media screen and (min-width:144rem){.only-xlg-tac{text-align:center!important}}@media screen and (min-width:144rem){.only-xlg-tar{text-align:right!important}}.pa1{padding:1rem!important}@media screen and (min-width:30rem){.sm-pa1{padding:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa1{padding:1rem!important}}@media screen and (min-width:60rem){.md-pa1{padding:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa1{padding:1rem!important}}@media screen and (min-width:90rem){.lg-pa1{padding:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa1{padding:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pa1,.xlg-pa1{padding:1rem!important}}.pt1{padding-top:1rem!important}@media screen and (min-width:30rem){.sm-pt1{padding-top:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt1{padding-top:1rem!important}}@media screen and (min-width:60rem){.md-pt1{padding-top:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt1{padding-top:1rem!important}}@media screen and (min-width:90rem){.lg-pt1{padding-top:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt1{padding-top:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pt1,.xlg-pt1{padding-top:1rem!important}}.pr1{padding-right:1rem!important}@media screen and (min-width:30rem){.sm-pr1{padding-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr1{padding-right:1rem!important}}@media screen and (min-width:60rem){.md-pr1{padding-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr1{padding-right:1rem!important}}@media screen and (min-width:90rem){.lg-pr1{padding-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr1{padding-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pr1,.xlg-pr1{padding-right:1rem!important}}.pb1{padding-bottom:1rem!important}@media screen and (min-width:30rem){.sm-pb1{padding-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb1{padding-bottom:1rem!important}}@media screen and (min-width:60rem){.md-pb1{padding-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb1{padding-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-pb1{padding-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb1{padding-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pb1,.xlg-pb1{padding-bottom:1rem!important}}.pl1{padding-left:1rem!important}@media screen and (min-width:30rem){.sm-pl1{padding-left:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl1{padding-left:1rem!important}}@media screen and (min-width:60rem){.md-pl1{padding-left:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl1{padding-left:1rem!important}}@media screen and (min-width:90rem){.lg-pl1{padding-left:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl1{padding-left:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pl1,.xlg-pl1{padding-left:1rem!important}}.pv1{padding-top:1rem!important;padding-bottom:1rem!important}@media screen and (min-width:30rem){.sm-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:60rem){.md-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-pv1,.xlg-pv1{padding-top:1rem!important;padding-bottom:1rem!important}}.ph1{padding-left:1rem!important;padding-right:1rem!important}@media screen and (min-width:30rem){.sm-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:60rem){.md-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:90rem){.lg-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph1{padding-left:1rem!important;padding-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ph1,.xlg-ph1{padding-left:1rem!important;padding-right:1rem!important}}.pa2{padding:2rem!important}@media screen and (min-width:30rem){.sm-pa2{padding:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa2{padding:2rem!important}}@media screen and (min-width:60rem){.md-pa2{padding:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa2{padding:2rem!important}}@media screen and (min-width:90rem){.lg-pa2{padding:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa2{padding:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pa2,.xlg-pa2{padding:2rem!important}}.pt2{padding-top:2rem!important}@media screen and (min-width:30rem){.sm-pt2{padding-top:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt2{padding-top:2rem!important}}@media screen and (min-width:60rem){.md-pt2{padding-top:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt2{padding-top:2rem!important}}@media screen and (min-width:90rem){.lg-pt2{padding-top:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt2{padding-top:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pt2,.xlg-pt2{padding-top:2rem!important}}.pr2{padding-right:2rem!important}@media screen and (min-width:30rem){.sm-pr2{padding-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr2{padding-right:2rem!important}}@media screen and (min-width:60rem){.md-pr2{padding-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr2{padding-right:2rem!important}}@media screen and (min-width:90rem){.lg-pr2{padding-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr2{padding-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pr2,.xlg-pr2{padding-right:2rem!important}}.pb2{padding-bottom:2rem!important}@media screen and (min-width:30rem){.sm-pb2{padding-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb2{padding-bottom:2rem!important}}@media screen and (min-width:60rem){.md-pb2{padding-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb2{padding-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-pb2{padding-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb2{padding-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pb2,.xlg-pb2{padding-bottom:2rem!important}}.pl2{padding-left:2rem!important}@media screen and (min-width:30rem){.sm-pl2{padding-left:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl2{padding-left:2rem!important}}@media screen and (min-width:60rem){.md-pl2{padding-left:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl2{padding-left:2rem!important}}@media screen and (min-width:90rem){.lg-pl2{padding-left:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl2{padding-left:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pl2,.xlg-pl2{padding-left:2rem!important}}.pv2{padding-top:2rem!important;padding-bottom:2rem!important}@media screen and (min-width:30rem){.sm-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:60rem){.md-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-pv2,.xlg-pv2{padding-top:2rem!important;padding-bottom:2rem!important}}.ph2,td,th{padding-left:2rem!important;padding-right:2rem!important}@media screen and (min-width:30rem){.sm-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:60rem){.md-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:90rem){.lg-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph2{padding-left:2rem!important;padding-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ph2,.xlg-ph2{padding-left:2rem!important;padding-right:2rem!important}}.pa3{padding:3rem!important}@media screen and (min-width:30rem){.sm-pa3{padding:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa3{padding:3rem!important}}@media screen and (min-width:60rem){.md-pa3{padding:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa3{padding:3rem!important}}@media screen and (min-width:90rem){.lg-pa3{padding:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa3{padding:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pa3,.xlg-pa3{padding:3rem!important}}.pt3{padding-top:3rem!important}@media screen and (min-width:30rem){.sm-pt3{padding-top:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt3{padding-top:3rem!important}}@media screen and (min-width:60rem){.md-pt3{padding-top:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt3{padding-top:3rem!important}}@media screen and (min-width:90rem){.lg-pt3{padding-top:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt3{padding-top:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pt3,.xlg-pt3{padding-top:3rem!important}}.pr3{padding-right:3rem!important}@media screen and (min-width:30rem){.sm-pr3{padding-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr3{padding-right:3rem!important}}@media screen and (min-width:60rem){.md-pr3{padding-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr3{padding-right:3rem!important}}@media screen and (min-width:90rem){.lg-pr3{padding-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr3{padding-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pr3,.xlg-pr3{padding-right:3rem!important}}.pb3{padding-bottom:3rem!important}@media screen and (min-width:30rem){.sm-pb3{padding-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb3{padding-bottom:3rem!important}}@media screen and (min-width:60rem){.md-pb3{padding-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb3{padding-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-pb3{padding-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb3{padding-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pb3,.xlg-pb3{padding-bottom:3rem!important}}.pl3{padding-left:3rem!important}@media screen and (min-width:30rem){.sm-pl3{padding-left:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl3{padding-left:3rem!important}}@media screen and (min-width:60rem){.md-pl3{padding-left:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl3{padding-left:3rem!important}}@media screen and (min-width:90rem){.lg-pl3{padding-left:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl3{padding-left:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pl3,.xlg-pl3{padding-left:3rem!important}}.pv3{padding-top:3rem!important;padding-bottom:3rem!important}@media screen and (min-width:30rem){.sm-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:60rem){.md-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-pv3,.xlg-pv3{padding-top:3rem!important;padding-bottom:3rem!important}}.ph3{padding-left:3rem!important;padding-right:3rem!important}@media screen and (min-width:30rem){.sm-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:60rem){.md-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:90rem){.lg-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph3{padding-left:3rem!important;padding-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ph3,.xlg-ph3{padding-left:3rem!important;padding-right:3rem!important}}.pa4{padding:4rem!important}@media screen and (min-width:30rem){.sm-pa4{padding:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa4{padding:4rem!important}}@media screen and (min-width:60rem){.md-pa4{padding:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa4{padding:4rem!important}}@media screen and (min-width:90rem){.lg-pa4{padding:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa4{padding:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pa4,.xlg-pa4{padding:4rem!important}}.pt4{padding-top:4rem!important}@media screen and (min-width:30rem){.sm-pt4{padding-top:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt4{padding-top:4rem!important}}@media screen and (min-width:60rem){.md-pt4{padding-top:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt4{padding-top:4rem!important}}@media screen and (min-width:90rem){.lg-pt4{padding-top:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt4{padding-top:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pt4,.xlg-pt4{padding-top:4rem!important}}.pr4{padding-right:4rem!important}@media screen and (min-width:30rem){.sm-pr4{padding-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr4{padding-right:4rem!important}}@media screen and (min-width:60rem){.md-pr4{padding-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr4{padding-right:4rem!important}}@media screen and (min-width:90rem){.lg-pr4{padding-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr4{padding-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pr4,.xlg-pr4{padding-right:4rem!important}}.pb4{padding-bottom:4rem!important}@media screen and (min-width:30rem){.sm-pb4{padding-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb4{padding-bottom:4rem!important}}@media screen and (min-width:60rem){.md-pb4{padding-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb4{padding-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-pb4{padding-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb4{padding-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pb4,.xlg-pb4{padding-bottom:4rem!important}}.pl4{padding-left:4rem!important}@media screen and (min-width:30rem){.sm-pl4{padding-left:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl4{padding-left:4rem!important}}@media screen and (min-width:60rem){.md-pl4{padding-left:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl4{padding-left:4rem!important}}@media screen and (min-width:90rem){.lg-pl4{padding-left:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl4{padding-left:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pl4,.xlg-pl4{padding-left:4rem!important}}.pv4{padding-top:4rem!important;padding-bottom:4rem!important}@media screen and (min-width:30rem){.sm-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:60rem){.md-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-pv4,.xlg-pv4{padding-top:4rem!important;padding-bottom:4rem!important}}.ph4{padding-left:4rem!important;padding-right:4rem!important}@media screen and (min-width:30rem){.sm-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:60rem){.md-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:90rem){.lg-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph4{padding-left:4rem!important;padding-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ph4,.xlg-ph4{padding-left:4rem!important;padding-right:4rem!important}}.pa5{padding:5rem!important}@media screen and (min-width:30rem){.sm-pa5{padding:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa5{padding:5rem!important}}@media screen and (min-width:60rem){.md-pa5{padding:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa5{padding:5rem!important}}@media screen and (min-width:90rem){.lg-pa5{padding:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa5{padding:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pa5,.xlg-pa5{padding:5rem!important}}.pt5{padding-top:5rem!important}@media screen and (min-width:30rem){.sm-pt5{padding-top:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt5{padding-top:5rem!important}}@media screen and (min-width:60rem){.md-pt5{padding-top:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt5{padding-top:5rem!important}}@media screen and (min-width:90rem){.lg-pt5{padding-top:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt5{padding-top:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pt5,.xlg-pt5{padding-top:5rem!important}}.pr5{padding-right:5rem!important}@media screen and (min-width:30rem){.sm-pr5{padding-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr5{padding-right:5rem!important}}@media screen and (min-width:60rem){.md-pr5{padding-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr5{padding-right:5rem!important}}@media screen and (min-width:90rem){.lg-pr5{padding-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr5{padding-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pr5,.xlg-pr5{padding-right:5rem!important}}.pb5{padding-bottom:5rem!important}@media screen and (min-width:30rem){.sm-pb5{padding-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb5{padding-bottom:5rem!important}}@media screen and (min-width:60rem){.md-pb5{padding-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb5{padding-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-pb5{padding-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb5{padding-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pb5,.xlg-pb5{padding-bottom:5rem!important}}.pl5{padding-left:5rem!important}@media screen and (min-width:30rem){.sm-pl5{padding-left:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl5{padding-left:5rem!important}}@media screen and (min-width:60rem){.md-pl5{padding-left:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl5{padding-left:5rem!important}}@media screen and (min-width:90rem){.lg-pl5{padding-left:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl5{padding-left:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pl5,.xlg-pl5{padding-left:5rem!important}}.pv5{padding-top:5rem!important;padding-bottom:5rem!important}@media screen and (min-width:30rem){.sm-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:60rem){.md-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-pv5,.xlg-pv5{padding-top:5rem!important;padding-bottom:5rem!important}}.ph5{padding-left:5rem!important;padding-right:5rem!important}@media screen and (min-width:30rem){.sm-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:60rem){.md-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:90rem){.lg-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph5{padding-left:5rem!important;padding-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ph5,.xlg-ph5{padding-left:5rem!important;padding-right:5rem!important}}.pa6{padding:6rem!important}@media screen and (min-width:30rem){.sm-pa6{padding:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa6{padding:6rem!important}}@media screen and (min-width:60rem){.md-pa6{padding:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa6{padding:6rem!important}}@media screen and (min-width:90rem){.lg-pa6{padding:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa6{padding:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pa6,.xlg-pa6{padding:6rem!important}}.pt6{padding-top:6rem!important}@media screen and (min-width:30rem){.sm-pt6{padding-top:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt6{padding-top:6rem!important}}@media screen and (min-width:60rem){.md-pt6{padding-top:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt6{padding-top:6rem!important}}@media screen and (min-width:90rem){.lg-pt6{padding-top:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt6{padding-top:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pt6,.xlg-pt6{padding-top:6rem!important}}.pr6{padding-right:6rem!important}@media screen and (min-width:30rem){.sm-pr6{padding-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr6{padding-right:6rem!important}}@media screen and (min-width:60rem){.md-pr6{padding-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr6{padding-right:6rem!important}}@media screen and (min-width:90rem){.lg-pr6{padding-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr6{padding-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pr6,.xlg-pr6{padding-right:6rem!important}}.pb6{padding-bottom:6rem!important}@media screen and (min-width:30rem){.sm-pb6{padding-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb6{padding-bottom:6rem!important}}@media screen and (min-width:60rem){.md-pb6{padding-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb6{padding-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-pb6{padding-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb6{padding-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pb6,.xlg-pb6{padding-bottom:6rem!important}}.pl6{padding-left:6rem!important}@media screen and (min-width:30rem){.sm-pl6{padding-left:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl6{padding-left:6rem!important}}@media screen and (min-width:60rem){.md-pl6{padding-left:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl6{padding-left:6rem!important}}@media screen and (min-width:90rem){.lg-pl6{padding-left:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl6{padding-left:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pl6,.xlg-pl6{padding-left:6rem!important}}.pv6{padding-top:6rem!important;padding-bottom:6rem!important}@media screen and (min-width:30rem){.sm-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:60rem){.md-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-pv6,.xlg-pv6{padding-top:6rem!important;padding-bottom:6rem!important}}.ph6{padding-left:6rem!important;padding-right:6rem!important}@media screen and (min-width:30rem){.sm-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:60rem){.md-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:90rem){.lg-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph6{padding-left:6rem!important;padding-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ph6,.xlg-ph6{padding-left:6rem!important;padding-right:6rem!important}}.pa7{padding:7rem!important}@media screen and (min-width:30rem){.sm-pa7{padding:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa7{padding:7rem!important}}@media screen and (min-width:60rem){.md-pa7{padding:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa7{padding:7rem!important}}@media screen and (min-width:90rem){.lg-pa7{padding:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa7{padding:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pa7,.xlg-pa7{padding:7rem!important}}.pt7{padding-top:7rem!important}@media screen and (min-width:30rem){.sm-pt7{padding-top:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt7{padding-top:7rem!important}}@media screen and (min-width:60rem){.md-pt7{padding-top:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt7{padding-top:7rem!important}}@media screen and (min-width:90rem){.lg-pt7{padding-top:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt7{padding-top:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pt7,.xlg-pt7{padding-top:7rem!important}}.pr7{padding-right:7rem!important}@media screen and (min-width:30rem){.sm-pr7{padding-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr7{padding-right:7rem!important}}@media screen and (min-width:60rem){.md-pr7{padding-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr7{padding-right:7rem!important}}@media screen and (min-width:90rem){.lg-pr7{padding-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr7{padding-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pr7,.xlg-pr7{padding-right:7rem!important}}.pb7{padding-bottom:7rem!important}@media screen and (min-width:30rem){.sm-pb7{padding-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb7{padding-bottom:7rem!important}}@media screen and (min-width:60rem){.md-pb7{padding-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb7{padding-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-pb7{padding-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb7{padding-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pb7,.xlg-pb7{padding-bottom:7rem!important}}.pl7{padding-left:7rem!important}@media screen and (min-width:30rem){.sm-pl7{padding-left:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl7{padding-left:7rem!important}}@media screen and (min-width:60rem){.md-pl7{padding-left:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl7{padding-left:7rem!important}}@media screen and (min-width:90rem){.lg-pl7{padding-left:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl7{padding-left:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pl7,.xlg-pl7{padding-left:7rem!important}}.pv7{padding-top:7rem!important;padding-bottom:7rem!important}@media screen and (min-width:30rem){.sm-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:60rem){.md-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-pv7,.xlg-pv7{padding-top:7rem!important;padding-bottom:7rem!important}}.ph7{padding-left:7rem!important;padding-right:7rem!important}@media screen and (min-width:30rem){.sm-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:60rem){.md-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:90rem){.lg-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph7{padding-left:7rem!important;padding-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ph7,.xlg-ph7{padding-left:7rem!important;padding-right:7rem!important}}.pa8{padding:8rem!important}@media screen and (min-width:30rem){.sm-pa8{padding:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa8{padding:8rem!important}}@media screen and (min-width:60rem){.md-pa8{padding:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa8{padding:8rem!important}}@media screen and (min-width:90rem){.lg-pa8{padding:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa8{padding:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pa8,.xlg-pa8{padding:8rem!important}}.pt8{padding-top:8rem!important}@media screen and (min-width:30rem){.sm-pt8{padding-top:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt8{padding-top:8rem!important}}@media screen and (min-width:60rem){.md-pt8{padding-top:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt8{padding-top:8rem!important}}@media screen and (min-width:90rem){.lg-pt8{padding-top:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt8{padding-top:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pt8,.xlg-pt8{padding-top:8rem!important}}.pr8{padding-right:8rem!important}@media screen and (min-width:30rem){.sm-pr8{padding-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr8{padding-right:8rem!important}}@media screen and (min-width:60rem){.md-pr8{padding-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr8{padding-right:8rem!important}}@media screen and (min-width:90rem){.lg-pr8{padding-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr8{padding-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pr8,.xlg-pr8{padding-right:8rem!important}}.pb8{padding-bottom:8rem!important}@media screen and (min-width:30rem){.sm-pb8{padding-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb8{padding-bottom:8rem!important}}@media screen and (min-width:60rem){.md-pb8{padding-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb8{padding-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-pb8{padding-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb8{padding-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pb8,.xlg-pb8{padding-bottom:8rem!important}}.pl8{padding-left:8rem!important}@media screen and (min-width:30rem){.sm-pl8{padding-left:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl8{padding-left:8rem!important}}@media screen and (min-width:60rem){.md-pl8{padding-left:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl8{padding-left:8rem!important}}@media screen and (min-width:90rem){.lg-pl8{padding-left:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl8{padding-left:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pl8,.xlg-pl8{padding-left:8rem!important}}.pv8{padding-top:8rem!important;padding-bottom:8rem!important}@media screen and (min-width:30rem){.sm-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:60rem){.md-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-pv8,.xlg-pv8{padding-top:8rem!important;padding-bottom:8rem!important}}.ph8{padding-left:8rem!important;padding-right:8rem!important}@media screen and (min-width:30rem){.sm-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:60rem){.md-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:90rem){.lg-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph8{padding-left:8rem!important;padding-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ph8,.xlg-ph8{padding-left:8rem!important;padding-right:8rem!important}}.pa9{padding:9rem!important}@media screen and (min-width:30rem){.sm-pa9{padding:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa9{padding:9rem!important}}@media screen and (min-width:60rem){.md-pa9{padding:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa9{padding:9rem!important}}@media screen and (min-width:90rem){.lg-pa9{padding:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa9{padding:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pa9,.xlg-pa9{padding:9rem!important}}.pt9{padding-top:9rem!important}@media screen and (min-width:30rem){.sm-pt9{padding-top:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt9{padding-top:9rem!important}}@media screen and (min-width:60rem){.md-pt9{padding-top:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt9{padding-top:9rem!important}}@media screen and (min-width:90rem){.lg-pt9{padding-top:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt9{padding-top:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pt9,.xlg-pt9{padding-top:9rem!important}}.pr9{padding-right:9rem!important}@media screen and (min-width:30rem){.sm-pr9{padding-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr9{padding-right:9rem!important}}@media screen and (min-width:60rem){.md-pr9{padding-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr9{padding-right:9rem!important}}@media screen and (min-width:90rem){.lg-pr9{padding-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr9{padding-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pr9,.xlg-pr9{padding-right:9rem!important}}.pb9{padding-bottom:9rem!important}@media screen and (min-width:30rem){.sm-pb9{padding-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb9{padding-bottom:9rem!important}}@media screen and (min-width:60rem){.md-pb9{padding-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb9{padding-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-pb9{padding-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb9{padding-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pb9,.xlg-pb9{padding-bottom:9rem!important}}.pl9{padding-left:9rem!important}@media screen and (min-width:30rem){.sm-pl9{padding-left:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl9{padding-left:9rem!important}}@media screen and (min-width:60rem){.md-pl9{padding-left:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl9{padding-left:9rem!important}}@media screen and (min-width:90rem){.lg-pl9{padding-left:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl9{padding-left:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pl9,.xlg-pl9{padding-left:9rem!important}}.pv9{padding-top:9rem!important;padding-bottom:9rem!important}@media screen and (min-width:30rem){.sm-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:60rem){.md-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-pv9,.xlg-pv9{padding-top:9rem!important;padding-bottom:9rem!important}}.ph9{padding-left:9rem!important;padding-right:9rem!important}@media screen and (min-width:30rem){.sm-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:60rem){.md-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:90rem){.lg-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph9{padding-left:9rem!important;padding-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ph9,.xlg-ph9{padding-left:9rem!important;padding-right:9rem!important}}.pa10{padding:10rem!important}@media screen and (min-width:30rem){.sm-pa10{padding:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pa10{padding:10rem!important}}@media screen and (min-width:60rem){.md-pa10{padding:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa10{padding:10rem!important}}@media screen and (min-width:90rem){.lg-pa10{padding:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa10{padding:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pa10,.xlg-pa10{padding:10rem!important}}.pt10{padding-top:10rem!important}@media screen and (min-width:30rem){.sm-pt10{padding-top:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pt10{padding-top:10rem!important}}@media screen and (min-width:60rem){.md-pt10{padding-top:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt10{padding-top:10rem!important}}@media screen and (min-width:90rem){.lg-pt10{padding-top:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt10{padding-top:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pt10,.xlg-pt10{padding-top:10rem!important}}.pr10{padding-right:10rem!important}@media screen and (min-width:30rem){.sm-pr10{padding-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pr10{padding-right:10rem!important}}@media screen and (min-width:60rem){.md-pr10{padding-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr10{padding-right:10rem!important}}@media screen and (min-width:90rem){.lg-pr10{padding-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr10{padding-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pr10,.xlg-pr10{padding-right:10rem!important}}.pb10{padding-bottom:10rem!important}@media screen and (min-width:30rem){.sm-pb10{padding-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pb10{padding-bottom:10rem!important}}@media screen and (min-width:60rem){.md-pb10{padding-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb10{padding-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-pb10{padding-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb10{padding-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pb10,.xlg-pb10{padding-bottom:10rem!important}}.pl10{padding-left:10rem!important}@media screen and (min-width:30rem){.sm-pl10{padding-left:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pl10{padding-left:10rem!important}}@media screen and (min-width:60rem){.md-pl10{padding-left:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl10{padding-left:10rem!important}}@media screen and (min-width:90rem){.lg-pl10{padding-left:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl10{padding-left:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pl10,.xlg-pl10{padding-left:10rem!important}}.pv10{padding-top:10rem!important;padding-bottom:10rem!important}@media screen and (min-width:30rem){.sm-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:60rem){.md-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-pv10,.xlg-pv10{padding-top:10rem!important;padding-bottom:10rem!important}}.ph10{padding-left:10rem!important;padding-right:10rem!important}@media screen and (min-width:30rem){.sm-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:60rem){.md-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:90rem){.lg-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph10{padding-left:10rem!important;padding-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ph10,.xlg-ph10{padding-left:10rem!important;padding-right:10rem!important}}.pa0{padding:0!important}@media screen and (min-width:30rem){.sm-pa0{padding:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pa0{padding:0!important}}@media screen and (min-width:60rem){.md-pa0{padding:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pa0{padding:0!important}}@media screen and (min-width:90rem){.lg-pa0{padding:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pa0{padding:0!important}}@media screen and (min-width:144rem){.only-xlg-pa0,.xlg-pa0{padding:0!important}}.pt0{padding-top:0!important}@media screen and (min-width:30rem){.sm-pt0{padding-top:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pt0{padding-top:0!important}}@media screen and (min-width:60rem){.md-pt0{padding-top:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pt0{padding-top:0!important}}@media screen and (min-width:90rem){.lg-pt0{padding-top:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pt0{padding-top:0!important}}@media screen and (min-width:144rem){.only-xlg-pt0,.xlg-pt0{padding-top:0!important}}.pr0{padding-right:0!important}@media screen and (min-width:30rem){.sm-pr0{padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pr0{padding-right:0!important}}@media screen and (min-width:60rem){.md-pr0{padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pr0{padding-right:0!important}}@media screen and (min-width:90rem){.lg-pr0{padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pr0{padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-pr0,.xlg-pr0{padding-right:0!important}}.pb0{padding-bottom:0!important}@media screen and (min-width:30rem){.sm-pb0{padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pb0{padding-bottom:0!important}}@media screen and (min-width:60rem){.md-pb0{padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pb0{padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-pb0{padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pb0{padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-pb0,.xlg-pb0{padding-bottom:0!important}}.pl0{padding-left:0!important}@media screen and (min-width:30rem){.sm-pl0{padding-left:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pl0{padding-left:0!important}}@media screen and (min-width:60rem){.md-pl0{padding-left:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pl0{padding-left:0!important}}@media screen and (min-width:90rem){.lg-pl0{padding-left:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pl0{padding-left:0!important}}@media screen and (min-width:144rem){.only-xlg-pl0,.xlg-pl0{padding-left:0!important}}.pv0{padding-top:0!important;padding-bottom:0!important}@media screen and (min-width:30rem){.sm-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem){.md-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-pv0{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-pv0,.xlg-pv0{padding-top:0!important;padding-bottom:0!important}}.ph0{padding-left:0!important;padding-right:0!important}@media screen and (min-width:30rem){.sm-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem){.md-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem){.lg-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ph0{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-ph0,.xlg-ph0{padding-left:0!important;padding-right:0!important}}.ma1{margin:1rem!important}@media screen and (min-width:30rem){.sm-ma1{margin:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma1{margin:1rem!important}}@media screen and (min-width:60rem){.md-ma1{margin:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma1{margin:1rem!important}}@media screen and (min-width:90rem){.lg-ma1{margin:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma1{margin:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ma1,.xlg-ma1{margin:1rem!important}}.mt1{margin-top:1rem!important}@media screen and (min-width:30rem){.sm-mt1{margin-top:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt1{margin-top:1rem!important}}@media screen and (min-width:60rem){.md-mt1{margin-top:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt1{margin-top:1rem!important}}@media screen and (min-width:90rem){.lg-mt1{margin-top:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt1{margin-top:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mt1,.xlg-mt1{margin-top:1rem!important}}.mr1{margin-right:1rem!important}@media screen and (min-width:30rem){.sm-mr1{margin-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr1{margin-right:1rem!important}}@media screen and (min-width:60rem){.md-mr1{margin-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr1{margin-right:1rem!important}}@media screen and (min-width:90rem){.lg-mr1{margin-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr1{margin-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mr1,.xlg-mr1{margin-right:1rem!important}}.mb1{margin-bottom:1rem!important}@media screen and (min-width:30rem){.sm-mb1{margin-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb1{margin-bottom:1rem!important}}@media screen and (min-width:60rem){.md-mb1{margin-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb1{margin-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-mb1{margin-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb1{margin-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mb1,.xlg-mb1{margin-bottom:1rem!important}}.ml1{margin-left:1rem!important}@media screen and (min-width:30rem){.sm-ml1{margin-left:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml1{margin-left:1rem!important}}@media screen and (min-width:60rem){.md-ml1{margin-left:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml1{margin-left:1rem!important}}@media screen and (min-width:90rem){.lg-ml1{margin-left:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml1{margin-left:1rem!important}}@media screen and (min-width:144rem){.only-xlg-ml1,.xlg-ml1{margin-left:1rem!important}}.mv1{margin-top:1rem!important;margin-bottom:1rem!important}@media screen and (min-width:30rem){.sm-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:60rem){.md-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:90rem){.lg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mv1,.xlg-mv1{margin-top:1rem!important;margin-bottom:1rem!important}}.mh1{margin-left:1rem!important;margin-right:1rem!important}@media screen and (min-width:30rem){.sm-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:60rem){.md-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:90rem){.lg-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh1{margin-left:1rem!important;margin-right:1rem!important}}@media screen and (min-width:144rem){.only-xlg-mh1,.xlg-mh1{margin-left:1rem!important;margin-right:1rem!important}}.ma2{margin:2rem!important}@media screen and (min-width:30rem){.sm-ma2{margin:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma2{margin:2rem!important}}@media screen and (min-width:60rem){.md-ma2{margin:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma2{margin:2rem!important}}@media screen and (min-width:90rem){.lg-ma2{margin:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma2{margin:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ma2,.xlg-ma2{margin:2rem!important}}.mt2{margin-top:2rem!important}@media screen and (min-width:30rem){.sm-mt2{margin-top:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt2{margin-top:2rem!important}}@media screen and (min-width:60rem){.md-mt2{margin-top:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt2{margin-top:2rem!important}}@media screen and (min-width:90rem){.lg-mt2{margin-top:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt2{margin-top:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mt2,.xlg-mt2{margin-top:2rem!important}}.mr2{margin-right:2rem!important}@media screen and (min-width:30rem){.sm-mr2{margin-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr2{margin-right:2rem!important}}@media screen and (min-width:60rem){.md-mr2{margin-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr2{margin-right:2rem!important}}@media screen and (min-width:90rem){.lg-mr2{margin-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr2{margin-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mr2,.xlg-mr2{margin-right:2rem!important}}.main-content>pre,.mb2{margin-bottom:2rem!important}@media screen and (min-width:30rem){.sm-mb2{margin-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb2{margin-bottom:2rem!important}}@media screen and (min-width:60rem){.md-mb2{margin-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb2{margin-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-mb2{margin-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb2{margin-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mb2,.xlg-mb2{margin-bottom:2rem!important}}.ml2{margin-left:2rem!important}@media screen and (min-width:30rem){.sm-ml2{margin-left:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml2{margin-left:2rem!important}}@media screen and (min-width:60rem){.md-ml2{margin-left:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml2{margin-left:2rem!important}}@media screen and (min-width:90rem){.lg-ml2{margin-left:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml2{margin-left:2rem!important}}@media screen and (min-width:144rem){.only-xlg-ml2,.xlg-ml2{margin-left:2rem!important}}.mv2{margin-top:2rem!important;margin-bottom:2rem!important}@media screen and (min-width:30rem){.sm-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:60rem){.md-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:90rem){.lg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mv2,.xlg-mv2{margin-top:2rem!important;margin-bottom:2rem!important}}.mh2{margin-left:2rem!important;margin-right:2rem!important}@media screen and (min-width:30rem){.sm-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:60rem){.md-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:90rem){.lg-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh2{margin-left:2rem!important;margin-right:2rem!important}}@media screen and (min-width:144rem){.only-xlg-mh2,.xlg-mh2{margin-left:2rem!important;margin-right:2rem!important}}.ma3{margin:3rem!important}@media screen and (min-width:30rem){.sm-ma3{margin:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma3{margin:3rem!important}}@media screen and (min-width:60rem){.md-ma3{margin:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma3{margin:3rem!important}}@media screen and (min-width:90rem){.lg-ma3{margin:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma3{margin:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ma3,.xlg-ma3{margin:3rem!important}}.mt3{margin-top:3rem!important}@media screen and (min-width:30rem){.sm-mt3{margin-top:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt3{margin-top:3rem!important}}@media screen and (min-width:60rem){.md-mt3{margin-top:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt3{margin-top:3rem!important}}@media screen and (min-width:90rem){.lg-mt3{margin-top:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt3{margin-top:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mt3,.xlg-mt3{margin-top:3rem!important}}.mr3{margin-right:3rem!important}@media screen and (min-width:30rem){.sm-mr3{margin-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr3{margin-right:3rem!important}}@media screen and (min-width:60rem){.md-mr3{margin-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr3{margin-right:3rem!important}}@media screen and (min-width:90rem){.lg-mr3{margin-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr3{margin-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mr3,.xlg-mr3{margin-right:3rem!important}}.mb3{margin-bottom:3rem!important}@media screen and (min-width:30rem){.sm-mb3{margin-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb3{margin-bottom:3rem!important}}@media screen and (min-width:60rem){.md-mb3{margin-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb3{margin-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-mb3{margin-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb3{margin-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mb3,.xlg-mb3{margin-bottom:3rem!important}}.ml3{margin-left:3rem!important}@media screen and (min-width:30rem){.sm-ml3{margin-left:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml3{margin-left:3rem!important}}@media screen and (min-width:60rem){.md-ml3{margin-left:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml3{margin-left:3rem!important}}@media screen and (min-width:90rem){.lg-ml3{margin-left:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml3{margin-left:3rem!important}}@media screen and (min-width:144rem){.only-xlg-ml3,.xlg-ml3{margin-left:3rem!important}}.mv3{margin-top:3rem!important;margin-bottom:3rem!important}@media screen and (min-width:30rem){.sm-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:60rem){.md-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:90rem){.lg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mv3,.xlg-mv3{margin-top:3rem!important;margin-bottom:3rem!important}}.mh3{margin-left:3rem!important;margin-right:3rem!important}@media screen and (min-width:30rem){.sm-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:60rem){.md-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:90rem){.lg-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh3{margin-left:3rem!important;margin-right:3rem!important}}@media screen and (min-width:144rem){.only-xlg-mh3,.xlg-mh3{margin-left:3rem!important;margin-right:3rem!important}}.ma4{margin:4rem!important}@media screen and (min-width:30rem){.sm-ma4{margin:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma4{margin:4rem!important}}@media screen and (min-width:60rem){.md-ma4{margin:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma4{margin:4rem!important}}@media screen and (min-width:90rem){.lg-ma4{margin:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma4{margin:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ma4,.xlg-ma4{margin:4rem!important}}.mt4{margin-top:4rem!important}@media screen and (min-width:30rem){.sm-mt4{margin-top:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt4{margin-top:4rem!important}}@media screen and (min-width:60rem){.md-mt4{margin-top:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt4{margin-top:4rem!important}}@media screen and (min-width:90rem){.lg-mt4{margin-top:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt4{margin-top:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mt4,.xlg-mt4{margin-top:4rem!important}}.mr4{margin-right:4rem!important}@media screen and (min-width:30rem){.sm-mr4{margin-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr4{margin-right:4rem!important}}@media screen and (min-width:60rem){.md-mr4{margin-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr4{margin-right:4rem!important}}@media screen and (min-width:90rem){.lg-mr4{margin-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr4{margin-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mr4,.xlg-mr4{margin-right:4rem!important}}.mb4{margin-bottom:4rem!important}@media screen and (min-width:30rem){.sm-mb4{margin-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb4{margin-bottom:4rem!important}}@media screen and (min-width:60rem){.main-content>pre,.md-mb4{margin-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb4{margin-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-mb4{margin-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb4{margin-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mb4,.xlg-mb4{margin-bottom:4rem!important}}.ml4{margin-left:4rem!important}@media screen and (min-width:30rem){.sm-ml4{margin-left:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml4{margin-left:4rem!important}}@media screen and (min-width:60rem){.md-ml4{margin-left:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml4{margin-left:4rem!important}}@media screen and (min-width:90rem){.lg-ml4{margin-left:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml4{margin-left:4rem!important}}@media screen and (min-width:144rem){.only-xlg-ml4,.xlg-ml4{margin-left:4rem!important}}.mv4{margin-top:4rem!important;margin-bottom:4rem!important}@media screen and (min-width:30rem){.sm-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:60rem){.md-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:90rem){.lg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mv4,.xlg-mv4{margin-top:4rem!important;margin-bottom:4rem!important}}.mh4{margin-left:4rem!important;margin-right:4rem!important}@media screen and (min-width:30rem){.sm-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:60rem){.md-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:90rem){.lg-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh4{margin-left:4rem!important;margin-right:4rem!important}}@media screen and (min-width:144rem){.only-xlg-mh4,.xlg-mh4{margin-left:4rem!important;margin-right:4rem!important}}.ma5{margin:5rem!important}@media screen and (min-width:30rem){.sm-ma5{margin:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma5{margin:5rem!important}}@media screen and (min-width:60rem){.md-ma5{margin:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma5{margin:5rem!important}}@media screen and (min-width:90rem){.lg-ma5{margin:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma5{margin:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ma5,.xlg-ma5{margin:5rem!important}}.mt5{margin-top:5rem!important}@media screen and (min-width:30rem){.sm-mt5{margin-top:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt5{margin-top:5rem!important}}@media screen and (min-width:60rem){.md-mt5{margin-top:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt5{margin-top:5rem!important}}@media screen and (min-width:90rem){.lg-mt5{margin-top:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt5{margin-top:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mt5,.xlg-mt5{margin-top:5rem!important}}.mr5{margin-right:5rem!important}@media screen and (min-width:30rem){.sm-mr5{margin-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr5{margin-right:5rem!important}}@media screen and (min-width:60rem){.md-mr5{margin-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr5{margin-right:5rem!important}}@media screen and (min-width:90rem){.lg-mr5{margin-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr5{margin-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mr5,.xlg-mr5{margin-right:5rem!important}}.mb5{margin-bottom:5rem!important}@media screen and (min-width:30rem){.sm-mb5{margin-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb5{margin-bottom:5rem!important}}@media screen and (min-width:60rem){.md-mb5{margin-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb5{margin-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-mb5{margin-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb5{margin-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mb5,.xlg-mb5{margin-bottom:5rem!important}}.ml5{margin-left:5rem!important}@media screen and (min-width:30rem){.sm-ml5{margin-left:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml5{margin-left:5rem!important}}@media screen and (min-width:60rem){.md-ml5{margin-left:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml5{margin-left:5rem!important}}@media screen and (min-width:90rem){.lg-ml5{margin-left:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml5{margin-left:5rem!important}}@media screen and (min-width:144rem){.only-xlg-ml5,.xlg-ml5{margin-left:5rem!important}}.mv5{margin-top:5rem!important;margin-bottom:5rem!important}@media screen and (min-width:30rem){.sm-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:60rem){.md-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:90rem){.lg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mv5,.xlg-mv5{margin-top:5rem!important;margin-bottom:5rem!important}}.mh5{margin-left:5rem!important;margin-right:5rem!important}@media screen and (min-width:30rem){.sm-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:60rem){.md-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:90rem){.lg-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh5{margin-left:5rem!important;margin-right:5rem!important}}@media screen and (min-width:144rem){.only-xlg-mh5,.xlg-mh5{margin-left:5rem!important;margin-right:5rem!important}}.ma6{margin:6rem!important}@media screen and (min-width:30rem){.sm-ma6{margin:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma6{margin:6rem!important}}@media screen and (min-width:60rem){.md-ma6{margin:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma6{margin:6rem!important}}@media screen and (min-width:90rem){.lg-ma6{margin:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma6{margin:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ma6,.xlg-ma6{margin:6rem!important}}.mt6{margin-top:6rem!important}@media screen and (min-width:30rem){.sm-mt6{margin-top:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt6{margin-top:6rem!important}}@media screen and (min-width:60rem){.md-mt6{margin-top:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt6{margin-top:6rem!important}}@media screen and (min-width:90rem){.lg-mt6{margin-top:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt6{margin-top:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mt6,.xlg-mt6{margin-top:6rem!important}}.mr6{margin-right:6rem!important}@media screen and (min-width:30rem){.sm-mr6{margin-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr6{margin-right:6rem!important}}@media screen and (min-width:60rem){.md-mr6{margin-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr6{margin-right:6rem!important}}@media screen and (min-width:90rem){.lg-mr6{margin-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr6{margin-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mr6,.xlg-mr6{margin-right:6rem!important}}.mb6{margin-bottom:6rem!important}@media screen and (min-width:30rem){.sm-mb6{margin-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb6{margin-bottom:6rem!important}}@media screen and (min-width:60rem){.md-mb6{margin-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb6{margin-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-mb6{margin-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb6{margin-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mb6,.xlg-mb6{margin-bottom:6rem!important}}.ml6{margin-left:6rem!important}@media screen and (min-width:30rem){.sm-ml6{margin-left:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml6{margin-left:6rem!important}}@media screen and (min-width:60rem){.md-ml6{margin-left:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml6{margin-left:6rem!important}}@media screen and (min-width:90rem){.lg-ml6{margin-left:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml6{margin-left:6rem!important}}@media screen and (min-width:144rem){.only-xlg-ml6,.xlg-ml6{margin-left:6rem!important}}.mv6{margin-top:6rem!important;margin-bottom:6rem!important}@media screen and (min-width:30rem){.sm-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:60rem){.md-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:90rem){.lg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mv6,.xlg-mv6{margin-top:6rem!important;margin-bottom:6rem!important}}.mh6{margin-left:6rem!important;margin-right:6rem!important}@media screen and (min-width:30rem){.sm-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:60rem){.md-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:90rem){.lg-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh6{margin-left:6rem!important;margin-right:6rem!important}}@media screen and (min-width:144rem){.only-xlg-mh6,.xlg-mh6{margin-left:6rem!important;margin-right:6rem!important}}.ma7{margin:7rem!important}@media screen and (min-width:30rem){.sm-ma7{margin:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma7{margin:7rem!important}}@media screen and (min-width:60rem){.md-ma7{margin:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma7{margin:7rem!important}}@media screen and (min-width:90rem){.lg-ma7{margin:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma7{margin:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ma7,.xlg-ma7{margin:7rem!important}}.mt7{margin-top:7rem!important}@media screen and (min-width:30rem){.sm-mt7{margin-top:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt7{margin-top:7rem!important}}@media screen and (min-width:60rem){.md-mt7{margin-top:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt7{margin-top:7rem!important}}@media screen and (min-width:90rem){.lg-mt7{margin-top:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt7{margin-top:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mt7,.xlg-mt7{margin-top:7rem!important}}.mr7{margin-right:7rem!important}@media screen and (min-width:30rem){.sm-mr7{margin-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr7{margin-right:7rem!important}}@media screen and (min-width:60rem){.md-mr7{margin-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr7{margin-right:7rem!important}}@media screen and (min-width:90rem){.lg-mr7{margin-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr7{margin-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mr7,.xlg-mr7{margin-right:7rem!important}}.mb7{margin-bottom:7rem!important}@media screen and (min-width:30rem){.sm-mb7{margin-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb7{margin-bottom:7rem!important}}@media screen and (min-width:60rem){.md-mb7{margin-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb7{margin-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-mb7{margin-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb7{margin-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mb7,.xlg-mb7{margin-bottom:7rem!important}}.ml7{margin-left:7rem!important}@media screen and (min-width:30rem){.sm-ml7{margin-left:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml7{margin-left:7rem!important}}@media screen and (min-width:60rem){.md-ml7{margin-left:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml7{margin-left:7rem!important}}@media screen and (min-width:90rem){.lg-ml7{margin-left:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml7{margin-left:7rem!important}}@media screen and (min-width:144rem){.only-xlg-ml7,.xlg-ml7{margin-left:7rem!important}}.mv7{margin-top:7rem!important;margin-bottom:7rem!important}@media screen and (min-width:30rem){.sm-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:60rem){.md-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:90rem){.lg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mv7,.xlg-mv7{margin-top:7rem!important;margin-bottom:7rem!important}}.mh7{margin-left:7rem!important;margin-right:7rem!important}@media screen and (min-width:30rem){.sm-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:60rem){.md-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:90rem){.lg-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh7{margin-left:7rem!important;margin-right:7rem!important}}@media screen and (min-width:144rem){.only-xlg-mh7,.xlg-mh7{margin-left:7rem!important;margin-right:7rem!important}}.ma8{margin:8rem!important}@media screen and (min-width:30rem){.sm-ma8{margin:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma8{margin:8rem!important}}@media screen and (min-width:60rem){.md-ma8{margin:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma8{margin:8rem!important}}@media screen and (min-width:90rem){.lg-ma8{margin:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma8{margin:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ma8,.xlg-ma8{margin:8rem!important}}.mt8{margin-top:8rem!important}@media screen and (min-width:30rem){.sm-mt8{margin-top:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt8{margin-top:8rem!important}}@media screen and (min-width:60rem){.md-mt8{margin-top:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt8{margin-top:8rem!important}}@media screen and (min-width:90rem){.lg-mt8{margin-top:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt8{margin-top:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mt8,.xlg-mt8{margin-top:8rem!important}}.mr8{margin-right:8rem!important}@media screen and (min-width:30rem){.sm-mr8{margin-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr8{margin-right:8rem!important}}@media screen and (min-width:60rem){.md-mr8{margin-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr8{margin-right:8rem!important}}@media screen and (min-width:90rem){.lg-mr8{margin-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr8{margin-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mr8,.xlg-mr8{margin-right:8rem!important}}.mb8{margin-bottom:8rem!important}@media screen and (min-width:30rem){.sm-mb8{margin-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb8{margin-bottom:8rem!important}}@media screen and (min-width:60rem){.md-mb8{margin-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb8{margin-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-mb8{margin-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb8{margin-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mb8,.xlg-mb8{margin-bottom:8rem!important}}.ml8{margin-left:8rem!important}@media screen and (min-width:30rem){.sm-ml8{margin-left:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml8{margin-left:8rem!important}}@media screen and (min-width:60rem){.md-ml8{margin-left:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml8{margin-left:8rem!important}}@media screen and (min-width:90rem){.lg-ml8{margin-left:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml8{margin-left:8rem!important}}@media screen and (min-width:144rem){.only-xlg-ml8,.xlg-ml8{margin-left:8rem!important}}.mv8{margin-top:8rem!important;margin-bottom:8rem!important}@media screen and (min-width:30rem){.sm-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:60rem){.md-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:90rem){.lg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mv8,.xlg-mv8{margin-top:8rem!important;margin-bottom:8rem!important}}.mh8{margin-left:8rem!important;margin-right:8rem!important}@media screen and (min-width:30rem){.sm-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:60rem){.md-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:90rem){.lg-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh8{margin-left:8rem!important;margin-right:8rem!important}}@media screen and (min-width:144rem){.only-xlg-mh8,.xlg-mh8{margin-left:8rem!important;margin-right:8rem!important}}.ma9{margin:9rem!important}@media screen and (min-width:30rem){.sm-ma9{margin:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma9{margin:9rem!important}}@media screen and (min-width:60rem){.md-ma9{margin:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma9{margin:9rem!important}}@media screen and (min-width:90rem){.lg-ma9{margin:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma9{margin:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ma9,.xlg-ma9{margin:9rem!important}}.mt9{margin-top:9rem!important}@media screen and (min-width:30rem){.sm-mt9{margin-top:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt9{margin-top:9rem!important}}@media screen and (min-width:60rem){.md-mt9{margin-top:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt9{margin-top:9rem!important}}@media screen and (min-width:90rem){.lg-mt9{margin-top:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt9{margin-top:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mt9,.xlg-mt9{margin-top:9rem!important}}.mr9{margin-right:9rem!important}@media screen and (min-width:30rem){.sm-mr9{margin-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr9{margin-right:9rem!important}}@media screen and (min-width:60rem){.md-mr9{margin-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr9{margin-right:9rem!important}}@media screen and (min-width:90rem){.lg-mr9{margin-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr9{margin-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mr9,.xlg-mr9{margin-right:9rem!important}}.mb9{margin-bottom:9rem!important}@media screen and (min-width:30rem){.sm-mb9{margin-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb9{margin-bottom:9rem!important}}@media screen and (min-width:60rem){.md-mb9{margin-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb9{margin-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-mb9{margin-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb9{margin-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mb9,.xlg-mb9{margin-bottom:9rem!important}}.ml9{margin-left:9rem!important}@media screen and (min-width:30rem){.sm-ml9{margin-left:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml9{margin-left:9rem!important}}@media screen and (min-width:60rem){.md-ml9{margin-left:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml9{margin-left:9rem!important}}@media screen and (min-width:90rem){.lg-ml9{margin-left:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml9{margin-left:9rem!important}}@media screen and (min-width:144rem){.only-xlg-ml9,.xlg-ml9{margin-left:9rem!important}}.mv9{margin-top:9rem!important;margin-bottom:9rem!important}@media screen and (min-width:30rem){.sm-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:60rem){.md-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:90rem){.lg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mv9,.xlg-mv9{margin-top:9rem!important;margin-bottom:9rem!important}}.mh9{margin-left:9rem!important;margin-right:9rem!important}@media screen and (min-width:30rem){.sm-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:60rem){.md-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:90rem){.lg-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh9{margin-left:9rem!important;margin-right:9rem!important}}@media screen and (min-width:144rem){.only-xlg-mh9,.xlg-mh9{margin-left:9rem!important;margin-right:9rem!important}}.ma10{margin:10rem!important}@media screen and (min-width:30rem){.sm-ma10{margin:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ma10{margin:10rem!important}}@media screen and (min-width:60rem){.md-ma10{margin:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma10{margin:10rem!important}}@media screen and (min-width:90rem){.lg-ma10{margin:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma10{margin:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ma10,.xlg-ma10{margin:10rem!important}}.mt10{margin-top:10rem!important}@media screen and (min-width:30rem){.sm-mt10{margin-top:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mt10{margin-top:10rem!important}}@media screen and (min-width:60rem){.md-mt10{margin-top:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt10{margin-top:10rem!important}}@media screen and (min-width:90rem){.lg-mt10{margin-top:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt10{margin-top:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mt10,.xlg-mt10{margin-top:10rem!important}}.mr10{margin-right:10rem!important}@media screen and (min-width:30rem){.sm-mr10{margin-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mr10{margin-right:10rem!important}}@media screen and (min-width:60rem){.md-mr10{margin-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr10{margin-right:10rem!important}}@media screen and (min-width:90rem){.lg-mr10{margin-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr10{margin-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mr10,.xlg-mr10{margin-right:10rem!important}}.mb10{margin-bottom:10rem!important}@media screen and (min-width:30rem){.sm-mb10{margin-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mb10{margin-bottom:10rem!important}}@media screen and (min-width:60rem){.md-mb10{margin-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb10{margin-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-mb10{margin-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb10{margin-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mb10,.xlg-mb10{margin-bottom:10rem!important}}.ml10{margin-left:10rem!important}@media screen and (min-width:30rem){.sm-ml10{margin-left:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-ml10{margin-left:10rem!important}}@media screen and (min-width:60rem){.md-ml10{margin-left:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml10{margin-left:10rem!important}}@media screen and (min-width:90rem){.lg-ml10{margin-left:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml10{margin-left:10rem!important}}@media screen and (min-width:144rem){.only-xlg-ml10,.xlg-ml10{margin-left:10rem!important}}.mv10{margin-top:10rem!important;margin-bottom:10rem!important}@media screen and (min-width:30rem){.sm-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:60rem){.md-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:90rem){.lg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mv10,.xlg-mv10{margin-top:10rem!important;margin-bottom:10rem!important}}.mh10{margin-left:10rem!important;margin-right:10rem!important}@media screen and (min-width:30rem){.sm-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (max-width:59.99999rem){.only-sm-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:60rem){.md-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:90rem){.lg-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh10{margin-left:10rem!important;margin-right:10rem!important}}@media screen and (min-width:144rem){.only-xlg-mh10,.xlg-mh10{margin-left:10rem!important;margin-right:10rem!important}}.ma0{margin:0!important}@media screen and (min-width:30rem){.sm-ma0{margin:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ma0{margin:0!important}}@media screen and (min-width:60rem){.md-ma0{margin:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ma0{margin:0!important}}@media screen and (min-width:90rem){.lg-ma0{margin:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ma0{margin:0!important}}@media screen and (min-width:144rem){.only-xlg-ma0,.xlg-ma0{margin:0!important}}.mt0{margin-top:0!important}@media screen and (min-width:30rem){.sm-mt0{margin-top:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mt0{margin-top:0!important}}@media screen and (min-width:60rem){.md-mt0{margin-top:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mt0{margin-top:0!important}}@media screen and (min-width:90rem){.lg-mt0{margin-top:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mt0{margin-top:0!important}}@media screen and (min-width:144rem){.only-xlg-mt0,.xlg-mt0{margin-top:0!important}}.mr0{margin-right:0!important}@media screen and (min-width:30rem){.sm-mr0{margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mr0{margin-right:0!important}}@media screen and (min-width:60rem){.md-mr0{margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mr0{margin-right:0!important}}@media screen and (min-width:90rem){.lg-mr0{margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mr0{margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-mr0,.xlg-mr0{margin-right:0!important}}.mb0{margin-bottom:0!important}@media screen and (min-width:30rem){.sm-mb0{margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mb0{margin-bottom:0!important}}@media screen and (min-width:60rem){.md-mb0{margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mb0{margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-mb0{margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mb0{margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-mb0,.xlg-mb0{margin-bottom:0!important}}.ml0{margin-left:0!important}@media screen and (min-width:30rem){.sm-ml0{margin-left:0!important}}@media screen and (max-width:59.99999rem){.only-sm-ml0{margin-left:0!important}}@media screen and (min-width:60rem){.md-ml0{margin-left:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ml0{margin-left:0!important}}@media screen and (min-width:90rem){.lg-ml0{margin-left:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ml0{margin-left:0!important}}@media screen and (min-width:144rem){.only-xlg-ml0,.xlg-ml0{margin-left:0!important}}.mv0{margin-top:0!important;margin-bottom:0!important}@media screen and (min-width:30rem){.sm-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem){.md-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mv0{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-mv0,.xlg-mv0{margin-top:0!important;margin-bottom:0!important}}.mh0{margin-left:0!important;margin-right:0!important}@media screen and (min-width:30rem){.sm-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem){.md-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem){.lg-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-mh0{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-mh0,.xlg-mh0{margin-left:0!important;margin-right:0!important}}.xp{padding:0!important}.xpv{padding-top:0!important;padding-bottom:0!important}.xph{padding-left:0!important;padding-right:0!important}.xm{margin:0!important}.xmv{margin-top:0!important;margin-bottom:0!important}.xmh{margin-left:0!important;margin-right:0!important}@media screen and (min-width:30rem){.sm-xp{padding:0!important}}@media screen and (min-width:30rem){.sm-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:30rem){.sm-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:30rem){.sm-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (max-width:59.99999rem){.only-sm-xp{padding:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xph{padding-left:0!important;padding-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:60rem){.md-xp{padding:0!important}}@media screen and (min-width:60rem){.md-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem){.md-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem){.md-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xp{padding:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:90rem){.lg-xp{padding:0!important}}@media screen and (min-width:90rem){.lg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem){.lg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem){.lg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xp{padding:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:144rem){.xlg-xp{padding:0!important}}@media screen and (min-width:144rem){.xlg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.xlg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.xlg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:144rem){.only-xlg-xp{padding:0!important}}@media screen and (min-width:144rem){.only-xlg-xpv{padding-top:0!important;padding-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-xph{padding-left:0!important;padding-right:0!important}}@media screen and (min-width:144rem){.only-xlg-center{padding-left:auto!important;padding-right:auto!important}}@media screen and (min-width:30rem){.sm-xm{margin:0!important}}@media screen and (min-width:30rem){.sm-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:30rem){.sm-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:30rem){.sm-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (max-width:59.99999rem){.only-sm-xm{margin:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (max-width:59.99999rem){.only-sm-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (max-width:59.99999rem){.only-sm-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:60rem){.md-xm{margin:0!important}}@media screen and (min-width:60rem){.md-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem){.md-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem){.md-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xm{margin:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:90rem){.lg-xm{margin:0!important}}@media screen and (min-width:90rem){.lg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem){.lg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem){.lg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xm{margin:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:144rem){.xlg-xm{margin:0!important}}@media screen and (min-width:144rem){.xlg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.xlg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.xlg-center{margin-left:auto!important;margin-right:auto!important}}@media screen and (min-width:144rem){.only-xlg-xm{margin:0!important}}@media screen and (min-width:144rem){.only-xlg-xmv{margin-top:0!important;margin-bottom:0!important}}@media screen and (min-width:144rem){.only-xlg-xmh{margin-left:0!important;margin-right:0!important}}@media screen and (min-width:144rem){.only-xlg-center{margin-left:auto!important;margin-right:auto!important}}.lh1{line-height:1!important}.lh1-1{line-height:1.1!important}.lh1-2{line-height:1.2!important}.lh1-3{line-height:1.3!important}.lh1-4{line-height:1.4!important}.lh1-5{line-height:1.5!important}.lh1-6{line-height:1.6!important}.lh1-7{line-height:1.7!important}.lh1-8{line-height:1.8!important}.lh1-9{line-height:1.9!important}.lh2{line-height:2!important}@media screen and (min-width:30rem){.sm-lh1{line-height:1!important}}@media screen and (min-width:30rem){.sm-lh1-1{line-height:1.1!important}}@media screen and (min-width:30rem){.sm-lh1-2{line-height:1.2!important}}@media screen and (min-width:30rem){.sm-lh1-3{line-height:1.3!important}}@media screen and (min-width:30rem){.sm-lh1-4{line-height:1.4!important}}@media screen and (min-width:30rem){.sm-lh1-5{line-height:1.5!important}}@media screen and (min-width:30rem){.sm-lh1-6{line-height:1.6!important}}@media screen and (min-width:30rem){.sm-lh1-7{line-height:1.7!important}}@media screen and (min-width:30rem){.sm-lh1-8{line-height:1.8!important}}@media screen and (min-width:30rem){.sm-lh1-9{line-height:1.9!important}}@media screen and (min-width:30rem){.sm-lh2{line-height:2!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1{line-height:1!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-1{line-height:1.1!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-2{line-height:1.2!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-3{line-height:1.3!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-4{line-height:1.4!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-5{line-height:1.5!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-6{line-height:1.6!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-7{line-height:1.7!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-8{line-height:1.8!important}}@media screen and (max-width:59.99999rem){.only-sm-lh1-9{line-height:1.9!important}}@media screen and (max-width:59.99999rem){.only-sm-lh2{line-height:2!important}}@media screen and (min-width:60rem){.md-lh1{line-height:1!important}}@media screen and (min-width:60rem){.md-lh1-1{line-height:1.1!important}}@media screen and (min-width:60rem){.md-lh1-2{line-height:1.2!important}}@media screen and (min-width:60rem){.md-lh1-3{line-height:1.3!important}}@media screen and (min-width:60rem){.md-lh1-4{line-height:1.4!important}}@media screen and (min-width:60rem){.md-lh1-5{line-height:1.5!important}}@media screen and (min-width:60rem){.md-lh1-6{line-height:1.6!important}}@media screen and (min-width:60rem){.md-lh1-7{line-height:1.7!important}}@media screen and (min-width:60rem){.md-lh1-8{line-height:1.8!important}}@media screen and (min-width:60rem){.md-lh1-9{line-height:1.9!important}}@media screen and (min-width:60rem){.md-lh2{line-height:2!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1{line-height:1!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-1{line-height:1.1!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-2{line-height:1.2!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-3{line-height:1.3!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-4{line-height:1.4!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-5{line-height:1.5!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-6{line-height:1.6!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-7{line-height:1.7!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-8{line-height:1.8!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh1-9{line-height:1.9!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-lh2{line-height:2!important}}@media screen and (min-width:90rem){.lg-lh1{line-height:1!important}}@media screen and (min-width:90rem){.lg-lh1-1{line-height:1.1!important}}@media screen and (min-width:90rem){.lg-lh1-2{line-height:1.2!important}}@media screen and (min-width:90rem){.lg-lh1-3{line-height:1.3!important}}@media screen and (min-width:90rem){.lg-lh1-4{line-height:1.4!important}}@media screen and (min-width:90rem){.lg-lh1-5{line-height:1.5!important}}@media screen and (min-width:90rem){.lg-lh1-6{line-height:1.6!important}}@media screen and (min-width:90rem){.lg-lh1-7{line-height:1.7!important}}@media screen and (min-width:90rem){.lg-lh1-8{line-height:1.8!important}}@media screen and (min-width:90rem){.lg-lh1-9{line-height:1.9!important}}@media screen and (min-width:90rem){.lg-lh2{line-height:2!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1{line-height:1!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-1{line-height:1.1!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-2{line-height:1.2!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-3{line-height:1.3!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-4{line-height:1.4!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-5{line-height:1.5!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-6{line-height:1.6!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-7{line-height:1.7!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-8{line-height:1.8!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh1-9{line-height:1.9!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-lh2{line-height:2!important}}@media screen and (min-width:144rem){.xlg-lh1{line-height:1!important}}@media screen and (min-width:144rem){.xlg-lh1-1{line-height:1.1!important}}@media screen and (min-width:144rem){.xlg-lh1-2{line-height:1.2!important}}@media screen and (min-width:144rem){.xlg-lh1-3{line-height:1.3!important}}@media screen and (min-width:144rem){.xlg-lh1-4{line-height:1.4!important}}@media screen and (min-width:144rem){.xlg-lh1-5{line-height:1.5!important}}@media screen and (min-width:144rem){.xlg-lh1-6{line-height:1.6!important}}@media screen and (min-width:144rem){.xlg-lh1-7{line-height:1.7!important}}@media screen and (min-width:144rem){.xlg-lh1-8{line-height:1.8!important}}@media screen and (min-width:144rem){.xlg-lh1-9{line-height:1.9!important}}@media screen and (min-width:144rem){.xlg-lh2{line-height:2!important}}@media screen and (min-width:144rem){.only-xlg-lh1{line-height:1!important}}@media screen and (min-width:144rem){.only-xlg-lh1-1{line-height:1.1!important}}@media screen and (min-width:144rem){.only-xlg-lh1-2{line-height:1.2!important}}@media screen and (min-width:144rem){.only-xlg-lh1-3{line-height:1.3!important}}@media screen and (min-width:144rem){.only-xlg-lh1-4{line-height:1.4!important}}@media screen and (min-width:144rem){.only-xlg-lh1-5{line-height:1.5!important}}@media screen and (min-width:144rem){.only-xlg-lh1-6{line-height:1.6!important}}@media screen and (min-width:144rem){.only-xlg-lh1-7{line-height:1.7!important}}@media screen and (min-width:144rem){.only-xlg-lh1-8{line-height:1.8!important}}@media screen and (min-width:144rem){.only-xlg-lh1-9{line-height:1.9!important}}@media screen and (min-width:144rem){.only-xlg-lh2{line-height:2!important}}.ls1{letter-spacing:.1rem}@media screen and (min-width:30rem){.sm-ls1{letter-spacing:.1rem}}@media screen and (max-width:59.99999rem){.only-sm-ls1{letter-spacing:.1rem}}@media screen and (min-width:60rem){.md-ls1{letter-spacing:.1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls1{letter-spacing:.1rem}}@media screen and (min-width:90rem){.lg-ls1{letter-spacing:.1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls1{letter-spacing:.1rem}}@media screen and (min-width:144rem){.only-xlg-ls1,.xlg-ls1{letter-spacing:.1rem}}.ls2{letter-spacing:.2rem}@media screen and (min-width:30rem){.sm-ls2{letter-spacing:.2rem}}@media screen and (max-width:59.99999rem){.only-sm-ls2{letter-spacing:.2rem}}@media screen and (min-width:60rem){.md-ls2{letter-spacing:.2rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls2{letter-spacing:.2rem}}@media screen and (min-width:90rem){.lg-ls2{letter-spacing:.2rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls2{letter-spacing:.2rem}}@media screen and (min-width:144rem){.only-xlg-ls2,.xlg-ls2{letter-spacing:.2rem}}.ls3{letter-spacing:.3rem}@media screen and (min-width:30rem){.sm-ls3{letter-spacing:.3rem}}@media screen and (max-width:59.99999rem){.only-sm-ls3{letter-spacing:.3rem}}@media screen and (min-width:60rem){.md-ls3{letter-spacing:.3rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls3{letter-spacing:.3rem}}@media screen and (min-width:90rem){.lg-ls3{letter-spacing:.3rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls3{letter-spacing:.3rem}}@media screen and (min-width:144rem){.only-xlg-ls3,.xlg-ls3{letter-spacing:.3rem}}.ls4{letter-spacing:.4rem}@media screen and (min-width:30rem){.sm-ls4{letter-spacing:.4rem}}@media screen and (max-width:59.99999rem){.only-sm-ls4{letter-spacing:.4rem}}@media screen and (min-width:60rem){.md-ls4{letter-spacing:.4rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls4{letter-spacing:.4rem}}@media screen and (min-width:90rem){.lg-ls4{letter-spacing:.4rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls4{letter-spacing:.4rem}}@media screen and (min-width:144rem){.only-xlg-ls4,.xlg-ls4{letter-spacing:.4rem}}.ls5{letter-spacing:.5rem}@media screen and (min-width:30rem){.sm-ls5{letter-spacing:.5rem}}@media screen and (max-width:59.99999rem){.only-sm-ls5{letter-spacing:.5rem}}@media screen and (min-width:60rem){.md-ls5{letter-spacing:.5rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls5{letter-spacing:.5rem}}@media screen and (min-width:90rem){.lg-ls5{letter-spacing:.5rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls5{letter-spacing:.5rem}}@media screen and (min-width:144rem){.only-xlg-ls5,.xlg-ls5{letter-spacing:.5rem}}.ls6{letter-spacing:.6rem}@media screen and (min-width:30rem){.sm-ls6{letter-spacing:.6rem}}@media screen and (max-width:59.99999rem){.only-sm-ls6{letter-spacing:.6rem}}@media screen and (min-width:60rem){.md-ls6{letter-spacing:.6rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls6{letter-spacing:.6rem}}@media screen and (min-width:90rem){.lg-ls6{letter-spacing:.6rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls6{letter-spacing:.6rem}}@media screen and (min-width:144rem){.only-xlg-ls6,.xlg-ls6{letter-spacing:.6rem}}.ls7{letter-spacing:.7rem}@media screen and (min-width:30rem){.sm-ls7{letter-spacing:.7rem}}@media screen and (max-width:59.99999rem){.only-sm-ls7{letter-spacing:.7rem}}@media screen and (min-width:60rem){.md-ls7{letter-spacing:.7rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls7{letter-spacing:.7rem}}@media screen and (min-width:90rem){.lg-ls7{letter-spacing:.7rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls7{letter-spacing:.7rem}}@media screen and (min-width:144rem){.only-xlg-ls7,.xlg-ls7{letter-spacing:.7rem}}.ls8{letter-spacing:.8rem}@media screen and (min-width:30rem){.sm-ls8{letter-spacing:.8rem}}@media screen and (max-width:59.99999rem){.only-sm-ls8{letter-spacing:.8rem}}@media screen and (min-width:60rem){.md-ls8{letter-spacing:.8rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls8{letter-spacing:.8rem}}@media screen and (min-width:90rem){.lg-ls8{letter-spacing:.8rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls8{letter-spacing:.8rem}}@media screen and (min-width:144rem){.only-xlg-ls8,.xlg-ls8{letter-spacing:.8rem}}.ls9{letter-spacing:.9rem}@media screen and (min-width:30rem){.sm-ls9{letter-spacing:.9rem}}@media screen and (max-width:59.99999rem){.only-sm-ls9{letter-spacing:.9rem}}@media screen and (min-width:60rem){.md-ls9{letter-spacing:.9rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls9{letter-spacing:.9rem}}@media screen and (min-width:90rem){.lg-ls9{letter-spacing:.9rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls9{letter-spacing:.9rem}}@media screen and (min-width:144rem){.only-xlg-ls9,.xlg-ls9{letter-spacing:.9rem}}.ls10{letter-spacing:1rem}@media screen and (min-width:30rem){.sm-ls10{letter-spacing:1rem}}@media screen and (max-width:59.99999rem){.only-sm-ls10{letter-spacing:1rem}}@media screen and (min-width:60rem){.md-ls10{letter-spacing:1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ls10{letter-spacing:1rem}}@media screen and (min-width:90rem){.lg-ls10{letter-spacing:1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ls10{letter-spacing:1rem}}@media screen and (min-width:144rem){.only-xlg-ls10,.xlg-ls10{letter-spacing:1rem}}.ft1{font-size:10px;font-size:1rem}@media screen and (min-width:30rem){.sm-ft1{font-size:10px;font-size:1rem}}@media screen and (max-width:59.99999rem){.only-sm-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:60rem){.md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:90rem){.lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft1{font-size:10px;font-size:1rem}}@media screen and (min-width:144rem){.only-xlg-ft1,.xlg-ft1{font-size:10px;font-size:1rem}}.ft2{font-size:11px;font-size:1.1rem}@media screen and (min-width:30rem){.sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (max-width:59.99999rem){.only-sm-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:60rem){.md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:90rem){.lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft2{font-size:11px;font-size:1.1rem}}@media screen and (min-width:144rem){.only-xlg-ft2,.xlg-ft2{font-size:11px;font-size:1.1rem}}.ft3{font-size:12px;font-size:1.2rem}@media screen and (min-width:30rem){.sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (max-width:59.99999rem){.only-sm-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:60rem){.md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:90rem){.lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft3{font-size:12px;font-size:1.2rem}}@media screen and (min-width:144rem){.only-xlg-ft3,.xlg-ft3{font-size:12px;font-size:1.2rem}}.ft4{font-size:15px;font-size:1.5rem}@media screen and (min-width:30rem){.sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (max-width:59.99999rem){.only-sm-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:60rem){.md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:90rem){.lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft4{font-size:15px;font-size:1.5rem}}@media screen and (min-width:144rem){.only-xlg-ft4,.xlg-ft4{font-size:15px;font-size:1.5rem}}.ft5{font-size:16.5px;font-size:1.65rem}@media screen and (min-width:30rem){.sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (max-width:59.99999rem){.only-sm-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:60rem){.md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:90rem){.lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft5{font-size:16.5px;font-size:1.65rem}}@media screen and (min-width:144rem){.only-xlg-ft5,.xlg-ft5{font-size:16.5px;font-size:1.65rem}}.ft6{font-size:18px;font-size:1.8rem}@media screen and (min-width:30rem){.sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (max-width:59.99999rem){.only-sm-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:60rem){.md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:90rem){.lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft6{font-size:18px;font-size:1.8rem}}@media screen and (min-width:144rem){.only-xlg-ft6,.xlg-ft6{font-size:18px;font-size:1.8rem}}.ft7{font-size:22.5px;font-size:2.25rem}@media screen and (min-width:30rem){.sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (max-width:59.99999rem){.only-sm-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:60rem){.md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:90rem){.lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft7{font-size:22.5px;font-size:2.25rem}}@media screen and (min-width:144rem){.only-xlg-ft7,.xlg-ft7{font-size:22.5px;font-size:2.25rem}}.ft8{font-size:24.75px;font-size:2.475rem}@media screen and (min-width:30rem){.sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (max-width:59.99999rem){.only-sm-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:60rem){.md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:90rem){.lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft8{font-size:24.75px;font-size:2.475rem}}@media screen and (min-width:144rem){.only-xlg-ft8,.xlg-ft8{font-size:24.75px;font-size:2.475rem}}.ft9{font-size:27px;font-size:2.7rem}@media screen and (min-width:30rem){.sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (max-width:59.99999rem){.only-sm-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:60rem){.md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:90rem){.lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft9{font-size:27px;font-size:2.7rem}}@media screen and (min-width:144rem){.only-xlg-ft9,.xlg-ft9{font-size:27px;font-size:2.7rem}}.ft10{font-size:33.75px;font-size:3.375rem}@media screen and (min-width:30rem){.sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (max-width:59.99999rem){.only-sm-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:60rem){.md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:90rem){.lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft10{font-size:33.75px;font-size:3.375rem}}@media screen and (min-width:144rem){.only-xlg-ft10,.xlg-ft10{font-size:33.75px;font-size:3.375rem}}.ft11{font-size:37.13px;font-size:3.713rem}@media screen and (min-width:30rem){.sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (max-width:59.99999rem){.only-sm-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:60rem){.md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:90rem){.lg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft11{font-size:37.13px;font-size:3.713rem}}@media screen and (min-width:144rem){.only-xlg-ft11,.xlg-ft11{font-size:37.13px;font-size:3.713rem}}.ft12{font-size:40.5px;font-size:4.05rem}@media screen and (min-width:30rem){.sm-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (max-width:59.99999rem){.only-sm-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:60rem){.md-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:90rem){.lg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft12{font-size:40.5px;font-size:4.05rem}}@media screen and (min-width:144rem){.only-xlg-ft12,.xlg-ft12{font-size:40.5px;font-size:4.05rem}}.ft13{font-size:50.63px;font-size:5.063rem}@media screen and (min-width:30rem){.sm-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (max-width:59.99999rem){.only-sm-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:60rem){.md-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:90rem){.lg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft13{font-size:50.63px;font-size:5.063rem}}@media screen and (min-width:144rem){.only-xlg-ft13,.xlg-ft13{font-size:50.63px;font-size:5.063rem}}.ft14{font-size:55.69px;font-size:5.569rem}@media screen and (min-width:30rem){.sm-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (max-width:59.99999rem){.only-sm-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:60rem){.md-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:90rem){.lg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft14{font-size:55.69px;font-size:5.569rem}}@media screen and (min-width:144rem){.only-xlg-ft14,.xlg-ft14{font-size:55.69px;font-size:5.569rem}}.ft15{font-size:60.75px;font-size:6.075rem}@media screen and (min-width:30rem){.sm-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (max-width:59.99999rem){.only-sm-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:60rem){.md-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:90rem){.lg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft15{font-size:60.75px;font-size:6.075rem}}@media screen and (min-width:144rem){.only-xlg-ft15,.xlg-ft15{font-size:60.75px;font-size:6.075rem}}.ft16{font-size:75.94px;font-size:7.594rem}@media screen and (min-width:30rem){.sm-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (max-width:59.99999rem){.only-sm-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:60rem){.md-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:90rem){.lg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft16{font-size:75.94px;font-size:7.594rem}}@media screen and (min-width:144rem){.only-xlg-ft16,.xlg-ft16{font-size:75.94px;font-size:7.594rem}}.ft17{font-size:83.53px;font-size:8.353rem}@media screen and (min-width:30rem){.sm-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (max-width:59.99999rem){.only-sm-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:60rem){.md-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:90rem){.lg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ft17{font-size:83.53px;font-size:8.353rem}}@media screen and (min-width:144rem){.only-xlg-ft17,.xlg-ft17{font-size:83.53px;font-size:8.353rem}}.fw1,.fwthin{font-weight:100!important}.fw2,.fwxlight{font-weight:200!important}.fw3,.fwlight{font-weight:300!important}.fw4,.fwnormal{font-weight:400!important}.fw5,.fwmedium{font-weight:500!important}.fw6,.fwsemibold,th{font-weight:600!important}.fw7,.fwbold{font-weight:700!important}.fw8,.fwxbold{font-weight:800!important}.fw9,.fwblack{font-weight:900!important}.center{margin-left:auto;margin-right:auto}.sans-serif{font-family:Helvetica Neue,Helvetica,Arial,sans-serif}.serif{font-family:Merriweather,Georgia,serif}.code{font-family:Menlo,Consolas,Monaco,Andale Mono,monospace}.clearfix:after{content:"";display:table;clear:both}.hidetext{text-indent:100%;white-space:nowrap;overflow:hidden}.default-hover:focus,.default-hover:hover,.dim:focus,.dim:hover{opacity:.5}.default-active:active,.dim:active{opacity:.8}.site-width{max-width:114rem}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.ell{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.xbrdr{border:none}.imax{max-width:100%;width:auto;height:auto}.i100{width:100%}.bgcover{background-size:cover}.bgcenter{background-position:50%}.vam{vertical-align:middle}.xts{text-shadow:none!important}.wrap{margin-left:auto;margin-right:auto;padding-left:30px;padding-right:30px}.wrap--xpad{padding-left:0;padding-right:0}.frame{margin-left:-30px;margin-right:-30px}@media screen and (min-width:60rem){.frame{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:59.99999rem){.frame--stay{display:-ms-flexbox;display:flex}}.frame--xpad [class^=blk]{padding-left:0;padding-right:0}.blk,.blk1,.blk2,.blk3,.blk4,.blk5,.blk6,.blk7,.blk8,.blk9,.blk10,.blk11,.blk12,.lg-blk1,.lg-blk2,.lg-blk3,.lg-blk4,.lg-blk5,.lg-blk6,.lg-blk7,.lg-blk8,.lg-blk9,.lg-blk10,.lg-blk11,.lg-blk12,.md-blk1,.md-blk2,.md-blk3,.md-blk4,.md-blk5,.md-blk6,.md-blk7,.md-blk8,.md-blk9,.md-blk10,.md-blk11,.md-blk12,.only-lg-blk1,.only-lg-blk2,.only-lg-blk3,.only-lg-blk4,.only-lg-blk5,.only-lg-blk6,.only-lg-blk7,.only-lg-blk8,.only-lg-blk9,.only-lg-blk10,.only-lg-blk11,.only-lg-blk12,.only-md-blk1,.only-md-blk2,.only-md-blk3,.only-md-blk4,.only-md-blk5,.only-md-blk6,.only-md-blk7,.only-md-blk8,.only-md-blk9,.only-md-blk10,.only-md-blk11,.only-md-blk12,.only-sm-blk1,.only-sm-blk2,.only-sm-blk3,.only-sm-blk4,.only-sm-blk5,.only-sm-blk6,.only-sm-blk7,.only-sm-blk8,.only-sm-blk9,.only-sm-blk10,.only-sm-blk11,.only-sm-blk12,.only-xlg-blk1,.only-xlg-blk2,.only-xlg-blk3,.only-xlg-blk4,.only-xlg-blk5,.only-xlg-blk6,.only-xlg-blk7,.only-xlg-blk8,.only-xlg-blk9,.only-xlg-blk10,.only-xlg-blk11,.only-xlg-blk12,.sm-blk1,.sm-blk2,.sm-blk3,.sm-blk4,.sm-blk5,.sm-blk6,.sm-blk7,.sm-blk8,.sm-blk9,.sm-blk10,.sm-blk11,.sm-blk12,.xlg-blk1,.xlg-blk2,.xlg-blk3,.xlg-blk4,.xlg-blk5,.xlg-blk6,.xlg-blk7,.xlg-blk8,.xlg-blk9,.xlg-blk10,.xlg-blk11,.xlg-blk12{position:relative;padding-left:30px;padding-right:30px}.blk{-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0}.blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}.blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}.blk3{-ms-flex-preferred-size:25%;flex-basis:25%}.blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}.blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}.blk6{-ms-flex-preferred-size:50%;flex-basis:50%}.blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}.blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}.blk9{-ms-flex-preferred-size:75%;flex-basis:75%}.blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}.blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}.blk12{-ms-flex-preferred-size:100%;flex-basis:100%}@media screen and (min-width:30rem){.sm-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:30rem){.sm-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:30rem){.sm-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:30rem){.sm-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem){.md-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:60rem){.md-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:60rem){.md-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:60rem){.md-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:60rem){.md-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:60rem){.md-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:60rem){.md-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:60rem){.md-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:60rem){.md-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:60rem){.md-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:60rem){.md-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:60rem){.md-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem){.lg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:90rem){.lg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:90rem){.lg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:90rem){.lg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.xlg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:144rem){.xlg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:144rem){.xlg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:144rem){.xlg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.only-xlg-blk1{-ms-flex-preferred-size:8.3333333333%;flex-basis:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk2{-ms-flex-preferred-size:16.6666666667%;flex-basis:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk3{-ms-flex-preferred-size:25%;flex-basis:25%}}@media screen and (min-width:144rem){.only-xlg-blk4{-ms-flex-preferred-size:33.3333333333%;flex-basis:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk5{-ms-flex-preferred-size:41.6666666667%;flex-basis:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk6{-ms-flex-preferred-size:50%;flex-basis:50%}}@media screen and (min-width:144rem){.only-xlg-blk7{-ms-flex-preferred-size:58.3333333333%;flex-basis:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk8{-ms-flex-preferred-size:66.6666666667%;flex-basis:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk9{-ms-flex-preferred-size:75%;flex-basis:75%}}@media screen and (min-width:144rem){.only-xlg-blk10{-ms-flex-preferred-size:83.3333333333%;flex-basis:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk11{-ms-flex-preferred-size:91.6666666667%;flex-basis:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk12{-ms-flex-preferred-size:100%;flex-basis:100%}}.blk--offset1{margin-left:8.3333333333%}.blk--offset2{margin-left:16.6666666667%}.blk--offset3{margin-left:25%}.blk--offset4{margin-left:33.3333333333%}.blk--offset5{margin-left:41.6666666667%}.blk--offset6{margin-left:50%}.blk--offset7{margin-left:58.3333333333%}.blk--offset8{margin-left:66.6666666667%}.blk--offset9{margin-left:75%}.blk--offset10{margin-left:83.3333333333%}.blk--offset11{margin-left:91.6666666667%}.blk--offset12{margin-left:100%}@media screen and (min-width:30rem){.sm-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset3{margin-left:25%}}@media screen and (min-width:30rem){.sm-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset6{margin-left:50%}}@media screen and (min-width:30rem){.sm-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset9{margin-left:75%}}@media screen and (min-width:30rem){.sm-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk--offset12{margin-left:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset1{margin-left:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset2{margin-left:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset3{margin-left:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset4{margin-left:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset5{margin-left:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset6{margin-left:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset7{margin-left:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset8{margin-left:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset9{margin-left:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset10{margin-left:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset11{margin-left:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--offset12{margin-left:100%}}@media screen and (min-width:60rem){.md-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset3{margin-left:25%}}@media screen and (min-width:60rem){.md-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset6{margin-left:50%}}@media screen and (min-width:60rem){.md-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset9{margin-left:75%}}@media screen and (min-width:60rem){.md-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:60rem){.md-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:60rem){.md-blk--offset12{margin-left:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset3{margin-left:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset6{margin-left:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset9{margin-left:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--offset12{margin-left:100%}}@media screen and (min-width:90rem){.lg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset3{margin-left:25%}}@media screen and (min-width:90rem){.lg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset6{margin-left:50%}}@media screen and (min-width:90rem){.lg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset9{margin-left:75%}}@media screen and (min-width:90rem){.lg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk--offset12{margin-left:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset3{margin-left:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset6{margin-left:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset9{margin-left:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--offset12{margin-left:100%}}@media screen and (min-width:144rem){.xlg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset3{margin-left:25%}}@media screen and (min-width:144rem){.xlg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset6{margin-left:50%}}@media screen and (min-width:144rem){.xlg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset9{margin-left:75%}}@media screen and (min-width:144rem){.xlg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--offset12{margin-left:100%}}@media screen and (min-width:144rem){.only-xlg-blk--offset1{margin-left:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset2{margin-left:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset3{margin-left:25%}}@media screen and (min-width:144rem){.only-xlg-blk--offset4{margin-left:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset5{margin-left:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset6{margin-left:50%}}@media screen and (min-width:144rem){.only-xlg-blk--offset7{margin-left:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset8{margin-left:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset9{margin-left:75%}}@media screen and (min-width:144rem){.only-xlg-blk--offset10{margin-left:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--offset11{margin-left:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--offset12{margin-left:100%}}.blk--push1{left:8.3333333333%}.blk--push2{left:16.6666666667%}.blk--push3{left:25%}.blk--push4{left:33.3333333333%}.blk--push5{left:41.6666666667%}.blk--push6{left:50%}.blk--push7{left:58.3333333333%}.blk--push8{left:66.6666666667%}.blk--push9{left:75%}.blk--push10{left:83.3333333333%}.blk--push11{left:91.6666666667%}.blk--push12{left:100%}@media screen and (min-width:30rem){.sm-blk--push1{left:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push2{left:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push3{left:25%}}@media screen and (min-width:30rem){.sm-blk--push4{left:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push5{left:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push6{left:50%}}@media screen and (min-width:30rem){.sm-blk--push7{left:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push8{left:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push9{left:75%}}@media screen and (min-width:30rem){.sm-blk--push10{left:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk--push11{left:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk--push12{left:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push1{left:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push2{left:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push3{left:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push4{left:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push5{left:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push6{left:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push7{left:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push8{left:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push9{left:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push10{left:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push11{left:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--push12{left:100%}}@media screen and (min-width:60rem){.md-blk--push1{left:8.3333333333%}}@media screen and (min-width:60rem){.md-blk--push2{left:16.6666666667%}}@media screen and (min-width:60rem){.md-blk--push3{left:25%}}@media screen and (min-width:60rem){.md-blk--push4{left:33.3333333333%}}@media screen and (min-width:60rem){.md-blk--push5{left:41.6666666667%}}@media screen and (min-width:60rem){.md-blk--push6{left:50%}}@media screen and (min-width:60rem){.md-blk--push7{left:58.3333333333%}}@media screen and (min-width:60rem){.md-blk--push8{left:66.6666666667%}}@media screen and (min-width:60rem){.md-blk--push9{left:75%}}@media screen and (min-width:60rem){.md-blk--push10{left:83.3333333333%}}@media screen and (min-width:60rem){.md-blk--push11{left:91.6666666667%}}@media screen and (min-width:60rem){.md-blk--push12{left:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push1{left:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push2{left:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push3{left:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push4{left:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push5{left:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push6{left:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push7{left:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push8{left:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push9{left:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push10{left:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push11{left:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--push12{left:100%}}@media screen and (min-width:90rem){.lg-blk--push1{left:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push2{left:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push3{left:25%}}@media screen and (min-width:90rem){.lg-blk--push4{left:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push5{left:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push6{left:50%}}@media screen and (min-width:90rem){.lg-blk--push7{left:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push8{left:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push9{left:75%}}@media screen and (min-width:90rem){.lg-blk--push10{left:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk--push11{left:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk--push12{left:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push1{left:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push2{left:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push3{left:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push4{left:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push5{left:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push6{left:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push7{left:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push8{left:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push9{left:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push10{left:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push11{left:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--push12{left:100%}}@media screen and (min-width:144rem){.xlg-blk--push1{left:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push2{left:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push3{left:25%}}@media screen and (min-width:144rem){.xlg-blk--push4{left:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push5{left:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push6{left:50%}}@media screen and (min-width:144rem){.xlg-blk--push7{left:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push8{left:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push9{left:75%}}@media screen and (min-width:144rem){.xlg-blk--push10{left:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--push11{left:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--push12{left:100%}}@media screen and (min-width:144rem){.only-xlg-blk--push1{left:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push2{left:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push3{left:25%}}@media screen and (min-width:144rem){.only-xlg-blk--push4{left:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push5{left:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push6{left:50%}}@media screen and (min-width:144rem){.only-xlg-blk--push7{left:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push8{left:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push9{left:75%}}@media screen and (min-width:144rem){.only-xlg-blk--push10{left:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--push11{left:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--push12{left:100%}}.blk--pull1{right:8.3333333333%}.blk--pull2{right:16.6666666667%}.blk--pull3{right:25%}.blk--pull4{right:33.3333333333%}.blk--pull5{right:41.6666666667%}.blk--pull6{right:50%}.blk--pull7{right:58.3333333333%}.blk--pull8{right:66.6666666667%}.blk--pull9{right:75%}.blk--pull10{right:83.3333333333%}.blk--pull11{right:91.6666666667%}.blk--pull12{right:100%}@media screen and (min-width:30rem){.sm-blk--pull1{right:8.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull2{right:16.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull3{right:25%}}@media screen and (min-width:30rem){.sm-blk--pull4{right:33.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull5{right:41.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull6{right:50%}}@media screen and (min-width:30rem){.sm-blk--pull7{right:58.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull8{right:66.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull9{right:75%}}@media screen and (min-width:30rem){.sm-blk--pull10{right:83.3333333333%}}@media screen and (min-width:30rem){.sm-blk--pull11{right:91.6666666667%}}@media screen and (min-width:30rem){.sm-blk--pull12{right:100%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull1{right:8.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull2{right:16.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull3{right:25%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull4{right:33.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull5{right:41.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull6{right:50%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull7{right:58.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull8{right:66.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull9{right:75%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull10{right:83.3333333333%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull11{right:91.6666666667%}}@media screen and (max-width:59.99999rem){.only-sm-blk--pull12{right:100%}}@media screen and (min-width:60rem){.md-blk--pull1{right:8.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull2{right:16.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull3{right:25%}}@media screen and (min-width:60rem){.md-blk--pull4{right:33.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull5{right:41.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull6{right:50%}}@media screen and (min-width:60rem){.md-blk--pull7{right:58.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull8{right:66.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull9{right:75%}}@media screen and (min-width:60rem){.md-blk--pull10{right:83.3333333333%}}@media screen and (min-width:60rem){.md-blk--pull11{right:91.6666666667%}}@media screen and (min-width:60rem){.md-blk--pull12{right:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull1{right:8.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull2{right:16.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull3{right:25%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull4{right:33.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull5{right:41.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull6{right:50%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull7{right:58.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull8{right:66.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull9{right:75%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull10{right:83.3333333333%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull11{right:91.6666666667%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--pull12{right:100%}}@media screen and (min-width:90rem){.lg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull3{right:25%}}@media screen and (min-width:90rem){.lg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull6{right:50%}}@media screen and (min-width:90rem){.lg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull9{right:75%}}@media screen and (min-width:90rem){.lg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:90rem){.lg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:90rem){.lg-blk--pull12{right:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull3{right:25%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull6{right:50%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull9{right:75%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--pull12{right:100%}}@media screen and (min-width:144rem){.xlg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull3{right:25%}}@media screen and (min-width:144rem){.xlg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull6{right:50%}}@media screen and (min-width:144rem){.xlg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull9{right:75%}}@media screen and (min-width:144rem){.xlg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:144rem){.xlg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:144rem){.xlg-blk--pull12{right:100%}}@media screen and (min-width:144rem){.only-xlg-blk--pull1{right:8.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull2{right:16.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull3{right:25%}}@media screen and (min-width:144rem){.only-xlg-blk--pull4{right:33.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull5{right:41.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull6{right:50%}}@media screen and (min-width:144rem){.only-xlg-blk--pull7{right:58.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull8{right:66.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull9{right:75%}}@media screen and (min-width:144rem){.only-xlg-blk--pull10{right:83.3333333333%}}@media screen and (min-width:144rem){.only-xlg-blk--pull11{right:91.6666666667%}}@media screen and (min-width:144rem){.only-xlg-blk--pull12{right:100%}}.blk--first{-ms-flex-order:0;order:0}.blk--last{-ms-flex-order:1;order:1}@media screen and (min-width:30rem){.sm-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:30rem){.sm-blk--last{-ms-flex-order:1;order:1}}@media screen and (max-width:59.99999rem){.only-sm-blk--first{-ms-flex-order:0;order:0}}@media screen and (max-width:59.99999rem){.only-sm-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:60rem){.md-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:60rem){.md-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:90rem){.lg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:90rem){.lg-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:144rem){.xlg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:144rem){.xlg-blk--last{-ms-flex-order:1;order:1}}@media screen and (min-width:144rem){.only-xlg-blk--first{-ms-flex-order:0;order:0}}@media screen and (min-width:144rem){.only-xlg-blk--last{-ms-flex-order:1;order:1}}.fl{float:left!important}.fr{float:right!important}.finit,.fn{float:none!important}.finhe{float:inherit!important}.sm-fl{float:left!important}.sm-fr{float:right!important}.sm-finit,.sm-fn{float:none!important}.sm-finhe{float:inherit!important}.only-sm-fl{float:left!important}.only-sm-fr{float:right!important}.only-sm-finit,.only-sm-fn{float:none!important}.only-sm-finhe{float:inherit!important}.md-fl{float:left!important}.md-fr{float:right!important}.md-finit,.md-fn{float:none!important}.md-finhe{float:inherit!important}.only-md-fl{float:left!important}.only-md-fr{float:right!important}.only-md-finit,.only-md-fn{float:none!important}.only-md-finhe{float:inherit!important}.lg-fl{float:left!important}.lg-fr{float:right!important}.lg-finit,.lg-fn{float:none!important}.lg-finhe{float:inherit!important}.only-lg-fl{float:left!important}.only-lg-fr{float:right!important}.only-lg-finit,.only-lg-fn{float:none!important}.only-lg-finhe{float:inherit!important}.xlg-fl{float:left!important}.xlg-fr{float:right!important}.xlg-finit,.xlg-fn{float:none!important}.xlg-finhe{float:inherit!important}.only-xlg-fl{float:left!important}.only-xlg-fr{float:right!important}.only-xlg-finit,.only-xlg-fn{float:none!important}.only-xlg-finhe{float:inherit!important}.db{display:block}.di{display:inline}.dib{display:inline-block}.dn{display:none}.df{display:-ms-flexbox;display:flex}.full{display:block}.full,.w100{width:100%}@media screen and (min-width:30rem){.sm-db{display:block!important}}@media screen and (min-width:30rem){.sm-di{display:inline!important}}@media screen and (min-width:30rem){.sm-dib{display:inline-block!important}}@media screen and (min-width:30rem){.sm-dn{display:none!important}}@media screen and (min-width:30rem){.sm-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (max-width:59.99999rem){.only-sm-db{display:block!important}}@media screen and (max-width:59.99999rem){.only-sm-di{display:inline!important}}@media screen and (max-width:59.99999rem){.only-sm-dib{display:inline-block!important}}@media screen and (max-width:59.99999rem){.only-sm-dn{display:none!important}}@media screen and (max-width:59.99999rem){.only-sm-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:60rem){.md-db{display:block!important}}@media screen and (min-width:60rem){.md-di{display:inline!important}}@media screen and (min-width:60rem){.md-dib{display:inline-block!important}}@media screen and (min-width:60rem){.md-dn{display:none!important}}@media screen and (min-width:60rem){.md-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-db{display:block!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-di{display:inline!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-dib{display:inline-block!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-dn{display:none!important}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:90rem){.lg-db{display:block!important}}@media screen and (min-width:90rem){.lg-di{display:inline!important}}@media screen and (min-width:90rem){.lg-dib{display:inline-block!important}}@media screen and (min-width:90rem){.lg-dn{display:none!important}}@media screen and (min-width:90rem){.lg-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-db{display:block!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-di{display:inline!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-dib{display:inline-block!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-dn{display:none!important}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:144rem){.xlg-db{display:block!important}}@media screen and (min-width:144rem){.xlg-di{display:inline!important}}@media screen and (min-width:144rem){.xlg-dib{display:inline-block!important}}@media screen and (min-width:144rem){.xlg-dn{display:none!important}}@media screen and (min-width:144rem){.xlg-df{display:-ms-flexbox!important;display:flex!important}}@media screen and (min-width:144rem){.only-xlg-db{display:block!important}}@media screen and (min-width:144rem){.only-xlg-di{display:inline!important}}@media screen and (min-width:144rem){.only-xlg-dib{display:inline-block!important}}@media screen and (min-width:144rem){.only-xlg-dn{display:none!important}}@media screen and (min-width:144rem){.only-xlg-df{display:-ms-flexbox!important;display:flex!important}}.flex{display:-ms-flexbox;display:flex}.iflex{display:-ms-inline-flexbox;display:inline-flex}.flex-grow{-ms-flex-positive:1;flex-grow:1}.fb100{-ms-flex-preferred-size:100%;flex-basis:100%}.fdr{-ms-flex-direction:row;flex-direction:row}.fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.fdc{-ms-flex-direction:column;flex-direction:column}.fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.fww{-ms-flex-wrap:wrap;flex-wrap:wrap}.fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.jcc{-ms-flex-pack:center;justify-content:center}.jcsb{-ms-flex-pack:justify;justify-content:space-between}.jcsa{-ms-flex-pack:distribute;justify-content:space-around}.jcfs{-ms-flex-pack:start;justify-content:flex-start}.jcfe{-ms-flex-pack:end;justify-content:flex-end}.aic{-ms-flex-align:center;align-items:center}.aifs{-ms-flex-align:start;align-items:flex-start}.aife{-ms-flex-align:end;align-items:flex-end}.ais{-ms-flex-align:stretch;align-items:stretch}.aib{-ms-flex-align:baseline;align-items:baseline}.acc{-ms-flex-line-pack:center;align-content:center}.acfs{-ms-flex-line-pack:start;align-content:flex-start}.acfe{-ms-flex-line-pack:end;align-content:flex-end}.acs{-ms-flex-line-pack:stretch;align-content:stretch}.acb{-ms-flex-line-pack:baseline;align-content:baseline}@media screen and (min-width:30rem){.sm-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:30rem){.sm-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:30rem){.sm-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:30rem){.sm-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:30rem){.sm-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:30rem){.sm-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:30rem){.sm-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:30rem){.sm-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:30rem){.sm-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:30rem){.sm-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:30rem){.sm-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:30rem){.sm-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:30rem){.sm-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:30rem){.sm-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:30rem){.sm-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:30rem){.sm-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:30rem){.sm-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:30rem){.sm-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:30rem){.sm-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:30rem){.sm-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:30rem){.sm-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:30rem){.sm-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:30rem){.sm-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:30rem){.sm-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:30rem){.sm-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (max-width:59.99999rem){.only-sm-flex{display:-ms-flexbox;display:flex}}@media screen and (max-width:59.99999rem){.only-sm-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (max-width:59.99999rem){.only-sm-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (max-width:59.99999rem){.only-sm-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (max-width:59.99999rem){.only-sm-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (max-width:59.99999rem){.only-sm-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (max-width:59.99999rem){.only-sm-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (max-width:59.99999rem){.only-sm-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (max-width:59.99999rem){.only-sm-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:59.99999rem){.only-sm-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (max-width:59.99999rem){.only-sm-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (max-width:59.99999rem){.only-sm-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (max-width:59.99999rem){.only-sm-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (max-width:59.99999rem){.only-sm-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (max-width:59.99999rem){.only-sm-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (max-width:59.99999rem){.only-sm-aic{-ms-flex-align:center;align-items:center}}@media screen and (max-width:59.99999rem){.only-sm-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (max-width:59.99999rem){.only-sm-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (max-width:59.99999rem){.only-sm-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (max-width:59.99999rem){.only-sm-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (max-width:59.99999rem){.only-sm-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (max-width:59.99999rem){.only-sm-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (max-width:59.99999rem){.only-sm-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (max-width:59.99999rem){.only-sm-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (max-width:59.99999rem){.only-sm-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:60rem){.md-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:60rem){.md-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:60rem){.md-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem){.md-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:60rem){.md-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:60rem){.md-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:60rem){.md-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:60rem){.md-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:60rem){.md-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:60rem){.md-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:60rem){.md-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:60rem){.md-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:60rem){.md-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:60rem){.md-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:60rem){.md-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:60rem){.md-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:60rem){.md-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:60rem){.md-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:60rem){.md-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:60rem){.md-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:60rem){.md-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:60rem){.md-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:60rem){.md-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:60rem){.md-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:60rem){.md-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:60rem) and (max-width:89.99999rem){.only-md-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:90rem){.lg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:90rem){.lg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:90rem){.lg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem){.lg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:90rem){.lg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:90rem){.lg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:90rem){.lg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:90rem){.lg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:90rem){.lg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:90rem){.lg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:90rem){.lg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:90rem){.lg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:90rem){.lg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:90rem){.lg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:90rem){.lg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:90rem){.lg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:90rem){.lg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:90rem){.lg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:90rem){.lg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:90rem){.lg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:90rem){.lg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:90rem){.lg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:90rem){.lg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:90rem){.lg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:90rem){.lg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:90rem) and (max-width:143.99999rem){.only-lg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:144rem){.xlg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:144rem){.xlg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:144rem){.xlg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.xlg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:144rem){.xlg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:144rem){.xlg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:144rem){.xlg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:144rem){.xlg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:144rem){.xlg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:144rem){.xlg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:144rem){.xlg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:144rem){.xlg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:144rem){.xlg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:144rem){.xlg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:144rem){.xlg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:144rem){.xlg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:144rem){.xlg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:144rem){.xlg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:144rem){.xlg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:144rem){.xlg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:144rem){.xlg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:144rem){.xlg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:144rem){.xlg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:144rem){.xlg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:144rem){.xlg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}@media screen and (min-width:144rem){.only-xlg-flex{display:-ms-flexbox;display:flex}}@media screen and (min-width:144rem){.only-xlg-iflex{display:-ms-inline-flexbox;display:inline-flex}}@media screen and (min-width:144rem){.only-xlg-fb100{-ms-flex-preferred-size:100%;flex-basis:100%}}@media screen and (min-width:144rem){.only-xlg-fdr{-ms-flex-direction:row;flex-direction:row}}@media screen and (min-width:144rem){.only-xlg-fdrr{-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media screen and (min-width:144rem){.only-xlg-fdc{-ms-flex-direction:column;flex-direction:column}}@media screen and (min-width:144rem){.only-xlg-fdcr{-ms-flex-direction:column-reverse;flex-direction:column-reverse}}@media screen and (min-width:144rem){.only-xlg-fwn{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media screen and (min-width:144rem){.only-xlg-fww{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width:144rem){.only-xlg-fwr{-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}}@media screen and (min-width:144rem){.only-xlg-jcc{-ms-flex-pack:center;justify-content:center}}@media screen and (min-width:144rem){.only-xlg-jcsb{-ms-flex-pack:justify;justify-content:space-between}}@media screen and (min-width:144rem){.only-xlg-jcsa{-ms-flex-pack:distribute;justify-content:space-around}}@media screen and (min-width:144rem){.only-xlg-jcfs{-ms-flex-pack:start;justify-content:flex-start}}@media screen and (min-width:144rem){.only-xlg-jcfe{-ms-flex-pack:end;justify-content:flex-end}}@media screen and (min-width:144rem){.only-xlg-aic{-ms-flex-align:center;align-items:center}}@media screen and (min-width:144rem){.only-xlg-aifs{-ms-flex-align:start;align-items:flex-start}}@media screen and (min-width:144rem){.only-xlg-aife{-ms-flex-align:end;align-items:flex-end}}@media screen and (min-width:144rem){.only-xlg-ais{-ms-flex-align:stretch;align-items:stretch}}@media screen and (min-width:144rem){.only-xlg-aib{-ms-flex-align:baseline;align-items:baseline}}@media screen and (min-width:144rem){.only-xlg-acc{-ms-flex-line-pack:center;align-content:center}}@media screen and (min-width:144rem){.only-xlg-acfs{-ms-flex-line-pack:start;align-content:flex-start}}@media screen and (min-width:144rem){.only-xlg-acfe{-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width:144rem){.only-xlg-acs{-ms-flex-line-pack:stretch;align-content:stretch}}@media screen and (min-width:144rem){.only-xlg-acb{-ms-flex-line-pack:baseline;align-content:baseline}}.ofh{overflow:hidden!important}.ofx{overflow-x:scroll!important}.ofy{overflow-y:scroll!important}.bgb{background-color:#000!important}.tcb{color:#000!important}.bcb{border-color:#000!important}.bgw{background-color:#fff!important}.tcw{color:#fff!important}.bcw{border-color:#fff!important}.bg1{background-color:#3498db!important}.tc1{color:#3498db!important}.bc1{border-color:#3498db!important}.bg2{background-color:#258cd1!important}.tc2{color:#258cd1!important}.bc2{border-color:#258cd1!important}.bg3{background-color:#217dbb!important}.tc3{color:#217dbb!important}.bc3{border-color:#217dbb!important}.bg4{background-color:#1d6fa5!important}.tc4{color:#1d6fa5!important}.bc4{border-color:#1d6fa5!important}.bg5{background-color:#196090!important}.tc5{color:#196090!important}.bc5{border-color:#196090!important}.bgsuccess{background-color:#4ab471!important}.tcsuccess{color:#4ab471!important}.bcsuccess{border-color:#4ab471!important}.bgwarning{background-color:#f3ae4e!important}.tcwarning{color:#f3ae4e!important}.bcwarning{border-color:#f3ae4e!important}.bgdanger{background-color:#cf5c60!important}.tcdanger{color:#cf5c60!important}.bcdanger{border-color:#cf5c60!important}.bgg05{background-color:#f2f2f2!important}.tcg05{color:#f2f2f2!important}.bcg05{border-color:#f2f2f2!important}.bgg10{background-color:#e6e6e6!important}.tcg10{color:#e6e6e6!important}.bcg10{border-color:#e6e6e6!important}.bgg20{background-color:#ccc!important}.tcg20{color:#ccc!important}.bcg20{border-color:#ccc!important}.bgg30{background-color:#b3b3b3!important}.tcg30{color:#b3b3b3!important}.bcg30{border-color:#b3b3b3!important}.bgg40{background-color:#999!important}.tcg40{color:#999!important}.bcg40{border-color:#999!important}.bgg50{background-color:gray!important}.tcg50{color:gray!important}.bcg50{border-color:gray!important}.bgg60{background-color:#666!important}.tcg60{color:#666!important}.bcg60{border-color:#666!important}.bgg70{background-color:#4d4d4d!important}.tcg70{color:#4d4d4d!important}.bcg70{border-color:#4d4d4d!important}.bgg80{background-color:#333!important}.tcg80{color:#333!important}.bcg80{border-color:#333!important}.bgg90{background-color:#1a1a1a!important}.tcg90{color:#1a1a1a!important}.bcg90{border-color:#1a1a1a!important}.\:bgb:hover{background-color:#000!important}.\:tcb:hover{color:#000!important}.\:bcb:hover{border-color:#000!important}.\:bgw:hover{background-color:#fff!important}.\:tcw:hover{color:#fff!important}.\:bcw:hover{border-color:#fff!important}.\:bg1:hover{background-color:#3498db!important}.\:tc1:hover{color:#3498db!important}.\:bc1:hover{border-color:#3498db!important}.\:bg2:hover{background-color:#258cd1!important}.\:tc2:hover{color:#258cd1!important}.\:bc2:hover{border-color:#258cd1!important}.\:bg3:hover{background-color:#217dbb!important}.\:tc3:hover{color:#217dbb!important}.\:bc3:hover{border-color:#217dbb!important}.\:bg4:hover{background-color:#1d6fa5!important}.\:tc4:hover{color:#1d6fa5!important}.\:bc4:hover{border-color:#1d6fa5!important}.\:bg5:hover{background-color:#196090!important}.\:tc5:hover{color:#196090!important}.\:bc5:hover{border-color:#196090!important}.\:bgsuccess:hover{background-color:#4ab471!important}.\:tcsuccess:hover{color:#4ab471!important}.\:bcsuccess:hover{border-color:#4ab471!important}.\:bgwarning:hover{background-color:#f3ae4e!important}.\:tcwarning:hover{color:#f3ae4e!important}.\:bcwarning:hover{border-color:#f3ae4e!important}.\:bgdanger:hover{background-color:#cf5c60!important}.\:tcdanger:hover{color:#cf5c60!important}.\:bcdanger:hover{border-color:#cf5c60!important}.\:bgg05:hover{background-color:#f2f2f2!important}.\:tcg05:hover{color:#f2f2f2!important}.\:bcg05:hover{border-color:#f2f2f2!important}.\:bgg10:hover{background-color:#e6e6e6!important}.\:tcg10:hover{color:#e6e6e6!important}.\:bcg10:hover{border-color:#e6e6e6!important}.\:bgg20:hover{background-color:#ccc!important}.\:tcg20:hover{color:#ccc!important}.\:bcg20:hover{border-color:#ccc!important}.\:bgg30:hover{background-color:#b3b3b3!important}.\:tcg30:hover{color:#b3b3b3!important}.\:bcg30:hover{border-color:#b3b3b3!important}.\:bgg40:hover{background-color:#999!important}.\:tcg40:hover{color:#999!important}.\:bcg40:hover{border-color:#999!important}.\:bgg50:hover{background-color:gray!important}.\:tcg50:hover{color:gray!important}.\:bcg50:hover{border-color:gray!important}.\:bgg60:hover{background-color:#666!important}.\:tcg60:hover{color:#666!important}.\:bcg60:hover{border-color:#666!important}.\:bgg70:hover{background-color:#4d4d4d!important}.\:tcg70:hover{color:#4d4d4d!important}.\:bcg70:hover{border-color:#4d4d4d!important}.\:bgg80:hover{background-color:#333!important}.\:tcg80:hover{color:#333!important}.\:bcg80:hover{border-color:#333!important}.\:bgg90:hover{background-color:#1a1a1a!important}.\:tcg90:hover{color:#1a1a1a!important}.\:bcg90:hover{border-color:#1a1a1a!important}.\:\:bgb:focus{background-color:#000!important}.\:\:tcb:focus{color:#000!important}.\:\:bcb:focus{border-color:#000!important}.\:\:bgw:focus{background-color:#fff!important}.\:\:tcw:focus{color:#fff!important}.\:\:bcw:focus{border-color:#fff!important}.\:\:bg1:focus{background-color:#3498db!important}.\:\:tc1:focus{color:#3498db!important}.\:\:bc1:focus{border-color:#3498db!important}.\:\:bg2:focus{background-color:#258cd1!important}.\:\:tc2:focus{color:#258cd1!important}.\:\:bc2:focus{border-color:#258cd1!important}.\:\:bg3:focus{background-color:#217dbb!important}.\:\:tc3:focus{color:#217dbb!important}.\:\:bc3:focus{border-color:#217dbb!important}.\:\:bg4:focus{background-color:#1d6fa5!important}.\:\:tc4:focus{color:#1d6fa5!important}.\:\:bc4:focus{border-color:#1d6fa5!important}.\:\:bg5:focus{background-color:#196090!important}.\:\:tc5:focus{color:#196090!important}.\:\:bc5:focus{border-color:#196090!important}.\:\:bgsuccess:focus{background-color:#4ab471!important}.\:\:tcsuccess:focus{color:#4ab471!important}.\:\:bcsuccess:focus{border-color:#4ab471!important}.\:\:bgwarning:focus{background-color:#f3ae4e!important}.\:\:tcwarning:focus{color:#f3ae4e!important}.\:\:bcwarning:focus{border-color:#f3ae4e!important}.\:\:bgdanger:focus{background-color:#cf5c60!important}.\:\:tcdanger:focus{color:#cf5c60!important}.\:\:bcdanger:focus{border-color:#cf5c60!important}.\:\:bgg05:focus{background-color:#f2f2f2!important}.\:\:tcg05:focus{color:#f2f2f2!important}.\:\:bcg05:focus{border-color:#f2f2f2!important}.\:\:bgg10:focus{background-color:#e6e6e6!important}.\:\:tcg10:focus{color:#e6e6e6!important}.\:\:bcg10:focus{border-color:#e6e6e6!important}.\:\:bgg20:focus{background-color:#ccc!important}.\:\:tcg20:focus{color:#ccc!important}.\:\:bcg20:focus{border-color:#ccc!important}.\:\:bgg30:focus{background-color:#b3b3b3!important}.\:\:tcg30:focus{color:#b3b3b3!important}.\:\:bcg30:focus{border-color:#b3b3b3!important}.\:\:bgg40:focus{background-color:#999!important}.\:\:tcg40:focus{color:#999!important}.\:\:bcg40:focus{border-color:#999!important}.\:\:bgg50:focus{background-color:gray!important}.\:\:tcg50:focus{color:gray!important}.\:\:bcg50:focus{border-color:gray!important}.\:\:bgg60:focus{background-color:#666!important}.\:\:tcg60:focus{color:#666!important}.\:\:bcg60:focus{border-color:#666!important}.\:\:bgg70:focus{background-color:#4d4d4d!important}.\:\:tcg70:focus{color:#4d4d4d!important}.\:\:bcg70:focus{border-color:#4d4d4d!important}.\:\:bgg80:focus{background-color:#333!important}.\:\:tcg80:focus{color:#333!important}.\:\:bcg80:focus{border-color:#333!important}.\:\:bgg90:focus{background-color:#1a1a1a!important}.\:\:tcg90:focus{color:#1a1a1a!important}.\:\:bcg90:focus{border-color:#1a1a1a!important}.\@bgb:active{background-color:#000!important}.\@tcb:active{color:#000!important}.\@bcb:active{border-color:#000!important}.\@bgw:active{background-color:#fff!important}.\@tcw:active{color:#fff!important}.\@bcw:active{border-color:#fff!important}.\@bg1:active{background-color:#3498db!important}.\@tc1:active{color:#3498db!important}.\@bc1:active{border-color:#3498db!important}.\@bg2:active{background-color:#258cd1!important}.\@tc2:active{color:#258cd1!important}.\@bc2:active{border-color:#258cd1!important}.\@bg3:active{background-color:#217dbb!important}.\@tc3:active{color:#217dbb!important}.\@bc3:active{border-color:#217dbb!important}.\@bg4:active{background-color:#1d6fa5!important}.\@tc4:active{color:#1d6fa5!important}.\@bc4:active{border-color:#1d6fa5!important}.\@bg5:active{background-color:#196090!important}.\@tc5:active{color:#196090!important}.\@bc5:active{border-color:#196090!important}.\@bgsuccess:active{background-color:#4ab471!important}.\@tcsuccess:active{color:#4ab471!important}.\@bcsuccess:active{border-color:#4ab471!important}.\@bgwarning:active{background-color:#f3ae4e!important}.\@tcwarning:active{color:#f3ae4e!important}.\@bcwarning:active{border-color:#f3ae4e!important}.\@bgdanger:active{background-color:#cf5c60!important}.\@tcdanger:active{color:#cf5c60!important}.\@bcdanger:active{border-color:#cf5c60!important}.\@bgg05:active{background-color:#f2f2f2!important}.\@tcg05:active{color:#f2f2f2!important}.\@bcg05:active{border-color:#f2f2f2!important}.\@bgg10:active{background-color:#e6e6e6!important}.\@tcg10:active{color:#e6e6e6!important}.\@bcg10:active{border-color:#e6e6e6!important}.\@bgg20:active{background-color:#ccc!important}.\@tcg20:active{color:#ccc!important}.\@bcg20:active{border-color:#ccc!important}.\@bgg30:active{background-color:#b3b3b3!important}.\@tcg30:active{color:#b3b3b3!important}.\@bcg30:active{border-color:#b3b3b3!important}.\@bgg40:active{background-color:#999!important}.\@tcg40:active{color:#999!important}.\@bcg40:active{border-color:#999!important}.\@bgg50:active{background-color:gray!important}.\@tcg50:active{color:gray!important}.\@bcg50:active{border-color:gray!important}.\@bgg60:active{background-color:#666!important}.\@tcg60:active{color:#666!important}.\@bcg60:active{border-color:#666!important}.\@bgg70:active{background-color:#4d4d4d!important}.\@tcg70:active{color:#4d4d4d!important}.\@bcg70:active{border-color:#4d4d4d!important}.\@bgg80:active{background-color:#333!important}.\@tcg80:active{color:#333!important}.\@bcg80:active{border-color:#333!important}.\@bgg90:active{background-color:#1a1a1a!important}.\@tcg90:active{color:#1a1a1a!important}.\@bcg90:active{border-color:#1a1a1a!important}.xbg{background-color:transparent!important}.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.pin-top{top:0}.pin-right{right:0}.pin-bottom{bottom:0}.pin-left{left:0}.pin-edges{top:0;right:0;bottom:0;left:0}.brdr0{border-style:solid!important;border-width:0!important}.brdr0--top{border-top-style:solid!important;border-top-width:0!important}.brdr0--right{border-right-style:solid!important;border-right-width:0!important}.brdr0--bottom{border-bottom-style:solid!important;border-bottom-width:0!important}.brdr0--left{border-left-style:solid!important;border-left-width:0!important}.brdr1{border-style:solid!important;border-width:1px!important}.brdr1--top{border-top-style:solid!important;border-top-width:1px!important}.brdr1--right{border-right-style:solid!important;border-right-width:1px!important}.brdr1--bottom{border-bottom-style:solid!important;border-bottom-width:1px!important}.brdr1--left{border-left-style:solid!important;border-left-width:1px!important}.brdr2{border-style:solid!important;border-width:2px!important}.brdr2--top{border-top-style:solid!important;border-top-width:2px!important}.brdr2--right{border-right-style:solid!important;border-right-width:2px!important}.brdr2--bottom{border-bottom-style:solid!important;border-bottom-width:2px!important}.brdr2--left{border-left-style:solid!important;border-left-width:2px!important}.brdr3{border-style:solid!important;border-width:3px!important}.brdr3--top{border-top-style:solid!important;border-top-width:3px!important}.brdr3--right{border-right-style:solid!important;border-right-width:3px!important}.brdr3--bottom{border-bottom-style:solid!important;border-bottom-width:3px!important}.brdr3--left{border-left-style:solid!important;border-left-width:3px!important}.br1{border-radius:1px!important}.blr1{border-top-left-radius:1px!important;border-bottom-left-radius:1px!important}.brr1{border-top-right-radius:1px!important;border-bottom-right-radius:1px!important}.btlr1{border-top-left-radius:1px!important}.btrr1{border-top-right-radius:1px!important}.bbrr1{border-bottom-right-radius:1px!important}.bblr1{border-bottom-left-radius:1px!important}.br2{border-radius:2px!important}.blr2{border-top-left-radius:2px!important;border-bottom-left-radius:2px!important}.brr2{border-top-right-radius:2px!important;border-bottom-right-radius:2px!important}.btlr2{border-top-left-radius:2px!important}.btrr2{border-top-right-radius:2px!important}.bbrr2{border-bottom-right-radius:2px!important}.bblr2{border-bottom-left-radius:2px!important}.br3{border-radius:3px!important}.blr3{border-top-left-radius:3px!important;border-bottom-left-radius:3px!important}.brr3{border-top-right-radius:3px!important;border-bottom-right-radius:3px!important}.btlr3{border-top-left-radius:3px!important}.btrr3{border-top-right-radius:3px!important}.bbrr3{border-bottom-right-radius:3px!important}.bblr3{border-bottom-left-radius:3px!important}.br4{border-radius:4px!important}.blr4{border-top-left-radius:4px!important;border-bottom-left-radius:4px!important}.brr4{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.btlr4{border-top-left-radius:4px!important}.btrr4{border-top-right-radius:4px!important}.bbrr4{border-bottom-right-radius:4px!important}.bblr4{border-bottom-left-radius:4px!important}.br5{border-radius:5px!important}.blr5{border-top-left-radius:5px!important;border-bottom-left-radius:5px!important}.brr5{border-top-right-radius:5px!important;border-bottom-right-radius:5px!important}.btlr5{border-top-left-radius:5px!important}.btrr5{border-top-right-radius:5px!important}.bbrr5{border-bottom-right-radius:5px!important}.bblr5{border-bottom-left-radius:5px!important}.br6{border-radius:6px!important}.blr6{border-top-left-radius:6px!important;border-bottom-left-radius:6px!important}.brr6{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.btlr6{border-top-left-radius:6px!important}.btrr6{border-top-right-radius:6px!important}.bbrr6{border-bottom-right-radius:6px!important}.bblr6{border-bottom-left-radius:6px!important}.circle{border-radius:50%!important} ================================================ FILE: source/css/vendor.css ================================================ code[class*=language-],pre[class*=language-]{color:#777;font-family:Menlo,Consolas,Bitstream Vera Sans Mono,Courier New,Courier,monospace;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;font-size:1.3rem;line-height:1.5;tab-size:4;hyphens:none;font-size:1.4rem}code[class*=language-]::-moz-selection,code[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection{background:#b3d4fc}code[class*=language-]::selection,code[class*=language-] ::selection,pre[class*=language-]::selection,pre[class*=language-] ::selection{background:#b3d4fc}pre[class*=language-]{padding:2rem 2.5rem;overflow:auto;border:1px solid rgba(0,0,0,.2);border-radius:4px;background-color:#fff}:not(pre)>code[class*=language-]{padding:.2em;padding-top:1px;padding-bottom:1px;background:#f8f8f8;border:1px solid #ddd}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#aaa;font-style:italic}.token.namespace{opacity:.7}.token.attr-value,.token.string{color:#e3116c}.token.operator,.token.punctuation{color:#888}.token.boolean,.token.constant,.token.entity,.token.inserted,.token.number,.token.property,.token.regex,.token.symbol,.token.url,.token.variable{color:#3498db}.language-autohotkey .token.selector,.token.atrule,.token.attr-name,.token.keyword{color:#00a4db}.language-autohotkey .token.keyword,.language-autohotkey .token.tag,.token.deleted,.token.function,.token.selector,.token.tag{color:#3498db}.token.bold,.token.function,.token.important{font-weight:700}.token.italic{font-style:italic} ================================================ FILE: source/display.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Display Responsive

Name Class
Display Block .db
Display Inline .di
Display Inline-block .dib
Display None .dn
Display Flex .df
Full Width Not Responsive .full
W100 Not Responsive .w100

Example:

```html
``` ================================================ FILE: source/examples.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Modal Titles Are Hard

Modal Content goes here

```html

Modal Titles Are Hard

Modal Content goes here

```

Put your tab content here.

```html

Put your tab content here.

``` ================================================ FILE: source/flexbox.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Flexbox Responsive

Class Value
.flex or .df display: flex
.iflex display: inline-flex
.flex-grow flex-grow: 1
.fb100 flex-basis: 100%
.fdr flex-direction: row
.fdrr flex-direction: row-reverse
.fdc flex-direction: column
.fdcr flex-direction: column-reverse

Content Justification Responsive

Class Value
.jcc justify-content: center
.jcsb justify-content: space-between
.jcsa justify-content: space-around
.jcfs justify-content: flex-start
.jcfe justify-content: flex-end

Item Alignment Responsive

Class Value
.aic align-items: center
.aifs align-items: flex-start
.aife align-items: flex-end
.ais align-items: stretch
.aib align-items: baseline

Content Alignment Responsive

Class Value
.acc align-content: center
.acfs align-content: flex-start
.acfe align-content: flex-end
.acs align-content: stretch
.acb align-content: baseline
================================================ FILE: source/floats.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Floats Responsive

Class Value
.fl float: left
.fr float: right
.fn float: none
.finit float: initial
.finhe float: inherit

Example:

```html
Floated left on medium breakpoint
Floated right on medium breakpoint
``` ================================================ FILE: source/fonts.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Fonts Partially Responsive

Yes, even letter-spacing gets responsive love in Beard. Why would you need responsive letter-spacing? Whenever spaced out text changes in size, it's helpful to have the letter-spacing change with it. These helpers make it easy to do so in a similar way to the font-sizing helpers.

Font Family Helpers Not Responsive

Style Class Default Stack
Sans Serif .sans 'Helvetica Neue', Helvetica, Arial, sans-serif
Serif .serif Merriweather, Georgia, serif
Code .code Consolas, Monaco, 'Andale Mono', monospace

Example:

```html Help ```

Note: The font family helpers are not responsive. That would just be silly.


Font Weight Helpers Not Responsive

Weight Value Classes
Thin 100 .fw1 or .fwthin
Extra Light 200 .fw2 or .fwxlight
Light 300 .fw3 or .fwlight
Normal 400 .fw4 or .fwnormal
Medium 500 .fw5 or .fwmedium
Semibold 600 .fw6 or .fwsemibold
Bold 700 .fw7 or .fwbold
Extra Bold 800 .fw8 or .fwxbold
Black 900 .fw9 or .fwblack

Example:

```html

This text would be really bold ```


Font Sizing Helpers Responsive

Beard offers 17 levels of font-sizing. These helpers are responsive to make sizing easy across breakpoints.

Name Class Example
Font Level 1 .ft1 Hi
Font Level 2 .ft2 Hi
Font Level 3 .ft3 Hi
Font Level 4 .ft4 Hi
Font Level 5 .ft4 Hi
Font Level 6 .ft4 Hi
Font Level 7 .ft7 Hi
Font Level 8 .ft8 Hi
Font Level 9 .ft9 Hi
Font Level 10 .ft10 Hi
Font Level 11 .ft11 Hi
Font Level 12 .ft12 Hi
Font Level 13 .ft13 Hi
Font Level 14 .ft14 Hi
Font Level 15 .ft15 Hi
Font Level 16 .ft16 Hi
Font Level 17 .ft17 Hi

Example:

```html

This Headline Gets Bigger With Space!

``` ================================================ FILE: source/grid.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Grid Responsive

12-column Grid

Beard ships with a standard 12-column grid and provides responsive helper classes to change the layout when the viewport reaches a certain breakpoint. It also supports nested grids and non-responsive grids for increased flexibility.

Hint: To get the grid to maintain its ratios on the small breakpoint, use the .frame--stay modifier on your .frame wrapper.

Examples

.blk.md-blk6
.blk.md-blk6
.blk.md-blk--offset3
.blk3.md-blk--push9
blk9.md-blk--pull3

The Auto Grid

The AutoGrid is the easiest way to get started. Simply use a div with a .frame class and place any number of .blk elements as direct descendants. The AutoGrid will automatically figure out the width for each column and will give it a generous 30px of padding between each of them. This will create 60px wide gutter between columns.

.blk
.blk
.blk
.blk
.blk
.blk
.blk
.blk
.blk

Grids with no padding .frame--xpad

Uno
Dos
Tres
Quatro
1
2
3
1
2

Nested Grids with .frame--stay

Nested
Nested
1
2
3
================================================ FILE: source/index.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Quickstart

Beard can be installed via NPM:

```sh npm install beardcss ```

Or link it from the CDN

```html ```

Introduction

Beard's most popular and polarizing feature is its helper classes. Many people feel utility classes like the ones that Beard generates for you leads to bloat and are just as bad as using inline styles. We've found that having a rich set of helper classes makes your projects easier to build, easier to reason, and more bulletproof. This approach is more common in web application contexts, which is where Beard was born out of.

Beard utilizes shorthand for most of the classes it provides. For example, to achieve a margin-top which uses the 2nd step in the spacing scale, use .mt2. The padding version of this would be .pt2. You’ll find that once you master the basic nomenclature, you’ll be able to quickly compose sets of classes together to style elements.

```html

This is your header

```

Another example of the Beard nomenclature is font sizing. To use the 7th step in the font scale, you use .ft7. If you wanted to change the size on a different breakpoint, you would use .md-ft9

================================================ FILE: source/installation.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Installation

Beard can be installed via NPM:

```sh npm install beardcss ```

Or link it from the CDN

```html ```

Adding Beard into your project

The Recommended Way

The best way to add Beard to your project is to import beard.before and beard.after into your main Sass file. From there, we recommend adding your site styles between the `beard.before` and `beard.after` sections. This allows for the best source ordering. For example:

```scss // Customize Beard's defaults $brand-color-1: #3BBD61; // Import Beard's settings and tools @import '../node_modules/beardcss/stylesheets/beard.before'; // Place custom spacing, color, and media query configuration here @include new-spacing-helper('0\\.5', 0.5); @include new-color('1--light', lighten($brand-color-1, 15%)); @include new-breakpoint(tablet, '(min-width: 600px)'); // Your site styles go here @import 'app'; // Beard's helpers are generated here @import '../node_modules/beardcss/stylesheets/beard.after'; ```

Note: Don’t forget to change the import paths to where you installed Beard.


Or…Just the Dead Simple Installation

Or you could just import it directly. We don't recommend it, but if you need something quick, go ahead!

@import '../node_modules/beardcss/beard'

================================================ FILE: source/js/app.js ================================================ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.Vue=e()}(this,function(){"use strict";function t(e,n,r){if(i(e,n))return void(e[n]=r);if(e._isVue)return void t(e._data,n,r);var s=e.__ob__;if(!s)return void(e[n]=r);if(s.convert(n,r),s.dep.notify(),s.vms)for(var a=s.vms.length;a--;){var o=s.vms[a];o._proxy(n),o._digest()}return r}function e(t,e){if(i(t,e)){delete t[e];var n=t.__ob__;if(!n)return void(t._isVue&&(delete t._data[e],t._digest()));if(n.dep.notify(),n.vms)for(var r=n.vms.length;r--;){var s=n.vms[r];s._unproxy(e),s._digest()}}}function i(t,e){return Pi.call(t,e)}function n(t){return Ni.test(t)}function r(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function s(t){return null==t?"":t.toString()}function a(t){if("string"!=typeof t)return t;var e=Number(t);return isNaN(e)?t:e}function o(t){return"true"===t||"false"!==t&&t}function l(t){var e=t.charCodeAt(0),i=t.charCodeAt(t.length-1);return e!==i||34!==e&&39!==e?t:t.slice(1,-1)}function h(t){return t.replace(Oi,c)}function c(t,e){return e?e.toUpperCase():""}function u(t){return t.replace(Ti,"$1-$2").toLowerCase()}function f(t){return t.replace(ji,c)}function p(t,e){return function(i){var n=arguments.length;return n?n>1?t.apply(e,arguments):t.call(e,i):t.call(e)}}function d(t,e){e=e||0;for(var i=t.length-e,n=new Array(i);i--;)n[i]=t[i+e];return n}function v(t,e){for(var i=Object.keys(e),n=i.length;n--;)t[i[n]]=e[i[n]];return t}function g(t){return null!==t&&"object"==typeof t}function m(t){return Si.call(t)===Ei}function b(t,e,i,n){Object.defineProperty(t,e,{value:i,enumerable:!!n,writable:!0,configurable:!0})}function _(t,e){var i,n,r,s,a,o=function l(){var o=Date.now()-s;e>o&&o>=0?i=setTimeout(l,e-o):(i=null,a=t.apply(r,n),i||(r=n=null))};return function(){return r=this,n=arguments,s=Date.now(),i||(i=setTimeout(o,e)),a}}function y(t,e){for(var i=t.length;i--;)if(t[i]===e)return i;return-1}function w(t){var e=function i(){return i.cancelled?void 0:t.apply(this,arguments)};return e.cancel=function(){e.cancelled=!0},e}function k(t,e){return t==e||!(!g(t)||!g(e))&&JSON.stringify(t)===JSON.stringify(e)}function C(t){this.size=0,this.limit=t,this.head=this.tail=void 0,this._keymap=Object.create(null)}function $(){var t,e=en.slice(ln,an).trim();if(e){t={};var i=e.match(vn);t.name=i[0],i.length>1&&(t.args=i.slice(1).map(x))}t&&(nn.filters=nn.filters||[]).push(t),ln=an+1}function x(t){if(gn.test(t))return{value:a(t),dynamic:!1};var e=l(t),i=e===t;return{value:i?t:e,dynamic:i}}function A(t){var e=dn.get(t);if(e)return e;for(en=t,hn=cn=!1,un=fn=pn=0,ln=0,nn={},an=0,on=en.length;on>an;an++)if(sn=rn,rn=en.charCodeAt(an),hn)39===rn&&92!==sn&&(hn=!hn);else if(cn)34===rn&&92!==sn&&(cn=!cn);else if(124===rn&&124!==en.charCodeAt(an+1)&&124!==en.charCodeAt(an-1))null==nn.expression?(ln=an+1,nn.expression=en.slice(0,an).trim()):$();else switch(rn){case 34:cn=!0;break;case 39:hn=!0;break;case 40:pn++;break;case 41:pn--;break;case 91:fn++;break;case 93:fn--;break;case 123:un++;break;case 125:un--}return null==nn.expression?nn.expression=en.slice(0,an).trim():0!==ln&&$(),dn.put(t,nn),nn}function P(t){return t.replace(bn,"\\$&")}function N(){var t=P(An.delimiters[0]),e=P(An.delimiters[1]),i=P(An.unsafeDelimiters[0]),n=P(An.unsafeDelimiters[1]);yn=new RegExp(i+"((?:.|\\n)+?)"+n+"|"+t+"((?:.|\\n)+?)"+e,"g"),wn=new RegExp("^"+i+"((?:.|\\n)+?)"+n+"$"),_n=new C(1e3)}function O(t){_n||N();var e=_n.get(t);if(e)return e;if(!yn.test(t))return null;for(var i,n,r,s,a,o,l=[],h=yn.lastIndex=0;i=yn.exec(t);)n=i.index,n>h&&l.push({value:t.slice(h,n)}),r=wn.test(i[0]),s=r?i[1]:i[2],a=s.charCodeAt(0),o=42===a,s=o?s.slice(1):s,l.push({tag:!0,value:s.trim(),html:r,oneTime:o}),h=n+i[0].length;return h1?t.map(function(t){return j(t,e)}).join("+"):j(t[0],e,!0)}function j(t,e,i){return t.tag?t.oneTime&&e?'"'+e.$eval(t.value)+'"':S(t.value,i):'"'+t.value+'"'}function S(t,e){if(kn.test(t)){var i=A(t);return i.filters?"this._applyFilters("+i.expression+",null,"+JSON.stringify(i.filters)+",false)":"("+t+")"}return e?t:"("+t+")"}function E(t,e,i,n){R(t,1,function(){e.appendChild(t)},i,n)}function F(t,e,i,n){R(t,1,function(){I(t,e)},i,n)}function D(t,e,i){R(t,-1,function(){z(t)},e,i)}function R(t,e,i,n,r){var s=t.__v_trans;if(!s||!s.hooks&&!Ji||!n._isCompiled||n.$parent&&!n.$parent._isCompiled)return i(),void(r&&r());var a=e>0?"enter":"leave";s[a](i,r)}function B(t){return"string"==typeof t&&(t=document.querySelector(t)),t}function W(t){if(!t)return!1;var e=t.ownerDocument.documentElement,i=t.parentNode;return e===t||e===i||!(!i||1!==i.nodeType||!e.contains(i))}function L(t,e){var i=t.getAttribute(e);return null!==i&&t.removeAttribute(e),i}function H(t,e){var i=L(t,":"+e);return null===i&&(i=L(t,"v-bind:"+e)),i}function M(t,e){return t.hasAttribute(e)||t.hasAttribute(":"+e)||t.hasAttribute("v-bind:"+e)}function I(t,e){e.parentNode.insertBefore(t,e)}function V(t,e){e.nextSibling?I(t,e.nextSibling):e.parentNode.appendChild(t)}function z(t){t.parentNode.removeChild(t)}function U(t,e){e.firstChild?I(t,e.firstChild):e.appendChild(t)}function q(t,e){var i=t.parentNode;i&&i.replaceChild(e,t)}function J(t,e,i,n){t.addEventListener(e,i,n)}function Q(t,e,i){t.removeEventListener(e,i)}function Z(t){var e=t.className;return"object"==typeof e&&(e=e.baseVal||""),e}function G(t,e){Hi&&!/svg$/.test(t.namespaceURI)?t.className=e:t.setAttribute("class",e)}function Y(t,e){if(t.classList)t.classList.add(e);else{var i=" "+Z(t)+" ";i.indexOf(" "+e+" ")<0&&G(t,(i+e).trim())}}function X(t,e){if(t.classList)t.classList.remove(e);else{for(var i=" "+Z(t)+" ",n=" "+e+" ";i.indexOf(n)>=0;)i=i.replace(n," ");G(t,i.trim())}t.className||t.removeAttribute("class")}function K(t,e){var i,n;if(it(t)&&ot(t.content)&&(t=t.content),t.hasChildNodes())for(tt(t),n=e?document.createDocumentFragment():document.createElement("div");i=t.firstChild;)n.appendChild(i);return n}function tt(t){for(var e;e=t.firstChild,et(e);)t.removeChild(e);for(;e=t.lastChild,et(e);)t.removeChild(e)}function et(t){return t&&(3===t.nodeType&&!t.data.trim()||8===t.nodeType)}function it(t){return t.tagName&&"template"===t.tagName.toLowerCase()}function nt(t,e){var i=An.debug?document.createComment(t):document.createTextNode(e?" ":"");return i.__v_anchor=!0,i}function rt(t){if(t.hasAttributes())for(var e=t.attributes,i=0,n=e.length;n>i;i++){var r=e[i].name;if(On.test(r))return h(r.replace(On,""))}}function st(t,e,i){for(var n;t!==e;)n=t.nextSibling,i(t),t=n;i(e)}function at(t,e,i,n,r){function s(){if(o++,a&&o>=l.length){for(var t=0;tr;r++){var a=n[r];Tn.test(a)||jn.test(a)||(e=i[a],m(e)&&(i[a]=wi.extend(e)))}}function dt(t){var e,i,n=t.props;if(Fi(n))for(t.props={},e=n.length;e--;)i=n[e],"string"==typeof i?t.props[i]=null:i.name&&(t.props[i.name]=i);else if(m(n)){var r=Object.keys(n);for(e=r.length;e--;)i=n[r[e]],"function"==typeof i&&(n[r[e]]={type:i})}}function vt(t){if(Fi(t)){for(var e,i={},n=t.length;n--;){e=t[n];var r="function"==typeof e?e.options&&e.options.name||e.id:e.name||e.id;r&&(i[r]=e)}return i}return t}function gt(t,e,n){function r(i){var r=Sn[i]||En;a[i]=r(t[i],e[i],n,i)}pt(e),dt(e);var s,a={};if(e["extends"]&&(t="function"==typeof e["extends"]?gt(t,e["extends"].options,n):gt(t,e["extends"],n)),e.mixins)for(var o=0,l=e.mixins.length;l>o;o++){var h=e.mixins[o],c=h.prototype instanceof wi?h.options:h;t=gt(t,c,n)}for(s in t)r(s);for(s in e)i(t,s)||r(s);return a}function mt(t,e,i,n){if("string"==typeof i){var r,s=t[e],a=s[i]||s[r=h(i)]||s[r.charAt(0).toUpperCase()+r.slice(1)];return a}}function bt(){this.id=Fn++,this.subs=[]}function _t(t){Wn=!1,t(),Wn=!0}function yt(t){if(this.value=t,this.dep=new bt,b(t,"__ob__",this),Fi(t)){var e=Di?wt:kt;e(t,Rn,Bn),this.observeArray(t)}else this.walk(t)}function wt(t,e){t.__proto__=e}function kt(t,e,i){for(var n=0,r=i.length;r>n;n++){var s=i[n];b(t,s,e[s])}}function Ct(t,e){if(t&&"object"==typeof t){var n;return i(t,"__ob__")&&t.__ob__ instanceof yt?n=t.__ob__:Wn&&(Fi(t)||m(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new yt(t)),n&&e&&n.addVm(e),n}}function $t(t,e,i){var n=new bt,r=Object.getOwnPropertyDescriptor(t,e);if(!r||r.configurable!==!1){var s=r&&r.get,a=r&&r.set,o=Ct(i);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):i;if(bt.target&&(n.depend(),o&&o.dep.depend(),Fi(e)))for(var r,a=0,l=e.length;l>a;a++)r=e[a],r&&r.__ob__&&r.__ob__.dep.depend();return e},set:function(e){var r=s?s.call(t):i;e!==r&&(a?a.call(t,e):i=e,o=Ct(e),n.notify())}})}}function xt(t){t.prototype._init=function(t){t=t||{},this.$el=null,this.$parent=t.parent,this.$root=this.$parent?this.$parent.$root:this,this.$children=[],this.$refs={},this.$els={},this._watchers=[],this._directives=[],this._uid=Hn++,this._isVue=!0,this._events={},this._eventsCount={},this._isFragment=!1,this._fragment=this._fragmentStart=this._fragmentEnd=null,this._isCompiled=this._isDestroyed=this._isReady=this._isAttached=this._isBeingDestroyed=this._vForRemoving=!1,this._unlinkFn=null,this._context=t._context||this.$parent,this._scope=t._scope,this._frag=t._frag,this._frag&&this._frag.children.push(this),this.$parent&&this.$parent.$children.push(this),t=this.$options=gt(this.constructor.options,t,this),this._updateRef(),this._data={},this._callHook("init"),this._initState(),this._initEvents(),this._callHook("created"),t.el&&this.$mount(t.el)}}function At(t){if(void 0===t)return"eof";var e=t.charCodeAt(0);switch(e){case 91:case 93:case 46:case 34:case 39:case 48:return t;case 95:case 36:return"ident";case 32:case 9:case 10:case 13:case 160:case 65279:case 8232:case 8233:return"ws"}return e>=97&&122>=e||e>=65&&90>=e?"ident":e>=49&&57>=e?"number":"else"}function Pt(t){var e=t.trim();return("0"!==t.charAt(0)||!isNaN(t))&&(n(e)?l(e):"*"+e)}function Nt(t){function e(){var e=t[c+1];return u===Yn&&"'"===e||u===Xn&&'"'===e?(c++,n="\\"+e,p[In](),!0):void 0}var i,n,r,s,a,o,l,h=[],c=-1,u=qn,f=0,p=[];for(p[Vn]=function(){void 0!==r&&(h.push(r),r=void 0)},p[In]=function(){void 0===r?r=n:r+=n},p[zn]=function(){p[In](),f++},p[Un]=function(){if(f>0)f--,u=Gn,p[In]();else{if(f=0,r=Pt(r),r===!1)return!1;p[Vn]()}};null!=u;)if(c++,i=t[c],"\\"!==i||!e()){if(s=At(i),l=er[u],a=l[s]||l["else"]||tr,a===tr)return;if(u=a[0],o=p[a[1]],o&&(n=a[2],n=void 0===n?i:n,o()===!1))return;if(u===Kn)return h.raw=t,h}}function Ot(t){var e=Mn.get(t);return e||(e=Nt(t),e&&Mn.put(t,e)),e}function Tt(t,e){return Lt(e).get(t)}function jt(e,i,n){var r=e;if("string"==typeof i&&(i=Nt(i)),!i||!g(e))return!1;for(var s,a,o=0,l=i.length;l>o;o++)s=e,a=i[o],"*"===a.charAt(0)&&(a=Lt(a.slice(1)).get.call(r,r)),l-1>o?(e=e[a],g(e)||(e={},t(s,a,e))):Fi(e)?e.$set(a,n):a in e?e[a]=n:t(e,a,n);return!0}function St(){}function Et(t,e){var i=vr.length;return vr[i]=e?t.replace(hr,"\\n"):t,'"'+i+'"'}function Ft(t){var e=t.charAt(0),i=t.slice(1);return sr.test(i)?t:(i=i.indexOf('"')>-1?i.replace(ur,Dt):i,e+"scope."+i)}function Dt(t,e){return vr[e]}function Rt(t){or.test(t),vr.length=0;var e=t.replace(cr,Et).replace(lr,"");return e=(" "+e).replace(pr,Ft).replace(ur,Dt),Bt(e)}function Bt(t){try{return new Function("scope","return "+t+";")}catch(e){return St}}function Wt(t){var e=Ot(t);return e?function(t,i){jt(t,e,i)}:void 0}function Lt(t,e){t=t.trim();var i=nr.get(t);if(i)return e&&!i.set&&(i.set=Wt(i.exp)),i;var n={exp:t};return n.get=Ht(t)&&t.indexOf("[")<0?Bt("scope."+t):Rt(t),e&&(n.set=Wt(t)),nr.put(t,n),n}function Ht(t){return fr.test(t)&&!dr.test(t)&&"Math."!==t.slice(0,5)}function Mt(){mr.length=0,br.length=0,_r={},yr={},wr=!1}function It(){for(var t=!0;t;)t=!1,Vt(mr),Vt(br),mr.length?t=!0:(Bi&&An.devtools&&Bi.emit("flush"),Mt())}function Vt(t){for(var e=0;e0){var a=s+(n?e:lt(e));r=Dr.get(a),r||(r=Fe(i,t.$options,!0),Dr.put(a,r))}else r=Fe(i,t.$options,!0);this.linker=r}function ae(t,e,i){var n=t.node.previousSibling;if(n){for(t=n.__v_frag;!(t&&t.forId===i&&t.inserted||n===e);){if(n=n.previousSibling,!n)return;t=n.__v_frag}return t}}function oe(t){var e=t.node;if(t.end)for(;!e.__vue__&&e!==t.end&&e.nextSibling;)e=e.nextSibling;return e.__vue__}function le(t){for(var e=-1,i=new Array(Math.floor(t));++eo;o++)if(n=t.options[o],s=i?n.hasAttribute("selected"):n.selected){if(r=n.hasOwnProperty("_value")?n._value:n.value,!e)return r;a.push(r)}return a}function ue(t,e){for(var i=t.length;i--;)if(k(t[i],e))return i;return-1}function fe(t,e){var i=e.map(function(t){var e=t.charCodeAt(0);return e>47&&58>e?parseInt(t,10):1===t.length&&(e=t.toUpperCase().charCodeAt(0),e>64&&91>e)?e:is[t]});return i=[].concat.apply([],i),function(e){return i.indexOf(e.keyCode)>-1?t.call(this,e):void 0}}function pe(t){return function(e){return e.stopPropagation(),t.call(this,e)}}function de(t){return function(e){return e.preventDefault(),t.call(this,e)}}function ve(t){return function(e){return e.target===e.currentTarget?t.call(this,e):void 0}}function ge(t){if(os[t])return os[t];var e=me(t);return os[t]=os[e]=e,e}function me(t){t=u(t);var e=h(t),i=e.charAt(0).toUpperCase()+e.slice(1);ls||(ls=document.createElement("div"));var n,r=rs.length;if("filter"!==e&&e in ls.style)return{kebab:t,camel:e};for(;r--;)if(n=ss[r]+i,n in ls.style)return{kebab:rs[r]+t,camel:n}}function be(t){var e=[];if(Fi(t))for(var i=0,n=t.length;n>i;i++){var r=t[i];if(r)if("string"==typeof r)e.push(r);else for(var s in r)r[s]&&e.push(s)}else if(g(t))for(var a in t)t[a]&&e.push(a);return e}function _e(t,e,i){if(e=e.trim(),-1===e.indexOf(" "))return void i(t,e);for(var n=e.split(/\s+/),r=0,s=n.length;s>r;r++)i(t,n[r])}function ye(t,e,i){function n(){++s>=r?i():t[s].call(e,n)}var r=t.length,s=0;t[0].call(e,n)}function we(t,e,i){for(var r,s,a,o,l,c,f,p=[],d=Object.keys(e),v=d.length;v--;)s=d[v],r=e[s]||$s,l=h(s),xs.test(l)&&(f={name:s,path:l,options:r,mode:Cs.ONE_WAY,raw:null},a=u(s),null===(o=H(t,a))&&(null!==(o=H(t,a+".sync"))?f.mode=Cs.TWO_WAY:null!==(o=H(t,a+".once"))&&(f.mode=Cs.ONE_TIME)),null!==o?(f.raw=o,c=A(o),o=c.expression,f.filters=c.filters,n(o)&&!c.filters?f.optimizedLiteral=!0:f.dynamic=!0,f.parentPath=o):null!==(o=L(t,a))&&(f.raw=o),p.push(f));return ke(p)}function ke(t){return function(e,n){e._props={};for(var r,s,h,c,f,p=e.$options.propsData,d=t.length;d--;)if(r=t[d],f=r.raw,s=r.path,h=r.options,e._props[s]=r,p&&i(p,s)&&$e(e,r,p[s]),null===f)$e(e,r,void 0);else if(r.dynamic)r.mode===Cs.ONE_TIME?(c=(n||e._context||e).$get(r.parentPath),$e(e,r,c)):e._context?e._bindDir({name:"prop",def:Ps,prop:r},null,null,n):$e(e,r,e.$get(r.parentPath));else if(r.optimizedLiteral){var v=l(f);c=v===f?o(a(f)):v,$e(e,r,c)}else c=h.type===Boolean&&(""===f||f===u(r.name))||f,$e(e,r,c)}}function Ce(t,e,i,n){var r=e.dynamic&&Ht(e.parentPath),s=i;void 0===s&&(s=Ae(t,e)),s=Ne(e,s,t);var a=s!==i;Pe(e,s,t)||(s=void 0),r&&!a?_t(function(){n(s)}):n(s)}function $e(t,e,i){Ce(t,e,i,function(i){$t(t,e.path,i)})}function xe(t,e,i){Ce(t,e,i,function(i){t[e.path]=i})}function Ae(t,e){var n=e.options;if(!i(n,"default"))return n.type!==Boolean&&void 0;var r=n["default"];return g(r),"function"==typeof r&&n.type!==Function?r.call(t):r}function Pe(t,e,i){if(!t.options.required&&(null===t.raw||null==e))return!0;var n=t.options,r=n.type,s=!r,a=[];if(r){Fi(r)||(r=[r]);for(var o=0;or;r++)n[r]._bind();return n}function Re(t,e){return t=t.descriptor.def.priority||zs,e=e.descriptor.def.priority||zs,t>e?-1:t===e?0:1}function Be(t,e,i,n){function r(r){We(t,e,r),i&&n&&We(i,n)}return r.dirs=e,r}function We(t,e,i){for(var n=e.length;n--;)e[n]._teardown()}function Le(t,e,i,n){var r=we(e,i,t),s=De(function(){r(t,n)},t);return Be(t,s)}function He(t,e,i){var n,r,s=e._containerAttrs,a=e._replacerAttrs;return 11!==t.nodeType&&(e._asComponent?(s&&i&&(n=ti(s,i)),a&&(r=ti(a,e))):r=ti(t.attributes,e)),e._containerAttrs=e._replacerAttrs=null,function(t,e,i){var s,a=t._context;a&&n&&(s=De(function(){n(a,e,null,i)},a));var o=De(function(){r&&r(t,e)},t);return Be(t,o,a,s)}}function Me(t,e){var i=t.nodeType;return 1!==i||ri(t)?3===i&&t.data.trim()?Ve(t,e):null:Ie(t,e)}function Ie(t,e){if("TEXTAREA"===t.tagName){var i=O(t.value);i&&(t.setAttribute(":value",T(i)),t.value="")}var n,r=t.hasAttributes(),s=r&&d(t.attributes);return r&&(n=Ye(t,s,e)),n||(n=Ze(t,e)),n||(n=Ge(t,e)),!n&&r&&(n=ti(s,e)),n}function Ve(t,e){if(t._skip)return ze;var i=O(t.wholeText);if(!i)return null;for(var n=t.nextSibling;n&&3===n.nodeType;)n._skip=!0,n=n.nextSibling;for(var r,s,a=document.createDocumentFragment(),o=0,l=i.length;l>o;o++)s=i[o],r=s.tag?Ue(s,e):document.createTextNode(s.value),a.appendChild(r);return qe(i,a,e)}function ze(t,e){z(e)}function Ue(t,e){function i(e){if(!t.descriptor){var i=A(t.value);t.descriptor={name:e,def:ys[e],expression:i.expression,filters:i.filters}}}var n;return t.oneTime?n=document.createTextNode(t.value):t.html?(n=document.createComment("v-html"),i("html")):(n=document.createTextNode(" "),i("text")),n}function qe(t,e){return function(i,n,r,a){for(var o,l,h,c=e.cloneNode(!0),u=d(c.childNodes),f=0,p=t.length;p>f;f++)o=t[f],l=o.value,o.tag&&(h=u[f],o.oneTime?(l=(a||i).$eval(l),o.html?q(h,Yt(l,!0)):h.data=s(l)):i._bindDir(o.descriptor,h,r,a));q(n,c)}}function Je(t,e){for(var i,n,r,s=[],a=0,o=t.length;o>a;a++)r=t[a],i=Me(r,e),n=i&&i.terminal||"SCRIPT"===r.tagName||!r.hasChildNodes()?null:Je(r.childNodes,e),s.push(i,n);return s.length?Qe(s):null}function Qe(t){return function(e,i,n,r,s){for(var a,o,l,h=0,c=0,u=t.length;u>h;c++){a=i[c],o=t[h++],l=t[h++];var f=d(a.childNodes);o&&o(e,a,n,r,s),l&&l(e,f,n,r,s)}}}function Ze(t,e){var i=t.tagName.toLowerCase();if(!Tn.test(i)){var n=mt(e,"elementDirectives",i);return n?Ke(t,i,"",e,n):void 0}}function Ge(t,e){var i=ht(t,e);if(i){var n=rt(t),r={name:"component",ref:n,expression:i.id,def:Ws.component,modifiers:{literal:!i.dynamic}},s=function(t,e,i,s,a){n&&$t((s||t).$refs,n,null),t._bindDir(r,e,i,s,a)};return s.terminal=!0,s}}function Ye(t,e,i){if(null!==L(t,"v-pre"))return Xe;if(t.hasAttribute("v-else")){var n=t.previousElementSibling;if(n&&n.hasAttribute("v-if"))return Xe}for(var r,s,a,o,l,h,c,u,f,p,d=0,v=e.length;v>d;d++)r=e[d],s=r.name.replace(Is,""),(l=s.match(Ms))&&(f=mt(i,"directives",l[1]),f&&f.terminal&&(!p||(f.priority||Us)>p.priority)&&(p=f,c=r.name,o=ei(r.name),a=r.value,h=l[1],u=l[2]));return p?Ke(t,h,a,i,p,c,u,o):void 0}function Xe(){}function Ke(t,e,i,n,r,s,a,o){var l=A(i),h={name:e,arg:a,expression:l.expression,filters:l.filters,raw:i,attr:s,modifiers:o,def:r};"for"!==e&&"router-view"!==e||(h.ref=rt(t));var c=function(t,e,i,n,r){h.ref&&$t((n||t).$refs,h.ref,null),t._bindDir(h,e,i,n,r)};return c.terminal=!0,c}function ti(t,e){function i(t,e,i){var n=i&&ni(i),r=!n&&A(s);v.push({name:t,attr:a,raw:o,def:e,arg:h,modifiers:c,expression:r&&r.expression,filters:r&&r.filters,interp:i,hasOneTime:n})}for(var n,r,s,a,o,l,h,c,u,f,p,d=t.length,v=[];d--;)if(n=t[d],r=a=n.name,s=o=n.value,f=O(s),h=null,c=ei(r),r=r.replace(Is,""),f)s=T(f),h=r,i("bind",ys.bind,f);else if(Vs.test(r))c.literal=!Ls.test(r),i("transition",Ws.transition);else if(Hs.test(r))h=r.replace(Hs,""),i("on",ys.on);else if(Ls.test(r))l=r.replace(Ls,""),"style"===l||"class"===l?i(l,Ws[l]):(h=l,i("bind",ys.bind));else if(p=r.match(Ms)){if(l=p[1],h=p[2],"else"===l)continue;u=mt(e,"directives",l,!0),u&&i(l,u)}return v.length?ii(v):void 0}function ei(t){var e=Object.create(null),i=t.match(Is);if(i)for(var n=i.length;n--;)e[i[n].slice(1)]=!0;return e}function ii(t){return function(e,i,n,r,s){for(var a=t.length;a--;)e._bindDir(t[a],i,n,r,s)}}function ni(t){for(var e=t.length;e--;)if(t[e].oneTime)return!0}function ri(t){return"SCRIPT"===t.tagName&&(!t.hasAttribute("type")||"text/javascript"===t.getAttribute("type"))}function si(t,e){return e&&(e._containerAttrs=oi(t)),it(t)&&(t=Yt(t)),e&&(e._asComponent&&!e.template&&(e.template=""),e.template&&(e._content=K(t),t=ai(t,e))),ot(t)&&(U(nt("v-start",!0),t),t.appendChild(nt("v-end",!0))),t}function ai(t,e){var i=e.template,n=Yt(i,!0);if(n){var r=n.firstChild,s=r.tagName&&r.tagName.toLowerCase();return e.replace?(t===document.body,n.childNodes.length>1||1!==r.nodeType||"component"===s||mt(e,"components",s)||M(r,"is")||mt(e,"elementDirectives",s)||r.hasAttribute("v-for")||r.hasAttribute("v-if")?n:(e._replacerAttrs=oi(r),li(t,r),r)):(t.appendChild(n),t)}}function oi(t){return 1===t.nodeType&&t.hasAttributes()?d(t.attributes):void 0}function li(t,e){for(var i,n,r=t.attributes,s=r.length;s--;)i=r[s].name,n=r[s].value,e.hasAttribute(i)||qs.test(i)?"class"===i&&!O(n)&&(n=n.trim())&&n.split(/\s+/).forEach(function(t){Y(e,t)}):e.setAttribute(i,n)}function hi(t,e){if(e){for(var i,n,r=t._slotContents=Object.create(null),s=0,a=e.children.length;a>s;s++)i=e.children[s],(n=i.getAttribute("slot"))&&(r[n]||(r[n]=[])).push(i);for(n in r)r[n]=ci(r[n],e);if(e.hasChildNodes()){var o=e.childNodes;if(1===o.length&&3===o[0].nodeType&&!o[0].data.trim())return;r["default"]=ci(e.childNodes,e)}}}function ci(t,e){var i=document.createDocumentFragment();t=d(t);for(var n=0,r=t.length;r>n;n++){var s=t[n];!it(s)||s.hasAttribute("v-if")||s.hasAttribute("v-for")||(e.removeChild(s),s=Yt(s,!0)),i.appendChild(s)}return i}function ui(t){function e(){}function n(t,e){var i=new Ut(e,t,null,{lazy:!0});return function(){return i.dirty&&i.evaluate(),bt.target&&i.depend(),i.value}}Object.defineProperty(t.prototype,"$data",{get:function(){return this._data},set:function(t){t!==this._data&&this._setData(t)}}),t.prototype._initState=function(){this._initProps(),this._initMeta(),this._initMethods(),this._initData(),this._initComputed()},t.prototype._initProps=function(){var t=this.$options,e=t.el,i=t.props;e=t.el=B(e),this._propsUnlinkFn=e&&1===e.nodeType&&i?Le(this,e,i,this._scope):null},t.prototype._initData=function(){var t=this.$options.data,e=this._data=t?t():{};m(e)||(e={});var n,r,s=this._props,a=Object.keys(e);for(n=a.length;n--;)r=a[n],s&&i(s,r)||this._proxy(r);Ct(e,this)},t.prototype._setData=function(t){t=t||{};var e=this._data;this._data=t;var n,r,s;for(n=Object.keys(e),s=n.length;s--;)r=n[s],r in t||this._unproxy(r);for(n=Object.keys(t),s=n.length;s--;)r=n[s],i(this,r)||this._proxy(r);e.__ob__.removeVm(this),Ct(t,this),this._digest()},t.prototype._proxy=function(t){if(!r(t)){var e=this;Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return e._data[t]},set:function(i){e._data[t]=i}})}},t.prototype._unproxy=function(t){r(t)||delete this[t]},t.prototype._digest=function(){for(var t=0,e=this._watchers.length;e>t;t++)this._watchers[t].update(!0)},t.prototype._initComputed=function(){var t=this.$options.computed;if(t)for(var i in t){var r=t[i],s={enumerable:!0,configurable:!0};"function"==typeof r?(s.get=n(r,this),s.set=e):(s.get=r.get?r.cache!==!1?n(r.get,this):p(r.get,this):e,s.set=r.set?p(r.set,this):e),Object.defineProperty(this,i,s)}},t.prototype._initMethods=function(){var t=this.$options.methods;if(t)for(var e in t)this[e]=p(t[e],this)},t.prototype._initMeta=function(){var t=this.$options._meta;if(t)for(var e in t)$t(this,e,t[e])}}function fi(t){function e(t,e){for(var i,n,r,s=e.attributes,a=0,o=s.length;o>a;a++)i=s[a].name,Qs.test(i)&&(i=i.replace(Qs,""),n=s[a].value,Ht(n)&&(n+=".apply(this, $arguments)"),r=(t._scope||t._context).$eval(n,!0),r._fromParent=!0,t.$on(i.replace(Qs),r))}function i(t,e,i){if(i){var r,s,a,o;for(s in i)if(r=i[s],Fi(r))for(a=0,o=r.length;o>a;a++)n(t,e,s,r[a]);else n(t,e,s,r)}}function n(t,e,i,r,s){var a=typeof r;if("function"===a)t[e](i,r,s);else if("string"===a){var o=t.$options.methods,l=o&&o[r];l&&t[e](i,l,s)}else r&&"object"===a&&n(t,e,i,r.handler,r)}function r(){this._isAttached||(this._isAttached=!0,this.$children.forEach(s))}function s(t){!t._isAttached&&W(t.$el)&&t._callHook("attached")}function a(){this._isAttached&&(this._isAttached=!1,this.$children.forEach(o))}function o(t){t._isAttached&&!W(t.$el)&&t._callHook("detached")}t.prototype._initEvents=function(){var t=this.$options;t._asComponent&&e(this,t.el),i(this,"$on",t.events),i(this,"$watch",t.watch)},t.prototype._initDOMHooks=function(){this.$on("hook:attached",r),this.$on("hook:detached",a)},t.prototype._callHook=function(t){this.$emit("pre-hook:"+t);var e=this.$options[t];if(e)for(var i=0,n=e.length;n>i;i++)e[i].call(this);this.$emit("hook:"+t)}}function pi(){}function di(t,e,i,n,r,s){this.vm=e,this.el=i,this.descriptor=t,this.name=t.name,this.expression=t.expression,this.arg=t.arg,this.modifiers=t.modifiers,this.filters=t.filters,this.literal=this.modifiers&&this.modifiers.literal,this._locked=!1,this._bound=!1,this._listeners=null,this._host=n,this._scope=r,this._frag=s}function vi(t){t.prototype._updateRef=function(t){var e=this.$options._ref;if(e){var i=(this._scope||this._context).$refs;t?i[e]===this&&(i[e]=null):i[e]=this}},t.prototype._compile=function(t){var e=this.$options,i=t;if(t=si(t,e),this._initElement(t),1!==t.nodeType||null===L(t,"v-pre")){var n=this._context&&this._context.$options,r=He(t,e,n);hi(this,e._content);var s,a=this.constructor;e._linkerCachable&&(s=a.linker,s||(s=a.linker=Fe(t,e)));var o=r(this,t,this._scope),l=s?s(this,t):Fe(t,e)(this,t);this._unlinkFn=function(){o(),l(!0)},e.replace&&q(i,t),this._isCompiled=!0,this._callHook("compiled")}},t.prototype._initElement=function(t){ot(t)?(this._isFragment=!0,this.$el=this._fragmentStart=t.firstChild,this._fragmentEnd=t.lastChild,3===this._fragmentStart.nodeType&&(this._fragmentStart.data=this._fragmentEnd.data=""),this._fragment=t):this.$el=t,this.$el.__vue__=this,this._callHook("beforeCompile")},t.prototype._bindDir=function(t,e,i,n,r){this._directives.push(new di(t,this,e,i,n,r))},t.prototype._destroy=function(t,e){if(this._isBeingDestroyed)return void(e||this._cleanup());var i,n,r=this,s=function(){!i||n||e||r._cleanup()};t&&this.$el&&(n=!0,this.$remove(function(){n=!1,s()})),this._callHook("beforeDestroy"), this._isBeingDestroyed=!0;var a,o=this.$parent;for(o&&!o._isBeingDestroyed&&(o.$children.$remove(this),this._updateRef(!0)),a=this.$children.length;a--;)this.$children[a].$destroy();for(this._propsUnlinkFn&&this._propsUnlinkFn(),this._unlinkFn&&this._unlinkFn(),a=this._watchers.length;a--;)this._watchers[a].teardown();this.$el&&(this.$el.__vue__=null),i=!0,s()},t.prototype._cleanup=function(){this._isDestroyed||(this._frag&&this._frag.children.$remove(this),this._data&&this._data.__ob__&&this._data.__ob__.removeVm(this),this.$el=this.$parent=this.$root=this.$children=this._watchers=this._context=this._scope=this._directives=null,this._isDestroyed=!0,this._callHook("destroyed"),this.$off())}}function gi(t){t.prototype._applyFilters=function(t,e,i,n){var r,s,a,o,l,h,c,u,f;for(h=0,c=i.length;c>h;h++)if(r=i[n?c-h-1:h],s=mt(this.$options,"filters",r.name,!0),s&&(s=n?s.write:s.read||s,"function"==typeof s)){if(a=n?[t,e]:[t],l=n?2:1,r.args)for(u=0,f=r.args.length;f>u;u++)o=r.args[u],a[u+l]=o.dynamic?this.$get(o.value):o.value;t=s.apply(this,a)}return t},t.prototype._resolveComponent=function(e,i){var n;if(n="function"==typeof e?e:mt(this.$options,"components",e,!0))if(n.options)i(n);else if(n.resolved)i(n.resolved);else if(n.requested)n.pendingCallbacks.push(i);else{n.requested=!0;var r=n.pendingCallbacks=[i];n.call(this,function(e){m(e)&&(e=t.extend(e)),n.resolved=e;for(var i=0,s=r.length;s>i;i++)r[i](e)},function(t){})}}}function mi(t){function i(t){return JSON.parse(JSON.stringify(t))}t.prototype.$get=function(t,e){var i=Lt(t);if(i){if(e){var n=this;return function(){n.$arguments=d(arguments);var t=i.get.call(n,n);return n.$arguments=null,t}}try{return i.get.call(this,this)}catch(r){}}},t.prototype.$set=function(t,e){var i=Lt(t,!0);i&&i.set&&i.set.call(this,this,e)},t.prototype.$delete=function(t){e(this._data,t)},t.prototype.$watch=function(t,e,i){var n,r=this;"string"==typeof t&&(n=A(t),t=n.expression);var s=new Ut(r,t,e,{deep:i&&i.deep,sync:i&&i.sync,filters:n&&n.filters,user:!i||i.user!==!1});return i&&i.immediate&&e.call(r,s.value),function(){s.teardown()}},t.prototype.$eval=function(t,e){if(Zs.test(t)){var i=A(t),n=this.$get(i.expression,e);return i.filters?this._applyFilters(n,null,i.filters):n}return this.$get(t,e)},t.prototype.$interpolate=function(t){var e=O(t),i=this;return e?1===e.length?i.$eval(e[0].value)+"":e.map(function(t){return t.tag?i.$eval(t.value):t.value}).join(""):t},t.prototype.$log=function(t){var e=t?Tt(this._data,t):this._data;if(e&&(e=i(e)),!t){var n;for(n in this.$options.computed)e[n]=i(this[n]);if(this._props)for(n in this._props)e[n]=i(this[n])}}}function bi(t){function e(t,e,n,r,s,a){e=i(e);var o=!W(e),l=r===!1||o?s:a,h=!o&&!t._isAttached&&!W(t.$el);return t._isFragment?(st(t._fragmentStart,t._fragmentEnd,function(i){l(i,e,t)}),n&&n()):l(t.$el,e,t,n),h&&t._callHook("attached"),t}function i(t){return"string"==typeof t?document.querySelector(t):t}function n(t,e,i,n){e.appendChild(t),n&&n()}function r(t,e,i,n){I(t,e),n&&n()}function s(t,e,i){z(t),i&&i()}t.prototype.$nextTick=function(t){Xi(t,this)},t.prototype.$appendTo=function(t,i,r){return e(this,t,i,r,n,E)},t.prototype.$prependTo=function(t,e,n){return t=i(t),t.hasChildNodes()?this.$before(t.firstChild,e,n):this.$appendTo(t,e,n),this},t.prototype.$before=function(t,i,n){return e(this,t,i,n,r,F)},t.prototype.$after=function(t,e,n){return t=i(t),t.nextSibling?this.$before(t.nextSibling,e,n):this.$appendTo(t.parentNode,e,n),this},t.prototype.$remove=function(t,e){if(!this.$el.parentNode)return t&&t();var i=this._isAttached&&W(this.$el);i||(e=!1);var n=this,r=function(){i&&n._callHook("detached"),t&&t()};if(this._isFragment)at(this._fragmentStart,this._fragmentEnd,this,this._fragment,r);else{var a=e===!1?s:D;a(this.$el,this,r)}return this}}function _i(t){function e(t,e,n){var r=t.$parent;if(r&&n&&!i.test(e))for(;r;)r._eventsCount[e]=(r._eventsCount[e]||0)+n,r=r.$parent}t.prototype.$on=function(t,i){return(this._events[t]||(this._events[t]=[])).push(i),e(this,t,1),this},t.prototype.$once=function(t,e){function i(){n.$off(t,i),e.apply(this,arguments)}var n=this;return i.fn=e,this.$on(t,i),this},t.prototype.$off=function(t,i){var n;if(!arguments.length){if(this.$parent)for(t in this._events)n=this._events[t],n&&e(this,t,-n.length);return this._events={},this}if(n=this._events[t],!n)return this;if(1===arguments.length)return e(this,t,-n.length),this._events[t]=null,this;for(var r,s=n.length;s--;)if(r=n[s],r===i||r.fn===i){e(this,t,-1),n.splice(s,1);break}return this},t.prototype.$emit=function(t){var e="string"==typeof t;t=e?t:t.name;var i=this._events[t],n=e||!i;if(i){i=i.length>1?d(i):i;var r=e&&i.some(function(t){return t._fromParent});r&&(n=!1);for(var s=d(arguments,1),a=0,o=i.length;o>a;a++){var l=i[a],h=l.apply(this,s);h!==!0||r&&!l._fromParent||(n=!0)}}return n},t.prototype.$broadcast=function(t){var e="string"==typeof t;if(t=e?t:t.name,this._eventsCount[t]){var i=this.$children,n=d(arguments);e&&(n[0]={name:t,source:this});for(var r=0,s=i.length;s>r;r++){var a=i[r],o=a.$emit.apply(a,n);o&&a.$broadcast.apply(a,n)}return this}},t.prototype.$dispatch=function(t){var e=this.$emit.apply(this,arguments);if(e){var i=this.$parent,n=d(arguments);for(n[0]={name:t,source:this};i;)e=i.$emit.apply(i,n),i=e?i.$parent:null;return this}};var i=/^hook:/}function yi(t){function e(){this._isAttached=!0,this._isReady=!0,this._callHook("ready")}t.prototype.$mount=function(t){return this._isCompiled?void 0:(t=B(t),t||(t=document.createElement("div")),this._compile(t),this._initDOMHooks(),W(this.$el)?(this._callHook("attached"),e.call(this)):this.$once("hook:attached",e),this)},t.prototype.$destroy=function(t,e){this._destroy(t,e)},t.prototype.$compile=function(t,e,i,n){return Fe(t,this.$options,!0)(this,t,e,i,n)}}function wi(t){this._init(t)}function ki(t,e,i){return i=i?parseInt(i,10):0,e=a(e),"number"==typeof e?t.slice(i,i+e):t}function Ci(t,e,i){if(t=Ks(t),null==e)return t;if("function"==typeof e)return t.filter(e);e=(""+e).toLowerCase();for(var n,r,s,a,o="in"===i?3:2,l=Array.prototype.concat.apply([],d(arguments,o)),h=[],c=0,u=t.length;u>c;c++)if(n=t[c],s=n&&n.$value||n,a=l.length){for(;a--;)if(r=l[a],"$key"===r&&xi(n.$key,e)||xi(Tt(s,r),e)){h.push(n);break}}else xi(n,e)&&h.push(n);return h}function $i(t){function e(t,e,i){var r=n[i];return r&&("$key"!==r&&(g(t)&&"$value"in t&&(t=t.$value),g(e)&&"$value"in e&&(e=e.$value)),t=g(t)?Tt(t,r):t,e=g(e)?Tt(e,r):e),t===e?0:t>e?s:-s}var i=null,n=void 0;t=Ks(t);var r=d(arguments,1),s=r[r.length-1];"number"==typeof s?(s=0>s?-1:1,r=r.length>1?r.slice(0,-1):r):s=1;var a=r[0];return a?("function"==typeof a?i=function(t,e){return a(t,e)*s}:(n=Array.prototype.concat.apply([],r),i=function(t,r,s){return s=s||0,s>=n.length-1?e(t,r,s):e(t,r,s)||i(t,r,s+1)}),t.slice().sort(i)):t}function xi(t,e){var i;if(m(t)){var n=Object.keys(t);for(i=n.length;i--;)if(xi(t[n[i]],e))return!0}else if(Fi(t)){for(i=t.length;i--;)if(xi(t[i],e))return!0}else if(null!=t)return t.toString().toLowerCase().indexOf(e)>-1}function Ai(i){function n(t){return new Function("return function "+f(t)+" (options) { this._init(options) }")()}i.options={directives:ys,elementDirectives:Xs,filters:ea,transitions:{},components:{},partials:{},replace:!0},i.util=Ln,i.config=An,i.set=t,i["delete"]=e,i.nextTick=Xi,i.compiler=Js,i.FragmentFactory=se,i.internalDirectives=Ws,i.parsers={path:ir,text:Cn,template:Er,directive:mn,expression:gr},i.cid=0;var r=1;i.extend=function(t){t=t||{};var e=this,i=0===e.cid;if(i&&t._Ctor)return t._Ctor;var s=t.name||e.options.name,a=n(s||"VueComponent");return a.prototype=Object.create(e.prototype),a.prototype.constructor=a,a.cid=r++,a.options=gt(e.options,t),a["super"]=e,a.extend=e.extend,An._assetTypes.forEach(function(t){a[t]=e[t]}),s&&(a.options.components[s]=a),i&&(t._Ctor=a),a},i.use=function(t){if(!t.installed){var e=d(arguments,1);return e.unshift(this),"function"==typeof t.install?t.install.apply(t,e):t.apply(null,e),t.installed=!0,this}},i.mixin=function(t){i.options=gt(i.options,t)},An._assetTypes.forEach(function(t){i[t]=function(e,n){return n?("component"===t&&m(n)&&(n.name||(n.name=e),n=i.extend(n)),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}),v(i.transition,Nn)}var Pi=Object.prototype.hasOwnProperty,Ni=/^\s?(true|false|-?[\d\.]+|'[^']*'|"[^"]*")\s?$/,Oi=/-(\w)/g,Ti=/([a-z\d])([A-Z])/g,ji=/(?:^|[-_\/])(\w)/g,Si=Object.prototype.toString,Ei="[object Object]",Fi=Array.isArray,Di="__proto__"in{},Ri="undefined"!=typeof window&&"[object Object]"!==Object.prototype.toString.call(window),Bi=Ri&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__,Wi=Ri&&window.navigator.userAgent.toLowerCase(),Li=Wi&&Wi.indexOf("trident")>0,Hi=Wi&&Wi.indexOf("msie 9.0")>0,Mi=Wi&&Wi.indexOf("android")>0,Ii=Wi&&/(iphone|ipad|ipod|ios)/i.test(Wi),Vi=Ii&&Wi.match(/os ([\d_]+)/),zi=Vi&&Vi[1].split("_"),Ui=zi&&Number(zi[0])>=9&&Number(zi[1])>=3&&!window.indexedDB,qi=void 0,Ji=void 0,Qi=void 0,Zi=void 0;if(Ri&&!Hi){var Gi=void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend,Yi=void 0===window.onanimationend&&void 0!==window.onwebkitanimationend;qi=Gi?"WebkitTransition":"transition",Ji=Gi?"webkitTransitionEnd":"transitionend",Qi=Yi?"WebkitAnimation":"animation",Zi=Yi?"webkitAnimationEnd":"animationend"}var Xi=function(){function t(){n=!1;var t=i.slice(0);i=[];for(var e=0;ee;e++)t[e].update()};var Dn=Array.prototype,Rn=Object.create(Dn);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(t){var e=Dn[t];b(Rn,t,function(){for(var i=arguments.length,n=new Array(i);i--;)n[i]=arguments[i];var r,s=e.apply(this,n),a=this.__ob__;switch(t){case"push":r=n;break;case"unshift":r=n;break;case"splice":r=n.slice(2)}return r&&a.observeArray(r),a.dep.notify(),s})}),b(Dn,"$set",function(t,e){return t>=this.length&&(this.length=Number(t)+1),this.splice(t,1,e)[0]}),b(Dn,"$remove",function(t){if(this.length){var e=y(this,t);return e>-1?this.splice(e,1):void 0}});var Bn=Object.getOwnPropertyNames(Rn),Wn=!0;yt.prototype.walk=function(t){for(var e=Object.keys(t),i=0,n=e.length;n>i;i++)this.convert(e[i],t[e[i]])},yt.prototype.observeArray=function(t){for(var e=0,i=t.length;i>e;e++)Ct(t[e])},yt.prototype.convert=function(t,e){$t(this.value,t,e)},yt.prototype.addVm=function(t){(this.vms||(this.vms=[])).push(t)},yt.prototype.removeVm=function(t){this.vms.$remove(t)};var Ln=Object.freeze({defineReactive:$t,set:t,del:e,hasOwn:i,isLiteral:n,isReserved:r,_toString:s,toNumber:a,toBoolean:o,stripQuotes:l,camelize:h,hyphenate:u,classify:f,bind:p,toArray:d,extend:v,isObject:g,isPlainObject:m,def:b,debounce:_,indexOf:y,cancellable:w,looseEqual:k,isArray:Fi,hasProto:Di,inBrowser:Ri,devtools:Bi,isIE:Li,isIE9:Hi,isAndroid:Mi,isIos:Ii,iosVersionMatch:Vi,iosVersion:zi,hasMutationObserverBug:Ui,get transitionProp(){return qi},get transitionEndEvent(){return Ji},get animationProp(){return Qi},get animationEndEvent(){return Zi},nextTick:Xi,get _Set(){return Ki},query:B,inDoc:W,getAttr:L,getBindAttr:H,hasBindAttr:M,before:I,after:V,remove:z,prepend:U,replace:q,on:J,off:Q,setClass:G,addClass:Y,removeClass:X,extractContent:K,trimNode:tt,isTemplate:it,createAnchor:nt,findRef:rt,mapNodeRange:st,removeNodeRange:at,isFragment:ot,getOuterHTML:lt,mergeOptions:gt,resolveAsset:mt,checkComponentAttr:ht,commonTagRE:Tn,reservedTagRE:jn,warn:Pn}),Hn=0,Mn=new C(1e3),In=0,Vn=1,zn=2,Un=3,qn=0,Jn=1,Qn=2,Zn=3,Gn=4,Yn=5,Xn=6,Kn=7,tr=8,er=[];er[qn]={ws:[qn],ident:[Zn,In],"[":[Gn],eof:[Kn]},er[Jn]={ws:[Jn],".":[Qn],"[":[Gn],eof:[Kn]},er[Qn]={ws:[Qn],ident:[Zn,In]},er[Zn]={ident:[Zn,In],0:[Zn,In],number:[Zn,In],ws:[Jn,Vn],".":[Qn,Vn],"[":[Gn,Vn],eof:[Kn,Vn]},er[Gn]={"'":[Yn,In],'"':[Xn,In],"[":[Gn,zn],"]":[Jn,Un],eof:tr,"else":[Gn,In]},er[Yn]={"'":[Gn,In],eof:tr,"else":[Yn,In]},er[Xn]={'"':[Gn,In],eof:tr,"else":[Xn,In]};var ir=Object.freeze({parsePath:Ot,getPath:Tt,setPath:jt}),nr=new C(1e3),rr="Math,Date,this,true,false,null,undefined,Infinity,NaN,isNaN,isFinite,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,parseInt,parseFloat",sr=new RegExp("^("+rr.replace(/,/g,"\\b|")+"\\b)"),ar="break,case,class,catch,const,continue,debugger,default,delete,do,else,export,extends,finally,for,function,if,import,in,instanceof,let,return,super,switch,throw,try,var,while,with,yield,enum,await,implements,package,protected,static,interface,private,public",or=new RegExp("^("+ar.replace(/,/g,"\\b|")+"\\b)"),lr=/\s/g,hr=/\n/g,cr=/[\{,]\s*[\w\$_]+\s*:|('(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`)|new |typeof |void /g,ur=/"(\d+)"/g,fr=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['.*?'\]|\[".*?"\]|\[\d+\]|\[[A-Za-z_$][\w$]*\])*$/,pr=/[^\w$\.](?:[A-Za-z_$][\w$]*)/g,dr=/^(?:true|false|null|undefined|Infinity|NaN)$/,vr=[],gr=Object.freeze({parseExpression:Lt,isSimplePath:Ht}),mr=[],br=[],_r={},yr={},wr=!1,kr=0;Ut.prototype.get=function(){this.beforeGet();var t,e=this.scope||this.vm;try{t=this.getter.call(e,e)}catch(i){}return this.deep&&qt(t),this.preProcess&&(t=this.preProcess(t)),this.filters&&(t=e._applyFilters(t,null,this.filters,!1)),this.postProcess&&(t=this.postProcess(t)),this.afterGet(),t},Ut.prototype.set=function(t){var e=this.scope||this.vm;this.filters&&(t=e._applyFilters(t,this.value,this.filters,!0));try{this.setter.call(e,e,t)}catch(i){}var n=e.$forContext;if(n&&n.alias===this.expression){if(n.filters)return;n._withLock(function(){e.$key?n.rawValue[e.$key]=t:n.rawValue.$set(e.$index,t)})}},Ut.prototype.beforeGet=function(){bt.target=this},Ut.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},Ut.prototype.afterGet=function(){bt.target=null;for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var i=this.depIds;this.depIds=this.newDepIds,this.newDepIds=i,this.newDepIds.clear(),i=this.deps,this.deps=this.newDeps,this.newDeps=i,this.newDeps.length=0},Ut.prototype.update=function(t){this.lazy?this.dirty=!0:this.sync||!An.async?this.run():(this.shallow=this.queued?!!t&&this.shallow:!!t,this.queued=!0,zt(this))},Ut.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||(g(t)||this.deep)&&!this.shallow){var e=this.value;this.value=t,this.prevError,this.cb.call(this.vm,t,e)}this.queued=this.shallow=!1}},Ut.prototype.evaluate=function(){var t=bt.target;this.value=this.get(),this.dirty=!1,bt.target=t},Ut.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Ut.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||this.vm._vForRemoving||this.vm._watchers.$remove(this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1,this.vm=this.cb=this.value=null}};var Cr=new Ki,$r={bind:function(){this.attr=3===this.el.nodeType?"data":"textContent"},update:function(t){this.el[this.attr]=s(t)}},xr=new C(1e3),Ar=new C(1e3),Pr={efault:[0,"",""],legend:[1,"
","
"],tr:[2,"","
"],col:[2,"","
"]};Pr.td=Pr.th=[3,"","
"],Pr.option=Pr.optgroup=[1,'"],Pr.thead=Pr.tbody=Pr.colgroup=Pr.caption=Pr.tfoot=[1,"","
"],Pr.g=Pr.defs=Pr.symbol=Pr.use=Pr.image=Pr.text=Pr.circle=Pr.ellipse=Pr.line=Pr.path=Pr.polygon=Pr.polyline=Pr.rect=[1,'',""];var Nr=/<([\w:-]+)/,Or=/&#?\w+?;/,Tr=//,prolog:/<\?[\w\W]+?\?>/,doctype://,cdata://i,tag:{pattern:/<\/?[^\s>\/=.]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/i,inside:{punctuation:/[=>"']/}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},Prism.hooks.add("wrap",function(t){"entity"===t.type&&(t.attributes.title=t.content.replace(/&/,"&"))}),Prism.languages.xml=Prism.languages.markup,Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/()[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag)),Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/},Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,number:/\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,"function":/[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i}),Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^\/])\/(?!\/)(\[.+?]|\\.|[^\/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/,lookbehind:!0}}),Prism.languages.insertBefore("javascript","class-name",{"template-string":{pattern:/`(?:\\`|\\?[^`])*`/,inside:{interpolation:{pattern:/\$\{[^}]+\}/,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/()[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.javascript,alias:"language-javascript"}}),Prism.languages.js=Prism.languages.javascript,!function(t){var e=/#(?!\{).+/,i={pattern:/#\{[^}]+\}/,alias:"variable"};t.languages.coffeescript=t.languages.extend("javascript",{comment:e,string:[/'(?:\\?[^\\])*?'/,{pattern:/"(?:\\?[^\\])*?"/,inside:{interpolation:i}}],keyword:/\b(and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,"class-member":{pattern:/@(?!\d)\w+/,alias:"variable"}}),t.languages.insertBefore("coffeescript","comment",{"multiline-comment":{pattern:/###[\s\S]+?###/,alias:"comment"},"block-regex":{pattern:/\/{3}[\s\S]*?\/{3}/,alias:"regex",inside:{comment:e,interpolation:i}}}),t.languages.insertBefore("coffeescript","string",{"inline-javascript":{pattern:/`(?:\\?[\s\S])*?`/,inside:{delimiter:{pattern:/^`|`$/,alias:"punctuation"},rest:t.languages.javascript}},"multiline-string":[{pattern:/'''[\s\S]*?'''/,alias:"string"},{pattern:/"""[\s\S]*?"""/,alias:"string",inside:{interpolation:i}}]}),t.languages.insertBefore("coffeescript","keyword",{property:/(?!\d)\w+(?=\s*:(?!:))/})}(Prism),Prism.languages.php=Prism.languages.extend("clike",{keyword:/\b(and|or|xor|array|as|break|case|cfunction|class|const|continue|declare|default|die|do|else|elseif|enddeclare|endfor|endforeach|endif|endswitch|endwhile|extends|for|foreach|function|include|include_once|global|if|new|return|static|switch|use|require|require_once|var|while|abstract|interface|public|implements|private|protected|parent|throw|null|echo|print|trait|namespace|final|yield|goto|instanceof|finally|try|catch)\b/i,constant:/\b[A-Z0-9_]{2,}\b/,comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0}}),Prism.languages.insertBefore("php","class-name",{"shell-comment":{pattern:/(^|[^\\])#.*/,lookbehind:!0,alias:"comment"}}),Prism.languages.insertBefore("php","keyword",{delimiter:/\?>|<\?(?:php)?/i,variable:/\$\w+\b/i,"package":{pattern:/(\\|namespace\s+|use\s+)[\w\\]+/,lookbehind:!0,inside:{punctuation:/\\/}}}),Prism.languages.insertBefore("php","operator",{property:{pattern:/(->)[\w]+/,lookbehind:!0}}),Prism.languages.markup&&(Prism.hooks.add("before-highlight",function(t){"php"===t.language&&(t.tokenStack=[],t.backupCode=t.code,t.code=t.code.replace(/(?:<\?php|<\?)[\w\W]*?(?:\?>)/gi,function(e){return t.tokenStack.push(e),"{{{PHP"+t.tokenStack.length+"}}}"}))}),Prism.hooks.add("before-insert",function(t){"php"===t.language&&(t.code=t.backupCode,delete t.backupCode)}),Prism.hooks.add("after-highlight",function(t){if("php"===t.language){for(var e,i=0;e=t.tokenStack[i];i++)t.highlightedCode=t.highlightedCode.replace("{{{PHP"+(i+1)+"}}}",Prism.highlight(e,t.grammar,"php").replace(/\$/g,"$$$$"));t.element.innerHTML=t.highlightedCode}}),Prism.hooks.add("wrap",function(t){"php"===t.language&&"markup"===t.type&&(t.content=t.content.replace(/(\{\{\{PHP[0-9]+\}\}\})/g,'$1'))}),Prism.languages.insertBefore("php","comment",{markup:{pattern:/<[^?]\/?(.*?)>/,inside:Prism.languages.markup},php:/\{\{\{PHP[0-9]+\}\}\}/})),!function(t){t.languages.sass=t.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t]+.+)*/m,lookbehind:!0}}),t.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,inside:{atrule:/(?:@[\w-]+|[+=])/m}}}),delete t.languages.sass.atrule;var e=/((\$[-_\w]+)|(#\{\$[-_\w]+\}))/i,i=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|or|not)\b/,{pattern:/(\s+)-(?=\s)/,lookbehind:!0}];t.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,inside:{punctuation:/:/,variable:e,operator:i}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s]+.*)/m,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:e,operator:i,important:t.languages.sass.important}}}),delete t.languages.sass.property,delete t.languages.sass.important,delete t.languages.sass.selector,t.languages.insertBefore("sass","punctuation",{selector:{pattern:/([ \t]*)\S(?:,?[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,?[^,\r\n]+)*)*/,lookbehind:!0}})}(Prism),Prism.languages.scss=Prism.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\w\W]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-]+(?:\([^()]+\)|[^(])*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)*url(?=\()/i,selector:{pattern:/(?=\S)[^@;\{\}\(\)]?([^@;\{\}\(\)]|&|#\{\$[-_\w]+\})+(?=\s*\{(\}|\s|[^\}]+(:|\{)[^\}]+))/m,inside:{placeholder:/%[-_\w]+/}}}),Prism.languages.insertBefore("scss","atrule",{keyword:[/@(?:if|else(?: if)?|for|each|while|import|extend|debug|warn|mixin|include|function|return|content)/i,{pattern:/( +)(?:from|through)(?= )/,lookbehind:!0}]}),Prism.languages.insertBefore("scss","property",{variable:/\$[-_\w]+|#\{\$[-_\w]+\}/}),Prism.languages.insertBefore("scss","function",{placeholder:{pattern:/%[-_\w]+/,alias:"selector"},statement:/\B!(?:default|optional)\b/i,"boolean":/\b(?:true|false)\b/,"null":/\bnull\b/,operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|or|not)(?=\s)/,lookbehind:!0}}),Prism.languages.scss.atrule.inside.rest=Prism.util.clone(Prism.languages.scss),!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("complete",function(t){if(t.code){var e=t.element.parentNode,i=/\s*\bline-numbers\b\s*/;if(e&&/pre/i.test(e.nodeName)&&(i.test(e.className)||i.test(t.element.className))&&!t.element.querySelector(".line-numbers-rows")){i.test(t.element.className)&&(t.element.className=t.element.className.replace(i,"")),i.test(e.className)||(e.className+=" line-numbers");var n,r=t.code.match(/\n(?!$)/g),s=r?r.length+1:1,a=new Array(s+1);a=a.join(""),n=document.createElement("span"),n.className="line-numbers-rows",n.innerHTML=a,e.hasAttribute("data-start")&&(e.style.counterReset="linenumber "+(parseInt(e.getAttribute("data-start"),10)-1)),t.element.appendChild(n)}}})}(),!function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("before-highlight",function(t){if(t.code){var e=t.element.parentNode,i=/\s*\bkeep-initial-line-feed\b\s*/;!e||"pre"!==e.nodeName.toLowerCase()||i.test(e.className)||i.test(t.element.className)||(t.code=t.code.replace(/^(?:\r?\n|\r)/,""))}})}(),new Vue({el:"body",data:{sidebarVisible:!1}}); ================================================ FILE: source/letter-spacing.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Letter Spacing Responsive

Yes, even letter-spacing gets responsive love in Beard. Why would you need responsive letter-spacing? Whenever spaced out text changes in size, it's helpful to have the letter-spacing change with it. These helpers make it easy to do so in a similar way to the font-sizing helpers.

Name Class
Level 1 .ls1
Level 2 .ls2
Level 3 .ls3
Level 4 .ls4
Level 5 .ls5
Level 6 .ls6
Level 7 .ls7
Level 8 .ls8
Level 9 .ls9
Level 10 .ls10

Example:

```html

Eye-Catching Heading!!!

```

The text above would be aligned left by default, center on the medium breakpoint, right on the large breakpoint, and back to left on the extra large breakpoint.

================================================ FILE: source/line-heights.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Line Heights Responsive

Name Class Generated Value
Level 1 .lh1 line-height: 1
Level 1.1 .lh1-1 line-height: 1.1
Level 1.2 .lh1-2 line-height: 1.2
Level 1.3 .lh1-3 line-height: 1.3
Level 1.4 .lh1-4 line-height: 1.4
Level 1.5 .lh1-5 line-height: 1.5
Level 1.6 .lh1-6 line-height: 1.6
Level 1.7 .lh1-7 line-height: 1.7
Level 1.8 .lh1-8 line-height: 1.8
Level 1.9 .lh1-9 line-height: 1.9
Level 2 .lh2 line-height: 2

Example:

```html

Text with responsive line-height.

```

The text's line-height would have a value of '1' by default and a value of 1.5, starting on the large breakpoint.

================================================ FILE: source/misc.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Miscellaneous Helpers

Beard comes with a small helping of odds and ends to make your life easier.

Class / Placeholder Purpose
.center %center Center an element using auto margin.
.default-hover %default-hover Lower the opacity for an element on its hover state
.default-active %default-active Lower the opacity for an element on its active state
.dim %dim Apply a combination of .default-hover and .default-active
.site-width %site-width Set the element's max-width to the global $side-width.
.lowercase Transform the text to lowercase
.uppercase Transform the text to uppercase
.ell Add an ellipsis when text gets longer than its container
.imax Allow an image to scale to 100% of its containing element's size
.i100 Set an image's width to 100%
.bgcover Set an element's background-size to fill up its container proportionally
.bgcenter Center an element's background
.vam Vertically align a td element's content to the middle
.clearfix %clearfix Apply a classic clearfix to a containing element.
.hidetext %hidetext Hide text from the viewer, but leave it for search engines and screen readers.
================================================ FILE: source/overflow.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Overflow

Class Value
.ofh overflow: hidden
.ofx overflow-x: scroll
.ofy overflow-y: scroll
================================================ FILE: source/philosophy.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Philosophy

Beard is an atomic CSS library for rapidly styling web app components and sites. It was created to meet the CSS needs of a demanding and fast-paced production web app. Beard is not a front-end framework but can be used to create one and can function as the basis for a standardized set of classes for projects. It doesn't come with any pre-built components or widgets, and it doesn't come with any Javascript. It provides only the lowest-level atomic abstractions needed by most web apps.

An Example of the Beard Workflow

For example, let’s pretend you are building a button component for your project. You want buttons to be able to have two background colors and two font colors. You may be tempted to write these classes:

```html Submit Me ```

There are a number of problems with this approach. It's hard to know what color "dark" is. Does it have more styles in it? Is it connected to the button class?

In Beard, we would encourage you to use the built-in background and text color helper classes:

```html Submit Me! ```

This would apply a black background (.bgb) with white text (.tcw). At first, the naming scheme seems odd, until you realize that Beard tries to follow a mnemonic approach.

Next, let’s say you choose to set up some default padding and border styles. Again, using Beard, we can optimize this process by using global helper classes.

```html Submit Me! ```

In addition to the previous styles, this would add a 1px border with the color being the value of $branding-color-1. It would also add vertical padding in the amount of the 1st value in the spacing scale (10px by default), and horizontal padding from the 2nd level in the scale (20px by default). It would finally add a border-radius of 3px.

By now you might be saying to yourself, "So what would be the purpose of having a .button class then? All the styles are in those helper classes." That's exactly what we were thinking! In fact, for some projects you may not need anything more than this. But let's say you now needed to put this button inside another component in your system. You could add a "project-specific" class that can handle that special case:

```html ```

The class .card__button could contain rules with absolute positioning, margins, or anything else specific to that "instance" of the component or something that Beard doesn't provide a handy helper for.

================================================ FILE: source/position.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Position

Class Value
.relative position: relative
.absolute position: absolute
.fixed position: fixed
.pin-top top: 0
.pin-right right: 0
.pin-bottom bottom: 0
.pin-left left: 0
.pin-edges top: 0; right: 0; bottom: 0; left: 0;
================================================ FILE: source/reset-and-base.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Reset & Base

Beard is designed to be highly useful for web applications. To this end, we've added a hard reset in place of other options like Normalize.css. We feel this provides the best method of "setting an even playing field" for building out front-end components.

Of course, you don't have to use this reset, and can instead opt to use your own. If you'd like to disable Beard's reset, simply set the flag before you import Beard.

```scss $beard-reset: false; ```

Base Styles

Beard comes with a few opinionated defaults for things such as the html and body elements, headings, and other basic elements. These are written as smart defaults which most people want to have out of the box. It also sets images to be responsive by default. However, if the provided defaults don't serve your needs, you can redefine the styles in your own Sass.

Again, you don't have to use these base styles, and can disable them by setting the flag before you import Beard.

```scss $beard-base: false; ``` ================================================ FILE: source/responsive-prefixes.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Responsive Prefixes

Because Beard ships with a standard set of breakpoints, many of the helpers are responsive. These helpers are generated from the breakpoints in your configuration. These are the default breakpoints:

Name Prefix Target
Small .sm- (min-width: 300px)
Medium .md- (min-width: 600px)
Large .lg- (min-width: 900px)
Extra Large .xlg- (min-width: 1440px)
Only Small .only-sm- (max-width: 599px)
Only Medium .only-md- (min-width: 600px) and (max-width: 899px)
Only Large .only-lg- (min-width: 900px) and (max-width: 1439px)
Only Extra Large .only-xlg- (min-width: 1440px)

You can use responsive prefixes to specify when an element should be shown on a page. The following would hide the element on the `lg` breakpoint.

```html
Show on the large breakpoint
```

Adding New Breakpoints

This mixin allows you to add a new breakpoint to be generated along with Beard’s defaults. This will also cause every responsive-helper type to generate a new classes using this breakpoint's key

```scss @include new-breakpoint(tablet, '(min-width: 600px)'); ```

Note: Calling this mixin will only work if you import Beard’s before and after partials, as recommended by the installation guide.

Using breakpoints in Sass with media()

Used inside a CSS declaration, this mixin will generate the appropriate media query based on the name registered in Beard's configuration. The media queries are configurable by overriding the settings in _config.scss or by adding new ones with the new-breakpoint() mixin.

```scss // This Scss .narcos { @include media(sm) { display: none; } } // Generates this CSS @media screen and (min-width: 300px) { .narcos { display: none; } } ``` ================================================ FILE: source/spacing.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Spacing Responsive

The spacing system is set up by default to have 10 increments, each representing 1rem in size. For example, to achieve a margin-top which uses the 2nd step in the spacing scale (2rems by deafult), you would use .mt2. If you wanted a padding-left with the 8th step in the scale, it's .pl8.

Name Class
Margin All .ma
Margin Vertical .mv
Margin Horizontal .mh
Margin Top .mt
Margin Right .mr
Margin Bottom .mb
Margin Left .ml
Padding All .pa
Padding Vertical .pv
Padding Horizontal .ph
Padding Top .pt
Padding Right .pr
Padding Bottom .pb
Padding Left .pl

Example:

```html
This div has stuff in it
```

Adding New Spacing Helpers

This mixin allows you to add a value to be generated along with Beard's default spacing helpers, including responsive versions of each.

```scss @include new-spacing-helper(16); // Outputs responsive helpers like .pt16 { padding-top: 16rem !important } @include new-spacing-helper('--tiny', 0.3); // Outputs responsive helpers like .pt--tiny { padding-top: 0.3rem !important } ```

Note: Calling this mixin will only work if you import Beard’s before and after partials, as recommended by the installation guide.

================================================ FILE: source/text-alignment.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Text Alignment Responsive

Name Class
Text Align Left .tal
Text Align Center .tac
Text Align Right .tar

Example:

```html

Here is some aligned text

```

The text above would be aligned left by default, center on the medium breakpoint, right on the large breakpoint, and back to left on the extra large breakpoint.

================================================ FILE: source/tools.md ================================================ --- extends: _layouts.subpage section: subpage_content ---

Tools

Beard isn't packed full of every feature you might need, but it does come with a small set of mixins to make life easier.

appearance()

The appearance mixin provides an easy way to assign or remove platform-native styling on form elements.

```scss // This Scss .terry { @include appearance(none); } // Generates this CSS .terry { -webkit-appearance: none; -moz-appearance: none; appearance: none; } ```

font-size()

This mixin allows you to generate font-size declarations with rem units and uses pixels as a fallback value.

```scss // This Scss .heading { @include font-size(16); } // Generates this CSS .heading { font-size: 16px; font-size: 1.6rem; } ```

Note: If you've modified the font-size on the html element, the generated values will not match. It's best to either leave the value at its default or create a mixin of your own which accomplishes the same result.

media()

This mixin allows you to use the breakpoints from Beard inside of your Sass.

```scss // This Scss .narcos { @include media(sm) { display: none; } } // Generates this CSS @media screen and (min-width: 300px) { .narcos { display: none; } } ```

See also: Responsive Prefixes

new-breakpoint()

This mixin allows you to add breakpoints to Beard’s configuration.

```scss @include new-breakpoint('tablet', '(min-width: 600px)'); ```

See also: Adding New Breakpoints

new-color()

This mixin allows you to add a color to Beard’s configuration.

```scss @include new-color('red', #FF0000); ```

See also: Adding New Color Helpers

new-spacing-helper()

This mixin allows you to add a set of responsive spacing helpers to Beard’s configuration.

```scss @include new-spacing-helper('tiny', 0.3); ```

See also: Adding New Spacing Helpers

================================================ FILE: stylesheets/_base.scss ================================================ @if $beard-base == true { // Base Elements //-------------------------------------------------------------------------- */ *, *:before, *:after { box-sizing: inherit; } html { font-size: 62.5%; box-sizing: border-box; height: 100%; } body { font-family: $sans-serif; min-height: 100%; } h1, h2, h3, h4, h5, h6 { font-weight: $normal; } hr { background: none; border-top: 1px solid rgba(0,0,0,0.2); margin: 0; } a { text-decoration: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } button { cursor: pointer; border: none; } input, textarea, button { outline: none; } // Responsive Images //-------------------------------------------------------------------------- */ img { max-width: 100%; // Make images fluid font-style: italic; // Offset alt text vertical-align: middle; // Removes bottom whitespace } // If width or height attributes are set, let's respect them //-------------------------------------------------------------------------- */ img[width], img[height] { max-width: none; } } ================================================ FILE: stylesheets/_beard.after.scss ================================================ // Helpers //-------------------------------------------------------------------------- */ @import 'helpers.text-align'; @import 'helpers.spacing'; @import 'helpers.line-heights'; @import 'helpers.letter-spacing'; @import 'helpers.fonts'; @import 'helpers.misc'; @import 'helpers.grid'; @import 'helpers.floats'; @import 'helpers.display'; @import 'helpers.flex'; @import 'helpers.overflow'; @import 'helpers.colors'; @import 'helpers.position'; @import 'helpers.borders'; @import 'helpers.border-radius'; ================================================ FILE: stylesheets/_beard.before.scss ================================================ // Settings //-------------------------------------------------------------------------- */ @import 'settings'; @import 'settings.colors'; // Tools & Mixins //-------------------------------------------------------------------------- */ @import 'tools.appearance'; @import 'tools.breakpoints'; @import 'tools.colors'; @import 'tools.user-drag'; @import 'tools.font-size'; @import 'tools.spacing'; // Generic //-------------------------------------------------------------------------- */ @import 'generic.reset'; // Base //-------------------------------------------------------------------------- */ @import 'base'; ================================================ FILE: stylesheets/_generic.reset.scss ================================================ @if $beard-reset == true { a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, main, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp { border: 0; margin: 0; padding: 0; font-size: 100%; } html, body { height: 100%; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; } b, strong { font-weight: bold; } img { color: transparent; font-size: 0; vertical-align: middle; -ms-interpolation-mode: bicubic; } ul, ol { list-style: none; } li { display: list-item; } table { border-collapse: collapse; border-spacing: 0; } th, td, caption { font-weight: normal; vertical-align: top; text-align: left; } q { quotes: none; } q:before, q:after { content: ""; content: none; } sub, sup, small { font-size: 75%; } sub, sup { line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } svg { overflow: hidden; } } ================================================ FILE: stylesheets/_helpers.border-radius.scss ================================================ // Border Radius Helpers // ------------------------------------------------------------------------------------ @for $i from 1 through $border-radius-amount { .br#{$i} { border-radius: #{$i}px !important; } .blr#{$i} { border-top-left-radius: #{$i}px !important; border-bottom-left-radius: #{$i}px !important; } .brr#{$i} { border-top-right-radius: #{$i}px !important; border-bottom-right-radius: #{$i}px !important; } .btlr#{$i} { border-top-left-radius: #{$i}px !important; } .btrr#{$i} { border-top-right-radius: #{$i}px !important; } .bbrr#{$i} { border-bottom-right-radius: #{$i}px !important; } .bblr#{$i} { border-bottom-left-radius: #{$i}px !important; } } // Circle Images // ------------------------------------------------------------------------------------ .circle { border-radius: $circle-img-radius !important; } ================================================ FILE: stylesheets/_helpers.borders.scss ================================================ // Border Helpers // -------------------------------------------------------------------------- */ @for $i from 0 through $beard-border-size-amount { .brdr#{$i} { border-style: solid !important; border-width: #{$i}px !important; } .brdr#{$i}--top { border-top-style: solid !important; border-top-width: #{$i}px !important; } .brdr#{$i}--right { border-right-style: solid !important; border-right-width: #{$i}px !important; } .brdr#{$i}--bottom { border-bottom-style: solid !important; border-bottom-width: #{$i}px !important; } .brdr#{$i}--left { border-left-style: solid !important; border-left-width: #{$i}px !important; } } ================================================ FILE: stylesheets/_helpers.colors.scss ================================================ // Loop through Brand Colors and output classes for each type //-------------------------------------------------------------------------- */ // Generate Helpers for each color @each $id, $color in $beard-colors { .bg#{$id} { background-color: $color !important; } .tc#{$id} { color: $color !important; } .bc#{$id} { border-color: $color !important; } } // Generate helpers with hovers for each color @each $id, $color in $beard-colors { .\:bg#{$id}:hover { background-color: $color !important; } .\:tc#{$id}:hover { color: $color !important; } .\:bc#{$id}:hover { border-color: $color !important; } } // Generate focus helpers for each color @each $id, $color in $beard-colors { .\:\:bg#{$id}:focus { background-color: $color !important; } .\:\:tc#{$id}:focus { color: $color !important; } .\:\:bc#{$id}:focus { border-color: $color !important; } } // Generate active helpers for each color @each $id, $color in $beard-colors { .\@bg#{$id}:active { background-color: $color !important; } .\@tc#{$id}:active { color: $color !important; } .\@bc#{$id}:active { border-color: $color !important; } } // Color Removal Helpers // ------------------------------------------------------------------------- */ .xbg { background-color: transparent !important; } ================================================ FILE: stylesheets/_helpers.display.scss ================================================ // Display Helpers // ------------------------------------------------------------------------------------ .db { display: block; } .di { display: inline; } .dib { display: inline-block; } .dn { display: none; } .df { display: flex; } .full { display: block; width: 100%; } .w100 { width: 100%; } // Responsive Display Helpers //-------------------------------------------------------------------------- */ @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-db { @include media($key) { display: block !important; } } .#{$key}-di { @include media($key) { display: inline !important; } } .#{$key}-dib { @include media($key) { display: inline-block !important; } } .#{$key}-dn { @include media($key) { display: none !important; } } .#{$key}-df { @include media($key) { display: flex !important; } } } } ================================================ FILE: stylesheets/_helpers.flex.scss ================================================ // Flexbox Helpers // ------------------------------------------------------------------------------------ */ .flex { display: flex; } .iflex { display: inline-flex; } .flex-grow { flex-grow: 1 } // Flex Basis Helpers //-------------------------------------------------------------------------- */ .fb100 { flex-basis: 100%; } // Flex Direction Helpers //-------------------------------------------------------------------------- */ .fdr { flex-direction: row; } .fdrr { flex-direction: row-reverse; } .fdc { flex-direction: column; } .fdcr { flex-direction: column-reverse; } // Flex Wrap Helpers //-------------------------------------------------------------------------- */ .fwn { flex-wrap: nowrap; } .fww { flex-wrap: wrap; } .fwr { flex-wrap: wrap-reverse; } // Justification Helpers //-------------------------------------------------------------------------- */ .jcc { justify-content: center; } .jcsb { justify-content: space-between; } .jcsa { justify-content: space-around; } .jcfs { justify-content: flex-start; } .jcfe { justify-content: flex-end; } // Align Items Helpers //-------------------------------------------------------------------------- */ .aic { align-items: center; } .aifs { align-items: flex-start; } .aife { align-items: flex-end; } .ais { align-items: stretch; } .aib { align-items: baseline; } // Align Content Helpers //-------------------------------------------------------------------------- */ .acc { align-content: center; } .acfs { align-content: flex-start; } .acfe { align-content: flex-end; } .acs { align-content: stretch; } .acb { align-content: baseline; } // Generate responsive versions of the above //-------------------------------------------------------------------------- */ @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-flex { @include media($key) { display: flex; } } .#{$key}-iflex { @include media($key) { display: inline-flex; } } .#{$key}-fb100 { @include media($key) { flex-basis: 100%; } } // Flex Direction //-------------------------------------------------------------------------- */ .#{$key}-fdr { @include media($key) { flex-direction: row; } } .#{$key}-fdrr { @include media($key) { flex-direction: row-reverse; } } .#{$key}-fdc { @include media($key) { flex-direction: column; } } .#{$key}-fdcr { @include media($key) { flex-direction: column-reverse; } } .#{$key}-fwn { @include media($key) { flex-wrap: nowrap; } } .#{$key}-fww { @include media($key) { flex-wrap: wrap; } } .#{$key}-fwr { @include media($key) { flex-wrap: wrap-reverse; } } // Justify Content //-------------------------------------------------------------------------- */ .#{$key}-jcc { @include media($key) { justify-content: center; } } .#{$key}-jcsb { @include media($key) { justify-content: space-between; } } .#{$key}-jcsa { @include media($key) { justify-content: space-around; } } .#{$key}-jcfs { @include media($key) { justify-content: flex-start; } } .#{$key}-jcfe { @include media($key) { justify-content: flex-end; } } // Align Items //-------------------------------------------------------------------------- */ .#{$key}-aic { @include media($key) { align-items: center; } } .#{$key}-aifs { @include media($key) { align-items: flex-start; } } .#{$key}-aife { @include media($key) { align-items: flex-end; } } .#{$key}-ais { @include media($key) { align-items: stretch; } } .#{$key}-aib { @include media($key) { align-items: baseline; } } // Align Content //-------------------------------------------------------------------------- */ .#{$key}-acc { @include media($key) { align-content: center; } } .#{$key}-acfs { @include media($key) { align-content: flex-start; } } .#{$key}-acfe { @include media($key) { align-content: flex-end; } } .#{$key}-acs { @include media($key) { align-content: stretch; } } .#{$key}-acb { @include media($key) { align-content: baseline; } } } } ================================================ FILE: stylesheets/_helpers.floats.scss ================================================ // Float Helpers // ------------------------------------------------------------------------------------ .fl { float: left !important; } .fr { float: right !important; } .fn { float: none !important; } .finit { float: initial !important; } .finhe { float: inherit !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-fl { float: left !important; } .#{$key}-fr { float: right !important; } .#{$key}-fn { float: none !important; } .#{$key}-finit { float: initial !important; } .#{$key}-finhe { float: inherit !important; } } } ================================================ FILE: stylesheets/_helpers.fonts.scss ================================================ // Font Size Helpers // ------------------------------------------------------------------------------------ */ @each $name, $amount in $font-size-values { .#{$name} { @include font-size($amount) } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$name} { @include media($key) { @include font-size($amount); } } } } } // Font Weight Helpers //-------------------------------------------------------------------------- */ .fw1, .fwthin { font-weight: $thin !important; } .fw2, .fwxlight { font-weight: $xlight !important; } .fw3, .fwlight { font-weight: $light !important; } .fw4, .fwnormal { font-weight: $normal !important; } .fw5, .fwmedium { font-weight: $medium !important; } .fw6, .fwsemibold { font-weight: $semibold !important; } .fw7, .fwbold { font-weight: $bold !important; } .fw8, .fwxbold { font-weight: $xbold !important; } .fw9, .fwblack { font-weight: $xxbold !important; } ================================================ FILE: stylesheets/_helpers.grid.scss ================================================ // Response Flexbox Grid //-------------------------------------------------------------------------- */ .wrap { margin-left: auto; margin-right: auto; padding-left: $beard-grid-gutter; padding-right: $beard-grid-gutter; } .wrap--xpad { padding-left: 0; padding-right: 0; } .frame { margin-left: -$beard-grid-gutter; margin-right: -$beard-grid-gutter; @if $beard-enable-responsive == true { @include media(md) { display: flex; flex-direction: row; flex-wrap: wrap; } } } .frame--stay { @if $beard-enable-responsive == true { @include media(only-sm) { display: flex; } } } // Adds the ability to add grids without padding in their blocks .frame--xpad [class^='blk'] { padding-left: 0; padding-right: 0; } // Blocks //-------------------------------------------------------------------------- */ %blk-relative { position: relative; } %blk-padding { padding-left: $beard-grid-gutter; padding-right: $beard-grid-gutter; } // The default column width is 100% divided by the column count $block-width: 100% / $beard-grid-block-count; .blk { @extend %blk-relative; @extend %blk-padding; flex-grow: 1; flex-basis: 0; } // Generate standard sizing helpers @for $i from 1 through $beard-grid-block-count { .blk#{$i} { @extend %blk-relative; @extend %blk-padding; flex-basis: $i * $block-width; } } // Generate responsive sizing helpers @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { @for $i from 1 through $beard-grid-block-count { .#{$key}-blk#{$i} { @extend %blk-relative; @extend %blk-padding; @include media($key) { flex-basis: $i * $block-width; } } } } } // Offsets, Pushers, and Pullers //-------------------------------------------------------------------------- */ // Offsets @for $i from 1 through $beard-grid-block-count { .blk--offset#{$i} { margin-left: $i * $block-width; } } // Responsive Offsets @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { @for $i from 1 through $beard-grid-block-count { .#{$key}-blk--offset#{$i} { @include media($key) { margin-left: $i * $block-width; } } } } } // Pushers @for $i from 1 through $beard-grid-block-count { .blk--push#{$i} { left: $i * $block-width; } } // Responsive Pushers @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { @for $i from 1 through $beard-grid-block-count { .#{$key}-blk--push#{$i} { @include media($key) { left: $i * $block-width; } } } } } // Pullers @for $i from 1 through $beard-grid-block-count { .blk--pull#{$i} { right: $i * $block-width; } } // Responsive Pullers @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { @for $i from 1 through $beard-grid-block-count { .#{$key}-blk--pull#{$i} { @include media($key) { right: $i * $block-width; } } } } } // Reordering Helpers //-------------------------------------------------------------------------- */ // Basic first and Last helpers .blk--first { order: 0; } .blk--last { order: 1; } // Responsive first and last helpers @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-blk--first { @include media($key) { order: 0; } } .#{$key}-blk--last { @include media($key) { order: 1; } } } } ================================================ FILE: stylesheets/_helpers.letter-spacing.scss ================================================ // Letter-spacing Options // ------------------------------------------------------------------------------------ */ // These styles are useful when you want to space a button's text out // or provide a heading with some space. These exist because the letter-spacing // option in CSS doesn't allow for a unit-less value. If it ever does, then we'd // be able to specify something like "letter-spacing: 4" and be done with it. $letter-spacing-values: ( ls1: $ls1, ls2: $ls2, ls3: $ls3, ls4: $ls4, ls5: $ls5, ls6: $ls6, ls7: $ls7, ls8: $ls8, ls9: $ls9, ls10: $ls10 ) !default; @each $name, $amount in $letter-spacing-values { .#{$name} { letter-spacing: $amount } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$name} { @include media($key) { letter-spacing: $amount; } } } } } ================================================ FILE: stylesheets/_helpers.line-heights.scss ================================================ // Line Height Helpers // ------------------------------------------------------------------------------------ */ .lh1 { line-height: 1 !important; } .lh1-1 { line-height: 1.1 !important; } .lh1-2 { line-height: 1.2 !important; } .lh1-3 { line-height: 1.3 !important; } .lh1-4 { line-height: 1.4 !important; } .lh1-5 { line-height: 1.5 !important; } .lh1-6 { line-height: 1.6 !important; } .lh1-7 { line-height: 1.7 !important; } .lh1-8 { line-height: 1.8 !important; } .lh1-9 { line-height: 1.9 !important; } .lh2 { line-height: 2 !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-lh1 { @include media($key) { line-height: 1 !important; } } .#{$key}-lh1-1 { @include media($key) { line-height: 1.1 !important; } } .#{$key}-lh1-2 { @include media($key) { line-height: 1.2 !important; } } .#{$key}-lh1-3 { @include media($key) { line-height: 1.3 !important; } } .#{$key}-lh1-4 { @include media($key) { line-height: 1.4 !important; } } .#{$key}-lh1-5 { @include media($key) { line-height: 1.5 !important; } } .#{$key}-lh1-6 { @include media($key) { line-height: 1.6 !important; } } .#{$key}-lh1-7 { @include media($key) { line-height: 1.7 !important; } } .#{$key}-lh1-8 { @include media($key) { line-height: 1.8 !important; } } .#{$key}-lh1-9 { @include media($key) { line-height: 1.9 !important; } } .#{$key}-lh2 { @include media($key) { line-height: 2 !important; } } } } ================================================ FILE: stylesheets/_helpers.misc.scss ================================================ // Misceallaneous Helpers //-------------------------------------------------------------------------- */ // Center //-------------------------------------------------------------------------- */ %center, .center { margin-left: auto; margin-right: auto; } // Typeface Helper //-------------------------------------------------------------------------- */ %sans-serif, .sans-serif { font-family: $sans-serif; } %serif, .serif { font-family: $serif; } %code, .code { font-family: $code; } // Clearfix Helper // ------------------------------------------------------------------------------------ */ .clearfix, %clearfix { &:after { content: ""; display: table; clear: both; } } // Hidetext Helper //-------------------------------------------------------------------------- */ %hidetext, .hidetext { text-indent: 100%; white-space: nowrap; overflow: hidden; } // Active and Hover State Helpers //-------------------------------------------------------------------------- */ %default-hover, .default-hover { &:hover, &:focus { opacity: 0.5; } } %default-active, .default-active { &:active { opacity: 0.8; } } %dim, .dim { @extend %default-active; @extend %default-hover; } // Site Width Helper //-------------------------------------------------------------------------- */ %site-width, .site-width { max-width: $site-width; } // Font Transform Helpers //-------------------------------------------------------------------------- */ .lowercase { text-transform: lowercase; } .uppercase { text-transform: uppercase; } // Ellipses Text Helper // ------------------------------------------------------------------------------------ .ell { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } // Border Removal Helper //-------------------------------------------------------------------------- */ .xbrdr { border: none; } // Image Helpers // ------------------------------------------------------------------------------------ .imax { max-width: 100%; width: auto; height: auto; } .i100 { width: 100%; } // Background Helpers //-------------------------------------------------------------------------- */ .bgcover { background-size: cover; } .bgcenter { background-position: center; } // Vertical Align Tables //-------------------------------------------------------------------------- */ .vam { vertical-align: middle; } .xts { text-shadow: none !important; } ================================================ FILE: stylesheets/_helpers.overflow.scss ================================================ // Overflow Helpers //-------------------------------------------------------------------------- */ .ofh { overflow: hidden !important; } .ofx { overflow-x: scroll !important; } .ofy { overflow-y: scroll !important; } ================================================ FILE: stylesheets/_helpers.position.scss ================================================ // Position Helpers //------------------------------------------------------------------------- .relative { position: relative; } .absolute { position: absolute; } .fixed { position: fixed; } // Pin an item to the corners of the viewport //------------------------------------------------------------------------- .pin-top { top: 0; } .pin-right { right: 0; } .pin-bottom { bottom: 0; } .pin-left { left: 0; } .pin-edges { top: 0; right: 0; bottom: 0; left: 0; } ================================================ FILE: stylesheets/_helpers.spacing.scss ================================================ // Add the zero spacing helper manually so it's last in the source order @include new-spacing-helper(0); // Spacing Helpers //-------------------------------------------------------------------------- */ $position-units: ( padding: 'p', margin: 'm' ); // Generate Responsive Spacing Helpers //-------------------------------------------------------------------------- */ @if $beard-enable-spacing-helpers == true { @each $id, $position in $position-units { @each $name, $i in $spacing-amounts { .#{$position}a#{$name} { #{$id}: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}a#{$name} { @include media($key) { #{$id}: #{$i}rem !important; } } } } .#{$position}t#{$name} { #{$id}-top: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}t#{$name} { @include media($key) { #{$id}-top: #{$i}rem !important; } } } } .#{$position}r#{$name} { #{$id}-right: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}r#{$name} { @include media($key) { #{$id}-right: #{$i}rem !important; } } } } .#{$position}b#{$name} { #{$id}-bottom: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}b#{$name} { @include media($key) { #{$id}-bottom: #{$i}rem !important; } } } } .#{$position}l#{$name} { #{$id}-left: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}l#{$name} { @include media($key) { #{$id}-left: #{$i}rem !important; } } } } .#{$position}v#{$name} { #{$id}-top: #{$i}rem !important; #{$id}-bottom: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}v#{$name} { @include media($key) { #{$id}-top: #{$i}rem !important; #{$id}-bottom: #{$i}rem !important; } } } } .#{$position}h#{$name} { #{$id}-left: #{$i}rem !important; #{$id}-right: #{$i}rem !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-#{$position}h#{$name} { @include media($key) { #{$id}-left: #{$i}rem !important; #{$id}-right: #{$i}rem !important; } } } } } } } // Padding Removal Helpers // ------------------------------------------------------------------------------------ .xp { padding: 0 !important; } .xpv { padding-top: 0 !important; padding-bottom: 0 !important; } .xph { padding-left: 0 !important; padding-right: 0 !important; } // Margin Removal Helpers // ------------------------------------------------------------------------------------ .xm { margin: 0 !important; } .xmv { margin-top: 0 !important; margin-bottom: 0 !important; } .xmh { margin-left: 0 !important; margin-right: 0 !important; } @if $beard-enable-responsive == true and $beard-enable-spacing-helpers == true { @each $id, $position in $position-units { @each $key, $breakpoint in $breakpoints { // Generates classes like this: `sm-xm` and `md-xmh` .#{$key}-x#{$position} { @include media($key) { #{$id}: 0 !important; } } // Vertical Spacing Removal .#{$key}-x#{$position}v { @include media($key) { #{$id}-top: 0 !important; #{$id}-bottom: 0 !important; } } // Horizontal Spacing Removal .#{$key}-x#{$position}h { @include media($key) { #{$id}-left: 0 !important; #{$id}-right: 0 !important; } } // Horizontal Centering .#{$key}-center { @include media($key) { #{$id}-left: auto !important; #{$id}-right: auto !important; } } } } } ================================================ FILE: stylesheets/_helpers.text-align.scss ================================================ // Text Aligment Helpers // ------------------------------------------------------------------------------------ .tal { text-align: left !important; } .tac { text-align: center !important; } .tar { text-align: right !important; } @if $beard-enable-responsive == true { @each $key, $breakpoint in $breakpoints { .#{$key}-tal { @include media($key) { text-align: left !important; } } .#{$key}-tac { @include media($key) { text-align: center !important; } } .#{$key}-tar { @include media($key) { text-align: right !important; } } } } ================================================ FILE: stylesheets/_objects.media.scss ================================================ // Media Object //-------------------------------------------------------------------------- */ .media { display: flex; } .media--center { align-items: center; } .media--reverse { .media__figure { order: 1; } .media__content { order: 0; } } .media__figure { margin-right: 1em; } .media__content { flex: 1; } ================================================ FILE: stylesheets/_settings.colors.scss ================================================ // Global Colors // ------------------------------------------------------------------------------------ */ $white: #fff !default; $black: #000 !default; $beard-success-color: #4AB471 !default; $beard-warning-color: #F3AE4E !default; $beard-danger-color: #CF5C60 !default; // Set Brand colors //-------------------------------------------------------------------------- */ $brand-color-1: #3498DB !default; $brand-color-2: darken($brand-color-1, 5%) !default; $brand-color-3: darken($brand-color-2, 5%) !default; $brand-color-4: darken($brand-color-3, 5%) !default; $brand-color-5: darken($brand-color-4, 5%) !default; $g05: darken($white, 5%) !default; $g10: darken($white, 10%) !default; $g20: darken($white, 20%) !default; $g30: darken($white, 30%) !default; $g40: darken($white, 40%) !default; $g50: darken($white, 50%) !default; $g60: darken($white, 60%) !default; $g70: darken($white, 70%) !default; $g80: darken($white, 80%) !default; $g90: darken($white, 90%) !default; $beard-colors: ( b: $black, w: $white, 1: $brand-color-1, 2: $brand-color-2, 3: $brand-color-3, 4: $brand-color-4, 5: $brand-color-5, success: $beard-success-color, warning: $beard-warning-color, danger: $beard-danger-color, g05: $g05, g10: $g10, g20: $g20, g30: $g30, g40: $g40, g50: $g50, g60: $g60, g70: $g70, g80: $g80, g90: $g90, ) !default; // Define brand color variables //-------------------------------------------------------------------------- */ // Background colors $bgb: map-get($beard-colors, b); $bgw: map-get($beard-colors, w); $bg1: map-get($beard-colors, 1); $bg2: map-get($beard-colors, 2); $bg3: map-get($beard-colors, 3); $bg4: map-get($beard-colors, 4); $bg5: map-get($beard-colors, 5); // Text colors $tcb: map-get($beard-colors, b); $tcw: map-get($beard-colors, w); $tc1: map-get($beard-colors, 1); $tc2: map-get($beard-colors, 2); $tc3: map-get($beard-colors, 3); $tc4: map-get($beard-colors, 4); $tc5: map-get($beard-colors, 5); // Border colors $bcb: map-get($beard-colors, b); $bcw: map-get($beard-colors, w); $bc1: map-get($beard-colors, 1); $bc2: map-get($beard-colors, 2); $bc3: map-get($beard-colors, 3); $bc4: map-get($beard-colors, 4); $bc5: map-get($beard-colors, 5); // Background Colors // ------------------------------------------------------------------------------------ */ $bgg05: map-get($beard-colors, g05); $bgg10: map-get($beard-colors, g10); $bgg20: map-get($beard-colors, g20); $bgg30: map-get($beard-colors, g30); $bgg40: map-get($beard-colors, g40); $bgg50: map-get($beard-colors, g50); $bgg60: map-get($beard-colors, g60); $bgg70: map-get($beard-colors, g70); $bgg80: map-get($beard-colors, g80); $bgg90: map-get($beard-colors, g90); // Text Colors // ------------------------------------------------------------------------------------ */ $tcg05: map-get($beard-colors, g05); $tcg10: map-get($beard-colors, g10); $tcg20: map-get($beard-colors, g20); $tcg30: map-get($beard-colors, g30); $tcg40: map-get($beard-colors, g40); $tcg50: map-get($beard-colors, g50); $tcg60: map-get($beard-colors, g60); $tcg70: map-get($beard-colors, g70); $tcg80: map-get($beard-colors, g80); $tcg90: map-get($beard-colors, g90); // Border Colors // ------------------------------------------------------------------------------------ */ $bcg05: map-get($beard-colors, g05); $bcg10: map-get($beard-colors, g10); $bcg20: map-get($beard-colors, g20); $bcg30: map-get($beard-colors, g30); $bcg40: map-get($beard-colors, g40); $bcg50: map-get($beard-colors, g50); $bcg60: map-get($beard-colors, g60); $bcg70: map-get($beard-colors, g70); $bcg80: map-get($beard-colors, g80); $bcg90: map-get($beard-colors, g90); ================================================ FILE: stylesheets/_settings.scss ================================================ // Settings //-------------------------------------------------------------------------- */ // This file contains all of the configurable settings for Beard. You // can essentially make your own copy of this file for you project and // override every value to the one you want, minus the `!default` option. // Configuration Switches //-------------------------------------------------------------------------- */ $beard-reset: true !default; $beard-base: true !default; $beard-enable-responsive: true !default; // Allow the user to specify how many spacing helper amounts to generate $beard-spacing-helper-amount: 10 !default; // Allow the user to turn off the spacing helpers completely $beard-enable-spacing-helpers: true !default; // Responsive Breakpoints //-------------------------------------------------------------------------- */ @if $beard-enable-responsive == true { $beard-breakpoint-sm: '(min-width: 30rem)' !default; $beard-breakpoint-md: '(min-width: 60rem)' !default; $beard-breakpoint-lg: '(min-width: 90rem)' !default; $beard-breakpoint-xlg: '(min-width: 144rem)' !default; $beard-breakpoint-only-sm: '(max-width: 59.99999rem)' !default; $beard-breakpoint-only-md: '(min-width: 60rem) and (max-width: 89.99999rem)' !default; $beard-breakpoint-only-lg: '(min-width: 90rem) and (max-width: 143.99999rem)' !default; $beard-breakpoint-only-xlg: '(min-width: 144rem)' !default; $breakpoints: ( sm: $beard-breakpoint-sm, only-sm: $beard-breakpoint-only-sm, md: $beard-breakpoint-md, only-md: $beard-breakpoint-only-md, lg: $beard-breakpoint-lg, only-lg: $beard-breakpoint-only-lg, xlg: $beard-breakpoint-xlg, only-xlg: $beard-breakpoint-only-xlg ) !global; } // Block Grid //-------------------------------------------------------------------------- */ $beard-grid-block-count: 12 !default; $beard-grid-gutter: 30px !default; // Site Width // ------------------------------------------------------------------------------------ */ $site-width: 114rem !default; // Typefaces //-------------------------------------------------------------------------- */ $sans-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif !default; $serif: Merriweather, Georgia, serif !default; $code: Menlo, Consolas, Monaco, 'Andale Mono', monospace !default; // Font Sizes //-------------------------------------------------------------------------- */ // Value are based on a modular scale configured from here: // http://www.modularscale.com/?1,1.1,1.2&rem&1.5&web&text $ft1: 10 !default; $ft2: 11 !default; $ft3: 12 !default; $ft4: 15 !default; $ft5: 16.5 !default; $ft6: 18 !default; $ft7: 22.5 !default; $ft8: 24.75 !default; $ft9: 27 !default; $ft10: 33.75 !default; $ft11: 37.13 !default; $ft12: 40.5 !default; $ft13: 50.63 !default; $ft14: 55.69 !default; $ft15: 60.75 !default; $ft16: 75.94 !default; $ft17: 83.53 !default; $font-size-values: ( ft1: $ft1, ft2: $ft2, ft3: $ft3, ft4: $ft4, ft5: $ft5, ft6: $ft6, ft7: $ft7, ft8: $ft8, ft9: $ft9, ft10: $ft10, ft11: $ft11, ft12: $ft12, ft13: $ft13, ft14: $ft14, ft15: $ft15, ft16: $ft16, ft17: $ft17, ) !default; // Font Weights // ------------------------------------------------------------------------------------ */ $thin: 100 !default; $xlight: 200 !default; $light: 300 !default; $normal: 400 !default; $medium: 500 !default; $semibold: 600 !default; $bold: 700 !default; $xbold: 800 !default; $xxbold: 900 !default; // Letter Spacing //-------------------------------------------------------------------------- */ $ls1: 0.1rem !default; $ls2: 0.2rem !default; $ls3: 0.3rem !default; $ls4: 0.4rem !default; $ls5: 0.5rem !default; $ls6: 0.6rem !default; $ls7: 0.7rem !default; $ls8: 0.8rem !default; $ls9: 0.9rem !default; $ls10: 1.0rem !default; // Border Radius Amounts //-------------------------------------------------------------------------- */ $border-radius-amount: 6 !default; $circle-img-radius: 50% !default; // Max Border Size Helper Amount //-------------------------------------------------------------------------- */ $beard-border-size-amount: 3 !default; // Create an empty spacing-amount list //-------------------------------------------------------------------------- */ $spacing-amounts: (); ================================================ FILE: stylesheets/_tools.appearance.scss ================================================ // Appearance // ------------------------------------------------------------------------------------ */ @mixin appearance($value) { -webkit-appearance: $value; -moz-appearance: $value; appearance: $value; } ================================================ FILE: stylesheets/_tools.breakpoints.scss ================================================ @mixin media($thepoint) { $feature: 'screen and '; $value: map-get($breakpoints, $thepoint); $media-query: $feature + $value; @media #{$media-query} { @content; } } @mixin new-breakpoint($label, $def) { $map2: ($label: $def); $breakpoints: map-merge($breakpoints, $map2) !global; } ================================================ FILE: stylesheets/_tools.colors.scss ================================================ // Color Tools //-------------------------------------------------------------------------- */ @mixin new-color($label, $def) { $map2: ($label: $def); $beard-colors: map-merge($beard-colors, $map2) !global; } ================================================ FILE: stylesheets/_tools.font-size.scss ================================================ // Font Size Mixin //-------------------------------------------------------------------------- */ @function font-size($size) { @return #{$size / 10}rem; } @mixin font-size($size: 12) { font-size: #{$size}px; font-size: font-size($size); } ================================================ FILE: stylesheets/_tools.spacing.scss ================================================ // Tools to Generate Responsive Spacing Helpers //-------------------------------------------------------------------------- */ @mixin new-spacing-helper($name, $size: null) { @if $size == null { $size: $name; } $new-helper: ($name: $size); $spacing-amounts: map-merge($spacing-amounts, $new-helper) !global; } // Build the initial list of spacing amounts @for $i from 1 through $beard-spacing-helper-amount { @include new-spacing-helper($i); } ================================================ FILE: stylesheets/_tools.user-drag.scss ================================================ // Prevent the user from dragging the image // ------------------------------------------------------------------------------------ */ @mixin user-drag($value) { -moz-user-drag: $value; -webkit-user-drag: $value; user-drag: $value; }