diff --git a/deploy.js b/deploy.js index 1ebe958a2..5cdb23088 100644 --- a/deploy.js +++ b/deploy.js @@ -1,6 +1,6 @@ import FtpDeploy from "ftp-deploy" -import auth from "./ftpauth.json" assert {type: "json"} -import pkg from "./package.json" assert {type: "json"} +import auth from "./ftpauth.json" with {type: "json"} +import pkg from "./package.json" with {type: "json"} import { dirname } from 'path'; import { fileURLToPath } from 'url'; diff --git a/lib/metro.all.js b/lib/metro.all.js index 8121cf8fd..03979350b 100644 --- a/lib/metro.all.js +++ b/lib/metro.all.js @@ -48,7 +48,7 @@ const Lt=["translateX","translateY","translateZ","rotate","rotateX","rotateY","r * * Build time: 22.09.2024 21:18:24 */ -class GuardianError extends Error{constructor(t="",e=null,i){super(t),this.message=t,this.name=e,this.value=i}}const parse=(t,e)=>{let i;if(!t)throw new Error("Schema object required for parse data!");if("function"==typeof t){if(i=t.apply(null,[e]),i instanceof GuardianError)throw i}else for(let o in t){const r=e[o],a=t[o];if(!a)throw new GuardianError(`Guard not defined for field ${o} in input data!`,"general",e);if(!e.hasOwnProperty(o))throw new GuardianError(`Field ${o} doesn't exists in input data!`,"general",e);if("function"==typeof a){if(console.log(a.name),i=a.apply(null,[r]),i instanceof GuardianError)throw i}else parse(a,r)}return e};var string=(t="VAL must be a string")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e?e:new GuardianError(i,"string",e)},isValue=t=>null!=t;const ee="VAL must be an array of TYPE";const ie="VAL must be a string or array with length N",oe=/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,re=/^[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}:[a-fA-F0-9]{1, 4}$/,ae=/^((xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,}$/;const ne=/^(?:(?:(?:https?|ftp|wss?):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u00a1-\uffff][a-z0-9\u00a1-\uffff_-]{0,62})?[a-z0-9\u00a1-\uffff]\.)+(?:[a-z\u00a1-\uffff]{2,}\.?))(?::\d{2,5})?(?:[/?#]\S*)?$/i;const le=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i;const se=/^4\d{12}(?:\d{3,6})?$/u,pe=/^5[1-5]\d{2}|(?:222\d|22[3-9]\d|2[3-6]\d{2}|27[01]\d|2720)\d{12}$/u,ce=/^3[47]\d{13}$/u,de=/^6(?:011|5\d{2})\d{12,15}$/u,Ae=/^3(?:0[0-5]|[68]\d)\d{11,13}$/u,me=/^(?:2131|1800|35\d{3})\d{11}$/u,ge=/^(?:6[27]\d{14,17}|81\d{14,17})$/u,he="VAL must be a valid CC number (visa, mastercard, american express, discover, diners club, jcb, or union pay)",card=(t,e,i=he)=>function(o){const r=i.replace(/VAL/g,o);return"string"==typeof o&&e.test(o)?o:new GuardianError(r,t,o)};var ue=Object.freeze({__proto__:null,americanExpress:(t="VAL must be a valid American Express card number")=>card("american express",ce,t),array:(t,e=ee)=>(t||e||(t=string(),e=ee),"string"==typeof t&&(e=t,t=string()),function(i){const o=e.replace(/VAL/g,i).replace(/TYPE/g,t.name);if(!Array.isArray(i))return new GuardianError(o,"array",i);for(let e of i){if(t(e)instanceof GuardianError)return new GuardianError(o,"array",i)}return i}),base64:(t="VAL must be a string in valid base 64 format")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/.test(e)?e:new GuardianError(i,"base64",e)},between:(t,e,i="VAL must be between MIN_VAL and MAX_VAL")=>{if(!isValue(t))throw new Error("MIN_VALUE not defined!");if(!isValue(e))throw new Error("MAX_VALUE not defined!");return function(o){const r=i.replace(/VAL/g,o).replace(/MIN_VAL/g,t).replace(/MAX_VAL/g,e);return!isNaN(+o)&&o>=+t&&o<=+e?o:new GuardianError(r,"between",o)}},bigint:(t="VAL must be a bigint")=>function(e){const i=t.replace(/VAL/g,e);return"bigint"==typeof e?e:new GuardianError(i,"bigint",e)},boolean:(t="VAL must be a boolean")=>function(e){const i=t.replace(/VAL/g,e);return"boolean"==typeof e?e:new GuardianError(i,"boolean",e)},bytes:(t,e="The length of string must be VAL bytes")=>function(i){const o=e.replace(/VAL/g,i);return"string"==typeof i&&(new TextEncoder).encode(i).length===t?i:new GuardianError(o,"bytes",i)},compose:(...t)=>e=>t.reduceRight(((t,e)=>e(t)),e),creditCard:(t=he)=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&(se.test(e)||pe.test(e)||ce.test(e)||de.test(e)||Ae.test(e)||me.test(e)||ge.test(e))?e:new GuardianError(i,"creditCard",e)},date:(t="VAL must be valid date object or date string")=>function(e){const i=t.replace(/VAL/g,e);return e instanceof Date?e:new GuardianError(i,"date",e)},digits:(t="VAL must contains only digits")=>function(e){const i=t.replace(/VAL/g,e);return/^\d+$/g.test(""+e)?e:new GuardianError(i,"digits",e)},diners:(t="VAL must be a valid DINERS CLUB card number")=>card("diners club",Ae,t),discover:(t="VAL must be a valid DISCOVER card number")=>card("discover",de,t),domain:(t="VAL must be a valid domain name, xn--* for internationalized names")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&ae.test(e)?e:new GuardianError(i,"domain",e)},email:(t="VAL must be a string in valid email format")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(e)?e:new GuardianError(i,"email",e)},endsWith:(t,e="VAL must end with END_VAL")=>{if(!isValue(t))throw new Error("END_VALUE not defined!");return function(i){const o=e.replace(/VAL/g,i).replace(/END_VAL/g,t);return"string"==typeof i&&i.endsWith(t)?i:new GuardianError(o,"endsWith",i)}},finite:(t="VAL must be a finite number")=>function(e){const i=t.replace(/VAL/g,e);return Number.isFinite(e)?e:new GuardianError(i,"finite",e)},float:(t="VAL must be a float")=>function(e){const i=t.replace(/VAL/g,e);return!isNaN(e)&&+n%1!=0||/^\d*\.\d+$/.test(e)?e:new GuardianError(i,"float",e)},func:(t="The value must be a function")=>function(e){return"function"==typeof e?e:new GuardianError(t,"function",e)},hexColor:(t="VAL must be a valid hex color")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&le.test(e)?e:new GuardianError(i,"hexColor",e)},imei:(t="VAL must be a valid EMEI")=>function(e){const i=t.replace(/VAL/g,e),o=(t=>{const sumDig=t=>{let e=0;for(;t>0;)e+=t%10,t=parseInt(""+t/10,10);return e};let e=(""+t).length;if(15!==e)return!1;let i=0;for(let o=e;o>=1;o--){let e=t%10;o%2==0&&(e*=2),i+=sumDig(e),t=parseInt(""+t/10,10)}return i%10==0})(e);return o?e:new GuardianError(i,"emei",e)},info:()=>{console.info("%c GUARDIAN %c v0.5.1 %c 22.09.2024, 21:18:24 ","color: pink; font-weight: bold; background: #2b1700","color: white; background: darkgreen","color: white; background: #0080fe;")},integer:(t="VAL must be an integer")=>function(e){const i=t.replace(/VAL/g,e);return Number.isInteger(e)?e:new GuardianError(i,"integer",e)},ip:(t="VAL must be a valid ip address ipv4 or ipv6")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&(oe.test(e)||re.test(e))?e:new GuardianError(i,"ip",e)},ipv4:(t="VAL must be a valid ipv4 address")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&oe.test(e)?e:new GuardianError(i,"ipv4",e)},ipv6:(t="VAL must be a valid ipv6 address")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&re.test(e)?e:new GuardianError(i,"ipv6",e)},jcb:(t="VAL must be a valid JCB card number")=>card("jcb card",me,t),length:(t,e=ie)=>function(i){const o=e.replace(/VAL/g,i).replace(/N/g,t);return("string"==typeof i||Array.isArray(i))&&i.length===t?i:new GuardianError(o,"length",i)},mastercard:(t="VAL must be a valid Mastercard card number")=>card("mastercard",pe,t),maxLength:(t,e=ie)=>function(i){const o=e.replace(/VAL/g,i).replace(/N/g,t);return("string"==typeof i||Array.isArray(i))&&i.length<=t?i:new GuardianError(o,"maxLength",i)},maxValue:(t,e="VAL must be a less then MAX_VALUE")=>{if(!isValue(t))throw new Error("MAX_VALUE not defined!");return function(i){const o=e.replace(/VAL/g,i).replace(/MAX_VALUE/g,t),r=+i;return!isNaN(r)&&r<=+t?i:new GuardianError(o,"maxValue",i)}},minLength:(t,e=ie)=>function(i){const o=e.replace(/VAL/g,i).replace(/N/g,t);return("string"==typeof i||Array.isArray(i))&&i.length>=t?i:new GuardianError(o,"minLength",i)},minValue:(t,e="VAL must be a great then MIN_VALUE")=>{if(!isValue(t))throw new Error("MIN_VALUE not defined!");return function(i){const o=e.replace(/VAL/g,i).replace(/MIN_VALUE/g,t),r=+i;return!isNaN(r)&&r>=+t?i:new GuardianError(o,"minValue",i)}},notNull:(t="VAL can`t be null or undefined.")=>function(e){const i=t.replace(/VAL/g,e);return isValue(e)?e:new GuardianError(i,"notNull",e)},notNumber:(t="VAL can`t be a number")=>function(e){const i=t.replace(/VAL/g,e);return isNaN(e)?e:new GuardianError(i,"notNumber",e)},number:(t="VAL must be a number")=>function(e){const i=t.replace(/VAL/g,e);return"number"==typeof e&&!isNaN(+e)?e:new GuardianError(i,"number",e)},object:t=>{if(!("object"==typeof t))throw new GuardianError("VAL must be an object".replace(/VAL/g,t),"object",t);return{...t}},parse:parse,pattern:(t,e="The value must match the pattern")=>function(i){const o=e.replace(/VAL/g,i);return("string"==typeof t?new RegExp(t,"g"):t).test(""+i)?i:new GuardianError(o,"pattern",i)},pipe:(...t)=>e=>t.reduce(((t,e)=>e(t)),e),required:(t="Any value required")=>function(e){const i=t.replace(/VAL/g,e);return null!=e&&e?e:new GuardianError(i,"required",e)},safeInteger:(t="VAL must be an safe integer")=>function(e){const i=t.replace(/VAL/g,e);return Number.isSafeInteger(e)?e:new GuardianError(i,"safeInteger",e)},safeParse:(t,e)=>{let i;if(!t)throw new Error("Schema object required for parse data!");if("function"==typeof t){if(i=t.apply(null,[e]),i instanceof GuardianError)return{ok:!1,error:i}}else for(let o in t){const r=e[o],a=t[o];if(a)if("function"==typeof a){if(i=a.apply(null,[e]),i instanceof GuardianError)return{ok:!1,error:i}}else parse(a,r)}return{ok:!0,output:e}},startsWith:(t,e="VAL must starts with START_VAL")=>{if(!isValue(t))throw new Error("START_VALUE not defined!");return function(i){const o=e.replace(/VAL/g,i).replace(/START_VAL/g,t);return"string"==typeof i&&i.startsWith(t)?i:new GuardianError(o,"startsWith",i)}},string:string,symbol:(t="A symbol is required")=>function(e){return"symbol"==typeof e?e:new GuardianError(t,"symbol",e)},unionPay:(t="VAL must be a valid Union Pay card number")=>card("union pay",ge,t),unknown:()=>function(t){return t},url:(t="VAL must be a valid url")=>function(e){const i=t.replace(/VAL/g,e);return"string"==typeof e&&ne.test(e)?e:new GuardianError(i,"url",e)},visa:(t="VAL must be a valid Visa card number")=>card("visa",se,t)});globalThis.G=ue,function(t){var e=t.meta("metro4:init").attr("content"),i=t.meta("metro4:locale").attr("content"),o=t.meta("metro4:week_start").attr("content"),r=t.meta("metro4:date_format").attr("content"),a=t.meta("metro4:date_format_input").attr("content"),n=t.meta("metro4:animation_duration").attr("content"),l=t.meta("metro4:callback_timeout").attr("content"),s=t.meta("metro4:timeout").attr("content"),p=t.meta("metro4:scroll_multiple").attr("content"),c=t.meta("metro4:cloak").attr("content"),d=t.meta("metro4:cloak_duration").attr("content"),A=t.meta("metro4:global_common").attr("content"),m=t.meta("metro4:blur_image").attr("content");void 0===window.METRO_BLUR_IMAGE&&(window.METRO_BLUR_IMAGE=void 0!==m&&JSON.parse(A)),void 0===window.METRO_GLOBAL_COMMON&&(window.METRO_GLOBAL_COMMON=void 0!==A&&JSON.parse(A));var g=t.meta("metro4:jquery").attr("content");window.jquery_present="undefined"!=typeof jQuery,void 0===window.METRO_JQUERY&&(window.METRO_JQUERY=void 0===g||JSON.parse(g)),window.useJQuery=window.jquery_present&&window.METRO_JQUERY;var h=t.meta("metro4:info").attr("content");void 0===window.METRO_SHOW_INFO&&(window.METRO_SHOW_INFO=void 0===h||JSON.parse(h));var u=t.meta("metro4:compile").attr("content");void 0===window.METRO_SHOW_COMPILE_TIME&&(window.METRO_SHOW_COMPILE_TIME=void 0===u||JSON.parse(u)),void 0===window.METRO_INIT&&(window.METRO_INIT=void 0===e||JSON.parse(e)),void 0===window.METRO_DEBUG&&(window.METRO_DEBUG=!0),void 0===window.METRO_WEEK_START&&(window.METRO_WEEK_START=void 0!==o?parseInt(o):0),void 0===window.METRO_DATE_FORMAT&&(window.METRO_DATE_FORMAT=void 0!==r?r:"YYYY-MM-DD"),void 0===window.METRO_DATE_FORMAT_INPUT&&(window.METRO_DATE_FORMAT_INPUT=void 0!==a?a:"YYYY-MM-DD"),void 0===window.METRO_LOCALE&&(window.METRO_LOCALE=void 0!==i?i:"en-US"),void 0===window.METRO_ANIMATION_DURATION&&(window.METRO_ANIMATION_DURATION=void 0!==n?parseInt(n):100),void 0===window.METRO_CALLBACK_TIMEOUT&&(window.METRO_CALLBACK_TIMEOUT=void 0!==l?parseInt(l):500),void 0===window.METRO_TIMEOUT&&(window.METRO_TIMEOUT=void 0!==s?parseInt(s):2e3),void 0===window.METRO_SCROLL_MULTIPLE&&(window.METRO_SCROLL_MULTIPLE=void 0!==p?parseInt(p):20),void 0===window.METRO_CLOAK_REMOVE&&(window.METRO_CLOAK_REMOVE=void 0!==c?(""+c).toLowerCase():"fade"),void 0===window.METRO_CLOAK_DURATION&&(window.METRO_CLOAK_DURATION=void 0!==d?parseInt(d):300),void 0===window.METRO_HOTKEYS_FILTER_CONTENT_EDITABLE&&(window.METRO_HOTKEYS_FILTER_CONTENT_EDITABLE=!0),void 0===window.METRO_HOTKEYS_FILTER_INPUT_ACCEPTING_ELEMENTS&&(window.METRO_HOTKEYS_FILTER_INPUT_ACCEPTING_ELEMENTS=!0),void 0===window.METRO_HOTKEYS_FILTER_TEXT_INPUTS&&(window.METRO_HOTKEYS_FILTER_TEXT_INPUTS=!0),void 0===window.METRO_HOTKEYS_BUBBLE_UP&&(window.METRO_HOTKEYS_BUBBLE_UP=!1),void 0===window.METRO_THROWS&&(window.METRO_THROWS=!0),window.METRO_MEDIA=[]}(m4q),function(){var t=m4q;if("undefined"==typeof m4q)throw new Error("Metro UI requires m4q helper!");if(!("MutationObserver"in window))throw new Error("Metro UI requires MutationObserver!");var e="ontouchstart"in window||navigator.MaxTouchPoints>0||navigator.msMaxTouchPoints>0,normalizeComponentName=function(t){return"string"!=typeof t?void 0:t.replace(/-/g,"").toLowerCase()},i={version:"5.0.11",build_time:"22.09.2024, 21:21:16",buildNumber:0,isTouchable:e,fullScreenEnabled:document.fullscreenEnabled,sheet:null,controlsPosition:{INSIDE:"inside",OUTSIDE:"outside"},groupMode:{ONE:"one",MULTI:"multi"},aspectRatio:{HD:"hd",SD:"sd",CINEMA:"cinema"},fullScreenMode:{WINDOW:"window",DESKTOP:"desktop"},position:{TOP:"top",BOTTOM:"bottom",LEFT:"left",RIGHT:"right",TOP_RIGHT:"top-right",TOP_LEFT:"top-left",BOTTOM_LEFT:"bottom-left",BOTTOM_RIGHT:"bottom-right",LEFT_BOTTOM:"left-bottom",LEFT_TOP:"left-top",RIGHT_TOP:"right-top",RIGHT_BOTTOM:"right-bottom"},popoverEvents:{CLICK:"click",HOVER:"hover",FOCUS:"focus"},stepperView:{SQUARE:"square",CYCLE:"cycle",DIAMOND:"diamond"},listView:{LIST:"list",CONTENT:"content",ICONS:"icons",ICONS_MEDIUM:"icons-medium",ICONS_LARGE:"icons-large",TILES:"tiles",TABLE:"table"},events:{click:"click",start:e?"touchstart":"mousedown",stop:e?"touchend":"mouseup",move:e?"touchmove":"mousemove",enter:e?"touchstart":"mouseenter",startAll:"mousedown touchstart",stopAll:"mouseup touchend",moveAll:"mousemove touchmove",leave:"mouseleave",focus:"focus",blur:"blur",resize:"resize",keyup:"keyup",keydown:"keydown",keypress:"keypress",dblclick:"dblclick",input:"input",change:"change",cut:"cut",paste:"paste",scroll:"scroll",mousewheel:"mousewheel",inputchange:"change input propertychange cut paste copy drop",dragstart:"dragstart",dragend:"dragend",dragenter:"dragenter",dragover:"dragover",dragleave:"dragleave",drop:"drop",drag:"drag"},keyCode:{BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,BREAK:19,CAPS:20,ESCAPE:27,SPACE:32,PAGEUP:33,PAGEDOWN:34,END:35,HOME:36,LEFT_ARROW:37,UP_ARROW:38,RIGHT_ARROW:39,DOWN_ARROW:40,COMMA:188},media_queries:{FS:"(min-width: 0px)",XS:"(min-width: 360px)",SM:"(min-width: 576px)",LD:"(min-width: 640px)",MD:"(min-width: 768px)",LG:"(min-width: 992px)",XL:"(min-width: 1200px)",XXL:"(min-width: 1452px)",XXXL:"(min-width: 2000px)"},media_sizes:{FS:0,XS:360,SM:576,LD:640,MD:768,LG:992,XL:1200,XXL:1452,XXXL:2e3},media_mode:{FS:"fs",XS:"xs",SM:"sm",LD:"ld",MD:"md",LG:"lg",XL:"xl",XXL:"xxl",XXXL:"xxxl"},media_modes:["fs","xs","sm","ld","md","lg","xl","xxl","xxxl"],actions:{REMOVE:1,HIDE:2},hotkeys:{},locales:{},utils:{},colors:{},dialog:null,pagination:null,md5:null,storage:null,export:null,animations:null,cookie:null,template:null,defaults:{},info:function(){void 0===globalThis.METRO_DISABLE_LIB_INFO&&(console.info(`%c METRO UI %c v${i.version} %c ${i.build_time} `,"color: pink; font-weight: bold; background: #800000","color: white; background: darkgreen","color: white; background: #0080fe;"),globalThis.$&&t.info&&t.info(),globalThis.Hooks&&Hooks.info&&Hooks.info(),globalThis.html&&html.info&&html.info(),globalThis.Animation&&Animation.info&&Animation.info(),globalThis.Farbe&&Farbe.info&&Farbe.info(),globalThis.Datetime&&Datetime.info&&Datetime.info(),globalThis.Str&&Str.info&&Str.info(),globalThis.G&&G.info&&G.info())},aboutDlg:function(){alert("Metro UI - v"+i.version)},observe:function(){var e;e=function(e){e.map((function(e){if("attributes"===e.type&&"data-role"!==e.attributeName)if("data-hotkey"===e.attributeName)i.initHotkeys([e.target],!0);else{var o=t(e.target),r=o.data("metroComponent"),a=e.attributeName,n=o.attr(a),l=e.oldValue;void 0!==r&&(o.fire("attr-change",{attr:a,newValue:n,oldValue:l,__this:o[0]}),t.each(r,(function(){var t=i.getPlugin(o,this);t&&"function"==typeof t.changeAttribute&&t.changeAttribute(a,n,l)})))}else if("childList"===e.type&&e.addedNodes.length>0){var s,p,c,d=[],A=e.addedNodes;if(A.length){for(s=0;s0&&t.each(r,(function(){i.destroyPlugin(o[0],this)}))},noop:function(){},noop_true:function(){return!0},noop_false:function(){return!1},noop_arg:function(t){return t},requestFullScreen:function(t){t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen?t.webkitRequestFullScreen():t.msRequestFullscreen?t.msRequestFullscreen():t.requestFullscreen().catch((function(t){console.warn("Error attempting to enable full-screen mode: "+t.message+" "+t.name)}))},exitFullScreen:function(){document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen?document.webkitCancelFullScreen():document.msExitFullscreen?document.msExitFullscreen():document.exitFullscreen().catch((function(t){console.warn("Error attempting to disable full-screen mode: "+t.message+" "+t.name)}))},inFullScreen:function(){return void 0!==(document.fullscreenElement||document.webkitFullscreenElement||document.mozFullScreenElement||document.msFullscreenElement)},$:function(){return window.useJQuery?jQuery:m4q},get$el:function(e){return i.$()(t(e)[0])},get$elements:function(e){return i.$()(t(e))},getPlugin:function(t,e){var o=normalizeComponentName(e),r=i.get$el(t);return r.length?r.data(o):void 0},makePlugin:function(t,e,o){var r=normalizeComponentName(e),a=i.get$elements(t);return a.length&&"function"==typeof a[r]?a[r](o):void 0},Component:function(e,o){var r=normalizeComponentName(e),a=i.utils,n=t.extend({name:r},{_super:function(e,i,o,r){var a=this;this.elem=e,this.element=t(e),this.options=t.extend({},o,i),this.component=this.elem,this._setOptionsFromDOM(),this._runtime(),r&&"object"==typeof r&&t.each(r,(function(t,e){a[t]=e})),this._createExec()},_setOptionsFromDOM:function(){var e=this.element,i=this.options;t.each(e.data(),(function(t,e){if(t in i)try{i[t]=JSON.parse(e)}catch(o){i[t]=e}}))},_runtime:function(){var t,e=this.element,i=(e.attr("data-role")||"").toArray(",").map((function(t){return normalizeComponentName(t)})).filter((function(t){return""!==t.trim()}));e.attr("data-role-"+this.name)||(e.attr("data-role-"+this.name,!0),-1===i.indexOf(this.name)&&(i.push(this.name),e.attr("data-role",i.join(","))),void 0===(t=e.data("metroComponent"))?t=[this.name]:t.push(this.name),e.data("metroComponent",t))},_createExec:function(){var t=this,e=this.options[this.name+"Deferred"];e?setTimeout((function(){t._create()}),e):t._create()},_fireEvent:function(e,i,o,r,n=null){var l,s=this.element,p=this.options,c=str(e).camelCase().capitalize(!1).value;return l=(i=t.extend({},i,{__this:s[0]}))?Object.values(i):{},o&&(console.warn(o),console.warn("Event: on"+c),console.warn("Data: ",i),console.warn("Element: ",s[0])),!0!==r&&s.fire(c.toLowerCase(),i),a.exec(p["on"+c],l,n||s[0])},_fireEvents:function(e,i,o,r,n){var l,s=this;if(0!==arguments.length)return 1===arguments.length?(t.each(e,(function(){var t=this;s._fireEvent(t.name,t.data,t.log,t.noFire,n)})),a.objectLength(e)):void((Array.isArray(e)||"string"==typeof e)&&(l=Array.isArray(e)?e:e.toArray(","),t.each(l,(function(){s._fireEvent(this,i,o,r,n)}))))},getComponent:function(){return this.component},getComponentName:function(){return this.name}},o);return i.plugin(r,n),n},fetch:{status:function(t){return t.ok?Promise.resolve(t):Promise.reject(new Error(t.statusText))},json:function(t){return t.json()},text:function(t){return t.text()},form:function(t){return t.formData()},blob:function(t){return t.blob()},buffer:function(t){return t.arrayBuffer()}},i18n:{loadLocale(t="en-US"){},getMessage:t=>"",updateUI(){}}};t(window).on(i.events.resize,(function(){window.METRO_MEDIA=[],t.each(i.media_queries,(function(t,e){i.utils.media(e)&&window.METRO_MEDIA.push(i.media_mode[t])}))})),window.Metro=i,!0===window.METRO_INIT&&t((function(){i.init()}))}(),function(t,e){m4q.extend(t.locales,{"da-DK":{calendar:{months:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December","Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag","Sø","Ma","Ti","On","To","Fr","Lø","Søn","Man","Tir","Ons","Tor","Fre","Lør"],time:{days:"DAGE",hours:"TIMER",minutes:"MIN",seconds:"SEK",month:"MON",day:"DAG",year:"ÅR"},weekStart:1},buttons:{ok:"OK",cancel:"Annuller",done:"Færdig",today:"Idag",now:"Nu",clear:"Ryd",help:"Hjælp",yes:"Ja",no:"Nej",random:"Tilfældig",save:"Gem",reset:"Nulstil"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"de-DE":{calendar:{months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember","Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","So","Mo","Di","Mi","Do","Fr","Sa","Son","Mon","Die","Mit","Don","Fre","Sam"],time:{days:"TAGE",hours:"STD",minutes:"MIN",seconds:"SEK"},weekStart:2},buttons:{ok:"OK",cancel:"Abbrechen",done:"Fertig",today:"Heute",now:"Jetzt",clear:"Löschen",help:"Hilfe",yes:"Ja",no:"Nein",random:"Zufällig",save:"Speichern",reset:"Zurücksetzen"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"en-US":{calendar:{months:["January","February","March","April","May","June","July","August","September","October","November","December","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Su","Mo","Tu","We","Th","Fr","Sa","Sun","Mon","Tus","Wen","Thu","Fri","Sat"],time:{days:"DAYS",hours:"HOURS",minutes:"MINS",seconds:"SECS",month:"MON",day:"DAY",year:"YEAR"},weekStart:0},buttons:{ok:"OK",cancel:"Cancel",done:"Done",today:"Today",now:"Now",clear:"Clear",help:"Help",yes:"Yes",no:"No",random:"Random",save:"Save",reset:"Reset"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"es-MX":{calendar:{months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre","Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Do","Lu","Ma","Mi","Ju","Vi","Sa","Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],time:{days:"DÍAS",hours:"HORAS",minutes:"MINS",seconds:"SEGS",month:"MES",day:"DÍA",year:"AÑO"},weekStart:1},buttons:{ok:"Aceptar",cancel:"Cancelar",done:"Hecho",today:"Hoy",now:"Ahora",clear:"Limpiar",help:"Ayuda",yes:"Si",no:"No",random:"Aleatorio",save:"Salvar",reset:"Reiniciar"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"fr-FR":{calendar:{months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre","Janv","Févr","Mars","Avr","Mai","Juin","Juil","Août","Sept","Oct","Nov","Déc"],days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi","Di","Lu","Ma","Me","Je","Ve","Sa","Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],time:{days:"JOURS",hours:"HEURES",minutes:"MINS",seconds:"SECS",month:"MOIS",day:"JOUR",year:"ANNEE"},weekStart:1},buttons:{ok:"OK",cancel:"Annulé",done:"Fait",today:"Aujourd'hui",now:"Maintenant",clear:"Effacé",help:"Aide",yes:"Oui",no:"Non",random:"Aléatoire",save:"Sauvegarder",reset:"Réinitialiser"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"hr-HR":{calendar:{months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac","Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota","Ne","Po","Ut","Sr","Če","Pe","Su","Ned","Pon","Uto","Sri","Čet","Pet","Sub"],time:{days:"DANI",hours:"SATI",minutes:"MINUTE",seconds:"SEKUNDE",month:"MJESEC",day:"DAN",year:"GODINA"},weekStart:1},buttons:{ok:"OK",cancel:"Otkaži",done:"Gotovo",today:"Danas",now:"Sada",clear:"Izbriši",help:"Pomoć",yes:"Da",no:"Ne",random:"Nasumično",save:"Spremi",reset:"Reset"},table:{rowsCount:"Broj redaka:",search:"Pretraga:",info:"Prikazujem $1 do $2 od $3",prev:"Nazad",next:"Naprijed",all:"Sve",inspector:"Inspektor",skip:"Idi na stranicu",empty:"Prazno"},colorSelector:{addUserColorButton:"Dodaj uzorcima",userColorsTitle:"Korisničke boje"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"hu-HU":{calendar:{months:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December","Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],days:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat","V","H","K","Sz","Cs","P","Sz","Vas","Hét","Ke","Sze","Csü","Pén","Szom"],time:{days:"NAP",hours:"ÓRA",minutes:"PERC",seconds:"MP"},weekStart:1},buttons:{ok:"OK",cancel:"Mégse",done:"Kész",today:"Ma",now:"Most",clear:"Törlés",help:"Segítség",yes:"Igen",no:"Nem",random:"Véletlen",save:"Mentés",reset:"Visszaállítás"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"it-IT":{calendar:{months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre","Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato","Do","Lu","Ma","Me","Gi","Ve","Sa","Dom","Lun","Mar","Mer","Gio","Ven","Sab"],time:{days:"GIORNI",hours:"ORE",minutes:"MIN",seconds:"SEC",month:"MESE",day:"GIORNO",year:"ANNO"},weekStart:1},buttons:{ok:"OK",cancel:"Annulla",done:"Fatto",today:"Oggi",now:"Adesso",clear:"Cancella",help:"Aiuto",yes:"Sì",no:"No",random:"Random",save:"Salvare",reset:"Reset"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"pl-PL":{calendar:{months:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień","Sty","Lut","Mar","Kwi","Maj","Cze","Lip","Sie","Wrz","Paź","Lis","Gru"],days:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota","NDZ","PN","WT","ŚR","CZW","PT","SB","Niedz","Pon","Wt","Śr","Czw","Pt","Sob"],time:{days:"DNI",hours:"GODZINY",minutes:"MINUTY",seconds:"SEKUNDY",month:"MIESIĄC",day:"DZIEŃ",year:"ROK"},weekStart:1},buttons:{ok:"OK",cancel:"Anuluj",done:"Gotowe",today:"Dziś",now:"Teraz",clear:"Wyczyść",help:"Pomoc",yes:"Tak",no:"Nie",random:"Losowy",save:"Zapisz",reset:"Resetowanie"},table:{rowsCount:"Pokaż wpisy:",search:"Wyszukaj:",info:"Wyświetlanie wpisów od $1 do $2 z łącznie $3",prev:"Poprzedni",next:"Następny",all:"Wszystkie",inspector:"Inspektor",skip:"Idź do strony",empty:"Nic do wyświetlenia"},colorSelector:{addUserColorButton:"DODAJ DO PRÓBEK",userColorsTitle:"KOLOR UŻYTKOWNIKA"},switch:{on:"Włącz",off:"Wyłącz"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"pt-BR":{calendar:{months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro","Jan","Fev","Mar","Abr","Maio","Jun","Jul","Ago","Set","Out","Nov","Dez"],days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado","Do","Se","Te","Qa","Qi","Se","Sa","Dom","Seg","Ter","Qua","Qui","Sex","Sab"],time:{days:"DIAS",hours:"HORAS",minutes:"MINUTOS",seconds:"SEGUNDOS",month:"MÊS",day:"DIA",year:"ANO"},weekStart:1},buttons:{ok:"OK",cancel:"Cancelar",done:"Feito",today:"Hoje",now:"Agora",clear:"Limpar",help:"Ajuda",yes:"Sim",no:"Não",random:"Aleatório",save:"Salvar",reset:"Restaurar"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"ru-RU":{calendar:{months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь","Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота","Вс","Пн","Вт","Ср","Чт","Пт","Сб","Вос","Пон","Вто","Сре","Чет","Пят","Суб"],time:{days:"ДНИ",hours:"ЧАСЫ",minutes:"МИН",seconds:"СЕК",month:"МЕС",day:"ДЕНЬ",year:"ГОД"},weekStart:1},buttons:{ok:"ОК",cancel:"Отмена",done:"Готово",today:"Сегодня",now:"Сейчас",clear:"Очистить",help:"Помощь",yes:"Да",no:"Нет",random:"Случайно",save:"Сохранить",reset:"Сброс"},table:{rowsCount:"Показать записей:",search:"Поиск:",info:"Показаны $1 с $2 по $3 записей",prev:"Предыдущие",next:"Следующие",all:"Все",inspector:"Инспектор",skip:"Перейти на страницу",empty:"Нет записей"},colorSelector:{addUserColorButton:"ДОБАВИТЬ В ОБРАЗЦЫ",userColorsTitle:"ЦВЕТА ПОЛЬЗОВАТЕЛЯ"},switch:{on:"вкл",off:"выкл"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"tr-TR":{calendar:{months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık","Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi","Pa","Pz","Sa","Ça","Pe","Cu","Ct","Paz","Pzt","Sal","Çar","Per","Cum","Cmt"],time:{days:"GÜN",hours:"SAAT",minutes:"DAK",seconds:"SAN",month:"AY",day:"GÜN",year:"YIL"},weekStart:1},buttons:{ok:"Tamam",cancel:"Vazgeç",done:"Bitti",today:"Bugün",now:"Şimdi",clear:"Temizle",help:"Yardım",yes:"Evet",no:"Hayır",random:"Rasgele",save:"Kurtarmak",reset:"Sıfırla"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"uk-UA":{calendar:{months:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень","Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П’ятниця","Субота","Нд","Пн","Вт","Ср","Чт","Пт","Сб","Нед","Пон","Вiв","Сер","Чет","Пят","Суб"],time:{days:"ДНІ",hours:"ГОД",minutes:"ХВИЛ",seconds:"СЕК",month:"МІС",day:"ДЕНЬ",year:"РІК"},weekStart:1},buttons:{ok:"ОК",cancel:"Відміна",done:"Готово",today:"Сьогодні",now:"Зараз",clear:"Очистити",help:"Допомога",yes:"Так",no:"Ні",random:"Випадково",save:"Зберегти",reset:"Скинути"},table:{rowsCount:"Показати записів:",search:"Пошук:",info:"Показано $1 з $2 по $3 записів",prev:"Попередні",next:"Наступні",all:"Усі",inspector:"Інспектор",skip:"Перейти до сторінки",empty:"Нема записів"},colorSelector:{addUserColorButton:"ДОДАТИ В ЗРАЗКИ",userColorsTitle:"КОЛІРИ КОРИСТУВАЧА"},switch:{on:"увм",off:"вім"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"zh-CN":{calendar:{months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月","1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六","日","一","二","三","四","五","六","周日","周一","周二","周三","周四","周五","周六"],time:{days:"天",hours:"时",minutes:"分",seconds:"秒",month:"月",day:"日",year:"年"},weekStart:1},buttons:{ok:"确认",cancel:"取消",done:"完成",today:"今天",now:"现在",clear:"清除",help:"帮助",yes:"是",no:"否",random:"随机",save:"保存",reset:"重啟"},table:{rowsCount:"显示实体:",search:"搜索:",info:"显示 $1 到 $2 的 $3 条目",prev:"上一页",next:"下一页",all:"全部",inspector:"查看",skip:"转到页面",empty:"没有数据"},colorSelector:{addUserColorButton:"添加到颜色板",userColorsTitle:"用户颜色"},switch:{on:"是",off:"否"}}})}(Metro),function(t,e){m4q.extend(t.locales,{"zh-TW":{calendar:{months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月","1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六","日","一","二","三","四","五","六","週日","週一","週二","週三","週四","週五","週六"],time:{days:"天",hours:"時",minutes:"分",seconds:"秒",month:"月",day:"日",year:"年"},weekStart:1},buttons:{ok:"確認",cancel:"取消",done:"完成",today:"今天",now:"現在",clear:"清除",help:"幫助",yes:"是",no:"否",random:"隨機",save:"保存",reset:"重啟"},table:{rowsCount:"Show entries:",search:"Search:",info:"Showing $1 to $2 of $3 entries",prev:"Prev",next:"Next",all:"All",inspector:"Inspector",skip:"Goto page",empty:"Nothing to show"},colorSelector:{addUserColorButton:"ADD TO SWATCHES",userColorsTitle:"USER COLORS"},switch:{on:"on",off:"off"}}})}(Metro),"function"!=typeof Array.prototype.shuffle&&(Array.prototype.shuffle=function(){for(var t,e,i=this.length;0!==i;)e=Math.floor(Math.random()*i),t=this[i-=1],this[i]=this[e],this[e]=t;return this}),"function"!=typeof Array.prototype.clone&&(Array.prototype.clone=function(){return this.slice(0)}),"function"!=typeof Array.prototype.unique&&(Array.prototype.unique=function(){for(var t=this.concat(),e=0;et.trim())).filter(Boolean)}),Number.prototype.format=function(t,e,i,o){var r="\\d(?=(\\d{"+(e||3)+"})+"+(t>0?"\\D":"$")+")",a=this.toFixed(Math.max(0,~~t));return(o?a.replace(".",o):a).replace(new RegExp(r,"g"),"$&"+(i||","))},String.prototype.toArray=function(t,e,i,o){return e=e||"string",i=null!=i&&i,(""+this).split(t=t||",").map((function(t){var r;switch(e){case"int":case"integer":r=isNaN(t)?t.trim():parseInt(t);break;case"number":case"float":r=isNaN(t)?t:parseFloat(t);break;case"date":r=i?Datetime.from(t,i,o||"en-US"):datetime(t);break;default:r=t.trim()}return r}))},String.prototype.capitalize=function(){return this.substr(0,1).toUpperCase()+this.substr(1)},function(t,e){t.utils={nothing:function(){},noop:function(){},elementId:function(t){return t+"-"+(new Date).getTime()+e.random(1,1e3)},secondsToTime:function(t){return{d:Math.floor(t%31536e3/86400),h:Math.floor(t%31536e3%86400/3600),m:Math.floor(t%31536e3%86400%3600/60),s:Math.round(t%31536e3%86400%3600%60)}},secondsToFormattedString:function(t){var e=parseInt(t,10),i=Math.floor(e/3600),o=Math.floor((e-3600*i)/60),r=e-3600*i-60*o;return[Str.lpad(i,"0",2),Str.lpad(o,"0",2),Str.lpad(r,"0",2)].join(":")},func:function(t){return new Function("a",t)},exec:function(t,e,i){var o;if(null==t)return!1;var r=this.isFunc(t);!1===r&&(r=this.func(t));try{o=r.apply(i,e)}catch(t){if(o=null,!0===window.METRO_THROWS)throw t}return o},embedUrl:function(t){return-1!==t.indexOf("youtu.be")&&(t="https://www.youtube.com/embed/"+t.split("/").pop()),"
"},isVisible:function(t){var i=e(t)[0];return"none"!==this.getStyleOne(i,"display")&&"hidden"!==this.getStyleOne(i,"visibility")&&null!==i.offsetParent},isUrl:function(t){return/^(\.\/|\.\.\/|ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@\-\/]))?/.test(t)},isTag:function(t){return/^<\/?[\w\s="/.':;#-\/\?]+>/gi.test(t)},isEmbedObject:function(t){var i=!1;return e.each(["iframe","object","embed","video"],(function(){("string"==typeof t&&t.toLowerCase()===this||void 0!==t.nodeType&&t.tagName.toLowerCase()===this)&&(i=!0)})),i},isVideoUrl:function(t){return/youtu\.be|youtube|twitch|vimeo/gi.test(t)},isDate:function(t,e,i="en-US"){var o;if(this.isDateObject(t))return!0;try{return o=e?Datetime.from(t,e,i):datetime(t),Datetime.isDatetime(o)}catch(t){return!1}},isDateObject:function(t){return"object"==typeof t&&void 0!==t.getMonth},isInt:function(t){return!isNaN(t)&&+t%1==0},isFloat:function(t){return!isNaN(t)&&+t%1!=0||/^\d*\.\d+$/.test(t)},isFunc:function(t){return this.isType(t,"function")},isObject:function(t){return this.isType(t,"object")},isObject2:function(t){return"object"==typeof t&&!Array.isArray(t)},isType:function(t,e){if(!this.isValue(t))return!1;if(typeof t===e)return t;if("tag"===(""+e).toLowerCase()&&this.isTag(t))return t;if("url"===(""+e).toLowerCase()&&this.isUrl(t))return t;if("array"===(""+e).toLowerCase()&&Array.isArray(t))return t;if("string"!==e&&this.isTag(t)||this.isUrl(t))return!1;if(typeof window[t]===e)return window[t];if("string"==typeof t&&-1===t.indexOf("."))return!1;if("string"==typeof t&&/[/\s([]+/gm.test(t))return!1;if("number"==typeof t&&"number"!==e.toLowerCase())return!1;var i,o=t.split("."),r=window;for(i=0;i=0&&e.left>=0&&e.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&e.right<=(window.innerWidth||document.documentElement.clientWidth)},rect:function(t){return t.getBoundingClientRect()},getCursorPosition:function(t,e){var i=this.rect(t);return{x:this.pageXY(e).x-i.left-window.scrollX,y:this.pageXY(e).y-i.top-window.scrollY}},getCursorPositionX:function(t,e){return this.getCursorPosition(t,e).x},getCursorPositionY:function(t,e){return this.getCursorPosition(t,e).y},objectLength:function(t){return Object.keys(t).length},percent:function(t,e,i){if(0===t)return 0;var o=100*e/t;return!0===i?Math.round(o):Math.round(100*o)/100},objectShift:function(t){var i=0;return e.each(t,(function(t){(0===i||i>t)&&(i=t)})),delete t[i],t},objectDelete:function(t,e){e in t&&delete t[e]},arrayDeleteByMultipleKeys:function(t,e){return e.forEach((function(e){delete t[e]})),t.filter((function(t){return void 0!==t}))},arrayDelete:function(t,e){var i=t.indexOf(e);i>-1&&t.splice(i,1)},arrayDeleteByKey:function(t,e){t.splice(e,1)},nvl:function(t,e){return null==t?e:t},objectClone:function(t){var i={};for(var o in t)e.hasProp(t,o)&&(i[o]=t[o]);return i},github:async function(t,e){const i=await fetch(`https://api.github.com/repos/${t}`);if(!i.ok)return;const o=await i.json();this.exec(e,[o])},pageHeight:function(){var t=document.body,e=document.documentElement;return Math.max(t.scrollHeight,t.offsetHeight,e.clientHeight,e.scrollHeight,e.offsetHeight)},cleanPreCode:function(t){Array.prototype.slice.call(document.querySelectorAll(t),0).forEach((function(t){var e=t.textContent.replace(/^[\r\n]+/,"").replace(/\s+$/g,"");if(/^\S/gm.test(e))t.textContent=e;else{for(var i,o,r,a=/^[\t ]+/gm,n=1e3;i=a.exec(e);)(r=i[0].length)-1},keyInObject:function(t,e){return Object.keys(t).indexOf(e)>-1},inObject:function(t,e,i){return void 0!==t[e]&&t[e]===i},newCssSheet:function(t){var e=document.createElement("style");return void 0!==t&&e.setAttribute("media",t),e.appendChild(document.createTextNode("")),document.head.appendChild(e),e.sheet},addCssRule:function(t,e,i,o){t.insertRule(e+"{"+i+"}",o)},media:function(t){return window.matchMedia(t).matches},mediaModes:function(){return window.METRO_MEDIA},mediaExist:function(t){return window.METRO_MEDIA.indexOf(t)>-1},inMedia:function(t){return window.METRO_MEDIA.indexOf(t)>-1&&window.METRO_MEDIA.indexOf(t)===window.METRO_MEDIA.length-1},isValue:function(t){return null!=t&&""!==t},isNull:function(t){return null==t},isNegative:function(t){return parseFloat(t)<0},isPositive:function(t){return parseFloat(t)>0},isZero:function(t){return 0===parseFloat(t.toFixed(2))},between:function(t,e,i,o){return!0===o?t>=e&&t<=i:t>e&&t*{-webkit-box-flex:1;flex:1}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap{flex-wrap:wrap!important}.flex-wrap-r{flex-wrap:wrap-reverse!important}.flex-column{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column,.flex-column-r{-webkit-box-orient:vertical!important}.flex-column-r{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row,.flex-row-r{-webkit-box-orient:horizontal!important}.flex-row-r{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start{align-self:flex-start!important}.flex-self-end{align-self:flex-end!important}.flex-self-center{align-self:center!important}.flex-self-stretch{align-self:stretch!important}.flex-self-baseline{align-self:baseline!important}.flex-justify-start{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around{justify-content:space-around!important}.flex-content-start{align-content:flex-start!important}.flex-content-end{align-content:flex-end!important}.flex-content-center{align-content:center!important}.flex-content-between{align-content:space-between!important}.flex-content-around{align-content:space-around!important}.flex-content-stretch{align-content:stretch!important}.flex-no-shrink>*{flex-shrink:0}.flex-shrink>*{flex-shrink:1}.flex-no-grow>*{-webkit-box-flex:0;flex-grow:0}.flex-grow>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self{flex-shrink:0}.flex-shrink-self{flex-shrink:1}.flex-no-grow-self{-webkit-box-flex:0;flex-grow:0}.flex-grow-self{-webkit-box-flex:1;flex-grow:1}.flex-right{margin-left:auto}.flex-left{margin-right:auto}.flex-top{margin-bottom:auto}.flex-bottom{margin-top:auto}.content-center,.flex-center{-webkit-box-align:center;-webkit-box-pack:center;align-items:center;display:-webkit-box;display:flex;justify-content:center}@media screen and (min-width:0){.flex-nowrap-fs{flex-wrap:nowrap!important}.flex-wrap-fs{flex-wrap:wrap!important}.flex-wrap-r-fs{flex-wrap:wrap-reverse!important}.flex-column-fs{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-fs,.flex-column-r-fs{-webkit-box-orient:vertical!important}.flex-column-r-fs{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-fs{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-fs,.flex-row-r-fs{-webkit-box-orient:horizontal!important}.flex-row-r-fs{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-fs{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-fs{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-fs{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-fs{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-fs{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-fs{align-self:flex-start!important}.flex-self-end-fs{align-self:flex-end!important}.flex-self-center-fs{align-self:center!important}.flex-self-stretch-fs{align-self:stretch!important}.flex-self-baseline-fs{align-self:baseline!important}.flex-justify-start-fs{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-fs{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-fs{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-fs{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-fs{justify-content:space-around!important}.flex-content-start-fs{align-content:flex-start!important}.flex-content-end-fs{align-content:flex-end!important}.flex-content-center-fs{align-content:center!important}.flex-content-between-fs{align-content:space-between!important}.flex-content-around-fs{align-content:space-around!important}.flex-content-stretch-fs{align-content:stretch!important}.flex-no-shrink-fs>*{flex-shrink:0}.flex-shrink-fs>*{flex-shrink:1}.flex-no-grow-fs>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-fs>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-fs{flex-shrink:0}.flex-shrink-self-fs{flex-shrink:1}.flex-no-grow-self-fs{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-fs{-webkit-box-flex:1;flex-grow:1}.flex-right-fs{margin-left:auto}.flex-left-fs{margin-right:auto}.flex-top-fs{margin-bottom:auto}.flex-bottom-fs{margin-top:auto}.order-1-fs{-webkit-box-ordinal-group:2;order:1}.order-2-fs{-webkit-box-ordinal-group:3;order:2}.order-3-fs{-webkit-box-ordinal-group:4;order:3}.order-4-fs{-webkit-box-ordinal-group:5;order:4}.order-5-fs{-webkit-box-ordinal-group:6;order:5}.order-6-fs{-webkit-box-ordinal-group:7;order:6}.order-7-fs{-webkit-box-ordinal-group:8;order:7}.order-8-fs{-webkit-box-ordinal-group:9;order:8}.order-9-fs{-webkit-box-ordinal-group:10;order:9}.order-10-fs{-webkit-box-ordinal-group:11;order:10}.order-11-fs{-webkit-box-ordinal-group:12;order:11}.order-12-fs{-webkit-box-ordinal-group:13;order:12}.order-13-fs{-webkit-box-ordinal-group:14;order:13}.order-14-fs{-webkit-box-ordinal-group:15;order:14}.order-15-fs{-webkit-box-ordinal-group:16;order:15}.order-16-fs{-webkit-box-ordinal-group:17;order:16}.order-17-fs{-webkit-box-ordinal-group:18;order:17}.order-18-fs{-webkit-box-ordinal-group:19;order:18}.order-19-fs{-webkit-box-ordinal-group:20;order:19}.order-20-fs{-webkit-box-ordinal-group:21;order:20}.order-21-fs{-webkit-box-ordinal-group:22;order:21}.order-22-fs{-webkit-box-ordinal-group:23;order:22}.order-23-fs{-webkit-box-ordinal-group:24;order:23}.order-24-fs{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:360px){.flex-nowrap-xs{flex-wrap:nowrap!important}.flex-wrap-xs{flex-wrap:wrap!important}.flex-wrap-r-xs{flex-wrap:wrap-reverse!important}.flex-column-xs{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-r-xs,.flex-column-xs{-webkit-box-orient:vertical!important}.flex-column-r-xs{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-xs{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-r-xs,.flex-row-xs{-webkit-box-orient:horizontal!important}.flex-row-r-xs{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-xs{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-xs{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-xs{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-xs{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-xs{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-xs{align-self:flex-start!important}.flex-self-end-xs{align-self:flex-end!important}.flex-self-center-xs{align-self:center!important}.flex-self-stretch-xs{align-self:stretch!important}.flex-self-baseline-xs{align-self:baseline!important}.flex-justify-start-xs{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-xs{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-xs{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-xs{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-xs{justify-content:space-around!important}.flex-content-start-xs{align-content:flex-start!important}.flex-content-end-xs{align-content:flex-end!important}.flex-content-center-xs{align-content:center!important}.flex-content-between-xs{align-content:space-between!important}.flex-content-around-xs{align-content:space-around!important}.flex-content-stretch-xs{align-content:stretch!important}.flex-no-shrink-xs>*{flex-shrink:0}.flex-shrink-xs>*{flex-shrink:1}.flex-no-grow-xs>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-xs>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-xs{flex-shrink:0}.flex-shrink-self-xs{flex-shrink:1}.flex-no-grow-self-xs{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-xs{-webkit-box-flex:1;flex-grow:1}.flex-right-xs{margin-left:auto}.flex-left-xs{margin-right:auto}.flex-top-xs{margin-bottom:auto}.flex-bottom-xs{margin-top:auto}.order-1-xs{-webkit-box-ordinal-group:2;order:1}.order-2-xs{-webkit-box-ordinal-group:3;order:2}.order-3-xs{-webkit-box-ordinal-group:4;order:3}.order-4-xs{-webkit-box-ordinal-group:5;order:4}.order-5-xs{-webkit-box-ordinal-group:6;order:5}.order-6-xs{-webkit-box-ordinal-group:7;order:6}.order-7-xs{-webkit-box-ordinal-group:8;order:7}.order-8-xs{-webkit-box-ordinal-group:9;order:8}.order-9-xs{-webkit-box-ordinal-group:10;order:9}.order-10-xs{-webkit-box-ordinal-group:11;order:10}.order-11-xs{-webkit-box-ordinal-group:12;order:11}.order-12-xs{-webkit-box-ordinal-group:13;order:12}.order-13-xs{-webkit-box-ordinal-group:14;order:13}.order-14-xs{-webkit-box-ordinal-group:15;order:14}.order-15-xs{-webkit-box-ordinal-group:16;order:15}.order-16-xs{-webkit-box-ordinal-group:17;order:16}.order-17-xs{-webkit-box-ordinal-group:18;order:17}.order-18-xs{-webkit-box-ordinal-group:19;order:18}.order-19-xs{-webkit-box-ordinal-group:20;order:19}.order-20-xs{-webkit-box-ordinal-group:21;order:20}.order-21-xs{-webkit-box-ordinal-group:22;order:21}.order-22-xs{-webkit-box-ordinal-group:23;order:22}.order-23-xs{-webkit-box-ordinal-group:24;order:23}.order-24-xs{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:576px){.flex-nowrap-sm{flex-wrap:nowrap!important}.flex-wrap-sm{flex-wrap:wrap!important}.flex-wrap-r-sm{flex-wrap:wrap-reverse!important}.flex-column-sm{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-r-sm,.flex-column-sm{-webkit-box-orient:vertical!important}.flex-column-r-sm{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-sm{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-r-sm,.flex-row-sm{-webkit-box-orient:horizontal!important}.flex-row-r-sm{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-sm{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-sm{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-sm{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-sm{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-sm{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-sm{align-self:flex-start!important}.flex-self-end-sm{align-self:flex-end!important}.flex-self-center-sm{align-self:center!important}.flex-self-stretch-sm{align-self:stretch!important}.flex-self-baseline-sm{align-self:baseline!important}.flex-justify-start-sm{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-sm{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-sm{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-sm{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-sm{justify-content:space-around!important}.flex-content-start-sm{align-content:flex-start!important}.flex-content-end-sm{align-content:flex-end!important}.flex-content-center-sm{align-content:center!important}.flex-content-between-sm{align-content:space-between!important}.flex-content-around-sm{align-content:space-around!important}.flex-content-stretch-sm{align-content:stretch!important}.flex-no-shrink-sm>*{flex-shrink:0}.flex-shrink-sm>*{flex-shrink:1}.flex-no-grow-sm>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-sm>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-sm{flex-shrink:0}.flex-shrink-self-sm{flex-shrink:1}.flex-no-grow-self-sm{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-sm{-webkit-box-flex:1;flex-grow:1}.flex-right-sm{margin-left:auto}.flex-left-sm{margin-right:auto}.flex-top-sm{margin-bottom:auto}.flex-bottom-sm{margin-top:auto}.order-1-sm{-webkit-box-ordinal-group:2;order:1}.order-2-sm{-webkit-box-ordinal-group:3;order:2}.order-3-sm{-webkit-box-ordinal-group:4;order:3}.order-4-sm{-webkit-box-ordinal-group:5;order:4}.order-5-sm{-webkit-box-ordinal-group:6;order:5}.order-6-sm{-webkit-box-ordinal-group:7;order:6}.order-7-sm{-webkit-box-ordinal-group:8;order:7}.order-8-sm{-webkit-box-ordinal-group:9;order:8}.order-9-sm{-webkit-box-ordinal-group:10;order:9}.order-10-sm{-webkit-box-ordinal-group:11;order:10}.order-11-sm{-webkit-box-ordinal-group:12;order:11}.order-12-sm{-webkit-box-ordinal-group:13;order:12}.order-13-sm{-webkit-box-ordinal-group:14;order:13}.order-14-sm{-webkit-box-ordinal-group:15;order:14}.order-15-sm{-webkit-box-ordinal-group:16;order:15}.order-16-sm{-webkit-box-ordinal-group:17;order:16}.order-17-sm{-webkit-box-ordinal-group:18;order:17}.order-18-sm{-webkit-box-ordinal-group:19;order:18}.order-19-sm{-webkit-box-ordinal-group:20;order:19}.order-20-sm{-webkit-box-ordinal-group:21;order:20}.order-21-sm{-webkit-box-ordinal-group:22;order:21}.order-22-sm{-webkit-box-ordinal-group:23;order:22}.order-23-sm{-webkit-box-ordinal-group:24;order:23}.order-24-sm{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:640px){.flex-nowrap-ld{flex-wrap:nowrap!important}.flex-wrap-ld{flex-wrap:wrap!important}.flex-wrap-r-ld{flex-wrap:wrap-reverse!important}.flex-column-ld{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-ld,.flex-column-r-ld{-webkit-box-orient:vertical!important}.flex-column-r-ld{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-ld{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-ld,.flex-row-r-ld{-webkit-box-orient:horizontal!important}.flex-row-r-ld{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-ld{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-ld{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-ld{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-ld{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-ld{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-ld{align-self:flex-start!important}.flex-self-end-ld{align-self:flex-end!important}.flex-self-center-ld{align-self:center!important}.flex-self-stretch-ld{align-self:stretch!important}.flex-self-baseline-ld{align-self:baseline!important}.flex-justify-start-ld{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-ld{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-ld{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-ld{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-ld{justify-content:space-around!important}.flex-content-start-ld{align-content:flex-start!important}.flex-content-end-ld{align-content:flex-end!important}.flex-content-center-ld{align-content:center!important}.flex-content-between-ld{align-content:space-between!important}.flex-content-around-ld{align-content:space-around!important}.flex-content-stretch-ld{align-content:stretch!important}.flex-no-shrink-ld>*{flex-shrink:0}.flex-shrink-ld>*{flex-shrink:1}.flex-no-grow-ld>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-ld>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-ld{flex-shrink:0}.flex-shrink-self-ld{flex-shrink:1}.flex-no-grow-self-ld{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-ld{-webkit-box-flex:1;flex-grow:1}.flex-right-ld{margin-left:auto}.flex-left-ld{margin-right:auto}.flex-top-ld{margin-bottom:auto}.flex-bottom-ld{margin-top:auto}.order-1-ld{-webkit-box-ordinal-group:2;order:1}.order-2-ld{-webkit-box-ordinal-group:3;order:2}.order-3-ld{-webkit-box-ordinal-group:4;order:3}.order-4-ld{-webkit-box-ordinal-group:5;order:4}.order-5-ld{-webkit-box-ordinal-group:6;order:5}.order-6-ld{-webkit-box-ordinal-group:7;order:6}.order-7-ld{-webkit-box-ordinal-group:8;order:7}.order-8-ld{-webkit-box-ordinal-group:9;order:8}.order-9-ld{-webkit-box-ordinal-group:10;order:9}.order-10-ld{-webkit-box-ordinal-group:11;order:10}.order-11-ld{-webkit-box-ordinal-group:12;order:11}.order-12-ld{-webkit-box-ordinal-group:13;order:12}.order-13-ld{-webkit-box-ordinal-group:14;order:13}.order-14-ld{-webkit-box-ordinal-group:15;order:14}.order-15-ld{-webkit-box-ordinal-group:16;order:15}.order-16-ld{-webkit-box-ordinal-group:17;order:16}.order-17-ld{-webkit-box-ordinal-group:18;order:17}.order-18-ld{-webkit-box-ordinal-group:19;order:18}.order-19-ld{-webkit-box-ordinal-group:20;order:19}.order-20-ld{-webkit-box-ordinal-group:21;order:20}.order-21-ld{-webkit-box-ordinal-group:22;order:21}.order-22-ld{-webkit-box-ordinal-group:23;order:22}.order-23-ld{-webkit-box-ordinal-group:24;order:23}.order-24-ld{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:768px){.flex-nowrap-md{flex-wrap:nowrap!important}.flex-wrap-md{flex-wrap:wrap!important}.flex-wrap-r-md{flex-wrap:wrap-reverse!important}.flex-column-md{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-md,.flex-column-r-md{-webkit-box-orient:vertical!important}.flex-column-r-md{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-md{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-md,.flex-row-r-md{-webkit-box-orient:horizontal!important}.flex-row-r-md{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-md{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-md{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-md{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-md{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-md{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-md{align-self:flex-start!important}.flex-self-end-md{align-self:flex-end!important}.flex-self-center-md{align-self:center!important}.flex-self-stretch-md{align-self:stretch!important}.flex-self-baseline-md{align-self:baseline!important}.flex-justify-start-md{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-md{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-md{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-md{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-md{justify-content:space-around!important}.flex-content-start-md{align-content:flex-start!important}.flex-content-end-md{align-content:flex-end!important}.flex-content-center-md{align-content:center!important}.flex-content-between-md{align-content:space-between!important}.flex-content-around-md{align-content:space-around!important}.flex-content-stretch-md{align-content:stretch!important}.flex-no-shrink-md>*{flex-shrink:0}.flex-shrink-md>*{flex-shrink:1}.flex-no-grow-md>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-md>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-md{flex-shrink:0}.flex-shrink-self-md{flex-shrink:1}.flex-no-grow-self-md{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-md{-webkit-box-flex:1;flex-grow:1}.flex-right-md{margin-left:auto}.flex-left-md{margin-right:auto}.flex-top-md{margin-bottom:auto}.flex-bottom-md{margin-top:auto}.order-1-md{-webkit-box-ordinal-group:2;order:1}.order-2-md{-webkit-box-ordinal-group:3;order:2}.order-3-md{-webkit-box-ordinal-group:4;order:3}.order-4-md{-webkit-box-ordinal-group:5;order:4}.order-5-md{-webkit-box-ordinal-group:6;order:5}.order-6-md{-webkit-box-ordinal-group:7;order:6}.order-7-md{-webkit-box-ordinal-group:8;order:7}.order-8-md{-webkit-box-ordinal-group:9;order:8}.order-9-md{-webkit-box-ordinal-group:10;order:9}.order-10-md{-webkit-box-ordinal-group:11;order:10}.order-11-md{-webkit-box-ordinal-group:12;order:11}.order-12-md{-webkit-box-ordinal-group:13;order:12}.order-13-md{-webkit-box-ordinal-group:14;order:13}.order-14-md{-webkit-box-ordinal-group:15;order:14}.order-15-md{-webkit-box-ordinal-group:16;order:15}.order-16-md{-webkit-box-ordinal-group:17;order:16}.order-17-md{-webkit-box-ordinal-group:18;order:17}.order-18-md{-webkit-box-ordinal-group:19;order:18}.order-19-md{-webkit-box-ordinal-group:20;order:19}.order-20-md{-webkit-box-ordinal-group:21;order:20}.order-21-md{-webkit-box-ordinal-group:22;order:21}.order-22-md{-webkit-box-ordinal-group:23;order:22}.order-23-md{-webkit-box-ordinal-group:24;order:23}.order-24-md{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:992px){.flex-nowrap-lg{flex-wrap:nowrap!important}.flex-wrap-lg{flex-wrap:wrap!important}.flex-wrap-r-lg{flex-wrap:wrap-reverse!important}.flex-column-lg{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-lg,.flex-column-r-lg{-webkit-box-orient:vertical!important}.flex-column-r-lg{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-lg{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-lg,.flex-row-r-lg{-webkit-box-orient:horizontal!important}.flex-row-r-lg{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-lg{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-lg{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-lg{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-lg{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-lg{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-lg{align-self:flex-start!important}.flex-self-end-lg{align-self:flex-end!important}.flex-self-center-lg{align-self:center!important}.flex-self-stretch-lg{align-self:stretch!important}.flex-self-baseline-lg{align-self:baseline!important}.flex-justify-start-lg{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-lg{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-lg{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-lg{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-lg{justify-content:space-around!important}.flex-content-start-lg{align-content:flex-start!important}.flex-content-end-lg{align-content:flex-end!important}.flex-content-center-lg{align-content:center!important}.flex-content-between-lg{align-content:space-between!important}.flex-content-around-lg{align-content:space-around!important}.flex-content-stretch-lg{align-content:stretch!important}.flex-no-shrink-lg>*{flex-shrink:0}.flex-shrink-lg>*{flex-shrink:1}.flex-no-grow-lg>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-lg>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-lg{flex-shrink:0}.flex-shrink-self-lg{flex-shrink:1}.flex-no-grow-self-lg{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-lg{-webkit-box-flex:1;flex-grow:1}.flex-right-lg{margin-left:auto}.flex-left-lg{margin-right:auto}.flex-top-lg{margin-bottom:auto}.flex-bottom-lg{margin-top:auto}.order-1-lg{-webkit-box-ordinal-group:2;order:1}.order-2-lg{-webkit-box-ordinal-group:3;order:2}.order-3-lg{-webkit-box-ordinal-group:4;order:3}.order-4-lg{-webkit-box-ordinal-group:5;order:4}.order-5-lg{-webkit-box-ordinal-group:6;order:5}.order-6-lg{-webkit-box-ordinal-group:7;order:6}.order-7-lg{-webkit-box-ordinal-group:8;order:7}.order-8-lg{-webkit-box-ordinal-group:9;order:8}.order-9-lg{-webkit-box-ordinal-group:10;order:9}.order-10-lg{-webkit-box-ordinal-group:11;order:10}.order-11-lg{-webkit-box-ordinal-group:12;order:11}.order-12-lg{-webkit-box-ordinal-group:13;order:12}.order-13-lg{-webkit-box-ordinal-group:14;order:13}.order-14-lg{-webkit-box-ordinal-group:15;order:14}.order-15-lg{-webkit-box-ordinal-group:16;order:15}.order-16-lg{-webkit-box-ordinal-group:17;order:16}.order-17-lg{-webkit-box-ordinal-group:18;order:17}.order-18-lg{-webkit-box-ordinal-group:19;order:18}.order-19-lg{-webkit-box-ordinal-group:20;order:19}.order-20-lg{-webkit-box-ordinal-group:21;order:20}.order-21-lg{-webkit-box-ordinal-group:22;order:21}.order-22-lg{-webkit-box-ordinal-group:23;order:22}.order-23-lg{-webkit-box-ordinal-group:24;order:23}.order-24-lg{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:1200px){.flex-nowrap-xl{flex-wrap:nowrap!important}.flex-wrap-xl{flex-wrap:wrap!important}.flex-wrap-r-xl{flex-wrap:wrap-reverse!important}.flex-column-xl{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-r-xl,.flex-column-xl{-webkit-box-orient:vertical!important}.flex-column-r-xl{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-xl{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-r-xl,.flex-row-xl{-webkit-box-orient:horizontal!important}.flex-row-r-xl{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-xl{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-xl{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-xl{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-xl{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-xl{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-xl{align-self:flex-start!important}.flex-self-end-xl{align-self:flex-end!important}.flex-self-center-xl{align-self:center!important}.flex-self-stretch-xl{align-self:stretch!important}.flex-self-baseline-xl{align-self:baseline!important}.flex-justify-start-xl{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-xl{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-xl{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-xl{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-xl{justify-content:space-around!important}.flex-content-start-xl{align-content:flex-start!important}.flex-content-end-xl{align-content:flex-end!important}.flex-content-center-xl{align-content:center!important}.flex-content-between-xl{align-content:space-between!important}.flex-content-around-xl{align-content:space-around!important}.flex-content-stretch-xl{align-content:stretch!important}.flex-no-shrink-xl>*{flex-shrink:0}.flex-shrink-xl>*{flex-shrink:1}.flex-no-grow-xl>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-xl>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-xl{flex-shrink:0}.flex-shrink-self-xl{flex-shrink:1}.flex-no-grow-self-xl{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-xl{-webkit-box-flex:1;flex-grow:1}.flex-right-xl{margin-left:auto}.flex-left-xl{margin-right:auto}.flex-top-xl{margin-bottom:auto}.flex-bottom-xl{margin-top:auto}.order-1-xl{-webkit-box-ordinal-group:2;order:1}.order-2-xl{-webkit-box-ordinal-group:3;order:2}.order-3-xl{-webkit-box-ordinal-group:4;order:3}.order-4-xl{-webkit-box-ordinal-group:5;order:4}.order-5-xl{-webkit-box-ordinal-group:6;order:5}.order-6-xl{-webkit-box-ordinal-group:7;order:6}.order-7-xl{-webkit-box-ordinal-group:8;order:7}.order-8-xl{-webkit-box-ordinal-group:9;order:8}.order-9-xl{-webkit-box-ordinal-group:10;order:9}.order-10-xl{-webkit-box-ordinal-group:11;order:10}.order-11-xl{-webkit-box-ordinal-group:12;order:11}.order-12-xl{-webkit-box-ordinal-group:13;order:12}.order-13-xl{-webkit-box-ordinal-group:14;order:13}.order-14-xl{-webkit-box-ordinal-group:15;order:14}.order-15-xl{-webkit-box-ordinal-group:16;order:15}.order-16-xl{-webkit-box-ordinal-group:17;order:16}.order-17-xl{-webkit-box-ordinal-group:18;order:17}.order-18-xl{-webkit-box-ordinal-group:19;order:18}.order-19-xl{-webkit-box-ordinal-group:20;order:19}.order-20-xl{-webkit-box-ordinal-group:21;order:20}.order-21-xl{-webkit-box-ordinal-group:22;order:21}.order-22-xl{-webkit-box-ordinal-group:23;order:22}.order-23-xl{-webkit-box-ordinal-group:24;order:23}.order-24-xl{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:1452px){.flex-nowrap-xxl{flex-wrap:nowrap!important}.flex-wrap-xxl{flex-wrap:wrap!important}.flex-wrap-r-xxl{flex-wrap:wrap-reverse!important}.flex-column-xxl{-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-r-xxl,.flex-column-xxl{-webkit-box-orient:vertical!important}.flex-column-r-xxl{-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-xxl{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-r-xxl,.flex-row-xxl{-webkit-box-orient:horizontal!important}.flex-row-r-xxl{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-xxl{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-xxl{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-xxl{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-xxl{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-xxl{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-xxl{align-self:flex-start!important}.flex-self-end-xxl{align-self:flex-end!important}.flex-self-center-xxl{align-self:center!important}.flex-self-stretch-xxl{align-self:stretch!important}.flex-self-baseline-xxl{align-self:baseline!important}.flex-justify-start-xxl{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-xxl{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-xxl{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-xxl{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-xxl{justify-content:space-around!important}.flex-content-start-xxl{align-content:flex-start!important}.flex-content-end-xxl{align-content:flex-end!important}.flex-content-center-xxl{align-content:center!important}.flex-content-between-xxl{align-content:space-between!important}.flex-content-around-xxl{align-content:space-around!important}.flex-content-stretch-xxl{align-content:stretch!important}.flex-no-shrink-xxl>*{flex-shrink:0}.flex-shrink-xxl>*{flex-shrink:1}.flex-no-grow-xxl>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-xxl>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-xxl{flex-shrink:0}.flex-shrink-self-xxl{flex-shrink:1}.flex-no-grow-self-xxl{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-xxl{-webkit-box-flex:1;flex-grow:1}.flex-right-xxl{margin-left:auto}.flex-left-xxl{margin-right:auto}.flex-top-xxl{margin-bottom:auto}.flex-bottom-xxl{margin-top:auto}.order-1-xxl{-webkit-box-ordinal-group:2;order:1}.order-2-xxl{-webkit-box-ordinal-group:3;order:2}.order-3-xxl{-webkit-box-ordinal-group:4;order:3}.order-4-xxl{-webkit-box-ordinal-group:5;order:4}.order-5-xxl{-webkit-box-ordinal-group:6;order:5}.order-6-xxl{-webkit-box-ordinal-group:7;order:6}.order-7-xxl{-webkit-box-ordinal-group:8;order:7}.order-8-xxl{-webkit-box-ordinal-group:9;order:8}.order-9-xxl{-webkit-box-ordinal-group:10;order:9}.order-10-xxl{-webkit-box-ordinal-group:11;order:10}.order-11-xxl{-webkit-box-ordinal-group:12;order:11}.order-12-xxl{-webkit-box-ordinal-group:13;order:12}.order-13-xxl{-webkit-box-ordinal-group:14;order:13}.order-14-xxl{-webkit-box-ordinal-group:15;order:14}.order-15-xxl{-webkit-box-ordinal-group:16;order:15}.order-16-xxl{-webkit-box-ordinal-group:17;order:16}.order-17-xxl{-webkit-box-ordinal-group:18;order:17}.order-18-xxl{-webkit-box-ordinal-group:19;order:18}.order-19-xxl{-webkit-box-ordinal-group:20;order:19}.order-20-xxl{-webkit-box-ordinal-group:21;order:20}.order-21-xxl{-webkit-box-ordinal-group:22;order:21}.order-22-xxl{-webkit-box-ordinal-group:23;order:22}.order-23-xxl{-webkit-box-ordinal-group:24;order:23}.order-24-xxl{-webkit-box-ordinal-group:25;order:24}}@media screen and (min-width:2000px){.flex-nowrap-xxxl{flex-wrap:nowrap!important}.flex-wrap-xxxl{flex-wrap:wrap!important}.flex-wrap-r-xxxl{flex-wrap:wrap-reverse!important}.flex-column-xxxl{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;flex-direction:column!important}.flex-column-r-xxxl{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;flex-direction:column-reverse!important}.flex-row-xxxl{-webkit-box-direction:normal!important;flex-direction:row!important}.flex-row-r-xxxl,.flex-row-xxxl{-webkit-box-orient:horizontal!important}.flex-row-r-xxxl{-webkit-box-direction:reverse!important;flex-direction:row-reverse!important}.flex-align-start-xxxl{-webkit-box-align:start!important;align-items:flex-start!important}.flex-align-end-xxxl{-webkit-box-align:end!important;align-items:flex-end!important}.flex-align-center-xxxl{-webkit-box-align:center!important;align-items:center!important}.flex-align-stretch-xxxl{-webkit-box-align:stretch!important;align-items:stretch!important}.flex-align-baseline-xxxl{-webkit-box-align:baseline!important;align-items:baseline!important}.flex-self-start-xxxl{align-self:flex-start!important}.flex-self-end-xxxl{align-self:flex-end!important}.flex-self-center-xxxl{align-self:center!important}.flex-self-stretch-xxxl{align-self:stretch!important}.flex-self-baseline-xxxl{align-self:baseline!important}.flex-justify-start-xxxl{-webkit-box-pack:start!important;justify-content:flex-start!important}.flex-justify-end-xxxl{-webkit-box-pack:end!important;justify-content:flex-end!important}.flex-justify-center-xxxl{-webkit-box-pack:center!important;justify-content:center!important}.flex-justify-between-xxxl{-webkit-box-pack:justify!important;justify-content:space-between!important}.flex-justify-around-xxxl{justify-content:space-around!important}.flex-content-start-xxxl{align-content:flex-start!important}.flex-content-end-xxxl{align-content:flex-end!important}.flex-content-center-xxxl{align-content:center!important}.flex-content-between-xxxl{align-content:space-between!important}.flex-content-around-xxxl{align-content:space-around!important}.flex-content-stretch-xxxl{align-content:stretch!important}.flex-no-shrink-xxxl>*{flex-shrink:0}.flex-shrink-xxxl>*{flex-shrink:1}.flex-no-grow-xxxl>*{-webkit-box-flex:0;flex-grow:0}.flex-grow-xxxl>*{-webkit-box-flex:1;flex-grow:1}.flex-no-shrink-self-xxxl{flex-shrink:0}.flex-shrink-self-xxxl{flex-shrink:1}.flex-no-grow-self-xxxl{-webkit-box-flex:0;flex-grow:0}.flex-grow-self-xxxl{-webkit-box-flex:1;flex-grow:1}.flex-right-xxxl{margin-left:auto}.flex-left-xxxl{margin-right:auto}.flex-top-xxxl{margin-bottom:auto}.flex-bottom-xxxl{margin-top:auto}.order-1-xxxl{-webkit-box-ordinal-group:2;order:1}.order-2-xxxl{-webkit-box-ordinal-group:3;order:2}.order-3-xxxl{-webkit-box-ordinal-group:4;order:3}.order-4-xxxl{-webkit-box-ordinal-group:5;order:4}.order-5-xxxl{-webkit-box-ordinal-group:6;order:5}.order-6-xxxl{-webkit-box-ordinal-group:7;order:6}.order-7-xxxl{-webkit-box-ordinal-group:8;order:7}.order-8-xxxl{-webkit-box-ordinal-group:9;order:8}.order-9-xxxl{-webkit-box-ordinal-group:10;order:9}.order-10-xxxl{-webkit-box-ordinal-group:11;order:10}.order-11-xxxl{-webkit-box-ordinal-group:12;order:11}.order-12-xxxl{-webkit-box-ordinal-group:13;order:12}.order-13-xxxl{-webkit-box-ordinal-group:14;order:13}.order-14-xxxl{-webkit-box-ordinal-group:15;order:14}.order-15-xxxl{-webkit-box-ordinal-group:16;order:15}.order-16-xxxl{-webkit-box-ordinal-group:17;order:16}.order-17-xxxl{-webkit-box-ordinal-group:18;order:17}.order-18-xxxl{-webkit-box-ordinal-group:19;order:18}.order-19-xxxl{-webkit-box-ordinal-group:20;order:19}.order-20-xxxl{-webkit-box-ordinal-group:21;order:20}.order-21-xxxl{-webkit-box-ordinal-group:22;order:21}.order-22-xxxl{-webkit-box-ordinal-group:23;order:22}.order-23-xxxl{-webkit-box-ordinal-group:24;order:23}.order-24-xxxl{-webkit-box-ordinal-group:25;order:24}}");styleInject('.clear-float:after{clear:both;content:"";display:block}.float-right,.place-right{float:right!important}.float-left,.place-left{float:left!important}.float-none,.no-float,.place-none{float:none!important}@media screen and (min-width:0){.place-left-fs{float:left!important}.place-right-fs{float:right!important}.place-none-fs{float:none!important}.float-left-fs{float:left!important}.float-right-fs{float:right!important}.float-none-fs{float:none!important}}@media screen and (min-width:360px){.place-left-xs{float:left!important}.place-right-xs{float:right!important}.place-none-xs{float:none!important}.float-left-xs{float:left!important}.float-right-xs{float:right!important}.float-none-xs{float:none!important}}@media screen and (min-width:576px){.place-left-sm{float:left!important}.place-right-sm{float:right!important}.place-none-sm{float:none!important}.float-left-sm{float:left!important}.float-right-sm{float:right!important}.float-none-sm{float:none!important}}@media screen and (min-width:640px){.place-left-ld{float:left!important}.place-right-ld{float:right!important}.place-none-ld{float:none!important}.float-left-ld{float:left!important}.float-right-ld{float:right!important}.float-none-ld{float:none!important}}@media screen and (min-width:768px){.place-left-md{float:left!important}.place-right-md{float:right!important}.place-none-md{float:none!important}.float-left-md{float:left!important}.float-right-md{float:right!important}.float-none-md{float:none!important}}@media screen and (min-width:992px){.place-left-lg{float:left!important}.place-right-lg{float:right!important}.place-none-lg{float:none!important}.float-left-lg{float:left!important}.float-right-lg{float:right!important}.float-none-lg{float:none!important}}@media screen and (min-width:1200px){.place-left-xl{float:left!important}.place-right-xl{float:right!important}.place-none-xl{float:none!important}.float-left-xl{float:left!important}.float-right-xl{float:right!important}.float-none-xl{float:none!important}}@media screen and (min-width:1452px){.place-left-xxl{float:left!important}.place-right-xxl{float:right!important}.place-none-xxl{float:none!important}.float-left-xxl{float:left!important}.float-right-xxl{float:right!important}.float-none-xxl{float:none!important}}@media screen and (min-width:2000px){.place-left-xxxl{float:left!important}.place-right-xxxl{float:right!important}.place-none-xxxl{float:none!important}.float-left-xxxl{float:left!important}.float-right-xxxl{float:right!important}.float-none-xxxl{float:none!important}}');styleInject("html{font-size:100%}body,html{font-family:-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Ubuntu,Helvetica Neue,sans-serif}body{font-size:1rem;font-style:normal;font-weight:400;line-height:1.5}");styleInject(':root{--thumb-background:hsla(0,0%,100%,.8);--img-overlay-background:rgba(70,140,255,.7);--img-overlay-color:#fff}.dark-side{--thumb-background:rgba(0,0,0,.8)}.img-container,.img-fluid,.img-thumbnail{background-color:initial;display:block;height:auto;max-width:100%;overflow:visible;position:relative;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;vertical-align:middle;width:100%}.img-thumbnail{background-color:var(--thumb-background);border:1px solid var(--border-color);border-radius:var(--border-radius);padding:.25rem}.img-container{display:block}.img-container img{height:auto;max-width:100%;position:relative;width:100%}.img-container .image-overlay{background-color:var(--img-overlay-background);border-radius:inherit;bottom:0;color:var(--img-overlay-color);font-size:.875rem;left:0;line-height:1rem;opacity:0;overflow:hidden;padding:2em;position:absolute;right:0;text-align:center;top:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.img-container .image-overlay *{color:inherit}.img-container .image-overlay:hover{opacity:1}.img-container .image-overlay:hover:after,.img-container .image-overlay:hover:before{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.img-container .image-overlay:after,.img-container .image-overlay:before{border:1px solid var(--border-color);border-radius:inherit;bottom:1em;content:"";display:block;left:1em;opacity:0;position:absolute;right:1em;top:1em;-webkit-transform:scale(1.5);transform:scale(1.5);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.img-container .image-overlay:after{border-left:none;border-right:none;bottom:1em;top:1em}.img-container .image-overlay:before{border-bottom:none;border-top:none;bottom:1em;top:1em}.img-container.rounded img{border-radius:var(--border-radius)}.img-container.thumbnail{background-color:var(--thumb-background);border:1px solid var(--border-color);padding:.25rem}.img-container.thumbnail .title{font-size:.9rem;line-height:1}.img-container .title+img,.img-container img+.title{margin-top:.25rem}.img-container.cover{background-size:cover;background:no-repeat 100% 100%}figure{margin:0 0 1rem}figure img{background-color:initial;display:block;height:auto;max-width:100%;position:relative;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;vertical-align:middle;width:100%}.use-blur-image img:not([alt]){-webkit-filter:blur(8px);filter:blur(8px)}');styleInject(":root{--step-list-number-color:#75757500}.dark-side{--step-list-number-color:#ffedbc}.step-list{counter-reset:li;list-style-type:none;margin:0 0 0 3em;padding:0}.step-list>li{border-left:1px solid var(--border-color);margin:.625rem;padding:0 .625rem;position:relative;vertical-align:top}.step-list>li:before{color:var(--step-list-number-color);content:counter(li);counter-increment:li;font-size:2rem;left:0;margin-left:-2em;position:absolute;text-align:right;top:.3125rem;width:1.8em}.custom-list-marker{list-style:none inside}.custom-list-marker li{padding-left:1.2em;position:relative}.custom-list-marker li:before{content:attr(data-marker);left:0;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.feed-list,.items-list{display:block;list-style:none inside;margin:0;padding:4px;position:relative}.feed-list .item,.feed-list>li,.items-list .item,.items-list>li{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-pack:center;cursor:default;display:-webkit-box;display:flex;flex-flow:column;height:56px;justify-content:center;overflow:hidden;padding:8px 16px;position:relative;vertical-align:middle}.feed-list .item .avatar,.feed-list>li .avatar,.items-list .item .avatar,.items-list>li .avatar{border-radius:50%;font-size:32px;height:42px;left:16px;line-height:42px;margin-top:-21px;position:absolute;top:50%;width:42px}.feed-list .item .second-action,.feed-list>li .second-action,.items-list .item .second-action,.items-list>li .second-action{cursor:pointer;font-size:24px;height:24px;line-height:24px;margin-top:-12px;position:absolute;right:16px;top:50%;width:24px}.feed-list .item .label,.feed-list .item .second-label,.feed-list>li .label,.feed-list>li .second-label,.items-list .item .label,.items-list .item .second-label,.items-list>li .label,.items-list>li .second-label{display:block}.feed-list .item .label,.feed-list>li .label,.items-list .item .label,.items-list>li .label{line-height:1}.feed-list .item .second-label,.feed-list>li .second-label,.items-list .item .second-label,.items-list>li .second-label{color:#989898;font-size:.9em;line-height:1}.feed-list .item .avatar~.label,.feed-list .item .avatar~.second-label,.feed-list>li .avatar~.label,.feed-list>li .avatar~.second-label,.items-list .item .avatar~.label,.items-list .item .avatar~.second-label,.items-list>li .avatar~.label,.items-list>li .avatar~.second-label{padding-left:56px}.feed-list .item+.item,.feed-list>li+li,.items-list .item+.item,.items-list>li+li{border-top:1px solid var(--border-color)}.feed-list .title{display:block;font-size:18px;font-weight:500;height:36px;line-height:36px;padding:0 16px}.feed-list .item+.title,.feed-list li+.title{margin-top:32px}.feed-list .title+.item,.feed-list .title+li,.feed-list li+.title{border-top:1px solid transparent}.feed-list .item,.feed-list>li{height:104px;justify-content:space-around;padding:16px 0}.feed-list .item .avatar,.feed-list>li .avatar{border-radius:0;height:72px;left:16px;margin-top:0;position:absolute;top:16px;width:96px}.feed-list .item .second-label,.feed-list>li .second-label{font-size:10px}.feed-list .item .avatar~.label,.feed-list .item .avatar~.second-label,.feed-list>li .avatar~.label,.feed-list>li .avatar~.second-label{margin-left:128px;margin-right:16px;padding-left:0}.feed-list .item .avatar.on-right,.feed-list>li .avatar.on-right{float:none;left:auto;right:16px}.feed-list .item .avatar.on-right~.label,.feed-list .item .avatar.on-right~.second-label,.feed-list>li .avatar.on-right~.label,.feed-list>li .avatar.on-right~.second-label{margin-left:16px;margin-right:128px}.group-list{border:1px solid var(--border-color);display:block;list-style:none inside;margin:0;position:relative}.group-list .item,.group-list>li{display:block;padding:4px 8px;position:relative}.group-list .item+.item,.group-list>li+li{border-top:1px solid var(--border-color)}.group-list.horizontal{-webkit-box-pack:justify;-webkit-box-align:center;align-items:center;display:-webkit-box;display:flex;justify-content:space-between}.group-list.horizontal .item,.group-list.horizontal>li{flex-basis:100%}.group-list.horizontal .item+.item,.group-list.horizontal>li+li{border-left:1px solid var(--border-color);border-top:none}.inline-list{list-style:none;margin-left:0;padding-left:0}.inline-list li{display:inline-block;margin-right:.625rem}.inline-list li:last-child{margin-right:0}.unstyled-list{list-style:none inside;margin-left:0}ol.decimal{list-style-type:decimal}ol.roman-upper{list-style-type:upper-roman}ol.roman-lower{list-style-type:lower-roman}ol.alpha-upper{list-style-type:upper-alpha}ol.alpha-lower{list-style-type:lower-alpha}ol.latin-upper{list-style-type:upper-latin}ol.latin-lower{list-style-type:lower-latin}.no-style{list-style-type:none}");styleInject(":root{--overlay-color:hsla(0,0%,100%,.5);--splash-color:#fff}.dark-side{--overlay-color:rgba(0,0,0,.5);--splash-color:#000}.overlay{background-color:var(--overlay-color);bottom:0;left:0;position:fixed;right:0;top:0;z-index:1040}.overlay.transparent{background-color:hsla(0,0%,100%,0)!important}.global-overlay{z-index:2000!important}.global-dialog{z-index:2001!important}.splashscreen{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-pack:center;-webkit-box-align:center;align-items:center;background:var(--splash-color);bottom:0;display:-webkit-box;display:flex;flex-flow:column;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:2147483647}");styleInject(".fixed-bottom,.fixed-top{left:0;position:fixed;right:0;width:100%}.fixed-top{bottom:auto;top:0}.fixed-bottom{bottom:0;top:auto}.pos-relative{position:relative!important}.pos-absolute{position:absolute!important}.pos-static{position:static!important}.pos-fixed{position:fixed!important}@media screen and (min-width:0){.pos-relative-fs{position:relative!important}.pos-absolute-fs{position:absolute!important}.pos-static-fs{position:static!important}.pos-fixed-fs{position:fixed!important}}@media screen and (min-width:360px){.pos-relative-xs{position:relative!important}.pos-absolute-xs{position:absolute!important}.pos-static-xs{position:static!important}.pos-fixed-xs{position:fixed!important}}@media screen and (min-width:576px){.pos-relative-sm{position:relative!important}.pos-absolute-sm{position:absolute!important}.pos-static-sm{position:static!important}.pos-fixed-sm{position:fixed!important}}@media screen and (min-width:640px){.pos-relative-ld{position:relative!important}.pos-absolute-ld{position:absolute!important}.pos-static-ld{position:static!important}.pos-fixed-ld{position:fixed!important}}@media screen and (min-width:768px){.pos-relative-md{position:relative!important}.pos-absolute-md{position:absolute!important}.pos-static-md{position:static!important}.pos-fixed-md{position:fixed!important}}@media screen and (min-width:992px){.pos-relative-lg{position:relative!important}.pos-absolute-lg{position:absolute!important}.pos-static-lg{position:static!important}.pos-fixed-lg{position:fixed!important}}@media screen and (min-width:1200px){.pos-relative-xl{position:relative!important}.pos-absolute-xl{position:absolute!important}.pos-static-xl{position:static!important}.pos-fixed-xl{position:fixed!important}}@media screen and (min-width:1452px){.pos-relative-xxl{position:relative!important}.pos-absolute-xxl{position:absolute!important}.pos-static-xxl{position:static!important}.pos-fixed-xxl{position:fixed!important}}@media screen and (min-width:2000px){.pos-relative-xxxl{position:relative!important}.pos-absolute-xxxl{position:absolute!important}.pos-static-xxxl{position:static!important}.pos-fixed-xxxl{position:fixed!important}}");styleInject(".put-n{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw{left:0!important;right:auto!important}.put-ne,.put-nw{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne{left:auto!important;right:0!important}.put-wn{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w,.put-wn{bottom:auto!important;left:0!important;right:auto!important}.put-w{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e,.put-en{bottom:auto!important;left:auto!important;right:0!important}.put-e{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s{left:0!important}.put-s,.put-sw{bottom:auto!important;right:auto!important;top:100%!important}.put-sw{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}.put-left{left:0!important;right:auto!important}.put-right{left:auto!important;right:0!important}.pos-top-left{left:0!important}.pos-top-center,.pos-top-left{bottom:auto!important;right:auto!important;top:0!important}.pos-top-center{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.pos-top-right{bottom:auto!important;left:auto!important;right:0!important;top:0!important}.pos-bottom-left{left:0!important}.pos-bottom-center,.pos-bottom-left{bottom:0!important;right:auto!important;top:auto!important}.pos-bottom-center{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.pos-bottom-right{bottom:0!important;left:auto!important;right:0!important;top:auto!important}.pos-left-center{bottom:auto!important;left:0!important;right:auto!important;top:50%!important}.pos-left-center,.pos-right-center{-webkit-transform:translateY(-50%);transform:translateY(-50%)}.pos-right-center{bottom:auto;left:auto;right:0;top:50%}.pos-center{bottom:auto!important;left:50%!important;right:auto!important;top:50%!important;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}@media screen and (min-width:0){.put-left-fs{left:0!important;right:auto!important}.put-right-fs{left:auto!important;right:0!important}.put-n-fs{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-fs{left:0!important;right:auto!important}.put-ne-fs,.put-nw-fs{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-fs{left:auto!important;right:0!important}.put-wn-fs{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-fs,.put-wn-fs{bottom:auto!important;left:0!important;right:auto!important}.put-w-fs{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-fs{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-fs{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-fs,.put-en-fs{bottom:auto!important;left:auto!important;right:0!important}.put-e-fs{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-fs{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-fs{left:0!important}.put-s-fs,.put-sw-fs{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-fs{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-fs{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:360px){.put-left-xs{left:0!important;right:auto!important}.put-right-xs{left:auto!important;right:0!important}.put-n-xs{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-xs{left:0!important;right:auto!important}.put-ne-xs,.put-nw-xs{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-xs{left:auto!important;right:0!important}.put-wn-xs{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-xs,.put-wn-xs{bottom:auto!important;left:0!important;right:auto!important}.put-w-xs{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-xs{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-xs{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-xs,.put-en-xs{bottom:auto!important;left:auto!important;right:0!important}.put-e-xs{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-xs{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-xs{left:0!important}.put-s-xs,.put-sw-xs{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-xs{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-xs{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:576px){.put-left-sm{left:0!important;right:auto!important}.put-right-sm{left:auto!important;right:0!important}.put-n-sm{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-sm{left:0!important;right:auto!important}.put-ne-sm,.put-nw-sm{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-sm{left:auto!important;right:0!important}.put-wn-sm{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-sm,.put-wn-sm{bottom:auto!important;left:0!important;right:auto!important}.put-w-sm{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-sm{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-sm{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-sm,.put-en-sm{bottom:auto!important;left:auto!important;right:0!important}.put-e-sm{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-sm{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-sm{left:0!important}.put-s-sm,.put-sw-sm{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-sm{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-sm{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:640px){.put-left-ld{left:0!important;right:auto!important}.put-right-ld{left:auto!important;right:0!important}.put-n-ld{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-ld{left:0!important;right:auto!important}.put-ne-ld,.put-nw-ld{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-ld{left:auto!important;right:0!important}.put-wn-ld{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-ld,.put-wn-ld{bottom:auto!important;left:0!important;right:auto!important}.put-w-ld{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-ld{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-ld{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-ld,.put-en-ld{bottom:auto!important;left:auto!important;right:0!important}.put-e-ld{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-ld{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-ld{left:0!important}.put-s-ld,.put-sw-ld{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-ld{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-ld{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:768px){.put-left-md{left:0!important;right:auto!important}.put-right-md{left:auto!important;right:0!important}.put-n-md{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-md{left:0!important;right:auto!important}.put-ne-md,.put-nw-md{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-md{left:auto!important;right:0!important}.put-wn-md{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-md,.put-wn-md{bottom:auto!important;left:0!important;right:auto!important}.put-w-md{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-md{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-md{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-md,.put-en-md{bottom:auto!important;left:auto!important;right:0!important}.put-e-md{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-md{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-md{left:0!important}.put-s-md,.put-sw-md{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-md{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-md{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:992px){.put-left-lg{left:0!important;right:auto!important}.put-right-lg{left:auto!important;right:0!important}.put-n-lg{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-lg{left:0!important;right:auto!important}.put-ne-lg,.put-nw-lg{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-lg{left:auto!important;right:0!important}.put-wn-lg{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-lg,.put-wn-lg{bottom:auto!important;left:0!important;right:auto!important}.put-w-lg{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-lg{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-lg{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-lg,.put-en-lg{bottom:auto!important;left:auto!important;right:0!important}.put-e-lg{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-lg{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-lg{left:0!important}.put-s-lg,.put-sw-lg{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-lg{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-lg{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:1200px){.put-left-xl{left:0!important;right:auto!important}.put-right-xl{left:auto!important;right:0!important}.put-n-xl{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-xl{left:0!important;right:auto!important}.put-ne-xl,.put-nw-xl{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-xl{left:auto!important;right:0!important}.put-wn-xl{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-xl,.put-wn-xl{bottom:auto!important;left:0!important;right:auto!important}.put-w-xl{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-xl{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-xl{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-xl,.put-en-xl{bottom:auto!important;left:auto!important;right:0!important}.put-e-xl{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-xl{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-xl{left:0!important}.put-s-xl,.put-sw-xl{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-xl{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-xl{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:1452px){.put-left-xxl{left:0!important;right:auto!important}.put-right-xxl{left:auto!important;right:0!important}.put-n-xxl{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-xxl{left:0!important;right:auto!important}.put-ne-xxl,.put-nw-xxl{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-xxl{left:auto!important;right:0!important}.put-wn-xxl{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-xxl,.put-wn-xxl{bottom:auto!important;left:0!important;right:auto!important}.put-w-xxl{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-xxl{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-xxl{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-xxl,.put-en-xxl{bottom:auto!important;left:auto!important;right:0!important}.put-e-xxl{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-xxl{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-xxl{left:0!important}.put-s-xxl,.put-sw-xxl{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-xxl{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-xxl{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}@media screen and (min-width:2000px){.put-left-xxxl{left:0!important;right:auto!important}.put-right-xxxl{left:auto!important;right:0!important}.put-n-xxxl{bottom:auto!important;left:50%!important;right:auto!important;top:0!important;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}.put-nw-xxxl{left:0!important;right:auto!important}.put-ne-xxxl,.put-nw-xxxl{bottom:auto!important;top:0!important;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.put-ne-xxxl{left:auto!important;right:0!important}.put-wn-xxxl{top:0!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-w-xxxl,.put-wn-xxxl{bottom:auto!important;left:0!important;right:auto!important}.put-w-xxxl{top:50%!important;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}.put-ws-xxxl{bottom:0!important;left:0!important;right:auto!important;top:auto!important;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.put-en-xxxl{top:0!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-e-xxxl,.put-en-xxxl{bottom:auto!important;left:auto!important;right:0!important}.put-e-xxxl{top:50%!important;-webkit-transform:translateX(100%) translateY(-50%);transform:translateX(100%) translateY(-50%)}.put-es-xxxl{bottom:0!important;left:auto!important;right:0!important;top:auto!important;-webkit-transform:translateX(100%);transform:translateX(100%)}.put-s-xxxl{left:0!important}.put-s-xxxl,.put-sw-xxxl{bottom:auto!important;right:auto!important;top:100%!important}.put-sw-xxxl{left:50%!important;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.put-se-xxxl{bottom:auto!important;left:auto!important;right:0!important;top:100%!important}}");styleInject("@media print{.d-none-print{display:none!important}.d-block-print{display:block!important}.d-inline-print{display:inline!important}.d-inline-block-print{display:inline-block!important}.d-table-print{display:table!important}.d-table-row-print{display:table-row!important}.d-table-cell-print{display:table-cell!important}.d-flex-print{display:-webkit-box!important;display:flex!important}.d-inline-flex-print{display:-webkit-inline-box!important;display:inline-flex!important}.visible-print{visibility:visible!important}.no-visible-print{visibility:hidden!important}.overflow-print{overflow:auto!important}.no-overflow-print{overflow:hidden!important}.scroll-print{overflow:scroll!important}.scroll-x-print{overflow-x:auto!important}.scroll-y-print{overflow-y:auto!important}.no-scroll-print{overflow:hidden!important}.no-scroll-x-print{overflow-x:hidden!important}.no-scroll-y-print{overflow-y:hidden!important}.wrap-print{white-space:normal!important}.no-wrap-print{white-space:nowrap!important}}");styleInject(":root{--shadow-color:#d6d6d6}.dark-side{--shadow-color:#1b1c1f}.no-shadow{-webkit-box-shadow:none!important;box-shadow:none!important}.no-shadow-text{text-shadow:none!important}.simple-shadow{-webkit-box-shadow:4px 4px 10px 0 var(--shadow-color);box-shadow:4px 4px 10px 0 var(--shadow-color)}.drop-shadow{-webkit-box-shadow:2px 2px 5px 0 var(--shadow-color);box-shadow:2px 2px 5px 0 var(--shadow-color)}.win-shadow{-webkit-box-shadow:0 0 5px 0 var(--shadow-color);box-shadow:0 0 5px 0 var(--shadow-color)}.shadow-1{-webkit-box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26)}.shadow-2{-webkit-box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2);box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2)}.shadow-3{-webkit-box-shadow:0 17px 50px 0 rgba(0,0,0,.19),0 12px 15px 0 rgba(0,0,0,.24);box-shadow:0 17px 50px 0 rgba(0,0,0,.19),0 12px 15px 0 rgba(0,0,0,.24)}.shadow-4{-webkit-box-shadow:0 25px 55px 0 rgba(0,0,0,.21),0 16px 28px 0 rgba(0,0,0,.22);box-shadow:0 25px 55px 0 rgba(0,0,0,.21),0 16px 28px 0 rgba(0,0,0,.22)}.shadow-5{-webkit-box-shadow:0 40px 77px 0 rgba(0,0,0,.22),0 27px 24px 0 rgba(0,0,0,.2);box-shadow:0 40px 77px 0 rgba(0,0,0,.22),0 27px 24px 0 rgba(0,0,0,.2)}.shadowed{-webkit-box-shadow:2px 2px 5px 0 rgba(0,0,0,.4)!important;box-shadow:2px 2px 5px 0 rgba(0,0,0,.4)!important}.shadowed:focus,.shadowed:hover{-webkit-box-shadow:2px 2px 5px 0 rgba(0,0,0,.8)!important;box-shadow:2px 2px 5px 0 rgba(0,0,0,.8)!important}.shadowed:active{-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-transform:translate(1px,1px);transform:translate(1px,1px)}");styleInject(".w-auto{width:auto!important}.h-auto{height:auto!important}.w-fs{width:0!important}.w-xs{width:360px!important}.w-sm{width:576px!important}.w-ld{width:640px!important}.w-md{width:768px!important}.w-lg{width:992px!important}.w-xl{width:1200px!important}.w-xxl{width:1452px!important}.w-xxxl{width:2000px!important}.h-vh-25{height:25vh!important}.h-vw-25{height:25vw!important}.w-vh-25{width:25vh!important}.w-vw-25{width:25vw!important}.h-25{height:25%!important}.w-25{width:25%!important}.mh-25{max-height:25%!important}.mw-25{max-width:25%!important}.h-vh-33{height:33vh!important}.h-vw-33{height:33vw!important}.w-vh-33{width:33vh!important}.w-vw-33{width:33vw!important}.h-33{height:33%!important}.w-33{width:33%!important}.mh-33{max-height:33%!important}.mw-33{max-width:33%!important}.h-vh-50{height:50vh!important}.h-vw-50{height:50vw!important}.w-vh-50{width:50vh!important}.w-vw-50{width:50vw!important}.h-50{height:50%!important}.w-50{width:50%!important}.mh-50{max-height:50%!important}.mw-50{max-width:50%!important}.h-vh-75{height:75vh!important}.h-vw-75{height:75vw!important}.w-vh-75{width:75vh!important}.w-vw-75{width:75vw!important}.h-75{height:75%!important}.w-75{width:75%!important}.mh-75{max-height:75%!important}.mw-75{max-width:75%!important}.h-vh-100{height:100vh!important}.h-vw-100{height:100vw!important}.w-vh-100{width:100vh!important}.w-vw-100{width:100vw!important}.h-100{height:100%!important}.w-100{width:100%!important}.mh-100{max-height:100%!important}.mw-100{max-width:100%!important}@media screen and (min-width:0){.w-auto-fs{width:auto!important}.h-auto-fs{height:auto!important}.h-vh-25-fs{height:25vh!important}.h-vw-25-fs{height:25vw!important}.w-vh-25-fs{width:25vh!important}.w-vw-25-fs{width:25vw!important}.h-25-fs{height:25%!important}.w-25-fs{width:25%!important}.mh-25-fs{max-height:25%!important}.mw-25-fs{max-width:25%!important}.h-vh-33-fs{height:33vh!important}.h-vw-33-fs{height:33vw!important}.w-vh-33-fs{width:33vh!important}.w-vw-33-fs{width:33vw!important}.h-33-fs{height:33%!important}.w-33-fs{width:33%!important}.mh-33-fs{max-height:33%!important}.mw-33-fs{max-width:33%!important}.h-vh-50-fs{height:50vh!important}.h-vw-50-fs{height:50vw!important}.w-vh-50-fs{width:50vh!important}.w-vw-50-fs{width:50vw!important}.h-50-fs{height:50%!important}.w-50-fs{width:50%!important}.mh-50-fs{max-height:50%!important}.mw-50-fs{max-width:50%!important}.h-vh-75-fs{height:75vh!important}.h-vw-75-fs{height:75vw!important}.w-vh-75-fs{width:75vh!important}.w-vw-75-fs{width:75vw!important}.h-75-fs{height:75%!important}.w-75-fs{width:75%!important}.mh-75-fs{max-height:75%!important}.mw-75-fs{max-width:75%!important}.h-vh-100-fs{height:100vh!important}.h-vw-100-fs{height:100vw!important}.w-vh-100-fs{width:100vh!important}.w-vw-100-fs{width:100vw!important}.h-100-fs{height:100%!important}.w-100-fs{width:100%!important}.mh-100-fs{max-height:100%!important}.mw-100-fs{max-width:100%!important}}@media screen and (min-width:360px){.w-auto-xs{width:auto!important}.h-auto-xs{height:auto!important}.h-vh-25-xs{height:25vh!important}.h-vw-25-xs{height:25vw!important}.w-vh-25-xs{width:25vh!important}.w-vw-25-xs{width:25vw!important}.h-25-xs{height:25%!important}.w-25-xs{width:25%!important}.mh-25-xs{max-height:25%!important}.mw-25-xs{max-width:25%!important}.h-vh-33-xs{height:33vh!important}.h-vw-33-xs{height:33vw!important}.w-vh-33-xs{width:33vh!important}.w-vw-33-xs{width:33vw!important}.h-33-xs{height:33%!important}.w-33-xs{width:33%!important}.mh-33-xs{max-height:33%!important}.mw-33-xs{max-width:33%!important}.h-vh-50-xs{height:50vh!important}.h-vw-50-xs{height:50vw!important}.w-vh-50-xs{width:50vh!important}.w-vw-50-xs{width:50vw!important}.h-50-xs{height:50%!important}.w-50-xs{width:50%!important}.mh-50-xs{max-height:50%!important}.mw-50-xs{max-width:50%!important}.h-vh-75-xs{height:75vh!important}.h-vw-75-xs{height:75vw!important}.w-vh-75-xs{width:75vh!important}.w-vw-75-xs{width:75vw!important}.h-75-xs{height:75%!important}.w-75-xs{width:75%!important}.mh-75-xs{max-height:75%!important}.mw-75-xs{max-width:75%!important}.h-vh-100-xs{height:100vh!important}.h-vw-100-xs{height:100vw!important}.w-vh-100-xs{width:100vh!important}.w-vw-100-xs{width:100vw!important}.h-100-xs{height:100%!important}.w-100-xs{width:100%!important}.mh-100-xs{max-height:100%!important}.mw-100-xs{max-width:100%!important}}@media screen and (min-width:576px){.w-auto-sm{width:auto!important}.h-auto-sm{height:auto!important}.h-vh-25-sm{height:25vh!important}.h-vw-25-sm{height:25vw!important}.w-vh-25-sm{width:25vh!important}.w-vw-25-sm{width:25vw!important}.h-25-sm{height:25%!important}.w-25-sm{width:25%!important}.mh-25-sm{max-height:25%!important}.mw-25-sm{max-width:25%!important}.h-vh-33-sm{height:33vh!important}.h-vw-33-sm{height:33vw!important}.w-vh-33-sm{width:33vh!important}.w-vw-33-sm{width:33vw!important}.h-33-sm{height:33%!important}.w-33-sm{width:33%!important}.mh-33-sm{max-height:33%!important}.mw-33-sm{max-width:33%!important}.h-vh-50-sm{height:50vh!important}.h-vw-50-sm{height:50vw!important}.w-vh-50-sm{width:50vh!important}.w-vw-50-sm{width:50vw!important}.h-50-sm{height:50%!important}.w-50-sm{width:50%!important}.mh-50-sm{max-height:50%!important}.mw-50-sm{max-width:50%!important}.h-vh-75-sm{height:75vh!important}.h-vw-75-sm{height:75vw!important}.w-vh-75-sm{width:75vh!important}.w-vw-75-sm{width:75vw!important}.h-75-sm{height:75%!important}.w-75-sm{width:75%!important}.mh-75-sm{max-height:75%!important}.mw-75-sm{max-width:75%!important}.h-vh-100-sm{height:100vh!important}.h-vw-100-sm{height:100vw!important}.w-vh-100-sm{width:100vh!important}.w-vw-100-sm{width:100vw!important}.h-100-sm{height:100%!important}.w-100-sm{width:100%!important}.mh-100-sm{max-height:100%!important}.mw-100-sm{max-width:100%!important}}@media screen and (min-width:640px){.w-auto-ld{width:auto!important}.h-auto-ld{height:auto!important}.h-vh-25-ld{height:25vh!important}.h-vw-25-ld{height:25vw!important}.w-vh-25-ld{width:25vh!important}.w-vw-25-ld{width:25vw!important}.h-25-ld{height:25%!important}.w-25-ld{width:25%!important}.mh-25-ld{max-height:25%!important}.mw-25-ld{max-width:25%!important}.h-vh-33-ld{height:33vh!important}.h-vw-33-ld{height:33vw!important}.w-vh-33-ld{width:33vh!important}.w-vw-33-ld{width:33vw!important}.h-33-ld{height:33%!important}.w-33-ld{width:33%!important}.mh-33-ld{max-height:33%!important}.mw-33-ld{max-width:33%!important}.h-vh-50-ld{height:50vh!important}.h-vw-50-ld{height:50vw!important}.w-vh-50-ld{width:50vh!important}.w-vw-50-ld{width:50vw!important}.h-50-ld{height:50%!important}.w-50-ld{width:50%!important}.mh-50-ld{max-height:50%!important}.mw-50-ld{max-width:50%!important}.h-vh-75-ld{height:75vh!important}.h-vw-75-ld{height:75vw!important}.w-vh-75-ld{width:75vh!important}.w-vw-75-ld{width:75vw!important}.h-75-ld{height:75%!important}.w-75-ld{width:75%!important}.mh-75-ld{max-height:75%!important}.mw-75-ld{max-width:75%!important}.h-vh-100-ld{height:100vh!important}.h-vw-100-ld{height:100vw!important}.w-vh-100-ld{width:100vh!important}.w-vw-100-ld{width:100vw!important}.h-100-ld{height:100%!important}.w-100-ld{width:100%!important}.mh-100-ld{max-height:100%!important}.mw-100-ld{max-width:100%!important}}@media screen and (min-width:768px){.w-auto-md{width:auto!important}.h-auto-md{height:auto!important}.h-vh-25-md{height:25vh!important}.h-vw-25-md{height:25vw!important}.w-vh-25-md{width:25vh!important}.w-vw-25-md{width:25vw!important}.h-25-md{height:25%!important}.w-25-md{width:25%!important}.mh-25-md{max-height:25%!important}.mw-25-md{max-width:25%!important}.h-vh-33-md{height:33vh!important}.h-vw-33-md{height:33vw!important}.w-vh-33-md{width:33vh!important}.w-vw-33-md{width:33vw!important}.h-33-md{height:33%!important}.w-33-md{width:33%!important}.mh-33-md{max-height:33%!important}.mw-33-md{max-width:33%!important}.h-vh-50-md{height:50vh!important}.h-vw-50-md{height:50vw!important}.w-vh-50-md{width:50vh!important}.w-vw-50-md{width:50vw!important}.h-50-md{height:50%!important}.w-50-md{width:50%!important}.mh-50-md{max-height:50%!important}.mw-50-md{max-width:50%!important}.h-vh-75-md{height:75vh!important}.h-vw-75-md{height:75vw!important}.w-vh-75-md{width:75vh!important}.w-vw-75-md{width:75vw!important}.h-75-md{height:75%!important}.w-75-md{width:75%!important}.mh-75-md{max-height:75%!important}.mw-75-md{max-width:75%!important}.h-vh-100-md{height:100vh!important}.h-vw-100-md{height:100vw!important}.w-vh-100-md{width:100vh!important}.w-vw-100-md{width:100vw!important}.h-100-md{height:100%!important}.w-100-md{width:100%!important}.mh-100-md{max-height:100%!important}.mw-100-md{max-width:100%!important}}@media screen and (min-width:992px){.w-auto-lg{width:auto!important}.h-auto-lg{height:auto!important}.h-vh-25-lg{height:25vh!important}.h-vw-25-lg{height:25vw!important}.w-vh-25-lg{width:25vh!important}.w-vw-25-lg{width:25vw!important}.h-25-lg{height:25%!important}.w-25-lg{width:25%!important}.mh-25-lg{max-height:25%!important}.mw-25-lg{max-width:25%!important}.h-vh-33-lg{height:33vh!important}.h-vw-33-lg{height:33vw!important}.w-vh-33-lg{width:33vh!important}.w-vw-33-lg{width:33vw!important}.h-33-lg{height:33%!important}.w-33-lg{width:33%!important}.mh-33-lg{max-height:33%!important}.mw-33-lg{max-width:33%!important}.h-vh-50-lg{height:50vh!important}.h-vw-50-lg{height:50vw!important}.w-vh-50-lg{width:50vh!important}.w-vw-50-lg{width:50vw!important}.h-50-lg{height:50%!important}.w-50-lg{width:50%!important}.mh-50-lg{max-height:50%!important}.mw-50-lg{max-width:50%!important}.h-vh-75-lg{height:75vh!important}.h-vw-75-lg{height:75vw!important}.w-vh-75-lg{width:75vh!important}.w-vw-75-lg{width:75vw!important}.h-75-lg{height:75%!important}.w-75-lg{width:75%!important}.mh-75-lg{max-height:75%!important}.mw-75-lg{max-width:75%!important}.h-vh-100-lg{height:100vh!important}.h-vw-100-lg{height:100vw!important}.w-vh-100-lg{width:100vh!important}.w-vw-100-lg{width:100vw!important}.h-100-lg{height:100%!important}.w-100-lg{width:100%!important}.mh-100-lg{max-height:100%!important}.mw-100-lg{max-width:100%!important}}@media screen and (min-width:1200px){.w-auto-xl{width:auto!important}.h-auto-xl{height:auto!important}.h-vh-25-xl{height:25vh!important}.h-vw-25-xl{height:25vw!important}.w-vh-25-xl{width:25vh!important}.w-vw-25-xl{width:25vw!important}.h-25-xl{height:25%!important}.w-25-xl{width:25%!important}.mh-25-xl{max-height:25%!important}.mw-25-xl{max-width:25%!important}.h-vh-33-xl{height:33vh!important}.h-vw-33-xl{height:33vw!important}.w-vh-33-xl{width:33vh!important}.w-vw-33-xl{width:33vw!important}.h-33-xl{height:33%!important}.w-33-xl{width:33%!important}.mh-33-xl{max-height:33%!important}.mw-33-xl{max-width:33%!important}.h-vh-50-xl{height:50vh!important}.h-vw-50-xl{height:50vw!important}.w-vh-50-xl{width:50vh!important}.w-vw-50-xl{width:50vw!important}.h-50-xl{height:50%!important}.w-50-xl{width:50%!important}.mh-50-xl{max-height:50%!important}.mw-50-xl{max-width:50%!important}.h-vh-75-xl{height:75vh!important}.h-vw-75-xl{height:75vw!important}.w-vh-75-xl{width:75vh!important}.w-vw-75-xl{width:75vw!important}.h-75-xl{height:75%!important}.w-75-xl{width:75%!important}.mh-75-xl{max-height:75%!important}.mw-75-xl{max-width:75%!important}.h-vh-100-xl{height:100vh!important}.h-vw-100-xl{height:100vw!important}.w-vh-100-xl{width:100vh!important}.w-vw-100-xl{width:100vw!important}.h-100-xl{height:100%!important}.w-100-xl{width:100%!important}.mh-100-xl{max-height:100%!important}.mw-100-xl{max-width:100%!important}}@media screen and (min-width:1452px){.w-auto-xxl{width:auto!important}.h-auto-xxl{height:auto!important}.h-vh-25-xxl{height:25vh!important}.h-vw-25-xxl{height:25vw!important}.w-vh-25-xxl{width:25vh!important}.w-vw-25-xxl{width:25vw!important}.h-25-xxl{height:25%!important}.w-25-xxl{width:25%!important}.mh-25-xxl{max-height:25%!important}.mw-25-xxl{max-width:25%!important}.h-vh-33-xxl{height:33vh!important}.h-vw-33-xxl{height:33vw!important}.w-vh-33-xxl{width:33vh!important}.w-vw-33-xxl{width:33vw!important}.h-33-xxl{height:33%!important}.w-33-xxl{width:33%!important}.mh-33-xxl{max-height:33%!important}.mw-33-xxl{max-width:33%!important}.h-vh-50-xxl{height:50vh!important}.h-vw-50-xxl{height:50vw!important}.w-vh-50-xxl{width:50vh!important}.w-vw-50-xxl{width:50vw!important}.h-50-xxl{height:50%!important}.w-50-xxl{width:50%!important}.mh-50-xxl{max-height:50%!important}.mw-50-xxl{max-width:50%!important}.h-vh-75-xxl{height:75vh!important}.h-vw-75-xxl{height:75vw!important}.w-vh-75-xxl{width:75vh!important}.w-vw-75-xxl{width:75vw!important}.h-75-xxl{height:75%!important}.w-75-xxl{width:75%!important}.mh-75-xxl{max-height:75%!important}.mw-75-xxl{max-width:75%!important}.h-vh-100-xxl{height:100vh!important}.h-vw-100-xxl{height:100vw!important}.w-vh-100-xxl{width:100vh!important}.w-vw-100-xxl{width:100vw!important}.h-100-xxl{height:100%!important}.w-100-xxl{width:100%!important}.mh-100-xxl{max-height:100%!important}.mw-100-xxl{max-width:100%!important}}@media screen and (min-width:2000px){.w-auto-xxxl{width:auto!important}.h-auto-xxxl{height:auto!important}.h-vh-25-xxxl{height:25vh!important}.h-vw-25-xxxl{height:25vw!important}.w-vh-25-xxxl{width:25vh!important}.w-vw-25-xxxl{width:25vw!important}.h-25-xxxl{height:25%!important}.w-25-xxxl{width:25%!important}.mh-25-xxxl{max-height:25%!important}.mw-25-xxxl{max-width:25%!important}.h-vh-33-xxxl{height:33vh!important}.h-vw-33-xxxl{height:33vw!important}.w-vh-33-xxxl{width:33vh!important}.w-vw-33-xxxl{width:33vw!important}.h-33-xxxl{height:33%!important}.w-33-xxxl{width:33%!important}.mh-33-xxxl{max-height:33%!important}.mw-33-xxxl{max-width:33%!important}.h-vh-50-xxxl{height:50vh!important}.h-vw-50-xxxl{height:50vw!important}.w-vh-50-xxxl{width:50vh!important}.w-vw-50-xxxl{width:50vw!important}.h-50-xxxl{height:50%!important}.w-50-xxxl{width:50%!important}.mh-50-xxxl{max-height:50%!important}.mw-50-xxxl{max-width:50%!important}.h-vh-75-xxxl{height:75vh!important}.h-vw-75-xxxl{height:75vw!important}.w-vh-75-xxxl{width:75vh!important}.w-vw-75-xxxl{width:75vw!important}.h-75-xxxl{height:75%!important}.w-75-xxxl{width:75%!important}.mh-75-xxxl{max-height:75%!important}.mw-75-xxxl{max-width:75%!important}.h-vh-100-xxxl{height:100vh!important}.h-vw-100-xxxl{height:100vw!important}.w-vh-100-xxxl{width:100vh!important}.w-vw-100-xxxl{width:100vw!important}.h-100-xxxl{height:100%!important}.w-100-xxxl{width:100%!important}.mh-100-xxxl{max-height:100%!important}.mw-100-xxxl{max-width:100%!important}}");styleInject(".mx-auto{margin-right:auto!important}.mx-auto,.my-auto{margin-left:auto!important}.my-auto{margin-top:auto!important}.ml-auto{margin-left:auto!important}.mr-auto{margin-right:auto!important}.mt-auto{margin-top:auto!important}.mb-auto{margin-bottom:auto!important}.p-0{padding:0!important}.pl-0{padding-left:0!important}.pr-0{padding-right:0!important}.pt-0{padding-top:0!important}.pb-0{padding-bottom:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.m-0{margin:0!important}.ml-0{margin-left:0!important}.mr-0{margin-right:0!important}.mt-0{margin-top:0!important}.mb-0{margin-bottom:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.p-1{padding:4px!important}.pr-1{padding-right:4px!important}.pl-1{padding-left:4px!important}.pt-1{padding-top:4px!important}.pb-1{padding-bottom:4px!important}.px-1{padding-left:4px!important;padding-right:4px!important}.py-1{padding-bottom:4px!important;padding-top:4px!important}.m-1{margin:4px!important}.mr-1{margin-right:4px!important}.ml-1{margin-left:4px!important}.mt-1{margin-top:4px!important}.mb-1{margin-bottom:4px!important}.mx-1{margin-left:4px!important;margin-right:4px!important}.my-1{margin-bottom:4px!important;margin-top:4px!important}.mr-1-minus{margin-right:-4px!important}.ml-1-minus{margin-left:-4px!important}.mt-1-minus{margin-top:-4px!important}.mb-1-minus{margin-bottom:-4px!important}.p-2{padding:8px!important}.pr-2{padding-right:8px!important}.pl-2{padding-left:8px!important}.pt-2{padding-top:8px!important}.pb-2{padding-bottom:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.py-2{padding-bottom:8px!important;padding-top:8px!important}.m-2{margin:8px!important}.mr-2{margin-right:8px!important}.ml-2{margin-left:8px!important}.mt-2{margin-top:8px!important}.mb-2{margin-bottom:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.my-2{margin-bottom:8px!important;margin-top:8px!important}.mr-2-minus{margin-right:-8px!important}.ml-2-minus{margin-left:-8px!important}.mt-2-minus{margin-top:-8px!important}.mb-2-minus{margin-bottom:-8px!important}.p-3{padding:12px!important}.pr-3{padding-right:12px!important}.pl-3{padding-left:12px!important}.pt-3{padding-top:12px!important}.pb-3{padding-bottom:12px!important}.px-3{padding-left:12px!important;padding-right:12px!important}.py-3{padding-bottom:12px!important;padding-top:12px!important}.m-3{margin:12px!important}.mr-3{margin-right:12px!important}.ml-3{margin-left:12px!important}.mt-3{margin-top:12px!important}.mb-3{margin-bottom:12px!important}.mx-3{margin-left:12px!important;margin-right:12px!important}.my-3{margin-bottom:12px!important;margin-top:12px!important}.mr-3-minus{margin-right:-12px!important}.ml-3-minus{margin-left:-12px!important}.mt-3-minus{margin-top:-12px!important}.mb-3-minus{margin-bottom:-12px!important}.p-4{padding:16px!important}.pr-4{padding-right:16px!important}.pl-4{padding-left:16px!important}.pt-4{padding-top:16px!important}.pb-4{padding-bottom:16px!important}.px-4{padding-left:16px!important;padding-right:16px!important}.py-4{padding-bottom:16px!important;padding-top:16px!important}.m-4{margin:16px!important}.mr-4{margin-right:16px!important}.ml-4{margin-left:16px!important}.mt-4{margin-top:16px!important}.mb-4{margin-bottom:16px!important}.mx-4{margin-left:16px!important;margin-right:16px!important}.my-4{margin-bottom:16px!important;margin-top:16px!important}.mr-4-minus{margin-right:-16px!important}.ml-4-minus{margin-left:-16px!important}.mt-4-minus{margin-top:-16px!important}.mb-4-minus{margin-bottom:-16px!important}.p-5{padding:20px!important}.pr-5{padding-right:20px!important}.pl-5{padding-left:20px!important}.pt-5{padding-top:20px!important}.pb-5{padding-bottom:20px!important}.px-5{padding-left:20px!important;padding-right:20px!important}.py-5{padding-bottom:20px!important;padding-top:20px!important}.m-5{margin:20px!important}.mr-5{margin-right:20px!important}.ml-5{margin-left:20px!important}.mt-5{margin-top:20px!important}.mb-5{margin-bottom:20px!important}.mx-5{margin-left:20px!important;margin-right:20px!important}.my-5{margin-bottom:20px!important;margin-top:20px!important}.mr-5-minus{margin-right:-20px!important}.ml-5-minus{margin-left:-20px!important}.mt-5-minus{margin-top:-20px!important}.mb-5-minus{margin-bottom:-20px!important}.p-6{padding:24px!important}.pr-6{padding-right:24px!important}.pl-6{padding-left:24px!important}.pt-6{padding-top:24px!important}.pb-6{padding-bottom:24px!important}.px-6{padding-left:24px!important;padding-right:24px!important}.py-6{padding-bottom:24px!important;padding-top:24px!important}.m-6{margin:24px!important}.mr-6{margin-right:24px!important}.ml-6{margin-left:24px!important}.mt-6{margin-top:24px!important}.mb-6{margin-bottom:24px!important}.mx-6{margin-left:24px!important;margin-right:24px!important}.my-6{margin-bottom:24px!important;margin-top:24px!important}.mr-6-minus{margin-right:-24px!important}.ml-6-minus{margin-left:-24px!important}.mt-6-minus{margin-top:-24px!important}.mb-6-minus{margin-bottom:-24px!important}.p-7{padding:28px!important}.pr-7{padding-right:28px!important}.pl-7{padding-left:28px!important}.pt-7{padding-top:28px!important}.pb-7{padding-bottom:28px!important}.px-7{padding-left:28px!important;padding-right:28px!important}.py-7{padding-bottom:28px!important;padding-top:28px!important}.m-7{margin:28px!important}.mr-7{margin-right:28px!important}.ml-7{margin-left:28px!important}.mt-7{margin-top:28px!important}.mb-7{margin-bottom:28px!important}.mx-7{margin-left:28px!important;margin-right:28px!important}.my-7{margin-bottom:28px!important;margin-top:28px!important}.mr-7-minus{margin-right:-28px!important}.ml-7-minus{margin-left:-28px!important}.mt-7-minus{margin-top:-28px!important}.mb-7-minus{margin-bottom:-28px!important}.p-8{padding:32px!important}.pr-8{padding-right:32px!important}.pl-8{padding-left:32px!important}.pt-8{padding-top:32px!important}.pb-8{padding-bottom:32px!important}.px-8{padding-left:32px!important;padding-right:32px!important}.py-8{padding-bottom:32px!important;padding-top:32px!important}.m-8{margin:32px!important}.mr-8{margin-right:32px!important}.ml-8{margin-left:32px!important}.mt-8{margin-top:32px!important}.mb-8{margin-bottom:32px!important}.mx-8{margin-left:32px!important;margin-right:32px!important}.my-8{margin-bottom:32px!important;margin-top:32px!important}.mr-8-minus{margin-right:-32px!important}.ml-8-minus{margin-left:-32px!important}.mt-8-minus{margin-top:-32px!important}.mb-8-minus{margin-bottom:-32px!important}.p-9{padding:36px!important}.pr-9{padding-right:36px!important}.pl-9{padding-left:36px!important}.pt-9{padding-top:36px!important}.pb-9{padding-bottom:36px!important}.px-9{padding-left:36px!important;padding-right:36px!important}.py-9{padding-bottom:36px!important;padding-top:36px!important}.m-9{margin:36px!important}.mr-9{margin-right:36px!important}.ml-9{margin-left:36px!important}.mt-9{margin-top:36px!important}.mb-9{margin-bottom:36px!important}.mx-9{margin-left:36px!important;margin-right:36px!important}.my-9{margin-bottom:36px!important;margin-top:36px!important}.mr-9-minus{margin-right:-36px!important}.ml-9-minus{margin-left:-36px!important}.mt-9-minus{margin-top:-36px!important}.mb-9-minus{margin-bottom:-36px!important}.p-10{padding:40px!important}.pr-10{padding-right:40px!important}.pl-10{padding-left:40px!important}.pt-10{padding-top:40px!important}.pb-10{padding-bottom:40px!important}.px-10{padding-left:40px!important;padding-right:40px!important}.py-10{padding-bottom:40px!important;padding-top:40px!important}.m-10{margin:40px!important}.mr-10{margin-right:40px!important}.ml-10{margin-left:40px!important}.mt-10{margin-top:40px!important}.mb-10{margin-bottom:40px!important}.mx-10{margin-left:40px!important;margin-right:40px!important}.my-10{margin-bottom:40px!important;margin-top:40px!important}.mr-10-minus{margin-right:-40px!important}.ml-10-minus{margin-left:-40px!important}.mt-10-minus{margin-top:-40px!important}.mb-10-minus{margin-bottom:-40px!important}.p-11{padding:44px!important}.pr-11{padding-right:44px!important}.pl-11{padding-left:44px!important}.pt-11{padding-top:44px!important}.pb-11{padding-bottom:44px!important}.px-11{padding-left:44px!important;padding-right:44px!important}.py-11{padding-bottom:44px!important;padding-top:44px!important}.m-11{margin:44px!important}.mr-11{margin-right:44px!important}.ml-11{margin-left:44px!important}.mt-11{margin-top:44px!important}.mb-11{margin-bottom:44px!important}.mx-11{margin-left:44px!important;margin-right:44px!important}.my-11{margin-bottom:44px!important;margin-top:44px!important}.mr-11-minus{margin-right:-44px!important}.ml-11-minus{margin-left:-44px!important}.mt-11-minus{margin-top:-44px!important}.mb-11-minus{margin-bottom:-44px!important}.p-12{padding:48px!important}.pr-12{padding-right:48px!important}.pl-12{padding-left:48px!important}.pt-12{padding-top:48px!important}.pb-12{padding-bottom:48px!important}.px-12{padding-left:48px!important;padding-right:48px!important}.py-12{padding-bottom:48px!important;padding-top:48px!important}.m-12{margin:48px!important}.mr-12{margin-right:48px!important}.ml-12{margin-left:48px!important}.mt-12{margin-top:48px!important}.mb-12{margin-bottom:48px!important}.mx-12{margin-left:48px!important;margin-right:48px!important}.my-12{margin-bottom:48px!important;margin-top:48px!important}.mr-12-minus{margin-right:-48px!important}.ml-12-minus{margin-left:-48px!important}.mt-12-minus{margin-top:-48px!important}.mb-12-minus{margin-bottom:-48px!important}.p-13{padding:52px!important}.pr-13{padding-right:52px!important}.pl-13{padding-left:52px!important}.pt-13{padding-top:52px!important}.pb-13{padding-bottom:52px!important}.px-13{padding-left:52px!important;padding-right:52px!important}.py-13{padding-bottom:52px!important;padding-top:52px!important}.m-13{margin:52px!important}.mr-13{margin-right:52px!important}.ml-13{margin-left:52px!important}.mt-13{margin-top:52px!important}.mb-13{margin-bottom:52px!important}.mx-13{margin-left:52px!important;margin-right:52px!important}.my-13{margin-bottom:52px!important;margin-top:52px!important}.mr-13-minus{margin-right:-52px!important}.ml-13-minus{margin-left:-52px!important}.mt-13-minus{margin-top:-52px!important}.mb-13-minus{margin-bottom:-52px!important}.p-14{padding:56px!important}.pr-14{padding-right:56px!important}.pl-14{padding-left:56px!important}.pt-14{padding-top:56px!important}.pb-14{padding-bottom:56px!important}.px-14{padding-left:56px!important;padding-right:56px!important}.py-14{padding-bottom:56px!important;padding-top:56px!important}.m-14{margin:56px!important}.mr-14{margin-right:56px!important}.ml-14{margin-left:56px!important}.mt-14{margin-top:56px!important}.mb-14{margin-bottom:56px!important}.mx-14{margin-left:56px!important;margin-right:56px!important}.my-14{margin-bottom:56px!important;margin-top:56px!important}.mr-14-minus{margin-right:-56px!important}.ml-14-minus{margin-left:-56px!important}.mt-14-minus{margin-top:-56px!important}.mb-14-minus{margin-bottom:-56px!important}.p-15{padding:60px!important}.pr-15{padding-right:60px!important}.pl-15{padding-left:60px!important}.pt-15{padding-top:60px!important}.pb-15{padding-bottom:60px!important}.px-15{padding-left:60px!important;padding-right:60px!important}.py-15{padding-bottom:60px!important;padding-top:60px!important}.m-15{margin:60px!important}.mr-15{margin-right:60px!important}.ml-15{margin-left:60px!important}.mt-15{margin-top:60px!important}.mb-15{margin-bottom:60px!important}.mx-15{margin-left:60px!important;margin-right:60px!important}.my-15{margin-bottom:60px!important;margin-top:60px!important}.mr-15-minus{margin-right:-60px!important}.ml-15-minus{margin-left:-60px!important}.mt-15-minus{margin-top:-60px!important}.mb-15-minus{margin-bottom:-60px!important}.p-16{padding:64px!important}.pr-16{padding-right:64px!important}.pl-16{padding-left:64px!important}.pt-16{padding-top:64px!important}.pb-16{padding-bottom:64px!important}.px-16{padding-left:64px!important;padding-right:64px!important}.py-16{padding-bottom:64px!important;padding-top:64px!important}.m-16{margin:64px!important}.mr-16{margin-right:64px!important}.ml-16{margin-left:64px!important}.mt-16{margin-top:64px!important}.mb-16{margin-bottom:64px!important}.mx-16{margin-left:64px!important;margin-right:64px!important}.my-16{margin-bottom:64px!important;margin-top:64px!important}.mr-16-minus{margin-right:-64px!important}.ml-16-minus{margin-left:-64px!important}.mt-16-minus{margin-top:-64px!important}.mb-16-minus{margin-bottom:-64px!important}.p-17{padding:68px!important}.pr-17{padding-right:68px!important}.pl-17{padding-left:68px!important}.pt-17{padding-top:68px!important}.pb-17{padding-bottom:68px!important}.px-17{padding-left:68px!important;padding-right:68px!important}.py-17{padding-bottom:68px!important;padding-top:68px!important}.m-17{margin:68px!important}.mr-17{margin-right:68px!important}.ml-17{margin-left:68px!important}.mt-17{margin-top:68px!important}.mb-17{margin-bottom:68px!important}.mx-17{margin-left:68px!important;margin-right:68px!important}.my-17{margin-bottom:68px!important;margin-top:68px!important}.mr-17-minus{margin-right:-68px!important}.ml-17-minus{margin-left:-68px!important}.mt-17-minus{margin-top:-68px!important}.mb-17-minus{margin-bottom:-68px!important}.p-18{padding:72px!important}.pr-18{padding-right:72px!important}.pl-18{padding-left:72px!important}.pt-18{padding-top:72px!important}.pb-18{padding-bottom:72px!important}.px-18{padding-left:72px!important;padding-right:72px!important}.py-18{padding-bottom:72px!important;padding-top:72px!important}.m-18{margin:72px!important}.mr-18{margin-right:72px!important}.ml-18{margin-left:72px!important}.mt-18{margin-top:72px!important}.mb-18{margin-bottom:72px!important}.mx-18{margin-left:72px!important;margin-right:72px!important}.my-18{margin-bottom:72px!important;margin-top:72px!important}.mr-18-minus{margin-right:-72px!important}.ml-18-minus{margin-left:-72px!important}.mt-18-minus{margin-top:-72px!important}.mb-18-minus{margin-bottom:-72px!important}.p-19{padding:76px!important}.pr-19{padding-right:76px!important}.pl-19{padding-left:76px!important}.pt-19{padding-top:76px!important}.pb-19{padding-bottom:76px!important}.px-19{padding-left:76px!important;padding-right:76px!important}.py-19{padding-bottom:76px!important;padding-top:76px!important}.m-19{margin:76px!important}.mr-19{margin-right:76px!important}.ml-19{margin-left:76px!important}.mt-19{margin-top:76px!important}.mb-19{margin-bottom:76px!important}.mx-19{margin-left:76px!important;margin-right:76px!important}.my-19{margin-bottom:76px!important;margin-top:76px!important}.mr-19-minus{margin-right:-76px!important}.ml-19-minus{margin-left:-76px!important}.mt-19-minus{margin-top:-76px!important}.mb-19-minus{margin-bottom:-76px!important}.p-20{padding:80px!important}.pr-20{padding-right:80px!important}.pl-20{padding-left:80px!important}.pt-20{padding-top:80px!important}.pb-20{padding-bottom:80px!important}.px-20{padding-left:80px!important;padding-right:80px!important}.py-20{padding-bottom:80px!important;padding-top:80px!important}.m-20{margin:80px!important}.mr-20{margin-right:80px!important}.ml-20{margin-left:80px!important}.mt-20{margin-top:80px!important}.mb-20{margin-bottom:80px!important}.mx-20{margin-left:80px!important;margin-right:80px!important}.my-20{margin-bottom:80px!important;margin-top:80px!important}.mr-20-minus{margin-right:-80px!important}.ml-20-minus{margin-left:-80px!important}.mt-20-minus{margin-top:-80px!important}.mb-20-minus{margin-bottom:-80px!important}@media screen and (min-width:0){.mx-auto-fs{margin-right:auto!important}.ml-auto-fs,.mx-auto-fs{margin-left:auto!important}.mr-auto-fs{margin-right:auto!important}.mt-auto-fs{margin-top:auto!important}.mb-auto-fs{margin-bottom:auto!important}.p-0-fs{padding:0!important}.pr-0-fs{padding-right:0!important}.pl-0-fs{padding-left:0!important}.pt-0-fs{padding-top:0!important}.pb-0-fs{padding-bottom:0!important}.px-0-fs{padding-left:0!important;padding-right:0!important}.py-0-fs{padding-bottom:0!important;padding-top:0!important}.m-0-fs{margin:0!important}.mr-0-fs{margin-right:0!important}.ml-0-fs{margin-left:0!important}.mt-0-fs{margin-top:0!important}.mb-0-fs{margin-bottom:0!important}.mx-0-fs{margin-left:0!important;margin-right:0!important}.my-0-fs{margin-bottom:0!important;margin-top:0!important}.m-0-fs-minus{margin:0!important}.mr-0-fs-minus{margin-right:0!important}.ml-0-fs-minus{margin-left:0!important}.mt-0-fs-minus{margin-top:0!important}.mb-0-fs-minus{margin-bottom:0!important}.p-1-fs{padding:4px!important}.pr-1-fs{padding-right:4px!important}.pl-1-fs{padding-left:4px!important}.pt-1-fs{padding-top:4px!important}.pb-1-fs{padding-bottom:4px!important}.px-1-fs{padding-left:4px!important;padding-right:4px!important}.py-1-fs{padding-bottom:4px!important;padding-top:4px!important}.m-1-fs{margin:4px!important}.mr-1-fs{margin-right:4px!important}.ml-1-fs{margin-left:4px!important}.mt-1-fs{margin-top:4px!important}.mb-1-fs{margin-bottom:4px!important}.mx-1-fs{margin-left:4px!important;margin-right:4px!important}.my-1-fs{margin-bottom:4px!important;margin-top:4px!important}.m-1-fs-minus{margin:-4px!important}.mr-1-fs-minus{margin-right:-4px!important}.ml-1-fs-minus{margin-left:-4px!important}.mt-1-fs-minus{margin-top:-4px!important}.mb-1-fs-minus{margin-bottom:-4px!important}.p-2-fs{padding:8px!important}.pr-2-fs{padding-right:8px!important}.pl-2-fs{padding-left:8px!important}.pt-2-fs{padding-top:8px!important}.pb-2-fs{padding-bottom:8px!important}.px-2-fs{padding-left:8px!important;padding-right:8px!important}.py-2-fs{padding-bottom:8px!important;padding-top:8px!important}.m-2-fs{margin:8px!important}.mr-2-fs{margin-right:8px!important}.ml-2-fs{margin-left:8px!important}.mt-2-fs{margin-top:8px!important}.mb-2-fs{margin-bottom:8px!important}.mx-2-fs{margin-left:8px!important;margin-right:8px!important}.my-2-fs{margin-bottom:8px!important;margin-top:8px!important}.m-2-fs-minus{margin:-8px!important}.mr-2-fs-minus{margin-right:-8px!important}.ml-2-fs-minus{margin-left:-8px!important}.mt-2-fs-minus{margin-top:-8px!important}.mb-2-fs-minus{margin-bottom:-8px!important}.p-3-fs{padding:12px!important}.pr-3-fs{padding-right:12px!important}.pl-3-fs{padding-left:12px!important}.pt-3-fs{padding-top:12px!important}.pb-3-fs{padding-bottom:12px!important}.px-3-fs{padding-left:12px!important;padding-right:12px!important}.py-3-fs{padding-bottom:12px!important;padding-top:12px!important}.m-3-fs{margin:12px!important}.mr-3-fs{margin-right:12px!important}.ml-3-fs{margin-left:12px!important}.mt-3-fs{margin-top:12px!important}.mb-3-fs{margin-bottom:12px!important}.mx-3-fs{margin-left:12px!important;margin-right:12px!important}.my-3-fs{margin-bottom:12px!important;margin-top:12px!important}.m-3-fs-minus{margin:-12px!important}.mr-3-fs-minus{margin-right:-12px!important}.ml-3-fs-minus{margin-left:-12px!important}.mt-3-fs-minus{margin-top:-12px!important}.mb-3-fs-minus{margin-bottom:-12px!important}.p-4-fs{padding:16px!important}.pr-4-fs{padding-right:16px!important}.pl-4-fs{padding-left:16px!important}.pt-4-fs{padding-top:16px!important}.pb-4-fs{padding-bottom:16px!important}.px-4-fs{padding-left:16px!important;padding-right:16px!important}.py-4-fs{padding-bottom:16px!important;padding-top:16px!important}.m-4-fs{margin:16px!important}.mr-4-fs{margin-right:16px!important}.ml-4-fs{margin-left:16px!important}.mt-4-fs{margin-top:16px!important}.mb-4-fs{margin-bottom:16px!important}.mx-4-fs{margin-left:16px!important;margin-right:16px!important}.my-4-fs{margin-bottom:16px!important;margin-top:16px!important}.m-4-fs-minus{margin:-16px!important}.mr-4-fs-minus{margin-right:-16px!important}.ml-4-fs-minus{margin-left:-16px!important}.mt-4-fs-minus{margin-top:-16px!important}.mb-4-fs-minus{margin-bottom:-16px!important}.p-5-fs{padding:20px!important}.pr-5-fs{padding-right:20px!important}.pl-5-fs{padding-left:20px!important}.pt-5-fs{padding-top:20px!important}.pb-5-fs{padding-bottom:20px!important}.px-5-fs{padding-left:20px!important;padding-right:20px!important}.py-5-fs{padding-bottom:20px!important;padding-top:20px!important}.m-5-fs{margin:20px!important}.mr-5-fs{margin-right:20px!important}.ml-5-fs{margin-left:20px!important}.mt-5-fs{margin-top:20px!important}.mb-5-fs{margin-bottom:20px!important}.mx-5-fs{margin-left:20px!important;margin-right:20px!important}.my-5-fs{margin-bottom:20px!important;margin-top:20px!important}.m-5-fs-minus{margin:-20px!important}.mr-5-fs-minus{margin-right:-20px!important}.ml-5-fs-minus{margin-left:-20px!important}.mt-5-fs-minus{margin-top:-20px!important}.mb-5-fs-minus{margin-bottom:-20px!important}.p-6-fs{padding:24px!important}.pr-6-fs{padding-right:24px!important}.pl-6-fs{padding-left:24px!important}.pt-6-fs{padding-top:24px!important}.pb-6-fs{padding-bottom:24px!important}.px-6-fs{padding-left:24px!important;padding-right:24px!important}.py-6-fs{padding-bottom:24px!important;padding-top:24px!important}.m-6-fs{margin:24px!important}.mr-6-fs{margin-right:24px!important}.ml-6-fs{margin-left:24px!important}.mt-6-fs{margin-top:24px!important}.mb-6-fs{margin-bottom:24px!important}.mx-6-fs{margin-left:24px!important;margin-right:24px!important}.my-6-fs{margin-bottom:24px!important;margin-top:24px!important}.m-6-fs-minus{margin:-24px!important}.mr-6-fs-minus{margin-right:-24px!important}.ml-6-fs-minus{margin-left:-24px!important}.mt-6-fs-minus{margin-top:-24px!important}.mb-6-fs-minus{margin-bottom:-24px!important}.p-7-fs{padding:28px!important}.pr-7-fs{padding-right:28px!important}.pl-7-fs{padding-left:28px!important}.pt-7-fs{padding-top:28px!important}.pb-7-fs{padding-bottom:28px!important}.px-7-fs{padding-left:28px!important;padding-right:28px!important}.py-7-fs{padding-bottom:28px!important;padding-top:28px!important}.m-7-fs{margin:28px!important}.mr-7-fs{margin-right:28px!important}.ml-7-fs{margin-left:28px!important}.mt-7-fs{margin-top:28px!important}.mb-7-fs{margin-bottom:28px!important}.mx-7-fs{margin-left:28px!important;margin-right:28px!important}.my-7-fs{margin-bottom:28px!important;margin-top:28px!important}.m-7-fs-minus{margin:-28px!important}.mr-7-fs-minus{margin-right:-28px!important}.ml-7-fs-minus{margin-left:-28px!important}.mt-7-fs-minus{margin-top:-28px!important}.mb-7-fs-minus{margin-bottom:-28px!important}.p-8-fs{padding:32px!important}.pr-8-fs{padding-right:32px!important}.pl-8-fs{padding-left:32px!important}.pt-8-fs{padding-top:32px!important}.pb-8-fs{padding-bottom:32px!important}.px-8-fs{padding-left:32px!important;padding-right:32px!important}.py-8-fs{padding-bottom:32px!important;padding-top:32px!important}.m-8-fs{margin:32px!important}.mr-8-fs{margin-right:32px!important}.ml-8-fs{margin-left:32px!important}.mt-8-fs{margin-top:32px!important}.mb-8-fs{margin-bottom:32px!important}.mx-8-fs{margin-left:32px!important;margin-right:32px!important}.my-8-fs{margin-bottom:32px!important;margin-top:32px!important}.m-8-fs-minus{margin:-32px!important}.mr-8-fs-minus{margin-right:-32px!important}.ml-8-fs-minus{margin-left:-32px!important}.mt-8-fs-minus{margin-top:-32px!important}.mb-8-fs-minus{margin-bottom:-32px!important}.p-9-fs{padding:36px!important}.pr-9-fs{padding-right:36px!important}.pl-9-fs{padding-left:36px!important}.pt-9-fs{padding-top:36px!important}.pb-9-fs{padding-bottom:36px!important}.px-9-fs{padding-left:36px!important;padding-right:36px!important}.py-9-fs{padding-bottom:36px!important;padding-top:36px!important}.m-9-fs{margin:36px!important}.mr-9-fs{margin-right:36px!important}.ml-9-fs{margin-left:36px!important}.mt-9-fs{margin-top:36px!important}.mb-9-fs{margin-bottom:36px!important}.mx-9-fs{margin-left:36px!important;margin-right:36px!important}.my-9-fs{margin-bottom:36px!important;margin-top:36px!important}.m-9-fs-minus{margin:-36px!important}.mr-9-fs-minus{margin-right:-36px!important}.ml-9-fs-minus{margin-left:-36px!important}.mt-9-fs-minus{margin-top:-36px!important}.mb-9-fs-minus{margin-bottom:-36px!important}.p-10-fs{padding:40px!important}.pr-10-fs{padding-right:40px!important}.pl-10-fs{padding-left:40px!important}.pt-10-fs{padding-top:40px!important}.pb-10-fs{padding-bottom:40px!important}.px-10-fs{padding-left:40px!important;padding-right:40px!important}.py-10-fs{padding-bottom:40px!important;padding-top:40px!important}.m-10-fs{margin:40px!important}.mr-10-fs{margin-right:40px!important}.ml-10-fs{margin-left:40px!important}.mt-10-fs{margin-top:40px!important}.mb-10-fs{margin-bottom:40px!important}.mx-10-fs{margin-left:40px!important;margin-right:40px!important}.my-10-fs{margin-bottom:40px!important;margin-top:40px!important}.m-10-fs-minus{margin:-40px!important}.mr-10-fs-minus{margin-right:-40px!important}.ml-10-fs-minus{margin-left:-40px!important}.mt-10-fs-minus{margin-top:-40px!important}.mb-10-fs-minus{margin-bottom:-40px!important}.p-11-fs{padding:44px!important}.pr-11-fs{padding-right:44px!important}.pl-11-fs{padding-left:44px!important}.pt-11-fs{padding-top:44px!important}.pb-11-fs{padding-bottom:44px!important}.px-11-fs{padding-left:44px!important;padding-right:44px!important}.py-11-fs{padding-bottom:44px!important;padding-top:44px!important}.m-11-fs{margin:44px!important}.mr-11-fs{margin-right:44px!important}.ml-11-fs{margin-left:44px!important}.mt-11-fs{margin-top:44px!important}.mb-11-fs{margin-bottom:44px!important}.mx-11-fs{margin-left:44px!important;margin-right:44px!important}.my-11-fs{margin-bottom:44px!important;margin-top:44px!important}.m-11-fs-minus{margin:-44px!important}.mr-11-fs-minus{margin-right:-44px!important}.ml-11-fs-minus{margin-left:-44px!important}.mt-11-fs-minus{margin-top:-44px!important}.mb-11-fs-minus{margin-bottom:-44px!important}.p-12-fs{padding:48px!important}.pr-12-fs{padding-right:48px!important}.pl-12-fs{padding-left:48px!important}.pt-12-fs{padding-top:48px!important}.pb-12-fs{padding-bottom:48px!important}.px-12-fs{padding-left:48px!important;padding-right:48px!important}.py-12-fs{padding-bottom:48px!important;padding-top:48px!important}.m-12-fs{margin:48px!important}.mr-12-fs{margin-right:48px!important}.ml-12-fs{margin-left:48px!important}.mt-12-fs{margin-top:48px!important}.mb-12-fs{margin-bottom:48px!important}.mx-12-fs{margin-left:48px!important;margin-right:48px!important}.my-12-fs{margin-bottom:48px!important;margin-top:48px!important}.m-12-fs-minus{margin:-48px!important}.mr-12-fs-minus{margin-right:-48px!important}.ml-12-fs-minus{margin-left:-48px!important}.mt-12-fs-minus{margin-top:-48px!important}.mb-12-fs-minus{margin-bottom:-48px!important}.p-13-fs{padding:52px!important}.pr-13-fs{padding-right:52px!important}.pl-13-fs{padding-left:52px!important}.pt-13-fs{padding-top:52px!important}.pb-13-fs{padding-bottom:52px!important}.px-13-fs{padding-left:52px!important;padding-right:52px!important}.py-13-fs{padding-bottom:52px!important;padding-top:52px!important}.m-13-fs{margin:52px!important}.mr-13-fs{margin-right:52px!important}.ml-13-fs{margin-left:52px!important}.mt-13-fs{margin-top:52px!important}.mb-13-fs{margin-bottom:52px!important}.mx-13-fs{margin-left:52px!important;margin-right:52px!important}.my-13-fs{margin-bottom:52px!important;margin-top:52px!important}.m-13-fs-minus{margin:-52px!important}.mr-13-fs-minus{margin-right:-52px!important}.ml-13-fs-minus{margin-left:-52px!important}.mt-13-fs-minus{margin-top:-52px!important}.mb-13-fs-minus{margin-bottom:-52px!important}.p-14-fs{padding:56px!important}.pr-14-fs{padding-right:56px!important}.pl-14-fs{padding-left:56px!important}.pt-14-fs{padding-top:56px!important}.pb-14-fs{padding-bottom:56px!important}.px-14-fs{padding-left:56px!important;padding-right:56px!important}.py-14-fs{padding-bottom:56px!important;padding-top:56px!important}.m-14-fs{margin:56px!important}.mr-14-fs{margin-right:56px!important}.ml-14-fs{margin-left:56px!important}.mt-14-fs{margin-top:56px!important}.mb-14-fs{margin-bottom:56px!important}.mx-14-fs{margin-left:56px!important;margin-right:56px!important}.my-14-fs{margin-bottom:56px!important;margin-top:56px!important}.m-14-fs-minus{margin:-56px!important}.mr-14-fs-minus{margin-right:-56px!important}.ml-14-fs-minus{margin-left:-56px!important}.mt-14-fs-minus{margin-top:-56px!important}.mb-14-fs-minus{margin-bottom:-56px!important}.p-15-fs{padding:60px!important}.pr-15-fs{padding-right:60px!important}.pl-15-fs{padding-left:60px!important}.pt-15-fs{padding-top:60px!important}.pb-15-fs{padding-bottom:60px!important}.px-15-fs{padding-left:60px!important;padding-right:60px!important}.py-15-fs{padding-bottom:60px!important;padding-top:60px!important}.m-15-fs{margin:60px!important}.mr-15-fs{margin-right:60px!important}.ml-15-fs{margin-left:60px!important}.mt-15-fs{margin-top:60px!important}.mb-15-fs{margin-bottom:60px!important}.mx-15-fs{margin-left:60px!important;margin-right:60px!important}.my-15-fs{margin-bottom:60px!important;margin-top:60px!important}.m-15-fs-minus{margin:-60px!important}.mr-15-fs-minus{margin-right:-60px!important}.ml-15-fs-minus{margin-left:-60px!important}.mt-15-fs-minus{margin-top:-60px!important}.mb-15-fs-minus{margin-bottom:-60px!important}.p-16-fs{padding:64px!important}.pr-16-fs{padding-right:64px!important}.pl-16-fs{padding-left:64px!important}.pt-16-fs{padding-top:64px!important}.pb-16-fs{padding-bottom:64px!important}.px-16-fs{padding-left:64px!important;padding-right:64px!important}.py-16-fs{padding-bottom:64px!important;padding-top:64px!important}.m-16-fs{margin:64px!important}.mr-16-fs{margin-right:64px!important}.ml-16-fs{margin-left:64px!important}.mt-16-fs{margin-top:64px!important}.mb-16-fs{margin-bottom:64px!important}.mx-16-fs{margin-left:64px!important;margin-right:64px!important}.my-16-fs{margin-bottom:64px!important;margin-top:64px!important}.m-16-fs-minus{margin:-64px!important}.mr-16-fs-minus{margin-right:-64px!important}.ml-16-fs-minus{margin-left:-64px!important}.mt-16-fs-minus{margin-top:-64px!important}.mb-16-fs-minus{margin-bottom:-64px!important}.p-17-fs{padding:68px!important}.pr-17-fs{padding-right:68px!important}.pl-17-fs{padding-left:68px!important}.pt-17-fs{padding-top:68px!important}.pb-17-fs{padding-bottom:68px!important}.px-17-fs{padding-left:68px!important;padding-right:68px!important}.py-17-fs{padding-bottom:68px!important;padding-top:68px!important}.m-17-fs{margin:68px!important}.mr-17-fs{margin-right:68px!important}.ml-17-fs{margin-left:68px!important}.mt-17-fs{margin-top:68px!important}.mb-17-fs{margin-bottom:68px!important}.mx-17-fs{margin-left:68px!important;margin-right:68px!important}.my-17-fs{margin-bottom:68px!important;margin-top:68px!important}.m-17-fs-minus{margin:-68px!important}.mr-17-fs-minus{margin-right:-68px!important}.ml-17-fs-minus{margin-left:-68px!important}.mt-17-fs-minus{margin-top:-68px!important}.mb-17-fs-minus{margin-bottom:-68px!important}.p-18-fs{padding:72px!important}.pr-18-fs{padding-right:72px!important}.pl-18-fs{padding-left:72px!important}.pt-18-fs{padding-top:72px!important}.pb-18-fs{padding-bottom:72px!important}.px-18-fs{padding-left:72px!important;padding-right:72px!important}.py-18-fs{padding-bottom:72px!important;padding-top:72px!important}.m-18-fs{margin:72px!important}.mr-18-fs{margin-right:72px!important}.ml-18-fs{margin-left:72px!important}.mt-18-fs{margin-top:72px!important}.mb-18-fs{margin-bottom:72px!important}.mx-18-fs{margin-left:72px!important;margin-right:72px!important}.my-18-fs{margin-bottom:72px!important;margin-top:72px!important}.m-18-fs-minus{margin:-72px!important}.mr-18-fs-minus{margin-right:-72px!important}.ml-18-fs-minus{margin-left:-72px!important}.mt-18-fs-minus{margin-top:-72px!important}.mb-18-fs-minus{margin-bottom:-72px!important}.p-19-fs{padding:76px!important}.pr-19-fs{padding-right:76px!important}.pl-19-fs{padding-left:76px!important}.pt-19-fs{padding-top:76px!important}.pb-19-fs{padding-bottom:76px!important}.px-19-fs{padding-left:76px!important;padding-right:76px!important}.py-19-fs{padding-bottom:76px!important;padding-top:76px!important}.m-19-fs{margin:76px!important}.mr-19-fs{margin-right:76px!important}.ml-19-fs{margin-left:76px!important}.mt-19-fs{margin-top:76px!important}.mb-19-fs{margin-bottom:76px!important}.mx-19-fs{margin-left:76px!important;margin-right:76px!important}.my-19-fs{margin-bottom:76px!important;margin-top:76px!important}.m-19-fs-minus{margin:-76px!important}.mr-19-fs-minus{margin-right:-76px!important}.ml-19-fs-minus{margin-left:-76px!important}.mt-19-fs-minus{margin-top:-76px!important}.mb-19-fs-minus{margin-bottom:-76px!important}.p-20-fs{padding:80px!important}.pr-20-fs{padding-right:80px!important}.pl-20-fs{padding-left:80px!important}.pt-20-fs{padding-top:80px!important}.pb-20-fs{padding-bottom:80px!important}.px-20-fs{padding-left:80px!important;padding-right:80px!important}.py-20-fs{padding-bottom:80px!important;padding-top:80px!important}.m-20-fs{margin:80px!important}.mr-20-fs{margin-right:80px!important}.ml-20-fs{margin-left:80px!important}.mt-20-fs{margin-top:80px!important}.mb-20-fs{margin-bottom:80px!important}.mx-20-fs{margin-left:80px!important;margin-right:80px!important}.my-20-fs{margin-bottom:80px!important;margin-top:80px!important}.m-20-fs-minus{margin:-80px!important}.mr-20-fs-minus{margin-right:-80px!important}.ml-20-fs-minus{margin-left:-80px!important}.mt-20-fs-minus{margin-top:-80px!important}.mb-20-fs-minus{margin-bottom:-80px!important}}@media screen and (min-width:360px){.mx-auto-xs{margin-right:auto!important}.ml-auto-xs,.mx-auto-xs{margin-left:auto!important}.mr-auto-xs{margin-right:auto!important}.mt-auto-xs{margin-top:auto!important}.mb-auto-xs{margin-bottom:auto!important}.p-0-xs{padding:0!important}.pr-0-xs{padding-right:0!important}.pl-0-xs{padding-left:0!important}.pt-0-xs{padding-top:0!important}.pb-0-xs{padding-bottom:0!important}.px-0-xs{padding-left:0!important;padding-right:0!important}.py-0-xs{padding-bottom:0!important;padding-top:0!important}.m-0-xs{margin:0!important}.mr-0-xs{margin-right:0!important}.ml-0-xs{margin-left:0!important}.mt-0-xs{margin-top:0!important}.mb-0-xs{margin-bottom:0!important}.mx-0-xs{margin-left:0!important;margin-right:0!important}.my-0-xs{margin-bottom:0!important;margin-top:0!important}.m-0-xs-minus{margin:0!important}.mr-0-xs-minus{margin-right:0!important}.ml-0-xs-minus{margin-left:0!important}.mt-0-xs-minus{margin-top:0!important}.mb-0-xs-minus{margin-bottom:0!important}.p-1-xs{padding:4px!important}.pr-1-xs{padding-right:4px!important}.pl-1-xs{padding-left:4px!important}.pt-1-xs{padding-top:4px!important}.pb-1-xs{padding-bottom:4px!important}.px-1-xs{padding-left:4px!important;padding-right:4px!important}.py-1-xs{padding-bottom:4px!important;padding-top:4px!important}.m-1-xs{margin:4px!important}.mr-1-xs{margin-right:4px!important}.ml-1-xs{margin-left:4px!important}.mt-1-xs{margin-top:4px!important}.mb-1-xs{margin-bottom:4px!important}.mx-1-xs{margin-left:4px!important;margin-right:4px!important}.my-1-xs{margin-bottom:4px!important;margin-top:4px!important}.m-1-xs-minus{margin:-4px!important}.mr-1-xs-minus{margin-right:-4px!important}.ml-1-xs-minus{margin-left:-4px!important}.mt-1-xs-minus{margin-top:-4px!important}.mb-1-xs-minus{margin-bottom:-4px!important}.p-2-xs{padding:8px!important}.pr-2-xs{padding-right:8px!important}.pl-2-xs{padding-left:8px!important}.pt-2-xs{padding-top:8px!important}.pb-2-xs{padding-bottom:8px!important}.px-2-xs{padding-left:8px!important;padding-right:8px!important}.py-2-xs{padding-bottom:8px!important;padding-top:8px!important}.m-2-xs{margin:8px!important}.mr-2-xs{margin-right:8px!important}.ml-2-xs{margin-left:8px!important}.mt-2-xs{margin-top:8px!important}.mb-2-xs{margin-bottom:8px!important}.mx-2-xs{margin-left:8px!important;margin-right:8px!important}.my-2-xs{margin-bottom:8px!important;margin-top:8px!important}.m-2-xs-minus{margin:-8px!important}.mr-2-xs-minus{margin-right:-8px!important}.ml-2-xs-minus{margin-left:-8px!important}.mt-2-xs-minus{margin-top:-8px!important}.mb-2-xs-minus{margin-bottom:-8px!important}.p-3-xs{padding:12px!important}.pr-3-xs{padding-right:12px!important}.pl-3-xs{padding-left:12px!important}.pt-3-xs{padding-top:12px!important}.pb-3-xs{padding-bottom:12px!important}.px-3-xs{padding-left:12px!important;padding-right:12px!important}.py-3-xs{padding-bottom:12px!important;padding-top:12px!important}.m-3-xs{margin:12px!important}.mr-3-xs{margin-right:12px!important}.ml-3-xs{margin-left:12px!important}.mt-3-xs{margin-top:12px!important}.mb-3-xs{margin-bottom:12px!important}.mx-3-xs{margin-left:12px!important;margin-right:12px!important}.my-3-xs{margin-bottom:12px!important;margin-top:12px!important}.m-3-xs-minus{margin:-12px!important}.mr-3-xs-minus{margin-right:-12px!important}.ml-3-xs-minus{margin-left:-12px!important}.mt-3-xs-minus{margin-top:-12px!important}.mb-3-xs-minus{margin-bottom:-12px!important}.p-4-xs{padding:16px!important}.pr-4-xs{padding-right:16px!important}.pl-4-xs{padding-left:16px!important}.pt-4-xs{padding-top:16px!important}.pb-4-xs{padding-bottom:16px!important}.px-4-xs{padding-left:16px!important;padding-right:16px!important}.py-4-xs{padding-bottom:16px!important;padding-top:16px!important}.m-4-xs{margin:16px!important}.mr-4-xs{margin-right:16px!important}.ml-4-xs{margin-left:16px!important}.mt-4-xs{margin-top:16px!important}.mb-4-xs{margin-bottom:16px!important}.mx-4-xs{margin-left:16px!important;margin-right:16px!important}.my-4-xs{margin-bottom:16px!important;margin-top:16px!important}.m-4-xs-minus{margin:-16px!important}.mr-4-xs-minus{margin-right:-16px!important}.ml-4-xs-minus{margin-left:-16px!important}.mt-4-xs-minus{margin-top:-16px!important}.mb-4-xs-minus{margin-bottom:-16px!important}.p-5-xs{padding:20px!important}.pr-5-xs{padding-right:20px!important}.pl-5-xs{padding-left:20px!important}.pt-5-xs{padding-top:20px!important}.pb-5-xs{padding-bottom:20px!important}.px-5-xs{padding-left:20px!important;padding-right:20px!important}.py-5-xs{padding-bottom:20px!important;padding-top:20px!important}.m-5-xs{margin:20px!important}.mr-5-xs{margin-right:20px!important}.ml-5-xs{margin-left:20px!important}.mt-5-xs{margin-top:20px!important}.mb-5-xs{margin-bottom:20px!important}.mx-5-xs{margin-left:20px!important;margin-right:20px!important}.my-5-xs{margin-bottom:20px!important;margin-top:20px!important}.m-5-xs-minus{margin:-20px!important}.mr-5-xs-minus{margin-right:-20px!important}.ml-5-xs-minus{margin-left:-20px!important}.mt-5-xs-minus{margin-top:-20px!important}.mb-5-xs-minus{margin-bottom:-20px!important}.p-6-xs{padding:24px!important}.pr-6-xs{padding-right:24px!important}.pl-6-xs{padding-left:24px!important}.pt-6-xs{padding-top:24px!important}.pb-6-xs{padding-bottom:24px!important}.px-6-xs{padding-left:24px!important;padding-right:24px!important}.py-6-xs{padding-bottom:24px!important;padding-top:24px!important}.m-6-xs{margin:24px!important}.mr-6-xs{margin-right:24px!important}.ml-6-xs{margin-left:24px!important}.mt-6-xs{margin-top:24px!important}.mb-6-xs{margin-bottom:24px!important}.mx-6-xs{margin-left:24px!important;margin-right:24px!important}.my-6-xs{margin-bottom:24px!important;margin-top:24px!important}.m-6-xs-minus{margin:-24px!important}.mr-6-xs-minus{margin-right:-24px!important}.ml-6-xs-minus{margin-left:-24px!important}.mt-6-xs-minus{margin-top:-24px!important}.mb-6-xs-minus{margin-bottom:-24px!important}.p-7-xs{padding:28px!important}.pr-7-xs{padding-right:28px!important}.pl-7-xs{padding-left:28px!important}.pt-7-xs{padding-top:28px!important}.pb-7-xs{padding-bottom:28px!important}.px-7-xs{padding-left:28px!important;padding-right:28px!important}.py-7-xs{padding-bottom:28px!important;padding-top:28px!important}.m-7-xs{margin:28px!important}.mr-7-xs{margin-right:28px!important}.ml-7-xs{margin-left:28px!important}.mt-7-xs{margin-top:28px!important}.mb-7-xs{margin-bottom:28px!important}.mx-7-xs{margin-left:28px!important;margin-right:28px!important}.my-7-xs{margin-bottom:28px!important;margin-top:28px!important}.m-7-xs-minus{margin:-28px!important}.mr-7-xs-minus{margin-right:-28px!important}.ml-7-xs-minus{margin-left:-28px!important}.mt-7-xs-minus{margin-top:-28px!important}.mb-7-xs-minus{margin-bottom:-28px!important}.p-8-xs{padding:32px!important}.pr-8-xs{padding-right:32px!important}.pl-8-xs{padding-left:32px!important}.pt-8-xs{padding-top:32px!important}.pb-8-xs{padding-bottom:32px!important}.px-8-xs{padding-left:32px!important;padding-right:32px!important}.py-8-xs{padding-bottom:32px!important;padding-top:32px!important}.m-8-xs{margin:32px!important}.mr-8-xs{margin-right:32px!important}.ml-8-xs{margin-left:32px!important}.mt-8-xs{margin-top:32px!important}.mb-8-xs{margin-bottom:32px!important}.mx-8-xs{margin-left:32px!important;margin-right:32px!important}.my-8-xs{margin-bottom:32px!important;margin-top:32px!important}.m-8-xs-minus{margin:-32px!important}.mr-8-xs-minus{margin-right:-32px!important}.ml-8-xs-minus{margin-left:-32px!important}.mt-8-xs-minus{margin-top:-32px!important}.mb-8-xs-minus{margin-bottom:-32px!important}.p-9-xs{padding:36px!important}.pr-9-xs{padding-right:36px!important}.pl-9-xs{padding-left:36px!important}.pt-9-xs{padding-top:36px!important}.pb-9-xs{padding-bottom:36px!important}.px-9-xs{padding-left:36px!important;padding-right:36px!important}.py-9-xs{padding-bottom:36px!important;padding-top:36px!important}.m-9-xs{margin:36px!important}.mr-9-xs{margin-right:36px!important}.ml-9-xs{margin-left:36px!important}.mt-9-xs{margin-top:36px!important}.mb-9-xs{margin-bottom:36px!important}.mx-9-xs{margin-left:36px!important;margin-right:36px!important}.my-9-xs{margin-bottom:36px!important;margin-top:36px!important}.m-9-xs-minus{margin:-36px!important}.mr-9-xs-minus{margin-right:-36px!important}.ml-9-xs-minus{margin-left:-36px!important}.mt-9-xs-minus{margin-top:-36px!important}.mb-9-xs-minus{margin-bottom:-36px!important}.p-10-xs{padding:40px!important}.pr-10-xs{padding-right:40px!important}.pl-10-xs{padding-left:40px!important}.pt-10-xs{padding-top:40px!important}.pb-10-xs{padding-bottom:40px!important}.px-10-xs{padding-left:40px!important;padding-right:40px!important}.py-10-xs{padding-bottom:40px!important;padding-top:40px!important}.m-10-xs{margin:40px!important}.mr-10-xs{margin-right:40px!important}.ml-10-xs{margin-left:40px!important}.mt-10-xs{margin-top:40px!important}.mb-10-xs{margin-bottom:40px!important}.mx-10-xs{margin-left:40px!important;margin-right:40px!important}.my-10-xs{margin-bottom:40px!important;margin-top:40px!important}.m-10-xs-minus{margin:-40px!important}.mr-10-xs-minus{margin-right:-40px!important}.ml-10-xs-minus{margin-left:-40px!important}.mt-10-xs-minus{margin-top:-40px!important}.mb-10-xs-minus{margin-bottom:-40px!important}.p-11-xs{padding:44px!important}.pr-11-xs{padding-right:44px!important}.pl-11-xs{padding-left:44px!important}.pt-11-xs{padding-top:44px!important}.pb-11-xs{padding-bottom:44px!important}.px-11-xs{padding-left:44px!important;padding-right:44px!important}.py-11-xs{padding-bottom:44px!important;padding-top:44px!important}.m-11-xs{margin:44px!important}.mr-11-xs{margin-right:44px!important}.ml-11-xs{margin-left:44px!important}.mt-11-xs{margin-top:44px!important}.mb-11-xs{margin-bottom:44px!important}.mx-11-xs{margin-left:44px!important;margin-right:44px!important}.my-11-xs{margin-bottom:44px!important;margin-top:44px!important}.m-11-xs-minus{margin:-44px!important}.mr-11-xs-minus{margin-right:-44px!important}.ml-11-xs-minus{margin-left:-44px!important}.mt-11-xs-minus{margin-top:-44px!important}.mb-11-xs-minus{margin-bottom:-44px!important}.p-12-xs{padding:48px!important}.pr-12-xs{padding-right:48px!important}.pl-12-xs{padding-left:48px!important}.pt-12-xs{padding-top:48px!important}.pb-12-xs{padding-bottom:48px!important}.px-12-xs{padding-left:48px!important;padding-right:48px!important}.py-12-xs{padding-bottom:48px!important;padding-top:48px!important}.m-12-xs{margin:48px!important}.mr-12-xs{margin-right:48px!important}.ml-12-xs{margin-left:48px!important}.mt-12-xs{margin-top:48px!important}.mb-12-xs{margin-bottom:48px!important}.mx-12-xs{margin-left:48px!important;margin-right:48px!important}.my-12-xs{margin-bottom:48px!important;margin-top:48px!important}.m-12-xs-minus{margin:-48px!important}.mr-12-xs-minus{margin-right:-48px!important}.ml-12-xs-minus{margin-left:-48px!important}.mt-12-xs-minus{margin-top:-48px!important}.mb-12-xs-minus{margin-bottom:-48px!important}.p-13-xs{padding:52px!important}.pr-13-xs{padding-right:52px!important}.pl-13-xs{padding-left:52px!important}.pt-13-xs{padding-top:52px!important}.pb-13-xs{padding-bottom:52px!important}.px-13-xs{padding-left:52px!important;padding-right:52px!important}.py-13-xs{padding-bottom:52px!important;padding-top:52px!important}.m-13-xs{margin:52px!important}.mr-13-xs{margin-right:52px!important}.ml-13-xs{margin-left:52px!important}.mt-13-xs{margin-top:52px!important}.mb-13-xs{margin-bottom:52px!important}.mx-13-xs{margin-left:52px!important;margin-right:52px!important}.my-13-xs{margin-bottom:52px!important;margin-top:52px!important}.m-13-xs-minus{margin:-52px!important}.mr-13-xs-minus{margin-right:-52px!important}.ml-13-xs-minus{margin-left:-52px!important}.mt-13-xs-minus{margin-top:-52px!important}.mb-13-xs-minus{margin-bottom:-52px!important}.p-14-xs{padding:56px!important}.pr-14-xs{padding-right:56px!important}.pl-14-xs{padding-left:56px!important}.pt-14-xs{padding-top:56px!important}.pb-14-xs{padding-bottom:56px!important}.px-14-xs{padding-left:56px!important;padding-right:56px!important}.py-14-xs{padding-bottom:56px!important;padding-top:56px!important}.m-14-xs{margin:56px!important}.mr-14-xs{margin-right:56px!important}.ml-14-xs{margin-left:56px!important}.mt-14-xs{margin-top:56px!important}.mb-14-xs{margin-bottom:56px!important}.mx-14-xs{margin-left:56px!important;margin-right:56px!important}.my-14-xs{margin-bottom:56px!important;margin-top:56px!important}.m-14-xs-minus{margin:-56px!important}.mr-14-xs-minus{margin-right:-56px!important}.ml-14-xs-minus{margin-left:-56px!important}.mt-14-xs-minus{margin-top:-56px!important}.mb-14-xs-minus{margin-bottom:-56px!important}.p-15-xs{padding:60px!important}.pr-15-xs{padding-right:60px!important}.pl-15-xs{padding-left:60px!important}.pt-15-xs{padding-top:60px!important}.pb-15-xs{padding-bottom:60px!important}.px-15-xs{padding-left:60px!important;padding-right:60px!important}.py-15-xs{padding-bottom:60px!important;padding-top:60px!important}.m-15-xs{margin:60px!important}.mr-15-xs{margin-right:60px!important}.ml-15-xs{margin-left:60px!important}.mt-15-xs{margin-top:60px!important}.mb-15-xs{margin-bottom:60px!important}.mx-15-xs{margin-left:60px!important;margin-right:60px!important}.my-15-xs{margin-bottom:60px!important;margin-top:60px!important}.m-15-xs-minus{margin:-60px!important}.mr-15-xs-minus{margin-right:-60px!important}.ml-15-xs-minus{margin-left:-60px!important}.mt-15-xs-minus{margin-top:-60px!important}.mb-15-xs-minus{margin-bottom:-60px!important}.p-16-xs{padding:64px!important}.pr-16-xs{padding-right:64px!important}.pl-16-xs{padding-left:64px!important}.pt-16-xs{padding-top:64px!important}.pb-16-xs{padding-bottom:64px!important}.px-16-xs{padding-left:64px!important;padding-right:64px!important}.py-16-xs{padding-bottom:64px!important;padding-top:64px!important}.m-16-xs{margin:64px!important}.mr-16-xs{margin-right:64px!important}.ml-16-xs{margin-left:64px!important}.mt-16-xs{margin-top:64px!important}.mb-16-xs{margin-bottom:64px!important}.mx-16-xs{margin-left:64px!important;margin-right:64px!important}.my-16-xs{margin-bottom:64px!important;margin-top:64px!important}.m-16-xs-minus{margin:-64px!important}.mr-16-xs-minus{margin-right:-64px!important}.ml-16-xs-minus{margin-left:-64px!important}.mt-16-xs-minus{margin-top:-64px!important}.mb-16-xs-minus{margin-bottom:-64px!important}.p-17-xs{padding:68px!important}.pr-17-xs{padding-right:68px!important}.pl-17-xs{padding-left:68px!important}.pt-17-xs{padding-top:68px!important}.pb-17-xs{padding-bottom:68px!important}.px-17-xs{padding-left:68px!important;padding-right:68px!important}.py-17-xs{padding-bottom:68px!important;padding-top:68px!important}.m-17-xs{margin:68px!important}.mr-17-xs{margin-right:68px!important}.ml-17-xs{margin-left:68px!important}.mt-17-xs{margin-top:68px!important}.mb-17-xs{margin-bottom:68px!important}.mx-17-xs{margin-left:68px!important;margin-right:68px!important}.my-17-xs{margin-bottom:68px!important;margin-top:68px!important}.m-17-xs-minus{margin:-68px!important}.mr-17-xs-minus{margin-right:-68px!important}.ml-17-xs-minus{margin-left:-68px!important}.mt-17-xs-minus{margin-top:-68px!important}.mb-17-xs-minus{margin-bottom:-68px!important}.p-18-xs{padding:72px!important}.pr-18-xs{padding-right:72px!important}.pl-18-xs{padding-left:72px!important}.pt-18-xs{padding-top:72px!important}.pb-18-xs{padding-bottom:72px!important}.px-18-xs{padding-left:72px!important;padding-right:72px!important}.py-18-xs{padding-bottom:72px!important;padding-top:72px!important}.m-18-xs{margin:72px!important}.mr-18-xs{margin-right:72px!important}.ml-18-xs{margin-left:72px!important}.mt-18-xs{margin-top:72px!important}.mb-18-xs{margin-bottom:72px!important}.mx-18-xs{margin-left:72px!important;margin-right:72px!important}.my-18-xs{margin-bottom:72px!important;margin-top:72px!important}.m-18-xs-minus{margin:-72px!important}.mr-18-xs-minus{margin-right:-72px!important}.ml-18-xs-minus{margin-left:-72px!important}.mt-18-xs-minus{margin-top:-72px!important}.mb-18-xs-minus{margin-bottom:-72px!important}.p-19-xs{padding:76px!important}.pr-19-xs{padding-right:76px!important}.pl-19-xs{padding-left:76px!important}.pt-19-xs{padding-top:76px!important}.pb-19-xs{padding-bottom:76px!important}.px-19-xs{padding-left:76px!important;padding-right:76px!important}.py-19-xs{padding-bottom:76px!important;padding-top:76px!important}.m-19-xs{margin:76px!important}.mr-19-xs{margin-right:76px!important}.ml-19-xs{margin-left:76px!important}.mt-19-xs{margin-top:76px!important}.mb-19-xs{margin-bottom:76px!important}.mx-19-xs{margin-left:76px!important;margin-right:76px!important}.my-19-xs{margin-bottom:76px!important;margin-top:76px!important}.m-19-xs-minus{margin:-76px!important}.mr-19-xs-minus{margin-right:-76px!important}.ml-19-xs-minus{margin-left:-76px!important}.mt-19-xs-minus{margin-top:-76px!important}.mb-19-xs-minus{margin-bottom:-76px!important}.p-20-xs{padding:80px!important}.pr-20-xs{padding-right:80px!important}.pl-20-xs{padding-left:80px!important}.pt-20-xs{padding-top:80px!important}.pb-20-xs{padding-bottom:80px!important}.px-20-xs{padding-left:80px!important;padding-right:80px!important}.py-20-xs{padding-bottom:80px!important;padding-top:80px!important}.m-20-xs{margin:80px!important}.mr-20-xs{margin-right:80px!important}.ml-20-xs{margin-left:80px!important}.mt-20-xs{margin-top:80px!important}.mb-20-xs{margin-bottom:80px!important}.mx-20-xs{margin-left:80px!important;margin-right:80px!important}.my-20-xs{margin-bottom:80px!important;margin-top:80px!important}.m-20-xs-minus{margin:-80px!important}.mr-20-xs-minus{margin-right:-80px!important}.ml-20-xs-minus{margin-left:-80px!important}.mt-20-xs-minus{margin-top:-80px!important}.mb-20-xs-minus{margin-bottom:-80px!important}}@media screen and (min-width:576px){.mx-auto-sm{margin-right:auto!important}.ml-auto-sm,.mx-auto-sm{margin-left:auto!important}.mr-auto-sm{margin-right:auto!important}.mt-auto-sm{margin-top:auto!important}.mb-auto-sm{margin-bottom:auto!important}.p-0-sm{padding:0!important}.pr-0-sm{padding-right:0!important}.pl-0-sm{padding-left:0!important}.pt-0-sm{padding-top:0!important}.pb-0-sm{padding-bottom:0!important}.px-0-sm{padding-left:0!important;padding-right:0!important}.py-0-sm{padding-bottom:0!important;padding-top:0!important}.m-0-sm{margin:0!important}.mr-0-sm{margin-right:0!important}.ml-0-sm{margin-left:0!important}.mt-0-sm{margin-top:0!important}.mb-0-sm{margin-bottom:0!important}.mx-0-sm{margin-left:0!important;margin-right:0!important}.my-0-sm{margin-bottom:0!important;margin-top:0!important}.m-0-sm-minus{margin:0!important}.mr-0-sm-minus{margin-right:0!important}.ml-0-sm-minus{margin-left:0!important}.mt-0-sm-minus{margin-top:0!important}.mb-0-sm-minus{margin-bottom:0!important}.p-1-sm{padding:4px!important}.pr-1-sm{padding-right:4px!important}.pl-1-sm{padding-left:4px!important}.pt-1-sm{padding-top:4px!important}.pb-1-sm{padding-bottom:4px!important}.px-1-sm{padding-left:4px!important;padding-right:4px!important}.py-1-sm{padding-bottom:4px!important;padding-top:4px!important}.m-1-sm{margin:4px!important}.mr-1-sm{margin-right:4px!important}.ml-1-sm{margin-left:4px!important}.mt-1-sm{margin-top:4px!important}.mb-1-sm{margin-bottom:4px!important}.mx-1-sm{margin-left:4px!important;margin-right:4px!important}.my-1-sm{margin-bottom:4px!important;margin-top:4px!important}.m-1-sm-minus{margin:-4px!important}.mr-1-sm-minus{margin-right:-4px!important}.ml-1-sm-minus{margin-left:-4px!important}.mt-1-sm-minus{margin-top:-4px!important}.mb-1-sm-minus{margin-bottom:-4px!important}.p-2-sm{padding:8px!important}.pr-2-sm{padding-right:8px!important}.pl-2-sm{padding-left:8px!important}.pt-2-sm{padding-top:8px!important}.pb-2-sm{padding-bottom:8px!important}.px-2-sm{padding-left:8px!important;padding-right:8px!important}.py-2-sm{padding-bottom:8px!important;padding-top:8px!important}.m-2-sm{margin:8px!important}.mr-2-sm{margin-right:8px!important}.ml-2-sm{margin-left:8px!important}.mt-2-sm{margin-top:8px!important}.mb-2-sm{margin-bottom:8px!important}.mx-2-sm{margin-left:8px!important;margin-right:8px!important}.my-2-sm{margin-bottom:8px!important;margin-top:8px!important}.m-2-sm-minus{margin:-8px!important}.mr-2-sm-minus{margin-right:-8px!important}.ml-2-sm-minus{margin-left:-8px!important}.mt-2-sm-minus{margin-top:-8px!important}.mb-2-sm-minus{margin-bottom:-8px!important}.p-3-sm{padding:12px!important}.pr-3-sm{padding-right:12px!important}.pl-3-sm{padding-left:12px!important}.pt-3-sm{padding-top:12px!important}.pb-3-sm{padding-bottom:12px!important}.px-3-sm{padding-left:12px!important;padding-right:12px!important}.py-3-sm{padding-bottom:12px!important;padding-top:12px!important}.m-3-sm{margin:12px!important}.mr-3-sm{margin-right:12px!important}.ml-3-sm{margin-left:12px!important}.mt-3-sm{margin-top:12px!important}.mb-3-sm{margin-bottom:12px!important}.mx-3-sm{margin-left:12px!important;margin-right:12px!important}.my-3-sm{margin-bottom:12px!important;margin-top:12px!important}.m-3-sm-minus{margin:-12px!important}.mr-3-sm-minus{margin-right:-12px!important}.ml-3-sm-minus{margin-left:-12px!important}.mt-3-sm-minus{margin-top:-12px!important}.mb-3-sm-minus{margin-bottom:-12px!important}.p-4-sm{padding:16px!important}.pr-4-sm{padding-right:16px!important}.pl-4-sm{padding-left:16px!important}.pt-4-sm{padding-top:16px!important}.pb-4-sm{padding-bottom:16px!important}.px-4-sm{padding-left:16px!important;padding-right:16px!important}.py-4-sm{padding-bottom:16px!important;padding-top:16px!important}.m-4-sm{margin:16px!important}.mr-4-sm{margin-right:16px!important}.ml-4-sm{margin-left:16px!important}.mt-4-sm{margin-top:16px!important}.mb-4-sm{margin-bottom:16px!important}.mx-4-sm{margin-left:16px!important;margin-right:16px!important}.my-4-sm{margin-bottom:16px!important;margin-top:16px!important}.m-4-sm-minus{margin:-16px!important}.mr-4-sm-minus{margin-right:-16px!important}.ml-4-sm-minus{margin-left:-16px!important}.mt-4-sm-minus{margin-top:-16px!important}.mb-4-sm-minus{margin-bottom:-16px!important}.p-5-sm{padding:20px!important}.pr-5-sm{padding-right:20px!important}.pl-5-sm{padding-left:20px!important}.pt-5-sm{padding-top:20px!important}.pb-5-sm{padding-bottom:20px!important}.px-5-sm{padding-left:20px!important;padding-right:20px!important}.py-5-sm{padding-bottom:20px!important;padding-top:20px!important}.m-5-sm{margin:20px!important}.mr-5-sm{margin-right:20px!important}.ml-5-sm{margin-left:20px!important}.mt-5-sm{margin-top:20px!important}.mb-5-sm{margin-bottom:20px!important}.mx-5-sm{margin-left:20px!important;margin-right:20px!important}.my-5-sm{margin-bottom:20px!important;margin-top:20px!important}.m-5-sm-minus{margin:-20px!important}.mr-5-sm-minus{margin-right:-20px!important}.ml-5-sm-minus{margin-left:-20px!important}.mt-5-sm-minus{margin-top:-20px!important}.mb-5-sm-minus{margin-bottom:-20px!important}.p-6-sm{padding:24px!important}.pr-6-sm{padding-right:24px!important}.pl-6-sm{padding-left:24px!important}.pt-6-sm{padding-top:24px!important}.pb-6-sm{padding-bottom:24px!important}.px-6-sm{padding-left:24px!important;padding-right:24px!important}.py-6-sm{padding-bottom:24px!important;padding-top:24px!important}.m-6-sm{margin:24px!important}.mr-6-sm{margin-right:24px!important}.ml-6-sm{margin-left:24px!important}.mt-6-sm{margin-top:24px!important}.mb-6-sm{margin-bottom:24px!important}.mx-6-sm{margin-left:24px!important;margin-right:24px!important}.my-6-sm{margin-bottom:24px!important;margin-top:24px!important}.m-6-sm-minus{margin:-24px!important}.mr-6-sm-minus{margin-right:-24px!important}.ml-6-sm-minus{margin-left:-24px!important}.mt-6-sm-minus{margin-top:-24px!important}.mb-6-sm-minus{margin-bottom:-24px!important}.p-7-sm{padding:28px!important}.pr-7-sm{padding-right:28px!important}.pl-7-sm{padding-left:28px!important}.pt-7-sm{padding-top:28px!important}.pb-7-sm{padding-bottom:28px!important}.px-7-sm{padding-left:28px!important;padding-right:28px!important}.py-7-sm{padding-bottom:28px!important;padding-top:28px!important}.m-7-sm{margin:28px!important}.mr-7-sm{margin-right:28px!important}.ml-7-sm{margin-left:28px!important}.mt-7-sm{margin-top:28px!important}.mb-7-sm{margin-bottom:28px!important}.mx-7-sm{margin-left:28px!important;margin-right:28px!important}.my-7-sm{margin-bottom:28px!important;margin-top:28px!important}.m-7-sm-minus{margin:-28px!important}.mr-7-sm-minus{margin-right:-28px!important}.ml-7-sm-minus{margin-left:-28px!important}.mt-7-sm-minus{margin-top:-28px!important}.mb-7-sm-minus{margin-bottom:-28px!important}.p-8-sm{padding:32px!important}.pr-8-sm{padding-right:32px!important}.pl-8-sm{padding-left:32px!important}.pt-8-sm{padding-top:32px!important}.pb-8-sm{padding-bottom:32px!important}.px-8-sm{padding-left:32px!important;padding-right:32px!important}.py-8-sm{padding-bottom:32px!important;padding-top:32px!important}.m-8-sm{margin:32px!important}.mr-8-sm{margin-right:32px!important}.ml-8-sm{margin-left:32px!important}.mt-8-sm{margin-top:32px!important}.mb-8-sm{margin-bottom:32px!important}.mx-8-sm{margin-left:32px!important;margin-right:32px!important}.my-8-sm{margin-bottom:32px!important;margin-top:32px!important}.m-8-sm-minus{margin:-32px!important}.mr-8-sm-minus{margin-right:-32px!important}.ml-8-sm-minus{margin-left:-32px!important}.mt-8-sm-minus{margin-top:-32px!important}.mb-8-sm-minus{margin-bottom:-32px!important}.p-9-sm{padding:36px!important}.pr-9-sm{padding-right:36px!important}.pl-9-sm{padding-left:36px!important}.pt-9-sm{padding-top:36px!important}.pb-9-sm{padding-bottom:36px!important}.px-9-sm{padding-left:36px!important;padding-right:36px!important}.py-9-sm{padding-bottom:36px!important;padding-top:36px!important}.m-9-sm{margin:36px!important}.mr-9-sm{margin-right:36px!important}.ml-9-sm{margin-left:36px!important}.mt-9-sm{margin-top:36px!important}.mb-9-sm{margin-bottom:36px!important}.mx-9-sm{margin-left:36px!important;margin-right:36px!important}.my-9-sm{margin-bottom:36px!important;margin-top:36px!important}.m-9-sm-minus{margin:-36px!important}.mr-9-sm-minus{margin-right:-36px!important}.ml-9-sm-minus{margin-left:-36px!important}.mt-9-sm-minus{margin-top:-36px!important}.mb-9-sm-minus{margin-bottom:-36px!important}.p-10-sm{padding:40px!important}.pr-10-sm{padding-right:40px!important}.pl-10-sm{padding-left:40px!important}.pt-10-sm{padding-top:40px!important}.pb-10-sm{padding-bottom:40px!important}.px-10-sm{padding-left:40px!important;padding-right:40px!important}.py-10-sm{padding-bottom:40px!important;padding-top:40px!important}.m-10-sm{margin:40px!important}.mr-10-sm{margin-right:40px!important}.ml-10-sm{margin-left:40px!important}.mt-10-sm{margin-top:40px!important}.mb-10-sm{margin-bottom:40px!important}.mx-10-sm{margin-left:40px!important;margin-right:40px!important}.my-10-sm{margin-bottom:40px!important;margin-top:40px!important}.m-10-sm-minus{margin:-40px!important}.mr-10-sm-minus{margin-right:-40px!important}.ml-10-sm-minus{margin-left:-40px!important}.mt-10-sm-minus{margin-top:-40px!important}.mb-10-sm-minus{margin-bottom:-40px!important}.p-11-sm{padding:44px!important}.pr-11-sm{padding-right:44px!important}.pl-11-sm{padding-left:44px!important}.pt-11-sm{padding-top:44px!important}.pb-11-sm{padding-bottom:44px!important}.px-11-sm{padding-left:44px!important;padding-right:44px!important}.py-11-sm{padding-bottom:44px!important;padding-top:44px!important}.m-11-sm{margin:44px!important}.mr-11-sm{margin-right:44px!important}.ml-11-sm{margin-left:44px!important}.mt-11-sm{margin-top:44px!important}.mb-11-sm{margin-bottom:44px!important}.mx-11-sm{margin-left:44px!important;margin-right:44px!important}.my-11-sm{margin-bottom:44px!important;margin-top:44px!important}.m-11-sm-minus{margin:-44px!important}.mr-11-sm-minus{margin-right:-44px!important}.ml-11-sm-minus{margin-left:-44px!important}.mt-11-sm-minus{margin-top:-44px!important}.mb-11-sm-minus{margin-bottom:-44px!important}.p-12-sm{padding:48px!important}.pr-12-sm{padding-right:48px!important}.pl-12-sm{padding-left:48px!important}.pt-12-sm{padding-top:48px!important}.pb-12-sm{padding-bottom:48px!important}.px-12-sm{padding-left:48px!important;padding-right:48px!important}.py-12-sm{padding-bottom:48px!important;padding-top:48px!important}.m-12-sm{margin:48px!important}.mr-12-sm{margin-right:48px!important}.ml-12-sm{margin-left:48px!important}.mt-12-sm{margin-top:48px!important}.mb-12-sm{margin-bottom:48px!important}.mx-12-sm{margin-left:48px!important;margin-right:48px!important}.my-12-sm{margin-bottom:48px!important;margin-top:48px!important}.m-12-sm-minus{margin:-48px!important}.mr-12-sm-minus{margin-right:-48px!important}.ml-12-sm-minus{margin-left:-48px!important}.mt-12-sm-minus{margin-top:-48px!important}.mb-12-sm-minus{margin-bottom:-48px!important}.p-13-sm{padding:52px!important}.pr-13-sm{padding-right:52px!important}.pl-13-sm{padding-left:52px!important}.pt-13-sm{padding-top:52px!important}.pb-13-sm{padding-bottom:52px!important}.px-13-sm{padding-left:52px!important;padding-right:52px!important}.py-13-sm{padding-bottom:52px!important;padding-top:52px!important}.m-13-sm{margin:52px!important}.mr-13-sm{margin-right:52px!important}.ml-13-sm{margin-left:52px!important}.mt-13-sm{margin-top:52px!important}.mb-13-sm{margin-bottom:52px!important}.mx-13-sm{margin-left:52px!important;margin-right:52px!important}.my-13-sm{margin-bottom:52px!important;margin-top:52px!important}.m-13-sm-minus{margin:-52px!important}.mr-13-sm-minus{margin-right:-52px!important}.ml-13-sm-minus{margin-left:-52px!important}.mt-13-sm-minus{margin-top:-52px!important}.mb-13-sm-minus{margin-bottom:-52px!important}.p-14-sm{padding:56px!important}.pr-14-sm{padding-right:56px!important}.pl-14-sm{padding-left:56px!important}.pt-14-sm{padding-top:56px!important}.pb-14-sm{padding-bottom:56px!important}.px-14-sm{padding-left:56px!important;padding-right:56px!important}.py-14-sm{padding-bottom:56px!important;padding-top:56px!important}.m-14-sm{margin:56px!important}.mr-14-sm{margin-right:56px!important}.ml-14-sm{margin-left:56px!important}.mt-14-sm{margin-top:56px!important}.mb-14-sm{margin-bottom:56px!important}.mx-14-sm{margin-left:56px!important;margin-right:56px!important}.my-14-sm{margin-bottom:56px!important;margin-top:56px!important}.m-14-sm-minus{margin:-56px!important}.mr-14-sm-minus{margin-right:-56px!important}.ml-14-sm-minus{margin-left:-56px!important}.mt-14-sm-minus{margin-top:-56px!important}.mb-14-sm-minus{margin-bottom:-56px!important}.p-15-sm{padding:60px!important}.pr-15-sm{padding-right:60px!important}.pl-15-sm{padding-left:60px!important}.pt-15-sm{padding-top:60px!important}.pb-15-sm{padding-bottom:60px!important}.px-15-sm{padding-left:60px!important;padding-right:60px!important}.py-15-sm{padding-bottom:60px!important;padding-top:60px!important}.m-15-sm{margin:60px!important}.mr-15-sm{margin-right:60px!important}.ml-15-sm{margin-left:60px!important}.mt-15-sm{margin-top:60px!important}.mb-15-sm{margin-bottom:60px!important}.mx-15-sm{margin-left:60px!important;margin-right:60px!important}.my-15-sm{margin-bottom:60px!important;margin-top:60px!important}.m-15-sm-minus{margin:-60px!important}.mr-15-sm-minus{margin-right:-60px!important}.ml-15-sm-minus{margin-left:-60px!important}.mt-15-sm-minus{margin-top:-60px!important}.mb-15-sm-minus{margin-bottom:-60px!important}.p-16-sm{padding:64px!important}.pr-16-sm{padding-right:64px!important}.pl-16-sm{padding-left:64px!important}.pt-16-sm{padding-top:64px!important}.pb-16-sm{padding-bottom:64px!important}.px-16-sm{padding-left:64px!important;padding-right:64px!important}.py-16-sm{padding-bottom:64px!important;padding-top:64px!important}.m-16-sm{margin:64px!important}.mr-16-sm{margin-right:64px!important}.ml-16-sm{margin-left:64px!important}.mt-16-sm{margin-top:64px!important}.mb-16-sm{margin-bottom:64px!important}.mx-16-sm{margin-left:64px!important;margin-right:64px!important}.my-16-sm{margin-bottom:64px!important;margin-top:64px!important}.m-16-sm-minus{margin:-64px!important}.mr-16-sm-minus{margin-right:-64px!important}.ml-16-sm-minus{margin-left:-64px!important}.mt-16-sm-minus{margin-top:-64px!important}.mb-16-sm-minus{margin-bottom:-64px!important}.p-17-sm{padding:68px!important}.pr-17-sm{padding-right:68px!important}.pl-17-sm{padding-left:68px!important}.pt-17-sm{padding-top:68px!important}.pb-17-sm{padding-bottom:68px!important}.px-17-sm{padding-left:68px!important;padding-right:68px!important}.py-17-sm{padding-bottom:68px!important;padding-top:68px!important}.m-17-sm{margin:68px!important}.mr-17-sm{margin-right:68px!important}.ml-17-sm{margin-left:68px!important}.mt-17-sm{margin-top:68px!important}.mb-17-sm{margin-bottom:68px!important}.mx-17-sm{margin-left:68px!important;margin-right:68px!important}.my-17-sm{margin-bottom:68px!important;margin-top:68px!important}.m-17-sm-minus{margin:-68px!important}.mr-17-sm-minus{margin-right:-68px!important}.ml-17-sm-minus{margin-left:-68px!important}.mt-17-sm-minus{margin-top:-68px!important}.mb-17-sm-minus{margin-bottom:-68px!important}.p-18-sm{padding:72px!important}.pr-18-sm{padding-right:72px!important}.pl-18-sm{padding-left:72px!important}.pt-18-sm{padding-top:72px!important}.pb-18-sm{padding-bottom:72px!important}.px-18-sm{padding-left:72px!important;padding-right:72px!important}.py-18-sm{padding-bottom:72px!important;padding-top:72px!important}.m-18-sm{margin:72px!important}.mr-18-sm{margin-right:72px!important}.ml-18-sm{margin-left:72px!important}.mt-18-sm{margin-top:72px!important}.mb-18-sm{margin-bottom:72px!important}.mx-18-sm{margin-left:72px!important;margin-right:72px!important}.my-18-sm{margin-bottom:72px!important;margin-top:72px!important}.m-18-sm-minus{margin:-72px!important}.mr-18-sm-minus{margin-right:-72px!important}.ml-18-sm-minus{margin-left:-72px!important}.mt-18-sm-minus{margin-top:-72px!important}.mb-18-sm-minus{margin-bottom:-72px!important}.p-19-sm{padding:76px!important}.pr-19-sm{padding-right:76px!important}.pl-19-sm{padding-left:76px!important}.pt-19-sm{padding-top:76px!important}.pb-19-sm{padding-bottom:76px!important}.px-19-sm{padding-left:76px!important;padding-right:76px!important}.py-19-sm{padding-bottom:76px!important;padding-top:76px!important}.m-19-sm{margin:76px!important}.mr-19-sm{margin-right:76px!important}.ml-19-sm{margin-left:76px!important}.mt-19-sm{margin-top:76px!important}.mb-19-sm{margin-bottom:76px!important}.mx-19-sm{margin-left:76px!important;margin-right:76px!important}.my-19-sm{margin-bottom:76px!important;margin-top:76px!important}.m-19-sm-minus{margin:-76px!important}.mr-19-sm-minus{margin-right:-76px!important}.ml-19-sm-minus{margin-left:-76px!important}.mt-19-sm-minus{margin-top:-76px!important}.mb-19-sm-minus{margin-bottom:-76px!important}.p-20-sm{padding:80px!important}.pr-20-sm{padding-right:80px!important}.pl-20-sm{padding-left:80px!important}.pt-20-sm{padding-top:80px!important}.pb-20-sm{padding-bottom:80px!important}.px-20-sm{padding-left:80px!important;padding-right:80px!important}.py-20-sm{padding-bottom:80px!important;padding-top:80px!important}.m-20-sm{margin:80px!important}.mr-20-sm{margin-right:80px!important}.ml-20-sm{margin-left:80px!important}.mt-20-sm{margin-top:80px!important}.mb-20-sm{margin-bottom:80px!important}.mx-20-sm{margin-left:80px!important;margin-right:80px!important}.my-20-sm{margin-bottom:80px!important;margin-top:80px!important}.m-20-sm-minus{margin:-80px!important}.mr-20-sm-minus{margin-right:-80px!important}.ml-20-sm-minus{margin-left:-80px!important}.mt-20-sm-minus{margin-top:-80px!important}.mb-20-sm-minus{margin-bottom:-80px!important}}@media screen and (min-width:640px){.mx-auto-ld{margin-right:auto!important}.ml-auto-ld,.mx-auto-ld{margin-left:auto!important}.mr-auto-ld{margin-right:auto!important}.mt-auto-ld{margin-top:auto!important}.mb-auto-ld{margin-bottom:auto!important}.p-0-ld{padding:0!important}.pr-0-ld{padding-right:0!important}.pl-0-ld{padding-left:0!important}.pt-0-ld{padding-top:0!important}.pb-0-ld{padding-bottom:0!important}.px-0-ld{padding-left:0!important;padding-right:0!important}.py-0-ld{padding-bottom:0!important;padding-top:0!important}.m-0-ld{margin:0!important}.mr-0-ld{margin-right:0!important}.ml-0-ld{margin-left:0!important}.mt-0-ld{margin-top:0!important}.mb-0-ld{margin-bottom:0!important}.mx-0-ld{margin-left:0!important;margin-right:0!important}.my-0-ld{margin-bottom:0!important;margin-top:0!important}.m-0-ld-minus{margin:0!important}.mr-0-ld-minus{margin-right:0!important}.ml-0-ld-minus{margin-left:0!important}.mt-0-ld-minus{margin-top:0!important}.mb-0-ld-minus{margin-bottom:0!important}.p-1-ld{padding:4px!important}.pr-1-ld{padding-right:4px!important}.pl-1-ld{padding-left:4px!important}.pt-1-ld{padding-top:4px!important}.pb-1-ld{padding-bottom:4px!important}.px-1-ld{padding-left:4px!important;padding-right:4px!important}.py-1-ld{padding-bottom:4px!important;padding-top:4px!important}.m-1-ld{margin:4px!important}.mr-1-ld{margin-right:4px!important}.ml-1-ld{margin-left:4px!important}.mt-1-ld{margin-top:4px!important}.mb-1-ld{margin-bottom:4px!important}.mx-1-ld{margin-left:4px!important;margin-right:4px!important}.my-1-ld{margin-bottom:4px!important;margin-top:4px!important}.m-1-ld-minus{margin:-4px!important}.mr-1-ld-minus{margin-right:-4px!important}.ml-1-ld-minus{margin-left:-4px!important}.mt-1-ld-minus{margin-top:-4px!important}.mb-1-ld-minus{margin-bottom:-4px!important}.p-2-ld{padding:8px!important}.pr-2-ld{padding-right:8px!important}.pl-2-ld{padding-left:8px!important}.pt-2-ld{padding-top:8px!important}.pb-2-ld{padding-bottom:8px!important}.px-2-ld{padding-left:8px!important;padding-right:8px!important}.py-2-ld{padding-bottom:8px!important;padding-top:8px!important}.m-2-ld{margin:8px!important}.mr-2-ld{margin-right:8px!important}.ml-2-ld{margin-left:8px!important}.mt-2-ld{margin-top:8px!important}.mb-2-ld{margin-bottom:8px!important}.mx-2-ld{margin-left:8px!important;margin-right:8px!important}.my-2-ld{margin-bottom:8px!important;margin-top:8px!important}.m-2-ld-minus{margin:-8px!important}.mr-2-ld-minus{margin-right:-8px!important}.ml-2-ld-minus{margin-left:-8px!important}.mt-2-ld-minus{margin-top:-8px!important}.mb-2-ld-minus{margin-bottom:-8px!important}.p-3-ld{padding:12px!important}.pr-3-ld{padding-right:12px!important}.pl-3-ld{padding-left:12px!important}.pt-3-ld{padding-top:12px!important}.pb-3-ld{padding-bottom:12px!important}.px-3-ld{padding-left:12px!important;padding-right:12px!important}.py-3-ld{padding-bottom:12px!important;padding-top:12px!important}.m-3-ld{margin:12px!important}.mr-3-ld{margin-right:12px!important}.ml-3-ld{margin-left:12px!important}.mt-3-ld{margin-top:12px!important}.mb-3-ld{margin-bottom:12px!important}.mx-3-ld{margin-left:12px!important;margin-right:12px!important}.my-3-ld{margin-bottom:12px!important;margin-top:12px!important}.m-3-ld-minus{margin:-12px!important}.mr-3-ld-minus{margin-right:-12px!important}.ml-3-ld-minus{margin-left:-12px!important}.mt-3-ld-minus{margin-top:-12px!important}.mb-3-ld-minus{margin-bottom:-12px!important}.p-4-ld{padding:16px!important}.pr-4-ld{padding-right:16px!important}.pl-4-ld{padding-left:16px!important}.pt-4-ld{padding-top:16px!important}.pb-4-ld{padding-bottom:16px!important}.px-4-ld{padding-left:16px!important;padding-right:16px!important}.py-4-ld{padding-bottom:16px!important;padding-top:16px!important}.m-4-ld{margin:16px!important}.mr-4-ld{margin-right:16px!important}.ml-4-ld{margin-left:16px!important}.mt-4-ld{margin-top:16px!important}.mb-4-ld{margin-bottom:16px!important}.mx-4-ld{margin-left:16px!important;margin-right:16px!important}.my-4-ld{margin-bottom:16px!important;margin-top:16px!important}.m-4-ld-minus{margin:-16px!important}.mr-4-ld-minus{margin-right:-16px!important}.ml-4-ld-minus{margin-left:-16px!important}.mt-4-ld-minus{margin-top:-16px!important}.mb-4-ld-minus{margin-bottom:-16px!important}.p-5-ld{padding:20px!important}.pr-5-ld{padding-right:20px!important}.pl-5-ld{padding-left:20px!important}.pt-5-ld{padding-top:20px!important}.pb-5-ld{padding-bottom:20px!important}.px-5-ld{padding-left:20px!important;padding-right:20px!important}.py-5-ld{padding-bottom:20px!important;padding-top:20px!important}.m-5-ld{margin:20px!important}.mr-5-ld{margin-right:20px!important}.ml-5-ld{margin-left:20px!important}.mt-5-ld{margin-top:20px!important}.mb-5-ld{margin-bottom:20px!important}.mx-5-ld{margin-left:20px!important;margin-right:20px!important}.my-5-ld{margin-bottom:20px!important;margin-top:20px!important}.m-5-ld-minus{margin:-20px!important}.mr-5-ld-minus{margin-right:-20px!important}.ml-5-ld-minus{margin-left:-20px!important}.mt-5-ld-minus{margin-top:-20px!important}.mb-5-ld-minus{margin-bottom:-20px!important}.p-6-ld{padding:24px!important}.pr-6-ld{padding-right:24px!important}.pl-6-ld{padding-left:24px!important}.pt-6-ld{padding-top:24px!important}.pb-6-ld{padding-bottom:24px!important}.px-6-ld{padding-left:24px!important;padding-right:24px!important}.py-6-ld{padding-bottom:24px!important;padding-top:24px!important}.m-6-ld{margin:24px!important}.mr-6-ld{margin-right:24px!important}.ml-6-ld{margin-left:24px!important}.mt-6-ld{margin-top:24px!important}.mb-6-ld{margin-bottom:24px!important}.mx-6-ld{margin-left:24px!important;margin-right:24px!important}.my-6-ld{margin-bottom:24px!important;margin-top:24px!important}.m-6-ld-minus{margin:-24px!important}.mr-6-ld-minus{margin-right:-24px!important}.ml-6-ld-minus{margin-left:-24px!important}.mt-6-ld-minus{margin-top:-24px!important}.mb-6-ld-minus{margin-bottom:-24px!important}.p-7-ld{padding:28px!important}.pr-7-ld{padding-right:28px!important}.pl-7-ld{padding-left:28px!important}.pt-7-ld{padding-top:28px!important}.pb-7-ld{padding-bottom:28px!important}.px-7-ld{padding-left:28px!important;padding-right:28px!important}.py-7-ld{padding-bottom:28px!important;padding-top:28px!important}.m-7-ld{margin:28px!important}.mr-7-ld{margin-right:28px!important}.ml-7-ld{margin-left:28px!important}.mt-7-ld{margin-top:28px!important}.mb-7-ld{margin-bottom:28px!important}.mx-7-ld{margin-left:28px!important;margin-right:28px!important}.my-7-ld{margin-bottom:28px!important;margin-top:28px!important}.m-7-ld-minus{margin:-28px!important}.mr-7-ld-minus{margin-right:-28px!important}.ml-7-ld-minus{margin-left:-28px!important}.mt-7-ld-minus{margin-top:-28px!important}.mb-7-ld-minus{margin-bottom:-28px!important}.p-8-ld{padding:32px!important}.pr-8-ld{padding-right:32px!important}.pl-8-ld{padding-left:32px!important}.pt-8-ld{padding-top:32px!important}.pb-8-ld{padding-bottom:32px!important}.px-8-ld{padding-left:32px!important;padding-right:32px!important}.py-8-ld{padding-bottom:32px!important;padding-top:32px!important}.m-8-ld{margin:32px!important}.mr-8-ld{margin-right:32px!important}.ml-8-ld{margin-left:32px!important}.mt-8-ld{margin-top:32px!important}.mb-8-ld{margin-bottom:32px!important}.mx-8-ld{margin-left:32px!important;margin-right:32px!important}.my-8-ld{margin-bottom:32px!important;margin-top:32px!important}.m-8-ld-minus{margin:-32px!important}.mr-8-ld-minus{margin-right:-32px!important}.ml-8-ld-minus{margin-left:-32px!important}.mt-8-ld-minus{margin-top:-32px!important}.mb-8-ld-minus{margin-bottom:-32px!important}.p-9-ld{padding:36px!important}.pr-9-ld{padding-right:36px!important}.pl-9-ld{padding-left:36px!important}.pt-9-ld{padding-top:36px!important}.pb-9-ld{padding-bottom:36px!important}.px-9-ld{padding-left:36px!important;padding-right:36px!important}.py-9-ld{padding-bottom:36px!important;padding-top:36px!important}.m-9-ld{margin:36px!important}.mr-9-ld{margin-right:36px!important}.ml-9-ld{margin-left:36px!important}.mt-9-ld{margin-top:36px!important}.mb-9-ld{margin-bottom:36px!important}.mx-9-ld{margin-left:36px!important;margin-right:36px!important}.my-9-ld{margin-bottom:36px!important;margin-top:36px!important}.m-9-ld-minus{margin:-36px!important}.mr-9-ld-minus{margin-right:-36px!important}.ml-9-ld-minus{margin-left:-36px!important}.mt-9-ld-minus{margin-top:-36px!important}.mb-9-ld-minus{margin-bottom:-36px!important}.p-10-ld{padding:40px!important}.pr-10-ld{padding-right:40px!important}.pl-10-ld{padding-left:40px!important}.pt-10-ld{padding-top:40px!important}.pb-10-ld{padding-bottom:40px!important}.px-10-ld{padding-left:40px!important;padding-right:40px!important}.py-10-ld{padding-bottom:40px!important;padding-top:40px!important}.m-10-ld{margin:40px!important}.mr-10-ld{margin-right:40px!important}.ml-10-ld{margin-left:40px!important}.mt-10-ld{margin-top:40px!important}.mb-10-ld{margin-bottom:40px!important}.mx-10-ld{margin-left:40px!important;margin-right:40px!important}.my-10-ld{margin-bottom:40px!important;margin-top:40px!important}.m-10-ld-minus{margin:-40px!important}.mr-10-ld-minus{margin-right:-40px!important}.ml-10-ld-minus{margin-left:-40px!important}.mt-10-ld-minus{margin-top:-40px!important}.mb-10-ld-minus{margin-bottom:-40px!important}.p-11-ld{padding:44px!important}.pr-11-ld{padding-right:44px!important}.pl-11-ld{padding-left:44px!important}.pt-11-ld{padding-top:44px!important}.pb-11-ld{padding-bottom:44px!important}.px-11-ld{padding-left:44px!important;padding-right:44px!important}.py-11-ld{padding-bottom:44px!important;padding-top:44px!important}.m-11-ld{margin:44px!important}.mr-11-ld{margin-right:44px!important}.ml-11-ld{margin-left:44px!important}.mt-11-ld{margin-top:44px!important}.mb-11-ld{margin-bottom:44px!important}.mx-11-ld{margin-left:44px!important;margin-right:44px!important}.my-11-ld{margin-bottom:44px!important;margin-top:44px!important}.m-11-ld-minus{margin:-44px!important}.mr-11-ld-minus{margin-right:-44px!important}.ml-11-ld-minus{margin-left:-44px!important}.mt-11-ld-minus{margin-top:-44px!important}.mb-11-ld-minus{margin-bottom:-44px!important}.p-12-ld{padding:48px!important}.pr-12-ld{padding-right:48px!important}.pl-12-ld{padding-left:48px!important}.pt-12-ld{padding-top:48px!important}.pb-12-ld{padding-bottom:48px!important}.px-12-ld{padding-left:48px!important;padding-right:48px!important}.py-12-ld{padding-bottom:48px!important;padding-top:48px!important}.m-12-ld{margin:48px!important}.mr-12-ld{margin-right:48px!important}.ml-12-ld{margin-left:48px!important}.mt-12-ld{margin-top:48px!important}.mb-12-ld{margin-bottom:48px!important}.mx-12-ld{margin-left:48px!important;margin-right:48px!important}.my-12-ld{margin-bottom:48px!important;margin-top:48px!important}.m-12-ld-minus{margin:-48px!important}.mr-12-ld-minus{margin-right:-48px!important}.ml-12-ld-minus{margin-left:-48px!important}.mt-12-ld-minus{margin-top:-48px!important}.mb-12-ld-minus{margin-bottom:-48px!important}.p-13-ld{padding:52px!important}.pr-13-ld{padding-right:52px!important}.pl-13-ld{padding-left:52px!important}.pt-13-ld{padding-top:52px!important}.pb-13-ld{padding-bottom:52px!important}.px-13-ld{padding-left:52px!important;padding-right:52px!important}.py-13-ld{padding-bottom:52px!important;padding-top:52px!important}.m-13-ld{margin:52px!important}.mr-13-ld{margin-right:52px!important}.ml-13-ld{margin-left:52px!important}.mt-13-ld{margin-top:52px!important}.mb-13-ld{margin-bottom:52px!important}.mx-13-ld{margin-left:52px!important;margin-right:52px!important}.my-13-ld{margin-bottom:52px!important;margin-top:52px!important}.m-13-ld-minus{margin:-52px!important}.mr-13-ld-minus{margin-right:-52px!important}.ml-13-ld-minus{margin-left:-52px!important}.mt-13-ld-minus{margin-top:-52px!important}.mb-13-ld-minus{margin-bottom:-52px!important}.p-14-ld{padding:56px!important}.pr-14-ld{padding-right:56px!important}.pl-14-ld{padding-left:56px!important}.pt-14-ld{padding-top:56px!important}.pb-14-ld{padding-bottom:56px!important}.px-14-ld{padding-left:56px!important;padding-right:56px!important}.py-14-ld{padding-bottom:56px!important;padding-top:56px!important}.m-14-ld{margin:56px!important}.mr-14-ld{margin-right:56px!important}.ml-14-ld{margin-left:56px!important}.mt-14-ld{margin-top:56px!important}.mb-14-ld{margin-bottom:56px!important}.mx-14-ld{margin-left:56px!important;margin-right:56px!important}.my-14-ld{margin-bottom:56px!important;margin-top:56px!important}.m-14-ld-minus{margin:-56px!important}.mr-14-ld-minus{margin-right:-56px!important}.ml-14-ld-minus{margin-left:-56px!important}.mt-14-ld-minus{margin-top:-56px!important}.mb-14-ld-minus{margin-bottom:-56px!important}.p-15-ld{padding:60px!important}.pr-15-ld{padding-right:60px!important}.pl-15-ld{padding-left:60px!important}.pt-15-ld{padding-top:60px!important}.pb-15-ld{padding-bottom:60px!important}.px-15-ld{padding-left:60px!important;padding-right:60px!important}.py-15-ld{padding-bottom:60px!important;padding-top:60px!important}.m-15-ld{margin:60px!important}.mr-15-ld{margin-right:60px!important}.ml-15-ld{margin-left:60px!important}.mt-15-ld{margin-top:60px!important}.mb-15-ld{margin-bottom:60px!important}.mx-15-ld{margin-left:60px!important;margin-right:60px!important}.my-15-ld{margin-bottom:60px!important;margin-top:60px!important}.m-15-ld-minus{margin:-60px!important}.mr-15-ld-minus{margin-right:-60px!important}.ml-15-ld-minus{margin-left:-60px!important}.mt-15-ld-minus{margin-top:-60px!important}.mb-15-ld-minus{margin-bottom:-60px!important}.p-16-ld{padding:64px!important}.pr-16-ld{padding-right:64px!important}.pl-16-ld{padding-left:64px!important}.pt-16-ld{padding-top:64px!important}.pb-16-ld{padding-bottom:64px!important}.px-16-ld{padding-left:64px!important;padding-right:64px!important}.py-16-ld{padding-bottom:64px!important;padding-top:64px!important}.m-16-ld{margin:64px!important}.mr-16-ld{margin-right:64px!important}.ml-16-ld{margin-left:64px!important}.mt-16-ld{margin-top:64px!important}.mb-16-ld{margin-bottom:64px!important}.mx-16-ld{margin-left:64px!important;margin-right:64px!important}.my-16-ld{margin-bottom:64px!important;margin-top:64px!important}.m-16-ld-minus{margin:-64px!important}.mr-16-ld-minus{margin-right:-64px!important}.ml-16-ld-minus{margin-left:-64px!important}.mt-16-ld-minus{margin-top:-64px!important}.mb-16-ld-minus{margin-bottom:-64px!important}.p-17-ld{padding:68px!important}.pr-17-ld{padding-right:68px!important}.pl-17-ld{padding-left:68px!important}.pt-17-ld{padding-top:68px!important}.pb-17-ld{padding-bottom:68px!important}.px-17-ld{padding-left:68px!important;padding-right:68px!important}.py-17-ld{padding-bottom:68px!important;padding-top:68px!important}.m-17-ld{margin:68px!important}.mr-17-ld{margin-right:68px!important}.ml-17-ld{margin-left:68px!important}.mt-17-ld{margin-top:68px!important}.mb-17-ld{margin-bottom:68px!important}.mx-17-ld{margin-left:68px!important;margin-right:68px!important}.my-17-ld{margin-bottom:68px!important;margin-top:68px!important}.m-17-ld-minus{margin:-68px!important}.mr-17-ld-minus{margin-right:-68px!important}.ml-17-ld-minus{margin-left:-68px!important}.mt-17-ld-minus{margin-top:-68px!important}.mb-17-ld-minus{margin-bottom:-68px!important}.p-18-ld{padding:72px!important}.pr-18-ld{padding-right:72px!important}.pl-18-ld{padding-left:72px!important}.pt-18-ld{padding-top:72px!important}.pb-18-ld{padding-bottom:72px!important}.px-18-ld{padding-left:72px!important;padding-right:72px!important}.py-18-ld{padding-bottom:72px!important;padding-top:72px!important}.m-18-ld{margin:72px!important}.mr-18-ld{margin-right:72px!important}.ml-18-ld{margin-left:72px!important}.mt-18-ld{margin-top:72px!important}.mb-18-ld{margin-bottom:72px!important}.mx-18-ld{margin-left:72px!important;margin-right:72px!important}.my-18-ld{margin-bottom:72px!important;margin-top:72px!important}.m-18-ld-minus{margin:-72px!important}.mr-18-ld-minus{margin-right:-72px!important}.ml-18-ld-minus{margin-left:-72px!important}.mt-18-ld-minus{margin-top:-72px!important}.mb-18-ld-minus{margin-bottom:-72px!important}.p-19-ld{padding:76px!important}.pr-19-ld{padding-right:76px!important}.pl-19-ld{padding-left:76px!important}.pt-19-ld{padding-top:76px!important}.pb-19-ld{padding-bottom:76px!important}.px-19-ld{padding-left:76px!important;padding-right:76px!important}.py-19-ld{padding-bottom:76px!important;padding-top:76px!important}.m-19-ld{margin:76px!important}.mr-19-ld{margin-right:76px!important}.ml-19-ld{margin-left:76px!important}.mt-19-ld{margin-top:76px!important}.mb-19-ld{margin-bottom:76px!important}.mx-19-ld{margin-left:76px!important;margin-right:76px!important}.my-19-ld{margin-bottom:76px!important;margin-top:76px!important}.m-19-ld-minus{margin:-76px!important}.mr-19-ld-minus{margin-right:-76px!important}.ml-19-ld-minus{margin-left:-76px!important}.mt-19-ld-minus{margin-top:-76px!important}.mb-19-ld-minus{margin-bottom:-76px!important}.p-20-ld{padding:80px!important}.pr-20-ld{padding-right:80px!important}.pl-20-ld{padding-left:80px!important}.pt-20-ld{padding-top:80px!important}.pb-20-ld{padding-bottom:80px!important}.px-20-ld{padding-left:80px!important;padding-right:80px!important}.py-20-ld{padding-bottom:80px!important;padding-top:80px!important}.m-20-ld{margin:80px!important}.mr-20-ld{margin-right:80px!important}.ml-20-ld{margin-left:80px!important}.mt-20-ld{margin-top:80px!important}.mb-20-ld{margin-bottom:80px!important}.mx-20-ld{margin-left:80px!important;margin-right:80px!important}.my-20-ld{margin-bottom:80px!important;margin-top:80px!important}.m-20-ld-minus{margin:-80px!important}.mr-20-ld-minus{margin-right:-80px!important}.ml-20-ld-minus{margin-left:-80px!important}.mt-20-ld-minus{margin-top:-80px!important}.mb-20-ld-minus{margin-bottom:-80px!important}}@media screen and (min-width:768px){.mx-auto-md{margin-right:auto!important}.ml-auto-md,.mx-auto-md{margin-left:auto!important}.mr-auto-md{margin-right:auto!important}.mt-auto-md{margin-top:auto!important}.mb-auto-md{margin-bottom:auto!important}.p-0-md{padding:0!important}.pr-0-md{padding-right:0!important}.pl-0-md{padding-left:0!important}.pt-0-md{padding-top:0!important}.pb-0-md{padding-bottom:0!important}.px-0-md{padding-left:0!important;padding-right:0!important}.py-0-md{padding-bottom:0!important;padding-top:0!important}.m-0-md{margin:0!important}.mr-0-md{margin-right:0!important}.ml-0-md{margin-left:0!important}.mt-0-md{margin-top:0!important}.mb-0-md{margin-bottom:0!important}.mx-0-md{margin-left:0!important;margin-right:0!important}.my-0-md{margin-bottom:0!important;margin-top:0!important}.m-0-md-minus{margin:0!important}.mr-0-md-minus{margin-right:0!important}.ml-0-md-minus{margin-left:0!important}.mt-0-md-minus{margin-top:0!important}.mb-0-md-minus{margin-bottom:0!important}.p-1-md{padding:4px!important}.pr-1-md{padding-right:4px!important}.pl-1-md{padding-left:4px!important}.pt-1-md{padding-top:4px!important}.pb-1-md{padding-bottom:4px!important}.px-1-md{padding-left:4px!important;padding-right:4px!important}.py-1-md{padding-bottom:4px!important;padding-top:4px!important}.m-1-md{margin:4px!important}.mr-1-md{margin-right:4px!important}.ml-1-md{margin-left:4px!important}.mt-1-md{margin-top:4px!important}.mb-1-md{margin-bottom:4px!important}.mx-1-md{margin-left:4px!important;margin-right:4px!important}.my-1-md{margin-bottom:4px!important;margin-top:4px!important}.m-1-md-minus{margin:-4px!important}.mr-1-md-minus{margin-right:-4px!important}.ml-1-md-minus{margin-left:-4px!important}.mt-1-md-minus{margin-top:-4px!important}.mb-1-md-minus{margin-bottom:-4px!important}.p-2-md{padding:8px!important}.pr-2-md{padding-right:8px!important}.pl-2-md{padding-left:8px!important}.pt-2-md{padding-top:8px!important}.pb-2-md{padding-bottom:8px!important}.px-2-md{padding-left:8px!important;padding-right:8px!important}.py-2-md{padding-bottom:8px!important;padding-top:8px!important}.m-2-md{margin:8px!important}.mr-2-md{margin-right:8px!important}.ml-2-md{margin-left:8px!important}.mt-2-md{margin-top:8px!important}.mb-2-md{margin-bottom:8px!important}.mx-2-md{margin-left:8px!important;margin-right:8px!important}.my-2-md{margin-bottom:8px!important;margin-top:8px!important}.m-2-md-minus{margin:-8px!important}.mr-2-md-minus{margin-right:-8px!important}.ml-2-md-minus{margin-left:-8px!important}.mt-2-md-minus{margin-top:-8px!important}.mb-2-md-minus{margin-bottom:-8px!important}.p-3-md{padding:12px!important}.pr-3-md{padding-right:12px!important}.pl-3-md{padding-left:12px!important}.pt-3-md{padding-top:12px!important}.pb-3-md{padding-bottom:12px!important}.px-3-md{padding-left:12px!important;padding-right:12px!important}.py-3-md{padding-bottom:12px!important;padding-top:12px!important}.m-3-md{margin:12px!important}.mr-3-md{margin-right:12px!important}.ml-3-md{margin-left:12px!important}.mt-3-md{margin-top:12px!important}.mb-3-md{margin-bottom:12px!important}.mx-3-md{margin-left:12px!important;margin-right:12px!important}.my-3-md{margin-bottom:12px!important;margin-top:12px!important}.m-3-md-minus{margin:-12px!important}.mr-3-md-minus{margin-right:-12px!important}.ml-3-md-minus{margin-left:-12px!important}.mt-3-md-minus{margin-top:-12px!important}.mb-3-md-minus{margin-bottom:-12px!important}.p-4-md{padding:16px!important}.pr-4-md{padding-right:16px!important}.pl-4-md{padding-left:16px!important}.pt-4-md{padding-top:16px!important}.pb-4-md{padding-bottom:16px!important}.px-4-md{padding-left:16px!important;padding-right:16px!important}.py-4-md{padding-bottom:16px!important;padding-top:16px!important}.m-4-md{margin:16px!important}.mr-4-md{margin-right:16px!important}.ml-4-md{margin-left:16px!important}.mt-4-md{margin-top:16px!important}.mb-4-md{margin-bottom:16px!important}.mx-4-md{margin-left:16px!important;margin-right:16px!important}.my-4-md{margin-bottom:16px!important;margin-top:16px!important}.m-4-md-minus{margin:-16px!important}.mr-4-md-minus{margin-right:-16px!important}.ml-4-md-minus{margin-left:-16px!important}.mt-4-md-minus{margin-top:-16px!important}.mb-4-md-minus{margin-bottom:-16px!important}.p-5-md{padding:20px!important}.pr-5-md{padding-right:20px!important}.pl-5-md{padding-left:20px!important}.pt-5-md{padding-top:20px!important}.pb-5-md{padding-bottom:20px!important}.px-5-md{padding-left:20px!important;padding-right:20px!important}.py-5-md{padding-bottom:20px!important;padding-top:20px!important}.m-5-md{margin:20px!important}.mr-5-md{margin-right:20px!important}.ml-5-md{margin-left:20px!important}.mt-5-md{margin-top:20px!important}.mb-5-md{margin-bottom:20px!important}.mx-5-md{margin-left:20px!important;margin-right:20px!important}.my-5-md{margin-bottom:20px!important;margin-top:20px!important}.m-5-md-minus{margin:-20px!important}.mr-5-md-minus{margin-right:-20px!important}.ml-5-md-minus{margin-left:-20px!important}.mt-5-md-minus{margin-top:-20px!important}.mb-5-md-minus{margin-bottom:-20px!important}.p-6-md{padding:24px!important}.pr-6-md{padding-right:24px!important}.pl-6-md{padding-left:24px!important}.pt-6-md{padding-top:24px!important}.pb-6-md{padding-bottom:24px!important}.px-6-md{padding-left:24px!important;padding-right:24px!important}.py-6-md{padding-bottom:24px!important;padding-top:24px!important}.m-6-md{margin:24px!important}.mr-6-md{margin-right:24px!important}.ml-6-md{margin-left:24px!important}.mt-6-md{margin-top:24px!important}.mb-6-md{margin-bottom:24px!important}.mx-6-md{margin-left:24px!important;margin-right:24px!important}.my-6-md{margin-bottom:24px!important;margin-top:24px!important}.m-6-md-minus{margin:-24px!important}.mr-6-md-minus{margin-right:-24px!important}.ml-6-md-minus{margin-left:-24px!important}.mt-6-md-minus{margin-top:-24px!important}.mb-6-md-minus{margin-bottom:-24px!important}.p-7-md{padding:28px!important}.pr-7-md{padding-right:28px!important}.pl-7-md{padding-left:28px!important}.pt-7-md{padding-top:28px!important}.pb-7-md{padding-bottom:28px!important}.px-7-md{padding-left:28px!important;padding-right:28px!important}.py-7-md{padding-bottom:28px!important;padding-top:28px!important}.m-7-md{margin:28px!important}.mr-7-md{margin-right:28px!important}.ml-7-md{margin-left:28px!important}.mt-7-md{margin-top:28px!important}.mb-7-md{margin-bottom:28px!important}.mx-7-md{margin-left:28px!important;margin-right:28px!important}.my-7-md{margin-bottom:28px!important;margin-top:28px!important}.m-7-md-minus{margin:-28px!important}.mr-7-md-minus{margin-right:-28px!important}.ml-7-md-minus{margin-left:-28px!important}.mt-7-md-minus{margin-top:-28px!important}.mb-7-md-minus{margin-bottom:-28px!important}.p-8-md{padding:32px!important}.pr-8-md{padding-right:32px!important}.pl-8-md{padding-left:32px!important}.pt-8-md{padding-top:32px!important}.pb-8-md{padding-bottom:32px!important}.px-8-md{padding-left:32px!important;padding-right:32px!important}.py-8-md{padding-bottom:32px!important;padding-top:32px!important}.m-8-md{margin:32px!important}.mr-8-md{margin-right:32px!important}.ml-8-md{margin-left:32px!important}.mt-8-md{margin-top:32px!important}.mb-8-md{margin-bottom:32px!important}.mx-8-md{margin-left:32px!important;margin-right:32px!important}.my-8-md{margin-bottom:32px!important;margin-top:32px!important}.m-8-md-minus{margin:-32px!important}.mr-8-md-minus{margin-right:-32px!important}.ml-8-md-minus{margin-left:-32px!important}.mt-8-md-minus{margin-top:-32px!important}.mb-8-md-minus{margin-bottom:-32px!important}.p-9-md{padding:36px!important}.pr-9-md{padding-right:36px!important}.pl-9-md{padding-left:36px!important}.pt-9-md{padding-top:36px!important}.pb-9-md{padding-bottom:36px!important}.px-9-md{padding-left:36px!important;padding-right:36px!important}.py-9-md{padding-bottom:36px!important;padding-top:36px!important}.m-9-md{margin:36px!important}.mr-9-md{margin-right:36px!important}.ml-9-md{margin-left:36px!important}.mt-9-md{margin-top:36px!important}.mb-9-md{margin-bottom:36px!important}.mx-9-md{margin-left:36px!important;margin-right:36px!important}.my-9-md{margin-bottom:36px!important;margin-top:36px!important}.m-9-md-minus{margin:-36px!important}.mr-9-md-minus{margin-right:-36px!important}.ml-9-md-minus{margin-left:-36px!important}.mt-9-md-minus{margin-top:-36px!important}.mb-9-md-minus{margin-bottom:-36px!important}.p-10-md{padding:40px!important}.pr-10-md{padding-right:40px!important}.pl-10-md{padding-left:40px!important}.pt-10-md{padding-top:40px!important}.pb-10-md{padding-bottom:40px!important}.px-10-md{padding-left:40px!important;padding-right:40px!important}.py-10-md{padding-bottom:40px!important;padding-top:40px!important}.m-10-md{margin:40px!important}.mr-10-md{margin-right:40px!important}.ml-10-md{margin-left:40px!important}.mt-10-md{margin-top:40px!important}.mb-10-md{margin-bottom:40px!important}.mx-10-md{margin-left:40px!important;margin-right:40px!important}.my-10-md{margin-bottom:40px!important;margin-top:40px!important}.m-10-md-minus{margin:-40px!important}.mr-10-md-minus{margin-right:-40px!important}.ml-10-md-minus{margin-left:-40px!important}.mt-10-md-minus{margin-top:-40px!important}.mb-10-md-minus{margin-bottom:-40px!important}.p-11-md{padding:44px!important}.pr-11-md{padding-right:44px!important}.pl-11-md{padding-left:44px!important}.pt-11-md{padding-top:44px!important}.pb-11-md{padding-bottom:44px!important}.px-11-md{padding-left:44px!important;padding-right:44px!important}.py-11-md{padding-bottom:44px!important;padding-top:44px!important}.m-11-md{margin:44px!important}.mr-11-md{margin-right:44px!important}.ml-11-md{margin-left:44px!important}.mt-11-md{margin-top:44px!important}.mb-11-md{margin-bottom:44px!important}.mx-11-md{margin-left:44px!important;margin-right:44px!important}.my-11-md{margin-bottom:44px!important;margin-top:44px!important}.m-11-md-minus{margin:-44px!important}.mr-11-md-minus{margin-right:-44px!important}.ml-11-md-minus{margin-left:-44px!important}.mt-11-md-minus{margin-top:-44px!important}.mb-11-md-minus{margin-bottom:-44px!important}.p-12-md{padding:48px!important}.pr-12-md{padding-right:48px!important}.pl-12-md{padding-left:48px!important}.pt-12-md{padding-top:48px!important}.pb-12-md{padding-bottom:48px!important}.px-12-md{padding-left:48px!important;padding-right:48px!important}.py-12-md{padding-bottom:48px!important;padding-top:48px!important}.m-12-md{margin:48px!important}.mr-12-md{margin-right:48px!important}.ml-12-md{margin-left:48px!important}.mt-12-md{margin-top:48px!important}.mb-12-md{margin-bottom:48px!important}.mx-12-md{margin-left:48px!important;margin-right:48px!important}.my-12-md{margin-bottom:48px!important;margin-top:48px!important}.m-12-md-minus{margin:-48px!important}.mr-12-md-minus{margin-right:-48px!important}.ml-12-md-minus{margin-left:-48px!important}.mt-12-md-minus{margin-top:-48px!important}.mb-12-md-minus{margin-bottom:-48px!important}.p-13-md{padding:52px!important}.pr-13-md{padding-right:52px!important}.pl-13-md{padding-left:52px!important}.pt-13-md{padding-top:52px!important}.pb-13-md{padding-bottom:52px!important}.px-13-md{padding-left:52px!important;padding-right:52px!important}.py-13-md{padding-bottom:52px!important;padding-top:52px!important}.m-13-md{margin:52px!important}.mr-13-md{margin-right:52px!important}.ml-13-md{margin-left:52px!important}.mt-13-md{margin-top:52px!important}.mb-13-md{margin-bottom:52px!important}.mx-13-md{margin-left:52px!important;margin-right:52px!important}.my-13-md{margin-bottom:52px!important;margin-top:52px!important}.m-13-md-minus{margin:-52px!important}.mr-13-md-minus{margin-right:-52px!important}.ml-13-md-minus{margin-left:-52px!important}.mt-13-md-minus{margin-top:-52px!important}.mb-13-md-minus{margin-bottom:-52px!important}.p-14-md{padding:56px!important}.pr-14-md{padding-right:56px!important}.pl-14-md{padding-left:56px!important}.pt-14-md{padding-top:56px!important}.pb-14-md{padding-bottom:56px!important}.px-14-md{padding-left:56px!important;padding-right:56px!important}.py-14-md{padding-bottom:56px!important;padding-top:56px!important}.m-14-md{margin:56px!important}.mr-14-md{margin-right:56px!important}.ml-14-md{margin-left:56px!important}.mt-14-md{margin-top:56px!important}.mb-14-md{margin-bottom:56px!important}.mx-14-md{margin-left:56px!important;margin-right:56px!important}.my-14-md{margin-bottom:56px!important;margin-top:56px!important}.m-14-md-minus{margin:-56px!important}.mr-14-md-minus{margin-right:-56px!important}.ml-14-md-minus{margin-left:-56px!important}.mt-14-md-minus{margin-top:-56px!important}.mb-14-md-minus{margin-bottom:-56px!important}.p-15-md{padding:60px!important}.pr-15-md{padding-right:60px!important}.pl-15-md{padding-left:60px!important}.pt-15-md{padding-top:60px!important}.pb-15-md{padding-bottom:60px!important}.px-15-md{padding-left:60px!important;padding-right:60px!important}.py-15-md{padding-bottom:60px!important;padding-top:60px!important}.m-15-md{margin:60px!important}.mr-15-md{margin-right:60px!important}.ml-15-md{margin-left:60px!important}.mt-15-md{margin-top:60px!important}.mb-15-md{margin-bottom:60px!important}.mx-15-md{margin-left:60px!important;margin-right:60px!important}.my-15-md{margin-bottom:60px!important;margin-top:60px!important}.m-15-md-minus{margin:-60px!important}.mr-15-md-minus{margin-right:-60px!important}.ml-15-md-minus{margin-left:-60px!important}.mt-15-md-minus{margin-top:-60px!important}.mb-15-md-minus{margin-bottom:-60px!important}.p-16-md{padding:64px!important}.pr-16-md{padding-right:64px!important}.pl-16-md{padding-left:64px!important}.pt-16-md{padding-top:64px!important}.pb-16-md{padding-bottom:64px!important}.px-16-md{padding-left:64px!important;padding-right:64px!important}.py-16-md{padding-bottom:64px!important;padding-top:64px!important}.m-16-md{margin:64px!important}.mr-16-md{margin-right:64px!important}.ml-16-md{margin-left:64px!important}.mt-16-md{margin-top:64px!important}.mb-16-md{margin-bottom:64px!important}.mx-16-md{margin-left:64px!important;margin-right:64px!important}.my-16-md{margin-bottom:64px!important;margin-top:64px!important}.m-16-md-minus{margin:-64px!important}.mr-16-md-minus{margin-right:-64px!important}.ml-16-md-minus{margin-left:-64px!important}.mt-16-md-minus{margin-top:-64px!important}.mb-16-md-minus{margin-bottom:-64px!important}.p-17-md{padding:68px!important}.pr-17-md{padding-right:68px!important}.pl-17-md{padding-left:68px!important}.pt-17-md{padding-top:68px!important}.pb-17-md{padding-bottom:68px!important}.px-17-md{padding-left:68px!important;padding-right:68px!important}.py-17-md{padding-bottom:68px!important;padding-top:68px!important}.m-17-md{margin:68px!important}.mr-17-md{margin-right:68px!important}.ml-17-md{margin-left:68px!important}.mt-17-md{margin-top:68px!important}.mb-17-md{margin-bottom:68px!important}.mx-17-md{margin-left:68px!important;margin-right:68px!important}.my-17-md{margin-bottom:68px!important;margin-top:68px!important}.m-17-md-minus{margin:-68px!important}.mr-17-md-minus{margin-right:-68px!important}.ml-17-md-minus{margin-left:-68px!important}.mt-17-md-minus{margin-top:-68px!important}.mb-17-md-minus{margin-bottom:-68px!important}.p-18-md{padding:72px!important}.pr-18-md{padding-right:72px!important}.pl-18-md{padding-left:72px!important}.pt-18-md{padding-top:72px!important}.pb-18-md{padding-bottom:72px!important}.px-18-md{padding-left:72px!important;padding-right:72px!important}.py-18-md{padding-bottom:72px!important;padding-top:72px!important}.m-18-md{margin:72px!important}.mr-18-md{margin-right:72px!important}.ml-18-md{margin-left:72px!important}.mt-18-md{margin-top:72px!important}.mb-18-md{margin-bottom:72px!important}.mx-18-md{margin-left:72px!important;margin-right:72px!important}.my-18-md{margin-bottom:72px!important;margin-top:72px!important}.m-18-md-minus{margin:-72px!important}.mr-18-md-minus{margin-right:-72px!important}.ml-18-md-minus{margin-left:-72px!important}.mt-18-md-minus{margin-top:-72px!important}.mb-18-md-minus{margin-bottom:-72px!important}.p-19-md{padding:76px!important}.pr-19-md{padding-right:76px!important}.pl-19-md{padding-left:76px!important}.pt-19-md{padding-top:76px!important}.pb-19-md{padding-bottom:76px!important}.px-19-md{padding-left:76px!important;padding-right:76px!important}.py-19-md{padding-bottom:76px!important;padding-top:76px!important}.m-19-md{margin:76px!important}.mr-19-md{margin-right:76px!important}.ml-19-md{margin-left:76px!important}.mt-19-md{margin-top:76px!important}.mb-19-md{margin-bottom:76px!important}.mx-19-md{margin-left:76px!important;margin-right:76px!important}.my-19-md{margin-bottom:76px!important;margin-top:76px!important}.m-19-md-minus{margin:-76px!important}.mr-19-md-minus{margin-right:-76px!important}.ml-19-md-minus{margin-left:-76px!important}.mt-19-md-minus{margin-top:-76px!important}.mb-19-md-minus{margin-bottom:-76px!important}.p-20-md{padding:80px!important}.pr-20-md{padding-right:80px!important}.pl-20-md{padding-left:80px!important}.pt-20-md{padding-top:80px!important}.pb-20-md{padding-bottom:80px!important}.px-20-md{padding-left:80px!important;padding-right:80px!important}.py-20-md{padding-bottom:80px!important;padding-top:80px!important}.m-20-md{margin:80px!important}.mr-20-md{margin-right:80px!important}.ml-20-md{margin-left:80px!important}.mt-20-md{margin-top:80px!important}.mb-20-md{margin-bottom:80px!important}.mx-20-md{margin-left:80px!important;margin-right:80px!important}.my-20-md{margin-bottom:80px!important;margin-top:80px!important}.m-20-md-minus{margin:-80px!important}.mr-20-md-minus{margin-right:-80px!important}.ml-20-md-minus{margin-left:-80px!important}.mt-20-md-minus{margin-top:-80px!important}.mb-20-md-minus{margin-bottom:-80px!important}}@media screen and (min-width:992px){.mx-auto-lg{margin-right:auto!important}.ml-auto-lg,.mx-auto-lg{margin-left:auto!important}.mr-auto-lg{margin-right:auto!important}.mt-auto-lg{margin-top:auto!important}.mb-auto-lg{margin-bottom:auto!important}.p-0-lg{padding:0!important}.pr-0-lg{padding-right:0!important}.pl-0-lg{padding-left:0!important}.pt-0-lg{padding-top:0!important}.pb-0-lg{padding-bottom:0!important}.px-0-lg{padding-left:0!important;padding-right:0!important}.py-0-lg{padding-bottom:0!important;padding-top:0!important}.m-0-lg{margin:0!important}.mr-0-lg{margin-right:0!important}.ml-0-lg{margin-left:0!important}.mt-0-lg{margin-top:0!important}.mb-0-lg{margin-bottom:0!important}.mx-0-lg{margin-left:0!important;margin-right:0!important}.my-0-lg{margin-bottom:0!important;margin-top:0!important}.m-0-lg-minus{margin:0!important}.mr-0-lg-minus{margin-right:0!important}.ml-0-lg-minus{margin-left:0!important}.mt-0-lg-minus{margin-top:0!important}.mb-0-lg-minus{margin-bottom:0!important}.p-1-lg{padding:4px!important}.pr-1-lg{padding-right:4px!important}.pl-1-lg{padding-left:4px!important}.pt-1-lg{padding-top:4px!important}.pb-1-lg{padding-bottom:4px!important}.px-1-lg{padding-left:4px!important;padding-right:4px!important}.py-1-lg{padding-bottom:4px!important;padding-top:4px!important}.m-1-lg{margin:4px!important}.mr-1-lg{margin-right:4px!important}.ml-1-lg{margin-left:4px!important}.mt-1-lg{margin-top:4px!important}.mb-1-lg{margin-bottom:4px!important}.mx-1-lg{margin-left:4px!important;margin-right:4px!important}.my-1-lg{margin-bottom:4px!important;margin-top:4px!important}.m-1-lg-minus{margin:-4px!important}.mr-1-lg-minus{margin-right:-4px!important}.ml-1-lg-minus{margin-left:-4px!important}.mt-1-lg-minus{margin-top:-4px!important}.mb-1-lg-minus{margin-bottom:-4px!important}.p-2-lg{padding:8px!important}.pr-2-lg{padding-right:8px!important}.pl-2-lg{padding-left:8px!important}.pt-2-lg{padding-top:8px!important}.pb-2-lg{padding-bottom:8px!important}.px-2-lg{padding-left:8px!important;padding-right:8px!important}.py-2-lg{padding-bottom:8px!important;padding-top:8px!important}.m-2-lg{margin:8px!important}.mr-2-lg{margin-right:8px!important}.ml-2-lg{margin-left:8px!important}.mt-2-lg{margin-top:8px!important}.mb-2-lg{margin-bottom:8px!important}.mx-2-lg{margin-left:8px!important;margin-right:8px!important}.my-2-lg{margin-bottom:8px!important;margin-top:8px!important}.m-2-lg-minus{margin:-8px!important}.mr-2-lg-minus{margin-right:-8px!important}.ml-2-lg-minus{margin-left:-8px!important}.mt-2-lg-minus{margin-top:-8px!important}.mb-2-lg-minus{margin-bottom:-8px!important}.p-3-lg{padding:12px!important}.pr-3-lg{padding-right:12px!important}.pl-3-lg{padding-left:12px!important}.pt-3-lg{padding-top:12px!important}.pb-3-lg{padding-bottom:12px!important}.px-3-lg{padding-left:12px!important;padding-right:12px!important}.py-3-lg{padding-bottom:12px!important;padding-top:12px!important}.m-3-lg{margin:12px!important}.mr-3-lg{margin-right:12px!important}.ml-3-lg{margin-left:12px!important}.mt-3-lg{margin-top:12px!important}.mb-3-lg{margin-bottom:12px!important}.mx-3-lg{margin-left:12px!important;margin-right:12px!important}.my-3-lg{margin-bottom:12px!important;margin-top:12px!important}.m-3-lg-minus{margin:-12px!important}.mr-3-lg-minus{margin-right:-12px!important}.ml-3-lg-minus{margin-left:-12px!important}.mt-3-lg-minus{margin-top:-12px!important}.mb-3-lg-minus{margin-bottom:-12px!important}.p-4-lg{padding:16px!important}.pr-4-lg{padding-right:16px!important}.pl-4-lg{padding-left:16px!important}.pt-4-lg{padding-top:16px!important}.pb-4-lg{padding-bottom:16px!important}.px-4-lg{padding-left:16px!important;padding-right:16px!important}.py-4-lg{padding-bottom:16px!important;padding-top:16px!important}.m-4-lg{margin:16px!important}.mr-4-lg{margin-right:16px!important}.ml-4-lg{margin-left:16px!important}.mt-4-lg{margin-top:16px!important}.mb-4-lg{margin-bottom:16px!important}.mx-4-lg{margin-left:16px!important;margin-right:16px!important}.my-4-lg{margin-bottom:16px!important;margin-top:16px!important}.m-4-lg-minus{margin:-16px!important}.mr-4-lg-minus{margin-right:-16px!important}.ml-4-lg-minus{margin-left:-16px!important}.mt-4-lg-minus{margin-top:-16px!important}.mb-4-lg-minus{margin-bottom:-16px!important}.p-5-lg{padding:20px!important}.pr-5-lg{padding-right:20px!important}.pl-5-lg{padding-left:20px!important}.pt-5-lg{padding-top:20px!important}.pb-5-lg{padding-bottom:20px!important}.px-5-lg{padding-left:20px!important;padding-right:20px!important}.py-5-lg{padding-bottom:20px!important;padding-top:20px!important}.m-5-lg{margin:20px!important}.mr-5-lg{margin-right:20px!important}.ml-5-lg{margin-left:20px!important}.mt-5-lg{margin-top:20px!important}.mb-5-lg{margin-bottom:20px!important}.mx-5-lg{margin-left:20px!important;margin-right:20px!important}.my-5-lg{margin-bottom:20px!important;margin-top:20px!important}.m-5-lg-minus{margin:-20px!important}.mr-5-lg-minus{margin-right:-20px!important}.ml-5-lg-minus{margin-left:-20px!important}.mt-5-lg-minus{margin-top:-20px!important}.mb-5-lg-minus{margin-bottom:-20px!important}.p-6-lg{padding:24px!important}.pr-6-lg{padding-right:24px!important}.pl-6-lg{padding-left:24px!important}.pt-6-lg{padding-top:24px!important}.pb-6-lg{padding-bottom:24px!important}.px-6-lg{padding-left:24px!important;padding-right:24px!important}.py-6-lg{padding-bottom:24px!important;padding-top:24px!important}.m-6-lg{margin:24px!important}.mr-6-lg{margin-right:24px!important}.ml-6-lg{margin-left:24px!important}.mt-6-lg{margin-top:24px!important}.mb-6-lg{margin-bottom:24px!important}.mx-6-lg{margin-left:24px!important;margin-right:24px!important}.my-6-lg{margin-bottom:24px!important;margin-top:24px!important}.m-6-lg-minus{margin:-24px!important}.mr-6-lg-minus{margin-right:-24px!important}.ml-6-lg-minus{margin-left:-24px!important}.mt-6-lg-minus{margin-top:-24px!important}.mb-6-lg-minus{margin-bottom:-24px!important}.p-7-lg{padding:28px!important}.pr-7-lg{padding-right:28px!important}.pl-7-lg{padding-left:28px!important}.pt-7-lg{padding-top:28px!important}.pb-7-lg{padding-bottom:28px!important}.px-7-lg{padding-left:28px!important;padding-right:28px!important}.py-7-lg{padding-bottom:28px!important;padding-top:28px!important}.m-7-lg{margin:28px!important}.mr-7-lg{margin-right:28px!important}.ml-7-lg{margin-left:28px!important}.mt-7-lg{margin-top:28px!important}.mb-7-lg{margin-bottom:28px!important}.mx-7-lg{margin-left:28px!important;margin-right:28px!important}.my-7-lg{margin-bottom:28px!important;margin-top:28px!important}.m-7-lg-minus{margin:-28px!important}.mr-7-lg-minus{margin-right:-28px!important}.ml-7-lg-minus{margin-left:-28px!important}.mt-7-lg-minus{margin-top:-28px!important}.mb-7-lg-minus{margin-bottom:-28px!important}.p-8-lg{padding:32px!important}.pr-8-lg{padding-right:32px!important}.pl-8-lg{padding-left:32px!important}.pt-8-lg{padding-top:32px!important}.pb-8-lg{padding-bottom:32px!important}.px-8-lg{padding-left:32px!important;padding-right:32px!important}.py-8-lg{padding-bottom:32px!important;padding-top:32px!important}.m-8-lg{margin:32px!important}.mr-8-lg{margin-right:32px!important}.ml-8-lg{margin-left:32px!important}.mt-8-lg{margin-top:32px!important}.mb-8-lg{margin-bottom:32px!important}.mx-8-lg{margin-left:32px!important;margin-right:32px!important}.my-8-lg{margin-bottom:32px!important;margin-top:32px!important}.m-8-lg-minus{margin:-32px!important}.mr-8-lg-minus{margin-right:-32px!important}.ml-8-lg-minus{margin-left:-32px!important}.mt-8-lg-minus{margin-top:-32px!important}.mb-8-lg-minus{margin-bottom:-32px!important}.p-9-lg{padding:36px!important}.pr-9-lg{padding-right:36px!important}.pl-9-lg{padding-left:36px!important}.pt-9-lg{padding-top:36px!important}.pb-9-lg{padding-bottom:36px!important}.px-9-lg{padding-left:36px!important;padding-right:36px!important}.py-9-lg{padding-bottom:36px!important;padding-top:36px!important}.m-9-lg{margin:36px!important}.mr-9-lg{margin-right:36px!important}.ml-9-lg{margin-left:36px!important}.mt-9-lg{margin-top:36px!important}.mb-9-lg{margin-bottom:36px!important}.mx-9-lg{margin-left:36px!important;margin-right:36px!important}.my-9-lg{margin-bottom:36px!important;margin-top:36px!important}.m-9-lg-minus{margin:-36px!important}.mr-9-lg-minus{margin-right:-36px!important}.ml-9-lg-minus{margin-left:-36px!important}.mt-9-lg-minus{margin-top:-36px!important}.mb-9-lg-minus{margin-bottom:-36px!important}.p-10-lg{padding:40px!important}.pr-10-lg{padding-right:40px!important}.pl-10-lg{padding-left:40px!important}.pt-10-lg{padding-top:40px!important}.pb-10-lg{padding-bottom:40px!important}.px-10-lg{padding-left:40px!important;padding-right:40px!important}.py-10-lg{padding-bottom:40px!important;padding-top:40px!important}.m-10-lg{margin:40px!important}.mr-10-lg{margin-right:40px!important}.ml-10-lg{margin-left:40px!important}.mt-10-lg{margin-top:40px!important}.mb-10-lg{margin-bottom:40px!important}.mx-10-lg{margin-left:40px!important;margin-right:40px!important}.my-10-lg{margin-bottom:40px!important;margin-top:40px!important}.m-10-lg-minus{margin:-40px!important}.mr-10-lg-minus{margin-right:-40px!important}.ml-10-lg-minus{margin-left:-40px!important}.mt-10-lg-minus{margin-top:-40px!important}.mb-10-lg-minus{margin-bottom:-40px!important}.p-11-lg{padding:44px!important}.pr-11-lg{padding-right:44px!important}.pl-11-lg{padding-left:44px!important}.pt-11-lg{padding-top:44px!important}.pb-11-lg{padding-bottom:44px!important}.px-11-lg{padding-left:44px!important;padding-right:44px!important}.py-11-lg{padding-bottom:44px!important;padding-top:44px!important}.m-11-lg{margin:44px!important}.mr-11-lg{margin-right:44px!important}.ml-11-lg{margin-left:44px!important}.mt-11-lg{margin-top:44px!important}.mb-11-lg{margin-bottom:44px!important}.mx-11-lg{margin-left:44px!important;margin-right:44px!important}.my-11-lg{margin-bottom:44px!important;margin-top:44px!important}.m-11-lg-minus{margin:-44px!important}.mr-11-lg-minus{margin-right:-44px!important}.ml-11-lg-minus{margin-left:-44px!important}.mt-11-lg-minus{margin-top:-44px!important}.mb-11-lg-minus{margin-bottom:-44px!important}.p-12-lg{padding:48px!important}.pr-12-lg{padding-right:48px!important}.pl-12-lg{padding-left:48px!important}.pt-12-lg{padding-top:48px!important}.pb-12-lg{padding-bottom:48px!important}.px-12-lg{padding-left:48px!important;padding-right:48px!important}.py-12-lg{padding-bottom:48px!important;padding-top:48px!important}.m-12-lg{margin:48px!important}.mr-12-lg{margin-right:48px!important}.ml-12-lg{margin-left:48px!important}.mt-12-lg{margin-top:48px!important}.mb-12-lg{margin-bottom:48px!important}.mx-12-lg{margin-left:48px!important;margin-right:48px!important}.my-12-lg{margin-bottom:48px!important;margin-top:48px!important}.m-12-lg-minus{margin:-48px!important}.mr-12-lg-minus{margin-right:-48px!important}.ml-12-lg-minus{margin-left:-48px!important}.mt-12-lg-minus{margin-top:-48px!important}.mb-12-lg-minus{margin-bottom:-48px!important}.p-13-lg{padding:52px!important}.pr-13-lg{padding-right:52px!important}.pl-13-lg{padding-left:52px!important}.pt-13-lg{padding-top:52px!important}.pb-13-lg{padding-bottom:52px!important}.px-13-lg{padding-left:52px!important;padding-right:52px!important}.py-13-lg{padding-bottom:52px!important;padding-top:52px!important}.m-13-lg{margin:52px!important}.mr-13-lg{margin-right:52px!important}.ml-13-lg{margin-left:52px!important}.mt-13-lg{margin-top:52px!important}.mb-13-lg{margin-bottom:52px!important}.mx-13-lg{margin-left:52px!important;margin-right:52px!important}.my-13-lg{margin-bottom:52px!important;margin-top:52px!important}.m-13-lg-minus{margin:-52px!important}.mr-13-lg-minus{margin-right:-52px!important}.ml-13-lg-minus{margin-left:-52px!important}.mt-13-lg-minus{margin-top:-52px!important}.mb-13-lg-minus{margin-bottom:-52px!important}.p-14-lg{padding:56px!important}.pr-14-lg{padding-right:56px!important}.pl-14-lg{padding-left:56px!important}.pt-14-lg{padding-top:56px!important}.pb-14-lg{padding-bottom:56px!important}.px-14-lg{padding-left:56px!important;padding-right:56px!important}.py-14-lg{padding-bottom:56px!important;padding-top:56px!important}.m-14-lg{margin:56px!important}.mr-14-lg{margin-right:56px!important}.ml-14-lg{margin-left:56px!important}.mt-14-lg{margin-top:56px!important}.mb-14-lg{margin-bottom:56px!important}.mx-14-lg{margin-left:56px!important;margin-right:56px!important}.my-14-lg{margin-bottom:56px!important;margin-top:56px!important}.m-14-lg-minus{margin:-56px!important}.mr-14-lg-minus{margin-right:-56px!important}.ml-14-lg-minus{margin-left:-56px!important}.mt-14-lg-minus{margin-top:-56px!important}.mb-14-lg-minus{margin-bottom:-56px!important}.p-15-lg{padding:60px!important}.pr-15-lg{padding-right:60px!important}.pl-15-lg{padding-left:60px!important}.pt-15-lg{padding-top:60px!important}.pb-15-lg{padding-bottom:60px!important}.px-15-lg{padding-left:60px!important;padding-right:60px!important}.py-15-lg{padding-bottom:60px!important;padding-top:60px!important}.m-15-lg{margin:60px!important}.mr-15-lg{margin-right:60px!important}.ml-15-lg{margin-left:60px!important}.mt-15-lg{margin-top:60px!important}.mb-15-lg{margin-bottom:60px!important}.mx-15-lg{margin-left:60px!important;margin-right:60px!important}.my-15-lg{margin-bottom:60px!important;margin-top:60px!important}.m-15-lg-minus{margin:-60px!important}.mr-15-lg-minus{margin-right:-60px!important}.ml-15-lg-minus{margin-left:-60px!important}.mt-15-lg-minus{margin-top:-60px!important}.mb-15-lg-minus{margin-bottom:-60px!important}.p-16-lg{padding:64px!important}.pr-16-lg{padding-right:64px!important}.pl-16-lg{padding-left:64px!important}.pt-16-lg{padding-top:64px!important}.pb-16-lg{padding-bottom:64px!important}.px-16-lg{padding-left:64px!important;padding-right:64px!important}.py-16-lg{padding-bottom:64px!important;padding-top:64px!important}.m-16-lg{margin:64px!important}.mr-16-lg{margin-right:64px!important}.ml-16-lg{margin-left:64px!important}.mt-16-lg{margin-top:64px!important}.mb-16-lg{margin-bottom:64px!important}.mx-16-lg{margin-left:64px!important;margin-right:64px!important}.my-16-lg{margin-bottom:64px!important;margin-top:64px!important}.m-16-lg-minus{margin:-64px!important}.mr-16-lg-minus{margin-right:-64px!important}.ml-16-lg-minus{margin-left:-64px!important}.mt-16-lg-minus{margin-top:-64px!important}.mb-16-lg-minus{margin-bottom:-64px!important}.p-17-lg{padding:68px!important}.pr-17-lg{padding-right:68px!important}.pl-17-lg{padding-left:68px!important}.pt-17-lg{padding-top:68px!important}.pb-17-lg{padding-bottom:68px!important}.px-17-lg{padding-left:68px!important;padding-right:68px!important}.py-17-lg{padding-bottom:68px!important;padding-top:68px!important}.m-17-lg{margin:68px!important}.mr-17-lg{margin-right:68px!important}.ml-17-lg{margin-left:68px!important}.mt-17-lg{margin-top:68px!important}.mb-17-lg{margin-bottom:68px!important}.mx-17-lg{margin-left:68px!important;margin-right:68px!important}.my-17-lg{margin-bottom:68px!important;margin-top:68px!important}.m-17-lg-minus{margin:-68px!important}.mr-17-lg-minus{margin-right:-68px!important}.ml-17-lg-minus{margin-left:-68px!important}.mt-17-lg-minus{margin-top:-68px!important}.mb-17-lg-minus{margin-bottom:-68px!important}.p-18-lg{padding:72px!important}.pr-18-lg{padding-right:72px!important}.pl-18-lg{padding-left:72px!important}.pt-18-lg{padding-top:72px!important}.pb-18-lg{padding-bottom:72px!important}.px-18-lg{padding-left:72px!important;padding-right:72px!important}.py-18-lg{padding-bottom:72px!important;padding-top:72px!important}.m-18-lg{margin:72px!important}.mr-18-lg{margin-right:72px!important}.ml-18-lg{margin-left:72px!important}.mt-18-lg{margin-top:72px!important}.mb-18-lg{margin-bottom:72px!important}.mx-18-lg{margin-left:72px!important;margin-right:72px!important}.my-18-lg{margin-bottom:72px!important;margin-top:72px!important}.m-18-lg-minus{margin:-72px!important}.mr-18-lg-minus{margin-right:-72px!important}.ml-18-lg-minus{margin-left:-72px!important}.mt-18-lg-minus{margin-top:-72px!important}.mb-18-lg-minus{margin-bottom:-72px!important}.p-19-lg{padding:76px!important}.pr-19-lg{padding-right:76px!important}.pl-19-lg{padding-left:76px!important}.pt-19-lg{padding-top:76px!important}.pb-19-lg{padding-bottom:76px!important}.px-19-lg{padding-left:76px!important;padding-right:76px!important}.py-19-lg{padding-bottom:76px!important;padding-top:76px!important}.m-19-lg{margin:76px!important}.mr-19-lg{margin-right:76px!important}.ml-19-lg{margin-left:76px!important}.mt-19-lg{margin-top:76px!important}.mb-19-lg{margin-bottom:76px!important}.mx-19-lg{margin-left:76px!important;margin-right:76px!important}.my-19-lg{margin-bottom:76px!important;margin-top:76px!important}.m-19-lg-minus{margin:-76px!important}.mr-19-lg-minus{margin-right:-76px!important}.ml-19-lg-minus{margin-left:-76px!important}.mt-19-lg-minus{margin-top:-76px!important}.mb-19-lg-minus{margin-bottom:-76px!important}.p-20-lg{padding:80px!important}.pr-20-lg{padding-right:80px!important}.pl-20-lg{padding-left:80px!important}.pt-20-lg{padding-top:80px!important}.pb-20-lg{padding-bottom:80px!important}.px-20-lg{padding-left:80px!important;padding-right:80px!important}.py-20-lg{padding-bottom:80px!important;padding-top:80px!important}.m-20-lg{margin:80px!important}.mr-20-lg{margin-right:80px!important}.ml-20-lg{margin-left:80px!important}.mt-20-lg{margin-top:80px!important}.mb-20-lg{margin-bottom:80px!important}.mx-20-lg{margin-left:80px!important;margin-right:80px!important}.my-20-lg{margin-bottom:80px!important;margin-top:80px!important}.m-20-lg-minus{margin:-80px!important}.mr-20-lg-minus{margin-right:-80px!important}.ml-20-lg-minus{margin-left:-80px!important}.mt-20-lg-minus{margin-top:-80px!important}.mb-20-lg-minus{margin-bottom:-80px!important}}@media screen and (min-width:1200px){.mx-auto-xl{margin-right:auto!important}.ml-auto-xl,.mx-auto-xl{margin-left:auto!important}.mr-auto-xl{margin-right:auto!important}.mt-auto-xl{margin-top:auto!important}.mb-auto-xl{margin-bottom:auto!important}.p-0-xl{padding:0!important}.pr-0-xl{padding-right:0!important}.pl-0-xl{padding-left:0!important}.pt-0-xl{padding-top:0!important}.pb-0-xl{padding-bottom:0!important}.px-0-xl{padding-left:0!important;padding-right:0!important}.py-0-xl{padding-bottom:0!important;padding-top:0!important}.m-0-xl{margin:0!important}.mr-0-xl{margin-right:0!important}.ml-0-xl{margin-left:0!important}.mt-0-xl{margin-top:0!important}.mb-0-xl{margin-bottom:0!important}.mx-0-xl{margin-left:0!important;margin-right:0!important}.my-0-xl{margin-bottom:0!important;margin-top:0!important}.m-0-xl-minus{margin:0!important}.mr-0-xl-minus{margin-right:0!important}.ml-0-xl-minus{margin-left:0!important}.mt-0-xl-minus{margin-top:0!important}.mb-0-xl-minus{margin-bottom:0!important}.p-1-xl{padding:4px!important}.pr-1-xl{padding-right:4px!important}.pl-1-xl{padding-left:4px!important}.pt-1-xl{padding-top:4px!important}.pb-1-xl{padding-bottom:4px!important}.px-1-xl{padding-left:4px!important;padding-right:4px!important}.py-1-xl{padding-bottom:4px!important;padding-top:4px!important}.m-1-xl{margin:4px!important}.mr-1-xl{margin-right:4px!important}.ml-1-xl{margin-left:4px!important}.mt-1-xl{margin-top:4px!important}.mb-1-xl{margin-bottom:4px!important}.mx-1-xl{margin-left:4px!important;margin-right:4px!important}.my-1-xl{margin-bottom:4px!important;margin-top:4px!important}.m-1-xl-minus{margin:-4px!important}.mr-1-xl-minus{margin-right:-4px!important}.ml-1-xl-minus{margin-left:-4px!important}.mt-1-xl-minus{margin-top:-4px!important}.mb-1-xl-minus{margin-bottom:-4px!important}.p-2-xl{padding:8px!important}.pr-2-xl{padding-right:8px!important}.pl-2-xl{padding-left:8px!important}.pt-2-xl{padding-top:8px!important}.pb-2-xl{padding-bottom:8px!important}.px-2-xl{padding-left:8px!important;padding-right:8px!important}.py-2-xl{padding-bottom:8px!important;padding-top:8px!important}.m-2-xl{margin:8px!important}.mr-2-xl{margin-right:8px!important}.ml-2-xl{margin-left:8px!important}.mt-2-xl{margin-top:8px!important}.mb-2-xl{margin-bottom:8px!important}.mx-2-xl{margin-left:8px!important;margin-right:8px!important}.my-2-xl{margin-bottom:8px!important;margin-top:8px!important}.m-2-xl-minus{margin:-8px!important}.mr-2-xl-minus{margin-right:-8px!important}.ml-2-xl-minus{margin-left:-8px!important}.mt-2-xl-minus{margin-top:-8px!important}.mb-2-xl-minus{margin-bottom:-8px!important}.p-3-xl{padding:12px!important}.pr-3-xl{padding-right:12px!important}.pl-3-xl{padding-left:12px!important}.pt-3-xl{padding-top:12px!important}.pb-3-xl{padding-bottom:12px!important}.px-3-xl{padding-left:12px!important;padding-right:12px!important}.py-3-xl{padding-bottom:12px!important;padding-top:12px!important}.m-3-xl{margin:12px!important}.mr-3-xl{margin-right:12px!important}.ml-3-xl{margin-left:12px!important}.mt-3-xl{margin-top:12px!important}.mb-3-xl{margin-bottom:12px!important}.mx-3-xl{margin-left:12px!important;margin-right:12px!important}.my-3-xl{margin-bottom:12px!important;margin-top:12px!important}.m-3-xl-minus{margin:-12px!important}.mr-3-xl-minus{margin-right:-12px!important}.ml-3-xl-minus{margin-left:-12px!important}.mt-3-xl-minus{margin-top:-12px!important}.mb-3-xl-minus{margin-bottom:-12px!important}.p-4-xl{padding:16px!important}.pr-4-xl{padding-right:16px!important}.pl-4-xl{padding-left:16px!important}.pt-4-xl{padding-top:16px!important}.pb-4-xl{padding-bottom:16px!important}.px-4-xl{padding-left:16px!important;padding-right:16px!important}.py-4-xl{padding-bottom:16px!important;padding-top:16px!important}.m-4-xl{margin:16px!important}.mr-4-xl{margin-right:16px!important}.ml-4-xl{margin-left:16px!important}.mt-4-xl{margin-top:16px!important}.mb-4-xl{margin-bottom:16px!important}.mx-4-xl{margin-left:16px!important;margin-right:16px!important}.my-4-xl{margin-bottom:16px!important;margin-top:16px!important}.m-4-xl-minus{margin:-16px!important}.mr-4-xl-minus{margin-right:-16px!important}.ml-4-xl-minus{margin-left:-16px!important}.mt-4-xl-minus{margin-top:-16px!important}.mb-4-xl-minus{margin-bottom:-16px!important}.p-5-xl{padding:20px!important}.pr-5-xl{padding-right:20px!important}.pl-5-xl{padding-left:20px!important}.pt-5-xl{padding-top:20px!important}.pb-5-xl{padding-bottom:20px!important}.px-5-xl{padding-left:20px!important;padding-right:20px!important}.py-5-xl{padding-bottom:20px!important;padding-top:20px!important}.m-5-xl{margin:20px!important}.mr-5-xl{margin-right:20px!important}.ml-5-xl{margin-left:20px!important}.mt-5-xl{margin-top:20px!important}.mb-5-xl{margin-bottom:20px!important}.mx-5-xl{margin-left:20px!important;margin-right:20px!important}.my-5-xl{margin-bottom:20px!important;margin-top:20px!important}.m-5-xl-minus{margin:-20px!important}.mr-5-xl-minus{margin-right:-20px!important}.ml-5-xl-minus{margin-left:-20px!important}.mt-5-xl-minus{margin-top:-20px!important}.mb-5-xl-minus{margin-bottom:-20px!important}.p-6-xl{padding:24px!important}.pr-6-xl{padding-right:24px!important}.pl-6-xl{padding-left:24px!important}.pt-6-xl{padding-top:24px!important}.pb-6-xl{padding-bottom:24px!important}.px-6-xl{padding-left:24px!important;padding-right:24px!important}.py-6-xl{padding-bottom:24px!important;padding-top:24px!important}.m-6-xl{margin:24px!important}.mr-6-xl{margin-right:24px!important}.ml-6-xl{margin-left:24px!important}.mt-6-xl{margin-top:24px!important}.mb-6-xl{margin-bottom:24px!important}.mx-6-xl{margin-left:24px!important;margin-right:24px!important}.my-6-xl{margin-bottom:24px!important;margin-top:24px!important}.m-6-xl-minus{margin:-24px!important}.mr-6-xl-minus{margin-right:-24px!important}.ml-6-xl-minus{margin-left:-24px!important}.mt-6-xl-minus{margin-top:-24px!important}.mb-6-xl-minus{margin-bottom:-24px!important}.p-7-xl{padding:28px!important}.pr-7-xl{padding-right:28px!important}.pl-7-xl{padding-left:28px!important}.pt-7-xl{padding-top:28px!important}.pb-7-xl{padding-bottom:28px!important}.px-7-xl{padding-left:28px!important;padding-right:28px!important}.py-7-xl{padding-bottom:28px!important;padding-top:28px!important}.m-7-xl{margin:28px!important}.mr-7-xl{margin-right:28px!important}.ml-7-xl{margin-left:28px!important}.mt-7-xl{margin-top:28px!important}.mb-7-xl{margin-bottom:28px!important}.mx-7-xl{margin-left:28px!important;margin-right:28px!important}.my-7-xl{margin-bottom:28px!important;margin-top:28px!important}.m-7-xl-minus{margin:-28px!important}.mr-7-xl-minus{margin-right:-28px!important}.ml-7-xl-minus{margin-left:-28px!important}.mt-7-xl-minus{margin-top:-28px!important}.mb-7-xl-minus{margin-bottom:-28px!important}.p-8-xl{padding:32px!important}.pr-8-xl{padding-right:32px!important}.pl-8-xl{padding-left:32px!important}.pt-8-xl{padding-top:32px!important}.pb-8-xl{padding-bottom:32px!important}.px-8-xl{padding-left:32px!important;padding-right:32px!important}.py-8-xl{padding-bottom:32px!important;padding-top:32px!important}.m-8-xl{margin:32px!important}.mr-8-xl{margin-right:32px!important}.ml-8-xl{margin-left:32px!important}.mt-8-xl{margin-top:32px!important}.mb-8-xl{margin-bottom:32px!important}.mx-8-xl{margin-left:32px!important;margin-right:32px!important}.my-8-xl{margin-bottom:32px!important;margin-top:32px!important}.m-8-xl-minus{margin:-32px!important}.mr-8-xl-minus{margin-right:-32px!important}.ml-8-xl-minus{margin-left:-32px!important}.mt-8-xl-minus{margin-top:-32px!important}.mb-8-xl-minus{margin-bottom:-32px!important}.p-9-xl{padding:36px!important}.pr-9-xl{padding-right:36px!important}.pl-9-xl{padding-left:36px!important}.pt-9-xl{padding-top:36px!important}.pb-9-xl{padding-bottom:36px!important}.px-9-xl{padding-left:36px!important;padding-right:36px!important}.py-9-xl{padding-bottom:36px!important;padding-top:36px!important}.m-9-xl{margin:36px!important}.mr-9-xl{margin-right:36px!important}.ml-9-xl{margin-left:36px!important}.mt-9-xl{margin-top:36px!important}.mb-9-xl{margin-bottom:36px!important}.mx-9-xl{margin-left:36px!important;margin-right:36px!important}.my-9-xl{margin-bottom:36px!important;margin-top:36px!important}.m-9-xl-minus{margin:-36px!important}.mr-9-xl-minus{margin-right:-36px!important}.ml-9-xl-minus{margin-left:-36px!important}.mt-9-xl-minus{margin-top:-36px!important}.mb-9-xl-minus{margin-bottom:-36px!important}.p-10-xl{padding:40px!important}.pr-10-xl{padding-right:40px!important}.pl-10-xl{padding-left:40px!important}.pt-10-xl{padding-top:40px!important}.pb-10-xl{padding-bottom:40px!important}.px-10-xl{padding-left:40px!important;padding-right:40px!important}.py-10-xl{padding-bottom:40px!important;padding-top:40px!important}.m-10-xl{margin:40px!important}.mr-10-xl{margin-right:40px!important}.ml-10-xl{margin-left:40px!important}.mt-10-xl{margin-top:40px!important}.mb-10-xl{margin-bottom:40px!important}.mx-10-xl{margin-left:40px!important;margin-right:40px!important}.my-10-xl{margin-bottom:40px!important;margin-top:40px!important}.m-10-xl-minus{margin:-40px!important}.mr-10-xl-minus{margin-right:-40px!important}.ml-10-xl-minus{margin-left:-40px!important}.mt-10-xl-minus{margin-top:-40px!important}.mb-10-xl-minus{margin-bottom:-40px!important}.p-11-xl{padding:44px!important}.pr-11-xl{padding-right:44px!important}.pl-11-xl{padding-left:44px!important}.pt-11-xl{padding-top:44px!important}.pb-11-xl{padding-bottom:44px!important}.px-11-xl{padding-left:44px!important;padding-right:44px!important}.py-11-xl{padding-bottom:44px!important;padding-top:44px!important}.m-11-xl{margin:44px!important}.mr-11-xl{margin-right:44px!important}.ml-11-xl{margin-left:44px!important}.mt-11-xl{margin-top:44px!important}.mb-11-xl{margin-bottom:44px!important}.mx-11-xl{margin-left:44px!important;margin-right:44px!important}.my-11-xl{margin-bottom:44px!important;margin-top:44px!important}.m-11-xl-minus{margin:-44px!important}.mr-11-xl-minus{margin-right:-44px!important}.ml-11-xl-minus{margin-left:-44px!important}.mt-11-xl-minus{margin-top:-44px!important}.mb-11-xl-minus{margin-bottom:-44px!important}.p-12-xl{padding:48px!important}.pr-12-xl{padding-right:48px!important}.pl-12-xl{padding-left:48px!important}.pt-12-xl{padding-top:48px!important}.pb-12-xl{padding-bottom:48px!important}.px-12-xl{padding-left:48px!important;padding-right:48px!important}.py-12-xl{padding-bottom:48px!important;padding-top:48px!important}.m-12-xl{margin:48px!important}.mr-12-xl{margin-right:48px!important}.ml-12-xl{margin-left:48px!important}.mt-12-xl{margin-top:48px!important}.mb-12-xl{margin-bottom:48px!important}.mx-12-xl{margin-left:48px!important;margin-right:48px!important}.my-12-xl{margin-bottom:48px!important;margin-top:48px!important}.m-12-xl-minus{margin:-48px!important}.mr-12-xl-minus{margin-right:-48px!important}.ml-12-xl-minus{margin-left:-48px!important}.mt-12-xl-minus{margin-top:-48px!important}.mb-12-xl-minus{margin-bottom:-48px!important}.p-13-xl{padding:52px!important}.pr-13-xl{padding-right:52px!important}.pl-13-xl{padding-left:52px!important}.pt-13-xl{padding-top:52px!important}.pb-13-xl{padding-bottom:52px!important}.px-13-xl{padding-left:52px!important;padding-right:52px!important}.py-13-xl{padding-bottom:52px!important;padding-top:52px!important}.m-13-xl{margin:52px!important}.mr-13-xl{margin-right:52px!important}.ml-13-xl{margin-left:52px!important}.mt-13-xl{margin-top:52px!important}.mb-13-xl{margin-bottom:52px!important}.mx-13-xl{margin-left:52px!important;margin-right:52px!important}.my-13-xl{margin-bottom:52px!important;margin-top:52px!important}.m-13-xl-minus{margin:-52px!important}.mr-13-xl-minus{margin-right:-52px!important}.ml-13-xl-minus{margin-left:-52px!important}.mt-13-xl-minus{margin-top:-52px!important}.mb-13-xl-minus{margin-bottom:-52px!important}.p-14-xl{padding:56px!important}.pr-14-xl{padding-right:56px!important}.pl-14-xl{padding-left:56px!important}.pt-14-xl{padding-top:56px!important}.pb-14-xl{padding-bottom:56px!important}.px-14-xl{padding-left:56px!important;padding-right:56px!important}.py-14-xl{padding-bottom:56px!important;padding-top:56px!important}.m-14-xl{margin:56px!important}.mr-14-xl{margin-right:56px!important}.ml-14-xl{margin-left:56px!important}.mt-14-xl{margin-top:56px!important}.mb-14-xl{margin-bottom:56px!important}.mx-14-xl{margin-left:56px!important;margin-right:56px!important}.my-14-xl{margin-bottom:56px!important;margin-top:56px!important}.m-14-xl-minus{margin:-56px!important}.mr-14-xl-minus{margin-right:-56px!important}.ml-14-xl-minus{margin-left:-56px!important}.mt-14-xl-minus{margin-top:-56px!important}.mb-14-xl-minus{margin-bottom:-56px!important}.p-15-xl{padding:60px!important}.pr-15-xl{padding-right:60px!important}.pl-15-xl{padding-left:60px!important}.pt-15-xl{padding-top:60px!important}.pb-15-xl{padding-bottom:60px!important}.px-15-xl{padding-left:60px!important;padding-right:60px!important}.py-15-xl{padding-bottom:60px!important;padding-top:60px!important}.m-15-xl{margin:60px!important}.mr-15-xl{margin-right:60px!important}.ml-15-xl{margin-left:60px!important}.mt-15-xl{margin-top:60px!important}.mb-15-xl{margin-bottom:60px!important}.mx-15-xl{margin-left:60px!important;margin-right:60px!important}.my-15-xl{margin-bottom:60px!important;margin-top:60px!important}.m-15-xl-minus{margin:-60px!important}.mr-15-xl-minus{margin-right:-60px!important}.ml-15-xl-minus{margin-left:-60px!important}.mt-15-xl-minus{margin-top:-60px!important}.mb-15-xl-minus{margin-bottom:-60px!important}.p-16-xl{padding:64px!important}.pr-16-xl{padding-right:64px!important}.pl-16-xl{padding-left:64px!important}.pt-16-xl{padding-top:64px!important}.pb-16-xl{padding-bottom:64px!important}.px-16-xl{padding-left:64px!important;padding-right:64px!important}.py-16-xl{padding-bottom:64px!important;padding-top:64px!important}.m-16-xl{margin:64px!important}.mr-16-xl{margin-right:64px!important}.ml-16-xl{margin-left:64px!important}.mt-16-xl{margin-top:64px!important}.mb-16-xl{margin-bottom:64px!important}.mx-16-xl{margin-left:64px!important;margin-right:64px!important}.my-16-xl{margin-bottom:64px!important;margin-top:64px!important}.m-16-xl-minus{margin:-64px!important}.mr-16-xl-minus{margin-right:-64px!important}.ml-16-xl-minus{margin-left:-64px!important}.mt-16-xl-minus{margin-top:-64px!important}.mb-16-xl-minus{margin-bottom:-64px!important}.p-17-xl{padding:68px!important}.pr-17-xl{padding-right:68px!important}.pl-17-xl{padding-left:68px!important}.pt-17-xl{padding-top:68px!important}.pb-17-xl{padding-bottom:68px!important}.px-17-xl{padding-left:68px!important;padding-right:68px!important}.py-17-xl{padding-bottom:68px!important;padding-top:68px!important}.m-17-xl{margin:68px!important}.mr-17-xl{margin-right:68px!important}.ml-17-xl{margin-left:68px!important}.mt-17-xl{margin-top:68px!important}.mb-17-xl{margin-bottom:68px!important}.mx-17-xl{margin-left:68px!important;margin-right:68px!important}.my-17-xl{margin-bottom:68px!important;margin-top:68px!important}.m-17-xl-minus{margin:-68px!important}.mr-17-xl-minus{margin-right:-68px!important}.ml-17-xl-minus{margin-left:-68px!important}.mt-17-xl-minus{margin-top:-68px!important}.mb-17-xl-minus{margin-bottom:-68px!important}.p-18-xl{padding:72px!important}.pr-18-xl{padding-right:72px!important}.pl-18-xl{padding-left:72px!important}.pt-18-xl{padding-top:72px!important}.pb-18-xl{padding-bottom:72px!important}.px-18-xl{padding-left:72px!important;padding-right:72px!important}.py-18-xl{padding-bottom:72px!important;padding-top:72px!important}.m-18-xl{margin:72px!important}.mr-18-xl{margin-right:72px!important}.ml-18-xl{margin-left:72px!important}.mt-18-xl{margin-top:72px!important}.mb-18-xl{margin-bottom:72px!important}.mx-18-xl{margin-left:72px!important;margin-right:72px!important}.my-18-xl{margin-bottom:72px!important;margin-top:72px!important}.m-18-xl-minus{margin:-72px!important}.mr-18-xl-minus{margin-right:-72px!important}.ml-18-xl-minus{margin-left:-72px!important}.mt-18-xl-minus{margin-top:-72px!important}.mb-18-xl-minus{margin-bottom:-72px!important}.p-19-xl{padding:76px!important}.pr-19-xl{padding-right:76px!important}.pl-19-xl{padding-left:76px!important}.pt-19-xl{padding-top:76px!important}.pb-19-xl{padding-bottom:76px!important}.px-19-xl{padding-left:76px!important;padding-right:76px!important}.py-19-xl{padding-bottom:76px!important;padding-top:76px!important}.m-19-xl{margin:76px!important}.mr-19-xl{margin-right:76px!important}.ml-19-xl{margin-left:76px!important}.mt-19-xl{margin-top:76px!important}.mb-19-xl{margin-bottom:76px!important}.mx-19-xl{margin-left:76px!important;margin-right:76px!important}.my-19-xl{margin-bottom:76px!important;margin-top:76px!important}.m-19-xl-minus{margin:-76px!important}.mr-19-xl-minus{margin-right:-76px!important}.ml-19-xl-minus{margin-left:-76px!important}.mt-19-xl-minus{margin-top:-76px!important}.mb-19-xl-minus{margin-bottom:-76px!important}.p-20-xl{padding:80px!important}.pr-20-xl{padding-right:80px!important}.pl-20-xl{padding-left:80px!important}.pt-20-xl{padding-top:80px!important}.pb-20-xl{padding-bottom:80px!important}.px-20-xl{padding-left:80px!important;padding-right:80px!important}.py-20-xl{padding-bottom:80px!important;padding-top:80px!important}.m-20-xl{margin:80px!important}.mr-20-xl{margin-right:80px!important}.ml-20-xl{margin-left:80px!important}.mt-20-xl{margin-top:80px!important}.mb-20-xl{margin-bottom:80px!important}.mx-20-xl{margin-left:80px!important;margin-right:80px!important}.my-20-xl{margin-bottom:80px!important;margin-top:80px!important}.m-20-xl-minus{margin:-80px!important}.mr-20-xl-minus{margin-right:-80px!important}.ml-20-xl-minus{margin-left:-80px!important}.mt-20-xl-minus{margin-top:-80px!important}.mb-20-xl-minus{margin-bottom:-80px!important}}@media screen and (min-width:1452px){.mx-auto-xxl{margin-right:auto!important}.ml-auto-xxl,.mx-auto-xxl{margin-left:auto!important}.mr-auto-xxl{margin-right:auto!important}.mt-auto-xxl{margin-top:auto!important}.mb-auto-xxl{margin-bottom:auto!important}.p-0-xxl{padding:0!important}.pr-0-xxl{padding-right:0!important}.pl-0-xxl{padding-left:0!important}.pt-0-xxl{padding-top:0!important}.pb-0-xxl{padding-bottom:0!important}.px-0-xxl{padding-left:0!important;padding-right:0!important}.py-0-xxl{padding-bottom:0!important;padding-top:0!important}.m-0-xxl{margin:0!important}.mr-0-xxl{margin-right:0!important}.ml-0-xxl{margin-left:0!important}.mt-0-xxl{margin-top:0!important}.mb-0-xxl{margin-bottom:0!important}.mx-0-xxl{margin-left:0!important;margin-right:0!important}.my-0-xxl{margin-bottom:0!important;margin-top:0!important}.m-0-xxl-minus{margin:0!important}.mr-0-xxl-minus{margin-right:0!important}.ml-0-xxl-minus{margin-left:0!important}.mt-0-xxl-minus{margin-top:0!important}.mb-0-xxl-minus{margin-bottom:0!important}.p-1-xxl{padding:4px!important}.pr-1-xxl{padding-right:4px!important}.pl-1-xxl{padding-left:4px!important}.pt-1-xxl{padding-top:4px!important}.pb-1-xxl{padding-bottom:4px!important}.px-1-xxl{padding-left:4px!important;padding-right:4px!important}.py-1-xxl{padding-bottom:4px!important;padding-top:4px!important}.m-1-xxl{margin:4px!important}.mr-1-xxl{margin-right:4px!important}.ml-1-xxl{margin-left:4px!important}.mt-1-xxl{margin-top:4px!important}.mb-1-xxl{margin-bottom:4px!important}.mx-1-xxl{margin-left:4px!important;margin-right:4px!important}.my-1-xxl{margin-bottom:4px!important;margin-top:4px!important}.m-1-xxl-minus{margin:-4px!important}.mr-1-xxl-minus{margin-right:-4px!important}.ml-1-xxl-minus{margin-left:-4px!important}.mt-1-xxl-minus{margin-top:-4px!important}.mb-1-xxl-minus{margin-bottom:-4px!important}.p-2-xxl{padding:8px!important}.pr-2-xxl{padding-right:8px!important}.pl-2-xxl{padding-left:8px!important}.pt-2-xxl{padding-top:8px!important}.pb-2-xxl{padding-bottom:8px!important}.px-2-xxl{padding-left:8px!important;padding-right:8px!important}.py-2-xxl{padding-bottom:8px!important;padding-top:8px!important}.m-2-xxl{margin:8px!important}.mr-2-xxl{margin-right:8px!important}.ml-2-xxl{margin-left:8px!important}.mt-2-xxl{margin-top:8px!important}.mb-2-xxl{margin-bottom:8px!important}.mx-2-xxl{margin-left:8px!important;margin-right:8px!important}.my-2-xxl{margin-bottom:8px!important;margin-top:8px!important}.m-2-xxl-minus{margin:-8px!important}.mr-2-xxl-minus{margin-right:-8px!important}.ml-2-xxl-minus{margin-left:-8px!important}.mt-2-xxl-minus{margin-top:-8px!important}.mb-2-xxl-minus{margin-bottom:-8px!important}.p-3-xxl{padding:12px!important}.pr-3-xxl{padding-right:12px!important}.pl-3-xxl{padding-left:12px!important}.pt-3-xxl{padding-top:12px!important}.pb-3-xxl{padding-bottom:12px!important}.px-3-xxl{padding-left:12px!important;padding-right:12px!important}.py-3-xxl{padding-bottom:12px!important;padding-top:12px!important}.m-3-xxl{margin:12px!important}.mr-3-xxl{margin-right:12px!important}.ml-3-xxl{margin-left:12px!important}.mt-3-xxl{margin-top:12px!important}.mb-3-xxl{margin-bottom:12px!important}.mx-3-xxl{margin-left:12px!important;margin-right:12px!important}.my-3-xxl{margin-bottom:12px!important;margin-top:12px!important}.m-3-xxl-minus{margin:-12px!important}.mr-3-xxl-minus{margin-right:-12px!important}.ml-3-xxl-minus{margin-left:-12px!important}.mt-3-xxl-minus{margin-top:-12px!important}.mb-3-xxl-minus{margin-bottom:-12px!important}.p-4-xxl{padding:16px!important}.pr-4-xxl{padding-right:16px!important}.pl-4-xxl{padding-left:16px!important}.pt-4-xxl{padding-top:16px!important}.pb-4-xxl{padding-bottom:16px!important}.px-4-xxl{padding-left:16px!important;padding-right:16px!important}.py-4-xxl{padding-bottom:16px!important;padding-top:16px!important}.m-4-xxl{margin:16px!important}.mr-4-xxl{margin-right:16px!important}.ml-4-xxl{margin-left:16px!important}.mt-4-xxl{margin-top:16px!important}.mb-4-xxl{margin-bottom:16px!important}.mx-4-xxl{margin-left:16px!important;margin-right:16px!important}.my-4-xxl{margin-bottom:16px!important;margin-top:16px!important}.m-4-xxl-minus{margin:-16px!important}.mr-4-xxl-minus{margin-right:-16px!important}.ml-4-xxl-minus{margin-left:-16px!important}.mt-4-xxl-minus{margin-top:-16px!important}.mb-4-xxl-minus{margin-bottom:-16px!important}.p-5-xxl{padding:20px!important}.pr-5-xxl{padding-right:20px!important}.pl-5-xxl{padding-left:20px!important}.pt-5-xxl{padding-top:20px!important}.pb-5-xxl{padding-bottom:20px!important}.px-5-xxl{padding-left:20px!important;padding-right:20px!important}.py-5-xxl{padding-bottom:20px!important;padding-top:20px!important}.m-5-xxl{margin:20px!important}.mr-5-xxl{margin-right:20px!important}.ml-5-xxl{margin-left:20px!important}.mt-5-xxl{margin-top:20px!important}.mb-5-xxl{margin-bottom:20px!important}.mx-5-xxl{margin-left:20px!important;margin-right:20px!important}.my-5-xxl{margin-bottom:20px!important;margin-top:20px!important}.m-5-xxl-minus{margin:-20px!important}.mr-5-xxl-minus{margin-right:-20px!important}.ml-5-xxl-minus{margin-left:-20px!important}.mt-5-xxl-minus{margin-top:-20px!important}.mb-5-xxl-minus{margin-bottom:-20px!important}.p-6-xxl{padding:24px!important}.pr-6-xxl{padding-right:24px!important}.pl-6-xxl{padding-left:24px!important}.pt-6-xxl{padding-top:24px!important}.pb-6-xxl{padding-bottom:24px!important}.px-6-xxl{padding-left:24px!important;padding-right:24px!important}.py-6-xxl{padding-bottom:24px!important;padding-top:24px!important}.m-6-xxl{margin:24px!important}.mr-6-xxl{margin-right:24px!important}.ml-6-xxl{margin-left:24px!important}.mt-6-xxl{margin-top:24px!important}.mb-6-xxl{margin-bottom:24px!important}.mx-6-xxl{margin-left:24px!important;margin-right:24px!important}.my-6-xxl{margin-bottom:24px!important;margin-top:24px!important}.m-6-xxl-minus{margin:-24px!important}.mr-6-xxl-minus{margin-right:-24px!important}.ml-6-xxl-minus{margin-left:-24px!important}.mt-6-xxl-minus{margin-top:-24px!important}.mb-6-xxl-minus{margin-bottom:-24px!important}.p-7-xxl{padding:28px!important}.pr-7-xxl{padding-right:28px!important}.pl-7-xxl{padding-left:28px!important}.pt-7-xxl{padding-top:28px!important}.pb-7-xxl{padding-bottom:28px!important}.px-7-xxl{padding-left:28px!important;padding-right:28px!important}.py-7-xxl{padding-bottom:28px!important;padding-top:28px!important}.m-7-xxl{margin:28px!important}.mr-7-xxl{margin-right:28px!important}.ml-7-xxl{margin-left:28px!important}.mt-7-xxl{margin-top:28px!important}.mb-7-xxl{margin-bottom:28px!important}.mx-7-xxl{margin-left:28px!important;margin-right:28px!important}.my-7-xxl{margin-bottom:28px!important;margin-top:28px!important}.m-7-xxl-minus{margin:-28px!important}.mr-7-xxl-minus{margin-right:-28px!important}.ml-7-xxl-minus{margin-left:-28px!important}.mt-7-xxl-minus{margin-top:-28px!important}.mb-7-xxl-minus{margin-bottom:-28px!important}.p-8-xxl{padding:32px!important}.pr-8-xxl{padding-right:32px!important}.pl-8-xxl{padding-left:32px!important}.pt-8-xxl{padding-top:32px!important}.pb-8-xxl{padding-bottom:32px!important}.px-8-xxl{padding-left:32px!important;padding-right:32px!important}.py-8-xxl{padding-bottom:32px!important;padding-top:32px!important}.m-8-xxl{margin:32px!important}.mr-8-xxl{margin-right:32px!important}.ml-8-xxl{margin-left:32px!important}.mt-8-xxl{margin-top:32px!important}.mb-8-xxl{margin-bottom:32px!important}.mx-8-xxl{margin-left:32px!important;margin-right:32px!important}.my-8-xxl{margin-bottom:32px!important;margin-top:32px!important}.m-8-xxl-minus{margin:-32px!important}.mr-8-xxl-minus{margin-right:-32px!important}.ml-8-xxl-minus{margin-left:-32px!important}.mt-8-xxl-minus{margin-top:-32px!important}.mb-8-xxl-minus{margin-bottom:-32px!important}.p-9-xxl{padding:36px!important}.pr-9-xxl{padding-right:36px!important}.pl-9-xxl{padding-left:36px!important}.pt-9-xxl{padding-top:36px!important}.pb-9-xxl{padding-bottom:36px!important}.px-9-xxl{padding-left:36px!important;padding-right:36px!important}.py-9-xxl{padding-bottom:36px!important;padding-top:36px!important}.m-9-xxl{margin:36px!important}.mr-9-xxl{margin-right:36px!important}.ml-9-xxl{margin-left:36px!important}.mt-9-xxl{margin-top:36px!important}.mb-9-xxl{margin-bottom:36px!important}.mx-9-xxl{margin-left:36px!important;margin-right:36px!important}.my-9-xxl{margin-bottom:36px!important;margin-top:36px!important}.m-9-xxl-minus{margin:-36px!important}.mr-9-xxl-minus{margin-right:-36px!important}.ml-9-xxl-minus{margin-left:-36px!important}.mt-9-xxl-minus{margin-top:-36px!important}.mb-9-xxl-minus{margin-bottom:-36px!important}.p-10-xxl{padding:40px!important}.pr-10-xxl{padding-right:40px!important}.pl-10-xxl{padding-left:40px!important}.pt-10-xxl{padding-top:40px!important}.pb-10-xxl{padding-bottom:40px!important}.px-10-xxl{padding-left:40px!important;padding-right:40px!important}.py-10-xxl{padding-bottom:40px!important;padding-top:40px!important}.m-10-xxl{margin:40px!important}.mr-10-xxl{margin-right:40px!important}.ml-10-xxl{margin-left:40px!important}.mt-10-xxl{margin-top:40px!important}.mb-10-xxl{margin-bottom:40px!important}.mx-10-xxl{margin-left:40px!important;margin-right:40px!important}.my-10-xxl{margin-bottom:40px!important;margin-top:40px!important}.m-10-xxl-minus{margin:-40px!important}.mr-10-xxl-minus{margin-right:-40px!important}.ml-10-xxl-minus{margin-left:-40px!important}.mt-10-xxl-minus{margin-top:-40px!important}.mb-10-xxl-minus{margin-bottom:-40px!important}.p-11-xxl{padding:44px!important}.pr-11-xxl{padding-right:44px!important}.pl-11-xxl{padding-left:44px!important}.pt-11-xxl{padding-top:44px!important}.pb-11-xxl{padding-bottom:44px!important}.px-11-xxl{padding-left:44px!important;padding-right:44px!important}.py-11-xxl{padding-bottom:44px!important;padding-top:44px!important}.m-11-xxl{margin:44px!important}.mr-11-xxl{margin-right:44px!important}.ml-11-xxl{margin-left:44px!important}.mt-11-xxl{margin-top:44px!important}.mb-11-xxl{margin-bottom:44px!important}.mx-11-xxl{margin-left:44px!important;margin-right:44px!important}.my-11-xxl{margin-bottom:44px!important;margin-top:44px!important}.m-11-xxl-minus{margin:-44px!important}.mr-11-xxl-minus{margin-right:-44px!important}.ml-11-xxl-minus{margin-left:-44px!important}.mt-11-xxl-minus{margin-top:-44px!important}.mb-11-xxl-minus{margin-bottom:-44px!important}.p-12-xxl{padding:48px!important}.pr-12-xxl{padding-right:48px!important}.pl-12-xxl{padding-left:48px!important}.pt-12-xxl{padding-top:48px!important}.pb-12-xxl{padding-bottom:48px!important}.px-12-xxl{padding-left:48px!important;padding-right:48px!important}.py-12-xxl{padding-bottom:48px!important;padding-top:48px!important}.m-12-xxl{margin:48px!important}.mr-12-xxl{margin-right:48px!important}.ml-12-xxl{margin-left:48px!important}.mt-12-xxl{margin-top:48px!important}.mb-12-xxl{margin-bottom:48px!important}.mx-12-xxl{margin-left:48px!important;margin-right:48px!important}.my-12-xxl{margin-bottom:48px!important;margin-top:48px!important}.m-12-xxl-minus{margin:-48px!important}.mr-12-xxl-minus{margin-right:-48px!important}.ml-12-xxl-minus{margin-left:-48px!important}.mt-12-xxl-minus{margin-top:-48px!important}.mb-12-xxl-minus{margin-bottom:-48px!important}.p-13-xxl{padding:52px!important}.pr-13-xxl{padding-right:52px!important}.pl-13-xxl{padding-left:52px!important}.pt-13-xxl{padding-top:52px!important}.pb-13-xxl{padding-bottom:52px!important}.px-13-xxl{padding-left:52px!important;padding-right:52px!important}.py-13-xxl{padding-bottom:52px!important;padding-top:52px!important}.m-13-xxl{margin:52px!important}.mr-13-xxl{margin-right:52px!important}.ml-13-xxl{margin-left:52px!important}.mt-13-xxl{margin-top:52px!important}.mb-13-xxl{margin-bottom:52px!important}.mx-13-xxl{margin-left:52px!important;margin-right:52px!important}.my-13-xxl{margin-bottom:52px!important;margin-top:52px!important}.m-13-xxl-minus{margin:-52px!important}.mr-13-xxl-minus{margin-right:-52px!important}.ml-13-xxl-minus{margin-left:-52px!important}.mt-13-xxl-minus{margin-top:-52px!important}.mb-13-xxl-minus{margin-bottom:-52px!important}.p-14-xxl{padding:56px!important}.pr-14-xxl{padding-right:56px!important}.pl-14-xxl{padding-left:56px!important}.pt-14-xxl{padding-top:56px!important}.pb-14-xxl{padding-bottom:56px!important}.px-14-xxl{padding-left:56px!important;padding-right:56px!important}.py-14-xxl{padding-bottom:56px!important;padding-top:56px!important}.m-14-xxl{margin:56px!important}.mr-14-xxl{margin-right:56px!important}.ml-14-xxl{margin-left:56px!important}.mt-14-xxl{margin-top:56px!important}.mb-14-xxl{margin-bottom:56px!important}.mx-14-xxl{margin-left:56px!important;margin-right:56px!important}.my-14-xxl{margin-bottom:56px!important;margin-top:56px!important}.m-14-xxl-minus{margin:-56px!important}.mr-14-xxl-minus{margin-right:-56px!important}.ml-14-xxl-minus{margin-left:-56px!important}.mt-14-xxl-minus{margin-top:-56px!important}.mb-14-xxl-minus{margin-bottom:-56px!important}.p-15-xxl{padding:60px!important}.pr-15-xxl{padding-right:60px!important}.pl-15-xxl{padding-left:60px!important}.pt-15-xxl{padding-top:60px!important}.pb-15-xxl{padding-bottom:60px!important}.px-15-xxl{padding-left:60px!important;padding-right:60px!important}.py-15-xxl{padding-bottom:60px!important;padding-top:60px!important}.m-15-xxl{margin:60px!important}.mr-15-xxl{margin-right:60px!important}.ml-15-xxl{margin-left:60px!important}.mt-15-xxl{margin-top:60px!important}.mb-15-xxl{margin-bottom:60px!important}.mx-15-xxl{margin-left:60px!important;margin-right:60px!important}.my-15-xxl{margin-bottom:60px!important;margin-top:60px!important}.m-15-xxl-minus{margin:-60px!important}.mr-15-xxl-minus{margin-right:-60px!important}.ml-15-xxl-minus{margin-left:-60px!important}.mt-15-xxl-minus{margin-top:-60px!important}.mb-15-xxl-minus{margin-bottom:-60px!important}.p-16-xxl{padding:64px!important}.pr-16-xxl{padding-right:64px!important}.pl-16-xxl{padding-left:64px!important}.pt-16-xxl{padding-top:64px!important}.pb-16-xxl{padding-bottom:64px!important}.px-16-xxl{padding-left:64px!important;padding-right:64px!important}.py-16-xxl{padding-bottom:64px!important;padding-top:64px!important}.m-16-xxl{margin:64px!important}.mr-16-xxl{margin-right:64px!important}.ml-16-xxl{margin-left:64px!important}.mt-16-xxl{margin-top:64px!important}.mb-16-xxl{margin-bottom:64px!important}.mx-16-xxl{margin-left:64px!important;margin-right:64px!important}.my-16-xxl{margin-bottom:64px!important;margin-top:64px!important}.m-16-xxl-minus{margin:-64px!important}.mr-16-xxl-minus{margin-right:-64px!important}.ml-16-xxl-minus{margin-left:-64px!important}.mt-16-xxl-minus{margin-top:-64px!important}.mb-16-xxl-minus{margin-bottom:-64px!important}.p-17-xxl{padding:68px!important}.pr-17-xxl{padding-right:68px!important}.pl-17-xxl{padding-left:68px!important}.pt-17-xxl{padding-top:68px!important}.pb-17-xxl{padding-bottom:68px!important}.px-17-xxl{padding-left:68px!important;padding-right:68px!important}.py-17-xxl{padding-bottom:68px!important;padding-top:68px!important}.m-17-xxl{margin:68px!important}.mr-17-xxl{margin-right:68px!important}.ml-17-xxl{margin-left:68px!important}.mt-17-xxl{margin-top:68px!important}.mb-17-xxl{margin-bottom:68px!important}.mx-17-xxl{margin-left:68px!important;margin-right:68px!important}.my-17-xxl{margin-bottom:68px!important;margin-top:68px!important}.m-17-xxl-minus{margin:-68px!important}.mr-17-xxl-minus{margin-right:-68px!important}.ml-17-xxl-minus{margin-left:-68px!important}.mt-17-xxl-minus{margin-top:-68px!important}.mb-17-xxl-minus{margin-bottom:-68px!important}.p-18-xxl{padding:72px!important}.pr-18-xxl{padding-right:72px!important}.pl-18-xxl{padding-left:72px!important}.pt-18-xxl{padding-top:72px!important}.pb-18-xxl{padding-bottom:72px!important}.px-18-xxl{padding-left:72px!important;padding-right:72px!important}.py-18-xxl{padding-bottom:72px!important;padding-top:72px!important}.m-18-xxl{margin:72px!important}.mr-18-xxl{margin-right:72px!important}.ml-18-xxl{margin-left:72px!important}.mt-18-xxl{margin-top:72px!important}.mb-18-xxl{margin-bottom:72px!important}.mx-18-xxl{margin-left:72px!important;margin-right:72px!important}.my-18-xxl{margin-bottom:72px!important;margin-top:72px!important}.m-18-xxl-minus{margin:-72px!important}.mr-18-xxl-minus{margin-right:-72px!important}.ml-18-xxl-minus{margin-left:-72px!important}.mt-18-xxl-minus{margin-top:-72px!important}.mb-18-xxl-minus{margin-bottom:-72px!important}.p-19-xxl{padding:76px!important}.pr-19-xxl{padding-right:76px!important}.pl-19-xxl{padding-left:76px!important}.pt-19-xxl{padding-top:76px!important}.pb-19-xxl{padding-bottom:76px!important}.px-19-xxl{padding-left:76px!important;padding-right:76px!important}.py-19-xxl{padding-bottom:76px!important;padding-top:76px!important}.m-19-xxl{margin:76px!important}.mr-19-xxl{margin-right:76px!important}.ml-19-xxl{margin-left:76px!important}.mt-19-xxl{margin-top:76px!important}.mb-19-xxl{margin-bottom:76px!important}.mx-19-xxl{margin-left:76px!important;margin-right:76px!important}.my-19-xxl{margin-bottom:76px!important;margin-top:76px!important}.m-19-xxl-minus{margin:-76px!important}.mr-19-xxl-minus{margin-right:-76px!important}.ml-19-xxl-minus{margin-left:-76px!important}.mt-19-xxl-minus{margin-top:-76px!important}.mb-19-xxl-minus{margin-bottom:-76px!important}.p-20-xxl{padding:80px!important}.pr-20-xxl{padding-right:80px!important}.pl-20-xxl{padding-left:80px!important}.pt-20-xxl{padding-top:80px!important}.pb-20-xxl{padding-bottom:80px!important}.px-20-xxl{padding-left:80px!important;padding-right:80px!important}.py-20-xxl{padding-bottom:80px!important;padding-top:80px!important}.m-20-xxl{margin:80px!important}.mr-20-xxl{margin-right:80px!important}.ml-20-xxl{margin-left:80px!important}.mt-20-xxl{margin-top:80px!important}.mb-20-xxl{margin-bottom:80px!important}.mx-20-xxl{margin-left:80px!important;margin-right:80px!important}.my-20-xxl{margin-bottom:80px!important;margin-top:80px!important}.m-20-xxl-minus{margin:-80px!important}.mr-20-xxl-minus{margin-right:-80px!important}.ml-20-xxl-minus{margin-left:-80px!important}.mt-20-xxl-minus{margin-top:-80px!important}.mb-20-xxl-minus{margin-bottom:-80px!important}}@media screen and (min-width:2000px){.mx-auto-xxxl{margin-right:auto!important}.ml-auto-xxxl,.mx-auto-xxxl{margin-left:auto!important}.mr-auto-xxxl{margin-right:auto!important}.mt-auto-xxxl{margin-top:auto!important}.mb-auto-xxxl{margin-bottom:auto!important}.p-0-xxxl{padding:0!important}.pr-0-xxxl{padding-right:0!important}.pl-0-xxxl{padding-left:0!important}.pt-0-xxxl{padding-top:0!important}.pb-0-xxxl{padding-bottom:0!important}.px-0-xxxl{padding-left:0!important;padding-right:0!important}.py-0-xxxl{padding-bottom:0!important;padding-top:0!important}.m-0-xxxl{margin:0!important}.mr-0-xxxl{margin-right:0!important}.ml-0-xxxl{margin-left:0!important}.mt-0-xxxl{margin-top:0!important}.mb-0-xxxl{margin-bottom:0!important}.mx-0-xxxl{margin-left:0!important;margin-right:0!important}.my-0-xxxl{margin-bottom:0!important;margin-top:0!important}.m-0-xxxl-minus{margin:0!important}.mr-0-xxxl-minus{margin-right:0!important}.ml-0-xxxl-minus{margin-left:0!important}.mt-0-xxxl-minus{margin-top:0!important}.mb-0-xxxl-minus{margin-bottom:0!important}.p-1-xxxl{padding:4px!important}.pr-1-xxxl{padding-right:4px!important}.pl-1-xxxl{padding-left:4px!important}.pt-1-xxxl{padding-top:4px!important}.pb-1-xxxl{padding-bottom:4px!important}.px-1-xxxl{padding-left:4px!important;padding-right:4px!important}.py-1-xxxl{padding-bottom:4px!important;padding-top:4px!important}.m-1-xxxl{margin:4px!important}.mr-1-xxxl{margin-right:4px!important}.ml-1-xxxl{margin-left:4px!important}.mt-1-xxxl{margin-top:4px!important}.mb-1-xxxl{margin-bottom:4px!important}.mx-1-xxxl{margin-left:4px!important;margin-right:4px!important}.my-1-xxxl{margin-bottom:4px!important;margin-top:4px!important}.m-1-xxxl-minus{margin:-4px!important}.mr-1-xxxl-minus{margin-right:-4px!important}.ml-1-xxxl-minus{margin-left:-4px!important}.mt-1-xxxl-minus{margin-top:-4px!important}.mb-1-xxxl-minus{margin-bottom:-4px!important}.p-2-xxxl{padding:8px!important}.pr-2-xxxl{padding-right:8px!important}.pl-2-xxxl{padding-left:8px!important}.pt-2-xxxl{padding-top:8px!important}.pb-2-xxxl{padding-bottom:8px!important}.px-2-xxxl{padding-left:8px!important;padding-right:8px!important}.py-2-xxxl{padding-bottom:8px!important;padding-top:8px!important}.m-2-xxxl{margin:8px!important}.mr-2-xxxl{margin-right:8px!important}.ml-2-xxxl{margin-left:8px!important}.mt-2-xxxl{margin-top:8px!important}.mb-2-xxxl{margin-bottom:8px!important}.mx-2-xxxl{margin-left:8px!important;margin-right:8px!important}.my-2-xxxl{margin-bottom:8px!important;margin-top:8px!important}.m-2-xxxl-minus{margin:-8px!important}.mr-2-xxxl-minus{margin-right:-8px!important}.ml-2-xxxl-minus{margin-left:-8px!important}.mt-2-xxxl-minus{margin-top:-8px!important}.mb-2-xxxl-minus{margin-bottom:-8px!important}.p-3-xxxl{padding:12px!important}.pr-3-xxxl{padding-right:12px!important}.pl-3-xxxl{padding-left:12px!important}.pt-3-xxxl{padding-top:12px!important}.pb-3-xxxl{padding-bottom:12px!important}.px-3-xxxl{padding-left:12px!important;padding-right:12px!important}.py-3-xxxl{padding-bottom:12px!important;padding-top:12px!important}.m-3-xxxl{margin:12px!important}.mr-3-xxxl{margin-right:12px!important}.ml-3-xxxl{margin-left:12px!important}.mt-3-xxxl{margin-top:12px!important}.mb-3-xxxl{margin-bottom:12px!important}.mx-3-xxxl{margin-left:12px!important;margin-right:12px!important}.my-3-xxxl{margin-bottom:12px!important;margin-top:12px!important}.m-3-xxxl-minus{margin:-12px!important}.mr-3-xxxl-minus{margin-right:-12px!important}.ml-3-xxxl-minus{margin-left:-12px!important}.mt-3-xxxl-minus{margin-top:-12px!important}.mb-3-xxxl-minus{margin-bottom:-12px!important}.p-4-xxxl{padding:16px!important}.pr-4-xxxl{padding-right:16px!important}.pl-4-xxxl{padding-left:16px!important}.pt-4-xxxl{padding-top:16px!important}.pb-4-xxxl{padding-bottom:16px!important}.px-4-xxxl{padding-left:16px!important;padding-right:16px!important}.py-4-xxxl{padding-bottom:16px!important;padding-top:16px!important}.m-4-xxxl{margin:16px!important}.mr-4-xxxl{margin-right:16px!important}.ml-4-xxxl{margin-left:16px!important}.mt-4-xxxl{margin-top:16px!important}.mb-4-xxxl{margin-bottom:16px!important}.mx-4-xxxl{margin-left:16px!important;margin-right:16px!important}.my-4-xxxl{margin-bottom:16px!important;margin-top:16px!important}.m-4-xxxl-minus{margin:-16px!important}.mr-4-xxxl-minus{margin-right:-16px!important}.ml-4-xxxl-minus{margin-left:-16px!important}.mt-4-xxxl-minus{margin-top:-16px!important}.mb-4-xxxl-minus{margin-bottom:-16px!important}.p-5-xxxl{padding:20px!important}.pr-5-xxxl{padding-right:20px!important}.pl-5-xxxl{padding-left:20px!important}.pt-5-xxxl{padding-top:20px!important}.pb-5-xxxl{padding-bottom:20px!important}.px-5-xxxl{padding-left:20px!important;padding-right:20px!important}.py-5-xxxl{padding-bottom:20px!important;padding-top:20px!important}.m-5-xxxl{margin:20px!important}.mr-5-xxxl{margin-right:20px!important}.ml-5-xxxl{margin-left:20px!important}.mt-5-xxxl{margin-top:20px!important}.mb-5-xxxl{margin-bottom:20px!important}.mx-5-xxxl{margin-left:20px!important;margin-right:20px!important}.my-5-xxxl{margin-bottom:20px!important;margin-top:20px!important}.m-5-xxxl-minus{margin:-20px!important}.mr-5-xxxl-minus{margin-right:-20px!important}.ml-5-xxxl-minus{margin-left:-20px!important}.mt-5-xxxl-minus{margin-top:-20px!important}.mb-5-xxxl-minus{margin-bottom:-20px!important}.p-6-xxxl{padding:24px!important}.pr-6-xxxl{padding-right:24px!important}.pl-6-xxxl{padding-left:24px!important}.pt-6-xxxl{padding-top:24px!important}.pb-6-xxxl{padding-bottom:24px!important}.px-6-xxxl{padding-left:24px!important;padding-right:24px!important}.py-6-xxxl{padding-bottom:24px!important;padding-top:24px!important}.m-6-xxxl{margin:24px!important}.mr-6-xxxl{margin-right:24px!important}.ml-6-xxxl{margin-left:24px!important}.mt-6-xxxl{margin-top:24px!important}.mb-6-xxxl{margin-bottom:24px!important}.mx-6-xxxl{margin-left:24px!important;margin-right:24px!important}.my-6-xxxl{margin-bottom:24px!important;margin-top:24px!important}.m-6-xxxl-minus{margin:-24px!important}.mr-6-xxxl-minus{margin-right:-24px!important}.ml-6-xxxl-minus{margin-left:-24px!important}.mt-6-xxxl-minus{margin-top:-24px!important}.mb-6-xxxl-minus{margin-bottom:-24px!important}.p-7-xxxl{padding:28px!important}.pr-7-xxxl{padding-right:28px!important}.pl-7-xxxl{padding-left:28px!important}.pt-7-xxxl{padding-top:28px!important}.pb-7-xxxl{padding-bottom:28px!important}.px-7-xxxl{padding-left:28px!important;padding-right:28px!important}.py-7-xxxl{padding-bottom:28px!important;padding-top:28px!important}.m-7-xxxl{margin:28px!important}.mr-7-xxxl{margin-right:28px!important}.ml-7-xxxl{margin-left:28px!important}.mt-7-xxxl{margin-top:28px!important}.mb-7-xxxl{margin-bottom:28px!important}.mx-7-xxxl{margin-left:28px!important;margin-right:28px!important}.my-7-xxxl{margin-bottom:28px!important;margin-top:28px!important}.m-7-xxxl-minus{margin:-28px!important}.mr-7-xxxl-minus{margin-right:-28px!important}.ml-7-xxxl-minus{margin-left:-28px!important}.mt-7-xxxl-minus{margin-top:-28px!important}.mb-7-xxxl-minus{margin-bottom:-28px!important}.p-8-xxxl{padding:32px!important}.pr-8-xxxl{padding-right:32px!important}.pl-8-xxxl{padding-left:32px!important}.pt-8-xxxl{padding-top:32px!important}.pb-8-xxxl{padding-bottom:32px!important}.px-8-xxxl{padding-left:32px!important;padding-right:32px!important}.py-8-xxxl{padding-bottom:32px!important;padding-top:32px!important}.m-8-xxxl{margin:32px!important}.mr-8-xxxl{margin-right:32px!important}.ml-8-xxxl{margin-left:32px!important}.mt-8-xxxl{margin-top:32px!important}.mb-8-xxxl{margin-bottom:32px!important}.mx-8-xxxl{margin-left:32px!important;margin-right:32px!important}.my-8-xxxl{margin-bottom:32px!important;margin-top:32px!important}.m-8-xxxl-minus{margin:-32px!important}.mr-8-xxxl-minus{margin-right:-32px!important}.ml-8-xxxl-minus{margin-left:-32px!important}.mt-8-xxxl-minus{margin-top:-32px!important}.mb-8-xxxl-minus{margin-bottom:-32px!important}.p-9-xxxl{padding:36px!important}.pr-9-xxxl{padding-right:36px!important}.pl-9-xxxl{padding-left:36px!important}.pt-9-xxxl{padding-top:36px!important}.pb-9-xxxl{padding-bottom:36px!important}.px-9-xxxl{padding-left:36px!important;padding-right:36px!important}.py-9-xxxl{padding-bottom:36px!important;padding-top:36px!important}.m-9-xxxl{margin:36px!important}.mr-9-xxxl{margin-right:36px!important}.ml-9-xxxl{margin-left:36px!important}.mt-9-xxxl{margin-top:36px!important}.mb-9-xxxl{margin-bottom:36px!important}.mx-9-xxxl{margin-left:36px!important;margin-right:36px!important}.my-9-xxxl{margin-bottom:36px!important;margin-top:36px!important}.m-9-xxxl-minus{margin:-36px!important}.mr-9-xxxl-minus{margin-right:-36px!important}.ml-9-xxxl-minus{margin-left:-36px!important}.mt-9-xxxl-minus{margin-top:-36px!important}.mb-9-xxxl-minus{margin-bottom:-36px!important}.p-10-xxxl{padding:40px!important}.pr-10-xxxl{padding-right:40px!important}.pl-10-xxxl{padding-left:40px!important}.pt-10-xxxl{padding-top:40px!important}.pb-10-xxxl{padding-bottom:40px!important}.px-10-xxxl{padding-left:40px!important;padding-right:40px!important}.py-10-xxxl{padding-bottom:40px!important;padding-top:40px!important}.m-10-xxxl{margin:40px!important}.mr-10-xxxl{margin-right:40px!important}.ml-10-xxxl{margin-left:40px!important}.mt-10-xxxl{margin-top:40px!important}.mb-10-xxxl{margin-bottom:40px!important}.mx-10-xxxl{margin-left:40px!important;margin-right:40px!important}.my-10-xxxl{margin-bottom:40px!important;margin-top:40px!important}.m-10-xxxl-minus{margin:-40px!important}.mr-10-xxxl-minus{margin-right:-40px!important}.ml-10-xxxl-minus{margin-left:-40px!important}.mt-10-xxxl-minus{margin-top:-40px!important}.mb-10-xxxl-minus{margin-bottom:-40px!important}.p-11-xxxl{padding:44px!important}.pr-11-xxxl{padding-right:44px!important}.pl-11-xxxl{padding-left:44px!important}.pt-11-xxxl{padding-top:44px!important}.pb-11-xxxl{padding-bottom:44px!important}.px-11-xxxl{padding-left:44px!important;padding-right:44px!important}.py-11-xxxl{padding-bottom:44px!important;padding-top:44px!important}.m-11-xxxl{margin:44px!important}.mr-11-xxxl{margin-right:44px!important}.ml-11-xxxl{margin-left:44px!important}.mt-11-xxxl{margin-top:44px!important}.mb-11-xxxl{margin-bottom:44px!important}.mx-11-xxxl{margin-left:44px!important;margin-right:44px!important}.my-11-xxxl{margin-bottom:44px!important;margin-top:44px!important}.m-11-xxxl-minus{margin:-44px!important}.mr-11-xxxl-minus{margin-right:-44px!important}.ml-11-xxxl-minus{margin-left:-44px!important}.mt-11-xxxl-minus{margin-top:-44px!important}.mb-11-xxxl-minus{margin-bottom:-44px!important}.p-12-xxxl{padding:48px!important}.pr-12-xxxl{padding-right:48px!important}.pl-12-xxxl{padding-left:48px!important}.pt-12-xxxl{padding-top:48px!important}.pb-12-xxxl{padding-bottom:48px!important}.px-12-xxxl{padding-left:48px!important;padding-right:48px!important}.py-12-xxxl{padding-bottom:48px!important;padding-top:48px!important}.m-12-xxxl{margin:48px!important}.mr-12-xxxl{margin-right:48px!important}.ml-12-xxxl{margin-left:48px!important}.mt-12-xxxl{margin-top:48px!important}.mb-12-xxxl{margin-bottom:48px!important}.mx-12-xxxl{margin-left:48px!important;margin-right:48px!important}.my-12-xxxl{margin-bottom:48px!important;margin-top:48px!important}.m-12-xxxl-minus{margin:-48px!important}.mr-12-xxxl-minus{margin-right:-48px!important}.ml-12-xxxl-minus{margin-left:-48px!important}.mt-12-xxxl-minus{margin-top:-48px!important}.mb-12-xxxl-minus{margin-bottom:-48px!important}.p-13-xxxl{padding:52px!important}.pr-13-xxxl{padding-right:52px!important}.pl-13-xxxl{padding-left:52px!important}.pt-13-xxxl{padding-top:52px!important}.pb-13-xxxl{padding-bottom:52px!important}.px-13-xxxl{padding-left:52px!important;padding-right:52px!important}.py-13-xxxl{padding-bottom:52px!important;padding-top:52px!important}.m-13-xxxl{margin:52px!important}.mr-13-xxxl{margin-right:52px!important}.ml-13-xxxl{margin-left:52px!important}.mt-13-xxxl{margin-top:52px!important}.mb-13-xxxl{margin-bottom:52px!important}.mx-13-xxxl{margin-left:52px!important;margin-right:52px!important}.my-13-xxxl{margin-bottom:52px!important;margin-top:52px!important}.m-13-xxxl-minus{margin:-52px!important}.mr-13-xxxl-minus{margin-right:-52px!important}.ml-13-xxxl-minus{margin-left:-52px!important}.mt-13-xxxl-minus{margin-top:-52px!important}.mb-13-xxxl-minus{margin-bottom:-52px!important}.p-14-xxxl{padding:56px!important}.pr-14-xxxl{padding-right:56px!important}.pl-14-xxxl{padding-left:56px!important}.pt-14-xxxl{padding-top:56px!important}.pb-14-xxxl{padding-bottom:56px!important}.px-14-xxxl{padding-left:56px!important;padding-right:56px!important}.py-14-xxxl{padding-bottom:56px!important;padding-top:56px!important}.m-14-xxxl{margin:56px!important}.mr-14-xxxl{margin-right:56px!important}.ml-14-xxxl{margin-left:56px!important}.mt-14-xxxl{margin-top:56px!important}.mb-14-xxxl{margin-bottom:56px!important}.mx-14-xxxl{margin-left:56px!important;margin-right:56px!important}.my-14-xxxl{margin-bottom:56px!important;margin-top:56px!important}.m-14-xxxl-minus{margin:-56px!important}.mr-14-xxxl-minus{margin-right:-56px!important}.ml-14-xxxl-minus{margin-left:-56px!important}.mt-14-xxxl-minus{margin-top:-56px!important}.mb-14-xxxl-minus{margin-bottom:-56px!important}.p-15-xxxl{padding:60px!important}.pr-15-xxxl{padding-right:60px!important}.pl-15-xxxl{padding-left:60px!important}.pt-15-xxxl{padding-top:60px!important}.pb-15-xxxl{padding-bottom:60px!important}.px-15-xxxl{padding-left:60px!important;padding-right:60px!important}.py-15-xxxl{padding-bottom:60px!important;padding-top:60px!important}.m-15-xxxl{margin:60px!important}.mr-15-xxxl{margin-right:60px!important}.ml-15-xxxl{margin-left:60px!important}.mt-15-xxxl{margin-top:60px!important}.mb-15-xxxl{margin-bottom:60px!important}.mx-15-xxxl{margin-left:60px!important;margin-right:60px!important}.my-15-xxxl{margin-bottom:60px!important;margin-top:60px!important}.m-15-xxxl-minus{margin:-60px!important}.mr-15-xxxl-minus{margin-right:-60px!important}.ml-15-xxxl-minus{margin-left:-60px!important}.mt-15-xxxl-minus{margin-top:-60px!important}.mb-15-xxxl-minus{margin-bottom:-60px!important}.p-16-xxxl{padding:64px!important}.pr-16-xxxl{padding-right:64px!important}.pl-16-xxxl{padding-left:64px!important}.pt-16-xxxl{padding-top:64px!important}.pb-16-xxxl{padding-bottom:64px!important}.px-16-xxxl{padding-left:64px!important;padding-right:64px!important}.py-16-xxxl{padding-bottom:64px!important;padding-top:64px!important}.m-16-xxxl{margin:64px!important}.mr-16-xxxl{margin-right:64px!important}.ml-16-xxxl{margin-left:64px!important}.mt-16-xxxl{margin-top:64px!important}.mb-16-xxxl{margin-bottom:64px!important}.mx-16-xxxl{margin-left:64px!important;margin-right:64px!important}.my-16-xxxl{margin-bottom:64px!important;margin-top:64px!important}.m-16-xxxl-minus{margin:-64px!important}.mr-16-xxxl-minus{margin-right:-64px!important}.ml-16-xxxl-minus{margin-left:-64px!important}.mt-16-xxxl-minus{margin-top:-64px!important}.mb-16-xxxl-minus{margin-bottom:-64px!important}.p-17-xxxl{padding:68px!important}.pr-17-xxxl{padding-right:68px!important}.pl-17-xxxl{padding-left:68px!important}.pt-17-xxxl{padding-top:68px!important}.pb-17-xxxl{padding-bottom:68px!important}.px-17-xxxl{padding-left:68px!important;padding-right:68px!important}.py-17-xxxl{padding-bottom:68px!important;padding-top:68px!important}.m-17-xxxl{margin:68px!important}.mr-17-xxxl{margin-right:68px!important}.ml-17-xxxl{margin-left:68px!important}.mt-17-xxxl{margin-top:68px!important}.mb-17-xxxl{margin-bottom:68px!important}.mx-17-xxxl{margin-left:68px!important;margin-right:68px!important}.my-17-xxxl{margin-bottom:68px!important;margin-top:68px!important}.m-17-xxxl-minus{margin:-68px!important}.mr-17-xxxl-minus{margin-right:-68px!important}.ml-17-xxxl-minus{margin-left:-68px!important}.mt-17-xxxl-minus{margin-top:-68px!important}.mb-17-xxxl-minus{margin-bottom:-68px!important}.p-18-xxxl{padding:72px!important}.pr-18-xxxl{padding-right:72px!important}.pl-18-xxxl{padding-left:72px!important}.pt-18-xxxl{padding-top:72px!important}.pb-18-xxxl{padding-bottom:72px!important}.px-18-xxxl{padding-left:72px!important;padding-right:72px!important}.py-18-xxxl{padding-bottom:72px!important;padding-top:72px!important}.m-18-xxxl{margin:72px!important}.mr-18-xxxl{margin-right:72px!important}.ml-18-xxxl{margin-left:72px!important}.mt-18-xxxl{margin-top:72px!important}.mb-18-xxxl{margin-bottom:72px!important}.mx-18-xxxl{margin-left:72px!important;margin-right:72px!important}.my-18-xxxl{margin-bottom:72px!important;margin-top:72px!important}.m-18-xxxl-minus{margin:-72px!important}.mr-18-xxxl-minus{margin-right:-72px!important}.ml-18-xxxl-minus{margin-left:-72px!important}.mt-18-xxxl-minus{margin-top:-72px!important}.mb-18-xxxl-minus{margin-bottom:-72px!important}.p-19-xxxl{padding:76px!important}.pr-19-xxxl{padding-right:76px!important}.pl-19-xxxl{padding-left:76px!important}.pt-19-xxxl{padding-top:76px!important}.pb-19-xxxl{padding-bottom:76px!important}.px-19-xxxl{padding-left:76px!important;padding-right:76px!important}.py-19-xxxl{padding-bottom:76px!important;padding-top:76px!important}.m-19-xxxl{margin:76px!important}.mr-19-xxxl{margin-right:76px!important}.ml-19-xxxl{margin-left:76px!important}.mt-19-xxxl{margin-top:76px!important}.mb-19-xxxl{margin-bottom:76px!important}.mx-19-xxxl{margin-left:76px!important;margin-right:76px!important}.my-19-xxxl{margin-bottom:76px!important;margin-top:76px!important}.m-19-xxxl-minus{margin:-76px!important}.mr-19-xxxl-minus{margin-right:-76px!important}.ml-19-xxxl-minus{margin-left:-76px!important}.mt-19-xxxl-minus{margin-top:-76px!important}.mb-19-xxxl-minus{margin-bottom:-76px!important}.p-20-xxxl{padding:80px!important}.pr-20-xxxl{padding-right:80px!important}.pl-20-xxxl{padding-left:80px!important}.pt-20-xxxl{padding-top:80px!important}.pb-20-xxxl{padding-bottom:80px!important}.px-20-xxxl{padding-left:80px!important;padding-right:80px!important}.py-20-xxxl{padding-bottom:80px!important;padding-top:80px!important}.m-20-xxxl{margin:80px!important}.mr-20-xxxl{margin-right:80px!important}.ml-20-xxxl{margin-left:80px!important}.mt-20-xxxl{margin-top:80px!important}.mb-20-xxxl{margin-bottom:80px!important}.mx-20-xxxl{margin-left:80px!important;margin-right:80px!important}.my-20-xxxl{margin-bottom:80px!important;margin-top:80px!important}.m-20-xxxl-minus{margin:-80px!important}.mr-20-xxxl-minus{margin-right:-80px!important}.ml-20-xxxl-minus{margin-left:-80px!important}.mt-20-xxxl-minus{margin-top:-80px!important}.mb-20-xxxl-minus{margin-bottom:-80px!important}}");styleInject(':root{--mark-background:#a6d2ff;--mark-color:#191919;--code-background:#f8f8f8;--code-color:#191919;--kbd-background:#004d6f;--kbd-color:#fff}.dark-side{--mark-background:silver;--mark-color:#000;--code-background:#26282e;--code-color:#fff;--kbd-background:#004d6f;--kbd-color:#fff}.text-ultralight{font-weight:100!important}.text-light{font-weight:200!important}.text-normal{font-weight:400!important}.text-medium{font-weight:500!important}.text-bold{font-weight:700!important}.display4{font-size:112px;font-weight:200}.display3{font-size:56px;font-weight:400}.display2{font-size:48px;font-weight:400}.display1{font-size:36px;font-weight:400}.display1,.display2,.display3,.display4{line-height:1;margin-bottom:20px;margin-top:20px}.h1,.leader,h1{font-size:48px;font-weight:100}.h2,.sub-leader,h2{font-size:38px;font-weight:400}.h3,.header,h3{font-size:30px;font-weight:500}.h4,.sub-header,h4{font-size:24px;font-weight:500}.alt-header,.h5,h5{font-size:20px;font-weight:500}.h6,.sub-alt-header,h6{font-size:16px;font-weight:500}.text-small{font-size:12px;font-weight:400}.text-secondary{font-size:14px;font-weight:400}.text-leader{font-size:24px}.text-leader,.text-leader2{font-weight:300;line-height:1.2}.text-leader2{font-size:20px}.text-muted{color:var(--body-color-secondary)}.alt-header,.h1,.h2,.h3,.h4,.h5,.h6,.header,.leader,.sub-alt-header,.sub-header,.sub-leader,h1,h2,h3,h4,h5,h6{color:inherit;line-height:1.1;margin:1rem 0}.alt-header>.small,.alt-header>small,.h1>.small,.h1>small,.h2>.small,.h2>small,.h3>.small,.h3>small,.h4>.small,.h4>small,.h5>.small,.h5>small,.h6>.small,.h6>small,.header>.small,.header>small,.leader>.small,.leader>small,.sub-alt-header>.small,.sub-alt-header>small,.sub-header>.small,.sub-header>small,.sub-leader>.small,.sub-leader>small,h1>.small,h1>small,h2>.small,h2>small,h3>.small,h3>small,h4>.small,h4>small,h5>.small,h5>small,h6>.small,h6>small{color:var(--body-color-secondary);font-size:.7em;font-weight:400;line-height:1}.alt-header:first-child,.h1:first-child,.h2:first-child,.h3:first-child,.h4:first-child,.h5:first-child,.h6:first-child,.header:first-child,.leader:first-child,.sub-alt-header:first-child,.sub-header:first-child,.sub-leader:first-child,h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}.text-upper{text-transform:uppercase!important}.text-lower{text-transform:lowercase!important}.text-cap{text-transform:capitalize!important}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}.text-just{text-align:justify!important}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-italic{font-style:italic!important}.text-oblique{font-style:oblique!important}.text-overline{text-decoration:overline!important}.text-linethrough{text-decoration:line-through!important}.text-underline{text-decoration:underline!important}.text-underover{text-decoration:underline overline!important}.va-top{vertical-align:top!important}.va-bottom{vertical-align:bottom!important}.va-baseline{vertical-align:initial!important}.va-middle{vertical-align:middle!important}.va-sub{vertical-align:sub!important}.va-super{vertical-align:super!important}.va-text-top{vertical-align:text-top!important}.va-text-bottom{vertical-align:text-bottom!important}abbr{border-bottom:1px dotted var(--border-color);cursor:help;display:inline;text-decoration:none}address{font-style:normal;font-weight:400;margin-bottom:1rem}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}code,kbd,pre,samp{font-family:monospace,monospace;font-size:16px}pre{margin:0;overflow:auto}code{white-space:nowrap}pre code{white-space:inherit}a{-webkit-text-decoration-skip:objects;background-color:initial;-webkit-box-shadow:none;box-shadow:none;color:var(--link-color);position:relative;text-decoration:none}a:hover{color:var(--link-color-hover);text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;outline:0;text-decoration:none}.no-decor{text-decoration:none!important}mark{background-color:var(--mark-background);color:var(--mark-color);padding:.1875rem}del{color:var(--body-color-secondary);text-decoration:line-through}*+p{margin-top:1rem}dl,ol,ul{list-style-position:inside;margin:1rem}dl dl,dl ol,dl ul,ol dl,ol ol,ol ul,ul dl,ul ol,ul ul{margin-bottom:0;margin-top:0;padding-left:1.5rem}dir,menu,ul{display:block;list-style-type:disc}ol{list-style-type:decimal}ul ul{list-style:circle}ul ul ul{list-style:square}ol{list-style-type:upper-roman}ol ol{list-style-type:decimal}ol ol ol{list-style-type:lower-alpha}dl dd,dl dt{line-height:1.25rem}dl dt{font-weight:700}dl dd{margin-left:.9375rem}dl.horizontal dt{clear:left;float:left;overflow:hidden;text-align:right;text-overflow:ellipsis;white-space:nowrap;width:10rem}dl.horizontal dd{margin-left:11.25rem}.indent:first-letter{margin-left:2.5rem}.indent-letter:first-letter{float:left;font-size:3rem;font-weight:700;line-height:2.5rem;margin-left:-.125rem;margin-right:.5rem;margin-top:.125rem;padding:0}blockquote{border-left:.25rem solid var(--border-color);margin-bottom:1rem;padding:0 0 0 .625rem}blockquote small{color:var(--body-color-secondary)}blockquote small:before{content:"\\2014 \\00A0"}blockquote.right-side{border:0;border-right:4px solid var(--border-color);padding-right:.625rem;text-align:right}blockquote.right-side small:before{content:""}blockquote.right-side small:after{content:" \\00A0 \\2014"}hr{background-color:var(--border-color);border:0;height:2px}hr.thin{height:1px}hr.fat{height:3px}.tally,code,kbd{background-color:var(--code-background);border-radius:4px;color:var(--code-color);display:inline-block;font-size:90%;padding:0 6px;vertical-align:middle}a .tally,a code,a kbd{cursor:pointer;text-decoration:underline}kbd{background-color:var(--kbd-background);color:var(--kbd-color)}.tally{line-height:16px}pre code{background-color:inherit;height:auto}.reduce-1{font-size:.9em!important}.reduce-2{font-size:.8em!important}.reduce-3{font-size:.7em!important}.reduce-4{font-size:.6em!important}.reduce-5{font-size:.5em!important}.reduce-6{font-size:.4em!important}.reduce-7{font-size:.3em!important}.reduce-8{font-size:.2em!important}.reduce-9{font-size:.1em!important}.enlarge{font-size:1em!important}.enlarge-1{font-size:1.1em!important}.enlarge-2{font-size:1.2em!important}.enlarge-3{font-size:1.3em!important}.enlarge-4{font-size:1.4em!important}.enlarge-5{font-size:1.5em!important}.enlarge-6{font-size:1.6em!important}.enlarge-7{font-size:1.7em!important}.enlarge-8{font-size:1.8em!important}.enlarge-9{font-size:1.9em!important}.enlarge-2x{font-size:2em!important}.enlarge-3x{font-size:3em!important}.enlarge-4x{font-size:4em!important}.align-size{font-size:1em!important}.text-underline{text-decoration:underline}@media screen and (min-width:0){.text-upper-fs{text-transform:uppercase!important}.text-lower-fs{text-transform:lowercase!important}.text-cap-fs{text-transform:capitalize!important}.text-left-fs{text-align:left!important}.text-right-fs{text-align:right!important}.text-center-fs{text-align:center!important}.text-just-fs{text-align:justify!important}.va-top-fs{vertical-align:top!important}.va-bottom-fs{vertical-align:bottom!important}.va-baseline-fs{vertical-align:initial!important}.va-middle-fs{vertical-align:middle!important}.va-sub-fs{vertical-align:sub!important}.va-super-fs{vertical-align:super!important}.va-text-top-fs{vertical-align:text-top!important}.va-text-bottom-fs{vertical-align:text-bottom!important}.reduce-1-fs{font-size:.9em!important}.reduce-2-fs{font-size:.8em!important}.reduce-3-fs{font-size:.7em!important}.reduce-4-fs{font-size:.6em!important}.reduce-5-fs{font-size:.5em!important}.reduce-6-fs{font-size:.4em!important}.reduce-7-fs{font-size:.3em!important}.reduce-8-fs{font-size:.2em!important}.reduce-9-fs{font-size:.1em!important}.enlarge-fs{font-size:1em!important}.enlarge-1-fs{font-size:1.1em!important}.enlarge-2-fs{font-size:1.2em!important}.enlarge-3-fs{font-size:1.3em!important}.enlarge-4-fs{font-size:1.4em!important}.enlarge-5-fs{font-size:1.5em!important}.enlarge-6-fs{font-size:1.6em!important}.enlarge-7-fs{font-size:1.7em!important}.enlarge-8-fs{font-size:1.8em!important}.enlarge-9-fs{font-size:1.9em!important}.enlarge-2x-fs{font-size:2em!important}.enlarge-3x-fs{font-size:3em!important}.enlarge-4x-fs{font-size:4em!important}}@media screen and (min-width:360px){.text-upper-xs{text-transform:uppercase!important}.text-lower-xs{text-transform:lowercase!important}.text-cap-xs{text-transform:capitalize!important}.text-left-xs{text-align:left!important}.text-right-xs{text-align:right!important}.text-center-xs{text-align:center!important}.text-just-xs{text-align:justify!important}.va-top-xs{vertical-align:top!important}.va-bottom-xs{vertical-align:bottom!important}.va-baseline-xs{vertical-align:initial!important}.va-middle-xs{vertical-align:middle!important}.va-sub-xs{vertical-align:sub!important}.va-super-xs{vertical-align:super!important}.va-text-top-xs{vertical-align:text-top!important}.va-text-bottom-xs{vertical-align:text-bottom!important}.reduce-1-xs{font-size:.9em!important}.reduce-2-xs{font-size:.8em!important}.reduce-3-xs{font-size:.7em!important}.reduce-4-xs{font-size:.6em!important}.reduce-5-xs{font-size:.5em!important}.reduce-6-xs{font-size:.4em!important}.reduce-7-xs{font-size:.3em!important}.reduce-8-xs{font-size:.2em!important}.reduce-9-xs{font-size:.1em!important}.enlarge-xs{font-size:1em!important}.enlarge-1-xs{font-size:1.1em!important}.enlarge-2-xs{font-size:1.2em!important}.enlarge-3-xs{font-size:1.3em!important}.enlarge-4-xs{font-size:1.4em!important}.enlarge-5-xs{font-size:1.5em!important}.enlarge-6-xs{font-size:1.6em!important}.enlarge-7-xs{font-size:1.7em!important}.enlarge-8-xs{font-size:1.8em!important}.enlarge-9-xs{font-size:1.9em!important}.enlarge-2x-xs{font-size:2em!important}.enlarge-3x-xs{font-size:3em!important}.enlarge-4x-xs{font-size:4em!important}}@media screen and (min-width:576px){.text-upper-sm{text-transform:uppercase!important}.text-lower-sm{text-transform:lowercase!important}.text-cap-sm{text-transform:capitalize!important}.text-left-sm{text-align:left!important}.text-right-sm{text-align:right!important}.text-center-sm{text-align:center!important}.text-just-sm{text-align:justify!important}.va-top-sm{vertical-align:top!important}.va-bottom-sm{vertical-align:bottom!important}.va-baseline-sm{vertical-align:initial!important}.va-middle-sm{vertical-align:middle!important}.va-sub-sm{vertical-align:sub!important}.va-super-sm{vertical-align:super!important}.va-text-top-sm{vertical-align:text-top!important}.va-text-bottom-sm{vertical-align:text-bottom!important}.reduce-1-sm{font-size:.9em!important}.reduce-2-sm{font-size:.8em!important}.reduce-3-sm{font-size:.7em!important}.reduce-4-sm{font-size:.6em!important}.reduce-5-sm{font-size:.5em!important}.reduce-6-sm{font-size:.4em!important}.reduce-7-sm{font-size:.3em!important}.reduce-8-sm{font-size:.2em!important}.reduce-9-sm{font-size:.1em!important}.enlarge-sm{font-size:1em!important}.enlarge-1-sm{font-size:1.1em!important}.enlarge-2-sm{font-size:1.2em!important}.enlarge-3-sm{font-size:1.3em!important}.enlarge-4-sm{font-size:1.4em!important}.enlarge-5-sm{font-size:1.5em!important}.enlarge-6-sm{font-size:1.6em!important}.enlarge-7-sm{font-size:1.7em!important}.enlarge-8-sm{font-size:1.8em!important}.enlarge-9-sm{font-size:1.9em!important}.enlarge-2x-sm{font-size:2em!important}.enlarge-3x-sm{font-size:3em!important}.enlarge-4x-sm{font-size:4em!important}}@media screen and (min-width:640px){.text-upper-ld{text-transform:uppercase!important}.text-lower-ld{text-transform:lowercase!important}.text-cap-ld{text-transform:capitalize!important}.text-left-ld{text-align:left!important}.text-right-ld{text-align:right!important}.text-center-ld{text-align:center!important}.text-just-ld{text-align:justify!important}.va-top-ld{vertical-align:top!important}.va-bottom-ld{vertical-align:bottom!important}.va-baseline-ld{vertical-align:initial!important}.va-middle-ld{vertical-align:middle!important}.va-sub-ld{vertical-align:sub!important}.va-super-ld{vertical-align:super!important}.va-text-top-ld{vertical-align:text-top!important}.va-text-bottom-ld{vertical-align:text-bottom!important}.reduce-1-ld{font-size:.9em!important}.reduce-2-ld{font-size:.8em!important}.reduce-3-ld{font-size:.7em!important}.reduce-4-ld{font-size:.6em!important}.reduce-5-ld{font-size:.5em!important}.reduce-6-ld{font-size:.4em!important}.reduce-7-ld{font-size:.3em!important}.reduce-8-ld{font-size:.2em!important}.reduce-9-ld{font-size:.1em!important}.enlarge-ld{font-size:1em!important}.enlarge-1-ld{font-size:1.1em!important}.enlarge-2-ld{font-size:1.2em!important}.enlarge-3-ld{font-size:1.3em!important}.enlarge-4-ld{font-size:1.4em!important}.enlarge-5-ld{font-size:1.5em!important}.enlarge-6-ld{font-size:1.6em!important}.enlarge-7-ld{font-size:1.7em!important}.enlarge-8-ld{font-size:1.8em!important}.enlarge-9-ld{font-size:1.9em!important}.enlarge-2x-ld{font-size:2em!important}.enlarge-3x-ld{font-size:3em!important}.enlarge-4x-ld{font-size:4em!important}}@media screen and (min-width:768px){.text-upper-md{text-transform:uppercase!important}.text-lower-md{text-transform:lowercase!important}.text-cap-md{text-transform:capitalize!important}.text-left-md{text-align:left!important}.text-right-md{text-align:right!important}.text-center-md{text-align:center!important}.text-just-md{text-align:justify!important}.va-top-md{vertical-align:top!important}.va-bottom-md{vertical-align:bottom!important}.va-baseline-md{vertical-align:initial!important}.va-middle-md{vertical-align:middle!important}.va-sub-md{vertical-align:sub!important}.va-super-md{vertical-align:super!important}.va-text-top-md{vertical-align:text-top!important}.va-text-bottom-md{vertical-align:text-bottom!important}.reduce-1-md{font-size:.9em!important}.reduce-2-md{font-size:.8em!important}.reduce-3-md{font-size:.7em!important}.reduce-4-md{font-size:.6em!important}.reduce-5-md{font-size:.5em!important}.reduce-6-md{font-size:.4em!important}.reduce-7-md{font-size:.3em!important}.reduce-8-md{font-size:.2em!important}.reduce-9-md{font-size:.1em!important}.enlarge-md{font-size:1em!important}.enlarge-1-md{font-size:1.1em!important}.enlarge-2-md{font-size:1.2em!important}.enlarge-3-md{font-size:1.3em!important}.enlarge-4-md{font-size:1.4em!important}.enlarge-5-md{font-size:1.5em!important}.enlarge-6-md{font-size:1.6em!important}.enlarge-7-md{font-size:1.7em!important}.enlarge-8-md{font-size:1.8em!important}.enlarge-9-md{font-size:1.9em!important}.enlarge-2x-md{font-size:2em!important}.enlarge-3x-md{font-size:3em!important}.enlarge-4x-md{font-size:4em!important}}@media screen and (min-width:992px){.text-upper-lg{text-transform:uppercase!important}.text-lower-lg{text-transform:lowercase!important}.text-cap-lg{text-transform:capitalize!important}.text-left-lg{text-align:left!important}.text-right-lg{text-align:right!important}.text-center-lg{text-align:center!important}.text-just-lg{text-align:justify!important}.va-top-lg{vertical-align:top!important}.va-bottom-lg{vertical-align:bottom!important}.va-baseline-lg{vertical-align:initial!important}.va-middle-lg{vertical-align:middle!important}.va-sub-lg{vertical-align:sub!important}.va-super-lg{vertical-align:super!important}.va-text-top-lg{vertical-align:text-top!important}.va-text-bottom-lg{vertical-align:text-bottom!important}.reduce-1-lg{font-size:.9em!important}.reduce-2-lg{font-size:.8em!important}.reduce-3-lg{font-size:.7em!important}.reduce-4-lg{font-size:.6em!important}.reduce-5-lg{font-size:.5em!important}.reduce-6-lg{font-size:.4em!important}.reduce-7-lg{font-size:.3em!important}.reduce-8-lg{font-size:.2em!important}.reduce-9-lg{font-size:.1em!important}.enlarge-lg{font-size:1em!important}.enlarge-1-lg{font-size:1.1em!important}.enlarge-2-lg{font-size:1.2em!important}.enlarge-3-lg{font-size:1.3em!important}.enlarge-4-lg{font-size:1.4em!important}.enlarge-5-lg{font-size:1.5em!important}.enlarge-6-lg{font-size:1.6em!important}.enlarge-7-lg{font-size:1.7em!important}.enlarge-8-lg{font-size:1.8em!important}.enlarge-9-lg{font-size:1.9em!important}.enlarge-2x-lg{font-size:2em!important}.enlarge-3x-lg{font-size:3em!important}.enlarge-4x-lg{font-size:4em!important}}@media screen and (min-width:1200px){.text-upper-xl{text-transform:uppercase!important}.text-lower-xl{text-transform:lowercase!important}.text-cap-xl{text-transform:capitalize!important}.text-left-xl{text-align:left!important}.text-right-xl{text-align:right!important}.text-center-xl{text-align:center!important}.text-just-xl{text-align:justify!important}.va-top-xl{vertical-align:top!important}.va-bottom-xl{vertical-align:bottom!important}.va-baseline-xl{vertical-align:initial!important}.va-middle-xl{vertical-align:middle!important}.va-sub-xl{vertical-align:sub!important}.va-super-xl{vertical-align:super!important}.va-text-top-xl{vertical-align:text-top!important}.va-text-bottom-xl{vertical-align:text-bottom!important}.reduce-1-xl{font-size:.9em!important}.reduce-2-xl{font-size:.8em!important}.reduce-3-xl{font-size:.7em!important}.reduce-4-xl{font-size:.6em!important}.reduce-5-xl{font-size:.5em!important}.reduce-6-xl{font-size:.4em!important}.reduce-7-xl{font-size:.3em!important}.reduce-8-xl{font-size:.2em!important}.reduce-9-xl{font-size:.1em!important}.enlarge-xl{font-size:1em!important}.enlarge-1-xl{font-size:1.1em!important}.enlarge-2-xl{font-size:1.2em!important}.enlarge-3-xl{font-size:1.3em!important}.enlarge-4-xl{font-size:1.4em!important}.enlarge-5-xl{font-size:1.5em!important}.enlarge-6-xl{font-size:1.6em!important}.enlarge-7-xl{font-size:1.7em!important}.enlarge-8-xl{font-size:1.8em!important}.enlarge-9-xl{font-size:1.9em!important}.enlarge-2x-xl{font-size:2em!important}.enlarge-3x-xl{font-size:3em!important}.enlarge-4x-xl{font-size:4em!important}}@media screen and (min-width:1452px){.text-upper-xxl{text-transform:uppercase!important}.text-lower-xxl{text-transform:lowercase!important}.text-cap-xxl{text-transform:capitalize!important}.text-left-xxl{text-align:left!important}.text-right-xxl{text-align:right!important}.text-center-xxl{text-align:center!important}.text-just-xxl{text-align:justify!important}.va-top-xxl{vertical-align:top!important}.va-bottom-xxl{vertical-align:bottom!important}.va-baseline-xxl{vertical-align:initial!important}.va-middle-xxl{vertical-align:middle!important}.va-sub-xxl{vertical-align:sub!important}.va-super-xxl{vertical-align:super!important}.va-text-top-xxl{vertical-align:text-top!important}.va-text-bottom-xxl{vertical-align:text-bottom!important}.reduce-1-xxl{font-size:.9em!important}.reduce-2-xxl{font-size:.8em!important}.reduce-3-xxl{font-size:.7em!important}.reduce-4-xxl{font-size:.6em!important}.reduce-5-xxl{font-size:.5em!important}.reduce-6-xxl{font-size:.4em!important}.reduce-7-xxl{font-size:.3em!important}.reduce-8-xxl{font-size:.2em!important}.reduce-9-xxl{font-size:.1em!important}.enlarge-xxl{font-size:1em!important}.enlarge-1-xxl{font-size:1.1em!important}.enlarge-2-xxl{font-size:1.2em!important}.enlarge-3-xxl{font-size:1.3em!important}.enlarge-4-xxl{font-size:1.4em!important}.enlarge-5-xxl{font-size:1.5em!important}.enlarge-6-xxl{font-size:1.6em!important}.enlarge-7-xxl{font-size:1.7em!important}.enlarge-8-xxl{font-size:1.8em!important}.enlarge-9-xxl{font-size:1.9em!important}.enlarge-2x-xxl{font-size:2em!important}.enlarge-3x-xxl{font-size:3em!important}.enlarge-4x-xxl{font-size:4em!important}}@media screen and (min-width:2000px){.text-upper-xxxl{text-transform:uppercase!important}.text-lower-xxxl{text-transform:lowercase!important}.text-cap-xxxl{text-transform:capitalize!important}.text-left-xxxl{text-align:left!important}.text-right-xxxl{text-align:right!important}.text-center-xxxl{text-align:center!important}.text-just-xxxl{text-align:justify!important}.va-top-xxxl{vertical-align:top!important}.va-bottom-xxxl{vertical-align:bottom!important}.va-baseline-xxxl{vertical-align:initial!important}.va-middle-xxxl{vertical-align:middle!important}.va-sub-xxxl{vertical-align:sub!important}.va-super-xxxl{vertical-align:super!important}.va-text-top-xxxl{vertical-align:text-top!important}.va-text-bottom-xxxl{vertical-align:text-bottom!important}.reduce-1-xxxl{font-size:.9em!important}.reduce-2-xxxl{font-size:.8em!important}.reduce-3-xxxl{font-size:.7em!important}.reduce-4-xxxl{font-size:.6em!important}.reduce-5-xxxl{font-size:.5em!important}.reduce-6-xxxl{font-size:.4em!important}.reduce-7-xxxl{font-size:.3em!important}.reduce-8-xxxl{font-size:.2em!important}.reduce-9-xxxl{font-size:.1em!important}.enlarge-xxxl{font-size:1em!important}.enlarge-1-xxxl{font-size:1.1em!important}.enlarge-2-xxxl{font-size:1.2em!important}.enlarge-3-xxxl{font-size:1.3em!important}.enlarge-4-xxxl{font-size:1.4em!important}.enlarge-5-xxxl{font-size:1.5em!important}.enlarge-6-xxxl{font-size:1.6em!important}.enlarge-7-xxxl{font-size:1.7em!important}.enlarge-8-xxxl{font-size:1.8em!important}.enlarge-9-xxxl{font-size:1.9em!important}.enlarge-2x-xxxl{font-size:2em!important}.enlarge-3x-xxxl{font-size:3em!important}.enlarge-4x-xxxl{font-size:4em!important}}.wrap-long{word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.error{-webkit-text-decoration:underline wavy red;text-decoration:underline wavy red}');styleInject(':root{--selected-color:#1fb1f8}.transition{-webkit-transition:all .3s linear;transition:all .3s linear}.inherit-colors{color:inherit!important}.inherit-background,.inherit-colors{background-color:inherit!important}.inherit-color{color:inherit!important}.clear-fix:after,.clear:after,.clearfix:after{clear:both;content:"";display:block}.overflow{overflow:auto!important}.no-overflow{overflow:hidden!important}.scroll{overflow:scroll!important}.scroll-x{overflow-x:auto!important}.scroll-y{overflow-y:auto!important}.no-scroll{overflow:hidden!important}.no-scroll-x{overflow-x:hidden!important}.no-scroll-y{overflow-y:hidden!important}.wrap{white-space:normal!important}.no-wrap{white-space:nowrap!important}.no-user-select{-webkit-user-select:none!important;user-select:none!important}.no-appearance{-webkit-appearance:none!important;appearance:none!important}.collapse{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}.selected{-webkit-box-shadow:0 0 0 4px var(--selected-color)!important;box-shadow:0 0 0 4px var(--selected-color)!important}.selected:after{border-left:28px solid transparent;border-top:28px solid var(--selected-color);right:-1px;top:-1px;z-index:100}.selected:after,.selected:before{content:"";display:block;position:absolute}.selected:before{background-color:initial;border-color:#fff!important;border-bottom:2px solid;border-left:2px solid;height:.325rem;right:.25rem;top:.25rem;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:.5rem;z-index:102}.-disabled,.disabled{pointer-events:none!important}.stop-pointer{pointer-events:none;-webkit-user-select:none;user-select:none}@media screen and (min-width:0){.overflow-fs{overflow:auto!important}.no-overflow-fs{overflow:hidden!important}.scroll-fs{overflow:scroll!important}.scroll-x-fs{overflow-x:auto!important}.scroll-y-fs{overflow-y:auto!important}.no-scroll-fs{overflow:hidden!important}.no-scroll-x-fs{overflow-x:hidden!important}.no-scroll-y-fs{overflow-y:hidden!important}.wrap-fs{white-space:normal!important}.no-wrap-fs{white-space:nowrap!important}.collapse-fs{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-fs{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:360px){.overflow-xs{overflow:auto!important}.no-overflow-xs{overflow:hidden!important}.scroll-xs{overflow:scroll!important}.scroll-x-xs{overflow-x:auto!important}.scroll-y-xs{overflow-y:auto!important}.no-scroll-xs{overflow:hidden!important}.no-scroll-x-xs{overflow-x:hidden!important}.no-scroll-y-xs{overflow-y:hidden!important}.wrap-xs{white-space:normal!important}.no-wrap-xs{white-space:nowrap!important}.collapse-xs{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-xs{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:576px){.overflow-sm{overflow:auto!important}.no-overflow-sm{overflow:hidden!important}.scroll-sm{overflow:scroll!important}.scroll-x-sm{overflow-x:auto!important}.scroll-y-sm{overflow-y:auto!important}.no-scroll-sm{overflow:hidden!important}.no-scroll-x-sm{overflow-x:hidden!important}.no-scroll-y-sm{overflow-y:hidden!important}.wrap-sm{white-space:normal!important}.no-wrap-sm{white-space:nowrap!important}.collapse-sm{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-sm{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:640px){.overflow-ld{overflow:auto!important}.no-overflow-ld{overflow:hidden!important}.scroll-ld{overflow:scroll!important}.scroll-x-ld{overflow-x:auto!important}.scroll-y-ld{overflow-y:auto!important}.no-scroll-ld{overflow:hidden!important}.no-scroll-x-ld{overflow-x:hidden!important}.no-scroll-y-ld{overflow-y:hidden!important}.wrap-ld{white-space:normal!important}.no-wrap-ld{white-space:nowrap!important}.collapse-ld{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-ld{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:768px){.overflow-md{overflow:auto!important}.no-overflow-md{overflow:hidden!important}.scroll-md{overflow:scroll!important}.scroll-x-md{overflow-x:auto!important}.scroll-y-md{overflow-y:auto!important}.no-scroll-md{overflow:hidden!important}.no-scroll-x-md{overflow-x:hidden!important}.no-scroll-y-md{overflow-y:hidden!important}.wrap-md{white-space:normal!important}.no-wrap-md{white-space:nowrap!important}.collapse-md{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-md{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:992px){.overflow-lg{overflow:auto!important}.no-overflow-lg{overflow:hidden!important}.scroll-lg{overflow:scroll!important}.scroll-x-lg{overflow-x:auto!important}.scroll-y-lg{overflow-y:auto!important}.no-scroll-lg{overflow:hidden!important}.no-scroll-x-lg{overflow-x:hidden!important}.no-scroll-y-lg{overflow-y:hidden!important}.wrap-lg{white-space:normal!important}.no-wrap-lg{white-space:nowrap!important}.collapse-lg{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-lg{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:1200px){.overflow-xl{overflow:auto!important}.no-overflow-xl{overflow:hidden!important}.scroll-xl{overflow:scroll!important}.scroll-x-xl{overflow-x:auto!important}.scroll-y-xl{overflow-y:auto!important}.no-scroll-xl{overflow:hidden!important}.no-scroll-x-xl{overflow-x:hidden!important}.no-scroll-y-xl{overflow-y:hidden!important}.wrap-xl{white-space:normal!important}.no-wrap-xl{white-space:nowrap!important}.collapse-xl{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-xl{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:1452px){.overflow-xxl{overflow:auto!important}.no-overflow-xxl{overflow:hidden!important}.scroll-xxl{overflow:scroll!important}.scroll-x-xxl{overflow-x:auto!important}.scroll-y-xxl{overflow-y:auto!important}.no-scroll-xxl{overflow:hidden!important}.no-scroll-x-xxl{overflow-x:hidden!important}.no-scroll-y-xxl{overflow-y:hidden!important}.wrap-xxl{white-space:normal!important}.no-wrap-xxl{white-space:nowrap!important}.collapse-xxl{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-xxl{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}@media screen and (min-width:2000px){.overflow-xxxl{overflow:auto!important}.no-overflow-xxxl{overflow:hidden!important}.scroll-xxxl{overflow:scroll!important}.scroll-x-xxxl{overflow-x:auto!important}.scroll-y-xxxl{overflow-y:auto!important}.no-scroll-xxxl{overflow:hidden!important}.no-scroll-x-xxxl{overflow-x:hidden!important}.no-scroll-y-xxxl{overflow-y:hidden!important}.wrap-xxxl{white-space:normal!important}.no-wrap-xxxl{white-space:nowrap!important}.collapse-xxxl{max-height:0;overflow:hidden;-webkit-transition:max-height .3s ease;transition:max-height .3s ease}.expand-xxxl{max-height:1000px!important;overflow:visible!important;-webkit-transition:max-height .3s ease!important;transition:max-height .3s ease!important;-webkit-transition-duration:.5s!important;transition-duration:.5s!important}}');styleInject(":root{--z-index-selected:100;--z-index-absolute:500;--z-index-dropdown:1000;--z-index-sticy:1020;--z-index-fixed:1030;--z-index-modal-backdrop:1040;--z-index-modal:1050;--z-index-popover:1060;--z-index-tooltip:1070;--z-index-top:1080;--z-index-notify:1085;--z-index-charms:1090;--z-index-overlay:2000;--z-index-fullscreen:2147483647}.z-absolute{z-index:500!important}.z-dropdown{z-index:1000!important}.z-sticky{z-index:1020!important}.z-fixed{z-index:1030!important}.z-modal-backdrop{z-index:1040!important}.z-modal{z-index:1050!important}.z-popover{z-index:1060!important}.z-tooltip{z-index:1070!important}.z-top{z-index:1080!important}.z-notify{z-index:1085!important}.z-charms{z-index:1090!important}.z-overlay{z-index:2000!important}.z-fullscreen{z-index:2147483647!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}.z-4{z-index:4!important}.z-5{z-index:5!important}.z-6{z-index:6!important}.z-7{z-index:7!important}.z-8{z-index:8!important}.z-9{z-index:9!important}.z-10{z-index:10!important}"),function(t,e){var i=t.utils,o={accordionDeferred:0,showMarker:!0,material:!1,duration:METRO_ANIMATION_DURATION,oneFrame:!0,showActive:!0,activeFrameClass:"",activeHeadingClass:"",activeContentClass:"",clsFrame:"",clsHeading:"",clsContent:"",clsAccordion:"",clsActiveFrame:"",clsActiveFrameHeading:"",clsActiveFrameContent:"",onFrameOpen:t.noop,onFrameBeforeOpen:t.noop_true,onFrameClose:t.noop,onFrameBeforeClose:t.noop_true,onAccordionCreate:t.noop};t.accordionSetup=function(t){o=e.extend({},o,t)},void 0!==typeof window.metroAccordionSetup&&t.accordionSetup(window.metroAccordionSetup),t.Component("accordion",{init:function(t,e){return this._super(e,t,o),this},_create:function(){var t=this.element;this._createStructure(),this._createEvents(),this._fireEvent("accordionCreate",{element:t})},_createStructure:function(){var t,i=this,o=this.element,r=this.options,a=o.children(".frame"),n=o.children(".frame.active");o.addClass("accordion").addClass(r.clsAccordion),a.addClass(r.clsFrame).each((function(){var t=e(this);t.children(".heading").addClass(r.clsHeading),t.children(".content").addClass(r.clsContent)})),!0===r.showMarker&&o.addClass("marker-on"),!0===r.material&&o.addClass("material"),t=0===n.length?a[0]:n[0],this._hideAll(),!0===r.showActive&&(!0===r.oneFrame?this._openFrame(t):e.each(n,(function(){i._openFrame(this)})))},_createEvents:function(){var i=this,o=this.element,r=this.options,a=o.children(".frame.active");o.on(t.events.click,".heading",(function(){var t=e(this),n=t.parent();if(t.closest(".accordion")[0]!==o[0])return!1;n.hasClass("active")?1===a.length&&r.oneFrame||i._closeFrame(n):i._openFrame(n)}))},_openFrame:function(t){var o=this.element,r=this.options,a=e(t);if(!1===i.exec(r.onFrameBeforeOpen,[a[0]],o[0]))return!1;!0===r.oneFrame&&this._closeAll(a[0]),a.addClass("active "+r.activeFrameClass).addClass(r.clsActiveFrame),a.children(".heading").addClass(r.activeHeadingClass).addClass(r.clsActiveFrameHeading),a.children(".content").addClass(r.activeContentClass).addClass(r.clsActiveFrameContent).slideDown(r.duration),this._fireEvent("frameOpen",{frame:a[0]})},_closeFrame:function(t){var o=this.element,r=this.options,a=e(t);a.hasClass("active")&&!1!==i.exec(r.onFrameBeforeClose,[a[0]],o[0])&&(a.removeClass("active "+r.activeFrameClass).removeClass(r.clsActiveFrame),a.children(".heading").removeClass(r.activeHeadingClass).removeClass(r.clsActiveFrameHeading),a.children(".content").removeClass(r.activeContentClass).removeClass(r.clsActiveFrameContent).slideUp(r.duration),this._fireEvent("frameClose",{frame:a[0]}))},_closeAll:function(t){var i=this,o=this.element.children(".frame");e.each(o,(function(){t!==this&&i._closeFrame(this)}))},_hideAll:function(){var t=this.element.children(".frame");e.each(t,(function(){e(this).children(".content").hide()}))},_openAll:function(){var t=this,i=this.element.children(".frame");e.each(i,(function(){t._openFrame(this)}))},open:function(t){var e=this.element.children(".frame").eq(t);this._openFrame(e)},changeAttribute:function(t,e){},destroy:function(){var e=this.element;return e.off(t.events.click,".heading"),e}})}(Metro,m4q);styleInject(':root{--accordion-heading-background:#f8f8f8;--accordion-heading-color:#191919}.dark-side{--accordion-heading-background:#2b2d30;--accordion-heading-color:#dfe1e5}.accordion{-webkit-box-orient:vertical;-webkit-box-direction:normal;display:-webkit-box;display:flex;flex-direction:column;list-style:none inside;margin:0;padding:0;position:relative;width:100%}.accordion>.frame{display:block;margin:1px 0}.accordion>.frame>.heading{background-color:var(--accordion-heading-background);color:var(--accordion-heading-color);cursor:pointer;display:block;overflow:hidden;padding:8px 16px;position:relative;text-overflow:ellipsis;white-space:nowrap}.accordion>.frame>.content{display:block}.accordion.marker-on .heading{padding-left:40px}.accordion.marker-on .heading:before{content:"\\203A";display:block;font-size:32px;height:34px;left:0;line-height:1;position:absolute;text-align:center;top:0;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;width:34px}.accordion.marker-on .frame.active>.heading:before,.accordion.marker-on .heading:before{-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.accordion.marker-on .frame.active>.heading:before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.accordion.marker-on[dir=rtl] .heading{padding-left:1rem;padding-right:32px}.accordion.marker-on[dir=rtl] .heading:before{left:auto;right:0}.accordion.marker-on[dir=rtl] .frame.active>.heading:before{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.accordion.material .heading:before{display:none}.accordion.material>.frame>.heading{background-color:var(--accordion-heading-background);color:var(--accordion-heading-color);font-size:16px;padding:16px 42px 16px 16px}.accordion.material>.frame>.heading:after{content:"\\203A";display:block;font-size:32px;height:40px;line-height:1;position:absolute;right:16px;text-align:center;top:8px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;width:40px}.accordion.material .frame+.frame{border-top:1px solid var(--border-color)}.accordion.material>.frame>.content{font-size:14px;padding:16px}.accordion.material>.frame.active .heading:after{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.accordion.rtl.material>.frame>.heading,.accordion[dir=rtl].material>.frame>.heading{padding:16px 16px 16px 42px}.accordion.rtl.material>.frame>.heading:after,.accordion[dir=rtl].material>.frame>.heading:after{left:16px;right:auto;top:8px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.accordion.rtl.material>.frame.active .heading:after,.accordion[dir=rtl].material>.frame.active .heading:after{-webkit-transform:rotate(270deg);transform:rotate(270deg)}');styleInject(".action-button{background-color:#ebebeb;border:1px solid transparent;border-radius:50%;-webkit-box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);color:#1d1d1d;cursor:pointer;font-size:.875rem;font-weight:400;height:56px;line-height:56px;outline:none;padding:0;position:relative;-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;-webkit-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap;width:56px}.action-button,.action-button .icon{display:inline-block;text-align:center}.action-button .icon{font-size:20px;height:20px;line-height:20px;margin-top:18px;width:20px}.action-button .icon>*{display:inline-block;max-height:100%;width:100%}.action-button.second{-webkit-box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);height:40px;line-height:40px;width:40px}.action-button.second .icon{font-size:16px;height:16px;line-height:16px;margin-top:0;width:16px}.action-button.prime{-webkit-box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2);box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2)}.action-button:active{-webkit-box-shadow:0 17px 50px 0 rgba(0,0,0,.19),0 12px 15px 0 rgba(0,0,0,.24);box-shadow:0 17px 50px 0 rgba(0,0,0,.19),0 12px 15px 0 rgba(0,0,0,.24)}.multi-action{display:inline-block;height:56px;position:relative;vertical-align:middle;width:56px}.multi-action .action-button{margin:0!important;position:absolute;z-index:2}.multi-action .actions{background-color:initial;float:left;left:8px;list-style:none inside none;padding:0;top:8px;width:auto;z-index:1}.multi-action .actions,.multi-action .actions li{border-radius:50%;height:40px;margin:0;position:absolute;width:40px}.multi-action .actions li{background:#989898;-webkit-box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);box-shadow:0 2px 10px 0 rgba(0,0,0,.16),0 2px 5px 0 rgba(0,0,0,.26);color:#fff;cursor:pointer;display:block;font-size:20px;line-height:40px;-webkit-transform:scale(.2);transform:scale(.2);-webkit-transition:all .3s;transition:all .3s}.multi-action .actions li a{background:inherit;border-radius:50%;color:inherit;display:block;height:40px;line-height:40px;text-align:center;text-decoration:none;width:40px}.multi-action .actions li:active{-webkit-box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2);box-shadow:0 6px 20px 0 rgba(0,0,0,.19),0 8px 17px 0 rgba(0,0,0,.2)}.multi-action .actions.drop-down,.multi-action .actions.drop-left,.multi-action .actions.drop-right,.multi-action .actions.drop-up{left:8px!important;top:8px!important}.multi-action .action-button.active~.actions li{-webkit-transform:scale(1);transform:scale(1);-webkit-transition:all .3s;transition:all .3s}.multi-action .action-button.active~.actions li:first-child{margin-top:-56px}.multi-action .action-button.active~.actions li:nth-child(2){margin-top:-104px}.multi-action .action-button.active~.actions li:nth-child(3){margin-top:-152px}.multi-action .action-button.active~.actions li:nth-child(4){margin-top:-200px}.multi-action .action-button.active~.actions li:nth-child(5){margin-top:-248px}.multi-action .action-button.active~.actions li:nth-child(6){margin-top:-296px}.multi-action .action-button.active~.actions li:nth-child(7){margin-top:-344px}.multi-action .action-button.active~.actions li:nth-child(8){margin-top:-392px}.multi-action .action-button.active~.actions li:nth-child(9){margin-top:-440px}.multi-action .action-button.active~.actions li:nth-child(10){margin-top:-488px}.multi-action .action-button.active~.actions.drop-bottom li:first-child,.multi-action .action-button.active~.actions.drop-down li:first-child{margin-top:56px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(2),.multi-action .action-button.active~.actions.drop-down li:nth-child(2){margin-top:104px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(3),.multi-action .action-button.active~.actions.drop-down li:nth-child(3){margin-top:152px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(4),.multi-action .action-button.active~.actions.drop-down li:nth-child(4){margin-top:200px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(5),.multi-action .action-button.active~.actions.drop-down li:nth-child(5){margin-top:248px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(6),.multi-action .action-button.active~.actions.drop-down li:nth-child(6){margin-top:296px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(7),.multi-action .action-button.active~.actions.drop-down li:nth-child(7){margin-top:344px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(8),.multi-action .action-button.active~.actions.drop-down li:nth-child(8){margin-top:392px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(9),.multi-action .action-button.active~.actions.drop-down li:nth-child(9){margin-top:440px}.multi-action .action-button.active~.actions.drop-bottom li:nth-child(10),.multi-action .action-button.active~.actions.drop-down li:nth-child(10){margin-top:488px}.multi-action .action-button.active~.actions.drop-right li{margin-top:0}.multi-action .action-button.active~.actions.drop-right li:first-child{margin-left:56px}.multi-action .action-button.active~.actions.drop-right li:nth-child(2){margin-left:104px}.multi-action .action-button.active~.actions.drop-right li:nth-child(3){margin-left:152px}.multi-action .action-button.active~.actions.drop-right li:nth-child(4){margin-left:200px}.multi-action .action-button.active~.actions.drop-right li:nth-child(5){margin-left:248px}.multi-action .action-button.active~.actions.drop-right li:nth-child(6){margin-left:296px}.multi-action .action-button.active~.actions.drop-right li:nth-child(7){margin-left:344px}.multi-action .action-button.active~.actions.drop-right li:nth-child(8){margin-left:392px}.multi-action .action-button.active~.actions.drop-right li:nth-child(9){margin-left:440px}.multi-action .action-button.active~.actions.drop-right li:nth-child(10){margin-left:488px}.multi-action .action-button.active~.actions.drop-left li{margin-top:0}.multi-action .action-button.active~.actions.drop-left li:first-child{margin-left:-56px}.multi-action .action-button.active~.actions.drop-left li:nth-child(2){margin-left:-104px}.multi-action .action-button.active~.actions.drop-left li:nth-child(3){margin-left:-152px}.multi-action .action-button.active~.actions.drop-left li:nth-child(4){margin-left:-200px}.multi-action .action-button.active~.actions.drop-left li:nth-child(5){margin-left:-248px}.multi-action .action-button.active~.actions.drop-left li:nth-child(6){margin-left:-296px}.multi-action .action-button.active~.actions.drop-left li:nth-child(7){margin-left:-344px}.multi-action .action-button.active~.actions.drop-left li:nth-child(8){margin-left:-392px}.multi-action .action-button.active~.actions.drop-left li:nth-child(9){margin-left:-440px}.multi-action .action-button.active~.actions.drop-left li:nth-child(10){margin-left:-488px}.multi-action .action-button .icon{-webkit-transition:all .3s;transition:all .3s}.multi-action .action-button.active.rotate .icon{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.multi-action .action-button.active.rotate-minus .icon{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.action-button.floating-action-top,.multi-action.floating-action-top{left:16px;position:fixed;top:90px;z-index:1080}.action-button.floating-action-bottom,.multi-action.floating-action-bottom{bottom:20px;position:fixed;right:20px;z-index:1080}");styleInject(":root{--button-background:#ebebeb;--button-background-hover:#dadada;--button-color:#191919;--button-border-color:#ebebeb;--button-border-radius:0}.dark-side{--button-background:#2b2d30;--button-background-hover:#333439;--button-color:#f3fcff;--button-border-color:#4e5157}.button,.flat-button{-webkit-box-align:center;-webkit-box-pack:center;align-items:center;background-color:var(--button-background);border:1px solid var(--button-border-color);border-radius:var(--button-border-radius);color:var(--button-color);cursor:pointer;display:-webkit-inline-box;display:inline-flex;font-size:.875rem;font-weight:400;height:36px;justify-content:center;outline:none;overflow:visible;padding:0 .75rem;position:relative;text-align:center;-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;-webkit-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.button *+*,.flat-button *+*{margin-left:8px}.button.disabled,.button:disabled,.flat-button.disabled,.flat-button:disabled{opacity:.65;pointer-events:none}.button img,.flat-button img{height:1rem}.button.focus,.button:active,.button:focus{text-decoration:none}.button:hover{background-color:var(--button-background-hover)}.button.link,.button.link:hover{background-color:initial}.button.link:hover{text-decoration:underline}.button.link.focus,.button.link:focus{-webkit-box-shadow:none;box-shadow:none}.button.mini{font-size:.625rem;height:20px;line-height:20px;padding:0 .5rem}.button.mini img{height:.625rem}.button.small{font-size:.75rem;height:26px;line-height:26px;padding:0 .6rem}.button.small img{height:.75rem}.button.large{font-size:1.375rem;height:53px;line-height:53px;padding:0 1rem}.button.large img{height:1.375rem}.button.cycle,.button.square{-webkit-box-flex:0!important;flex-grow:0!important;flex-shrink:0!important;height:2.25rem;padding-left:0!important;padding-right:0!important;width:2.25rem}.button.cycle.mini,.button.square.mini{height:1.25rem;width:1.25rem}.button.cycle.small,.button.square.small{height:1.625rem;width:1.625rem}.button.cycle.large,.button.square.large{height:3.3125rem;width:3.3125rem}.button.cycle{border-radius:50%}.button.cycle.dropdown-toggle:before,.button.square.dropdown-toggle:before{display:none}.button.dropdown-toggle.no-marker{padding-right:.75rem!important}.button.outline{background:transparent none;border-color:var(--button-border-color);border-width:1px}a.button,a.flat-button{-webkit-appearance:none;appearance:none;-webkit-box-shadow:none;box-shadow:none;color:var(--button-color);text-decoration:none}input[type=button],input[type=reset],input[type=submit]{-webkit-box-align:center;-webkit-box-pack:center;align-items:center;background-color:var(--button-background);border:1px solid var(--button-border-color);border-radius:var(--button-border-radius);color:var(--button-color);cursor:pointer;display:-webkit-inline-box;display:inline-flex;font-size:.875rem;font-weight:400;height:36px;justify-content:center;outline:none;overflow:visible;padding:0 .75rem;position:relative;text-align:center;-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;-webkit-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}input[type=button] *+*,input[type=reset] *+*,input[type=submit] *+*{margin-left:8px}input[type=button].disabled,input[type=button]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=submit].disabled,input[type=submit]:disabled{opacity:.65;pointer-events:none}input[type=button] img,input[type=reset] img,input[type=submit] img{height:1rem}input[type=button].focus,input[type=button]:active,input[type=button]:focus,input[type=reset].focus,input[type=reset]:active,input[type=reset]:focus,input[type=submit].focus,input[type=submit]:active,input[type=submit]:focus{text-decoration:none}input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{background-color:var(--button-background-hover)}input[type=button].link,input[type=reset].link,input[type=submit].link{background-color:initial}input[type=button].link:hover,input[type=reset].link:hover,input[type=submit].link:hover{background-color:initial;text-decoration:underline}input[type=button].link.focus,input[type=button].link:focus,input[type=reset].link.focus,input[type=reset].link:focus,input[type=submit].link.focus,input[type=submit].link:focus{-webkit-box-shadow:none;box-shadow:none}input[type=button].mini,input[type=reset].mini,input[type=submit].mini{font-size:.625rem;height:20px;line-height:20px;padding:0 .5rem}input[type=button].mini img,input[type=reset].mini img,input[type=submit].mini img{height:.625rem}input[type=button].small,input[type=reset].small,input[type=submit].small{font-size:.75rem;height:26px;line-height:26px;padding:0 .6rem}input[type=button].small img,input[type=reset].small img,input[type=submit].small img{height:.75rem}input[type=button].large,input[type=reset].large,input[type=submit].large{font-size:1.375rem;height:53px;line-height:53px;padding:0 1rem}input[type=button].large img,input[type=reset].large img,input[type=submit].large img{height:1.375rem}input[type=button].cycle,input[type=button].square,input[type=reset].cycle,input[type=reset].square,input[type=submit].cycle,input[type=submit].square{-webkit-box-flex:0!important;flex-grow:0!important;flex-shrink:0!important;height:2.25rem;padding-left:0!important;padding-right:0!important;width:2.25rem}input[type=button].cycle.mini,input[type=button].square.mini,input[type=reset].cycle.mini,input[type=reset].square.mini,input[type=submit].cycle.mini,input[type=submit].square.mini{height:1.25rem;width:1.25rem}input[type=button].cycle.small,input[type=button].square.small,input[type=reset].cycle.small,input[type=reset].square.small,input[type=submit].cycle.small,input[type=submit].square.small{height:1.625rem;width:1.625rem}input[type=button].cycle.large,input[type=button].square.large,input[type=reset].cycle.large,input[type=reset].square.large,input[type=submit].cycle.large,input[type=submit].square.large{height:3.3125rem;width:3.3125rem}input[type=button].cycle,input[type=reset].cycle,input[type=submit].cycle{border-radius:50%}input[type=button].cycle.dropdown-toggle:before,input[type=button].square.dropdown-toggle:before,input[type=reset].cycle.dropdown-toggle:before,input[type=reset].square.dropdown-toggle:before,input[type=submit].cycle.dropdown-toggle:before,input[type=submit].square.dropdown-toggle:before{display:none}input[type=button].dropdown-toggle.no-marker,input[type=reset].dropdown-toggle.no-marker,input[type=submit].dropdown-toggle.no-marker{padding-right:.75rem!important}input[type=button].outline,input[type=reset].outline,input[type=submit].outline{background:transparent none;border-color:var(--button-border-color);border-width:1px}input[type=button] .load-marker,input[type=reset] .load-marker,input[type=submit] .load-marker{opacity:0;-webkit-transform:scale(0);transform:scale(0);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}input[type=button] .load-caption,input[type=reset] .load-caption,input[type=submit] .load-caption{margin-left:-16px;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}input[type=button].loading .load-marker,input[type=reset].loading .load-marker,input[type=submit].loading .load-marker{-webkit-animation:spin-loader 1.5s linear infinite;animation:spin-loader 1.5s linear infinite;opacity:1;-webkit-transform:scale(1);transform:scale(1)}input[type=button].loading .load-caption,input[type=reset].loading .load-caption,input[type=submit].loading .load-caption{margin-left:.5rem}.button .load-marker{opacity:0;-webkit-transform:scale(0);transform:scale(0)}.button .load-caption,.button .load-marker{-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.button .load-caption{margin-left:-16px}.button.loading .load-marker{-webkit-animation:spin-loader 1.5s linear infinite;animation:spin-loader 1.5s linear infinite;opacity:1;-webkit-transform:scale(1);transform:scale(1)}.button.loading .load-caption{margin-left:.5rem}.button.flat,.flat-button{background-color:initial;border-color:transparent;min-width:64px}.button.flat:hover,.flat-button:hover{background-color:var(--button-background);border-color:var(--button-background)}@-webkit-keyframes spin-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes spin-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}");styleInject(":root{--color-dark:#1d1d1d;--color-light:#f8f8f8;--color-gray:#bebebe;--color-grayBlue:#607d8b;--color-grayWhite:#f5f5f5;--color-grayMouse:#455a64;--color-lime:#a4c400;--color-green:#60a917;--color-emerald:#008a00;--color-blue:#00aff0;--color-teal:#00aba9;--color-cyan:#1fb1f8;--color-cobalt:#0050ef;--color-indigo:#6a00ff;--color-violet:#a0f;--color-pink:#dc4fad;--color-magenta:#d80073;--color-crimson:#a20025;--color-red:#ce352c;--color-orange:#fa6800;--color-amber:#f0a30a;--color-yellow:#fff000;--color-brown:#825a2c;--color-olive:#6d8764;--color-steel:#647687;--color-mauve:#76608a;--color-taupe:#87794e;--color-dark-lime:#647800;--color-dark-green:#3a660e;--color-dark-emerald:#003d00;--color-dark-blue:#0077a3;--color-dark-teal:#005e5d;--color-dark-cyan:#0686c4;--color-dark-cobalt:#0036a3;--color-dark-indigo:#4a00b3;--color-dark-violet:#7700b3;--color-dark-pink:#ba2588;--color-dark-magenta:#8c004a;--color-dark-crimson:#560014;--color-dark-red:#8f251f;--color-dark-orange:#ae4800;--color-dark-amber:#a77107;--color-dark-yellow:#b3a800;--color-dark-brown:#493219;--color-dark-olive:#4a5b43;--color-dark-steel:#43505b;--color-dark-mauve:#4f415d;--color-dark-taupe:#574e32;--color-light-lime:#d8ff12;--color-light-green:#86e22a;--color-light-emerald:#00d600;--color-light-blue:#3ecbff;--color-light-teal:#00f7f5;--color-light-cyan:#69cbfa;--color-light-cobalt:#3d7eff;--color-light-indigo:#974dff;--color-light-violet:#c44dff;--color-light-pink:#e98fcb;--color-light-magenta:#ff2599;--color-light-crimson:#ef0036;--color-light-red:#df6e68;--color-light-orange:#ff9447;--color-light-amber:#f8bf4f;--color-light-yellow:#fff44d;--color-light-brown:#bb823f;--color-light-olive:#95ab8d;--color-light-steel:#8d9cab;--color-light-mauve:#9c89ad;--color-light-taupe:#aea073;--color-hover-default:rgba(29,29,29,.1);--color-success:green;--color-alert:#c10000;--color-warning:orange;--color-info:#468cff}");styleInject(".bg-transparent{background-color:initial!important}.bg-default{background-color:var(--default-background)!important}.bg-hover:hover{background-color:rgba(29,29,29,.1)!important}.bg-hover2:hover{background-color:rgba(29,29,29,.5)!important}.bg-hover-light:hover{background-color:hsla(0,0%,100%,.01)!important}.bg-hover-light1:hover{background-color:hsla(0,0%,100%,.1)!important}.bg-hover-light2:hover{background-color:hsla(0,0%,100%,.2)!important}.bg-hover-light3:hover{background-color:hsla(0,0%,100%,.3)!important}.bg-facebook{background-color:#4267b2!important}.bg-twitter{background-color:#1da1f2!important}.bg-github{background-color:#24292e!important}.bg-bootstrap{background-color:#563d7c!important}.bg-gitlab{background-color:#e65328!important}.bg-amazon{background-color:#232f3e!important}.bg-black,.bg-black-active:active,.bg-black-focus:focus,.bg-black-hover:hover{background-color:#000!important}.bg-white,.bg-white-active:active,.bg-white-focus:focus,.bg-white-hover:hover{background-color:#fff!important}.bg-dark,.bg-dark-active:active,.bg-dark-focus:focus,.bg-dark-hover:hover{background-color:#1d1d1d!important}.bg-light,.bg-light-active:active,.bg-light-focus:focus,.bg-light-hover:hover{background-color:#f8f8f8!important}.bg-grayBlue,.bg-grayBlue-active:active,.bg-grayBlue-focus:focus,.bg-grayBlue-hover:hover{background-color:#607d8b!important}.bg-grayWhite,.bg-grayWhite-active:active,.bg-grayWhite-focus:focus,.bg-grayWhite-hover:hover{background-color:#f5f5f5!important}.bg-grayMouse,.bg-grayMouse-active:active,.bg-grayMouse-focus:focus,.bg-grayMouse-hover:hover{background-color:#455a64!important}.bg-brandColor1,.bg-brandColor1-active:active,.bg-brandColor1-focus:focus,.bg-brandColor1-hover:hover{background-color:#2ac4f4!important}.bg-brandColor2,.bg-brandColor2-active:active,.bg-brandColor2-focus:focus,.bg-brandColor2-hover:hover{background-color:#004d6f!important}.bg-lime,.bg-lime-active:active,.bg-lime-focus:focus,.bg-lime-hover:hover{background-color:#a4c400!important}.bg-green,.bg-green-active:active,.bg-green-focus:focus,.bg-green-hover:hover{background-color:#60a917!important}.bg-emerald,.bg-emerald-active:active,.bg-emerald-focus:focus,.bg-emerald-hover:hover{background-color:#008a00!important}.bg-blue,.bg-blue-active:active,.bg-blue-focus:focus,.bg-blue-hover:hover{background-color:#00aff0!important}.bg-teal,.bg-teal-active:active,.bg-teal-focus:focus,.bg-teal-hover:hover{background-color:#00aba9!important}.bg-cyan,.bg-cyan-active:active,.bg-cyan-focus:focus,.bg-cyan-hover:hover{background-color:#1fb1f8!important}.bg-cobalt,.bg-cobalt-active:active,.bg-cobalt-focus:focus,.bg-cobalt-hover:hover{background-color:#0050ef!important}.bg-indigo,.bg-indigo-active:active,.bg-indigo-focus:focus,.bg-indigo-hover:hover{background-color:#6a00ff!important}.bg-violet,.bg-violet-active:active,.bg-violet-focus:focus,.bg-violet-hover:hover{background-color:#a0f!important}.bg-pink,.bg-pink-active:active,.bg-pink-focus:focus,.bg-pink-hover:hover{background-color:#dc4fad!important}.bg-magenta,.bg-magenta-active:active,.bg-magenta-focus:focus,.bg-magenta-hover:hover{background-color:#d80073!important}.bg-crimson,.bg-crimson-active:active,.bg-crimson-focus:focus,.bg-crimson-hover:hover{background-color:#a20025!important}.bg-red,.bg-red-active:active,.bg-red-focus:focus,.bg-red-hover:hover{background-color:#ce352c!important}.bg-orange,.bg-orange-active:active,.bg-orange-focus:focus,.bg-orange-hover:hover{background-color:#fa6800!important}.bg-amber,.bg-amber-active:active,.bg-amber-focus:focus,.bg-amber-hover:hover{background-color:#f0a30a!important}.bg-yellow,.bg-yellow-active:active,.bg-yellow-focus:focus,.bg-yellow-hover:hover{background-color:#fff000!important}.bg-brown,.bg-brown-active:active,.bg-brown-focus:focus,.bg-brown-hover:hover{background-color:#825a2c!important}.bg-olive,.bg-olive-active:active,.bg-olive-focus:focus,.bg-olive-hover:hover{background-color:#6d8764!important}.bg-steel,.bg-steel-active:active,.bg-steel-focus:focus,.bg-steel-hover:hover{background-color:#647687!important}.bg-mauve,.bg-mauve-active:active,.bg-mauve-focus:focus,.bg-mauve-hover:hover{background-color:#76608a!important}.bg-taupe,.bg-taupe-active:active,.bg-taupe-focus:focus,.bg-taupe-hover:hover{background-color:#87794e!important}.bg-gray,.bg-gray-active:active,.bg-gray-focus:focus,.bg-gray-hover:hover{background-color:#bebebe!important}.bg-lightLime,.bg-lightLime-active:active,.bg-lightLime-focus:focus,.bg-lightLime-hover:hover{background-color:#d8ff12!important}.bg-lightGreen,.bg-lightGreen-active:active,.bg-lightGreen-focus:focus,.bg-lightGreen-hover:hover{background-color:#86e22a!important}.bg-lightEmerald,.bg-lightEmerald-active:active,.bg-lightEmerald-focus:focus,.bg-lightEmerald-hover:hover{background-color:#00d600!important}.bg-lightBlue,.bg-lightBlue-active:active,.bg-lightBlue-focus:focus,.bg-lightBlue-hover:hover{background-color:#3ecbff!important}.bg-lightTeal,.bg-lightTeal-active:active,.bg-lightTeal-focus:focus,.bg-lightTeal-hover:hover{background-color:#00f7f5!important}.bg-lightCyan,.bg-lightCyan-active:active,.bg-lightCyan-focus:focus,.bg-lightCyan-hover:hover{background-color:#69cbfa!important}.bg-lightCobalt,.bg-lightCobalt-active:active,.bg-lightCobalt-focus:focus,.bg-lightCobalt-hover:hover{background-color:#3d7eff!important}.bg-lightIndigo,.bg-lightIndigo-active:active,.bg-lightIndigo-focus:focus,.bg-lightIndigo-hover:hover{background-color:#974dff!important}.bg-lightViolet,.bg-lightViolet-active:active,.bg-lightViolet-focus:focus,.bg-lightViolet-hover:hover{background-color:#c44dff!important}.bg-lightPink,.bg-lightPink-active:active,.bg-lightPink-focus:focus,.bg-lightPink-hover:hover{background-color:#e98fcb!important}.bg-lightMagenta,.bg-lightMagenta-active:active,.bg-lightMagenta-focus:focus,.bg-lightMagenta-hover:hover{background-color:#ff2599!important}.bg-lightCrimson,.bg-lightCrimson-active:active,.bg-lightCrimson-focus:focus,.bg-lightCrimson-hover:hover{background-color:#ef0036!important}.bg-lightRed,.bg-lightRed-active:active,.bg-lightRed-focus:focus,.bg-lightRed-hover:hover{background-color:#df6e68!important}.bg-lightOrange,.bg-lightOrange-active:active,.bg-lightOrange-focus:focus,.bg-lightOrange-hover:hover{background-color:#ff9447!important}.bg-lightAmber,.bg-lightAmber-active:active,.bg-lightAmber-focus:focus,.bg-lightAmber-hover:hover{background-color:#f8bf4f!important}.bg-lightYellow,.bg-lightYellow-active:active,.bg-lightYellow-focus:focus,.bg-lightYellow-hover:hover{background-color:#fff44d!important}.bg-lightBrown,.bg-lightBrown-active:active,.bg-lightBrown-focus:focus,.bg-lightBrown-hover:hover{background-color:#bb823f!important}.bg-lightOlive,.bg-lightOlive-active:active,.bg-lightOlive-focus:focus,.bg-lightOlive-hover:hover{background-color:#95ab8d!important}.bg-lightSteel,.bg-lightSteel-active:active,.bg-lightSteel-focus:focus,.bg-lightSteel-hover:hover{background-color:#8d9cab!important}.bg-lightMauve,.bg-lightMauve-active:active,.bg-lightMauve-focus:focus,.bg-lightMauve-hover:hover{background-color:#9c89ad!important}.bg-lightTaupe,.bg-lightTaupe-active:active,.bg-lightTaupe-focus:focus,.bg-lightTaupe-hover:hover{background-color:#aea073!important}.bg-lightGray,.bg-lightGray-active:active,.bg-lightGray-focus:focus,.bg-lightGray-hover:hover{background-color:#e4e4e4!important}.bg-lightGrayBlue,.bg-lightGrayBlue-active:active,.bg-lightGrayBlue-focus:focus,.bg-lightGrayBlue-hover:hover{background-color:#8aa2ae!important}.bg-darkLime,.bg-darkLime-active:active,.bg-darkLime-focus:focus,.bg-darkLime-hover:hover{background-color:#647800!important}.bg-darkGreen,.bg-darkGreen-active:active,.bg-darkGreen-focus:focus,.bg-darkGreen-hover:hover{background-color:#3a660e!important}.bg-darkEmerald,.bg-darkEmerald-active:active,.bg-darkEmerald-focus:focus,.bg-darkEmerald-hover:hover{background-color:#003d00!important}.bg-darkBlue,.bg-darkBlue-active:active,.bg-darkBlue-focus:focus,.bg-darkBlue-hover:hover{background-color:#0077a3!important}.bg-darkTeal,.bg-darkTeal-active:active,.bg-darkTeal-focus:focus,.bg-darkTeal-hover:hover{background-color:#005e5d!important}.bg-darkCyan,.bg-darkCyan-active:active,.bg-darkCyan-focus:focus,.bg-darkCyan-hover:hover{background-color:#0686c4!important}.bg-darkCobalt,.bg-darkCobalt-active:active,.bg-darkCobalt-focus:focus,.bg-darkCobalt-hover:hover{background-color:#0036a3!important}.bg-darkIndigo,.bg-darkIndigo-active:active,.bg-darkIndigo-focus:focus,.bg-darkIndigo-hover:hover{background-color:#4a00b3!important}.bg-darkViolet,.bg-darkViolet-active:active,.bg-darkViolet-focus:focus,.bg-darkViolet-hover:hover{background-color:#7700b3!important}.bg-darkPink,.bg-darkPink-active:active,.bg-darkPink-focus:focus,.bg-darkPink-hover:hover{background-color:#ba2588!important}.bg-darkMagenta,.bg-darkMagenta-active:active,.bg-darkMagenta-focus:focus,.bg-darkMagenta-hover:hover{background-color:#8c004a!important}.bg-darkCrimson,.bg-darkCrimson-active:active,.bg-darkCrimson-focus:focus,.bg-darkCrimson-hover:hover{background-color:#560014!important}.bg-darkRed,.bg-darkRed-active:active,.bg-darkRed-focus:focus,.bg-darkRed-hover:hover{background-color:#8f251f!important}.bg-darkOrange,.bg-darkOrange-active:active,.bg-darkOrange-focus:focus,.bg-darkOrange-hover:hover{background-color:#ae4800!important}.bg-darkAmber,.bg-darkAmber-active:active,.bg-darkAmber-focus:focus,.bg-darkAmber-hover:hover{background-color:#a77107!important}.bg-darkYellow,.bg-darkYellow-active:active,.bg-darkYellow-focus:focus,.bg-darkYellow-hover:hover{background-color:#b3a800!important}.bg-darkBrown,.bg-darkBrown-active:active,.bg-darkBrown-focus:focus,.bg-darkBrown-hover:hover{background-color:#493219!important}.bg-darkOlive,.bg-darkOlive-active:active,.bg-darkOlive-focus:focus,.bg-darkOlive-hover:hover{background-color:#4a5b43!important}.bg-darkSteel,.bg-darkSteel-active:active,.bg-darkSteel-focus:focus,.bg-darkSteel-hover:hover{background-color:#43505b!important}.bg-darkMauve,.bg-darkMauve-active:active,.bg-darkMauve-focus:focus,.bg-darkMauve-hover:hover{background-color:#4f415d!important}.bg-darkTaupe,.bg-darkTaupe-active:active,.bg-darkTaupe-focus:focus,.bg-darkTaupe-hover:hover{background-color:#574e32!important}.bg-darkGray,.bg-darkGray-active:active,.bg-darkGray-focus:focus,.bg-darkGray-hover:hover{background-color:#989898!important}.bg-darkGrayBlue,.bg-darkGrayBlue-active:active,.bg-darkGrayBlue-focus:focus,.bg-darkGrayBlue-hover:hover{background-color:#41545e!important}");styleInject(".bd-default{border-color:var(--border-color)!important}.bd-transparent{border-color:transparent!important}.bd-black,.bd-black-active:active,.bd-black-focus:focus,.bd-black-hover:hover,.tg-black:before{border-color:#000!important}.bd-white,.bd-white-active:active,.bd-white-focus:focus,.bd-white-hover:hover,.tg-white:before{border-color:#fff!important}.bd-dark,.bd-dark-active:active,.bd-dark-focus:focus,.bd-dark-hover:hover,.tg-dark:before{border-color:#1d1d1d!important}.bd-light,.bd-light-active:active,.bd-light-focus:focus,.bd-light-hover:hover,.tg-light:before{border-color:#f8f8f8!important}.bd-grayBlue,.bd-grayBlue-active:active,.bd-grayBlue-focus:focus,.bd-grayBlue-hover:hover,.tg-grayBlue:before{border-color:#607d8b!important}.bd-grayWhite,.bd-grayWhite-active:active,.bd-grayWhite-focus:focus,.bd-grayWhite-hover:hover,.tg-grayWhite:before{border-color:#f5f5f5!important}.bd-grayMouse,.bd-grayMouse-active:active,.bd-grayMouse-focus:focus,.bd-grayMouse-hover:hover,.tg-grayMouse:before{border-color:#455a64!important}.bd-brandColor1,.bd-brandColor1-active:active,.bd-brandColor1-focus:focus,.bd-brandColor1-hover:hover,.tg-brandColor1:before{border-color:#2ac4f4!important}.bd-brandColor2,.bd-brandColor2-active:active,.bd-brandColor2-focus:focus,.bd-brandColor2-hover:hover,.tg-brandColor2:before{border-color:#004d6f!important}.bd-lime,.bd-lime-active:active,.bd-lime-focus:focus,.bd-lime-hover:hover,.tg-lime:before{border-color:#a4c400!important}.bd-green,.bd-green-active:active,.bd-green-focus:focus,.bd-green-hover:hover,.tg-green:before{border-color:#60a917!important}.bd-emerald,.bd-emerald-active:active,.bd-emerald-focus:focus,.bd-emerald-hover:hover,.tg-emerald:before{border-color:#008a00!important}.bd-blue,.bd-blue-active:active,.bd-blue-focus:focus,.bd-blue-hover:hover,.tg-blue:before{border-color:#00aff0!important}.bd-teal,.bd-teal-active:active,.bd-teal-focus:focus,.bd-teal-hover:hover,.tg-teal:before{border-color:#00aba9!important}.bd-cyan,.bd-cyan-active:active,.bd-cyan-focus:focus,.bd-cyan-hover:hover,.tg-cyan:before{border-color:#1fb1f8!important}.bd-cobalt,.bd-cobalt-active:active,.bd-cobalt-focus:focus,.bd-cobalt-hover:hover,.tg-cobalt:before{border-color:#0050ef!important}.bd-indigo,.bd-indigo-active:active,.bd-indigo-focus:focus,.bd-indigo-hover:hover,.tg-indigo:before{border-color:#6a00ff!important}.bd-violet,.bd-violet-active:active,.bd-violet-focus:focus,.bd-violet-hover:hover,.tg-violet:before{border-color:#a0f!important}.bd-pink,.bd-pink-active:active,.bd-pink-focus:focus,.bd-pink-hover:hover,.tg-pink:before{border-color:#dc4fad!important}.bd-magenta,.bd-magenta-active:active,.bd-magenta-focus:focus,.bd-magenta-hover:hover,.tg-magenta:before{border-color:#d80073!important}.bd-crimson,.bd-crimson-active:active,.bd-crimson-focus:focus,.bd-crimson-hover:hover,.tg-crimson:before{border-color:#a20025!important}.bd-red,.bd-red-active:active,.bd-red-focus:focus,.bd-red-hover:hover,.tg-red:before{border-color:#ce352c!important}.bd-orange,.bd-orange-active:active,.bd-orange-focus:focus,.bd-orange-hover:hover,.tg-orange:before{border-color:#fa6800!important}.bd-amber,.bd-amber-active:active,.bd-amber-focus:focus,.bd-amber-hover:hover,.tg-amber:before{border-color:#f0a30a!important}.bd-yellow,.bd-yellow-active:active,.bd-yellow-focus:focus,.bd-yellow-hover:hover,.tg-yellow:before{border-color:#fff000!important}.bd-brown,.bd-brown-active:active,.bd-brown-focus:focus,.bd-brown-hover:hover,.tg-brown:before{border-color:#825a2c!important}.bd-olive,.bd-olive-active:active,.bd-olive-focus:focus,.bd-olive-hover:hover,.tg-olive:before{border-color:#6d8764!important}.bd-steel,.bd-steel-active:active,.bd-steel-focus:focus,.bd-steel-hover:hover,.tg-steel:before{border-color:#647687!important}.bd-mauve,.bd-mauve-active:active,.bd-mauve-focus:focus,.bd-mauve-hover:hover,.tg-mauve:before{border-color:#76608a!important}.bd-taupe,.bd-taupe-active:active,.bd-taupe-focus:focus,.bd-taupe-hover:hover,.tg-taupe:before{border-color:#87794e!important}.bd-gray,.bd-gray-active:active,.bd-gray-focus:focus,.bd-gray-hover:hover,.tg-gray:before{border-color:#bebebe!important}.bd-lightLime,.bd-lightLime-active:active,.bd-lightLime-focus:focus,.bd-lightLime-hover:hover,.tg-lightLime:before{border-color:#d8ff12!important}.bd-lightGreen,.bd-lightGreen-active:active,.bd-lightGreen-focus:focus,.bd-lightGreen-hover:hover,.tg-lightGreen:before{border-color:#86e22a!important}.bd-lightEmerald,.bd-lightEmerald-active:active,.bd-lightEmerald-focus:focus,.bd-lightEmerald-hover:hover,.tg-lightEmerald:before{border-color:#00d600!important}.bd-lightBlue,.bd-lightBlue-active:active,.bd-lightBlue-focus:focus,.bd-lightBlue-hover:hover,.tg-lightBlue:before{border-color:#3ecbff!important}.bd-lightTeal,.bd-lightTeal-active:active,.bd-lightTeal-focus:focus,.bd-lightTeal-hover:hover,.tg-lightTeal:before{border-color:#00f7f5!important}.bd-lightCyan,.bd-lightCyan-active:active,.bd-lightCyan-focus:focus,.bd-lightCyan-hover:hover,.tg-lightCyan:before{border-color:#69cbfa!important}.bd-lightCobalt,.bd-lightCobalt-active:active,.bd-lightCobalt-focus:focus,.bd-lightCobalt-hover:hover,.tg-lightCobalt:before{border-color:#3d7eff!important}.bd-lightIndigo,.bd-lightIndigo-active:active,.bd-lightIndigo-focus:focus,.bd-lightIndigo-hover:hover,.tg-lightIndigo:before{border-color:#974dff!important}.bd-lightViolet,.bd-lightViolet-active:active,.bd-lightViolet-focus:focus,.bd-lightViolet-hover:hover,.tg-lightViolet:before{border-color:#c44dff!important}.bd-lightPink,.bd-lightPink-active:active,.bd-lightPink-focus:focus,.bd-lightPink-hover:hover,.tg-lightPink:before{border-color:#e98fcb!important}.bd-lightMagenta,.bd-lightMagenta-active:active,.bd-lightMagenta-focus:focus,.bd-lightMagenta-hover:hover,.tg-lightMagenta:before{border-color:#ff2599!important}.bd-lightCrimson,.bd-lightCrimson-active:active,.bd-lightCrimson-focus:focus,.bd-lightCrimson-hover:hover,.tg-lightCrimson:before{border-color:#ef0036!important}.bd-lightRed,.bd-lightRed-active:active,.bd-lightRed-focus:focus,.bd-lightRed-hover:hover,.tg-lightRed:before{border-color:#df6e68!important}.bd-lightOrange,.bd-lightOrange-active:active,.bd-lightOrange-focus:focus,.bd-lightOrange-hover:hover,.tg-lightOrange:before{border-color:#ff9447!important}.bd-lightAmber,.bd-lightAmber-active:active,.bd-lightAmber-focus:focus,.bd-lightAmber-hover:hover,.tg-lightAmber:before{border-color:#f8bf4f!important}.bd-lightYellow,.bd-lightYellow-active:active,.bd-lightYellow-focus:focus,.bd-lightYellow-hover:hover,.tg-lightYellow:before{border-color:#fff44d!important}.bd-lightBrown,.bd-lightBrown-active:active,.bd-lightBrown-focus:focus,.bd-lightBrown-hover:hover,.tg-lightBrown:before{border-color:#bb823f!important}.bd-lightOlive,.bd-lightOlive-active:active,.bd-lightOlive-focus:focus,.bd-lightOlive-hover:hover,.tg-lightOlive:before{border-color:#95ab8d!important}.bd-lightSteel,.bd-lightSteel-active:active,.bd-lightSteel-focus:focus,.bd-lightSteel-hover:hover,.tg-lightSteel:before{border-color:#8d9cab!important}.bd-lightMauve,.bd-lightMauve-active:active,.bd-lightMauve-focus:focus,.bd-lightMauve-hover:hover,.tg-lightMauve:before{border-color:#9c89ad!important}.bd-lightTaupe,.bd-lightTaupe-active:active,.bd-lightTaupe-focus:focus,.bd-lightTaupe-hover:hover,.tg-lightTaupe:before{border-color:#aea073!important}.bd-lightGray,.bd-lightGray-active:active,.bd-lightGray-focus:focus,.bd-lightGray-hover:hover,.tg-lightGray:before{border-color:#e4e4e4!important}.bd-lightGrayBlue,.bd-lightGrayBlue-active:active,.bd-lightGrayBlue-focus:focus,.bd-lightGrayBlue-hover:hover,.tg-lightGrayBlue:before{border-color:#8aa2ae!important}.bd-darkLime,.bd-darkLime-active:active,.bd-darkLime-focus:focus,.bd-darkLime-hover:hover,.tg-darkLime:before{border-color:#647800!important}.bd-darkGreen,.bd-darkGreen-active:active,.bd-darkGreen-focus:focus,.bd-darkGreen-hover:hover,.tg-darkGreen:before{border-color:#3a660e!important}.bd-darkEmerald,.bd-darkEmerald-active:active,.bd-darkEmerald-focus:focus,.bd-darkEmerald-hover:hover,.tg-darkEmerald:before{border-color:#003d00!important}.bd-darkBlue,.bd-darkBlue-active:active,.bd-darkBlue-focus:focus,.bd-darkBlue-hover:hover,.tg-darkBlue:before{border-color:#0077a3!important}.bd-darkTeal,.bd-darkTeal-active:active,.bd-darkTeal-focus:focus,.bd-darkTeal-hover:hover,.tg-darkTeal:before{border-color:#005e5d!important}.bd-darkCyan,.bd-darkCyan-active:active,.bd-darkCyan-focus:focus,.bd-darkCyan-hover:hover,.tg-darkCyan:before{border-color:#0686c4!important}.bd-darkCobalt,.bd-darkCobalt-active:active,.bd-darkCobalt-focus:focus,.bd-darkCobalt-hover:hover,.tg-darkCobalt:before{border-color:#0036a3!important}.bd-darkIndigo,.bd-darkIndigo-active:active,.bd-darkIndigo-focus:focus,.bd-darkIndigo-hover:hover,.tg-darkIndigo:before{border-color:#4a00b3!important}.bd-darkViolet,.bd-darkViolet-active:active,.bd-darkViolet-focus:focus,.bd-darkViolet-hover:hover,.tg-darkViolet:before{border-color:#7700b3!important}.bd-darkPink,.bd-darkPink-active:active,.bd-darkPink-focus:focus,.bd-darkPink-hover:hover,.tg-darkPink:before{border-color:#ba2588!important}.bd-darkMagenta,.bd-darkMagenta-active:active,.bd-darkMagenta-focus:focus,.bd-darkMagenta-hover:hover,.tg-darkMagenta:before{border-color:#8c004a!important}.bd-darkCrimson,.bd-darkCrimson-active:active,.bd-darkCrimson-focus:focus,.bd-darkCrimson-hover:hover,.tg-darkCrimson:before{border-color:#560014!important}.bd-darkRed,.bd-darkRed-active:active,.bd-darkRed-focus:focus,.bd-darkRed-hover:hover,.tg-darkRed:before{border-color:#8f251f!important}.bd-darkOrange,.bd-darkOrange-active:active,.bd-darkOrange-focus:focus,.bd-darkOrange-hover:hover,.tg-darkOrange:before{border-color:#ae4800!important}.bd-darkAmber,.bd-darkAmber-active:active,.bd-darkAmber-focus:focus,.bd-darkAmber-hover:hover,.tg-darkAmber:before{border-color:#a77107!important}.bd-darkYellow,.bd-darkYellow-active:active,.bd-darkYellow-focus:focus,.bd-darkYellow-hover:hover,.tg-darkYellow:before{border-color:#b3a800!important}.bd-darkBrown,.bd-darkBrown-active:active,.bd-darkBrown-focus:focus,.bd-darkBrown-hover:hover,.tg-darkBrown:before{border-color:#493219!important}.bd-darkOlive,.bd-darkOlive-active:active,.bd-darkOlive-focus:focus,.bd-darkOlive-hover:hover,.tg-darkOlive:before{border-color:#4a5b43!important}.bd-darkSteel,.bd-darkSteel-active:active,.bd-darkSteel-focus:focus,.bd-darkSteel-hover:hover,.tg-darkSteel:before{border-color:#43505b!important}.bd-darkMauve,.bd-darkMauve-active:active,.bd-darkMauve-focus:focus,.bd-darkMauve-hover:hover,.tg-darkMauve:before{border-color:#4f415d!important}.bd-darkTaupe,.bd-darkTaupe-active:active,.bd-darkTaupe-focus:focus,.bd-darkTaupe-hover:hover,.tg-darkTaupe:before{border-color:#574e32!important}.bd-darkGray,.bd-darkGray-active:active,.bd-darkGray-focus:focus,.bd-darkGray-hover:hover,.tg-darkGray:before{border-color:#989898!important}.bd-darkGrayBlue,.bd-darkGrayBlue-active:active,.bd-darkGrayBlue-focus:focus,.bd-darkGrayBlue-hover:hover,.tg-darkGrayBlue:before{border-color:#41545e!important}");styleInject(".fc-black,.fc-black-active:active,.fc-black-focus:focus,.fc-black-hover:hover{fill:#000!important}.fc-white,.fc-white-active:active,.fc-white-focus:focus,.fc-white-hover:hover{fill:#fff!important}.fc-dark,.fc-dark-active:active,.fc-dark-focus:focus,.fc-dark-hover:hover{fill:#1d1d1d!important}.fc-light,.fc-light-active:active,.fc-light-focus:focus,.fc-light-hover:hover{fill:#f8f8f8!important}.fc-grayBlue,.fc-grayBlue-active:active,.fc-grayBlue-focus:focus,.fc-grayBlue-hover:hover{fill:#607d8b!important}.fc-grayWhite,.fc-grayWhite-active:active,.fc-grayWhite-focus:focus,.fc-grayWhite-hover:hover{fill:#f5f5f5!important}.fc-grayMouse,.fc-grayMouse-active:active,.fc-grayMouse-focus:focus,.fc-grayMouse-hover:hover{fill:#455a64!important}.fc-brandColor1,.fc-brandColor1-active:active,.fc-brandColor1-focus:focus,.fc-brandColor1-hover:hover{fill:#2ac4f4!important}.fc-brandColor2,.fc-brandColor2-active:active,.fc-brandColor2-focus:focus,.fc-brandColor2-hover:hover{fill:#004d6f!important}.fc-lime,.fc-lime-active:active,.fc-lime-focus:focus,.fc-lime-hover:hover{fill:#a4c400!important}.fc-green,.fc-green-active:active,.fc-green-focus:focus,.fc-green-hover:hover{fill:#60a917!important}.fc-emerald,.fc-emerald-active:active,.fc-emerald-focus:focus,.fc-emerald-hover:hover{fill:#008a00!important}.fc-blue,.fc-blue-active:active,.fc-blue-focus:focus,.fc-blue-hover:hover{fill:#00aff0!important}.fc-teal,.fc-teal-active:active,.fc-teal-focus:focus,.fc-teal-hover:hover{fill:#00aba9!important}.fc-cyan,.fc-cyan-active:active,.fc-cyan-focus:focus,.fc-cyan-hover:hover{fill:#1fb1f8!important}.fc-cobalt,.fc-cobalt-active:active,.fc-cobalt-focus:focus,.fc-cobalt-hover:hover{fill:#0050ef!important}.fc-indigo,.fc-indigo-active:active,.fc-indigo-focus:focus,.fc-indigo-hover:hover{fill:#6a00ff!important}.fc-violet,.fc-violet-active:active,.fc-violet-focus:focus,.fc-violet-hover:hover{fill:#a0f!important}.fc-pink,.fc-pink-active:active,.fc-pink-focus:focus,.fc-pink-hover:hover{fill:#dc4fad!important}.fc-magenta,.fc-magenta-active:active,.fc-magenta-focus:focus,.fc-magenta-hover:hover{fill:#d80073!important}.fc-crimson,.fc-crimson-active:active,.fc-crimson-focus:focus,.fc-crimson-hover:hover{fill:#a20025!important}.fc-red,.fc-red-active:active,.fc-red-focus:focus,.fc-red-hover:hover{fill:#ce352c!important}.fc-orange,.fc-orange-active:active,.fc-orange-focus:focus,.fc-orange-hover:hover{fill:#fa6800!important}.fc-amber,.fc-amber-active:active,.fc-amber-focus:focus,.fc-amber-hover:hover{fill:#f0a30a!important}.fc-yellow,.fc-yellow-active:active,.fc-yellow-focus:focus,.fc-yellow-hover:hover{fill:#fff000!important}.fc-brown,.fc-brown-active:active,.fc-brown-focus:focus,.fc-brown-hover:hover{fill:#825a2c!important}.fc-olive,.fc-olive-active:active,.fc-olive-focus:focus,.fc-olive-hover:hover{fill:#6d8764!important}.fc-steel,.fc-steel-active:active,.fc-steel-focus:focus,.fc-steel-hover:hover{fill:#647687!important}.fc-mauve,.fc-mauve-active:active,.fc-mauve-focus:focus,.fc-mauve-hover:hover{fill:#76608a!important}.fc-taupe,.fc-taupe-active:active,.fc-taupe-focus:focus,.fc-taupe-hover:hover{fill:#87794e!important}.fc-gray,.fc-gray-active:active,.fc-gray-focus:focus,.fc-gray-hover:hover{fill:#bebebe!important}.fc-lightLime,.fc-lightLime-active:active,.fc-lightLime-focus:focus,.fc-lightLime-hover:hover{fill:#d8ff12!important}.fc-lightGreen,.fc-lightGreen-active:active,.fc-lightGreen-focus:focus,.fc-lightGreen-hover:hover{fill:#86e22a!important}.fc-lightEmerald,.fc-lightEmerald-active:active,.fc-lightEmerald-focus:focus,.fc-lightEmerald-hover:hover{fill:#00d600!important}.fc-lightBlue,.fc-lightBlue-active:active,.fc-lightBlue-focus:focus,.fc-lightBlue-hover:hover{fill:#3ecbff!important}.fc-lightTeal,.fc-lightTeal-active:active,.fc-lightTeal-focus:focus,.fc-lightTeal-hover:hover{fill:#00f7f5!important}.fc-lightCyan,.fc-lightCyan-active:active,.fc-lightCyan-focus:focus,.fc-lightCyan-hover:hover{fill:#69cbfa!important}.fc-lightCobalt,.fc-lightCobalt-active:active,.fc-lightCobalt-focus:focus,.fc-lightCobalt-hover:hover{fill:#3d7eff!important}.fc-lightIndigo,.fc-lightIndigo-active:active,.fc-lightIndigo-focus:focus,.fc-lightIndigo-hover:hover{fill:#974dff!important}.fc-lightViolet,.fc-lightViolet-active:active,.fc-lightViolet-focus:focus,.fc-lightViolet-hover:hover{fill:#c44dff!important}.fc-lightPink,.fc-lightPink-active:active,.fc-lightPink-focus:focus,.fc-lightPink-hover:hover{fill:#e98fcb!important}.fc-lightMagenta,.fc-lightMagenta-active:active,.fc-lightMagenta-focus:focus,.fc-lightMagenta-hover:hover{fill:#ff2599!important}.fc-lightCrimson,.fc-lightCrimson-active:active,.fc-lightCrimson-focus:focus,.fc-lightCrimson-hover:hover{fill:#ef0036!important}.fc-lightRed,.fc-lightRed-active:active,.fc-lightRed-focus:focus,.fc-lightRed-hover:hover{fill:#df6e68!important}.fc-lightOrange,.fc-lightOrange-active:active,.fc-lightOrange-focus:focus,.fc-lightOrange-hover:hover{fill:#ff9447!important}.fc-lightAmber,.fc-lightAmber-active:active,.fc-lightAmber-focus:focus,.fc-lightAmber-hover:hover{fill:#f8bf4f!important}.fc-lightYellow,.fc-lightYellow-active:active,.fc-lightYellow-focus:focus,.fc-lightYellow-hover:hover{fill:#fff44d!important}.fc-lightBrown,.fc-lightBrown-active:active,.fc-lightBrown-focus:focus,.fc-lightBrown-hover:hover{fill:#bb823f!important}.fc-lightOlive,.fc-lightOlive-active:active,.fc-lightOlive-focus:focus,.fc-lightOlive-hover:hover{fill:#95ab8d!important}.fc-lightSteel,.fc-lightSteel-active:active,.fc-lightSteel-focus:focus,.fc-lightSteel-hover:hover{fill:#8d9cab!important}.fc-lightMauve,.fc-lightMauve-active:active,.fc-lightMauve-focus:focus,.fc-lightMauve-hover:hover{fill:#9c89ad!important}.fc-lightTaupe,.fc-lightTaupe-active:active,.fc-lightTaupe-focus:focus,.fc-lightTaupe-hover:hover{fill:#aea073!important}.fc-lightGray,.fc-lightGray-active:active,.fc-lightGray-focus:focus,.fc-lightGray-hover:hover{fill:#e4e4e4!important}.fc-lightGrayBlue,.fc-lightGrayBlue-active:active,.fc-lightGrayBlue-focus:focus,.fc-lightGrayBlue-hover:hover{fill:#8aa2ae!important}.fc-darkLime,.fc-darkLime-active:active,.fc-darkLime-focus:focus,.fc-darkLime-hover:hover{fill:#647800!important}.fc-darkGreen,.fc-darkGreen-active:active,.fc-darkGreen-focus:focus,.fc-darkGreen-hover:hover{fill:#3a660e!important}.fc-darkEmerald,.fc-darkEmerald-active:active,.fc-darkEmerald-focus:focus,.fc-darkEmerald-hover:hover{fill:#003d00!important}.fc-darkBlue,.fc-darkBlue-active:active,.fc-darkBlue-focus:focus,.fc-darkBlue-hover:hover{fill:#0077a3!important}.fc-darkTeal,.fc-darkTeal-active:active,.fc-darkTeal-focus:focus,.fc-darkTeal-hover:hover{fill:#005e5d!important}.fc-darkCyan,.fc-darkCyan-active:active,.fc-darkCyan-focus:focus,.fc-darkCyan-hover:hover{fill:#0686c4!important}.fc-darkCobalt,.fc-darkCobalt-active:active,.fc-darkCobalt-focus:focus,.fc-darkCobalt-hover:hover{fill:#0036a3!important}.fc-darkIndigo,.fc-darkIndigo-active:active,.fc-darkIndigo-focus:focus,.fc-darkIndigo-hover:hover{fill:#4a00b3!important}.fc-darkViolet,.fc-darkViolet-active:active,.fc-darkViolet-focus:focus,.fc-darkViolet-hover:hover{fill:#7700b3!important}.fc-darkPink,.fc-darkPink-active:active,.fc-darkPink-focus:focus,.fc-darkPink-hover:hover{fill:#ba2588!important}.fc-darkMagenta,.fc-darkMagenta-active:active,.fc-darkMagenta-focus:focus,.fc-darkMagenta-hover:hover{fill:#8c004a!important}.fc-darkCrimson,.fc-darkCrimson-active:active,.fc-darkCrimson-focus:focus,.fc-darkCrimson-hover:hover{fill:#560014!important}.fc-darkRed,.fc-darkRed-active:active,.fc-darkRed-focus:focus,.fc-darkRed-hover:hover{fill:#8f251f!important}.fc-darkOrange,.fc-darkOrange-active:active,.fc-darkOrange-focus:focus,.fc-darkOrange-hover:hover{fill:#ae4800!important}.fc-darkAmber,.fc-darkAmber-active:active,.fc-darkAmber-focus:focus,.fc-darkAmber-hover:hover{fill:#a77107!important}.fc-darkYellow,.fc-darkYellow-active:active,.fc-darkYellow-focus:focus,.fc-darkYellow-hover:hover{fill:#b3a800!important}.fc-darkBrown,.fc-darkBrown-active:active,.fc-darkBrown-focus:focus,.fc-darkBrown-hover:hover{fill:#493219!important}.fc-darkOlive,.fc-darkOlive-active:active,.fc-darkOlive-focus:focus,.fc-darkOlive-hover:hover{fill:#4a5b43!important}.fc-darkSteel,.fc-darkSteel-active:active,.fc-darkSteel-focus:focus,.fc-darkSteel-hover:hover{fill:#43505b!important}.fc-darkMauve,.fc-darkMauve-active:active,.fc-darkMauve-focus:focus,.fc-darkMauve-hover:hover{fill:#4f415d!important}.fc-darkTaupe,.fc-darkTaupe-active:active,.fc-darkTaupe-focus:focus,.fc-darkTaupe-hover:hover{fill:#574e32!important}.fc-darkGray,.fc-darkGray-active:active,.fc-darkGray-focus:focus,.fc-darkGray-hover:hover{fill:#989898!important}.fc-darkGrayBlue,.fc-darkGrayBlue-active:active,.fc-darkGrayBlue-focus:focus,.fc-darkGrayBlue-hover:hover{fill:#41545e!important}");styleInject(".fg-default{color:var(--default-color)!important}.fg-black,.fg-black-active:active,.fg-black-focus:focus,.fg-black-hover:hover{color:#000!important}.fg-white,.fg-white-active:active,.fg-white-focus:focus,.fg-white-hover:hover{color:#fff!important}.fg-dark,.fg-dark-active:active,.fg-dark-focus:focus,.fg-dark-hover:hover{color:#1d1d1d!important}.fg-light,.fg-light-active:active,.fg-light-focus:focus,.fg-light-hover:hover{color:#f8f8f8!important}.fg-grayBlue,.fg-grayBlue-active:active,.fg-grayBlue-focus:focus,.fg-grayBlue-hover:hover{color:#607d8b!important}.fg-grayWhite,.fg-grayWhite-active:active,.fg-grayWhite-focus:focus,.fg-grayWhite-hover:hover{color:#f5f5f5!important}.fg-grayMouse,.fg-grayMouse-active:active,.fg-grayMouse-focus:focus,.fg-grayMouse-hover:hover{color:#455a64!important}.fg-brandColor1,.fg-brandColor1-active:active,.fg-brandColor1-focus:focus,.fg-brandColor1-hover:hover{color:#2ac4f4!important}.fg-brandColor2,.fg-brandColor2-active:active,.fg-brandColor2-focus:focus,.fg-brandColor2-hover:hover{color:#004d6f!important}.fg-lime,.fg-lime-active:active,.fg-lime-focus:focus,.fg-lime-hover:hover{color:#a4c400!important}.fg-green,.fg-green-active:active,.fg-green-focus:focus,.fg-green-hover:hover{color:#60a917!important}.fg-emerald,.fg-emerald-active:active,.fg-emerald-focus:focus,.fg-emerald-hover:hover{color:#008a00!important}.fg-blue,.fg-blue-active:active,.fg-blue-focus:focus,.fg-blue-hover:hover{color:#00aff0!important}.fg-teal,.fg-teal-active:active,.fg-teal-focus:focus,.fg-teal-hover:hover{color:#00aba9!important}.fg-cyan,.fg-cyan-active:active,.fg-cyan-focus:focus,.fg-cyan-hover:hover{color:#1fb1f8!important}.fg-cobalt,.fg-cobalt-active:active,.fg-cobalt-focus:focus,.fg-cobalt-hover:hover{color:#0050ef!important}.fg-indigo,.fg-indigo-active:active,.fg-indigo-focus:focus,.fg-indigo-hover:hover{color:#6a00ff!important}.fg-violet,.fg-violet-active:active,.fg-violet-focus:focus,.fg-violet-hover:hover{color:#a0f!important}.fg-pink,.fg-pink-active:active,.fg-pink-focus:focus,.fg-pink-hover:hover{color:#dc4fad!important}.fg-magenta,.fg-magenta-active:active,.fg-magenta-focus:focus,.fg-magenta-hover:hover{color:#d80073!important}.fg-crimson,.fg-crimson-active:active,.fg-crimson-focus:focus,.fg-crimson-hover:hover{color:#a20025!important}.fg-red,.fg-red-active:active,.fg-red-focus:focus,.fg-red-hover:hover{color:#ce352c!important}.fg-orange,.fg-orange-active:active,.fg-orange-focus:focus,.fg-orange-hover:hover{color:#fa6800!important}.fg-amber,.fg-amber-active:active,.fg-amber-focus:focus,.fg-amber-hover:hover{color:#f0a30a!important}.fg-yellow,.fg-yellow-active:active,.fg-yellow-focus:focus,.fg-yellow-hover:hover{color:#fff000!important}.fg-brown,.fg-brown-active:active,.fg-brown-focus:focus,.fg-brown-hover:hover{color:#825a2c!important}.fg-olive,.fg-olive-active:active,.fg-olive-focus:focus,.fg-olive-hover:hover{color:#6d8764!important}.fg-steel,.fg-steel-active:active,.fg-steel-focus:focus,.fg-steel-hover:hover{color:#647687!important}.fg-mauve,.fg-mauve-active:active,.fg-mauve-focus:focus,.fg-mauve-hover:hover{color:#76608a!important}.fg-taupe,.fg-taupe-active:active,.fg-taupe-focus:focus,.fg-taupe-hover:hover{color:#87794e!important}.fg-gray,.fg-gray-active:active,.fg-gray-focus:focus,.fg-gray-hover:hover{color:#bebebe!important}.fg-lightLime,.fg-lightLime-active:active,.fg-lightLime-focus:focus,.fg-lightLime-hover:hover{color:#d8ff12!important}.fg-lightGreen,.fg-lightGreen-active:active,.fg-lightGreen-focus:focus,.fg-lightGreen-hover:hover{color:#86e22a!important}.fg-lightEmerald,.fg-lightEmerald-active:active,.fg-lightEmerald-focus:focus,.fg-lightEmerald-hover:hover{color:#00d600!important}.fg-lightBlue,.fg-lightBlue-active:active,.fg-lightBlue-focus:focus,.fg-lightBlue-hover:hover{color:#3ecbff!important}.fg-lightTeal,.fg-lightTeal-active:active,.fg-lightTeal-focus:focus,.fg-lightTeal-hover:hover{color:#00f7f5!important}.fg-lightCyan,.fg-lightCyan-active:active,.fg-lightCyan-focus:focus,.fg-lightCyan-hover:hover{color:#69cbfa!important}.fg-lightCobalt,.fg-lightCobalt-active:active,.fg-lightCobalt-focus:focus,.fg-lightCobalt-hover:hover{color:#3d7eff!important}.fg-lightIndigo,.fg-lightIndigo-active:active,.fg-lightIndigo-focus:focus,.fg-lightIndigo-hover:hover{color:#974dff!important}.fg-lightViolet,.fg-lightViolet-active:active,.fg-lightViolet-focus:focus,.fg-lightViolet-hover:hover{color:#c44dff!important}.fg-lightPink,.fg-lightPink-active:active,.fg-lightPink-focus:focus,.fg-lightPink-hover:hover{color:#e98fcb!important}.fg-lightMagenta,.fg-lightMagenta-active:active,.fg-lightMagenta-focus:focus,.fg-lightMagenta-hover:hover{color:#ff2599!important}.fg-lightCrimson,.fg-lightCrimson-active:active,.fg-lightCrimson-focus:focus,.fg-lightCrimson-hover:hover{color:#ef0036!important}.fg-lightRed,.fg-lightRed-active:active,.fg-lightRed-focus:focus,.fg-lightRed-hover:hover{color:#df6e68!important}.fg-lightOrange,.fg-lightOrange-active:active,.fg-lightOrange-focus:focus,.fg-lightOrange-hover:hover{color:#ff9447!important}.fg-lightAmber,.fg-lightAmber-active:active,.fg-lightAmber-focus:focus,.fg-lightAmber-hover:hover{color:#f8bf4f!important}.fg-lightYellow,.fg-lightYellow-active:active,.fg-lightYellow-focus:focus,.fg-lightYellow-hover:hover{color:#fff44d!important}.fg-lightBrown,.fg-lightBrown-active:active,.fg-lightBrown-focus:focus,.fg-lightBrown-hover:hover{color:#bb823f!important}.fg-lightOlive,.fg-lightOlive-active:active,.fg-lightOlive-focus:focus,.fg-lightOlive-hover:hover{color:#95ab8d!important}.fg-lightSteel,.fg-lightSteel-active:active,.fg-lightSteel-focus:focus,.fg-lightSteel-hover:hover{color:#8d9cab!important}.fg-lightMauve,.fg-lightMauve-active:active,.fg-lightMauve-focus:focus,.fg-lightMauve-hover:hover{color:#9c89ad!important}.fg-lightTaupe,.fg-lightTaupe-active:active,.fg-lightTaupe-focus:focus,.fg-lightTaupe-hover:hover{color:#aea073!important}.fg-lightGray,.fg-lightGray-active:active,.fg-lightGray-focus:focus,.fg-lightGray-hover:hover{color:#e4e4e4!important}.fg-lightGrayBlue,.fg-lightGrayBlue-active:active,.fg-lightGrayBlue-focus:focus,.fg-lightGrayBlue-hover:hover{color:#8aa2ae!important}.fg-darkLime,.fg-darkLime-active:active,.fg-darkLime-focus:focus,.fg-darkLime-hover:hover{color:#647800!important}.fg-darkGreen,.fg-darkGreen-active:active,.fg-darkGreen-focus:focus,.fg-darkGreen-hover:hover{color:#3a660e!important}.fg-darkEmerald,.fg-darkEmerald-active:active,.fg-darkEmerald-focus:focus,.fg-darkEmerald-hover:hover{color:#003d00!important}.fg-darkBlue,.fg-darkBlue-active:active,.fg-darkBlue-focus:focus,.fg-darkBlue-hover:hover{color:#0077a3!important}.fg-darkTeal,.fg-darkTeal-active:active,.fg-darkTeal-focus:focus,.fg-darkTeal-hover:hover{color:#005e5d!important}.fg-darkCyan,.fg-darkCyan-active:active,.fg-darkCyan-focus:focus,.fg-darkCyan-hover:hover{color:#0686c4!important}.fg-darkCobalt,.fg-darkCobalt-active:active,.fg-darkCobalt-focus:focus,.fg-darkCobalt-hover:hover{color:#0036a3!important}.fg-darkIndigo,.fg-darkIndigo-active:active,.fg-darkIndigo-focus:focus,.fg-darkIndigo-hover:hover{color:#4a00b3!important}.fg-darkViolet,.fg-darkViolet-active:active,.fg-darkViolet-focus:focus,.fg-darkViolet-hover:hover{color:#7700b3!important}.fg-darkPink,.fg-darkPink-active:active,.fg-darkPink-focus:focus,.fg-darkPink-hover:hover{color:#ba2588!important}.fg-darkMagenta,.fg-darkMagenta-active:active,.fg-darkMagenta-focus:focus,.fg-darkMagenta-hover:hover{color:#8c004a!important}.fg-darkCrimson,.fg-darkCrimson-active:active,.fg-darkCrimson-focus:focus,.fg-darkCrimson-hover:hover{color:#560014!important}.fg-darkRed,.fg-darkRed-active:active,.fg-darkRed-focus:focus,.fg-darkRed-hover:hover{color:#8f251f!important}.fg-darkOrange,.fg-darkOrange-active:active,.fg-darkOrange-focus:focus,.fg-darkOrange-hover:hover{color:#ae4800!important}.fg-darkAmber,.fg-darkAmber-active:active,.fg-darkAmber-focus:focus,.fg-darkAmber-hover:hover{color:#a77107!important}.fg-darkYellow,.fg-darkYellow-active:active,.fg-darkYellow-focus:focus,.fg-darkYellow-hover:hover{color:#b3a800!important}.fg-darkBrown,.fg-darkBrown-active:active,.fg-darkBrown-focus:focus,.fg-darkBrown-hover:hover{color:#493219!important}.fg-darkOlive,.fg-darkOlive-active:active,.fg-darkOlive-focus:focus,.fg-darkOlive-hover:hover{color:#4a5b43!important}.fg-darkSteel,.fg-darkSteel-active:active,.fg-darkSteel-focus:focus,.fg-darkSteel-hover:hover{color:#43505b!important}.fg-darkMauve,.fg-darkMauve-active:active,.fg-darkMauve-focus:focus,.fg-darkMauve-hover:hover{color:#4f415d!important}.fg-darkTaupe,.fg-darkTaupe-active:active,.fg-darkTaupe-focus:focus,.fg-darkTaupe-hover:hover{color:#574e32!important}.fg-darkGray,.fg-darkGray-active:active,.fg-darkGray-focus:focus,.fg-darkGray-hover:hover{color:#989898!important}.fg-darkGrayBlue,.fg-darkGrayBlue-active:active,.fg-darkGrayBlue-focus:focus,.fg-darkGrayBlue-hover:hover{color:#41545e!important}");styleInject(".op-default{background-color:rgba(31,177,248,.5)!important}.op-black{background-color:rgba(0,0,0,.5)!important}.op-black-hi{background-color:rgba(0,0,0,.2)!important}.op-black-low{background-color:rgba(0,0,0,.8)!important}.op-white{background-color:hsla(0,0%,100%,.5)!important}.op-white-hi{background-color:hsla(0,0%,100%,.2)!important}.op-white-low{background-color:hsla(0,0%,100%,.8)!important}.op-dark{background-color:rgba(29,29,29,.5)!important}.op-dark-hi{background-color:rgba(29,29,29,.2)!important}.op-dark-low{background-color:rgba(29,29,29,.8)!important}.op-light{background-color:hsla(0,0%,97%,.5)!important}.op-light-hi{background-color:hsla(0,0%,97%,.2)!important}.op-light-low{background-color:hsla(0,0%,97%,.8)!important}.op-grayBlue{background-color:rgba(96,125,139,.5)!important}.op-grayBlue-hi{background-color:rgba(96,125,139,.2)!important}.op-grayBlue-low{background-color:rgba(96,125,139,.8)!important}.op-grayWhite{background-color:hsla(0,0%,96%,.5)!important}.op-grayWhite-hi{background-color:hsla(0,0%,96%,.2)!important}.op-grayWhite-low{background-color:hsla(0,0%,96%,.8)!important}.op-grayMouse{background-color:rgba(69,90,100,.5)!important}.op-grayMouse-hi{background-color:rgba(69,90,100,.2)!important}.op-grayMouse-low{background-color:rgba(69,90,100,.8)!important}.op-brandColor1{background-color:rgba(42,196,244,.5)!important}.op-brandColor1-hi{background-color:rgba(42,196,244,.2)!important}.op-brandColor1-low{background-color:rgba(42,196,244,.8)!important}.op-brandColor2{background-color:rgba(0,77,111,.5)!important}.op-brandColor2-hi{background-color:rgba(0,77,111,.2)!important}.op-brandColor2-low{background-color:rgba(0,77,111,.8)!important}.op-lime{background-color:rgba(164,196,0,.5)!important}.op-lime-hi{background-color:rgba(164,196,0,.2)!important}.op-lime-low{background-color:rgba(164,196,0,.8)!important}.op-green{background-color:rgba(96,169,23,.5)!important}.op-green-hi{background-color:rgba(96,169,23,.2)!important}.op-green-low{background-color:rgba(96,169,23,.8)!important}.op-emerald{background-color:rgba(0,138,0,.5)!important}.op-emerald-hi{background-color:rgba(0,138,0,.2)!important}.op-emerald-low{background-color:rgba(0,138,0,.8)!important}.op-blue{background-color:rgba(0,175,240,.5)!important}.op-blue-hi{background-color:rgba(0,175,240,.2)!important}.op-blue-low{background-color:rgba(0,175,240,.8)!important}.op-teal{background-color:rgba(0,171,169,.5)!important}.op-teal-hi{background-color:rgba(0,171,169,.2)!important}.op-teal-low{background-color:rgba(0,171,169,.8)!important}.op-cyan{background-color:rgba(31,177,248,.5)!important}.op-cyan-hi{background-color:rgba(31,177,248,.2)!important}.op-cyan-low{background-color:rgba(31,177,248,.8)!important}.op-cobalt{background-color:rgba(0,80,239,.5)!important}.op-cobalt-hi{background-color:rgba(0,80,239,.2)!important}.op-cobalt-low{background-color:rgba(0,80,239,.8)!important}.op-indigo{background-color:rgba(106,0,255,.5)!important}.op-indigo-hi{background-color:rgba(106,0,255,.2)!important}.op-indigo-low{background-color:rgba(106,0,255,.8)!important}.op-violet{background-color:rgba(170,0,255,.5)!important}.op-violet-hi{background-color:rgba(170,0,255,.2)!important}.op-violet-low{background-color:rgba(170,0,255,.8)!important}.op-pink{background-color:rgba(220,79,173,.5)!important}.op-pink-hi{background-color:rgba(220,79,173,.2)!important}.op-pink-low{background-color:rgba(220,79,173,.8)!important}.op-magenta{background-color:rgba(216,0,115,.5)!important}.op-magenta-hi{background-color:rgba(216,0,115,.2)!important}.op-magenta-low{background-color:rgba(216,0,115,.8)!important}.op-crimson{background-color:rgba(162,0,37,.5)!important}.op-crimson-hi{background-color:rgba(162,0,37,.2)!important}.op-crimson-low{background-color:rgba(162,0,37,.8)!important}.op-red{background-color:rgba(206,53,44,.5)!important}.op-red-hi{background-color:rgba(206,53,44,.2)!important}.op-red-low{background-color:rgba(206,53,44,.8)!important}.op-orange{background-color:rgba(250,104,0,.5)!important}.op-orange-hi{background-color:rgba(250,104,0,.2)!important}.op-orange-low{background-color:rgba(250,104,0,.8)!important}.op-amber{background-color:rgba(240,163,10,.5)!important}.op-amber-hi{background-color:rgba(240,163,10,.2)!important}.op-amber-low{background-color:rgba(240,163,10,.8)!important}.op-yellow{background-color:rgba(255,240,0,.5)!important}.op-yellow-hi{background-color:rgba(255,240,0,.2)!important}.op-yellow-low{background-color:rgba(255,240,0,.8)!important}.op-brown{background-color:rgba(130,90,44,.5)!important}.op-brown-hi{background-color:rgba(130,90,44,.2)!important}.op-brown-low{background-color:rgba(130,90,44,.8)!important}.op-olive{background-color:rgba(109,135,100,.5)!important}.op-olive-hi{background-color:rgba(109,135,100,.2)!important}.op-olive-low{background-color:rgba(109,135,100,.8)!important}.op-steel{background-color:rgba(100,118,135,.5)!important}.op-steel-hi{background-color:rgba(100,118,135,.2)!important}.op-steel-low{background-color:rgba(100,118,135,.8)!important}.op-mauve{background-color:rgba(118,96,138,.5)!important}.op-mauve-hi{background-color:rgba(118,96,138,.2)!important}.op-mauve-low{background-color:rgba(118,96,138,.8)!important}.op-taupe{background-color:rgba(135,121,78,.5)!important}.op-taupe-hi{background-color:rgba(135,121,78,.2)!important}.op-taupe-low{background-color:rgba(135,121,78,.8)!important}.op-gray{background-color:hsla(0,0%,75%,.5)!important}.op-gray-hi{background-color:hsla(0,0%,75%,.2)!important}.op-gray-low{background-color:hsla(0,0%,75%,.8)!important}.op-lightLime{background-color:rgba(216,255,18,.5)!important}.op-lightLime-hi{background-color:rgba(216,255,18,.2)!important}.op-lightLime-low{background-color:rgba(216,255,18,.8)!important}.op-lightGreen{background-color:rgba(134,226,42,.5)!important}.op-lightGreen-hi{background-color:rgba(134,226,42,.2)!important}.op-lightGreen-low{background-color:rgba(134,226,42,.8)!important}.op-lightEmerald{background-color:rgba(0,214,0,.5)!important}.op-lightEmerald-hi{background-color:rgba(0,214,0,.2)!important}.op-lightEmerald-low{background-color:rgba(0,214,0,.8)!important}.op-lightBlue{background-color:rgba(62,203,255,.5)!important}.op-lightBlue-hi{background-color:rgba(62,203,255,.2)!important}.op-lightBlue-low{background-color:rgba(62,203,255,.8)!important}.op-lightTeal{background-color:rgba(0,247,245,.5)!important}.op-lightTeal-hi{background-color:rgba(0,247,245,.2)!important}.op-lightTeal-low{background-color:rgba(0,247,245,.8)!important}.op-lightCyan{background-color:rgba(105,203,250,.5)!important}.op-lightCyan-hi{background-color:rgba(105,203,250,.2)!important}.op-lightCyan-low{background-color:rgba(105,203,250,.8)!important}.op-lightCobalt{background-color:rgba(61,126,255,.5)!important}.op-lightCobalt-hi{background-color:rgba(61,126,255,.2)!important}.op-lightCobalt-low{background-color:rgba(61,126,255,.8)!important}.op-lightIndigo{background-color:rgba(151,77,255,.5)!important}.op-lightIndigo-hi{background-color:rgba(151,77,255,.2)!important}.op-lightIndigo-low{background-color:rgba(151,77,255,.8)!important}.op-lightViolet{background-color:rgba(196,77,255,.5)!important}.op-lightViolet-hi{background-color:rgba(196,77,255,.2)!important}.op-lightViolet-low{background-color:rgba(196,77,255,.8)!important}.op-lightPink{background-color:rgba(233,143,203,.5)!important}.op-lightPink-hi{background-color:rgba(233,143,203,.2)!important}.op-lightPink-low{background-color:rgba(233,143,203,.8)!important}.op-lightMagenta{background-color:rgba(255,37,153,.5)!important}.op-lightMagenta-hi{background-color:rgba(255,37,153,.2)!important}.op-lightMagenta-low{background-color:rgba(255,37,153,.8)!important}.op-lightCrimson{background-color:rgba(239,0,54,.5)!important}.op-lightCrimson-hi{background-color:rgba(239,0,54,.2)!important}.op-lightCrimson-low{background-color:rgba(239,0,54,.8)!important}.op-lightRed{background-color:hsla(3,65%,64%,.5)!important}.op-lightRed-hi{background-color:hsla(3,65%,64%,.2)!important}.op-lightRed-low{background-color:hsla(3,65%,64%,.8)!important}.op-lightOrange{background-color:rgba(255,148,71,.5)!important}.op-lightOrange-hi{background-color:rgba(255,148,71,.2)!important}.op-lightOrange-low{background-color:rgba(255,148,71,.8)!important}.op-lightAmber{background-color:rgba(248,191,79,.5)!important}.op-lightAmber-hi{background-color:rgba(248,191,79,.2)!important}.op-lightAmber-low{background-color:rgba(248,191,79,.8)!important}.op-lightYellow{background-color:rgba(255,244,77,.5)!important}.op-lightYellow-hi{background-color:rgba(255,244,77,.2)!important}.op-lightYellow-low{background-color:rgba(255,244,77,.8)!important}.op-lightBrown{background-color:rgba(187,130,63,.5)!important}.op-lightBrown-hi{background-color:rgba(187,130,63,.2)!important}.op-lightBrown-low{background-color:rgba(187,130,63,.8)!important}.op-lightOlive{background-color:rgba(149,171,141,.5)!important}.op-lightOlive-hi{background-color:rgba(149,171,141,.2)!important}.op-lightOlive-low{background-color:rgba(149,171,141,.8)!important}.op-lightSteel{background-color:rgba(141,156,171,.5)!important}.op-lightSteel-hi{background-color:rgba(141,156,171,.2)!important}.op-lightSteel-low{background-color:rgba(141,156,171,.8)!important}.op-lightMauve{background-color:rgba(156,137,173,.5)!important}.op-lightMauve-hi{background-color:rgba(156,137,173,.2)!important}.op-lightMauve-low{background-color:rgba(156,137,173,.8)!important}.op-lightTaupe{background-color:hsla(46,27%,57%,.5)!important}.op-lightTaupe-hi{background-color:hsla(46,27%,57%,.2)!important}.op-lightTaupe-low{background-color:hsla(46,27%,57%,.8)!important}.op-lightGray{background-color:hsla(0,0%,89%,.5)!important}.op-lightGray-hi{background-color:hsla(0,0%,89%,.2)!important}.op-lightGray-low{background-color:hsla(0,0%,89%,.8)!important}.op-lightGrayBlue{background-color:rgba(138,162,174,.5)!important}.op-lightGrayBlue-hi{background-color:rgba(138,162,174,.2)!important}.op-lightGrayBlue-low{background-color:rgba(138,162,174,.8)!important}.op-darkLime{background-color:rgba(100,120,0,.5)!important}.op-darkLime-hi{background-color:rgba(100,120,0,.2)!important}.op-darkLime-low{background-color:rgba(100,120,0,.8)!important}.op-darkGreen{background-color:rgba(58,102,14,.5)!important}.op-darkGreen-hi{background-color:rgba(58,102,14,.2)!important}.op-darkGreen-low{background-color:rgba(58,102,14,.8)!important}.op-darkEmerald{background-color:rgba(0,61,0,.5)!important}.op-darkEmerald-hi{background-color:rgba(0,61,0,.2)!important}.op-darkEmerald-low{background-color:rgba(0,61,0,.8)!important}.op-darkBlue{background-color:rgba(0,119,163,.5)!important}.op-darkBlue-hi{background-color:rgba(0,119,163,.2)!important}.op-darkBlue-low{background-color:rgba(0,119,163,.8)!important}.op-darkTeal{background-color:rgba(0,94,93,.5)!important}.op-darkTeal-hi{background-color:rgba(0,94,93,.2)!important}.op-darkTeal-low{background-color:rgba(0,94,93,.8)!important}.op-darkCyan{background-color:rgba(6,134,196,.5)!important}.op-darkCyan-hi{background-color:rgba(6,134,196,.2)!important}.op-darkCyan-low{background-color:rgba(6,134,196,.8)!important}.op-darkCobalt{background-color:rgba(0,54,163,.5)!important}.op-darkCobalt-hi{background-color:rgba(0,54,163,.2)!important}.op-darkCobalt-low{background-color:rgba(0,54,163,.8)!important}.op-darkIndigo{background-color:rgba(74,0,179,.5)!important}.op-darkIndigo-hi{background-color:rgba(74,0,179,.2)!important}.op-darkIndigo-low{background-color:rgba(74,0,179,.8)!important}.op-darkViolet{background-color:rgba(119,0,179,.5)!important}.op-darkViolet-hi{background-color:rgba(119,0,179,.2)!important}.op-darkViolet-low{background-color:rgba(119,0,179,.8)!important}.op-darkPink{background-color:rgba(186,37,136,.5)!important}.op-darkPink-hi{background-color:rgba(186,37,136,.2)!important}.op-darkPink-low{background-color:rgba(186,37,136,.8)!important}.op-darkMagenta{background-color:rgba(140,0,74,.5)!important}.op-darkMagenta-hi{background-color:rgba(140,0,74,.2)!important}.op-darkMagenta-low{background-color:rgba(140,0,74,.8)!important}.op-darkCrimson{background-color:rgba(86,0,20,.5)!important}.op-darkCrimson-hi{background-color:rgba(86,0,20,.2)!important}.op-darkCrimson-low{background-color:rgba(86,0,20,.8)!important}.op-darkRed{background-color:rgba(143,37,31,.5)!important}.op-darkRed-hi{background-color:rgba(143,37,31,.2)!important}.op-darkRed-low{background-color:rgba(143,37,31,.8)!important}.op-darkOrange{background-color:rgba(174,72,0,.5)!important}.op-darkOrange-hi{background-color:rgba(174,72,0,.2)!important}.op-darkOrange-low{background-color:rgba(174,72,0,.8)!important}.op-darkAmber{background-color:rgba(167,113,7,.5)!important}.op-darkAmber-hi{background-color:rgba(167,113,7,.2)!important}.op-darkAmber-low{background-color:rgba(167,113,7,.8)!important}.op-darkYellow{background-color:rgba(179,168,0,.5)!important}.op-darkYellow-hi{background-color:rgba(179,168,0,.2)!important}.op-darkYellow-low{background-color:rgba(179,168,0,.8)!important}.op-darkBrown{background-color:rgba(73,50,25,.5)!important}.op-darkBrown-hi{background-color:rgba(73,50,25,.2)!important}.op-darkBrown-low{background-color:rgba(73,50,25,.8)!important}.op-darkOlive{background-color:rgba(74,91,67,.5)!important}.op-darkOlive-hi{background-color:rgba(74,91,67,.2)!important}.op-darkOlive-low{background-color:rgba(74,91,67,.8)!important}.op-darkSteel{background-color:rgba(67,80,91,.5)!important}.op-darkSteel-hi{background-color:rgba(67,80,91,.2)!important}.op-darkSteel-low{background-color:rgba(67,80,91,.8)!important}.op-darkMauve{background-color:rgba(79,65,93,.5)!important}.op-darkMauve-hi{background-color:rgba(79,65,93,.2)!important}.op-darkMauve-low{background-color:rgba(79,65,93,.8)!important}.op-darkTaupe{background-color:rgba(87,78,50,.5)!important}.op-darkTaupe-hi{background-color:rgba(87,78,50,.2)!important}.op-darkTaupe-low{background-color:rgba(87,78,50,.8)!important}.op-darkGray{background-color:hsla(0,0%,60%,.5)!important}.op-darkGray-hi{background-color:hsla(0,0%,60%,.2)!important}.op-darkGray-low{background-color:hsla(0,0%,60%,.8)!important}.op-darkGrayBlue{background-color:rgba(65,84,94,.5)!important}.op-darkGrayBlue-hi{background-color:rgba(65,84,94,.2)!important}.op-darkGrayBlue-low{background-color:rgba(65,84,94,.8)!important}");styleInject(".ol-black,.ol-black-active:active,.ol-black-focus:focus,.ol-black-hover:hover{outline-color:#000!important}.ol-white,.ol-white-active:active,.ol-white-focus:focus,.ol-white-hover:hover{outline-color:#fff!important}.ol-dark,.ol-dark-active:active,.ol-dark-focus:focus,.ol-dark-hover:hover{outline-color:#1d1d1d!important}.ol-light,.ol-light-active:active,.ol-light-focus:focus,.ol-light-hover:hover{outline-color:#f8f8f8!important}.ol-grayBlue,.ol-grayBlue-active:active,.ol-grayBlue-focus:focus,.ol-grayBlue-hover:hover{outline-color:#607d8b!important}.ol-grayWhite,.ol-grayWhite-active:active,.ol-grayWhite-focus:focus,.ol-grayWhite-hover:hover{outline-color:#f5f5f5!important}.ol-grayMouse,.ol-grayMouse-active:active,.ol-grayMouse-focus:focus,.ol-grayMouse-hover:hover{outline-color:#455a64!important}.ol-brandColor1,.ol-brandColor1-active:active,.ol-brandColor1-focus:focus,.ol-brandColor1-hover:hover{outline-color:#2ac4f4!important}.ol-brandColor2,.ol-brandColor2-active:active,.ol-brandColor2-focus:focus,.ol-brandColor2-hover:hover{outline-color:#004d6f!important}.ol-lime,.ol-lime-active:active,.ol-lime-focus:focus,.ol-lime-hover:hover{outline-color:#a4c400!important}.ol-green,.ol-green-active:active,.ol-green-focus:focus,.ol-green-hover:hover{outline-color:#60a917!important}.ol-emerald,.ol-emerald-active:active,.ol-emerald-focus:focus,.ol-emerald-hover:hover{outline-color:#008a00!important}.ol-blue,.ol-blue-active:active,.ol-blue-focus:focus,.ol-blue-hover:hover{outline-color:#00aff0!important}.ol-teal,.ol-teal-active:active,.ol-teal-focus:focus,.ol-teal-hover:hover{outline-color:#00aba9!important}.ol-cyan,.ol-cyan-active:active,.ol-cyan-focus:focus,.ol-cyan-hover:hover{outline-color:#1fb1f8!important}.ol-cobalt,.ol-cobalt-active:active,.ol-cobalt-focus:focus,.ol-cobalt-hover:hover{outline-color:#0050ef!important}.ol-indigo,.ol-indigo-active:active,.ol-indigo-focus:focus,.ol-indigo-hover:hover{outline-color:#6a00ff!important}.ol-violet,.ol-violet-active:active,.ol-violet-focus:focus,.ol-violet-hover:hover{outline-color:#a0f!important}.ol-pink,.ol-pink-active:active,.ol-pink-focus:focus,.ol-pink-hover:hover{outline-color:#dc4fad!important}.ol-magenta,.ol-magenta-active:active,.ol-magenta-focus:focus,.ol-magenta-hover:hover{outline-color:#d80073!important}.ol-crimson,.ol-crimson-active:active,.ol-crimson-focus:focus,.ol-crimson-hover:hover{outline-color:#a20025!important}.ol-red,.ol-red-active:active,.ol-red-focus:focus,.ol-red-hover:hover{outline-color:#ce352c!important}.ol-orange,.ol-orange-active:active,.ol-orange-focus:focus,.ol-orange-hover:hover{outline-color:#fa6800!important}.ol-amber,.ol-amber-active:active,.ol-amber-focus:focus,.ol-amber-hover:hover{outline-color:#f0a30a!important}.ol-yellow,.ol-yellow-active:active,.ol-yellow-focus:focus,.ol-yellow-hover:hover{outline-color:#fff000!important}.ol-brown,.ol-brown-active:active,.ol-brown-focus:focus,.ol-brown-hover:hover{outline-color:#825a2c!important}.ol-olive,.ol-olive-active:active,.ol-olive-focus:focus,.ol-olive-hover:hover{outline-color:#6d8764!important}.ol-steel,.ol-steel-active:active,.ol-steel-focus:focus,.ol-steel-hover:hover{outline-color:#647687!important}.ol-mauve,.ol-mauve-active:active,.ol-mauve-focus:focus,.ol-mauve-hover:hover{outline-color:#76608a!important}.ol-taupe,.ol-taupe-active:active,.ol-taupe-focus:focus,.ol-taupe-hover:hover{outline-color:#87794e!important}.ol-gray,.ol-gray-active:active,.ol-gray-focus:focus,.ol-gray-hover:hover{outline-color:#bebebe!important}.ol-lightLime,.ol-lightLime-active:active,.ol-lightLime-focus:focus,.ol-lightLime-hover:hover{outline-color:#d8ff12!important}.ol-lightGreen,.ol-lightGreen-active:active,.ol-lightGreen-focus:focus,.ol-lightGreen-hover:hover{outline-color:#86e22a!important}.ol-lightEmerald,.ol-lightEmerald-active:active,.ol-lightEmerald-focus:focus,.ol-lightEmerald-hover:hover{outline-color:#00d600!important}.ol-lightBlue,.ol-lightBlue-active:active,.ol-lightBlue-focus:focus,.ol-lightBlue-hover:hover{outline-color:#3ecbff!important}.ol-lightTeal,.ol-lightTeal-active:active,.ol-lightTeal-focus:focus,.ol-lightTeal-hover:hover{outline-color:#00f7f5!important}.ol-lightCyan,.ol-lightCyan-active:active,.ol-lightCyan-focus:focus,.ol-lightCyan-hover:hover{outline-color:#69cbfa!important}.ol-lightCobalt,.ol-lightCobalt-active:active,.ol-lightCobalt-focus:focus,.ol-lightCobalt-hover:hover{outline-color:#3d7eff!important}.ol-lightIndigo,.ol-lightIndigo-active:active,.ol-lightIndigo-focus:focus,.ol-lightIndigo-hover:hover{outline-color:#974dff!important}.ol-lightViolet,.ol-lightViolet-active:active,.ol-lightViolet-focus:focus,.ol-lightViolet-hover:hover{outline-color:#c44dff!important}.ol-lightPink,.ol-lightPink-active:active,.ol-lightPink-focus:focus,.ol-lightPink-hover:hover{outline-color:#e98fcb!important}.ol-lightMagenta,.ol-lightMagenta-active:active,.ol-lightMagenta-focus:focus,.ol-lightMagenta-hover:hover{outline-color:#ff2599!important}.ol-lightCrimson,.ol-lightCrimson-active:active,.ol-lightCrimson-focus:focus,.ol-lightCrimson-hover:hover{outline-color:#ef0036!important}.ol-lightRed,.ol-lightRed-active:active,.ol-lightRed-focus:focus,.ol-lightRed-hover:hover{outline-color:#df6e68!important}.ol-lightOrange,.ol-lightOrange-active:active,.ol-lightOrange-focus:focus,.ol-lightOrange-hover:hover{outline-color:#ff9447!important}.ol-lightAmber,.ol-lightAmber-active:active,.ol-lightAmber-focus:focus,.ol-lightAmber-hover:hover{outline-color:#f8bf4f!important}.ol-lightYellow,.ol-lightYellow-active:active,.ol-lightYellow-focus:focus,.ol-lightYellow-hover:hover{outline-color:#fff44d!important}.ol-lightBrown,.ol-lightBrown-active:active,.ol-lightBrown-focus:focus,.ol-lightBrown-hover:hover{outline-color:#bb823f!important}.ol-lightOlive,.ol-lightOlive-active:active,.ol-lightOlive-focus:focus,.ol-lightOlive-hover:hover{outline-color:#95ab8d!important}.ol-lightSteel,.ol-lightSteel-active:active,.ol-lightSteel-focus:focus,.ol-lightSteel-hover:hover{outline-color:#8d9cab!important}.ol-lightMauve,.ol-lightMauve-active:active,.ol-lightMauve-focus:focus,.ol-lightMauve-hover:hover{outline-color:#9c89ad!important}.ol-lightTaupe,.ol-lightTaupe-active:active,.ol-lightTaupe-focus:focus,.ol-lightTaupe-hover:hover{outline-color:#aea073!important}.ol-lightGray,.ol-lightGray-active:active,.ol-lightGray-focus:focus,.ol-lightGray-hover:hover{outline-color:#e4e4e4!important}.ol-lightGrayBlue,.ol-lightGrayBlue-active:active,.ol-lightGrayBlue-focus:focus,.ol-lightGrayBlue-hover:hover{outline-color:#8aa2ae!important}.ol-darkLime,.ol-darkLime-active:active,.ol-darkLime-focus:focus,.ol-darkLime-hover:hover{outline-color:#647800!important}.ol-darkGreen,.ol-darkGreen-active:active,.ol-darkGreen-focus:focus,.ol-darkGreen-hover:hover{outline-color:#3a660e!important}.ol-darkEmerald,.ol-darkEmerald-active:active,.ol-darkEmerald-focus:focus,.ol-darkEmerald-hover:hover{outline-color:#003d00!important}.ol-darkBlue,.ol-darkBlue-active:active,.ol-darkBlue-focus:focus,.ol-darkBlue-hover:hover{outline-color:#0077a3!important}.ol-darkTeal,.ol-darkTeal-active:active,.ol-darkTeal-focus:focus,.ol-darkTeal-hover:hover{outline-color:#005e5d!important}.ol-darkCyan,.ol-darkCyan-active:active,.ol-darkCyan-focus:focus,.ol-darkCyan-hover:hover{outline-color:#0686c4!important}.ol-darkCobalt,.ol-darkCobalt-active:active,.ol-darkCobalt-focus:focus,.ol-darkCobalt-hover:hover{outline-color:#0036a3!important}.ol-darkIndigo,.ol-darkIndigo-active:active,.ol-darkIndigo-focus:focus,.ol-darkIndigo-hover:hover{outline-color:#4a00b3!important}.ol-darkViolet,.ol-darkViolet-active:active,.ol-darkViolet-focus:focus,.ol-darkViolet-hover:hover{outline-color:#7700b3!important}.ol-darkPink,.ol-darkPink-active:active,.ol-darkPink-focus:focus,.ol-darkPink-hover:hover{outline-color:#ba2588!important}.ol-darkMagenta,.ol-darkMagenta-active:active,.ol-darkMagenta-focus:focus,.ol-darkMagenta-hover:hover{outline-color:#8c004a!important}.ol-darkCrimson,.ol-darkCrimson-active:active,.ol-darkCrimson-focus:focus,.ol-darkCrimson-hover:hover{outline-color:#560014!important}.ol-darkRed,.ol-darkRed-active:active,.ol-darkRed-focus:focus,.ol-darkRed-hover:hover{outline-color:#8f251f!important}.ol-darkOrange,.ol-darkOrange-active:active,.ol-darkOrange-focus:focus,.ol-darkOrange-hover:hover{outline-color:#ae4800!important}.ol-darkAmber,.ol-darkAmber-active:active,.ol-darkAmber-focus:focus,.ol-darkAmber-hover:hover{outline-color:#a77107!important}.ol-darkYellow,.ol-darkYellow-active:active,.ol-darkYellow-focus:focus,.ol-darkYellow-hover:hover{outline-color:#b3a800!important}.ol-darkBrown,.ol-darkBrown-active:active,.ol-darkBrown-focus:focus,.ol-darkBrown-hover:hover{outline-color:#493219!important}.ol-darkOlive,.ol-darkOlive-active:active,.ol-darkOlive-focus:focus,.ol-darkOlive-hover:hover{outline-color:#4a5b43!important}.ol-darkSteel,.ol-darkSteel-active:active,.ol-darkSteel-focus:focus,.ol-darkSteel-hover:hover{outline-color:#43505b!important}.ol-darkMauve,.ol-darkMauve-active:active,.ol-darkMauve-focus:focus,.ol-darkMauve-hover:hover{outline-color:#4f415d!important}.ol-darkTaupe,.ol-darkTaupe-active:active,.ol-darkTaupe-focus:focus,.ol-darkTaupe-hover:hover{outline-color:#574e32!important}.ol-darkGray,.ol-darkGray-active:active,.ol-darkGray-focus:focus,.ol-darkGray-hover:hover{outline-color:#989898!important}.ol-darkGrayBlue,.ol-darkGrayBlue-active:active,.ol-darkGrayBlue-focus:focus,.ol-darkGrayBlue-hover:hover{outline-color:#41545e!important}");styleInject(".before-bg-black:before{background:#000!important}.before-fg-black:before{color:#000!important}.after-bg-black:after{background:#000!important}.after-fg-black:after{color:#000!important}.after-bd-black:after{border-color:#000!important}.after-ol-black:after{outline-color:#000!important}.before-bg-white:before{background:#fff!important}.before-fg-white:before{color:#fff!important}.after-bg-white:after{background:#fff!important}.after-fg-white:after{color:#fff!important}.after-bd-white:after{border-color:#fff!important}.after-ol-white:after{outline-color:#fff!important}.before-bg-dark:before{background:#1d1d1d!important}.before-fg-dark:before{color:#1d1d1d!important}.after-bg-dark:after{background:#1d1d1d!important}.after-fg-dark:after{color:#1d1d1d!important}.after-bd-dark:after{border-color:#1d1d1d!important}.after-ol-dark:after{outline-color:#1d1d1d!important}.before-bg-light:before{background:#f8f8f8!important}.before-fg-light:before{color:#f8f8f8!important}.after-bg-light:after{background:#f8f8f8!important}.after-fg-light:after{color:#f8f8f8!important}.after-bd-light:after{border-color:#f8f8f8!important}.after-ol-light:after{outline-color:#f8f8f8!important}.before-bg-grayBlue:before{background:#607d8b!important}.before-fg-grayBlue:before{color:#607d8b!important}.after-bg-grayBlue:after{background:#607d8b!important}.after-fg-grayBlue:after{color:#607d8b!important}.after-bd-grayBlue:after{border-color:#607d8b!important}.after-ol-grayBlue:after{outline-color:#607d8b!important}.before-bg-grayWhite:before{background:#f5f5f5!important}.before-fg-grayWhite:before{color:#f5f5f5!important}.after-bg-grayWhite:after{background:#f5f5f5!important}.after-fg-grayWhite:after{color:#f5f5f5!important}.after-bd-grayWhite:after{border-color:#f5f5f5!important}.after-ol-grayWhite:after{outline-color:#f5f5f5!important}.before-bg-grayMouse:before{background:#455a64!important}.before-fg-grayMouse:before{color:#455a64!important}.after-bg-grayMouse:after{background:#455a64!important}.after-fg-grayMouse:after{color:#455a64!important}.after-bd-grayMouse:after{border-color:#455a64!important}.after-ol-grayMouse:after{outline-color:#455a64!important}.before-bg-brandColor1:before{background:#2ac4f4!important}.before-fg-brandColor1:before{color:#2ac4f4!important}.after-bg-brandColor1:after{background:#2ac4f4!important}.after-fg-brandColor1:after{color:#2ac4f4!important}.after-bd-brandColor1:after{border-color:#2ac4f4!important}.after-ol-brandColor1:after{outline-color:#2ac4f4!important}.before-bg-brandColor2:before{background:#004d6f!important}.before-fg-brandColor2:before{color:#004d6f!important}.after-bg-brandColor2:after{background:#004d6f!important}.after-fg-brandColor2:after{color:#004d6f!important}.after-bd-brandColor2:after{border-color:#004d6f!important}.after-ol-brandColor2:after{outline-color:#004d6f!important}.before-bg-lime:before{background:#a4c400!important}.before-fg-lime:before{color:#a4c400!important}.after-bg-lime:after{background:#a4c400!important}.after-fg-lime:after{color:#a4c400!important}.after-bd-lime:after{border-color:#a4c400!important}.after-ol-lime:after{outline-color:#a4c400!important}.before-bg-green:before{background:#60a917!important}.before-fg-green:before{color:#60a917!important}.after-bg-green:after{background:#60a917!important}.after-fg-green:after{color:#60a917!important}.after-bd-green:after{border-color:#60a917!important}.after-ol-green:after{outline-color:#60a917!important}.before-bg-emerald:before{background:#008a00!important}.before-fg-emerald:before{color:#008a00!important}.after-bg-emerald:after{background:#008a00!important}.after-fg-emerald:after{color:#008a00!important}.after-bd-emerald:after{border-color:#008a00!important}.after-ol-emerald:after{outline-color:#008a00!important}.before-bg-blue:before{background:#00aff0!important}.before-fg-blue:before{color:#00aff0!important}.after-bg-blue:after{background:#00aff0!important}.after-fg-blue:after{color:#00aff0!important}.after-bd-blue:after{border-color:#00aff0!important}.after-ol-blue:after{outline-color:#00aff0!important}.before-bg-teal:before{background:#00aba9!important}.before-fg-teal:before{color:#00aba9!important}.after-bg-teal:after{background:#00aba9!important}.after-fg-teal:after{color:#00aba9!important}.after-bd-teal:after{border-color:#00aba9!important}.after-ol-teal:after{outline-color:#00aba9!important}.before-bg-cyan:before{background:#1fb1f8!important}.before-fg-cyan:before{color:#1fb1f8!important}.after-bg-cyan:after{background:#1fb1f8!important}.after-fg-cyan:after{color:#1fb1f8!important}.after-bd-cyan:after{border-color:#1fb1f8!important}.after-ol-cyan:after{outline-color:#1fb1f8!important}.before-bg-cobalt:before{background:#0050ef!important}.before-fg-cobalt:before{color:#0050ef!important}.after-bg-cobalt:after{background:#0050ef!important}.after-fg-cobalt:after{color:#0050ef!important}.after-bd-cobalt:after{border-color:#0050ef!important}.after-ol-cobalt:after{outline-color:#0050ef!important}.before-bg-indigo:before{background:#6a00ff!important}.before-fg-indigo:before{color:#6a00ff!important}.after-bg-indigo:after{background:#6a00ff!important}.after-fg-indigo:after{color:#6a00ff!important}.after-bd-indigo:after{border-color:#6a00ff!important}.after-ol-indigo:after{outline-color:#6a00ff!important}.before-bg-violet:before{background:#a0f!important}.before-fg-violet:before{color:#a0f!important}.after-bg-violet:after{background:#a0f!important}.after-fg-violet:after{color:#a0f!important}.after-bd-violet:after{border-color:#a0f!important}.after-ol-violet:after{outline-color:#a0f!important}.before-bg-pink:before{background:#dc4fad!important}.before-fg-pink:before{color:#dc4fad!important}.after-bg-pink:after{background:#dc4fad!important}.after-fg-pink:after{color:#dc4fad!important}.after-bd-pink:after{border-color:#dc4fad!important}.after-ol-pink:after{outline-color:#dc4fad!important}.before-bg-magenta:before{background:#d80073!important}.before-fg-magenta:before{color:#d80073!important}.after-bg-magenta:after{background:#d80073!important}.after-fg-magenta:after{color:#d80073!important}.after-bd-magenta:after{border-color:#d80073!important}.after-ol-magenta:after{outline-color:#d80073!important}.before-bg-crimson:before{background:#a20025!important}.before-fg-crimson:before{color:#a20025!important}.after-bg-crimson:after{background:#a20025!important}.after-fg-crimson:after{color:#a20025!important}.after-bd-crimson:after{border-color:#a20025!important}.after-ol-crimson:after{outline-color:#a20025!important}.before-bg-red:before{background:#ce352c!important}.before-fg-red:before{color:#ce352c!important}.after-bg-red:after{background:#ce352c!important}.after-fg-red:after{color:#ce352c!important}.after-bd-red:after{border-color:#ce352c!important}.after-ol-red:after{outline-color:#ce352c!important}.before-bg-orange:before{background:#fa6800!important}.before-fg-orange:before{color:#fa6800!important}.after-bg-orange:after{background:#fa6800!important}.after-fg-orange:after{color:#fa6800!important}.after-bd-orange:after{border-color:#fa6800!important}.after-ol-orange:after{outline-color:#fa6800!important}.before-bg-amber:before{background:#f0a30a!important}.before-fg-amber:before{color:#f0a30a!important}.after-bg-amber:after{background:#f0a30a!important}.after-fg-amber:after{color:#f0a30a!important}.after-bd-amber:after{border-color:#f0a30a!important}.after-ol-amber:after{outline-color:#f0a30a!important}.before-bg-yellow:before{background:#fff000!important}.before-fg-yellow:before{color:#fff000!important}.after-bg-yellow:after{background:#fff000!important}.after-fg-yellow:after{color:#fff000!important}.after-bd-yellow:after{border-color:#fff000!important}.after-ol-yellow:after{outline-color:#fff000!important}.before-bg-brown:before{background:#825a2c!important}.before-fg-brown:before{color:#825a2c!important}.after-bg-brown:after{background:#825a2c!important}.after-fg-brown:after{color:#825a2c!important}.after-bd-brown:after{border-color:#825a2c!important}.after-ol-brown:after{outline-color:#825a2c!important}.before-bg-olive:before{background:#6d8764!important}.before-fg-olive:before{color:#6d8764!important}.after-bg-olive:after{background:#6d8764!important}.after-fg-olive:after{color:#6d8764!important}.after-bd-olive:after{border-color:#6d8764!important}.after-ol-olive:after{outline-color:#6d8764!important}.before-bg-steel:before{background:#647687!important}.before-fg-steel:before{color:#647687!important}.after-bg-steel:after{background:#647687!important}.after-fg-steel:after{color:#647687!important}.after-bd-steel:after{border-color:#647687!important}.after-ol-steel:after{outline-color:#647687!important}.before-bg-mauve:before{background:#76608a!important}.before-fg-mauve:before{color:#76608a!important}.after-bg-mauve:after{background:#76608a!important}.after-fg-mauve:after{color:#76608a!important}.after-bd-mauve:after{border-color:#76608a!important}.after-ol-mauve:after{outline-color:#76608a!important}.before-bg-taupe:before{background:#87794e!important}.before-fg-taupe:before{color:#87794e!important}.after-bg-taupe:after{background:#87794e!important}.after-fg-taupe:after{color:#87794e!important}.after-bd-taupe:after{border-color:#87794e!important}.after-ol-taupe:after{outline-color:#87794e!important}.before-bg-gray:before{background:#bebebe!important}.before-fg-gray:before{color:#bebebe!important}.after-bg-gray:after{background:#bebebe!important}.after-fg-gray:after{color:#bebebe!important}.after-bd-gray:after{border-color:#bebebe!important}.after-ol-gray:after{outline-color:#bebebe!important}.before-bg-lightLime:before{background:#d8ff12!important}.before-fg-lightLime:before{color:#d8ff12!important}.after-bg-lightLime:after{background:#d8ff12!important}.after-fg-lightLime:after{color:#d8ff12!important}.after-bd-lightLime:after{border-color:#d8ff12!important}.after-ol-lightLime:after{outline-color:#d8ff12!important}.before-bg-lightGreen:before{background:#86e22a!important}.before-fg-lightGreen:before{color:#86e22a!important}.after-bg-lightGreen:after{background:#86e22a!important}.after-fg-lightGreen:after{color:#86e22a!important}.after-bd-lightGreen:after{border-color:#86e22a!important}.after-ol-lightGreen:after{outline-color:#86e22a!important}.before-bg-lightEmerald:before{background:#00d600!important}.before-fg-lightEmerald:before{color:#00d600!important}.after-bg-lightEmerald:after{background:#00d600!important}.after-fg-lightEmerald:after{color:#00d600!important}.after-bd-lightEmerald:after{border-color:#00d600!important}.after-ol-lightEmerald:after{outline-color:#00d600!important}.before-bg-lightBlue:before{background:#3ecbff!important}.before-fg-lightBlue:before{color:#3ecbff!important}.after-bg-lightBlue:after{background:#3ecbff!important}.after-fg-lightBlue:after{color:#3ecbff!important}.after-bd-lightBlue:after{border-color:#3ecbff!important}.after-ol-lightBlue:after{outline-color:#3ecbff!important}.before-bg-lightTeal:before{background:#00f7f5!important}.before-fg-lightTeal:before{color:#00f7f5!important}.after-bg-lightTeal:after{background:#00f7f5!important}.after-fg-lightTeal:after{color:#00f7f5!important}.after-bd-lightTeal:after{border-color:#00f7f5!important}.after-ol-lightTeal:after{outline-color:#00f7f5!important}.before-bg-lightCyan:before{background:#69cbfa!important}.before-fg-lightCyan:before{color:#69cbfa!important}.after-bg-lightCyan:after{background:#69cbfa!important}.after-fg-lightCyan:after{color:#69cbfa!important}.after-bd-lightCyan:after{border-color:#69cbfa!important}.after-ol-lightCyan:after{outline-color:#69cbfa!important}.before-bg-lightCobalt:before{background:#3d7eff!important}.before-fg-lightCobalt:before{color:#3d7eff!important}.after-bg-lightCobalt:after{background:#3d7eff!important}.after-fg-lightCobalt:after{color:#3d7eff!important}.after-bd-lightCobalt:after{border-color:#3d7eff!important}.after-ol-lightCobalt:after{outline-color:#3d7eff!important}.before-bg-lightIndigo:before{background:#974dff!important}.before-fg-lightIndigo:before{color:#974dff!important}.after-bg-lightIndigo:after{background:#974dff!important}.after-fg-lightIndigo:after{color:#974dff!important}.after-bd-lightIndigo:after{border-color:#974dff!important}.after-ol-lightIndigo:after{outline-color:#974dff!important}.before-bg-lightViolet:before{background:#c44dff!important}.before-fg-lightViolet:before{color:#c44dff!important}.after-bg-lightViolet:after{background:#c44dff!important}.after-fg-lightViolet:after{color:#c44dff!important}.after-bd-lightViolet:after{border-color:#c44dff!important}.after-ol-lightViolet:after{outline-color:#c44dff!important}.before-bg-lightPink:before{background:#e98fcb!important}.before-fg-lightPink:before{color:#e98fcb!important}.after-bg-lightPink:after{background:#e98fcb!important}.after-fg-lightPink:after{color:#e98fcb!important}.after-bd-lightPink:after{border-color:#e98fcb!important}.after-ol-lightPink:after{outline-color:#e98fcb!important}.before-bg-lightMagenta:before{background:#ff2599!important}.before-fg-lightMagenta:before{color:#ff2599!important}.after-bg-lightMagenta:after{background:#ff2599!important}.after-fg-lightMagenta:after{color:#ff2599!important}.after-bd-lightMagenta:after{border-color:#ff2599!important}.after-ol-lightMagenta:after{outline-color:#ff2599!important}.before-bg-lightCrimson:before{background:#ef0036!important}.before-fg-lightCrimson:before{color:#ef0036!important}.after-bg-lightCrimson:after{background:#ef0036!important}.after-fg-lightCrimson:after{color:#ef0036!important}.after-bd-lightCrimson:after{border-color:#ef0036!important}.after-ol-lightCrimson:after{outline-color:#ef0036!important}.before-bg-lightRed:before{background:#df6e68!important}.before-fg-lightRed:before{color:#df6e68!important}.after-bg-lightRed:after{background:#df6e68!important}.after-fg-lightRed:after{color:#df6e68!important}.after-bd-lightRed:after{border-color:#df6e68!important}.after-ol-lightRed:after{outline-color:#df6e68!important}.before-bg-lightOrange:before{background:#ff9447!important}.before-fg-lightOrange:before{color:#ff9447!important}.after-bg-lightOrange:after{background:#ff9447!important}.after-fg-lightOrange:after{color:#ff9447!important}.after-bd-lightOrange:after{border-color:#ff9447!important}.after-ol-lightOrange:after{outline-color:#ff9447!important}.before-bg-lightAmber:before{background:#f8bf4f!important}.before-fg-lightAmber:before{color:#f8bf4f!important}.after-bg-lightAmber:after{background:#f8bf4f!important}.after-fg-lightAmber:after{color:#f8bf4f!important}.after-bd-lightAmber:after{border-color:#f8bf4f!important}.after-ol-lightAmber:after{outline-color:#f8bf4f!important}.before-bg-lightYellow:before{background:#fff44d!important}.before-fg-lightYellow:before{color:#fff44d!important}.after-bg-lightYellow:after{background:#fff44d!important}.after-fg-lightYellow:after{color:#fff44d!important}.after-bd-lightYellow:after{border-color:#fff44d!important}.after-ol-lightYellow:after{outline-color:#fff44d!important}.before-bg-lightBrown:before{background:#bb823f!important}.before-fg-lightBrown:before{color:#bb823f!important}.after-bg-lightBrown:after{background:#bb823f!important}.after-fg-lightBrown:after{color:#bb823f!important}.after-bd-lightBrown:after{border-color:#bb823f!important}.after-ol-lightBrown:after{outline-color:#bb823f!important}.before-bg-lightOlive:before{background:#95ab8d!important}.before-fg-lightOlive:before{color:#95ab8d!important}.after-bg-lightOlive:after{background:#95ab8d!important}.after-fg-lightOlive:after{color:#95ab8d!important}.after-bd-lightOlive:after{border-color:#95ab8d!important}.after-ol-lightOlive:after{outline-color:#95ab8d!important}.before-bg-lightSteel:before{background:#8d9cab!important}.before-fg-lightSteel:before{color:#8d9cab!important}.after-bg-lightSteel:after{background:#8d9cab!important}.after-fg-lightSteel:after{color:#8d9cab!important}.after-bd-lightSteel:after{border-color:#8d9cab!important}.after-ol-lightSteel:after{outline-color:#8d9cab!important}.before-bg-lightMauve:before{background:#9c89ad!important}.before-fg-lightMauve:before{color:#9c89ad!important}.after-bg-lightMauve:after{background:#9c89ad!important}.after-fg-lightMauve:after{color:#9c89ad!important}.after-bd-lightMauve:after{border-color:#9c89ad!important}.after-ol-lightMauve:after{outline-color:#9c89ad!important}.before-bg-lightTaupe:before{background:#aea073!important}.before-fg-lightTaupe:before{color:#aea073!important}.after-bg-lightTaupe:after{background:#aea073!important}.after-fg-lightTaupe:after{color:#aea073!important}.after-bd-lightTaupe:after{border-color:#aea073!important}.after-ol-lightTaupe:after{outline-color:#aea073!important}.before-bg-lightGray:before{background:#e4e4e4!important}.before-fg-lightGray:before{color:#e4e4e4!important}.after-bg-lightGray:after{background:#e4e4e4!important}.after-fg-lightGray:after{color:#e4e4e4!important}.after-bd-lightGray:after{border-color:#e4e4e4!important}.after-ol-lightGray:after{outline-color:#e4e4e4!important}.before-bg-lightGrayBlue:before{background:#8aa2ae!important}.before-fg-lightGrayBlue:before{color:#8aa2ae!important}.after-bg-lightGrayBlue:after{background:#8aa2ae!important}.after-fg-lightGrayBlue:after{color:#8aa2ae!important}.after-bd-lightGrayBlue:after{border-color:#8aa2ae!important}.after-ol-lightGrayBlue:after{outline-color:#8aa2ae!important}.before-bg-darkLime:before{background:#647800!important}.before-fg-darkLime:before{color:#647800!important}.after-bg-darkLime:after{background:#647800!important}.after-fg-darkLime:after{color:#647800!important}.after-bd-darkLime:after{border-color:#647800!important}.after-ol-darkLime:after{outline-color:#647800!important}.before-bg-darkGreen:before{background:#3a660e!important}.before-fg-darkGreen:before{color:#3a660e!important}.after-bg-darkGreen:after{background:#3a660e!important}.after-fg-darkGreen:after{color:#3a660e!important}.after-bd-darkGreen:after{border-color:#3a660e!important}.after-ol-darkGreen:after{outline-color:#3a660e!important}.before-bg-darkEmerald:before{background:#003d00!important}.before-fg-darkEmerald:before{color:#003d00!important}.after-bg-darkEmerald:after{background:#003d00!important}.after-fg-darkEmerald:after{color:#003d00!important}.after-bd-darkEmerald:after{border-color:#003d00!important}.after-ol-darkEmerald:after{outline-color:#003d00!important}.before-bg-darkBlue:before{background:#0077a3!important}.before-fg-darkBlue:before{color:#0077a3!important}.after-bg-darkBlue:after{background:#0077a3!important}.after-fg-darkBlue:after{color:#0077a3!important}.after-bd-darkBlue:after{border-color:#0077a3!important}.after-ol-darkBlue:after{outline-color:#0077a3!important}.before-bg-darkTeal:before{background:#005e5d!important}.before-fg-darkTeal:before{color:#005e5d!important}.after-bg-darkTeal:after{background:#005e5d!important}.after-fg-darkTeal:after{color:#005e5d!important}.after-bd-darkTeal:after{border-color:#005e5d!important}.after-ol-darkTeal:after{outline-color:#005e5d!important}.before-bg-darkCyan:before{background:#0686c4!important}.before-fg-darkCyan:before{color:#0686c4!important}.after-bg-darkCyan:after{background:#0686c4!important}.after-fg-darkCyan:after{color:#0686c4!important}.after-bd-darkCyan:after{border-color:#0686c4!important}.after-ol-darkCyan:after{outline-color:#0686c4!important}.before-bg-darkCobalt:before{background:#0036a3!important}.before-fg-darkCobalt:before{color:#0036a3!important}.after-bg-darkCobalt:after{background:#0036a3!important}.after-fg-darkCobalt:after{color:#0036a3!important}.after-bd-darkCobalt:after{border-color:#0036a3!important}.after-ol-darkCobalt:after{outline-color:#0036a3!important}.before-bg-darkIndigo:before{background:#4a00b3!important}.before-fg-darkIndigo:before{color:#4a00b3!important}.after-bg-darkIndigo:after{background:#4a00b3!important}.after-fg-darkIndigo:after{color:#4a00b3!important}.after-bd-darkIndigo:after{border-color:#4a00b3!important}.after-ol-darkIndigo:after{outline-color:#4a00b3!important}.before-bg-darkViolet:before{background:#7700b3!important}.before-fg-darkViolet:before{color:#7700b3!important}.after-bg-darkViolet:after{background:#7700b3!important}.after-fg-darkViolet:after{color:#7700b3!important}.after-bd-darkViolet:after{border-color:#7700b3!important}.after-ol-darkViolet:after{outline-color:#7700b3!important}.before-bg-darkPink:before{background:#ba2588!important}.before-fg-darkPink:before{color:#ba2588!important}.after-bg-darkPink:after{background:#ba2588!important}.after-fg-darkPink:after{color:#ba2588!important}.after-bd-darkPink:after{border-color:#ba2588!important}.after-ol-darkPink:after{outline-color:#ba2588!important}.before-bg-darkMagenta:before{background:#8c004a!important}.before-fg-darkMagenta:before{color:#8c004a!important}.after-bg-darkMagenta:after{background:#8c004a!important}.after-fg-darkMagenta:after{color:#8c004a!important}.after-bd-darkMagenta:after{border-color:#8c004a!important}.after-ol-darkMagenta:after{outline-color:#8c004a!important}.before-bg-darkCrimson:before{background:#560014!important}.before-fg-darkCrimson:before{color:#560014!important}.after-bg-darkCrimson:after{background:#560014!important}.after-fg-darkCrimson:after{color:#560014!important}.after-bd-darkCrimson:after{border-color:#560014!important}.after-ol-darkCrimson:after{outline-color:#560014!important}.before-bg-darkRed:before{background:#8f251f!important}.before-fg-darkRed:before{color:#8f251f!important}.after-bg-darkRed:after{background:#8f251f!important}.after-fg-darkRed:after{color:#8f251f!important}.after-bd-darkRed:after{border-color:#8f251f!important}.after-ol-darkRed:after{outline-color:#8f251f!important}.before-bg-darkOrange:before{background:#ae4800!important}.before-fg-darkOrange:before{color:#ae4800!important}.after-bg-darkOrange:after{background:#ae4800!important}.after-fg-darkOrange:after{color:#ae4800!important}.after-bd-darkOrange:after{border-color:#ae4800!important}.after-ol-darkOrange:after{outline-color:#ae4800!important}.before-bg-darkAmber:before{background:#a77107!important}.before-fg-darkAmber:before{color:#a77107!important}.after-bg-darkAmber:after{background:#a77107!important}.after-fg-darkAmber:after{color:#a77107!important}.after-bd-darkAmber:after{border-color:#a77107!important}.after-ol-darkAmber:after{outline-color:#a77107!important}.before-bg-darkYellow:before{background:#b3a800!important}.before-fg-darkYellow:before{color:#b3a800!important}.after-bg-darkYellow:after{background:#b3a800!important}.after-fg-darkYellow:after{color:#b3a800!important}.after-bd-darkYellow:after{border-color:#b3a800!important}.after-ol-darkYellow:after{outline-color:#b3a800!important}.before-bg-darkBrown:before{background:#493219!important}.before-fg-darkBrown:before{color:#493219!important}.after-bg-darkBrown:after{background:#493219!important}.after-fg-darkBrown:after{color:#493219!important}.after-bd-darkBrown:after{border-color:#493219!important}.after-ol-darkBrown:after{outline-color:#493219!important}.before-bg-darkOlive:before{background:#4a5b43!important}.before-fg-darkOlive:before{color:#4a5b43!important}.after-bg-darkOlive:after{background:#4a5b43!important}.after-fg-darkOlive:after{color:#4a5b43!important}.after-bd-darkOlive:after{border-color:#4a5b43!important}.after-ol-darkOlive:after{outline-color:#4a5b43!important}.before-bg-darkSteel:before{background:#43505b!important}.before-fg-darkSteel:before{color:#43505b!important}.after-bg-darkSteel:after{background:#43505b!important}.after-fg-darkSteel:after{color:#43505b!important}.after-bd-darkSteel:after{border-color:#43505b!important}.after-ol-darkSteel:after{outline-color:#43505b!important}.before-bg-darkMauve:before{background:#4f415d!important}.before-fg-darkMauve:before{color:#4f415d!important}.after-bg-darkMauve:after{background:#4f415d!important}.after-fg-darkMauve:after{color:#4f415d!important}.after-bd-darkMauve:after{border-color:#4f415d!important}.after-ol-darkMauve:after{outline-color:#4f415d!important}.before-bg-darkTaupe:before{background:#574e32!important}.before-fg-darkTaupe:before{color:#574e32!important}.after-bg-darkTaupe:after{background:#574e32!important}.after-fg-darkTaupe:after{color:#574e32!important}.after-bd-darkTaupe:after{border-color:#574e32!important}.after-ol-darkTaupe:after{outline-color:#574e32!important}.before-bg-darkGray:before{background:#989898!important}.before-fg-darkGray:before{color:#989898!important}.after-bg-darkGray:after{background:#989898!important}.after-fg-darkGray:after{color:#989898!important}.after-bd-darkGray:after{border-color:#989898!important}.after-ol-darkGray:after{outline-color:#989898!important}.before-bg-darkGrayBlue:before{background:#41545e!important}.before-fg-darkGrayBlue:before{color:#41545e!important}.after-bg-darkGrayBlue:after{background:#41545e!important}.after-fg-darkGrayBlue:after{color:#41545e!important}.after-bd-darkGrayBlue:after{border-color:#41545e!important}.after-ol-darkGrayBlue:after{outline-color:#41545e!important}");styleInject(".ribbed-black{background:#000 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-white{background:#fff linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-dark{background:#1d1d1d linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-light{background:#f8f8f8 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-grayBlue{background:#607d8b linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-grayWhite{background:#f5f5f5 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-grayMouse{background:#455a64 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-brandColor1{background:#2ac4f4 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-brandColor2{background:#004d6f linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lime{background:#a4c400 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-green{background:#60a917 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-emerald{background:#008a00 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-blue{background:#00aff0 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-teal{background:#00aba9 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-cyan{background:#1fb1f8 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-cobalt{background:#0050ef linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-indigo{background:#6a00ff linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-violet{background:#a0f linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-pink{background:#dc4fad linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-magenta{background:#d80073 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-crimson{background:#a20025 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-red{background:#ce352c linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-orange{background:#fa6800 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-amber{background:#f0a30a linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-yellow{background:#fff000 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-brown{background:#825a2c linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-olive{background:#6d8764 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-steel{background:#647687 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-mauve{background:#76608a linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-taupe{background:#87794e linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-gray{background:#bebebe linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightLime{background:#d8ff12 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightGreen{background:#86e22a linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightEmerald{background:#00d600 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightBlue{background:#3ecbff linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightTeal{background:#00f7f5 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightCyan{background:#69cbfa linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightCobalt{background:#3d7eff linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightIndigo{background:#974dff linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightViolet{background:#c44dff linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightPink{background:#e98fcb linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightMagenta{background:#ff2599 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightCrimson{background:#ef0036 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightRed{background:#df6e68 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightOrange{background:#ff9447 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightAmber{background:#f8bf4f linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightYellow{background:#fff44d linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightBrown{background:#bb823f linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightOlive{background:#95ab8d linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightSteel{background:#8d9cab linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightMauve{background:#9c89ad linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightTaupe{background:#aea073 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightGray{background:#e4e4e4 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-lightGrayBlue{background:#8aa2ae linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkLime{background:#647800 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkGreen{background:#3a660e linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkEmerald{background:#003d00 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkBlue{background:#0077a3 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkTeal{background:#005e5d linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkCyan{background:#0686c4 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkCobalt{background:#0036a3 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkIndigo{background:#4a00b3 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkViolet{background:#7700b3 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkPink{background:#ba2588 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkMagenta{background:#8c004a linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkCrimson{background:#560014 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkRed{background:#8f251f linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkOrange{background:#ae4800 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkAmber{background:#a77107 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkYellow{background:#b3a800 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkBrown{background:#493219 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkOlive{background:#4a5b43 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkSteel{background:#43505b linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkMauve{background:#4f415d linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkTaupe{background:#574e32 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkGray{background:#989898 linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}.ribbed-darkGrayBlue{background:#41545e linear-gradient(-45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent)!important;background-size:20px 20px!important}");styleInject(".primary{background-color:#0366d6!important;color:#fff!important;outline-color:#75b5fd!important}.primary,.primary.outline{border-color:#0366d6!important}.primary.outline{background-color:initial!important;color:#0366d6!important}.primary.outline.dropdown-toggle:before{border-color:#0366d6!important}.primary.outline:hover{color:#fff!important}.primary.dropdown-toggle:before{border-color:#fff!important}.primary:hover{background-color:#024ea4!important;border-color:#023671!important;color:#fff!important}.primary:hover.dropdown-toggle:before{border-color:#fff!important}.primary.same-color:hover{background-color:#0366d6!important;border-color:#0366d6!important}.secondary{background-color:#607d8b!important;color:#fff!important;outline-color:#b7c6cd!important}.secondary,.secondary.outline{border-color:#607d8b!important}.secondary.outline{background-color:initial!important;color:#607d8b!important}.secondary.outline.dropdown-toggle:before{border-color:#607d8b!important}.secondary.outline:hover{color:#fff!important}.secondary.dropdown-toggle:before{border-color:#fff!important}.secondary:hover{background-color:#4b626d!important;border-color:#36474f!important;color:#fff!important}.secondary:hover.dropdown-toggle:before{border-color:#fff!important}.secondary.same-color:hover{background-color:#607d8b!important;border-color:#607d8b!important}.success{background-color:#60a917!important;color:#fff!important;outline-color:#adeb6e!important}.success,.success.outline{border-color:#60a917!important}.success.outline{background-color:initial!important;color:#60a917!important}.success.outline.dropdown-toggle:before{border-color:#60a917!important}.success.outline:hover{color:#fff!important}.success.dropdown-toggle:before{border-color:#fff!important}.success:hover{background-color:#477c11!important;border-color:#2d4f0b!important;color:#fff!important}.success:hover.dropdown-toggle:before{border-color:#fff!important}.success.same-color:hover{background-color:#60a917!important;border-color:#60a917!important}.alert{background-color:#ce352c!important;color:#fff!important;outline-color:#ecaba7!important}.alert,.alert.outline{border-color:#ce352c!important}.alert.outline{background-color:initial!important;color:#ce352c!important}.alert.outline.dropdown-toggle:before{border-color:#ce352c!important}.alert.outline:hover{color:#fff!important}.alert.dropdown-toggle:before{border-color:#fff!important}.alert:hover{background-color:#a42a23!important;border-color:#7a1f1a!important;color:#fff!important}.alert:hover.dropdown-toggle:before{border-color:#fff!important}.alert.same-color:hover{background-color:#ce352c!important;border-color:#ce352c!important}.warning{background-color:#ff9447!important;color:#fff!important;outline-color:#ffede1!important}.warning,.warning.outline{border-color:#ff9447!important}.warning.outline{background-color:initial!important;color:#ff9447!important}.warning.outline.dropdown-toggle:before{border-color:#ff9447!important}.warning.outline:hover{color:#fff!important}.warning.dropdown-toggle:before{border-color:#fff!important}.warning:hover{background-color:#ff7615!important;border-color:#e05d00!important;color:#fff!important}.warning:hover.dropdown-toggle:before{border-color:#fff!important}.warning.same-color:hover{background-color:#ff9447!important;border-color:#ff9447!important}.yellow{background-color:#ffe484!important;color:#fff!important;outline-color:#fff!important}.yellow,.yellow.outline{border-color:#ffe484!important}.yellow.outline{background-color:initial!important;color:#ffe484!important}.yellow.outline.dropdown-toggle:before{border-color:#ffe484!important}.yellow.outline:hover{color:#fff!important}.yellow.dropdown-toggle:before{border-color:#fff!important}.yellow:hover{background-color:#ffd951!important;border-color:#ffce1e!important;color:#fff!important}.yellow:hover.dropdown-toggle:before{border-color:#fff!important}.yellow.same-color:hover{background-color:#ffe484!important;border-color:#ffe484!important}.info{background-color:#69cbfa!important;color:#fff!important;outline-color:#fefeff!important}.info,.info.outline{border-color:#69cbfa!important}.info.outline{background-color:initial!important;color:#69cbfa!important}.info.outline.dropdown-toggle:before{border-color:#69cbfa!important}.info.outline:hover{color:#fff!important}.info.dropdown-toggle:before{border-color:#fff!important}.info:hover{background-color:#38baf9!important;border-color:#08a8f6!important;color:#fff!important}.info:hover.dropdown-toggle:before{border-color:#fff!important}.info.same-color:hover{background-color:#69cbfa!important;border-color:#69cbfa!important}.dark{background-color:#505050!important;color:#fff!important;outline-color:#9d9d9d!important}.dark,.dark.outline{border-color:#505050!important}.dark.outline{background-color:initial!important;color:#505050!important}.dark.outline.dropdown-toggle:before{border-color:#505050!important}.dark.outline:hover{color:#fff!important}.dark.dropdown-toggle:before{border-color:#fff!important}.dark:hover{background-color:#373737!important;border-color:#1d1d1d!important;color:#fff!important}.dark:hover.dropdown-toggle:before{border-color:#fff!important}.dark.same-color:hover{background-color:#505050!important;border-color:#505050!important}.light{background-color:#f8f8f8!important;color:#fff!important;outline-color:#fff!important}.light,.light.outline{border-color:#f8f8f8!important}.light.outline{background-color:initial!important;color:#f8f8f8!important}.light.outline.dropdown-toggle:before{border-color:#f8f8f8!important}.light.outline:hover{color:#fff!important}.light.dropdown-toggle:before{border-color:#fff!important}.light:hover{background-color:#dfdfdf!important;border-color:#c5c5c5!important;color:#fff!important}.light:hover.dropdown-toggle:before{border-color:#fff!important}.light.same-color:hover{background-color:#f8f8f8!important;border-color:#f8f8f8!important}.light,.light.outline:hover,.light:hover,.yellow,.yellow.outline:hover,.yellow:hover{color:#1d1d1d!important}.focusable.primary.focus,.focusable.primary:active,.focusable.primary:focus{-webkit-box-shadow:0 0 0 3px rgba(3,102,214,.45)!important;box-shadow:0 0 0 3px rgba(3,102,214,.45)!important}.focusable.secondary.focus,.focusable.secondary:active,.focusable.secondary:focus{-webkit-box-shadow:0 0 0 3px rgba(96,125,139,.45)!important;box-shadow:0 0 0 3px rgba(96,125,139,.45)!important}.focusable.success.focus,.focusable.success:active,.focusable.success:focus{-webkit-box-shadow:0 0 0 3px rgba(96,169,23,.45)!important;box-shadow:0 0 0 3px rgba(96,169,23,.45)!important}.focusable.alert.focus,.focusable.alert:active,.focusable.alert:focus{-webkit-box-shadow:0 0 0 3px rgba(206,53,44,.45)!important;box-shadow:0 0 0 3px rgba(206,53,44,.45)!important}.focusable.warning.focus,.focusable.warning:active,.focusable.warning:focus{-webkit-box-shadow:0 0 0 3px rgba(255,148,71,.45)!important;box-shadow:0 0 0 3px rgba(255,148,71,.45)!important}.focusable.yellow.focus,.focusable.yellow:active,.focusable.yellow:focus{-webkit-box-shadow:0 0 0 3px rgba(255,228,132,.45)!important;box-shadow:0 0 0 3px rgba(255,228,132,.45)!important}.focusable.info.focus,.focusable.info:active,.focusable.info:focus{-webkit-box-shadow:0 0 0 3px rgba(105,203,250,.45)!important;box-shadow:0 0 0 3px rgba(105,203,250,.45)!important}.focusable.dark.focus,.focusable.dark:active,.focusable.dark:focus{-webkit-box-shadow:0 0 0 3px rgba(80,80,80,.45)!important;box-shadow:0 0 0 3px rgba(80,80,80,.45)!important}.focusable.light.focus,.focusable.light:active,.focusable.light:focus{-webkit-box-shadow:0 0 0 3px hsla(0,0%,97%,.45)!important;box-shadow:0 0 0 3px hsla(0,0%,97%,.45)!important}.file.primary,.input.primary,.keypad.primary,.metro-input.primary,.select.primary,.spinner.primary,.tag-input.primary,.textarea.primary{border-color:#0366d6}.file.primary.focused,.file.primary:focus,.input.primary.focused,.input.primary:focus,.keypad.primary.focused,.keypad.primary:focus,.metro-input.primary.focused,.metro-input.primary:focus,.select.primary.focused,.select.primary:focus,.spinner.primary.focused,.spinner.primary:focus,.tag-input.primary.focused,.tag-input.primary:focus,.textarea.primary.focused,.textarea.primary:focus{-webkit-box-shadow:0 0 0 3px rgba(3,102,214,.45);box-shadow:0 0 0 3px rgba(3,102,214,.45)}.file.secondary,.input.secondary,.keypad.secondary,.metro-input.secondary,.select.secondary,.spinner.secondary,.tag-input.secondary,.textarea.secondary{border-color:#607d8b}.file.secondary.focused,.file.secondary:focus,.input.secondary.focused,.input.secondary:focus,.keypad.secondary.focused,.keypad.secondary:focus,.metro-input.secondary.focused,.metro-input.secondary:focus,.select.secondary.focused,.select.secondary:focus,.spinner.secondary.focused,.spinner.secondary:focus,.tag-input.secondary.focused,.tag-input.secondary:focus,.textarea.secondary.focused,.textarea.secondary:focus{-webkit-box-shadow:0 0 0 3px rgba(96,125,139,.45);box-shadow:0 0 0 3px rgba(96,125,139,.45)}.file.success,.input.success,.keypad.success,.metro-input.success,.select.success,.spinner.success,.tag-input.success,.textarea.success{border-color:#60a917}.file.success.focused,.file.success:focus,.input.success.focused,.input.success:focus,.keypad.success.focused,.keypad.success:focus,.metro-input.success.focused,.metro-input.success:focus,.select.success.focused,.select.success:focus,.spinner.success.focused,.spinner.success:focus,.tag-input.success.focused,.tag-input.success:focus,.textarea.success.focused,.textarea.success:focus{-webkit-box-shadow:0 0 0 3px rgba(96,169,23,.45);box-shadow:0 0 0 3px rgba(96,169,23,.45)}.file.alert,.input.alert,.keypad.alert,.metro-input.alert,.select.alert,.spinner.alert,.tag-input.alert,.textarea.alert{border-color:#ce352c}.file.alert.focused,.file.alert:focus,.input.alert.focused,.input.alert:focus,.keypad.alert.focused,.keypad.alert:focus,.metro-input.alert.focused,.metro-input.alert:focus,.select.alert.focused,.select.alert:focus,.spinner.alert.focused,.spinner.alert:focus,.tag-input.alert.focused,.tag-input.alert:focus,.textarea.alert.focused,.textarea.alert:focus{-webkit-box-shadow:0 0 0 3px rgba(206,53,44,.45);box-shadow:0 0 0 3px rgba(206,53,44,.45)}.file.warning,.input.warning,.keypad.warning,.metro-input.warning,.select.warning,.spinner.warning,.tag-input.warning,.textarea.warning{border-color:#ff9447}.file.warning.focused,.file.warning:focus,.input.warning.focused,.input.warning:focus,.keypad.warning.focused,.keypad.warning:focus,.metro-input.warning.focused,.metro-input.warning:focus,.select.warning.focused,.select.warning:focus,.spinner.warning.focused,.spinner.warning:focus,.tag-input.warning.focused,.tag-input.warning:focus,.textarea.warning.focused,.textarea.warning:focus{-webkit-box-shadow:0 0 0 3px rgba(255,148,71,.45);box-shadow:0 0 0 3px rgba(255,148,71,.45)}.file.yellow,.input.yellow,.keypad.yellow,.metro-input.yellow,.select.yellow,.spinner.yellow,.tag-input.yellow,.textarea.yellow{border-color:#ffe484}.file.yellow.focused,.file.yellow:focus,.input.yellow.focused,.input.yellow:focus,.keypad.yellow.focused,.keypad.yellow:focus,.metro-input.yellow.focused,.metro-input.yellow:focus,.select.yellow.focused,.select.yellow:focus,.spinner.yellow.focused,.spinner.yellow:focus,.tag-input.yellow.focused,.tag-input.yellow:focus,.textarea.yellow.focused,.textarea.yellow:focus{-webkit-box-shadow:0 0 0 3px rgba(255,228,132,.45);box-shadow:0 0 0 3px rgba(255,228,132,.45)}.file.info,.input.info,.keypad.info,.metro-input.info,.select.info,.spinner.info,.tag-input.info,.textarea.info{border-color:#69cbfa}.file.info.focused,.file.info:focus,.input.info.focused,.input.info:focus,.keypad.info.focused,.keypad.info:focus,.metro-input.info.focused,.metro-input.info:focus,.select.info.focused,.select.info:focus,.spinner.info.focused,.spinner.info:focus,.tag-input.info.focused,.tag-input.info:focus,.textarea.info.focused,.textarea.info:focus{-webkit-box-shadow:0 0 0 3px rgba(105,203,250,.45);box-shadow:0 0 0 3px rgba(105,203,250,.45)}.file.dark,.input.dark,.keypad.dark,.metro-input.dark,.select.dark,.spinner.dark,.tag-input.dark,.textarea.dark{border-color:#505050}.file.dark.focused,.file.dark:focus,.input.dark.focused,.input.dark:focus,.keypad.dark.focused,.keypad.dark:focus,.metro-input.dark.focused,.metro-input.dark:focus,.select.dark.focused,.select.dark:focus,.spinner.dark.focused,.spinner.dark:focus,.tag-input.dark.focused,.tag-input.dark:focus,.textarea.dark.focused,.textarea.dark:focus{-webkit-box-shadow:0 0 0 3px rgba(80,80,80,.45);box-shadow:0 0 0 3px rgba(80,80,80,.45)}.file.light,.input.light,.keypad.light,.metro-input.light,.select.light,.spinner.light,.tag-input.light,.textarea.light{border-color:#f8f8f8}.file.light.focused,.file.light:focus,.input.light.focused,.input.light:focus,.keypad.light.focused,.keypad.light:focus,.metro-input.light.focused,.metro-input.light:focus,.select.light.focused,.select.light:focus,.spinner.light.focused,.spinner.light:focus,.tag-input.light.focused,.tag-input.light:focus,.textarea.light.focused,.textarea.light:focus{-webkit-box-shadow:0 0 0 3px hsla(0,0%,97%,.45);box-shadow:0 0 0 3px hsla(0,0%,97%,.45)}"),function(t,e){var i=t.utils,o={dialogDeferred:0,closeButton:!1,leaveOverlayOnClose:!1,toTop:!1,toBottom:!1,locale:METRO_LOCALE,title:"",content:"",actions:{},actionsAlign:"right",defaultAction:!0,overlay:!0,overlayColor:"#000000",overlayAlpha:.5,overlayClickClose:!1,width:"480",height:"auto",shadow:!0,closeAction:!0,clsDialog:"",clsTitle:"",clsContent:"",clsAction:"",clsDefaultAction:"",clsOverlay:"",autoHide:0,removeOnClose:!1,show:!1,_runtime:!1,onShow:t.noop,onHide:t.noop,onOpen:t.noop,onClose:t.noop,onDialogCreate:t.noop};t.dialogSetup=function(t){o=e.extend({},o,t)},void 0!==typeof window.metroDialogSetup&&t.dialogSetup(window.metroDialogSetup),t.Component("dialog",{_counter:0,init:function(t,e){return this._super(e,t,o,{interval:null,overlay:null,id:i.elementId("dialog")}),this},_create:function(){var e=this.options;this.locale=void 0!==t.locales[e.locale]?t.locales[e.locale]:t.locales["en-US"],this._build()},_build:function(){var o,r=this,a=this.element,n=this.options,l=e("body");if(a.addClass("dialog"),!0===n.shadow&&a.addClass("shadow-on"),""!==n.title&&this.setTitle(n.title),""!==n.content&&this.setContent(n.content),!0===n.defaultAction||!1!==n.actions&&"object"==typeof n.actions&&i.objectLength(n.actions)>0){var s,p=a.find(".dialog-actions");0===p.length&&(p=e("
").addClass("dialog-actions").addClass("text-"+n.actionsAlign).appendTo(a)),!0===n.defaultAction&&0===i.objectLength(n.actions)&&0===a.find(".dialog-actions > *").length&&(s=e("").appendTo(r),l[a.view[t]["index-view"]]=r})),o=0;o").addClass("table-inspector")).attr("for",this.element.attr("id")),e("
"+(n.inspectorTitle||this.locale.table.inspector)+"
").appendTo(t),i=e("
").addClass("table-wrap").appendTo(t),o=e("").addClass("table subcompact"),r=e("").appendTo(o),o.appendTo(i),this._createInspectorItems(r),a=e("
").appendTo(t),e("
"),a.prepend(l)),l.clear().addClass(n.clsHead),0===this.heads.length)return l;for(t=e("").addClass(n.clsHeadRow).appendTo(l),e.each(this.service,(function(){var o=this,r=[],a=e("").appendTo(r)),n.clear().addClass(a.clsFooter),0!==this.foots.length&&(t=e("").addClass(a.clsHeadRow).appendTo(n),e.each(this.foots,(function(){var r=this;o=e("").addClass(h.clsBodyRow)).data("original",p),d=r%2==0,l=e("").appendTo(x),w=e("").appendTo(x),B=[];if("function"==typeof h.tableToCSV){for(r=i.isValue(r)?r.toLowerCase():"all-filtered",a=i.isValue(a)?a:i.elementId("table")+"-export.csv",d=e(""),p=this.heads,s=0;s"),i.isValue(this.title)&&A.html(this.title),B[u.view[t]["index-view"]]=A)})),s=0;s"),p=c[l],s=0;s").html(this),B[u.view[t]["index-view"]]=A)})),s=0;s0&&l.off(t.events.inputchange)}return r.off(t.events.click,".pagination .page-link"),i.isValue(this.wrapperPagination)&&this.wrapperPagination.off(t.events.click,".pagination .page-link"),o.off(t.events.click,".js-table-crud-button"),this._removeInspectorEvents(),o}})}(Metro,m4q);styleInject(':root{--table-inspector-border-radius:10px;--table-border-color:#e8e8e8;--table-color:#191919;--table-background:transparent;--table-sortable-background:#d4e2ff;--table-sortable-color:#000;--table-selected-background:#d4e2ff;--table-selected-color:#000;--table-striped-background:#f8f8f8;--table-hover-background:#eaeaea;--table-hover-color:#191919;--table-inspector-background:#fff;--table-inspector-border-color:#e8e8e8;--table-inspector-color:#191919}.dark-side{--table-border-color:#4a4d51;--table-color:#dbdfe7;--table-background:transparent;--table-sortable-background:#26282e;--table-sortable-color:#5a87cb;--table-selected-background:#2e436e;--table-selected-color:#fff;--table-striped-background:#26282e;--table-hover-background:#323437;--table-hover-color:#fff;--table-inspector-background:#26282e;--table-inspector-border-color:#4a4d51;--table-inspector-color:#dbdfe7}.table-container{display:block;position:relative}.table{display:table}.thead{display:table-header-group}.tfoot{display:table-footer-group}.tbody{display:table-row-group}.tr{display:table-row}.td,.th{display:table-cell}.table{width:100%}.table .td,.table .th,.table td,.table th{padding:.625rem}.table.fixed-layout{table-layout:fixed}.table.fixed-layout .td,.table.fixed-layout .th,.table.fixed-layout td,.table.fixed-layout th{overflow:hidden;white-space:nowrap}.table .tfoot,.table .thead,.table tfoot,.table thead{border-bottom:4px solid var(--table-border-color)}.table .tfoot .td,.table .tfoot .th,.table .tfoot td,.table .tfoot th,.table .thead .td,.table .thead .th,.table .thead td,.table .thead th,.table tfoot .td,.table tfoot .th,.table tfoot td,.table tfoot th,.table thead .td,.table thead .th,.table thead td,.table thead th{border-color:transparent;color:var(--table-color);cursor:default;font-weight:700;line-height:1.2;text-align:left}.table .tfoot,.table tfoot{border-top:4px solid var(--table-border-color)}.table .tbody .td,.table .tbody td,.table tbody .td,.table tbody td{padding:.625rem;vertical-align:middle}.table .sortable-column,.table .sorting{cursor:pointer;padding-right:30px;position:relative}.table .sortable-column:after,.table .sorting:after{color:inherit;content:"\\21C5";font-size:.8em;font-weight:100;height:1rem;left:100%;line-height:1;margin-left:-1.25rem;margin-top:-.3rem;opacity:.7;position:absolute;top:50%;width:1rem}.table .sortable-column.sort-asc,.table .sortable-column.sort-desc,.table .sortable-column.sorting_asc,.table .sortable-column.sorting_desc,.table .sorting.sort-asc,.table .sorting.sort-desc,.table .sorting.sorting_asc,.table .sorting.sorting_desc{background-color:var(--table-sortable-background);color:var(--table-sortable-color)}.table .sortable-column.sort-asc:after,.table .sortable-column.sort-desc:after,.table .sortable-column.sorting_asc:after,.table .sortable-column.sorting_desc:after,.table .sorting.sort-asc:after,.table .sorting.sort-desc:after,.table .sorting.sorting_asc:after,.table .sorting.sorting_desc:after{font-size:1em;font-weight:700;margin-top:-.5rem;opacity:1}.table .sortable-column.sort-asc:after,.table .sortable-column.sorting_asc:after,.table .sorting.sort-asc:after,.table .sorting.sorting_asc:after{content:"\\2191"}.table .sortable-column.sort-desc:after,.table .sortable-column.sorting_desc:after,.table .sorting.sort-desc:after,.table .sorting.sorting_desc:after{content:"\\2193"}.table.sortable-markers-on-left .sortable-column,.table.sortable-markers-on-left .sorting{padding-left:30px;padding-right:10px}.table.sortable-markers-on-left .sortable-column:after,.table.sortable-markers-on-left .sortable-column:before,.table.sortable-markers-on-left .sorting:after,.table.sortable-markers-on-left .sorting:before{left:0;margin-left:.625rem}.table .td.selected,.table .tr.selected .td,.table .tr.selected td,.table td.selected,.table tr.selected .td,.table tr.selected td{background-color:var(--table-selected-background);color:var(--table-selected-color)}.table.striped .tbody .tr:nth-child(2n),.table.striped tbody tr:nth-child(2n){background:var(--table-striped-background)}.table.cell-hover .tbody .td:hover,.table.cell-hover .tbody td:hover,.table.cell-hover tbody .td:hover,.table.cell-hover tbody td:hover,.table.row-hover .tbody .tr:hover,.table.row-hover .tbody tr:hover,.table.row-hover tbody .tr:hover,.table.row-hover tbody tr:hover{background-color:var(--table-hover-background);color:var(--table-hover-color)}.table.cell-border .td,.table.cell-border .th,.table.cell-border td,.table.cell-border th,.table.table-border{border:1px solid var(--border-color)}.table.cell-border .thead .tr:first-child .td,.table.cell-border .thead .tr:first-child .th,.table.cell-border .thead .tr:first-child td,.table.cell-border .thead .tr:first-child th,.table.cell-border .thead tr:first-child .td,.table.cell-border .thead tr:first-child .th,.table.cell-border .thead tr:first-child td,.table.cell-border .thead tr:first-child th,.table.cell-border thead .tr:first-child .td,.table.cell-border thead .tr:first-child .th,.table.cell-border thead .tr:first-child td,.table.cell-border thead .tr:first-child th,.table.cell-border thead tr:first-child .td,.table.cell-border thead tr:first-child .th,.table.cell-border thead tr:first-child td,.table.cell-border thead tr:first-child th{border-top:none}.table.cell-border .thead .tr:first-child .td:first-child,.table.cell-border .thead .tr:first-child .th:first-child,.table.cell-border .thead .tr:first-child td:first-child,.table.cell-border .thead .tr:first-child th:first-child,.table.cell-border .thead tr:first-child .td:first-child,.table.cell-border .thead tr:first-child .th:first-child,.table.cell-border .thead tr:first-child td:first-child,.table.cell-border .thead tr:first-child th:first-child,.table.cell-border thead .tr:first-child .td:first-child,.table.cell-border thead .tr:first-child .th:first-child,.table.cell-border thead .tr:first-child td:first-child,.table.cell-border thead .tr:first-child th:first-child,.table.cell-border thead tr:first-child .td:first-child,.table.cell-border thead tr:first-child .th:first-child,.table.cell-border thead tr:first-child td:first-child,.table.cell-border thead tr:first-child th:first-child{border-left:none}.table.cell-border .thead .tr:first-child .td:last-child,.table.cell-border .thead .tr:first-child .th:last-child,.table.cell-border .thead .tr:first-child td:last-child,.table.cell-border .thead .tr:first-child th:last-child,.table.cell-border .thead tr:first-child .td:last-child,.table.cell-border .thead tr:first-child .th:last-child,.table.cell-border .thead tr:first-child td:last-child,.table.cell-border .thead tr:first-child th:last-child,.table.cell-border thead .tr:first-child .td:last-child,.table.cell-border thead .tr:first-child .th:last-child,.table.cell-border thead .tr:first-child td:last-child,.table.cell-border thead .tr:first-child th:last-child,.table.cell-border thead tr:first-child .td:last-child,.table.cell-border thead tr:first-child .th:last-child,.table.cell-border thead tr:first-child td:last-child,.table.cell-border thead tr:first-child th:last-child{border-right:none}.table.cell-border .tbody .tr:first-child .td,.table.cell-border .tbody .tr:first-child td,.table.cell-border .tbody tr:first-child .td,.table.cell-border .tbody tr:first-child td,.table.cell-border tbody .tr:first-child .td,.table.cell-border tbody .tr:first-child td,.table.cell-border tbody tr:first-child .td,.table.cell-border tbody tr:first-child td{border-top:none}.table.cell-border .tbody .tr .td:first-child,.table.cell-border .tbody .tr td:first-child,.table.cell-border .tbody tr .td:first-child,.table.cell-border .tbody tr td:first-child,.table.cell-border tbody .tr .td:first-child,.table.cell-border tbody .tr td:first-child,.table.cell-border tbody tr .td:first-child,.table.cell-border tbody tr td:first-child{border-left:none}.table.cell-border .tbody .tr .td:last-child,.table.cell-border .tbody .tr td:last-child,.table.cell-border .tbody tr .td:last-child,.table.cell-border .tbody tr td:last-child,.table.cell-border tbody .tr .td:last-child,.table.cell-border tbody .tr td:last-child,.table.cell-border tbody tr .td:last-child,.table.cell-border tbody tr td:last-child{border-right:none}.table.cell-border .tbody .tr:last-child .td,.table.cell-border .tbody .tr:last-child td,.table.cell-border .tbody tr:last-child .td,.table.cell-border .tbody tr:last-child td,.table.cell-border tbody .tr:last-child .td,.table.cell-border tbody .tr:last-child td,.table.cell-border tbody tr:last-child .td,.table.cell-border tbody tr:last-child td{border-bottom:none}.table.row-border .tr+.tr,.table.row-border tr+tr{border-top:1px solid var(--table-border-color)}.table.subcompact .td,.table.subcompact .th,.table.subcompact td,.table.subcompact th{font-size:80%;padding:3px 8px}.table.compact .td,.table.compact .th,.table.compact td,.table.compact th{font-size:80%;padding:7px 8px}.table .check-cell,.table .rownum-cell{text-align:center;width:36px}.table .tbody .td.hidden,.table .tbody .th.hidden,.table .tbody td.hidden,.table .tbody th.hidden,.table .thead .td.hidden,.table .thead .th.hidden,.table .thead td.hidden,.table .thead th.hidden,.table tbody .td.hidden,.table tbody .th.hidden,.table tbody td.hidden,.table tbody th.hidden,.table thead .td.hidden,.table thead .th.hidden,.table thead td.hidden,.table thead th.hidden{display:none!important}.table .data-wrapper{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .checkbox,.table .radio,.table .switch{height:auto}.table-component{display:block;position:relative}.table-bottom{margin-left:0;margin-right:0}.table-info,.table-pagination,.table-skip{flex-basis:auto}.table-progress{display:none;height:64px;left:50%;position:absolute;top:200px;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:64px;z-index:2}.table-progress [class*=activity-]{margin:0 auto}.table-inspector{background-color:var(--table-inspector-background);border:1px double var(--table-inspector-border-color);border-radius:var(--table-inspector-border-radius);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.3);box-shadow:0 0 5px 0 rgba(0,0,0,.3);color:var(--table-inspector-color);display:none;left:0;max-height:calc(100vh - 40px);padding:10px;position:absolute;top:0;width:auto;z-index:500}.table-inspector .table-inspector-header{border-bottom:1px solid var(--table-border-color);display:block;font-size:24px;font-weight:100;margin-bottom:.5rem;overflow:hidden;padding:0 .5rem .5rem;position:relative;text-overflow:ellipsis;white-space:nowrap}.table-inspector .table-wrap{display:block;height:calc(100% - 110px);overflow-x:hidden;overflow-y:auto}.table-inspector .table-inspector-actions{border-top:1px solid var(--table-border-color);display:block;margin-top:.5rem;padding:.5rem .5rem 0;position:relative}.table-inspector .table,.table-inspector table{margin-bottom:0}.table-inspector .table .td,.table-inspector .table td,.table-inspector table .td,.table-inspector table td{vertical-align:middle}.table-inspector .table .tr.flash,.table-inspector .table tr.flash,.table-inspector table .tr.flash,.table-inspector table tr.flash{-webkit-animation:flash-bg 1s ease-out;animation:flash-bg 1s ease-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}.table-inspector .spinner{width:120px}.table-inspector .spinner input{font-size:14px}.table-form,.table-inspector.open{display:block}.table-form{border:1px solid var(--border-color);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.3);box-shadow:0 0 5px 0 rgba(0,0,0,.3);height:auto;left:50%;max-height:calc(100vh - 40px);max-width:calc(100vw - 40px);position:absolute;top:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);width:auto;z-index:500}@-webkit-keyframes flash-bg{0%{background-color:var(--table-background)}30%{background-color:var(--table-hover-background)}to{background-color:var(--table-background)}}@keyframes flash-bg{0%{background-color:var(--table-background)}30%{background-color:var(--table-hover-background)}to{background-color:var(--table-background)}}@media screen and (min-width:0){.table.normal-fs .td,.table.normal-fs .th,.table.normal-fs td,.table.normal-fs th{font-size:1em;padding:.625rem}.table.compact-fs .td,.table.compact-fs .th,.table.compact-fs td,.table.compact-fs th{font-size:80%;padding:7px 8px}.table.subcompact-fs .td,.table.subcompact-fs .th,.table.subcompact-fs td,.table.subcompact-fs th{font-size:80%;padding:3px 8px}}@media screen and (min-width:360px){.table.normal-xs .td,.table.normal-xs .th,.table.normal-xs td,.table.normal-xs th{font-size:1em;padding:.625rem}.table.compact-xs .td,.table.compact-xs .th,.table.compact-xs td,.table.compact-xs th{font-size:80%;padding:7px 8px}.table.subcompact-xs .td,.table.subcompact-xs .th,.table.subcompact-xs td,.table.subcompact-xs th{font-size:80%;padding:3px 8px}}@media screen and (min-width:576px){.table.normal-sm .td,.table.normal-sm .th,.table.normal-sm td,.table.normal-sm th{font-size:1em;padding:.625rem}.table.compact-sm .td,.table.compact-sm .th,.table.compact-sm td,.table.compact-sm th{font-size:80%;padding:7px 8px}.table.subcompact-sm .td,.table.subcompact-sm .th,.table.subcompact-sm td,.table.subcompact-sm th{font-size:80%;padding:3px 8px}}@media screen and (min-width:640px){.table.normal-ld .td,.table.normal-ld .th,.table.normal-ld td,.table.normal-ld th{font-size:1em;padding:.625rem}.table.compact-ld .td,.table.compact-ld .th,.table.compact-ld td,.table.compact-ld th{font-size:80%;padding:7px 8px}.table.subcompact-ld .td,.table.subcompact-ld .th,.table.subcompact-ld td,.table.subcompact-ld th{font-size:80%;padding:3px 8px}}@media screen and (min-width:768px){.table.normal-md .td,.table.normal-md .th,.table.normal-md td,.table.normal-md th{font-size:1em;padding:.625rem}.table.compact-md .td,.table.compact-md .th,.table.compact-md td,.table.compact-md th{font-size:80%;padding:7px 8px}.table.subcompact-md .td,.table.subcompact-md .th,.table.subcompact-md td,.table.subcompact-md th{font-size:80%;padding:3px 8px}}@media screen and (min-width:992px){.table.normal-lg .td,.table.normal-lg .th,.table.normal-lg td,.table.normal-lg th{font-size:1em;padding:.625rem}.table.compact-lg .td,.table.compact-lg .th,.table.compact-lg td,.table.compact-lg th{font-size:80%;padding:7px 8px}.table.subcompact-lg .td,.table.subcompact-lg .th,.table.subcompact-lg td,.table.subcompact-lg th{font-size:80%;padding:3px 8px}}@media screen and (min-width:1200px){.table.normal-xl .td,.table.normal-xl .th,.table.normal-xl td,.table.normal-xl th{font-size:1em;padding:.625rem}.table.compact-xl .td,.table.compact-xl .th,.table.compact-xl td,.table.compact-xl th{font-size:80%;padding:7px 8px}.table.subcompact-xl .td,.table.subcompact-xl .th,.table.subcompact-xl td,.table.subcompact-xl th{font-size:80%;padding:3px 8px}}@media screen and (min-width:1452px){.table.normal-xxl .td,.table.normal-xxl .th,.table.normal-xxl td,.table.normal-xxl th{font-size:1em;padding:.625rem}.table.compact-xxl .td,.table.compact-xxl .th,.table.compact-xxl td,.table.compact-xxl th{font-size:80%;padding:7px 8px}.table.subcompact-xxl .td,.table.subcompact-xxl .th,.table.subcompact-xxl td,.table.subcompact-xxl th{font-size:80%;padding:3px 8px}}@media screen and (min-width:2000px){.table.normal-xxxl .td,.table.normal-xxxl .th,.table.normal-xxxl td,.table.normal-xxxl th{font-size:1em;padding:.625rem}.table.compact-xxxl .td,.table.compact-xxxl .th,.table.compact-xxxl td,.table.compact-xxxl th{font-size:80%;padding:7px 8px}.table.subcompact-xxxl .td,.table.subcompact-xxxl .th,.table.subcompact-xxxl td,.table.subcompact-xxxl th{font-size:80%;padding:3px 8px}}.table-load-data-activity{left:0;position:absolute!important;top:0;z-index:500}.table-skip{-webkit-box-orient:horizontal;-webkit-box-direction:normal;display:-webkit-box;display:flex;flex-flow:row nowrap;position:relative}.table-skip input{width:220px}.table-skip-input{padding:0 .75rem}.table-component .table-rows-block,.table-component .table-search-block,.table-component .table-top{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-box-pack:justify;display:-webkit-box;display:flex;flex-flow:row wrap;justify-content:space-between;width:100%}.table-component .table-search-block{flex-basis:100%;flex-shrink:0}.table-component .table-rows-block{width:calc(100% - 46px)}.table-component .table-top>*{margin-bottom:4px}@media screen and (min-width:768px){.table-component .table-top{-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row nowrap}.table-component .table-top>*+*{margin-left:4px}.table-component .table-search-block{flex-shrink:1}.table-component .table-rows-block{width:360px}}.table-component .table-container{border:1px solid var(--border-color);margin:10px 0;overflow:hidden}.table-component .table-container.horizontal-scroll{overflow-x:auto}.table-component .table-container.horizontal-scroll .table{min-width:100%;width:auto}'),function(t,e){var i=t.utils,o={tabsDeferred:0,expand:!1,expandPoint:null,tabsPosition:"top",tabsType:"default",updateUri:!1,clsTabs:"",clsTabsList:"",clsTabsListItem:"",clsTabsListItemActive:"",onTab:t.noop,onTabOpen:t.noop,onTabClose:t.noop,onBeforeTab:t.noop_true,onTabsCreate:t.noop};t.tabsSetup=function(t){o=e.extend({},o,t)},void 0!==typeof window.metroTabsSetup&&t.tabsSetup(window.metroTabsSetup),t.Component("tabs",{init:function(t,e){return this._super(e,t,o,{_targets:[],id:i.elementId("tabs")}),this},_create:function(){var t=this.element;this.options;var i=t.find(".active").length>0?e(t.find(".active")[0]):void 0;this._createStructure(),this._createEvents(),this._open(i),this._fireEvent("tabs-create",{element:t})},_createStructure:function(){var t,o,r=this.element,a=this.options,n=r.parent(),l=n.hasClass("tabs"),s=l?n:e("
").addClass("tabs tabs-wrapper");if(s.addClass(a.tabsPosition.replace(["-","_","+"]," ")),r.addClass("tabs-list"),"default"!==a.tabsType&&r.addClass("tabs-"+a.tabsType),l||(s.insertBefore(r),r.appendTo(s)),r.data("expanded",!1),t=e("
").addClass("expand-title"),s.prepend(t),0===(o=s.find(".hamburger")).length){o=e("
");i.isValue(o.title)&&a.html(o.title),i.isValue(o.size)&&a.css({width:o.size}),i.isValue(o.cls)&&r.push(o.cls),r.push(n.clsHeadCell),a.addClass(r.join(" ")),t.append(a)})),r=this.heads,o=0;o");a.data("index",t),i.isValue(o.title)&&a.html(o.title),i.isValue(o.format)&&a.attr("data-format",o.format),i.isValue(o.formatMask)&&a.attr("data-format-mask",o.formatMask),i.isValue(o.name)&&a.attr("data-name",o.name),i.isValue(o.colspan)&&a.attr("colspan",o.colspan),i.isValue(o.size)&&a.attr("data-size",o.size),i.isValue(o.sortable)&&a.attr("data-sortable",o.sortable),i.isValue(o.sortDir)&&a.attr("data-sort-dir",o.sortDir),i.isValue(o.clsColumn)&&a.attr("data-cls-column",o.clsColumn),i.isValue(o.cls)&&a.attr("data-cls",o.cls),i.isValue(o.colspan)&&a.attr("colspan",o.colspan),i.isValue(o.show)&&a.attr("data-show",o.show),i.isValue(o.required)&&a.attr("data-required",o.required),i.isValue(o.field)&&a.attr("data-field",o.field),i.isValue(o.fieldType)&&a.attr("data-field-type",o.fieldType),i.isValue(o.validator)&&a.attr("data-validator",o.validator),i.isValue(o.template)&&a.attr("data-template",o.template),i.isValue(p[t].size)&&a.css({width:p[t].size}),!0===o.sortable&&(r.push("sortable-column"),i.isValue(o.sortDir)&&r.push("sort-"+o.sortDir)),i.isValue(o.cls)&&e.each(o.cls.toArray(),(function(){r.push(this)})),!1===i.bool(p[t].show)&&-1===r.indexOf("hidden")&&r.push("hidden"),r.push(n.clsHeadCell),i.bool(p[t].show)&&i.arrayDelete(r,"hidden"),a.addClass(r.join(" ")),s[p[t]["index-view"]]=a})),o=0;o").addClass(this.options.clsBody),0!==i.length?t.insertAfter(i):o.append(t)),t.clear()},_createTableFooter:function(){var t,o,r=this.element,a=this.options,n=r.find("tfoot");0===n.length&&(n=e("
").appendTo(t),void 0!==r.title&&o.html(r.title),void 0!==r.name&&o.addClass("foot-column-name-"+r.name),void 0!==r.cls&&o.addClass(r.cls),i.isValue(r.colspan)&&o.attr("colspan",r.colspan),o.appendTo(t)})))},_createTopBlock:function(){var o,r,a,n,l=this,s=this.element,p=this.options,c=e("
").addClass("table-top").addClass(p.clsTableTop).insertBefore(s.parent());return(o=i.isValue(this.wrapperSearch)?this.wrapperSearch:e("
").addClass("table-search-block").addClass(p.clsSearch).appendTo(c)).addClass(p.clsSearch),r=e("").attr("type","text").attr("placeholder",p.tableSearchPlaceholder).appendTo(o),t.makePlugin(r,"input",{prepend:p.tableSearchTitle||l.locale.table.search}),!0!==p.showSearch&&o.hide(),(a=i.isValue(this.wrapperRows)?this.wrapperRows:e("
").addClass("table-rows-block").appendTo(c)).addClass(p.clsRowsCount),n=e("").addClass("input table-skip-input").addClass(n.clsTableSkipInput).appendTo(r),e("
").html(r+1),void 0!==m.service[0].clsColumn&&l.addClass(m.service[0].clsColumn),l.appendTo(n),l=e(""),s="checkbox"===h.checkType?e(""):e(""),i.isValue(w)&&Array.isArray(w)&&w.indexOf(""+A[r][h.checkColIndex])>-1&&(s.prop("checked",!0),b.push(p)),s.addClass("table-service-check"),this._fireEvent("check-draw",{check:s}),s.appendTo(l),void 0!==m.service[1].clsColumn&&l.addClass(m.service[1].clsColumn),l.appendTo(n),a=0;a");i.isValue(m.heads[t].template)&&(o=m.heads[t].template.replace(/%VAL%/g,o)),r.html(o),r.addClass(h.clsBodyCell),i.isValue(m.heads[t].clsColumn)&&r.addClass(m.heads[t].clsColumn),!1===i.bool(B[t].show)&&r.addClass("hidden"),i.bool(B[t].show)&&r.removeClass("hidden"),r.data("original",this),c[B[t]["index-view"]]=r,m._fireEvent("draw-cell",{td:r,val:o,cellIndex:t,head:m.heads[t],items:p}),!0===h.cellWrapper&&(o=e("
").addClass("data-wrapper").addClass(h.clsCellWrapper).html(r.html()),r.html("").append(o))})),a=0;a").addClass(h.clsBodyRow).appendTo(u),(l=e("
").attr("colspan",a).addClass("text-center").html(e("").addClass(h.clsEmptyTableTitle).html(h.emptyTableTitle||m.locale.table.empty))).appendTo(n);this._info(f+1,x+1,A.length),this._paging(A.length),this.activity&&this.activity.hide(),this._fireEvent("draw"),void 0!==o&&i.exec(o,null,g[0])}else console.warn("Heads is not defined for table ID "+g.attr("id"))},_getItemContent:function(t){var e,o=this.options,r=t[this.sort.colIndex],a=this.heads[this.sort.colIndex].format,n=i.isNull(this.heads)||i.isNull(this.heads[this.sort.colIndex])||!i.isValue(this.heads[this.sort.colIndex].formatMask)?"%Y-%m-%d":this.heads[this.sort.colIndex].formatMask,l=this.heads&&this.heads[this.sort.colIndex]&&this.heads[this.sort.colIndex].thousandSeparator?this.heads[this.sort.colIndex].thousandSeparator:o.thousandSeparator,s=this.heads&&this.heads[this.sort.colIndex]&&this.heads[this.sort.colIndex].decimalSeparator?this.heads[this.sort.colIndex].decimalSeparator:o.decimalSeparator;if(e=(""+r).toLowerCase().replace(/[\n\r]+|[\s]{2,}/g," ").trim(),i.isValue(e)&&i.isValue(a))switch(-1!==["number","int","float","money"].indexOf(a)&&(e=i.parseNumber(e,l,s)),a){case"date":e=n?Datetime.from(e,n,o.locale):datetime(e);break;case"number":e=+e;break;case"int":e=parseInt(e);break;case"float":e=parseFloat(e);break;case"money":e=i.parseMoney(e);break;case"card":e=i.parseCard(e);break;case"phone":e=i.parsePhone(e)}return e},addItem:function(t,e){if(!Array.isArray(t))return console.warn("Item is not an array and can't be added"),this;this.items.push(t),!1!==e&&this.draw()},addItems:function(t,e){if(!Array.isArray(t))return console.warn("Items is not an array and can't be added"),this;t.forEach((function(t){Array.isArray(t)&&this.items.push(t,!1)})),this.draw(),!1!==e&&this.draw()},updateItem:function(t,e,o){var r=this.items[this.index[t]],a=null;return i.isNull(r)?(console.warn("Item is undefined for update"),this):(isNaN(e)&&this.heads.forEach((function(t,i){t.name===e&&(a=i)})),i.isNull(a)?(console.warn("Item is undefined for update. Field "+e+" not found in data structure"),this):(r[a]=o,this.items[this.index[t]]=r,this))},getItem:function(t){return this.items[this.index[t]]},deleteItem:function(t,e){var o,r=[],a=i.isFunc(e);for(o=0;or&&(a="asc"===e.sort.dir?1:-1),0!==a&&e._fireEvent("sort-item-switch",{a:t,b:i,result:a}),a})),this._fireEvent("sort-stop",{items:this.items}),this},search:function(t){return this.searchString=t.trim().toLowerCase(),this.currentPage=1,this._draw(),this},_rebuild:function(t){var i,o=this,r=this.element,a=!1;this._createIndex(),!0===t&&(this.view=this._createView()),this._createTableHeader(),this._createTableBody(),this._createTableFooter(),this.heads.length>0&&e.each(this.heads,(function(t){!a&&["asc","desc"].indexOf(this.sortDir)>-1&&(a=!0,o.sort.colIndex=t,o.sort.dir=this.sortDir)})),a&&(i=r.find(".sortable-column"),this._resetSortClass(i),e(i.get(o.sort.colIndex)).addClass("sort-"+o.sort.dir),this.sorting()),o.currentPage=1,o._draw()},setHeads:function(t){return this.heads=t,this},setHeadItem:function(t,e){var i,o;for(i=0;ithis.pagesCount))return this._draw(),this;this.currentPage=this.pagesCount}},prev:function(){if(0!==this.items.length){if(this.currentPage--,0!==this.currentPage)return this._draw(),this;this.currentPage=1}},first:function(){if(0!==this.items.length)return this.currentPage=1,this._draw(),this},last:function(){if(0!==this.items.length)return this.currentPage=this.pagesCount,this._draw(),this},page:function(t){return t<=0&&(t=1),t>this.pagesCount&&(t=this.pagesCount),this.currentPage=t,this._draw(),this},addFilter:function(t,e){var o,r=null,a=i.isFunc(t);if(!1!==a){for(o=0;o0?this.filteredItems:this.items},getSelectedItems:function(){var o=this.element,r=this.options,a=t.storage.getItem(r.checkStoreKey.replace("$1",o.attr("id"))),n=[];return i.isValue(a)?(e.each(this.items,(function(){-1!==a.indexOf(""+this[r.checkColIndex])&&n.push(this)})),n):[]},getStoredKeys:function(){var e=this.element,i=this.options;return t.storage.getItem(i.checkStoreKey.replace("$1",e.attr("id")),[])},clearSelected:function(e){var i=this.element,o=this.options;t.storage.setItem(o.checkStoreKey.replace("$1",i.attr("id")),[]),i.find("table-service-check-all input").prop("checked",!1),!0===e&&this._draw()},getFilters:function(){return this.filters},getFiltersIndexes:function(){return this.filtersIndexes},openInspector:function(t){var i=this.inspector;t?i.show(0,(function(){i.css({top:(e(window).height()-i.outerHeight(!0))/2+pageYOffset,left:(e(window).width()-i.outerWidth(!0))/2+pageXOffset}).data("open",!0)})):i.hide().data("open",!1)},closeInspector:function(){this.openInspector(!1)},toggleInspector:function(){this.openInspector(!this.inspector.data("open"))},resetView:function(){this.view=this._createView(),this._createTableHeader(),this._createTableFooter(),this._draw(),this._resetInspector(),this._saveTableView()},rebuildIndex:function(){this._createIndex()},getIndex:function(){return this.index},export:function(o,r,a,n){var l,s,p,c,d,A,m,g,h=t.export,u=this,f=this.options,x=document.createElement("table"),b=e("