diff --git a/class/Xmeter.class.js b/class/Xmeter.class.js
index 5cdc69a..410e4f0 100644
--- a/class/Xmeter.class.js
+++ b/class/Xmeter.class.js
@@ -1,5 +1,8 @@
-const HTMLElement = require('extrajs-dom').HTMLElement
+const path = require('path')
+
const View = require('extrajs-view')
+const xjs = require('extrajs-dom')
+const ARIAPatterns = require('aria-patterns')
/**
* Static members for the Xmeter package.
@@ -11,6 +14,7 @@ class Xmeter {
/**
* @summary Render any data in HTML.
* @see Xmeter.VIEW
+ * @deprecated Will be removed in Version 7.
* @param {*} data any data to render
* @returns {View}
*/
@@ -20,6 +24,7 @@ class Xmeter {
* @description Available displays:
* - `Xmeter.view(data).permalink()` - display a permalink
* @namespace Xmeter.VIEW
+ * @deprecated Will be removed in Version 7.
* @type {View}
*/
return new View(null, data)
@@ -28,16 +33,18 @@ class Xmeter {
* Parameter `data` should be of type `{id:string}` (an object with a string `id` property).
* @summary Call `Xmeter.view(data).permalink()` to render this display.
* @function Xmeter.VIEW.permalink
- * @version STABLE
+ * @version DEPRECATED
+ * @deprecated YES. Moved to {@link https://github.com/chharvey/aria-patterns}
* @param {string=} content the text of the link
* @param {string=} label the value for `[aria-label]` attribute
* @returns {string} HTML output
*/
.addDisplay(function permalink(content = '§', label = 'permalink') {
- return new HTMLElement('a').class('c-Permalink h-Inline h-Hidden')
- .attr({ href: `#${this.id}`, 'aria-label': label })
- .addContent(content)
- .html()
+ return new xjs.DocumentFragment(ARIAPatterns.xPermalink.render({
+ id: this.id,
+ label: label,
+ text: content,
+ })).innerHTML()
})
}
}
diff --git a/config-jsdoc.json b/config/jsdoc.json
similarity index 100%
rename from config-jsdoc.json
rename to config/jsdoc.json
diff --git a/config-kss.json b/config/kss.json
similarity index 100%
rename from config-kss.json
rename to config/kss.json
diff --git a/css/src/_base.less b/css/src/_base.less
index 4da6f87..763ba06 100644
--- a/css/src/_base.less
+++ b/css/src/_base.less
@@ -65,14 +65,20 @@ form, fieldset, textarea,
details {
margin-bottom: var(--lh);
margin-bottom: 1lh;
+ @supports (margin-block-end: var(--variable)) {
+ margin-bottom: unset;
margin-block-end: var(--lh);
margin-block-end: 1lh;
+ }
}
h1 {
padding-top: var(--lh);
padding-top: 1lh;
+ @supports (padding-block-start: var(--variable)) {
+ padding-top: unset;
padding-block-start: var(--lh);
padding-block-start: 1lh;
+ }
}
// Font sizes for text-level elements should be in units of `em` instead of `rem` because
@@ -205,7 +211,10 @@ hr {
dt > &,
dd > & {
padding-left: 2rem; // HACK fallback for logical
+ @supports (padding-inline-start: 1rem) {
+ padding-left: unset;
padding-inline-start: 2rem;
+ }
}
}
ol {
@@ -487,4 +496,12 @@ img {
summary {
cursor: pointer;
}
+
+dialog {
+ padding: calc(0.5 ~'*' var(--lh)) 1rem; // COMBAK-FALLBACK
+ padding: 0.5lh 1rem;
+ &::backdrop {
+ background-color: @p-color-gray;
+ }
+}
//++++ end # INTERACTIVE ++++//
diff --git a/css/src/_c-Permalink.less b/css/src/_c-Permalink.less
index 53cd966..eede594 100644
--- a/css/src/_c-Permalink.less
+++ b/css/src/_c-Permalink.less
@@ -1,3 +1,8 @@
+////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////////
+///////--- CHANGED DEPRECATED! Use `require('aria-patterns')` instead! ---////////
+////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////////
/*################################*\
xmeter | _c-Permalink.less
@@ -6,6 +11,8 @@
// The Permalink
//
+// **CHANGED. DEPRECATED. This component has been moved to https://github.com/chharvey/aria-patterns.**
+//
// The Permalink Component is added to the end of a heading in a documentation system,
// style guide, or pattern library. This Component is an internal link, and makes sections
// within a document easy to access.
diff --git a/css/src/_h-Constrain.less b/css/src/_h-Constrain.less
new file mode 100644
index 0000000..6e41373
--- /dev/null
+++ b/css/src/_h-Constrain.less
@@ -0,0 +1,47 @@
+
+/*################################*\
+ xmeter | _h-Constrain.less
+\*################################*/
+
+
+// Constrain
+//
+// The Constrain Helper limits an element’s maximum inline-size
+// (width, in horizontal writing modes), ensuring body content does not expand infinitely.
+// It is very similar to the `.h-Measure` Helper, but it is meant for large containers,
+// not for individual elements of prose (such as a paragraph or list).
+//
+//
author
Chris Harvey
+//
updated
+//
+//
+// Markup:
+//
+//
content heading
+//
This object is constrained to a maximum width. Expand
+// your browser window (or zoom out) to see the effect.
+//
+//
+// Weight: 5.1
+//
+// Styleguide Helpers.Constrain
+.h-Constrain {
+ max-width: 90em; // HACK fallback for logical prop
+ @supports (max-inline-size: 1em) {
+ max-width: unset;
+ max-inline-size: 90em;
+ }
+ margin-left: auto; margin-right: auto; // HACK fallback for logical prop
+ margin-inline: auto;
+}
+
+@media screen and (min-width: 30em) { .h-Constrain-sK { .h-Constrain; } }
+@media screen and (min-width: 45em) { .h-Constrain-sM { .h-Constrain; } }
+@media screen and (min-width: 60em) { .h-Constrain-sG { .h-Constrain; } }
+@media screen and (min-width: 75em) { .h-Constrain-sT { .h-Constrain; } }
+@media screen and (min-width: 90em) { .h-Constrain-sP { .h-Constrain; } }
+@media not all and (min-width: 30em) { .h-Constrain-nK { .h-Constrain; } }
+@media not all and (min-width: 45em) { .h-Constrain-nM { .h-Constrain; } }
+@media not all and (min-width: 60em) { .h-Constrain-nG { .h-Constrain; } }
+@media not all and (min-width: 75em) { .h-Constrain-nT { .h-Constrain; } }
+@media not all and (min-width: 90em) { .h-Constrain-nP { .h-Constrain; } }
diff --git a/css/src/_h-Hidden.less b/css/src/_h-Hidden.less
index 1cc2427..8a0e7d3 100644
--- a/css/src/_h-Hidden.less
+++ b/css/src/_h-Hidden.less
@@ -1,3 +1,8 @@
+////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////////
+///////--- CHANGED DEPRECATED! Use `require('aria-patterns')` instead! ---////////
+////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////////
/*################################*\
xmeter | _h-Hidden.less
@@ -6,6 +11,8 @@
// Hidden
//
+// **CHANGED. DEPRECATED. This helper has been moved to https://github.com/chharvey/aria-patterns.**
+//
// The Hidden Helper visually hides an element while keeping it accessible
// to non-visual media such as screen readers.
// A skip link is a common example.
diff --git a/css/src/_hack.ie.less b/css/src/_hack.ie.less
index bd3f522..191b76d 100644
--- a/css/src/_hack.ie.less
+++ b/css/src/_hack.ie.less
@@ -85,6 +85,7 @@
.o-List {
padding-left: 0;
}
+ // CHANGED-DEPRECATED
.o-Tablist {
margin-top: 0;
margin-left: 0;
@@ -94,6 +95,7 @@
margin-bottom: 0;
}
}
+ // CHANGED-DEPRECATED
.c-Permalink {
h1:hover > &,
h2:hover > &,
diff --git a/css/src/_o-Tablist.less b/css/src/_o-Tablist.less
index e58ca4c..3ddc94b 100644
--- a/css/src/_o-Tablist.less
+++ b/css/src/_o-Tablist.less
@@ -1,3 +1,8 @@
+////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////////
+///////--- CHANGED DEPRECATED! Use `require('aria-patterns')` instead! ---////////
+////////////////////////////////////////////////////////////////////////////////////
+////////////////////////////////////////////////////////////////////////////////////
/*################################*\
xmeter | _o-Tablist.less
@@ -6,6 +11,10 @@
// The Tablist Object
//
+// **WARNING: CHANGED: This object is DEPRECATED.
+// This object will be removed in Version 7.**
+// It will be replaced by the Tablist Object in https://github.com/chharvey/aria-patterns.
+//
// The Tablist Object contains a series of corresponding tabs and panels.
// It is similar to a carousel, but only one panel is shown at a time and
// there is no timed automatic progression.
diff --git a/css/src/xmeter.less b/css/src/xmeter.less
index 2f7f4bd..fa8335b 100644
--- a/css/src/xmeter.less
+++ b/css/src/xmeter.less
@@ -1,7 +1,7 @@
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\
xmeter
- Version: 6.2.0
+ Version: 6.3.0-alpha.2
Licence: MIT
Repo : https://github.com/chharvey/xmeter.git
Home : https://github.com/chharvey/xmeter#readme
@@ -46,6 +46,7 @@
* Clearfix............................creates a line break and clears floats
* Hidden..............................visually hides an element
* Measure.............................constrains an element’s inline-size for readability
+ * Constrain...........................constrains a container’s inline-size for readability
* Ruled...............................adds background lines
*
* ATOMS-------------------------------FUNCTIONAL CSS
@@ -88,7 +89,7 @@
@import url('_o-List.less');
@import url('_o-Flex.less');
@import url('_o-Grid.less');
-@import url('_o-Tablist.less');
+@import url('_o-Tablist.less'); // CHANGED DEPRECATED
// Components
//
@@ -102,15 +103,15 @@
//
// Styleguide Components
-@import url('_c-Permalink.less');
+@import url('_c-Permalink.less'); // CHANGED DEPRECATED
-// Organisms
+// Interfaces
//
-// Aggregate compositions of Objects and Components that form single, self-sustaining interfaces.
+// Aggregate compositions of Objects and Components that form single, self-sustaining organisms.
//
// Weight: 4
//
-// Styleguide Organisms
+// Styleguide Interfaces
// Helpers
//
@@ -123,8 +124,9 @@
@import url('_h-Block.less');
@import url('_h-Inline.less');
@import url('_h-Clearfix.less');
-@import url('_h-Hidden.less');
+@import url('_h-Hidden.less'); // CHANGED DEPRECATED
@import url('_h-Measure.less');
+@import url('_h-Constrain.less');
@import url('_h-Ruled.less');
// Atoms
diff --git a/css/xmeter.css b/css/xmeter.css
index b32fdfa..77e4f56 100644
--- a/css/xmeter.css
+++ b/css/xmeter.css
@@ -1,2 +1,2 @@
-audio:not([controls]),hr{height:0;display:none}button,hr,input{overflow:visible}legend,mark{color:inherit}audio,canvas,progress,video{display:inline-block}[hidden],hr,template{display:none}pre,table{text-align:left}pre,textarea{overflow:auto}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,textarea{display:block}button,input[type=button],input[type=reset],input[type=submit],label,summary{cursor:pointer}img,legend,table{max-width:100%}.o-List,dl{list-style:none}.h-Hidden:not(:focus),.o-Tablist__Check{position:absolute}body{text-align:start;text-align:initial;background:#fff;color:#000}blockquote,body,dd,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,ol,p,pre,ul{margin:initial;margin:unset}legend,ol,td,th,ul{padding:initial;padding:unset}address,b,cite,code,dfn,em,h1,h2,h3,h4,h5,h6,i,kbd,pre,samp,small,strong,sub,sup,th,var{font:inherit}cite,dfn,em,i,var{font-style:italic}caption,th{text-align:inherit;text-align:unset}a,del,ins,s,u{text-decoration:initial;text-decoration:unset}abbr[title],u{text-decoration:underline}mark{color:unset;background-color:#ff0;color:#000;background-color:rgba(255,225,104,.5)}/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px;margin-top:initial;margin-left:initial;margin-right:initial;margin-top:unset;margin-left:unset;margin-right:unset;-webkit-margin-before:unset;margin-block-start:unset;margin-inline:unset}hr{-webkit-box-sizing:content-box;box-sizing:content-box}[type=checkbox],[type=radio],legend{-webkit-box-sizing:border-box;padding:0}pre{white-space:inherit;white-space:unset}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;text-decoration:none;-webkit-text-decoration-line:initial;text-decoration-line:initial;-webkit-text-decoration-line:unset;text-decoration-line:unset}b,strong{font-weight:inherit;font-weight:bolder}b,dfn,h1,h2,h3,h4,h5,h6,strong,th{font-weight:700}small{font-size:80%}sub,sup{vertical-align:initial;vertical-align:unset;font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{margin:0}.o-Tablist,h1{margin-top:initial;-webkit-margin-before:unset;margin-block-start:unset}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{box-sizing:border-box;display:table;white-space:normal}progress{vertical-align:baseline}[type=checkbox],[type=radio]{box-sizing:border-box}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}h1,h3{line-height:calc(var(--line-height)/ 1.5)}h2,h4{line-height:calc(var(--line-height)/ 1)}h5,pre{line-height:calc(var(--line-height)/ .75)}summary{display:list-item}*,::after,::before{content:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-column-rule:0 solid;column-rule:0 solid}@media print{*,::after,::before{background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}}::after,::before,:not(input):not(button):not(select){border:0 solid}html{--line-height:1.5;--lh:calc(var(--line-height) * 1rem);--vru:var(--lh);font-size:100%;line-height:var(--line-height)}blockquote,details,dl,fieldset,figure,form,h1,h2,h3,h4,h5,h6,ol,p,pre,table,textarea,ul{margin-bottom:var(--lh);margin-bottom:1lh;-webkit-margin-after:var(--lh);margin-block-end:var(--lh);-webkit-margin-after:1lh;margin-block-end:1lh}h1{padding-top:var(--lh);padding-top:1lh;-webkit-padding-before:var(--lh);padding-block-start:var(--lh);-webkit-padding-before:1lh;padding-block-start:1lh;font-size:3em;margin-top:unset}abbr,b,br,cite,code,data,dfn,em,i,kbd,label,mark,q,s,samp,small,span,strong,sub,sup,time,u,var{line-height:0}h2{font-size:2em}h3{font-size:1.5em}h4{font-size:1em}h5{font-size:.75em}h6{font-size:.5em;line-height:calc(var(--line-height)/ .5)}code,input:not([type=button]):not([type=reset]):not([type=submit]),kbd,pre,samp,select,small,sub,sup{font-size:.75em}pre{text-indent:0;white-space:pre}.h-Block,.o-Flex,.o-Grid,button,input,select,textarea{line-height:inherit}dd>dl,dd>ol,dd>ul,dt>dl,dt>ol,dt>ul,li>dl,li>ol,li>ul{margin-bottom:initial;margin-bottom:unset;-webkit-margin-after:unset;margin-block-end:unset}ol,ul{padding:0 0 0 4rem;padding:logical 0 4rem}dd>ol,dd>ul,dt>ol,dt>ul,li>ol,li>ul{padding-left:2rem;-webkit-padding-start:2rem;-moz-padding-start:2rem;padding-inline-start:2rem}ol{list-style-type:decimal}ul{list-style-type:disc}table{border-collapse:collapse}caption{text-align:center}tfoot,thead{vertical-align:bottom}tbody{vertical-align:top}a[href]{color:#06c}u{-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#080}s{text-decoration:line-through;-webkit-text-decoration-line:line-through;text-decoration-line:line-through;color:#b00}ins{background-color:#acf2bd}del{background-color:#fdb8c0}dfn{font-style:inherit}q{quotes:initial}q::before{content:open-quote}q::after{content:close-quote}code,kbd,samp{white-space:nowrap}code code,code kbd,code samp,kbd code,kbd kbd,kbd samp,samp code,samp kbd,samp samp{font-size:inherit}pre code,pre kbd,pre samp{white-space:inherit;white-space:unset}fieldset{padding:0 1rem}input,textarea{padding:0 .25rem}html body fieldset{margin-top:-2px;-webkit-margin-before:-2px;margin-block-start:-2px;border:1px solid rgba(0,0,0,.25)}textarea{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.25);box-shadow:0 0 0 1px rgba(0,0,0,.25);height:calc(6 * var(--lh));height:6lh;width:30rem;block-size:calc(6 * var(--lh));block-size:6lh;inline-size:30rem;font-size:.75rem}button,input[type=button],input[type=reset],input[type=submit]{padding:.125em .25em}select[multiple]>optgroup>option{padding-left:1rem;-webkit-padding-start:1rem;-moz-padding-start:1rem;padding-inline-start:1rem}img{border-style:none;height:auto;width:auto;block-size:auto;inline-size:auto;max-inline-size:100%;font-style:italic;vertical-align:middle}.o-List{padding-left:initial;padding-left:unset}.o-Flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item{-webkit-box-flex:1;-ms-flex:auto;flex:auto}@media screen and (min-width:30em){.o-List-sK{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sK{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sK{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:45em){.o-List-sM{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sM{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sM{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:60em){.o-List-sG{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sG{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sG{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:75em){.o-List-sT{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sT{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sT{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:90em){.o-List-sP{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sP{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sP{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:30em){.o-List-nK{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nK{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nK{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:45em){.o-List-nM{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nM{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nM{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:60em){.o-List-nG{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nG{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nG{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:75em){.o-List-nT{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nT{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nT{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:90em){.o-List-nP{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nP{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nP{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}.o-Grid{display:-ms-grid;display:grid;-ms-grid-columns:1fr;grid-template-columns:1fr}@media screen and (min-width:30em){.o-Grid-sK{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:45em){.o-Grid-sM{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:60em){.o-Grid-sG{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:75em){.o-Grid-sT{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:90em){.o-Grid-sP{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:30em){.o-Grid-nK{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:45em){.o-Grid-nM{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:60em){.o-Grid-nG{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:75em){.o-Grid-nT{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:90em){.o-Grid-nP{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}.o-Tablist{display:contents;width:100%;margin-left:initial;margin-right:initial;margin-top:unset;margin-left:unset;margin-right:unset;margin-inline:unset;padding:initial;padding:unset;border:0}.o-Tablist>.o-Flex{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:initial;margin-bottom:unset}.o-Tablist__Panel{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}.c-Permalink{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink,h2:hover>.c-Permalink,h3:hover>.c-Permalink,h4:hover>.c-Permalink,h5:hover>.c-Permalink,h6:hover>.c-Permalink{position:initial;position:unset}.h-Block{display:block;line-height:unset}@media screen and (min-width:30em){.c-Permalink-sK{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sK,h2:hover>.c-Permalink-sK,h3:hover>.c-Permalink-sK,h4:hover>.c-Permalink-sK,h5:hover>.c-Permalink-sK,h6:hover>.c-Permalink-sK{position:initial;position:unset}.h-Block-sK{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:45em){.c-Permalink-sM{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sM,h2:hover>.c-Permalink-sM,h3:hover>.c-Permalink-sM,h4:hover>.c-Permalink-sM,h5:hover>.c-Permalink-sM,h6:hover>.c-Permalink-sM{position:initial;position:unset}.h-Block-sM{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:60em){.c-Permalink-sG{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sG,h2:hover>.c-Permalink-sG,h3:hover>.c-Permalink-sG,h4:hover>.c-Permalink-sG,h5:hover>.c-Permalink-sG,h6:hover>.c-Permalink-sG{position:initial;position:unset}.h-Block-sG{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:75em){.c-Permalink-sT{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sT,h2:hover>.c-Permalink-sT,h3:hover>.c-Permalink-sT,h4:hover>.c-Permalink-sT,h5:hover>.c-Permalink-sT,h6:hover>.c-Permalink-sT{position:initial;position:unset}.h-Block-sT{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:90em){.c-Permalink-sP{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sP,h2:hover>.c-Permalink-sP,h3:hover>.c-Permalink-sP,h4:hover>.c-Permalink-sP,h5:hover>.c-Permalink-sP,h6:hover>.c-Permalink-sP{position:initial;position:unset}.h-Block-sP{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:30em){.c-Permalink-nK{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nK,h2:hover>.c-Permalink-nK,h3:hover>.c-Permalink-nK,h4:hover>.c-Permalink-nK,h5:hover>.c-Permalink-nK,h6:hover>.c-Permalink-nK{position:initial;position:unset}.h-Block-nK{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:45em){.c-Permalink-nM{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nM,h2:hover>.c-Permalink-nM,h3:hover>.c-Permalink-nM,h4:hover>.c-Permalink-nM,h5:hover>.c-Permalink-nM,h6:hover>.c-Permalink-nM{position:initial;position:unset}.h-Block-nM{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:60em){.c-Permalink-nG{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nG,h2:hover>.c-Permalink-nG,h3:hover>.c-Permalink-nG,h4:hover>.c-Permalink-nG,h5:hover>.c-Permalink-nG,h6:hover>.c-Permalink-nG{position:initial;position:unset}.h-Block-nG{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:75em){.c-Permalink-nT{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nT,h2:hover>.c-Permalink-nT,h3:hover>.c-Permalink-nT,h4:hover>.c-Permalink-nT,h5:hover>.c-Permalink-nT,h6:hover>.c-Permalink-nT{position:initial;position:unset}.h-Block-nT{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:90em){.c-Permalink-nP{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nP,h2:hover>.c-Permalink-nP,h3:hover>.c-Permalink-nP,h4:hover>.c-Permalink-nP,h5:hover>.c-Permalink-nP,h6:hover>.c-Permalink-nP{position:initial;position:unset}.h-Block-nP{display:block;line-height:inherit;line-height:unset}.h-Inline-nP{display:inline;line-height:0}}.h-Inline{display:inline;line-height:0}.h-Clearfix::after{content:'';display:block;clear:both}.h-Hidden{left:-999999px}@supports (inset-inline-start:0){.h-Hidden{left:0;inset-inline-start:-999999px}}.h-Measure{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow{max-width:unset;max-inline-size:45ch}}.h-Measure--wide{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide{max-width:unset;max-inline-size:90ch}}.h-Ruled{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta{font-size:6em!important}.-fz-tera{font-size:4em!important}.-fz-giga{font-size:3em!important}.-fz-mega{font-size:2em!important}.-fz-kilo{font-size:1.5em!important}.-fz-norm{font-size:1em!important}.-fz-mill{font-size:.75em!important}.-fz-micr{font-size:.5em!important}@media screen and (min-width:30em){.h-Inline-sK{display:inline;line-height:0}.h-Clearfix-sK::after{content:'';display:block;clear:both}.h-Hidden-sK{left:-999999px}.h-Hidden-sK:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sK{left:0;inset-inline-start:-999999px}}.h-Measure-sK{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sK{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sK{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sK{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sK{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sK{max-width:unset;max-inline-size:90ch}}.h-Ruled-sK{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sK{font-size:6em!important}.-fz-tera-sK{font-size:4em!important}.-fz-giga-sK{font-size:3em!important}.-fz-mega-sK{font-size:2em!important}.-fz-kilo-sK{font-size:1.5em!important}.-fz-norm-sK{font-size:1em!important}.-fz-mill-sK{font-size:.75em!important}.-fz-micr-sK{font-size:.5em!important}}@media screen and (min-width:45em){.h-Inline-sM{display:inline;line-height:0}.h-Clearfix-sM::after{content:'';display:block;clear:both}.h-Hidden-sM{left:-999999px}.h-Hidden-sM:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sM{left:0;inset-inline-start:-999999px}}.h-Measure-sM{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sM{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sM{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sM{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sM{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sM{max-width:unset;max-inline-size:90ch}}.h-Ruled-sM{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sM{font-size:6em!important}.-fz-tera-sM{font-size:4em!important}.-fz-giga-sM{font-size:3em!important}.-fz-mega-sM{font-size:2em!important}.-fz-kilo-sM{font-size:1.5em!important}.-fz-norm-sM{font-size:1em!important}.-fz-mill-sM{font-size:.75em!important}.-fz-micr-sM{font-size:.5em!important}}@media screen and (min-width:60em){.h-Inline-sG{display:inline;line-height:0}.h-Clearfix-sG::after{content:'';display:block;clear:both}.h-Hidden-sG{left:-999999px}.h-Hidden-sG:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sG{left:0;inset-inline-start:-999999px}}.h-Measure-sG{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sG{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sG{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sG{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sG{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sG{max-width:unset;max-inline-size:90ch}}.h-Ruled-sG{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sG{font-size:6em!important}.-fz-tera-sG{font-size:4em!important}.-fz-giga-sG{font-size:3em!important}.-fz-mega-sG{font-size:2em!important}.-fz-kilo-sG{font-size:1.5em!important}.-fz-norm-sG{font-size:1em!important}.-fz-mill-sG{font-size:.75em!important}.-fz-micr-sG{font-size:.5em!important}}@media screen and (min-width:75em){.h-Inline-sT{display:inline;line-height:0}.h-Clearfix-sT::after{content:'';display:block;clear:both}.h-Hidden-sT{left:-999999px}.h-Hidden-sT:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sT{left:0;inset-inline-start:-999999px}}.h-Measure-sT{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sT{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sT{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sT{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sT{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sT{max-width:unset;max-inline-size:90ch}}.h-Ruled-sT{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sT{font-size:6em!important}.-fz-tera-sT{font-size:4em!important}.-fz-giga-sT{font-size:3em!important}.-fz-mega-sT{font-size:2em!important}.-fz-kilo-sT{font-size:1.5em!important}.-fz-norm-sT{font-size:1em!important}.-fz-mill-sT{font-size:.75em!important}.-fz-micr-sT{font-size:.5em!important}}@media screen and (min-width:90em){.h-Inline-sP{display:inline;line-height:0}.h-Clearfix-sP::after{content:'';display:block;clear:both}.h-Hidden-sP{left:-999999px}.h-Hidden-sP:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sP{left:0;inset-inline-start:-999999px}}.h-Measure-sP{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sP{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sP{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sP{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sP{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sP{max-width:unset;max-inline-size:90ch}}.h-Ruled-sP{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sP{font-size:6em!important}.-fz-tera-sP{font-size:4em!important}.-fz-giga-sP{font-size:3em!important}.-fz-mega-sP{font-size:2em!important}.-fz-kilo-sP{font-size:1.5em!important}.-fz-norm-sP{font-size:1em!important}.-fz-mill-sP{font-size:.75em!important}.-fz-micr-sP{font-size:.5em!important}}@media not all and (min-width:30em){.h-Inline-nK{display:inline;line-height:0}.h-Clearfix-nK::after{content:'';display:block;clear:both}.h-Hidden-nK{left:-999999px}.h-Hidden-nK:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nK{left:0;inset-inline-start:-999999px}}.h-Measure-nK{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nK{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nK{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nK{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nK{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nK{max-width:unset;max-inline-size:90ch}}.h-Ruled-nK{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nK{font-size:6em!important}.-fz-tera-nK{font-size:4em!important}.-fz-giga-nK{font-size:3em!important}.-fz-mega-nK{font-size:2em!important}.-fz-kilo-nK{font-size:1.5em!important}.-fz-norm-nK{font-size:1em!important}.-fz-mill-nK{font-size:.75em!important}.-fz-micr-nK{font-size:.5em!important}}@media not all and (min-width:45em){.h-Inline-nM{display:inline;line-height:0}.h-Clearfix-nM::after{content:'';display:block;clear:both}.h-Hidden-nM{left:-999999px}.h-Hidden-nM:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nM{left:0;inset-inline-start:-999999px}}.h-Measure-nM{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nM{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nM{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nM{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nM{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nM{max-width:unset;max-inline-size:90ch}}.h-Ruled-nM{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nM{font-size:6em!important}.-fz-tera-nM{font-size:4em!important}.-fz-giga-nM{font-size:3em!important}.-fz-mega-nM{font-size:2em!important}.-fz-kilo-nM{font-size:1.5em!important}.-fz-norm-nM{font-size:1em!important}.-fz-mill-nM{font-size:.75em!important}.-fz-micr-nM{font-size:.5em!important}}@media not all and (min-width:60em){.h-Inline-nG{display:inline;line-height:0}.h-Clearfix-nG::after{content:'';display:block;clear:both}.h-Hidden-nG{left:-999999px}.h-Hidden-nG:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nG{left:0;inset-inline-start:-999999px}}.h-Measure-nG{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nG{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nG{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nG{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nG{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nG{max-width:unset;max-inline-size:90ch}}.h-Ruled-nG{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nG{font-size:6em!important}.-fz-tera-nG{font-size:4em!important}.-fz-giga-nG{font-size:3em!important}.-fz-mega-nG{font-size:2em!important}.-fz-kilo-nG{font-size:1.5em!important}.-fz-norm-nG{font-size:1em!important}.-fz-mill-nG{font-size:.75em!important}.-fz-micr-nG{font-size:.5em!important}}@media not all and (min-width:75em){.h-Inline-nT{display:inline;line-height:0}.h-Clearfix-nT::after{content:'';display:block;clear:both}.h-Hidden-nT{left:-999999px}.h-Hidden-nT:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nT{left:0;inset-inline-start:-999999px}}.h-Measure-nT{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nT{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nT{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nT{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nT{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nT{max-width:unset;max-inline-size:90ch}}.h-Ruled-nT{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nT{font-size:6em!important}.-fz-tera-nT{font-size:4em!important}.-fz-giga-nT{font-size:3em!important}.-fz-mega-nT{font-size:2em!important}.-fz-kilo-nT{font-size:1.5em!important}.-fz-norm-nT{font-size:1em!important}.-fz-mill-nT{font-size:.75em!important}.-fz-micr-nT{font-size:.5em!important}}@media not all and (min-width:90em){.h-Clearfix-nP::after{content:'';display:block;clear:both}.h-Hidden-nP{left:-999999px}.h-Hidden-nP:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nP{left:0;inset-inline-start:-999999px}}.h-Measure-nP{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nP{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nP{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nP{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nP{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nP{max-width:unset;max-inline-size:90ch}}.h-Ruled-nP{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nP{font-size:6em!important}.-fz-tera-nP{font-size:4em!important}.-fz-giga-nP{font-size:3em!important}.-fz-mega-nP{font-size:2em!important}.-fz-kilo-nP{font-size:1.5em!important}.-fz-norm-nP{font-size:1em!important}.-fz-mill-nP{font-size:.75em!important}.-fz-micr-nP{font-size:.5em!important}}.-fz-el-peta{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}@media screen and (min-width:30em){.-fz-el-peta-sK{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sK{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sK{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sK{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sK{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sK{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sK{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sK{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:45em){.-fz-el-peta-sM{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sM{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sM{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sM{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sM{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sM{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sM{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sM{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:60em){.-fz-el-peta-sG{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sG{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sG{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sG{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sG{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sG{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sG{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sG{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:75em){.-fz-el-peta-sT{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sT{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sT{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sT{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sT{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sT{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sT{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sT{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:90em){.-fz-el-peta-sP{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sP{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sP{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sP{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sP{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sP{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sP{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sP{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:30em){.-fz-el-peta-nK{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nK{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nK{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nK{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nK{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nK{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nK{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nK{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:45em){.-fz-el-peta-nM{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nM{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nM{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nM{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nM{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nM{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nM{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nM{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:60em){.-fz-el-peta-nG{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nG{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nG{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nG{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nG{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nG{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nG{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nG{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:75em){.-fz-el-peta-nT{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nT{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nT{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nT{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nT{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nT{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nT{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nT{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:90em){.-fz-el-peta-nP{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nP{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nP{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nP{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nP{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nP{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nP{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nP{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media (-ms-high-contrast:none),(-ms-high-contrast:active){.o-Tablist,figure{margin-top:0;margin-left:0;margin-right:0}.o-Tablist>.o-Flex,dd>dl,dd>ol,dd>ul,dt>dl,dt>ol,dt>ul,li>dl,li>ol,li>ul{margin-bottom:0}h1,h3{line-height:1}h2,h4,html{line-height:1.5}sub,sup{vertical-align:baseline}blockquote,body,dd,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,ol,p,pre,ul{margin:0}legend,ol,td,th,ul{padding:0}a,del,ins,s,u{text-decoration:none}h1{margin-top:0;padding-top:1.5rem}q{quotes:'\201c' '\201d'}q::before{content:open-quote}q::after{content:close-quote}.o-List{padding-left:0}.o-Tablist{padding:0}h1:hover>.c-Permalink,h2:hover>.c-Permalink,h3:hover>.c-Permalink,h4:hover>.c-Permalink,h5:hover>.c-Permalink,h6:hover>.c-Permalink{position:static}h5,pre{line-height:2}h6{line-height:3}.-fz-el-peta{line-height:1!important}.-fz-el-tera{line-height:1.125!important}.-fz-el-giga{line-height:1!important}.-fz-el-mega{line-height:1.5!important}.-fz-el-kilo{line-height:1!important}.-fz-el-norm{line-height:1.5!important}.-fz-el-mill{line-height:2!important}.-fz-el-micr{line-height:3!important}blockquote,details,dl,fieldset,figure,form,h1,h2,h3,h4,h5,h6,ol,p,pre,table,textarea,ul{margin-bottom:1.5rem}textarea{height:9rem}.h-Ruled{background-size:1px 1.5rem}}
+audio:not([controls]),hr{height:0;display:none}button,hr,input{overflow:visible}legend,mark{color:inherit}audio,canvas,progress,video{display:inline-block}[hidden],hr,template{display:none}pre,table{text-align:left}pre,textarea{overflow:auto}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,textarea{display:block}button,input[type=button],input[type=reset],input[type=submit],label,summary{cursor:pointer}img,legend,table{max-width:100%}.o-List,dl{list-style:none}.h-Hidden:not(:focus),.o-Tablist__Check{position:absolute}body{text-align:start;text-align:initial;background:#fff;color:#000}blockquote,body,dd,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,ol,p,pre,ul{margin:initial;margin:unset}legend,ol,td,th,ul{padding:initial;padding:unset}address,b,cite,code,dfn,em,h1,h2,h3,h4,h5,h6,i,kbd,pre,samp,small,strong,sub,sup,th,var{font:inherit}cite,dfn,em,i,var{font-style:italic}caption,th{text-align:inherit;text-align:unset}a,del,ins,s,u{text-decoration:initial;text-decoration:unset}abbr[title],u{text-decoration:underline}mark{color:unset;background-color:#ff0;color:#000;background-color:rgba(255,225,104,.5)}/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}h1{font-size:2em;margin:.67em 0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px;margin-top:initial;margin-left:initial;margin-right:initial;margin-top:unset;margin-left:unset;margin-right:unset;-webkit-margin-before:unset;margin-block-start:unset;margin-inline:unset}hr{-webkit-box-sizing:content-box;box-sizing:content-box}[type=checkbox],[type=radio],legend{-webkit-box-sizing:border-box;padding:0}pre{white-space:inherit;white-space:unset}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;text-decoration:none;-webkit-text-decoration-line:initial;text-decoration-line:initial;-webkit-text-decoration-line:unset;text-decoration-line:unset}b,strong{font-weight:inherit;font-weight:bolder}b,dfn,h1,h2,h3,h4,h5,h6,strong,th{font-weight:700}small{font-size:80%}sub,sup{vertical-align:initial;vertical-align:unset;font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{margin:0}.o-Tablist,h1{margin-top:initial;-webkit-margin-before:unset;margin-block-start:unset}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{box-sizing:border-box;display:table;white-space:normal}progress{vertical-align:baseline}[type=checkbox],[type=radio]{box-sizing:border-box}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}h1,h3{line-height:calc(var(--line-height)/ 1.5)}h2,h4{line-height:calc(var(--line-height)/ 1)}h5,pre{line-height:calc(var(--line-height)/ .75)}summary{display:list-item}*,::after,::before{content:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-column-rule:0 solid;column-rule:0 solid}@media print{*,::after,::before{background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important}}::after,::before,:not(input):not(button):not(select){border:0 solid}html{--line-height:1.5;--lh:calc(var(--line-height) * 1rem);--vru:var(--lh);font-size:100%;line-height:var(--line-height)}blockquote,details,dl,fieldset,figure,form,h1,h2,h3,h4,h5,h6,ol,p,pre,table,textarea,ul{margin-bottom:var(--lh);margin-bottom:1lh}@supports ((-webkit-margin-after:var(--variable)) or (margin-block-end:var(--variable))){blockquote,details,dl,fieldset,figure,form,h1,h2,h3,h4,h5,h6,ol,p,pre,table,textarea,ul{margin-bottom:unset;-webkit-margin-after:var(--lh);margin-block-end:var(--lh);-webkit-margin-after:1lh;margin-block-end:1lh}}h1{padding-top:var(--lh);padding-top:1lh;font-size:3em;margin-top:unset}@supports ((-webkit-padding-before:var(--variable)) or (padding-block-start:var(--variable))){h1{padding-top:unset;-webkit-padding-before:var(--lh);padding-block-start:var(--lh);-webkit-padding-before:1lh;padding-block-start:1lh}}abbr,b,br,cite,code,data,dfn,em,i,kbd,label,mark,q,s,samp,small,span,strong,sub,sup,time,u,var{line-height:0}h2{font-size:2em}h3{font-size:1.5em}h4{font-size:1em}h5{font-size:.75em}h6{font-size:.5em;line-height:calc(var(--line-height)/ .5)}code,input:not([type=button]):not([type=reset]):not([type=submit]),kbd,pre,samp,select,small,sub,sup{font-size:.75em}pre{text-indent:0;white-space:pre}.h-Block,.o-Flex,.o-Grid,button,input,select,textarea{line-height:inherit}dd>dl,dd>ol,dd>ul,dt>dl,dt>ol,dt>ul,li>dl,li>ol,li>ul{margin-bottom:initial;margin-bottom:unset;-webkit-margin-after:unset;margin-block-end:unset}ol,ul{padding:0 0 0 4rem;padding:logical 0 4rem}dd>ol,dd>ul,dt>ol,dt>ul,li>ol,li>ul{padding-left:2rem}@supports ((-webkit-padding-start:1rem) or (-moz-padding-start:1rem) or (padding-inline-start:1rem)){dd>ol,dd>ul,dt>ol,dt>ul,li>ol,li>ul{padding-left:unset;-webkit-padding-start:2rem;-moz-padding-start:2rem;padding-inline-start:2rem}}ol{list-style-type:decimal}ul{list-style-type:disc}table{border-collapse:collapse}caption{text-align:center}tfoot,thead{vertical-align:bottom}tbody{vertical-align:top}a[href]{color:#06c}u{-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#080}s{text-decoration:line-through;-webkit-text-decoration-line:line-through;text-decoration-line:line-through;color:#b00}ins{background-color:#acf2bd}del{background-color:#fdb8c0}dfn{font-style:inherit}q{quotes:initial}q::before{content:open-quote}q::after{content:close-quote}code,kbd,samp{white-space:nowrap}code code,code kbd,code samp,kbd code,kbd kbd,kbd samp,samp code,samp kbd,samp samp{font-size:inherit}pre code,pre kbd,pre samp{white-space:inherit;white-space:unset}fieldset{padding:0 1rem}input,textarea{padding:0 .25rem}html body fieldset{margin-top:-2px;-webkit-margin-before:-2px;margin-block-start:-2px;border:1px solid rgba(0,0,0,.25)}textarea{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.25);box-shadow:0 0 0 1px rgba(0,0,0,.25);height:calc(6 * var(--lh));height:6lh;width:30rem;block-size:calc(6 * var(--lh));block-size:6lh;inline-size:30rem;font-size:.75rem}button,input[type=button],input[type=reset],input[type=submit]{padding:.125em .25em}select[multiple]>optgroup>option{padding-left:1rem;-webkit-padding-start:1rem;-moz-padding-start:1rem;padding-inline-start:1rem}img{border-style:none;height:auto;width:auto;block-size:auto;inline-size:auto;max-inline-size:100%;font-style:italic;vertical-align:middle}dialog{padding:calc(.5 * var(--lh)) 1rem;padding:.5lh 1rem}dialog::-webkit-backdrop{background-color:rgba(0,0,0,.25)}dialog::backdrop{background-color:rgba(0,0,0,.25)}.o-List{padding-left:initial;padding-left:unset}.o-Flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item{-webkit-box-flex:1;-ms-flex:auto;flex:auto}@media screen and (min-width:30em){.o-List-sK{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sK{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sK{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:45em){.o-List-sM{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sM{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sM{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:60em){.o-List-sG{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sG{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sG{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:75em){.o-List-sT{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sT{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sT{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media screen and (min-width:90em){.o-List-sP{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-sP{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-sP{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:30em){.o-List-nK{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nK{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nK{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:45em){.o-List-nM{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nM{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nM{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:60em){.o-List-nG{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nG{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nG{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:75em){.o-List-nT{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nT{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nT{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}@media not all and (min-width:90em){.o-List-nP{padding-left:initial;padding-left:unset;list-style:none}.o-Flex-nP{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:inherit;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.o-Flex__Item-nP{-webkit-box-flex:1;-ms-flex:auto;flex:auto}}.o-Grid{display:-ms-grid;display:grid;-ms-grid-columns:1fr;grid-template-columns:1fr}@media screen and (min-width:30em){.o-Grid-sK{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:45em){.o-Grid-sM{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:60em){.o-Grid-sG{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:75em){.o-Grid-sT{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media screen and (min-width:90em){.o-Grid-sP{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:30em){.o-Grid-nK{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:45em){.o-Grid-nM{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:60em){.o-Grid-nG{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:75em){.o-Grid-nT{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}@media not all and (min-width:90em){.o-Grid-nP{display:-ms-grid;display:grid;line-height:inherit;-ms-grid-columns:1fr;grid-template-columns:1fr}}.o-Tablist{display:contents;width:100%;margin-left:initial;margin-right:initial;margin-top:unset;margin-left:unset;margin-right:unset;margin-inline:unset;padding:initial;padding:unset;border:0}.o-Tablist>.o-Flex{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:initial;margin-bottom:unset}.o-Tablist__Panel{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}.c-Permalink{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink,h2:hover>.c-Permalink,h3:hover>.c-Permalink,h4:hover>.c-Permalink,h5:hover>.c-Permalink,h6:hover>.c-Permalink{position:initial;position:unset}.h-Block{display:block;line-height:unset}@media screen and (min-width:30em){.c-Permalink-sK{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sK,h2:hover>.c-Permalink-sK,h3:hover>.c-Permalink-sK,h4:hover>.c-Permalink-sK,h5:hover>.c-Permalink-sK,h6:hover>.c-Permalink-sK{position:initial;position:unset}.h-Block-sK{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:45em){.c-Permalink-sM{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sM,h2:hover>.c-Permalink-sM,h3:hover>.c-Permalink-sM,h4:hover>.c-Permalink-sM,h5:hover>.c-Permalink-sM,h6:hover>.c-Permalink-sM{position:initial;position:unset}.h-Block-sM{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:60em){.c-Permalink-sG{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sG,h2:hover>.c-Permalink-sG,h3:hover>.c-Permalink-sG,h4:hover>.c-Permalink-sG,h5:hover>.c-Permalink-sG,h6:hover>.c-Permalink-sG{position:initial;position:unset}.h-Block-sG{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:75em){.c-Permalink-sT{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sT,h2:hover>.c-Permalink-sT,h3:hover>.c-Permalink-sT,h4:hover>.c-Permalink-sT,h5:hover>.c-Permalink-sT,h6:hover>.c-Permalink-sT{position:initial;position:unset}.h-Block-sT{display:block;line-height:inherit;line-height:unset}}@media screen and (min-width:90em){.c-Permalink-sP{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-sP,h2:hover>.c-Permalink-sP,h3:hover>.c-Permalink-sP,h4:hover>.c-Permalink-sP,h5:hover>.c-Permalink-sP,h6:hover>.c-Permalink-sP{position:initial;position:unset}.h-Block-sP{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:30em){.c-Permalink-nK{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nK,h2:hover>.c-Permalink-nK,h3:hover>.c-Permalink-nK,h4:hover>.c-Permalink-nK,h5:hover>.c-Permalink-nK,h6:hover>.c-Permalink-nK{position:initial;position:unset}.h-Block-nK{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:45em){.c-Permalink-nM{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nM,h2:hover>.c-Permalink-nM,h3:hover>.c-Permalink-nM,h4:hover>.c-Permalink-nM,h5:hover>.c-Permalink-nM,h6:hover>.c-Permalink-nM{position:initial;position:unset}.h-Block-nM{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:60em){.c-Permalink-nG{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nG,h2:hover>.c-Permalink-nG,h3:hover>.c-Permalink-nG,h4:hover>.c-Permalink-nG,h5:hover>.c-Permalink-nG,h6:hover>.c-Permalink-nG{position:initial;position:unset}.h-Block-nG{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:75em){.c-Permalink-nT{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nT,h2:hover>.c-Permalink-nT,h3:hover>.c-Permalink-nT,h4:hover>.c-Permalink-nT,h5:hover>.c-Permalink-nT,h6:hover>.c-Permalink-nT{position:initial;position:unset}.h-Block-nT{display:block;line-height:inherit;line-height:unset}}@media not all and (min-width:90em){.c-Permalink-nP{margin-left:1rem;-webkit-margin-start:1rem;-moz-margin-start:1rem;margin-inline-start:1rem;font-weight:100}h1:hover>.c-Permalink-nP,h2:hover>.c-Permalink-nP,h3:hover>.c-Permalink-nP,h4:hover>.c-Permalink-nP,h5:hover>.c-Permalink-nP,h6:hover>.c-Permalink-nP{position:initial;position:unset}.h-Block-nP{display:block;line-height:inherit;line-height:unset}.h-Inline-nP{display:inline;line-height:0}}.h-Inline{display:inline;line-height:0}.h-Clearfix::after{content:'';display:block;clear:both}.h-Hidden{left:-999999px}@supports (inset-inline-start:0){.h-Hidden{left:0;inset-inline-start:-999999px}}.h-Measure{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow{max-width:unset;max-inline-size:45ch}}.h-Measure--wide{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide{max-width:unset;max-inline-size:90ch}}@media screen and (min-width:30em){.h-Inline-sK{display:inline;line-height:0}.h-Clearfix-sK::after{content:'';display:block;clear:both}.h-Hidden-sK{left:-999999px}.h-Hidden-sK:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sK{left:0;inset-inline-start:-999999px}}.h-Measure-sK{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sK{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sK{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sK{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sK{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sK{max-width:unset;max-inline-size:90ch}}}@media screen and (min-width:45em){.h-Inline-sM{display:inline;line-height:0}.h-Clearfix-sM::after{content:'';display:block;clear:both}.h-Hidden-sM{left:-999999px}.h-Hidden-sM:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sM{left:0;inset-inline-start:-999999px}}.h-Measure-sM{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sM{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sM{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sM{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sM{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sM{max-width:unset;max-inline-size:90ch}}}@media screen and (min-width:60em){.h-Inline-sG{display:inline;line-height:0}.h-Clearfix-sG::after{content:'';display:block;clear:both}.h-Hidden-sG{left:-999999px}.h-Hidden-sG:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sG{left:0;inset-inline-start:-999999px}}.h-Measure-sG{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sG{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sG{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sG{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sG{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sG{max-width:unset;max-inline-size:90ch}}}@media screen and (min-width:75em){.h-Inline-sT{display:inline;line-height:0}.h-Clearfix-sT::after{content:'';display:block;clear:both}.h-Hidden-sT{left:-999999px}.h-Hidden-sT:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sT{left:0;inset-inline-start:-999999px}}.h-Measure-sT{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sT{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sT{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sT{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sT{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sT{max-width:unset;max-inline-size:90ch}}}@media screen and (min-width:90em){.h-Inline-sP{display:inline;line-height:0}.h-Clearfix-sP::after{content:'';display:block;clear:both}.h-Hidden-sP{left:-999999px}.h-Hidden-sP:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-sP{left:0;inset-inline-start:-999999px}}.h-Measure-sP{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-sP{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-sP{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-sP{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-sP{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-sP{max-width:unset;max-inline-size:90ch}}}@media not all and (min-width:30em){.h-Inline-nK{display:inline;line-height:0}.h-Clearfix-nK::after{content:'';display:block;clear:both}.h-Hidden-nK{left:-999999px}.h-Hidden-nK:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nK{left:0;inset-inline-start:-999999px}}.h-Measure-nK{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nK{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nK{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nK{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nK{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nK{max-width:unset;max-inline-size:90ch}}}@media not all and (min-width:45em){.h-Inline-nM{display:inline;line-height:0}.h-Clearfix-nM::after{content:'';display:block;clear:both}.h-Hidden-nM{left:-999999px}.h-Hidden-nM:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nM{left:0;inset-inline-start:-999999px}}.h-Measure-nM{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nM{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nM{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nM{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nM{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nM{max-width:unset;max-inline-size:90ch}}}@media not all and (min-width:60em){.h-Inline-nG{display:inline;line-height:0}.h-Clearfix-nG::after{content:'';display:block;clear:both}.h-Hidden-nG{left:-999999px}.h-Hidden-nG:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nG{left:0;inset-inline-start:-999999px}}.h-Measure-nG{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nG{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nG{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nG{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nG{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nG{max-width:unset;max-inline-size:90ch}}}@media not all and (min-width:75em){.h-Inline-nT{display:inline;line-height:0}.h-Clearfix-nT::after{content:'';display:block;clear:both}.h-Hidden-nT{left:-999999px}.h-Hidden-nT:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nT{left:0;inset-inline-start:-999999px}}.h-Measure-nT{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nT{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nT{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nT{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nT{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nT{max-width:unset;max-inline-size:90ch}}}@media not all and (min-width:90em){.h-Clearfix-nP::after{content:'';display:block;clear:both}.h-Hidden-nP{left:-999999px}.h-Hidden-nP:not(:focus){position:absolute}@supports (inset-inline-start:0){.h-Hidden-nP{left:0;inset-inline-start:-999999px}}.h-Measure-nP{max-width:33em;max-width:66ch}@supports (max-inline-size:1ch){.h-Measure-nP{max-width:unset;max-inline-size:66ch}}.h-Measure--narrow-nP{max-width:22.5em;max-width:45ch}@supports (max-inline-size:1ch){.h-Measure--narrow-nP{max-width:unset;max-inline-size:45ch}}.h-Measure--wide-nP{max-width:45em;max-width:90ch}@supports (max-inline-size:1ch){.h-Measure--wide-nP{max-width:unset;max-inline-size:90ch}}}.h-Constrain{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain{max-width:unset;max-inline-size:90em}}.h-Ruled{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta{font-size:6em!important}.-fz-tera{font-size:4em!important}.-fz-giga{font-size:3em!important}.-fz-mega{font-size:2em!important}.-fz-kilo{font-size:1.5em!important}.-fz-norm{font-size:1em!important}.-fz-mill{font-size:.75em!important}.-fz-micr{font-size:.5em!important}@media screen and (min-width:30em){.h-Constrain-sK{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-sK{max-width:unset;max-inline-size:90em}}.h-Ruled-sK{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sK{font-size:6em!important}.-fz-tera-sK{font-size:4em!important}.-fz-giga-sK{font-size:3em!important}.-fz-mega-sK{font-size:2em!important}.-fz-kilo-sK{font-size:1.5em!important}.-fz-norm-sK{font-size:1em!important}.-fz-mill-sK{font-size:.75em!important}.-fz-micr-sK{font-size:.5em!important}}@media screen and (min-width:45em){.h-Constrain-sM{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-sM{max-width:unset;max-inline-size:90em}}.h-Ruled-sM{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sM{font-size:6em!important}.-fz-tera-sM{font-size:4em!important}.-fz-giga-sM{font-size:3em!important}.-fz-mega-sM{font-size:2em!important}.-fz-kilo-sM{font-size:1.5em!important}.-fz-norm-sM{font-size:1em!important}.-fz-mill-sM{font-size:.75em!important}.-fz-micr-sM{font-size:.5em!important}}@media screen and (min-width:60em){.h-Constrain-sG{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-sG{max-width:unset;max-inline-size:90em}}.h-Ruled-sG{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sG{font-size:6em!important}.-fz-tera-sG{font-size:4em!important}.-fz-giga-sG{font-size:3em!important}.-fz-mega-sG{font-size:2em!important}.-fz-kilo-sG{font-size:1.5em!important}.-fz-norm-sG{font-size:1em!important}.-fz-mill-sG{font-size:.75em!important}.-fz-micr-sG{font-size:.5em!important}}@media screen and (min-width:75em){.h-Constrain-sT{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-sT{max-width:unset;max-inline-size:90em}}.h-Ruled-sT{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sT{font-size:6em!important}.-fz-tera-sT{font-size:4em!important}.-fz-giga-sT{font-size:3em!important}.-fz-mega-sT{font-size:2em!important}.-fz-kilo-sT{font-size:1.5em!important}.-fz-norm-sT{font-size:1em!important}.-fz-mill-sT{font-size:.75em!important}.-fz-micr-sT{font-size:.5em!important}}@media screen and (min-width:90em){.h-Constrain-sP{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-sP{max-width:unset;max-inline-size:90em}}.h-Ruled-sP{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-sP{font-size:6em!important}.-fz-tera-sP{font-size:4em!important}.-fz-giga-sP{font-size:3em!important}.-fz-mega-sP{font-size:2em!important}.-fz-kilo-sP{font-size:1.5em!important}.-fz-norm-sP{font-size:1em!important}.-fz-mill-sP{font-size:.75em!important}.-fz-micr-sP{font-size:.5em!important}}@media not all and (min-width:30em){.h-Constrain-nK{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-nK{max-width:unset;max-inline-size:90em}}.h-Ruled-nK{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nK{font-size:6em!important}.-fz-tera-nK{font-size:4em!important}.-fz-giga-nK{font-size:3em!important}.-fz-mega-nK{font-size:2em!important}.-fz-kilo-nK{font-size:1.5em!important}.-fz-norm-nK{font-size:1em!important}.-fz-mill-nK{font-size:.75em!important}.-fz-micr-nK{font-size:.5em!important}}@media not all and (min-width:45em){.h-Constrain-nM{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-nM{max-width:unset;max-inline-size:90em}}.h-Ruled-nM{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nM{font-size:6em!important}.-fz-tera-nM{font-size:4em!important}.-fz-giga-nM{font-size:3em!important}.-fz-mega-nM{font-size:2em!important}.-fz-kilo-nM{font-size:1.5em!important}.-fz-norm-nM{font-size:1em!important}.-fz-mill-nM{font-size:.75em!important}.-fz-micr-nM{font-size:.5em!important}}@media not all and (min-width:60em){.h-Constrain-nG{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-nG{max-width:unset;max-inline-size:90em}}.h-Ruled-nG{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nG{font-size:6em!important}.-fz-tera-nG{font-size:4em!important}.-fz-giga-nG{font-size:3em!important}.-fz-mega-nG{font-size:2em!important}.-fz-kilo-nG{font-size:1.5em!important}.-fz-norm-nG{font-size:1em!important}.-fz-mill-nG{font-size:.75em!important}.-fz-micr-nG{font-size:.5em!important}}@media not all and (min-width:75em){.h-Constrain-nT{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-nT{max-width:unset;max-inline-size:90em}}.h-Ruled-nT{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nT{font-size:6em!important}.-fz-tera-nT{font-size:4em!important}.-fz-giga-nT{font-size:3em!important}.-fz-mega-nT{font-size:2em!important}.-fz-kilo-nT{font-size:1.5em!important}.-fz-norm-nT{font-size:1em!important}.-fz-mill-nT{font-size:.75em!important}.-fz-micr-nT{font-size:.5em!important}}@media not all and (min-width:90em){.h-Constrain-nP{max-width:90em;margin-left:auto;margin-right:auto;margin-inline:auto}@supports (max-inline-size:1em){.h-Constrain-nP{max-width:unset;max-inline-size:90em}}.h-Ruled-nP{background-image:linear-gradient(to top,rgba(0,0,0,.25) 1px,transparent 1px);background-size:1px var(--lh);background-size:1px 1lh;background-position-y:top;background-position-block:start}.-fz-peta-nP{font-size:6em!important}.-fz-tera-nP{font-size:4em!important}.-fz-giga-nP{font-size:3em!important}.-fz-mega-nP{font-size:2em!important}.-fz-kilo-nP{font-size:1.5em!important}.-fz-norm-nP{font-size:1em!important}.-fz-mill-nP{font-size:.75em!important}.-fz-micr-nP{font-size:.5em!important}}.-fz-el-peta{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}@media screen and (min-width:30em){.-fz-el-peta-sK{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sK{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sK{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sK{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sK{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sK{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sK{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sK{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:45em){.-fz-el-peta-sM{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sM{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sM{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sM{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sM{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sM{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sM{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sM{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:60em){.-fz-el-peta-sG{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sG{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sG{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sG{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sG{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sG{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sG{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sG{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:75em){.-fz-el-peta-sT{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sT{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sT{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sT{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sT{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sT{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sT{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sT{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media screen and (min-width:90em){.-fz-el-peta-sP{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-sP{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-sP{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-sP{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-sP{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-sP{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-sP{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-sP{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:30em){.-fz-el-peta-nK{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nK{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nK{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nK{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nK{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nK{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nK{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nK{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:45em){.-fz-el-peta-nM{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nM{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nM{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nM{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nM{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nM{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nM{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nM{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:60em){.-fz-el-peta-nG{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nG{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nG{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nG{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nG{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nG{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nG{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nG{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:75em){.-fz-el-peta-nT{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nT{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nT{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nT{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nT{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nT{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nT{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nT{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media not all and (min-width:90em){.-fz-el-peta-nP{font-size:6em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-tera-nP{font-size:4em!important;line-height:calc(var(--line-height)/ 1.33333333)!important}.-fz-el-giga-nP{font-size:3em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-mega-nP{font-size:2em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-kilo-nP{font-size:1.5em!important;line-height:calc(var(--line-height)/ 1.5)!important}.-fz-el-norm-nP{font-size:1em!important;line-height:calc(var(--line-height)/ 1)!important}.-fz-el-mill-nP{font-size:.75em!important;line-height:calc(var(--line-height)/ .75)!important}.-fz-el-micr-nP{font-size:.5em!important;line-height:calc(var(--line-height)/ .5)!important}}@media (-ms-high-contrast:none),(-ms-high-contrast:active){.o-Tablist,figure{margin-top:0;margin-left:0;margin-right:0}.o-Tablist>.o-Flex,dd>dl,dd>ol,dd>ul,dt>dl,dt>ol,dt>ul,li>dl,li>ol,li>ul{margin-bottom:0}h1,h3{line-height:1}h2,h4,html{line-height:1.5}sub,sup{vertical-align:baseline}blockquote,body,dd,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,ol,p,pre,ul{margin:0}legend,ol,td,th,ul{padding:0}a,del,ins,s,u{text-decoration:none}h1{margin-top:0;padding-top:1.5rem}q{quotes:'\201c' '\201d'}q::before{content:open-quote}q::after{content:close-quote}.o-List{padding-left:0}.o-Tablist{padding:0}h1:hover>.c-Permalink,h2:hover>.c-Permalink,h3:hover>.c-Permalink,h4:hover>.c-Permalink,h5:hover>.c-Permalink,h6:hover>.c-Permalink{position:static}h5,pre{line-height:2}h6{line-height:3}.-fz-el-peta{line-height:1!important}.-fz-el-tera{line-height:1.125!important}.-fz-el-giga{line-height:1!important}.-fz-el-mega{line-height:1.5!important}.-fz-el-kilo{line-height:1!important}.-fz-el-norm{line-height:1.5!important}.-fz-el-mill{line-height:2!important}.-fz-el-micr{line-height:3!important}blockquote,details,dl,fieldset,figure,form,h1,h2,h3,h4,h5,h6,ol,p,pre,table,textarea,ul{margin-bottom:1.5rem}textarea{height:9rem}.h-Ruled{background-size:1px 1.5rem}}
/*# sourceMappingURL=xmeter.css.map */
diff --git a/css/xmeter.css.map b/css/xmeter.css.map
index 4d41350..433cc12 100644
--- a/css/xmeter.css.map
+++ b/css/xmeter.css.map
@@ -1 +1 @@
-{"version":3,"sources":["xmeter.css"],"names":[],"mappings":"AAkRA,sBAtIA,GAwIE,OAAQ,EAoNR,QAAS,KA7KX,OA/KA,GAgLA,MACE,SAAU,QAwDZ,OApTA,KAuTE,MAAO,QA/GT,MAsNA,OA3FA,SA1HA,MA2HE,QAAS,aA6GX,SAtWA,GA2VA,SACE,QAAS,KAsLX,IA0DA,MAGE,WAAY,KA7Dd,IA8LA,SA9cE,SAAU,KAhTZ,QACA,MA4WA,QAlVA,WACA,OA1BA,OACA,OA0BA,KAiVA,KA1WA,IACA,QAyvBA,SAKE,QAAS,MAYX,OAHA,mBACA,kBACA,mBAEA,MA1ZA,QA2ZE,OAAQ,QAkBV,IA5gBA,OAmWA,MA4KE,UAAW,KAab,QA5LA,GA+LE,WAAY,KA6yBd,sBAvbA,kBAwbE,SAAU,SAprDZ,KACE,WAAY,MACZ,WAAY,QACZ,WAAY,KACZ,MAAO,KAUE,WAHX,KAKA,GADQ,GAER,SAHG,OAFH,GAAI,GAAI,GAAI,GAAI,GAAI,GACpB,GAEA,GADA,EAAuB,IACnB,GAGF,OAAQ,QACR,OAAQ,MAIV,OAFA,GACI,GAAJ,GADI,GAGF,QAAS,QACT,QAAS,MAGX,QAIK,EAAQ,KACb,KADA,IADA,GAJA,GAAI,GAAI,GAAI,GAAI,GAAI,GAIR,EAEN,IAJN,IAIW,KAFI,MAAX,OACoB,IAAL,IAFnB,GAEQ,IAEN,KAAM,QAyvBR,KA3BA,IAjCA,GAMA,EA0CA,IA/CE,WAAY,OA5rBd,QACA,GACE,WAAY,QACZ,WAAY,MAMd,EAEK,IAAL,IADG,EAAH,EAEE,gBAAiB,QACjB,gBAAiB,MAgHnB,YA0kBA,EACE,gBAAiB,UAzrBnB,KAEE,MAAO,MA8JP,iBAAkB,KAClB,MAAO,KAqhBP,iBAAkB,qBAjrBpB,4EAWA,KACE,YAAa,KACb,qBAAsB,KACtB,yBAA0B,KAwB5B,GACE,UAAW,IACX,OAAQ,MAAO,EA+FjB,KACA,IAtDA,IAuDA,KACE,YAAa,SAAS,CAAE,UACxB,UAAW,IA9Eb,OACE,OAAQ,IAAI,KAmiBZ,WAAY,QACZ,YAAa,QACb,aAAc,QACd,WAAY,MACZ,YAAa,MACb,aAAc,MACd,sBAAuB,MACvB,mBAAoB,MACpB,cAAe,MAniBjB,GACE,mBAAoB,YACpB,WAAY,YAwQd,gBACA,aAlCA,OACE,mBAAoB,WAoCpB,QAAS,EAlQX,IAhGE,YAAa,QACb,YAAa,MA4Gf,EACE,iBAAkB,YAClB,6BAA8B,QAQhC,YACE,mBAEA,wBAAyB,UAAU,OACnC,gBAAiB,UAAU,OAmmB3B,OAAQ,KACR,gBAAiB,KACjB,6BAA8B,QAC9B,qBAAsB,QACtB,6BAA8B,MAC9B,qBAAsB,MAjmBxB,EACA,OACE,YAAa,QASb,YAAa,OA6kBf,EAJA,IAzJA,GACA,GACA,GACA,GACA,GACA,GAsHA,OATA,GAyCE,YAAa,IAviBf,MACE,UAAW,IAQb,IACA,IA7NE,eAAgB,QAChB,eAAgB,MA6NhB,UAAW,IACX,YAAa,EACb,SAAU,SACV,eAAgB,SAGlB,IACE,OAAQ,OAGV,IACE,IAAK,MAoCP,eACE,SAAU,OAUZ,OACA,MACA,SACA,OACA,SACE,OAAQ,EAi8BV,WAhqBA,GAmqBE,WAAY,QAMZ,sBAAuB,MACvB,mBAAoB,MAz7BtB,OACA,OACE,eAAgB,KAWlB,aACA,cAHA,OACA,mBAGE,mBAAoB,OAQtB,gCACA,+BACA,gCAHA,yBAIE,aAAc,KACd,QAAS,EAQX,6BACA,4BACA,6BAHA,sBAIE,QAAoB,WAAP,OAAJ,IAUX,OAEE,WAAY,WAEZ,QAAS,MAGT,YAAa,OAQf,SAEE,eAAgB,SAgBlB,gBACA,aAEE,WAAY,WAQd,yCACA,yCACE,OAAQ,KAQV,cACE,mBAAoB,UACpB,eAAgB,KAOlB,4CACA,yCACE,mBAAoB,KAQtB,6BACE,mBAAoB,OACpB,KAAM,QAoJR,GAiDA,GAEE,YAAa,8BANf,GAQA,GAEE,YAAa,4BAEf,GAiBA,IAEE,YAAa,8BA5Mf,QACE,QAAS,UAuEX,EAEA,QADA,SAEE,QAAS,KACT,mBAAoB,WACpB,WAAY,WACZ,oBAAqB,EAAE,MACvB,YAAa,EAAE,MAEjB,aACE,EAEA,QADA,SAEE,yBACA,mBAAoB,eACpB,WAAY,eACZ,YAAa,gBAKjB,QADA,SADA,oCAGE,OAAQ,EAAE,MAEZ,KACE,cAAe,IACf,KAAM,gCACN,MAAO,UACP,UAAW,KACX,YAAa,mBAWf,WAQA,QALA,GAGA,SAPA,OAMA,KAdA,GACA,GACA,GACA,GACA,GACA,GAKA,GAJA,EACA,IAMA,MAGA,SALA,GAOE,cAAe,UACf,cAAe,IACf,qBAAsB,UACtB,iBAAkB,UAClB,qBAAsB,IACtB,iBAAkB,IAEpB,GACE,YAAa,UACb,YAAa,IACb,uBAAwB,UACxB,oBAAqB,UACrB,uBAAwB,IACxB,oBAAqB,IAoCrB,UAAW,IAyBX,WAAY,MAhDd,KADA,EATA,GAaA,KAKA,KAFA,KARA,IAPA,GAEA,EAgBA,IAEA,MAjBA,KAQA,EALA,EAaA,KAdA,MAPA,KAGA,OAaA,IADA,IAGA,KAZA,EAMA,IAWE,YAAa,EAcf,GACE,UAAW,IAGb,GACE,UAAW,MAGb,GACE,UAAW,IAGb,GACE,UAAW,MAGb,GACE,UAAW,KACX,YAAa,6BA6Jf,KAiEA,8DAhEA,IAnJA,IAoJA,KAgEA,OAnHA,MA8CA,IADA,IAOE,UAAW,MArJb,IAIE,YAAa,EACb,YAAa,IA4zBf,SAhgBA,QAiLA,QAjUA,OADA,MAEA,OACA,SAgpBE,YAAa,QAxyBf,MAFA,MACA,MAFA,MAFA,MACA,MAFA,MAFA,MACA,MAQE,cAAe,QACf,cAAe,MACf,qBAAsB,MACtB,iBAAkB,MAEpB,GACA,GACE,QAAS,EAAE,EAAE,EAAE,KACf,QAAS,QAAQ,EAAE,KAMrB,MACA,MAHA,MACA,MAHA,MACA,MAKE,aAAc,KACd,sBAAuB,KACvB,mBAAoB,KACpB,qBAAsB,KAExB,GACE,gBAAiB,QAEnB,GACE,gBAAiB,KAKnB,MAEE,gBAAiB,SAGnB,QACE,WAAY,OAGd,MADA,MAEE,eAAgB,OAElB,MACE,eAAgB,IAKlB,QACE,MAAO,KAcT,EAEE,6BAA8B,UAC9B,qBAAsB,UACtB,MAAO,KAKT,EACE,gBAAiB,aACjB,6BAA8B,aAC9B,qBAAsB,aACtB,MAAO,KAET,IACE,iBAAkB,QAEpB,IACE,iBAAkB,QAEpB,IACE,WAAY,QAiBd,EACE,OAAQ,QAEV,UACE,QAAS,WAEX,SACE,QAAS,YASX,KACA,IACA,KAEE,YAAa,OAEf,UACA,SACA,UACA,SACA,QACA,SACA,UACA,SACA,UACE,UAAW,QAEb,SACA,QACA,SACE,YAAa,QACb,YAAa,MAEf,SACE,QAAS,EAAE,KAGb,MADA,SAEE,QAAS,EAAE,OAQb,mBACE,WAAY,KAEZ,sBAAuB,KACvB,mBAAoB,KAFpB,AAGA,AACA,OAJc,IAGA,MACA,gBAEhB,SACE,mBAAoB,EAAE,EAAE,EAAE,IAAI,gBAC9B,WAAY,EAAE,EAAE,EAAE,IAAI,gBAItB,OAAQ,oBACR,OAAQ,IACR,MAAO,MACP,WAAY,oBACZ,WAAY,IACZ,YAAa,MACb,UAAW,OAgBb,OAHA,mBACA,kBACA,mBAEE,QAAS,OAAQ,MAEnB,iCACE,aAAc,KACd,sBAAuB,KACvB,mBAAoB,KACpB,qBAAsB,KAExB,IArmBE,aAAc,KAsmBd,OAAQ,KACR,MAAO,KAEP,WAAY,KACZ,YAAa,KACb,gBAAiB,KACjB,WAAY,OACZ,eAAgB,OAQlB,QACE,aAAc,QACd,aAAc,MA4EhB,QACE,QAAS,YACT,QAAS,YACT,QAAS,KAET,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,cACE,iBAAkB,EAClB,SAAU,KACV,KAAM,KAER,mCAtFE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KAoFd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,mCA/FE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KA6Fd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,mCAxGE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KAsGd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,mCAjHE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KA+Gd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,mCA1HE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KAwHd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,oCAnIE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KAiId,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,oCA5IE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KA0Id,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,oCArJE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KAmJd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,oCA9JE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KA4Jd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAGV,oCAvKE,WACE,aAAc,QACd,aAAc,MACd,WAAY,KAqKd,WACE,QAAS,YACT,QAAS,YACT,QAAS,KACT,YAAa,QACb,iBAAkB,QAClB,cAAe,QACf,gBAAiB,cAEnB,iBACE,iBAAkB,EAClB,SAAU,KACV,KAAM,MAMV,QACE,QAAS,SACT,QAAS,KAET,iBAAkB,IAClB,sBAAuB,IAEzB,mCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,mCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,mCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,mCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,mCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,oCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,oCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,oCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,oCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAG3B,oCACE,WACE,QAAS,SACT,QAAS,KACT,YAAa,QACb,iBAAkB,IAClB,sBAAuB,KAM3B,WACE,QAAS,SACT,MAAO,KAEP,YAAa,QACb,aAAc,QACd,WAAY,MACZ,YAAa,MACb,aAAc,MAGd,cAAe,MACf,QAAS,QACT,QAAS,MACT,OAAQ,EAEV,mBACE,cAAe,KACf,UAAW,KACX,cAAe,QACf,cAAe,MAKjB,kBACE,0BAA2B,EAC3B,eAAgB,EAChB,MAAO,EACP,iBAAkB,KAClB,SAAU,KACV,KAAM,KAKR,aACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,sBACA,sBACA,sBACA,sBACA,sBACA,sBACE,SAAU,QACV,SAAU,MAyLZ,SACE,QAAS,MAET,YAAa,MAEf,mCA3LE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MA8KZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,mCAhLE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MAmKZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,mCArKE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MAwJZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,mCA1JE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MA6IZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,mCA/IE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MAkIZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,oCApIE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MAuHZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,oCAzHE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MA4GZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,oCA9GE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MAiGZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,oCAnGE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MAsFZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,OAGjB,oCAxFE,gBACE,YAAa,KACb,qBAAsB,KACtB,kBAAmB,KACnB,oBAAqB,KACrB,YAAa,IAEf,yBACA,yBACA,yBACA,yBACA,yBACA,yBACE,SAAU,QACV,SAAU,MA2EZ,YACE,QAAS,MACT,YAAa,QACb,YAAa,MAiEf,aACE,QAAS,OACT,YAAa,GA7DjB,UACE,QAAS,OACT,YAAa,EAiEf,mBACE,QAAS,GACT,QAAS,MACT,MAAO,KA2ET,UACE,KAAM,UAKR,iCACE,UACE,KAAM,EACN,mBAAoB,WAkJxB,WACE,UAAW,KACX,UAAW,KAEb,gCACE,WACE,UAAW,MACX,gBAAiB,MAGrB,mBACE,UAAW,OACX,UAAW,KAEb,gCACE,mBACE,UAAW,MACX,gBAAiB,MAGrB,iBACE,UAAW,KACX,UAAW,KAEb,gCACE,iBACE,UAAW,MACX,gBAAiB,MAsUrB,SACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MA+F7B,UACE,UAAW,cAEb,UACE,UAAW,cAEb,UACE,UAAW,cAEb,UACE,UAAW,cAEb,UACE,UAAW,gBAEb,UACE,UAAW,cAEb,UACE,UAAW,gBAEb,UACE,UAAW,eAEb,mCApwBE,aACE,QAAS,OACT,YAAa,EAkEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAkFT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAoKxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MA+SrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAgH7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,mCAxxBE,aACE,QAAS,OACT,YAAa,EAmEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAyFT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAsLxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MAwRrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAiI7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,mCA5yBE,aACE,QAAS,OACT,YAAa,EAoEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAgGT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAwMxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MAiQrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAkJ7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,mCAh0BE,aACE,QAAS,OACT,YAAa,EAqEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAuGT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WA0NxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MA0OrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAmK7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,mCAp1BE,aACE,QAAS,OACT,YAAa,EAsEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KA8GT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WA4OxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MAmNrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAoL7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,oCAx2BE,aACE,QAAS,OACT,YAAa,EAuEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAqHT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WA8PxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MA4LrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAqM7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,oCA53BE,aACE,QAAS,OACT,YAAa,EAwEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KA4HT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAgRxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MAqKrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAsN7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,oCAh5BE,aACE,QAAS,OACT,YAAa,EAyEf,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAmIT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAkSxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MA8IrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAuO7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,oCAp6BE,aACE,QAAS,OACT,YAAa,EA0Ef,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KA0IT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAoTxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MAuHrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAwP7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,oCA32BE,sBACE,QAAS,GACT,QAAS,MACT,MAAO,KAiJT,aACE,KAAM,UAER,yBACE,SAAU,SAEZ,iCACE,aACE,KAAM,EACN,mBAAoB,WAsUxB,cACE,UAAW,KACX,UAAW,KAEb,gCACE,cACE,UAAW,MACX,gBAAiB,MAGrB,sBACE,UAAW,OACX,UAAW,KAEb,gCACE,sBACE,UAAW,MACX,gBAAiB,MAGrB,oBACE,UAAW,KACX,UAAW,KAEb,gCACE,oBACE,UAAW,MACX,gBAAiB,MAgGrB,YACE,iBAAkB,4DAClB,gBAAiB,IAAI,UACrB,gBAAiB,IAAI,IACrB,sBAAuB,IACvB,0BAA2B,MAyQ7B,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,cAEb,aACE,UAAW,gBAEb,aACE,UAAW,gBAGf,aACE,UAAW,cACX,YAAa,wCAEf,aACE,UAAW,cACX,YAAa,+CAEf,aACE,UAAW,cACX,YAAa,wCAEf,aACE,UAAW,cACX,YAAa,sCAEf,aACE,UAAW,gBACX,YAAa,wCAEf,aACE,UAAW,cACX,YAAa,sCAEf,aACE,UAAW,gBACX,YAAa,wCAEf,aACE,UAAW,eACX,YAAa,uCAEf,mCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,mCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,mCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,mCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,mCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,oCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,oCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,oCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,oCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAGjB,oCACE,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,+CAEf,gBACE,UAAW,cACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,cACX,YAAa,sCAEf,gBACE,UAAW,gBACX,YAAa,wCAEf,gBACE,UAAW,eACX,YAAa,wCAMjB,gCAAkC,2BAqEhC,WA5BA,OA6BE,WAAY,EACZ,YAAa,EACb,aAAc,EAGhB,mBArBA,MAFA,MACA,MAFA,MAFA,MACA,MAFA,MAFA,MACA,MA6BE,cAAe,EAtCjB,GAsDA,GACE,YAAa,EAJf,GAMA,GAoCA,KACE,YAAa,IAlIf,IADA,IAEE,eAAgB,SAYlB,WAVA,KAeA,GADA,GAEA,SAPA,OARA,GACA,GACA,GACA,GACA,GACA,GACA,GAKA,GAJA,EAGA,IAEA,GAIE,OAAQ,EAMV,OAJA,GAGA,GADA,GADA,GAIE,QAAS,EAEX,EAIA,IADA,IADA,EADA,EAIE,gBAAiB,KAEnB,GACE,WAAY,EAoHZ,YAAa,OAlGf,EACE,OAAQ,QAAQ,QAElB,UACE,QAAS,WAEX,SACE,QAAS,YAEX,QACE,aAAc,EAEhB,WAIE,QAAS,EAKX,sBACA,sBACA,sBACA,sBACA,sBACA,sBACE,SAAU,OAcZ,GAMA,IALE,YAAa,EAEf,GACE,YAAa,EAKf,aACE,YAAa,YAEf,aACE,YAAa,gBAEf,aACE,YAAa,YAEf,aACE,YAAa,cAEf,aACE,YAAa,YAEf,aACE,YAAa,cAEf,aACE,YAAa,YAEf,aACE,YAAa,YAcf,WAQA,QALA,GAGA,SAPA,OAMA,KAdA,GACA,GACA,GACA,GACA,GACA,GAKA,GAJA,EACA,IAMA,MAGA,SALA,GAOE,cAAe,OAKjB,SACE,OAAQ,KAEV,SACE,gBAAiB,IAAI","file":"xmeter.css","sourcesContent":["/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\\\n xmeter\n Version: 6.2.0\n Licence: MIT\n Repo : https://github.com/chharvey/xmeter.git\n Home : https://github.com/chharvey/xmeter#readme\n Author : Chris Harvey (https://chharvey.github.io/)\n\\*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/\n\n/*================================*\\\n reset.css\n\\*================================*/\n\n\nbody {\n text-align: start; /* HACK fallback */\n text-align: initial; /* fix unsupported browsers initial value */\n background: #fff;\n color: #000;\n}\n\nsup, sub {\n vertical-align: initial; /* HACK fallback */\n vertical-align: unset;\n}\nbody,\nh1, h2, h3, h4, h5, h6,\nhr,\np, figure, blockquote, pre,\nol, ul, dl,\ndd,\nfieldset {\n margin: initial; /* HACK fallback */\n margin: unset;\n}\nol, ul,\nth, td,\nlegend {\n padding: initial; /* HACK fallback */\n padding: unset;\n}\nh1, h2, h3, h4, h5, h6,\naddress,\npre,\nth,\nem, strong, i, small,\ndfn, b, var, cite, sup, sub,\ncode, kbd, samp {\n font: inherit;\n}\ncaption,\nth {\n text-align: inherit; /* HACK fallback */\n text-align: unset;\n}\npre {\n white-space: inherit; /* HACK fallback */\n white-space: unset;\n}\na,\nu, s,\nins, del {\n text-decoration: initial; /* HACK fallback */\n text-decoration: unset;\n}\nmark {\n color: inherit; /* HACK fallback */\n color: unset;\n}\n\n/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n * IE on Windows Phone and in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -ms-text-size-adjust: 100%; /* 2 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\n\nfigcaption,\nfigure,\nmain { /* 1 */\n display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\n\nfigure {\n margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n -webkit-box-sizing: content-box;\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * 1. Remove the gray background on active links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\n\na {\n background-color: transparent; /* 1 */\n -webkit-text-decoration-skip: objects; /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\n\nb,\nstrong {\n font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\n\ndfn {\n font-style: italic;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\n\nmark {\n background-color: #ff0;\n color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n * controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\nhtml [type=\"button\"], /* 1 */\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n -webkit-box-sizing: border-box;\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n display: inline-block; /* 1 */\n vertical-align: baseline; /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n -webkit-box-sizing: border-box;\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\n\ndetails, /* 1 */\nmenu {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Scripting\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\ncanvas {\n display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\n\ntemplate {\n display: none;\n}\n\n/* Hidden\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10-.\n */\n\n[hidden] {\n display: none;\n}\n\n/*================================*\\\n xmeter.less\n\\*================================*/\n/**\n * //////////////// CONTENTS ////////////////\n *\n * reset.css (above)...................strips all elements of all browser-default styles\n * normalize.css (above)...............(@necolas) addresses browser discrepancies\n *\n * BASE--------------------------------BARE UNCLASSED ELEMENTS\n * _base.css...........................unclassed html elements\n *\n * OBJECTS-----------------------------REUSABLE STRUCTURAL PATTERNS\n * List................................plain, unstyled, blocky list\n * Flex................................one-dimensional flexible box\n * Grid................................two-dimensional flexible box\n * Tablist.............................object containing tabs and panels\n *\n * COMPONENTS--------------------------SPECIFIC STYLE PATTERNS\n * Permalink...........................internal documentation link\n *\n * THEMES & HELPERS--------------------LOCATION-DEPENDENT STYLES\n * Block...............................gives a blocky look\n * Inline..............................a simple inline object\n * Clearfix............................creates a line break and clears floats\n * Hidden..............................visually hides an element\n * Measure.............................constrains an element’s inline-size for readability\n * Ruled...............................adds background lines\n *\n * ATOMS-------------------------------FUNCTIONAL CSS\n * fz..................................font-size\n *\n * HACKS-------------------------------HACKS\n * _hack.ie.less.......................IE-only styles\n */\n/*################################*\\\n xmeter | _base.less\n\\*################################*/\n*,\n*::before,\n*::after {\n content: none;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n -webkit-column-rule: 0 solid;\n column-rule: 0 solid;\n}\n@media print {\n *,\n *::before,\n *::after {\n background: transparent !important;\n -webkit-box-shadow: none !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n}\n*:not(input):not(button):not(select),\n*::before,\n*::after {\n border: 0 solid;\n}\nhtml {\n --line-height: 1.5;\n --lh: calc(var(--line-height) * 1rem);\n --vru: var(--lh);\n font-size: 100%;\n line-height: var(--line-height);\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np,\npre,\nfigure,\nblockquote,\nol,\nul,\ndl,\ntable,\nform,\nfieldset,\ntextarea,\ndetails {\n margin-bottom: var(--lh);\n margin-bottom: 1lh;\n -webkit-margin-after: var(--lh);\n margin-block-end: var(--lh);\n -webkit-margin-after: 1lh;\n margin-block-end: 1lh;\n}\nh1 {\n padding-top: var(--lh);\n padding-top: 1lh;\n -webkit-padding-before: var(--lh);\n padding-block-start: var(--lh);\n -webkit-padding-before: 1lh;\n padding-block-start: 1lh;\n}\nspan,\nbr,\nem,\nstrong,\ni,\nmark,\nu,\nsmall,\ns,\ndfn,\nb,\nabbr,\nvar,\nq,\ncite,\nsup,\nsub,\ndata,\ntime,\ncode,\nkbd,\nsamp,\nlabel {\n line-height: 0;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-weight: 700;\n}\nh1 {\n font-size: 3em;\n line-height: calc(var(--line-height) / 1.5);\n}\nh2 {\n font-size: 2em;\n line-height: calc(var(--line-height) / 1);\n}\nh3 {\n font-size: 1.5em;\n line-height: calc(var(--line-height) / 1.5);\n}\nh4 {\n font-size: 1em;\n line-height: calc(var(--line-height) / 1);\n}\nh5 {\n font-size: 0.75em;\n line-height: calc(var(--line-height) / 0.75);\n}\nh6 {\n font-size: 0.5em;\n line-height: calc(var(--line-height) / 0.5);\n}\nh1 {\n margin-top: initial;\n margin-top: unset;\n -webkit-margin-before: unset;\n margin-block-start: unset;\n}\nhr {\n display: none;\n}\npre {\n font-size: 0.75em;\n line-height: calc(var(--line-height) / 0.75);\n text-align: left;\n text-indent: 0;\n white-space: pre;\n overflow: auto;\n}\nfigure {\n margin-top: initial;\n margin-left: initial;\n margin-right: initial;\n margin-top: unset ;\n margin-left: unset ;\n margin-right: unset ;\n -webkit-margin-before: unset;\n margin-block-start: unset;\n margin-inline: unset;\n}\nli > ol,\nli > ul,\nli > dl,\ndt > ol,\ndt > ul,\ndt > dl,\ndd > ol,\ndd > ul,\ndd > dl {\n margin-bottom: initial;\n margin-bottom: unset;\n -webkit-margin-after: unset;\n margin-block-end: unset;\n}\nol,\nul {\n padding: 0 0 0 4rem;\n padding: logical 0 4rem 0 0;\n}\nli > ol,\nli > ul,\ndt > ol,\ndt > ul,\ndd > ol,\ndd > ul {\n padding-left: 2rem;\n -webkit-padding-start: 2rem;\n -moz-padding-start: 2rem;\n padding-inline-start: 2rem;\n}\nol {\n list-style-type: decimal;\n}\nul {\n list-style-type: disc;\n}\ndl {\n list-style: none;\n}\ntable {\n max-width: 100%;\n border-collapse: collapse;\n text-align: left;\n}\ncaption {\n text-align: center;\n}\nthead,\ntfoot {\n vertical-align: bottom;\n}\ntbody {\n vertical-align: top;\n}\nth {\n font-weight: 700;\n}\na[href] {\n color: #06c;\n}\nem {\n font-style: italic;\n}\nstrong {\n font-weight: 700;\n}\ni {\n font-style: italic;\n}\nmark {\n background-color: rgba(255, 225, 104, 0.5);\n}\nu {\n text-decoration: underline;\n -webkit-text-decoration-line: underline;\n text-decoration-line: underline;\n color: #080;\n}\nsmall {\n font-size: 0.75em;\n}\ns {\n text-decoration: line-through;\n -webkit-text-decoration-line: line-through;\n text-decoration-line: line-through;\n color: #b00;\n}\nins {\n background-color: #acf2bd;\n}\ndel {\n background-color: #fdb8c0;\n}\ndfn {\n font-style: inherit;\n font-weight: 700;\n}\nb {\n font-weight: 700;\n}\nabbr[title] {\n cursor: help;\n text-decoration: none;\n -webkit-text-decoration-line: initial;\n text-decoration-line: initial;\n -webkit-text-decoration-line: unset;\n text-decoration-line: unset;\n}\nvar {\n font-style: italic;\n}\nq {\n quotes: initial;\n}\nq::before {\n content: open-quote;\n}\nq::after {\n content: close-quote;\n}\ncite {\n font-style: italic;\n}\nsup,\nsub {\n font-size: 0.75em;\n}\ncode,\nkbd,\nsamp {\n font-size: 0.75em;\n white-space: nowrap;\n}\ncode code,\ncode kbd,\ncode samp,\nkbd code,\nkbd kbd,\nkbd samp,\nsamp code,\nsamp kbd,\nsamp samp {\n font-size: inherit;\n}\npre code,\npre kbd,\npre samp {\n white-space: inherit;\n white-space: unset;\n}\nfieldset {\n padding: 0 1rem;\n}\ntextarea,\ninput {\n padding: 0 0.25rem;\n}\ninput,\nbutton,\nselect,\ntextarea {\n line-height: inherit;\n}\nhtml body fieldset {\n margin-top: -2px;\n border-width: 1px;\n -webkit-margin-before: -2px;\n margin-block-start: -2px;\n border-style: solid;\n border-color: rgba(0, 0, 0, 0.25);\n}\ntextarea {\n -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);\n box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);\n}\ntextarea {\n display: block;\n height: calc(6 * var(--lh));\n height: 6lh;\n width: 30rem;\n block-size: calc(6 * var(--lh));\n block-size: 6lh;\n inline-size: 30rem;\n font-size: 0.75rem;\n}\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\nbutton,\nlabel {\n cursor: pointer;\n}\ninput:not([type=\"button\"]):not([type=\"reset\"]):not([type=\"submit\"]),\nselect {\n font-size: 0.75em;\n}\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\nbutton {\n padding: 0.125em 0.25em;\n}\nselect[multiple] > optgroup > option {\n padding-left: 1rem;\n -webkit-padding-start: 1rem;\n -moz-padding-start: 1rem;\n padding-inline-start: 1rem;\n}\nimg {\n height: auto;\n width: auto;\n max-width: 100%;\n block-size: auto;\n inline-size: auto;\n max-inline-size: 100%;\n font-style: italic;\n vertical-align: middle;\n}\nsummary {\n cursor: pointer;\n}\n/*################################*\\\n xmeter | _o-List.less\n\\*################################*/\n.o-List {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n}\n@media screen and (min-width: 30em) {\n .o-List-sK {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 45em) {\n .o-List-sM {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 60em) {\n .o-List-sG {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 75em) {\n .o-List-sT {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 90em) {\n .o-List-sP {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 30em) {\n .o-List-nK {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 45em) {\n .o-List-nM {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 60em) {\n .o-List-nG {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 75em) {\n .o-List-nT {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 90em) {\n .o-List-nP {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n/*################################*\\\n xmeter | _o-Flex.less\n\\*################################*/\n.o-Flex {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n}\n.o-Flex__Item {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n}\n@media screen and (min-width: 30em) {\n .o-Flex-sK {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-sK {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media screen and (min-width: 45em) {\n .o-Flex-sM {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-sM {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media screen and (min-width: 60em) {\n .o-Flex-sG {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-sG {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media screen and (min-width: 75em) {\n .o-Flex-sT {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-sT {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media screen and (min-width: 90em) {\n .o-Flex-sP {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-sP {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media not all and (min-width: 30em) {\n .o-Flex-nK {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-nK {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media not all and (min-width: 45em) {\n .o-Flex-nM {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-nM {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media not all and (min-width: 60em) {\n .o-Flex-nG {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-nG {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media not all and (min-width: 75em) {\n .o-Flex-nT {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-nT {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n@media not all and (min-width: 90em) {\n .o-Flex-nP {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n line-height: inherit;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n }\n .o-Flex__Item-nP {\n -webkit-box-flex: 1;\n -ms-flex: auto;\n flex: auto;\n }\n}\n/*################################*\\\n xmeter | _o-Grid.less\n\\*################################*/\n.o-Grid {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n}\n@media screen and (min-width: 30em) {\n .o-Grid-sK {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 45em) {\n .o-Grid-sM {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 60em) {\n .o-Grid-sG {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 75em) {\n .o-Grid-sT {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 90em) {\n .o-Grid-sP {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 30em) {\n .o-Grid-nK {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 45em) {\n .o-Grid-nM {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 60em) {\n .o-Grid-nG {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 75em) {\n .o-Grid-nT {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 90em) {\n .o-Grid-nP {\n display: -ms-grid;\n display: grid;\n line-height: inherit;\n -ms-grid-columns: 1fr;\n grid-template-columns: 1fr;\n }\n}\n/*################################*\\\n xmeter | _o-Tablist.less\n\\*################################*/\n.o-Tablist {\n display: contents;\n width: 100%;\n margin-top: initial;\n margin-left: initial;\n margin-right: initial;\n margin-top: unset ;\n margin-left: unset ;\n margin-right: unset ;\n -webkit-margin-before: unset;\n margin-block-start: unset;\n margin-inline: unset;\n padding: initial;\n padding: unset;\n border: 0;\n}\n.o-Tablist > .o-Flex {\n -ms-flex-wrap: wrap;\n flex-wrap: wrap;\n margin-bottom: initial;\n margin-bottom: unset;\n}\n.o-Tablist__Check {\n position: absolute;\n}\n.o-Tablist__Panel {\n -webkit-box-ordinal-group: 2;\n -ms-flex-order: 1;\n order: 1;\n -webkit-box-flex: 100%;\n -ms-flex: 100%;\n flex: 100%;\n}\n/*################################*\\\n xmeter | _c-Permalink.less\n\\*################################*/\n.c-Permalink {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n}\nh1:hover > .c-Permalink,\nh2:hover > .c-Permalink,\nh3:hover > .c-Permalink,\nh4:hover > .c-Permalink,\nh5:hover > .c-Permalink,\nh6:hover > .c-Permalink {\n position: initial;\n position: unset;\n}\n@media screen and (min-width: 30em) {\n .c-Permalink-sK {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sK,\n h2:hover > .c-Permalink-sK,\n h3:hover > .c-Permalink-sK,\n h4:hover > .c-Permalink-sK,\n h5:hover > .c-Permalink-sK,\n h6:hover > .c-Permalink-sK {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 45em) {\n .c-Permalink-sM {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sM,\n h2:hover > .c-Permalink-sM,\n h3:hover > .c-Permalink-sM,\n h4:hover > .c-Permalink-sM,\n h5:hover > .c-Permalink-sM,\n h6:hover > .c-Permalink-sM {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 60em) {\n .c-Permalink-sG {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sG,\n h2:hover > .c-Permalink-sG,\n h3:hover > .c-Permalink-sG,\n h4:hover > .c-Permalink-sG,\n h5:hover > .c-Permalink-sG,\n h6:hover > .c-Permalink-sG {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 75em) {\n .c-Permalink-sT {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sT,\n h2:hover > .c-Permalink-sT,\n h3:hover > .c-Permalink-sT,\n h4:hover > .c-Permalink-sT,\n h5:hover > .c-Permalink-sT,\n h6:hover > .c-Permalink-sT {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 90em) {\n .c-Permalink-sP {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sP,\n h2:hover > .c-Permalink-sP,\n h3:hover > .c-Permalink-sP,\n h4:hover > .c-Permalink-sP,\n h5:hover > .c-Permalink-sP,\n h6:hover > .c-Permalink-sP {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 30em) {\n .c-Permalink-nK {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nK,\n h2:hover > .c-Permalink-nK,\n h3:hover > .c-Permalink-nK,\n h4:hover > .c-Permalink-nK,\n h5:hover > .c-Permalink-nK,\n h6:hover > .c-Permalink-nK {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 45em) {\n .c-Permalink-nM {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nM,\n h2:hover > .c-Permalink-nM,\n h3:hover > .c-Permalink-nM,\n h4:hover > .c-Permalink-nM,\n h5:hover > .c-Permalink-nM,\n h6:hover > .c-Permalink-nM {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 60em) {\n .c-Permalink-nG {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nG,\n h2:hover > .c-Permalink-nG,\n h3:hover > .c-Permalink-nG,\n h4:hover > .c-Permalink-nG,\n h5:hover > .c-Permalink-nG,\n h6:hover > .c-Permalink-nG {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 75em) {\n .c-Permalink-nT {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nT,\n h2:hover > .c-Permalink-nT,\n h3:hover > .c-Permalink-nT,\n h4:hover > .c-Permalink-nT,\n h5:hover > .c-Permalink-nT,\n h6:hover > .c-Permalink-nT {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 90em) {\n .c-Permalink-nP {\n margin-left: 1rem;\n -webkit-margin-start: 1rem;\n -moz-margin-start: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nP,\n h2:hover > .c-Permalink-nP,\n h3:hover > .c-Permalink-nP,\n h4:hover > .c-Permalink-nP,\n h5:hover > .c-Permalink-nP,\n h6:hover > .c-Permalink-nP {\n position: initial;\n position: unset;\n }\n}\n/*################################*\\\n xmeter | _h-Block.less\n\\*################################*/\n.h-Block {\n display: block;\n line-height: inherit;\n line-height: unset;\n}\n@media screen and (min-width: 30em) {\n .h-Block-sK {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Block-sM {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Block-sG {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Block-sT {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Block-sP {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Block-nK {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Block-nM {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Block-nG {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Block-nT {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Block-nP {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n/*################################*\\\n xmeter | _h-Inline.less\n\\*################################*/\n.h-Inline {\n display: inline;\n line-height: 0;\n}\n@media screen and (min-width: 30em) {\n .h-Inline-sK {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Inline-sM {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Inline-sG {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Inline-sT {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Inline-sP {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Inline-nK {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Inline-nM {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Inline-nG {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Inline-nT {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Inline-nP {\n display: inline;\n line-height: 0;\n }\n}\n/*################################*\\\n xmeter | _h-Clearfix.less\n\\*################################*/\n.h-Clearfix::after {\n content: '';\n display: block;\n clear: both;\n}\n@media screen and (min-width: 30em) {\n .h-Clearfix-sK::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Clearfix-sM::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Clearfix-sG::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Clearfix-sT::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Clearfix-sP::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Clearfix-nK::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Clearfix-nM::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Clearfix-nG::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Clearfix-nT::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Clearfix-nP::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n/*################################*\\\n xmeter | _h-Hidden.less\n\\*################################*/\n.h-Hidden {\n left: -999999px;\n}\n.h-Hidden:not(:focus) {\n position: absolute;\n}\n@supports (inset-inline-start: 0) {\n .h-Hidden {\n left: 0;\n inset-inline-start: -999999px;\n }\n}\n@media screen and (min-width: 30em) {\n .h-Hidden-sK {\n left: -999999px;\n }\n .h-Hidden-sK:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sK {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 45em) {\n .h-Hidden-sM {\n left: -999999px;\n }\n .h-Hidden-sM:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sM {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 60em) {\n .h-Hidden-sG {\n left: -999999px;\n }\n .h-Hidden-sG:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sG {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 75em) {\n .h-Hidden-sT {\n left: -999999px;\n }\n .h-Hidden-sT:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sT {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 90em) {\n .h-Hidden-sP {\n left: -999999px;\n }\n .h-Hidden-sP:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sP {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 30em) {\n .h-Hidden-nK {\n left: -999999px;\n }\n .h-Hidden-nK:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nK {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 45em) {\n .h-Hidden-nM {\n left: -999999px;\n }\n .h-Hidden-nM:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nM {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 60em) {\n .h-Hidden-nG {\n left: -999999px;\n }\n .h-Hidden-nG:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nG {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 75em) {\n .h-Hidden-nT {\n left: -999999px;\n }\n .h-Hidden-nT:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nT {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 90em) {\n .h-Hidden-nP {\n left: -999999px;\n }\n .h-Hidden-nP:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nP {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n/*################################*\\\n xmeter | _h-Meaure.less\n\\*################################*/\n.h-Measure {\n max-width: 33em;\n max-width: 66ch;\n}\n@supports (max-inline-size: 1ch) {\n .h-Measure {\n max-width: unset;\n max-inline-size: 66ch;\n }\n}\n.h-Measure--narrow {\n max-width: 22.5em;\n max-width: 45ch;\n}\n@supports (max-inline-size: 1ch) {\n .h-Measure--narrow {\n max-width: unset;\n max-inline-size: 45ch;\n }\n}\n.h-Measure--wide {\n max-width: 45em;\n max-width: 90ch;\n}\n@supports (max-inline-size: 1ch) {\n .h-Measure--wide {\n max-width: unset;\n max-inline-size: 90ch;\n }\n}\n@media screen and (min-width: 30em) {\n .h-Measure-sK {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sK {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sK {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sK {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sK {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sK {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 45em) {\n .h-Measure-sM {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sM {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sM {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sM {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sM {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sM {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 60em) {\n .h-Measure-sG {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sG {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sG {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sG {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sG {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sG {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 75em) {\n .h-Measure-sT {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sT {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sT {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sT {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sT {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sT {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 90em) {\n .h-Measure-sP {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sP {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sP {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sP {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sP {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sP {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 30em) {\n .h-Measure-nK {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nK {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nK {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nK {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nK {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nK {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 45em) {\n .h-Measure-nM {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nM {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nM {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nM {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nM {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nM {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 60em) {\n .h-Measure-nG {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nG {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nG {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nG {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nG {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nG {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 75em) {\n .h-Measure-nT {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nT {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nT {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nT {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nT {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nT {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 90em) {\n .h-Measure-nP {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nP {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nP {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nP {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nP {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nP {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n/*################################*\\\n xmeter | _h-Ruled.less\n\\*################################*/\n.h-Ruled {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n}\n@media screen and (min-width: 30em) {\n .h-Ruled-sK {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Ruled-sM {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Ruled-sG {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Ruled-sT {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Ruled-sP {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Ruled-nK {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Ruled-nM {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Ruled-nG {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Ruled-nT {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Ruled-nP {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n/*################################*\\\n xmeter | _-fz.less\n\\*################################*/\n.-fz-peta {\n font-size: 6em !important;\n}\n.-fz-tera {\n font-size: 4em !important;\n}\n.-fz-giga {\n font-size: 3em !important;\n}\n.-fz-mega {\n font-size: 2em !important;\n}\n.-fz-kilo {\n font-size: 1.5em !important;\n}\n.-fz-norm {\n font-size: 1em !important;\n}\n.-fz-mill {\n font-size: 0.75em !important;\n}\n.-fz-micr {\n font-size: 0.5em !important;\n}\n@media screen and (min-width: 30em) {\n .-fz-peta-sK {\n font-size: 6em !important;\n }\n .-fz-tera-sK {\n font-size: 4em !important;\n }\n .-fz-giga-sK {\n font-size: 3em !important;\n }\n .-fz-mega-sK {\n font-size: 2em !important;\n }\n .-fz-kilo-sK {\n font-size: 1.5em !important;\n }\n .-fz-norm-sK {\n font-size: 1em !important;\n }\n .-fz-mill-sK {\n font-size: 0.75em !important;\n }\n .-fz-micr-sK {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 45em) {\n .-fz-peta-sM {\n font-size: 6em !important;\n }\n .-fz-tera-sM {\n font-size: 4em !important;\n }\n .-fz-giga-sM {\n font-size: 3em !important;\n }\n .-fz-mega-sM {\n font-size: 2em !important;\n }\n .-fz-kilo-sM {\n font-size: 1.5em !important;\n }\n .-fz-norm-sM {\n font-size: 1em !important;\n }\n .-fz-mill-sM {\n font-size: 0.75em !important;\n }\n .-fz-micr-sM {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 60em) {\n .-fz-peta-sG {\n font-size: 6em !important;\n }\n .-fz-tera-sG {\n font-size: 4em !important;\n }\n .-fz-giga-sG {\n font-size: 3em !important;\n }\n .-fz-mega-sG {\n font-size: 2em !important;\n }\n .-fz-kilo-sG {\n font-size: 1.5em !important;\n }\n .-fz-norm-sG {\n font-size: 1em !important;\n }\n .-fz-mill-sG {\n font-size: 0.75em !important;\n }\n .-fz-micr-sG {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 75em) {\n .-fz-peta-sT {\n font-size: 6em !important;\n }\n .-fz-tera-sT {\n font-size: 4em !important;\n }\n .-fz-giga-sT {\n font-size: 3em !important;\n }\n .-fz-mega-sT {\n font-size: 2em !important;\n }\n .-fz-kilo-sT {\n font-size: 1.5em !important;\n }\n .-fz-norm-sT {\n font-size: 1em !important;\n }\n .-fz-mill-sT {\n font-size: 0.75em !important;\n }\n .-fz-micr-sT {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 90em) {\n .-fz-peta-sP {\n font-size: 6em !important;\n }\n .-fz-tera-sP {\n font-size: 4em !important;\n }\n .-fz-giga-sP {\n font-size: 3em !important;\n }\n .-fz-mega-sP {\n font-size: 2em !important;\n }\n .-fz-kilo-sP {\n font-size: 1.5em !important;\n }\n .-fz-norm-sP {\n font-size: 1em !important;\n }\n .-fz-mill-sP {\n font-size: 0.75em !important;\n }\n .-fz-micr-sP {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 30em) {\n .-fz-peta-nK {\n font-size: 6em !important;\n }\n .-fz-tera-nK {\n font-size: 4em !important;\n }\n .-fz-giga-nK {\n font-size: 3em !important;\n }\n .-fz-mega-nK {\n font-size: 2em !important;\n }\n .-fz-kilo-nK {\n font-size: 1.5em !important;\n }\n .-fz-norm-nK {\n font-size: 1em !important;\n }\n .-fz-mill-nK {\n font-size: 0.75em !important;\n }\n .-fz-micr-nK {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 45em) {\n .-fz-peta-nM {\n font-size: 6em !important;\n }\n .-fz-tera-nM {\n font-size: 4em !important;\n }\n .-fz-giga-nM {\n font-size: 3em !important;\n }\n .-fz-mega-nM {\n font-size: 2em !important;\n }\n .-fz-kilo-nM {\n font-size: 1.5em !important;\n }\n .-fz-norm-nM {\n font-size: 1em !important;\n }\n .-fz-mill-nM {\n font-size: 0.75em !important;\n }\n .-fz-micr-nM {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 60em) {\n .-fz-peta-nG {\n font-size: 6em !important;\n }\n .-fz-tera-nG {\n font-size: 4em !important;\n }\n .-fz-giga-nG {\n font-size: 3em !important;\n }\n .-fz-mega-nG {\n font-size: 2em !important;\n }\n .-fz-kilo-nG {\n font-size: 1.5em !important;\n }\n .-fz-norm-nG {\n font-size: 1em !important;\n }\n .-fz-mill-nG {\n font-size: 0.75em !important;\n }\n .-fz-micr-nG {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 75em) {\n .-fz-peta-nT {\n font-size: 6em !important;\n }\n .-fz-tera-nT {\n font-size: 4em !important;\n }\n .-fz-giga-nT {\n font-size: 3em !important;\n }\n .-fz-mega-nT {\n font-size: 2em !important;\n }\n .-fz-kilo-nT {\n font-size: 1.5em !important;\n }\n .-fz-norm-nT {\n font-size: 1em !important;\n }\n .-fz-mill-nT {\n font-size: 0.75em !important;\n }\n .-fz-micr-nT {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 90em) {\n .-fz-peta-nP {\n font-size: 6em !important;\n }\n .-fz-tera-nP {\n font-size: 4em !important;\n }\n .-fz-giga-nP {\n font-size: 3em !important;\n }\n .-fz-mega-nP {\n font-size: 2em !important;\n }\n .-fz-kilo-nP {\n font-size: 1.5em !important;\n }\n .-fz-norm-nP {\n font-size: 1em !important;\n }\n .-fz-mill-nP {\n font-size: 0.75em !important;\n }\n .-fz-micr-nP {\n font-size: 0.5em !important;\n }\n}\n.-fz-el-peta {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n}\n.-fz-el-tera {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n}\n.-fz-el-giga {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n}\n.-fz-el-mega {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n}\n.-fz-el-kilo {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n}\n.-fz-el-norm {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n}\n.-fz-el-mill {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n}\n.-fz-el-micr {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n}\n@media screen and (min-width: 30em) {\n .-fz-el-peta-sK {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sK {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sK {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sK {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sK {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sK {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sK {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sK {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 45em) {\n .-fz-el-peta-sM {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sM {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sM {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sM {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sM {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sM {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sM {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sM {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 60em) {\n .-fz-el-peta-sG {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sG {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sG {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sG {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sG {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sG {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sG {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sG {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 75em) {\n .-fz-el-peta-sT {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sT {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sT {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sT {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sT {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sT {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sT {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sT {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 90em) {\n .-fz-el-peta-sP {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sP {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sP {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sP {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sP {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sP {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sP {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sP {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 30em) {\n .-fz-el-peta-nK {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nK {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nK {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nK {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nK {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nK {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nK {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nK {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 45em) {\n .-fz-el-peta-nM {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nM {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nM {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nM {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nM {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nM {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nM {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nM {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 60em) {\n .-fz-el-peta-nG {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nG {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nG {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nG {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nG {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nG {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nG {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nG {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 75em) {\n .-fz-el-peta-nT {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nT {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nT {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nT {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nT {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nT {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nT {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nT {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 90em) {\n .-fz-el-peta-nP {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nP {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nP {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nP {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nP {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nP {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nP {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nP {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n/*################################*\\\n xmeter | _hack.ie.less\n\\*################################*/\n@media (-ms-high-contrast: none), (-ms-high-contrast: active) {\n sup,\n sub {\n vertical-align: baseline;\n }\n body,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n hr,\n p,\n figure,\n blockquote,\n pre,\n ol,\n ul,\n dl,\n dd,\n fieldset {\n margin: 0;\n }\n ol,\n ul,\n th,\n td,\n legend {\n padding: 0;\n }\n a,\n u,\n s,\n ins,\n del {\n text-decoration: none;\n }\n h1 {\n margin-top: 0;\n }\n figure {\n margin-top: 0;\n margin-left: 0;\n margin-right: 0;\n }\n li > ol,\n li > ul,\n li > dl,\n dt > ol,\n dt > ul,\n dt > dl,\n dd > ol,\n dd > ul,\n dd > dl {\n margin-bottom: 0;\n }\n q {\n quotes: '\\201c' '\\201d';\n }\n q::before {\n content: open-quote;\n }\n q::after {\n content: close-quote;\n }\n .o-List {\n padding-left: 0;\n }\n .o-Tablist {\n margin-top: 0;\n margin-left: 0;\n margin-right: 0;\n padding: 0;\n }\n .o-Tablist > .o-Flex {\n margin-bottom: 0;\n }\n h1:hover > .c-Permalink,\n h2:hover > .c-Permalink,\n h3:hover > .c-Permalink,\n h4:hover > .c-Permalink,\n h5:hover > .c-Permalink,\n h6:hover > .c-Permalink {\n position: static;\n }\n h1 {\n line-height: 1;\n }\n h2 {\n line-height: 1.5;\n }\n h3 {\n line-height: 1;\n }\n h4 {\n line-height: 1.5;\n }\n h5 {\n line-height: 2;\n }\n h6 {\n line-height: 3;\n }\n pre {\n line-height: 2;\n }\n .-fz-el-peta {\n line-height: 1 !important;\n }\n .-fz-el-tera {\n line-height: 1.125 !important;\n }\n .-fz-el-giga {\n line-height: 1 !important;\n }\n .-fz-el-mega {\n line-height: 1.5 !important;\n }\n .-fz-el-kilo {\n line-height: 1 !important;\n }\n .-fz-el-norm {\n line-height: 1.5 !important;\n }\n .-fz-el-mill {\n line-height: 2 !important;\n }\n .-fz-el-micr {\n line-height: 3 !important;\n }\n html {\n line-height: 1.5;\n }\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n p,\n pre,\n figure,\n blockquote,\n ol,\n ul,\n dl,\n table,\n form,\n fieldset,\n textarea,\n details {\n margin-bottom: 1.5rem;\n }\n h1 {\n padding-top: 1.5rem;\n }\n textarea {\n height: 9rem;\n }\n .h-Ruled {\n background-size: 1px 1.5rem;\n }\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["../../node_modules/normalize.css/normalize.css","xmeter.css","reset.css","_base.less","_o-List.less","_h-Hidden.less","_o-Tablist.less","__tool.fontsize.less","_h-Block.less","_o-Flex.less","_o-Grid.less","__tool.delims.less","__tool.borders.less","_c-Permalink.less","_h-Inline.less","_h-Clearfix.less","_h-Measure.less","_h-Constrain.less","_h-Ruled.less","_-fz.less","_hack.ie.less"],"names":[],"mappings":"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AuC,gBZlCrC,UAAA,cACA,YAAA,wCYiCwE,gBZlCxE,UAAA,cACA,YAAA,+CYiC2G,gBZlC3G,UAAA,cACA,YAAA,wCYiC8I,gBZlC9I,UAAA,cACA,YAAA,sCYiCiL,gBZlCjL,UAAA,gBACA,YAAA,wCYiCoN,gBZlCpN,UAAA,cACA,YAAA,sCYiCuP,gBZlCvP,UAAA,gBACA,YAAA,wCYiC0R,gBZlC1R,UAAA,eACA,YAAA,wCYkCF,mCAAuC,gBZnCrC,UAAA,cACA,YAAA,wCYkCwE,gBZnCxE,UAAA,cACA,YAAA,+CYkC2G,gBZnC3G,UAAA,cACA,YAAA,wCYkC8I,gBZnC9I,UAAA,cACA,YAAA,sCYkCiL,gBZnCjL,UAAA,gBACA,YAAA,wCYkCoN,gBZnCpN,UAAA,cACA,YAAA,sCYkCuP,gBZnCvP,UAAA,gBACA,YAAA,wCYkC0R,gBZnC1R,UAAA,eACA,YAAA,wCYmCF,oCAAuC,gBZpCrC,UAAA,cACA,YAAA,wCYmCwE,gBZpCxE,UAAA,cACA,YAAA,+CYmC2G,gBZpC3G,UAAA,cACA,YAAA,wCYmC8I,gBZpC9I,UAAA,cACA,YAAA,sCYmCiL,gBZpCjL,UAAA,gBACA,YAAA,wCYmCoN,gBZpCpN,UAAA,cACA,YAAA,sCYmCuP,gBZpCvP,UAAA,gBACA,YAAA,wCYmC0R,gBZpC1R,UAAA,eACA,YAAA,wCYoCF,oCAAuC,gBZrCrC,UAAA,cACA,YAAA,wCYoCwE,gBZrCxE,UAAA,cACA,YAAA,+CYoC2G,gBZrC3G,UAAA,cACA,YAAA,wCYoC8I,gBZrC9I,UAAA,cACA,YAAA,sCYoCiL,gBZrCjL,UAAA,gBACA,YAAA,wCYoCoN,gBZrCpN,UAAA,cACA,YAAA,sCYoCuP,gBZrCvP,UAAA,gBACA,YAAA,wCYoC0R,gBZrC1R,UAAA,eACA,YAAA,wCYqCF,oCAAuC,gBZtCrC,UAAA,cACA,YAAA,wCYqCwE,gBZtCxE,UAAA,cACA,YAAA,+CYqC2G,gBZtC3G,UAAA,cACA,YAAA,wCYqC8I,gBZtC9I,UAAA,cACA,YAAA,sCYqCiL,gBZtCjL,UAAA,gBACA,YAAA,wCYqCoN,gBZtCpN,UAAA,cACA,YAAA,sCYqCuP,gBZtCvP,UAAA,gBACA,YAAA,wCYqC0R,gBZtC1R,UAAA,eACA,YAAA,wCYsCF,oCAAuC,gBZvCrC,UAAA,cACA,YAAA,wCYsCwE,gBZvCxE,UAAA,cACA,YAAA,+CYsC2G,gBZvC3G,UAAA,cACA,YAAA,wCYsC8I,gBZvC9I,UAAA,cACA,YAAA,sCYsCiL,gBZvCjL,UAAA,gBACA,YAAA,wCYsCoN,gBZvCpN,UAAA,cACA,YAAA,sCYsCuP,gBZvCvP,UAAA,gBACA,YAAA,wCYsC0R,gBZvC1R,UAAA,eACA,YAAA,wCYuCF,oCAAuC,gBZxCrC,UAAA,cACA,YAAA,wCYuCwE,gBZxCxE,UAAA,cACA,YAAA,+CYuC2G,gBZxC3G,UAAA,cACA,YAAA,wCYuC8I,gBZxC9I,UAAA,cACA,YAAA,sCYuCiL,gBZxCjL,UAAA,gBACA,YAAA,wCYuCoN,gBZxCpN,UAAA,cACA,YAAA,sCYuCuP,gBZxCvP,UAAA,gBACA,YAAA,wCYuC0R,gBZxC1R,UAAA,eACA,YAAA,wCarBF,gCAAA,2BA8DI,WAtBE,OAuBA,WAAA,EACA,YAAA,EACA,aAAA,EAEA,mBnBqlGJ,MAFA,MACA,MAFA,MAFA,MACA,MAFA,MmBlmGM,MnBimGN,MmB7kGM,cAAA,EA/BF,GA+DF,GAAK,YAAA,EADL,GAEA,GAmBA,KACE,YAAA,InB2+FJ,ImBzlGI,IACE,eAAA,SnBqmGN,WmBnmGI,KnBwmGJ,GADA,GAEA,SAPA,OARA,GACA,GACA,GACA,GACA,GACA,GACA,GAKA,GAJA,EAGA,IAEA,GmB/lGM,OAAA,EnBymGN,OmBvmGI,GnBsmGJ,GADA,GADA,GmBjmGM,QAAA,EAEF,EnBymGJ,IADA,IADA,EADA,EmBnmGM,gBAAA,KAMF,GACE,WAAA,EA8FF,YAAA,OA9EA,EThEJ,OAAA,QAAA,QACA,UAAY,QAAA,WACZ,SAAY,QAAA,YSkEV,QACE,aAAA,EAGF,WAIE,QAAA,EAOA,sBnBwmGJ,sBACA,sBACA,sBACA,sBACA,sBmBtmGM,SAAA,OAuBJ,GAEA,IAFK,YAAA,EACL,GAAK,YAAA,EAIL,aAAe,YAAA,YACf,aAAe,YAAA,gBACf,aAAe,YAAA,YACf,aAAe,YAAA,cACf,aAAe,YAAA,YACf,aAAe,YAAA,cACf,aAAe,YAAA,YACf,aAAe,YAAA,YnB+nGjB,WAQA,QALA,GAGA,SAPA,OAMA,KmB3nGE,GnB8mGF,GACA,GACA,GACA,GACA,GAKA,GAJA,EACA,IAMA,MAGA,SALA,GmBlnGI,cAAA,OAKF,SACE,OAAA,KAEF,SACE,gBAAA,IAAA","file":"xmeter.css","sourcesContent":["/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n * IE on Windows Phone and in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -ms-text-size-adjust: 100%; /* 2 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\n\nfigcaption,\nfigure,\nmain { /* 1 */\n display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\n\nfigure {\n margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * 1. Remove the gray background on active links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\n\na {\n background-color: transparent; /* 1 */\n -webkit-text-decoration-skip: objects; /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\n\nb,\nstrong {\n font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\n\ndfn {\n font-style: italic;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\n\nmark {\n background-color: #ff0;\n color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n * controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\nhtml [type=\"button\"], /* 1 */\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n display: inline-block; /* 1 */\n vertical-align: baseline; /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\n\ndetails, /* 1 */\nmenu {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Scripting\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\ncanvas {\n display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\n\ntemplate {\n display: none;\n}\n\n/* Hidden\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10-.\n */\n\n[hidden] {\n display: none;\n}\n","/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*\\\n xmeter\n Version: 6.3.0-alpha.2\n Licence: MIT\n Repo : https://github.com/chharvey/xmeter.git\n Home : https://github.com/chharvey/xmeter#readme\n Author : Chris Harvey (https://chharvey.github.io/)\n\\*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/\n\n/*================================*\\\n reset.css\n\\*================================*/\n\n\nbody {\n text-align: start; /* HACK fallback */\n text-align: initial; /* fix unsupported browsers initial value */\n background: #fff;\n color: #000;\n}\n\nsup, sub {\n vertical-align: initial; /* HACK fallback */\n vertical-align: unset;\n}\nbody,\nh1, h2, h3, h4, h5, h6,\nhr,\np, figure, blockquote, pre,\nol, ul, dl,\ndd,\nfieldset {\n margin: initial; /* HACK fallback */\n margin: unset;\n}\nol, ul,\nth, td,\nlegend {\n padding: initial; /* HACK fallback */\n padding: unset;\n}\nh1, h2, h3, h4, h5, h6,\naddress,\npre,\nth,\nem, strong, i, small,\ndfn, b, var, cite, sup, sub,\ncode, kbd, samp {\n font: inherit;\n}\ncaption,\nth {\n text-align: inherit; /* HACK fallback */\n text-align: unset;\n}\npre {\n white-space: inherit; /* HACK fallback */\n white-space: unset;\n}\na,\nu, s,\nins, del {\n text-decoration: initial; /* HACK fallback */\n text-decoration: unset;\n}\nmark {\n color: inherit; /* HACK fallback */\n color: unset;\n}\n\n/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */\n\n/* Document\n ========================================================================== */\n\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in\n * IE on Windows Phone and in iOS.\n */\n\nhtml {\n line-height: 1.15; /* 1 */\n -ms-text-size-adjust: 100%; /* 2 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\narticle,\naside,\nfooter,\nheader,\nnav,\nsection {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n * 1. Add the correct display in IE.\n */\n\nfigcaption,\nfigure,\nmain { /* 1 */\n display: block;\n}\n\n/**\n * Add the correct margin in IE 8.\n */\n\nfigure {\n margin: 1em 40px;\n}\n\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n\n/**\n * 1. Remove the gray background on active links in IE 10.\n * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.\n */\n\na {\n background-color: transparent; /* 1 */\n -webkit-text-decoration-skip: objects; /* 2 */\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Prevent the duplicate application of `bolder` by the next rule in Safari 6.\n */\n\nb,\nstrong {\n font-weight: inherit;\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\n\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font style in Android 4.3-.\n */\n\ndfn {\n font-style: italic;\n}\n\n/**\n * Add the correct background and color in IE 9-.\n */\n\nmark {\n background-color: #ff0;\n color: #000;\n}\n\n/**\n * Add the correct font size in all browsers.\n */\n\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\naudio,\nvideo {\n display: inline-block;\n}\n\n/**\n * Add the correct display in iOS 4-7.\n */\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n/**\n * Remove the border on images inside links in IE 10-.\n */\n\nimg {\n border-style: none;\n}\n\n/**\n * Hide the overflow in IE.\n */\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n/* Forms\n ========================================================================== */\n\n/**\n * Remove the margin in Firefox and Safari.\n */\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n margin: 0;\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\n\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\n\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n * controls in Android 4.\n * 2. Correct the inability to style clickable types in iOS and Safari.\n */\n\nbutton,\nhtml [type=\"button\"], /* 1 */\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; /* 2 */\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\n\nbutton:-moz-focusring,\n[type=\"button\"]:-moz-focusring,\n[type=\"reset\"]:-moz-focusring,\n[type=\"submit\"]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\n\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * 1. Add the correct display in IE 9-.\n * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\n\nprogress {\n display: inline-block; /* 1 */\n vertical-align: baseline; /* 2 */\n}\n\n/**\n * Remove the default vertical scrollbar in IE.\n */\n\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10-.\n * 2. Remove the padding in IE 10-.\n */\n\n[type=\"checkbox\"],\n[type=\"radio\"] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n\n[type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n */\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n\n/*\n * Add the correct display in IE 9-.\n * 1. Add the correct display in Edge, IE, and Firefox.\n */\n\ndetails, /* 1 */\nmenu {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\n\nsummary {\n display: list-item;\n}\n\n/* Scripting\n ========================================================================== */\n\n/**\n * Add the correct display in IE 9-.\n */\n\ncanvas {\n display: inline-block;\n}\n\n/**\n * Add the correct display in IE.\n */\n\ntemplate {\n display: none;\n}\n\n/* Hidden\n ========================================================================== */\n\n/**\n * Add the correct display in IE 10-.\n */\n\n[hidden] {\n display: none;\n}\n\n/*================================*\\\n xmeter.less\n\\*================================*/\n/**\n * //////////////// CONTENTS ////////////////\n *\n * reset.css (above)...................strips all elements of all browser-default styles\n * normalize.css (above)...............(@necolas) addresses browser discrepancies\n *\n * BASE--------------------------------BARE UNCLASSED ELEMENTS\n * _base.css...........................unclassed html elements\n *\n * OBJECTS-----------------------------REUSABLE STRUCTURAL PATTERNS\n * List................................plain, unstyled, blocky list\n * Flex................................one-dimensional flexible box\n * Grid................................two-dimensional flexible box\n * Tablist.............................object containing tabs and panels\n *\n * COMPONENTS--------------------------SPECIFIC STYLE PATTERNS\n * Permalink...........................internal documentation link\n *\n * THEMES & HELPERS--------------------LOCATION-DEPENDENT STYLES\n * Block...............................gives a blocky look\n * Inline..............................a simple inline object\n * Clearfix............................creates a line break and clears floats\n * Hidden..............................visually hides an element\n * Measure.............................constrains an element’s inline-size for readability\n * Constrain...........................constrains a container’s inline-size for readability\n * Ruled...............................adds background lines\n *\n * ATOMS-------------------------------FUNCTIONAL CSS\n * fz..................................font-size\n *\n * HACKS-------------------------------HACKS\n * _hack.ie.less.......................IE-only styles\n */\n/*################################*\\\n xmeter | _base.less\n\\*################################*/\n*,\n*::before,\n*::after {\n content: none;\n box-sizing: border-box;\n column-rule: 0 solid;\n}\n@media print {\n *,\n *::before,\n *::after {\n background: transparent !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n}\n*:not(input):not(button):not(select),\n*::before,\n*::after {\n border: 0 solid;\n}\nhtml {\n --line-height: 1.5;\n --lh: calc(var(--line-height) * 1rem);\n --vru: var(--lh);\n font-size: 100%;\n line-height: var(--line-height);\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\np,\npre,\nfigure,\nblockquote,\nol,\nul,\ndl,\ntable,\nform,\nfieldset,\ntextarea,\ndetails {\n margin-bottom: var(--lh);\n margin-bottom: 1lh;\n}\n@supports (margin-block-end: var(--variable)) {\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n p,\n pre,\n figure,\n blockquote,\n ol,\n ul,\n dl,\n table,\n form,\n fieldset,\n textarea,\n details {\n margin-bottom: unset;\n margin-block-end: var(--lh);\n margin-block-end: 1lh;\n }\n}\nh1 {\n padding-top: var(--lh);\n padding-top: 1lh;\n}\n@supports (padding-block-start: var(--variable)) {\n h1 {\n padding-top: unset;\n padding-block-start: var(--lh);\n padding-block-start: 1lh;\n }\n}\nspan,\nbr,\nem,\nstrong,\ni,\nmark,\nu,\nsmall,\ns,\ndfn,\nb,\nabbr,\nvar,\nq,\ncite,\nsup,\nsub,\ndata,\ntime,\ncode,\nkbd,\nsamp,\nlabel {\n line-height: 0;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n font-weight: 700;\n}\nh1 {\n font-size: 3em;\n line-height: calc(var(--line-height) / 1.5);\n}\nh2 {\n font-size: 2em;\n line-height: calc(var(--line-height) / 1);\n}\nh3 {\n font-size: 1.5em;\n line-height: calc(var(--line-height) / 1.5);\n}\nh4 {\n font-size: 1em;\n line-height: calc(var(--line-height) / 1);\n}\nh5 {\n font-size: 0.75em;\n line-height: calc(var(--line-height) / 0.75);\n}\nh6 {\n font-size: 0.5em;\n line-height: calc(var(--line-height) / 0.5);\n}\nh1 {\n margin-top: initial;\n margin-top: unset;\n margin-block-start: unset;\n}\nhr {\n display: none;\n}\npre {\n font-size: 0.75em;\n line-height: calc(var(--line-height) / 0.75);\n text-align: left;\n text-indent: 0;\n white-space: pre;\n overflow: auto;\n}\nfigure {\n margin-top: initial;\n margin-left: initial;\n margin-right: initial;\n margin-top: unset ;\n margin-left: unset ;\n margin-right: unset ;\n margin-block-start: unset;\n margin-inline: unset;\n}\nli > ol,\nli > ul,\nli > dl,\ndt > ol,\ndt > ul,\ndt > dl,\ndd > ol,\ndd > ul,\ndd > dl {\n margin-bottom: initial;\n margin-bottom: unset;\n margin-block-end: unset;\n}\nol,\nul {\n padding: 0 0 0 4rem;\n padding: logical 0 4rem 0 0;\n}\nli > ol,\nli > ul,\ndt > ol,\ndt > ul,\ndd > ol,\ndd > ul {\n padding-left: 2rem;\n}\n@supports (padding-inline-start: 1rem) {\n li > ol,\n li > ul,\n dt > ol,\n dt > ul,\n dd > ol,\n dd > ul {\n padding-left: unset;\n padding-inline-start: 2rem;\n }\n}\nol {\n list-style-type: decimal;\n}\nul {\n list-style-type: disc;\n}\ndl {\n list-style: none;\n}\ntable {\n max-width: 100%;\n border-collapse: collapse;\n text-align: left;\n}\ncaption {\n text-align: center;\n}\nthead,\ntfoot {\n vertical-align: bottom;\n}\ntbody {\n vertical-align: top;\n}\nth {\n font-weight: 700;\n}\na[href] {\n color: #06c;\n}\nem {\n font-style: italic;\n}\nstrong {\n font-weight: 700;\n}\ni {\n font-style: italic;\n}\nmark {\n background-color: rgba(255, 225, 104, 0.5);\n}\nu {\n text-decoration: underline;\n text-decoration-line: underline;\n color: #080;\n}\nsmall {\n font-size: 0.75em;\n}\ns {\n text-decoration: line-through;\n text-decoration-line: line-through;\n color: #b00;\n}\nins {\n background-color: #acf2bd;\n}\ndel {\n background-color: #fdb8c0;\n}\ndfn {\n font-style: inherit;\n font-weight: 700;\n}\nb {\n font-weight: 700;\n}\nabbr[title] {\n cursor: help;\n text-decoration: none;\n text-decoration-line: initial;\n text-decoration-line: unset;\n}\nvar {\n font-style: italic;\n}\nq {\n quotes: initial;\n}\nq::before {\n content: open-quote;\n}\nq::after {\n content: close-quote;\n}\ncite {\n font-style: italic;\n}\nsup,\nsub {\n font-size: 0.75em;\n}\ncode,\nkbd,\nsamp {\n font-size: 0.75em;\n white-space: nowrap;\n}\ncode code,\ncode kbd,\ncode samp,\nkbd code,\nkbd kbd,\nkbd samp,\nsamp code,\nsamp kbd,\nsamp samp {\n font-size: inherit;\n}\npre code,\npre kbd,\npre samp {\n white-space: inherit;\n white-space: unset;\n}\nfieldset {\n padding: 0 1rem;\n}\ntextarea,\ninput {\n padding: 0 0.25rem;\n}\ninput,\nbutton,\nselect,\ntextarea {\n line-height: inherit;\n}\nhtml body fieldset {\n margin-top: -2px;\n border-width: 1px;\n margin-block-start: -2px;\n border-style: solid;\n border-color: rgba(0, 0, 0, 0.25);\n}\ntextarea {\n box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);\n}\ntextarea {\n display: block;\n height: calc(6 * var(--lh));\n height: 6lh;\n width: 30rem;\n block-size: calc(6 * var(--lh));\n block-size: 6lh;\n inline-size: 30rem;\n font-size: 0.75rem;\n}\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\nbutton,\nlabel {\n cursor: pointer;\n}\ninput:not([type=\"button\"]):not([type=\"reset\"]):not([type=\"submit\"]),\nselect {\n font-size: 0.75em;\n}\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\nbutton {\n padding: 0.125em 0.25em;\n}\nselect[multiple] > optgroup > option {\n padding-left: 1rem;\n padding-inline-start: 1rem;\n}\nimg {\n height: auto;\n width: auto;\n max-width: 100%;\n block-size: auto;\n inline-size: auto;\n max-inline-size: 100%;\n font-style: italic;\n vertical-align: middle;\n}\nsummary {\n cursor: pointer;\n}\ndialog {\n padding: calc(0.5 * var(--lh)) 1rem;\n padding: 0.5lh 1rem;\n}\ndialog::backdrop {\n background-color: rgba(0, 0, 0, 0.25);\n}\n/*################################*\\\n xmeter | _o-List.less\n\\*################################*/\n.o-List {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n}\n@media screen and (min-width: 30em) {\n .o-List-sK {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 45em) {\n .o-List-sM {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 60em) {\n .o-List-sG {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 75em) {\n .o-List-sT {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media screen and (min-width: 90em) {\n .o-List-sP {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 30em) {\n .o-List-nK {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 45em) {\n .o-List-nM {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 60em) {\n .o-List-nG {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 75em) {\n .o-List-nT {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n@media not all and (min-width: 90em) {\n .o-List-nP {\n padding-left: initial;\n padding-left: unset;\n list-style: none;\n }\n}\n/*################################*\\\n xmeter | _o-Flex.less\n\\*################################*/\n.o-Flex {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n}\n.o-Flex__Item {\n flex: auto;\n}\n@media screen and (min-width: 30em) {\n .o-Flex-sK {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-sK {\n flex: auto;\n }\n}\n@media screen and (min-width: 45em) {\n .o-Flex-sM {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-sM {\n flex: auto;\n }\n}\n@media screen and (min-width: 60em) {\n .o-Flex-sG {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-sG {\n flex: auto;\n }\n}\n@media screen and (min-width: 75em) {\n .o-Flex-sT {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-sT {\n flex: auto;\n }\n}\n@media screen and (min-width: 90em) {\n .o-Flex-sP {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-sP {\n flex: auto;\n }\n}\n@media not all and (min-width: 30em) {\n .o-Flex-nK {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-nK {\n flex: auto;\n }\n}\n@media not all and (min-width: 45em) {\n .o-Flex-nM {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-nM {\n flex: auto;\n }\n}\n@media not all and (min-width: 60em) {\n .o-Flex-nG {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-nG {\n flex: auto;\n }\n}\n@media not all and (min-width: 75em) {\n .o-Flex-nT {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-nT {\n flex: auto;\n }\n}\n@media not all and (min-width: 90em) {\n .o-Flex-nP {\n display: flex;\n line-height: inherit;\n justify-content: space-between;\n }\n .o-Flex__Item-nP {\n flex: auto;\n }\n}\n/*################################*\\\n xmeter | _o-Grid.less\n\\*################################*/\n.o-Grid {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n}\n@media screen and (min-width: 30em) {\n .o-Grid-sK {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 45em) {\n .o-Grid-sM {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 60em) {\n .o-Grid-sG {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 75em) {\n .o-Grid-sT {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media screen and (min-width: 90em) {\n .o-Grid-sP {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 30em) {\n .o-Grid-nK {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 45em) {\n .o-Grid-nM {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 60em) {\n .o-Grid-nG {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 75em) {\n .o-Grid-nT {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n@media not all and (min-width: 90em) {\n .o-Grid-nP {\n display: grid;\n line-height: inherit;\n grid-template-columns: 1fr;\n }\n}\n/*################################*\\\n xmeter | _o-Tablist.less\n\\*################################*/\n.o-Tablist {\n display: contents;\n width: 100%;\n margin-top: initial;\n margin-left: initial;\n margin-right: initial;\n margin-top: unset ;\n margin-left: unset ;\n margin-right: unset ;\n margin-block-start: unset;\n margin-inline: unset;\n padding: initial;\n padding: unset;\n border: 0;\n}\n.o-Tablist > .o-Flex {\n flex-wrap: wrap;\n margin-bottom: initial;\n margin-bottom: unset;\n}\n.o-Tablist__Check {\n position: absolute;\n}\n.o-Tablist__Panel {\n order: 1;\n flex: 100%;\n}\n/*################################*\\\n xmeter | _c-Permalink.less\n\\*################################*/\n.c-Permalink {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n}\nh1:hover > .c-Permalink,\nh2:hover > .c-Permalink,\nh3:hover > .c-Permalink,\nh4:hover > .c-Permalink,\nh5:hover > .c-Permalink,\nh6:hover > .c-Permalink {\n position: initial;\n position: unset;\n}\n@media screen and (min-width: 30em) {\n .c-Permalink-sK {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sK,\n h2:hover > .c-Permalink-sK,\n h3:hover > .c-Permalink-sK,\n h4:hover > .c-Permalink-sK,\n h5:hover > .c-Permalink-sK,\n h6:hover > .c-Permalink-sK {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 45em) {\n .c-Permalink-sM {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sM,\n h2:hover > .c-Permalink-sM,\n h3:hover > .c-Permalink-sM,\n h4:hover > .c-Permalink-sM,\n h5:hover > .c-Permalink-sM,\n h6:hover > .c-Permalink-sM {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 60em) {\n .c-Permalink-sG {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sG,\n h2:hover > .c-Permalink-sG,\n h3:hover > .c-Permalink-sG,\n h4:hover > .c-Permalink-sG,\n h5:hover > .c-Permalink-sG,\n h6:hover > .c-Permalink-sG {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 75em) {\n .c-Permalink-sT {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sT,\n h2:hover > .c-Permalink-sT,\n h3:hover > .c-Permalink-sT,\n h4:hover > .c-Permalink-sT,\n h5:hover > .c-Permalink-sT,\n h6:hover > .c-Permalink-sT {\n position: initial;\n position: unset;\n }\n}\n@media screen and (min-width: 90em) {\n .c-Permalink-sP {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-sP,\n h2:hover > .c-Permalink-sP,\n h3:hover > .c-Permalink-sP,\n h4:hover > .c-Permalink-sP,\n h5:hover > .c-Permalink-sP,\n h6:hover > .c-Permalink-sP {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 30em) {\n .c-Permalink-nK {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nK,\n h2:hover > .c-Permalink-nK,\n h3:hover > .c-Permalink-nK,\n h4:hover > .c-Permalink-nK,\n h5:hover > .c-Permalink-nK,\n h6:hover > .c-Permalink-nK {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 45em) {\n .c-Permalink-nM {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nM,\n h2:hover > .c-Permalink-nM,\n h3:hover > .c-Permalink-nM,\n h4:hover > .c-Permalink-nM,\n h5:hover > .c-Permalink-nM,\n h6:hover > .c-Permalink-nM {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 60em) {\n .c-Permalink-nG {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nG,\n h2:hover > .c-Permalink-nG,\n h3:hover > .c-Permalink-nG,\n h4:hover > .c-Permalink-nG,\n h5:hover > .c-Permalink-nG,\n h6:hover > .c-Permalink-nG {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 75em) {\n .c-Permalink-nT {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nT,\n h2:hover > .c-Permalink-nT,\n h3:hover > .c-Permalink-nT,\n h4:hover > .c-Permalink-nT,\n h5:hover > .c-Permalink-nT,\n h6:hover > .c-Permalink-nT {\n position: initial;\n position: unset;\n }\n}\n@media not all and (min-width: 90em) {\n .c-Permalink-nP {\n margin-left: 1rem;\n margin-inline-start: 1rem;\n font-weight: 100;\n }\n h1:hover > .c-Permalink-nP,\n h2:hover > .c-Permalink-nP,\n h3:hover > .c-Permalink-nP,\n h4:hover > .c-Permalink-nP,\n h5:hover > .c-Permalink-nP,\n h6:hover > .c-Permalink-nP {\n position: initial;\n position: unset;\n }\n}\n/*################################*\\\n xmeter | _h-Block.less\n\\*################################*/\n.h-Block {\n display: block;\n line-height: inherit;\n line-height: unset;\n}\n@media screen and (min-width: 30em) {\n .h-Block-sK {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Block-sM {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Block-sG {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Block-sT {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Block-sP {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Block-nK {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Block-nM {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Block-nG {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Block-nT {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Block-nP {\n display: block;\n line-height: inherit;\n line-height: unset;\n }\n}\n/*################################*\\\n xmeter | _h-Inline.less\n\\*################################*/\n.h-Inline {\n display: inline;\n line-height: 0;\n}\n@media screen and (min-width: 30em) {\n .h-Inline-sK {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Inline-sM {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Inline-sG {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Inline-sT {\n display: inline;\n line-height: 0;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Inline-sP {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Inline-nK {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Inline-nM {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Inline-nG {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Inline-nT {\n display: inline;\n line-height: 0;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Inline-nP {\n display: inline;\n line-height: 0;\n }\n}\n/*################################*\\\n xmeter | _h-Clearfix.less\n\\*################################*/\n.h-Clearfix::after {\n content: '';\n display: block;\n clear: both;\n}\n@media screen and (min-width: 30em) {\n .h-Clearfix-sK::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Clearfix-sM::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Clearfix-sG::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Clearfix-sT::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Clearfix-sP::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Clearfix-nK::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Clearfix-nM::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Clearfix-nG::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Clearfix-nT::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Clearfix-nP::after {\n content: '';\n display: block;\n clear: both;\n }\n}\n/*################################*\\\n xmeter | _h-Hidden.less\n\\*################################*/\n.h-Hidden {\n left: -999999px;\n}\n.h-Hidden:not(:focus) {\n position: absolute;\n}\n@supports (inset-inline-start: 0) {\n .h-Hidden {\n left: 0;\n inset-inline-start: -999999px;\n }\n}\n@media screen and (min-width: 30em) {\n .h-Hidden-sK {\n left: -999999px;\n }\n .h-Hidden-sK:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sK {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 45em) {\n .h-Hidden-sM {\n left: -999999px;\n }\n .h-Hidden-sM:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sM {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 60em) {\n .h-Hidden-sG {\n left: -999999px;\n }\n .h-Hidden-sG:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sG {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 75em) {\n .h-Hidden-sT {\n left: -999999px;\n }\n .h-Hidden-sT:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sT {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media screen and (min-width: 90em) {\n .h-Hidden-sP {\n left: -999999px;\n }\n .h-Hidden-sP:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-sP {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 30em) {\n .h-Hidden-nK {\n left: -999999px;\n }\n .h-Hidden-nK:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nK {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 45em) {\n .h-Hidden-nM {\n left: -999999px;\n }\n .h-Hidden-nM:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nM {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 60em) {\n .h-Hidden-nG {\n left: -999999px;\n }\n .h-Hidden-nG:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nG {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 75em) {\n .h-Hidden-nT {\n left: -999999px;\n }\n .h-Hidden-nT:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nT {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n@media not all and (min-width: 90em) {\n .h-Hidden-nP {\n left: -999999px;\n }\n .h-Hidden-nP:not(:focus) {\n position: absolute;\n }\n @supports (inset-inline-start: 0) {\n .h-Hidden-nP {\n left: 0;\n inset-inline-start: -999999px;\n }\n }\n}\n/*################################*\\\n xmeter | _h-Meaure.less\n\\*################################*/\n.h-Measure {\n max-width: 33em;\n max-width: 66ch;\n}\n@supports (max-inline-size: 1ch) {\n .h-Measure {\n max-width: unset;\n max-inline-size: 66ch;\n }\n}\n.h-Measure--narrow {\n max-width: 22.5em;\n max-width: 45ch;\n}\n@supports (max-inline-size: 1ch) {\n .h-Measure--narrow {\n max-width: unset;\n max-inline-size: 45ch;\n }\n}\n.h-Measure--wide {\n max-width: 45em;\n max-width: 90ch;\n}\n@supports (max-inline-size: 1ch) {\n .h-Measure--wide {\n max-width: unset;\n max-inline-size: 90ch;\n }\n}\n@media screen and (min-width: 30em) {\n .h-Measure-sK {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sK {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sK {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sK {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sK {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sK {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 45em) {\n .h-Measure-sM {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sM {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sM {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sM {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sM {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sM {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 60em) {\n .h-Measure-sG {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sG {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sG {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sG {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sG {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sG {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 75em) {\n .h-Measure-sT {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sT {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sT {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sT {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sT {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sT {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media screen and (min-width: 90em) {\n .h-Measure-sP {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-sP {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-sP {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-sP {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-sP {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-sP {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 30em) {\n .h-Measure-nK {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nK {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nK {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nK {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nK {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nK {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 45em) {\n .h-Measure-nM {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nM {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nM {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nM {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nM {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nM {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 60em) {\n .h-Measure-nG {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nG {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nG {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nG {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nG {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nG {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 75em) {\n .h-Measure-nT {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nT {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nT {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nT {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nT {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nT {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n@media not all and (min-width: 90em) {\n .h-Measure-nP {\n max-width: 33em;\n max-width: 66ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure-nP {\n max-width: unset;\n max-inline-size: 66ch;\n }\n }\n .h-Measure--narrow-nP {\n max-width: 22.5em;\n max-width: 45ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--narrow-nP {\n max-width: unset;\n max-inline-size: 45ch;\n }\n }\n .h-Measure--wide-nP {\n max-width: 45em;\n max-width: 90ch;\n }\n @supports (max-inline-size: 1ch) {\n .h-Measure--wide-nP {\n max-width: unset;\n max-inline-size: 90ch;\n }\n }\n}\n/*################################*\\\n xmeter | _h-Constrain.less\n\\*################################*/\n.h-Constrain {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n}\n@supports (max-inline-size: 1em) {\n .h-Constrain {\n max-width: unset;\n max-inline-size: 90em;\n }\n}\n@media screen and (min-width: 30em) {\n .h-Constrain-sK {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-sK {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media screen and (min-width: 45em) {\n .h-Constrain-sM {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-sM {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media screen and (min-width: 60em) {\n .h-Constrain-sG {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-sG {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media screen and (min-width: 75em) {\n .h-Constrain-sT {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-sT {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media screen and (min-width: 90em) {\n .h-Constrain-sP {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-sP {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media not all and (min-width: 30em) {\n .h-Constrain-nK {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-nK {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media not all and (min-width: 45em) {\n .h-Constrain-nM {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-nM {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media not all and (min-width: 60em) {\n .h-Constrain-nG {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-nG {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media not all and (min-width: 75em) {\n .h-Constrain-nT {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-nT {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n@media not all and (min-width: 90em) {\n .h-Constrain-nP {\n max-width: 90em;\n margin-left: auto;\n margin-right: auto;\n margin-inline: auto;\n }\n @supports (max-inline-size: 1em) {\n .h-Constrain-nP {\n max-width: unset;\n max-inline-size: 90em;\n }\n }\n}\n/*################################*\\\n xmeter | _h-Ruled.less\n\\*################################*/\n.h-Ruled {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n}\n@media screen and (min-width: 30em) {\n .h-Ruled-sK {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 45em) {\n .h-Ruled-sM {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 60em) {\n .h-Ruled-sG {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 75em) {\n .h-Ruled-sT {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media screen and (min-width: 90em) {\n .h-Ruled-sP {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 30em) {\n .h-Ruled-nK {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 45em) {\n .h-Ruled-nM {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 60em) {\n .h-Ruled-nG {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 75em) {\n .h-Ruled-nT {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n@media not all and (min-width: 90em) {\n .h-Ruled-nP {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.25) 1px, transparent 1px);\n background-size: 1px var(--lh);\n background-size: 1px 1lh;\n background-position-y: top;\n background-position-block: start;\n }\n}\n/*################################*\\\n xmeter | _-fz.less\n\\*################################*/\n.-fz-peta {\n font-size: 6em !important;\n}\n.-fz-tera {\n font-size: 4em !important;\n}\n.-fz-giga {\n font-size: 3em !important;\n}\n.-fz-mega {\n font-size: 2em !important;\n}\n.-fz-kilo {\n font-size: 1.5em !important;\n}\n.-fz-norm {\n font-size: 1em !important;\n}\n.-fz-mill {\n font-size: 0.75em !important;\n}\n.-fz-micr {\n font-size: 0.5em !important;\n}\n@media screen and (min-width: 30em) {\n .-fz-peta-sK {\n font-size: 6em !important;\n }\n .-fz-tera-sK {\n font-size: 4em !important;\n }\n .-fz-giga-sK {\n font-size: 3em !important;\n }\n .-fz-mega-sK {\n font-size: 2em !important;\n }\n .-fz-kilo-sK {\n font-size: 1.5em !important;\n }\n .-fz-norm-sK {\n font-size: 1em !important;\n }\n .-fz-mill-sK {\n font-size: 0.75em !important;\n }\n .-fz-micr-sK {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 45em) {\n .-fz-peta-sM {\n font-size: 6em !important;\n }\n .-fz-tera-sM {\n font-size: 4em !important;\n }\n .-fz-giga-sM {\n font-size: 3em !important;\n }\n .-fz-mega-sM {\n font-size: 2em !important;\n }\n .-fz-kilo-sM {\n font-size: 1.5em !important;\n }\n .-fz-norm-sM {\n font-size: 1em !important;\n }\n .-fz-mill-sM {\n font-size: 0.75em !important;\n }\n .-fz-micr-sM {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 60em) {\n .-fz-peta-sG {\n font-size: 6em !important;\n }\n .-fz-tera-sG {\n font-size: 4em !important;\n }\n .-fz-giga-sG {\n font-size: 3em !important;\n }\n .-fz-mega-sG {\n font-size: 2em !important;\n }\n .-fz-kilo-sG {\n font-size: 1.5em !important;\n }\n .-fz-norm-sG {\n font-size: 1em !important;\n }\n .-fz-mill-sG {\n font-size: 0.75em !important;\n }\n .-fz-micr-sG {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 75em) {\n .-fz-peta-sT {\n font-size: 6em !important;\n }\n .-fz-tera-sT {\n font-size: 4em !important;\n }\n .-fz-giga-sT {\n font-size: 3em !important;\n }\n .-fz-mega-sT {\n font-size: 2em !important;\n }\n .-fz-kilo-sT {\n font-size: 1.5em !important;\n }\n .-fz-norm-sT {\n font-size: 1em !important;\n }\n .-fz-mill-sT {\n font-size: 0.75em !important;\n }\n .-fz-micr-sT {\n font-size: 0.5em !important;\n }\n}\n@media screen and (min-width: 90em) {\n .-fz-peta-sP {\n font-size: 6em !important;\n }\n .-fz-tera-sP {\n font-size: 4em !important;\n }\n .-fz-giga-sP {\n font-size: 3em !important;\n }\n .-fz-mega-sP {\n font-size: 2em !important;\n }\n .-fz-kilo-sP {\n font-size: 1.5em !important;\n }\n .-fz-norm-sP {\n font-size: 1em !important;\n }\n .-fz-mill-sP {\n font-size: 0.75em !important;\n }\n .-fz-micr-sP {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 30em) {\n .-fz-peta-nK {\n font-size: 6em !important;\n }\n .-fz-tera-nK {\n font-size: 4em !important;\n }\n .-fz-giga-nK {\n font-size: 3em !important;\n }\n .-fz-mega-nK {\n font-size: 2em !important;\n }\n .-fz-kilo-nK {\n font-size: 1.5em !important;\n }\n .-fz-norm-nK {\n font-size: 1em !important;\n }\n .-fz-mill-nK {\n font-size: 0.75em !important;\n }\n .-fz-micr-nK {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 45em) {\n .-fz-peta-nM {\n font-size: 6em !important;\n }\n .-fz-tera-nM {\n font-size: 4em !important;\n }\n .-fz-giga-nM {\n font-size: 3em !important;\n }\n .-fz-mega-nM {\n font-size: 2em !important;\n }\n .-fz-kilo-nM {\n font-size: 1.5em !important;\n }\n .-fz-norm-nM {\n font-size: 1em !important;\n }\n .-fz-mill-nM {\n font-size: 0.75em !important;\n }\n .-fz-micr-nM {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 60em) {\n .-fz-peta-nG {\n font-size: 6em !important;\n }\n .-fz-tera-nG {\n font-size: 4em !important;\n }\n .-fz-giga-nG {\n font-size: 3em !important;\n }\n .-fz-mega-nG {\n font-size: 2em !important;\n }\n .-fz-kilo-nG {\n font-size: 1.5em !important;\n }\n .-fz-norm-nG {\n font-size: 1em !important;\n }\n .-fz-mill-nG {\n font-size: 0.75em !important;\n }\n .-fz-micr-nG {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 75em) {\n .-fz-peta-nT {\n font-size: 6em !important;\n }\n .-fz-tera-nT {\n font-size: 4em !important;\n }\n .-fz-giga-nT {\n font-size: 3em !important;\n }\n .-fz-mega-nT {\n font-size: 2em !important;\n }\n .-fz-kilo-nT {\n font-size: 1.5em !important;\n }\n .-fz-norm-nT {\n font-size: 1em !important;\n }\n .-fz-mill-nT {\n font-size: 0.75em !important;\n }\n .-fz-micr-nT {\n font-size: 0.5em !important;\n }\n}\n@media not all and (min-width: 90em) {\n .-fz-peta-nP {\n font-size: 6em !important;\n }\n .-fz-tera-nP {\n font-size: 4em !important;\n }\n .-fz-giga-nP {\n font-size: 3em !important;\n }\n .-fz-mega-nP {\n font-size: 2em !important;\n }\n .-fz-kilo-nP {\n font-size: 1.5em !important;\n }\n .-fz-norm-nP {\n font-size: 1em !important;\n }\n .-fz-mill-nP {\n font-size: 0.75em !important;\n }\n .-fz-micr-nP {\n font-size: 0.5em !important;\n }\n}\n.-fz-el-peta {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n}\n.-fz-el-tera {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n}\n.-fz-el-giga {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n}\n.-fz-el-mega {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n}\n.-fz-el-kilo {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n}\n.-fz-el-norm {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n}\n.-fz-el-mill {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n}\n.-fz-el-micr {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n}\n@media screen and (min-width: 30em) {\n .-fz-el-peta-sK {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sK {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sK {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sK {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sK {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sK {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sK {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sK {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 45em) {\n .-fz-el-peta-sM {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sM {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sM {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sM {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sM {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sM {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sM {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sM {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 60em) {\n .-fz-el-peta-sG {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sG {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sG {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sG {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sG {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sG {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sG {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sG {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 75em) {\n .-fz-el-peta-sT {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sT {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sT {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sT {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sT {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sT {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sT {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sT {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media screen and (min-width: 90em) {\n .-fz-el-peta-sP {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-sP {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-sP {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-sP {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-sP {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-sP {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-sP {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-sP {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 30em) {\n .-fz-el-peta-nK {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nK {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nK {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nK {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nK {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nK {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nK {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nK {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 45em) {\n .-fz-el-peta-nM {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nM {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nM {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nM {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nM {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nM {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nM {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nM {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 60em) {\n .-fz-el-peta-nG {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nG {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nG {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nG {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nG {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nG {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nG {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nG {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 75em) {\n .-fz-el-peta-nT {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nT {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nT {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nT {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nT {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nT {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nT {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nT {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n@media not all and (min-width: 90em) {\n .-fz-el-peta-nP {\n font-size: 6em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-tera-nP {\n font-size: 4em !important;\n line-height: calc(var(--line-height) / 1.33333333) !important;\n }\n .-fz-el-giga-nP {\n font-size: 3em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-mega-nP {\n font-size: 2em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-kilo-nP {\n font-size: 1.5em !important;\n line-height: calc(var(--line-height) / 1.5) !important;\n }\n .-fz-el-norm-nP {\n font-size: 1em !important;\n line-height: calc(var(--line-height) / 1) !important;\n }\n .-fz-el-mill-nP {\n font-size: 0.75em !important;\n line-height: calc(var(--line-height) / 0.75) !important;\n }\n .-fz-el-micr-nP {\n font-size: 0.5em !important;\n line-height: calc(var(--line-height) / 0.5) !important;\n }\n}\n/*################################*\\\n xmeter | _hack.ie.less\n\\*################################*/\n@media (-ms-high-contrast: none), (-ms-high-contrast: active) {\n sup,\n sub {\n vertical-align: baseline;\n }\n body,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n hr,\n p,\n figure,\n blockquote,\n pre,\n ol,\n ul,\n dl,\n dd,\n fieldset {\n margin: 0;\n }\n ol,\n ul,\n th,\n td,\n legend {\n padding: 0;\n }\n a,\n u,\n s,\n ins,\n del {\n text-decoration: none;\n }\n h1 {\n margin-top: 0;\n }\n figure {\n margin-top: 0;\n margin-left: 0;\n margin-right: 0;\n }\n li > ol,\n li > ul,\n li > dl,\n dt > ol,\n dt > ul,\n dt > dl,\n dd > ol,\n dd > ul,\n dd > dl {\n margin-bottom: 0;\n }\n q {\n quotes: '\\201c' '\\201d';\n }\n q::before {\n content: open-quote;\n }\n q::after {\n content: close-quote;\n }\n .o-List {\n padding-left: 0;\n }\n .o-Tablist {\n margin-top: 0;\n margin-left: 0;\n margin-right: 0;\n padding: 0;\n }\n .o-Tablist > .o-Flex {\n margin-bottom: 0;\n }\n h1:hover > .c-Permalink,\n h2:hover > .c-Permalink,\n h3:hover > .c-Permalink,\n h4:hover > .c-Permalink,\n h5:hover > .c-Permalink,\n h6:hover > .c-Permalink {\n position: static;\n }\n h1 {\n line-height: 1;\n }\n h2 {\n line-height: 1.5;\n }\n h3 {\n line-height: 1;\n }\n h4 {\n line-height: 1.5;\n }\n h5 {\n line-height: 2;\n }\n h6 {\n line-height: 3;\n }\n pre {\n line-height: 2;\n }\n .-fz-el-peta {\n line-height: 1 !important;\n }\n .-fz-el-tera {\n line-height: 1.125 !important;\n }\n .-fz-el-giga {\n line-height: 1 !important;\n }\n .-fz-el-mega {\n line-height: 1.5 !important;\n }\n .-fz-el-kilo {\n line-height: 1 !important;\n }\n .-fz-el-norm {\n line-height: 1.5 !important;\n }\n .-fz-el-mill {\n line-height: 2 !important;\n }\n .-fz-el-micr {\n line-height: 3 !important;\n }\n html {\n line-height: 1.5;\n }\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n p,\n pre,\n figure,\n blockquote,\n ol,\n ul,\n dl,\n table,\n form,\n fieldset,\n textarea,\n details {\n margin-bottom: 1.5rem;\n }\n h1 {\n padding-top: 1.5rem;\n }\n textarea {\n height: 9rem;\n }\n .h-Ruled {\n background-size: 1px 1.5rem;\n }\n}\n","\n/*================================*\\\n reset.css\n\\*================================*/\n\n\nbody {\n text-align: start; /* HACK fallback */\n text-align: initial; /* fix unsupported browsers initial value */\n background: #fff;\n color: #000;\n}\n\nsup, sub {\n vertical-align: initial; /* HACK fallback */\n vertical-align: unset;\n}\nbody,\nh1, h2, h3, h4, h5, h6,\nhr,\np, figure, blockquote, pre,\nol, ul, dl,\ndd,\nfieldset {\n margin: initial; /* HACK fallback */\n margin: unset;\n}\nol, ul,\nth, td,\nlegend {\n padding: initial; /* HACK fallback */\n padding: unset;\n}\nh1, h2, h3, h4, h5, h6,\naddress,\npre,\nth,\nem, strong, i, small,\ndfn, b, var, cite, sup, sub,\ncode, kbd, samp {\n font: inherit;\n}\ncaption,\nth {\n text-align: inherit; /* HACK fallback */\n text-align: unset;\n}\npre {\n white-space: inherit; /* HACK fallback */\n white-space: unset;\n}\na,\nu, s,\nins, del {\n text-decoration: initial; /* HACK fallback */\n text-decoration: unset;\n}\nmark {\n color: inherit; /* HACK fallback */\n color: unset;\n}\n","\n/*################################*\\\n xmeter | _base.less\n\\*################################*/\n\n\n// Contents\n// ------------------------------------\n// # GENERIC...........................`html` and far-reaching page-wide selectors\n// # SECTIONS..........................sections, articles, headers, footers, headings\n// # GROUPING..........................grouping content\n// ## Paragraphs.........................paragraphs, block-level textual elements\n// ## Lists..............................ordered, unordered, dictionary\n// ## Tables.............................tables\n// # TEXT..............................text-level, phrasing (inline) content and links\n// ## Links..............................inline hyperlinks\n// ## Stress.............................text outstanding from surrounding prose\n// ## Documentation......................documentation elements\n// ## Data...............................machine- or human-readable data\n// # FORMS.............................form elements\n// # EMBEDDED..........................images, videos, other media\n// # INTERACTIVE.......................user-interactive HTML elements\n\n\n//++++++++++++++++++++++++++++++++//\n// # GENERIC\n//++++++++++++++++++++++++++++++++//\n* {\n &,\n &::before,\n &::after {\n content: none;\n box-sizing: border-box;\n column-rule: 0 solid; // change initial column-rule from `medium none`\n @media print {\n background: transparent !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n }\n &:not(input):not(button):not(select), // NOTE be careful here: if overriding, specificity > 3\n // &:not(input, button, select), // CHANGED selector not supported yet\n &::before,\n &::after {\n border: 0 solid; // change initial border from `medium none`\n }\n}\n\nhtml {\n --line-height: 1.5; // default line-height. NOTE: change in your own project if you wish.\n --lh: calc(~'var(--line-height) * 1rem'); // HACK fallback for `lh` units (https://drafts.csswg.org/css-values/#lh)\n --vru: var(--lh); // CHANGED DEPRECATED: legacy support\n // addresses support for `rem` units (otherwise these would be in `body` selector)\n font-size: 100%; // defined by user agent\n line-height: var(--line-height);\n}\n\n// Vertical spacing between typographical blocks\n// NOTE: `textarea` is inline by default but overriding here: should be block (opinionated)\nh1, h2, h3, h4, h5, h6,\np, pre, figure, blockquote,\nol, ul, dl,\ntable,\nform, fieldset, textarea,\ndetails {\n margin-bottom: var(--lh);\n margin-bottom: 1lh;\n @supports (margin-block-end: var(--variable)) {\n margin-bottom: unset;\n margin-block-end: var(--lh);\n margin-block-end: 1lh;\n }\n}\nh1 {\n padding-top: var(--lh);\n padding-top: 1lh;\n @supports (padding-block-start: var(--variable)) {\n padding-top: unset;\n padding-block-start: var(--lh);\n padding-block-start: 1lh;\n }\n}\n\n// Font sizes for text-level elements should be in units of `em` instead of `rem` because\n// they should scale with their parents.\n// Also, inline elements should not affect vertical rhythm, thus line-heights are zero.\n// (The `display` property of these elements should automatically\n// have a value of `inline` (do not set manually), either by browser default\n// or by CSS **initial value**.)\nspan, br,\nem, strong, i, mark, u, small, s,\ndfn, b, abbr, var, q, cite, sup, sub,\ndata, time, code, kbd, samp,\nlabel {\n line-height: 0;\n}\n\n// Elements with a transparent content model\n// should display what their contents display.\na, ins, del {\n // display: inherit;\n // line-height: inherit;\n // h1 > &, h2 > &, h3 > &, h4 > &, h5 > &, h6 > &,\n // p > &, pre > &,\n // figure > &, figcaption > &, blockquote > &,\n // li > &, dt > &, dd > &,\n // caption > &, th > &, td > &,\n // legend > &, summary > & {\n // display: inline;\n // line-height: 0;\n // }\n}\n//++++ end # GENERIC ++++//\n\n\n//++++++++++++++++++++++++++++++++//\n// # SECTIONS\n//++++++++++++++++++++++++++++++++//\nbody {\n}\nmain {\n}\nsection {\n}\narticle {\n}\naside {\n}\nnav {\n}\nmain {\n}\nheader {\n}\nfooter {\n}\n\nh1, h2, h3, h4, h5, h6 {\n font-weight: 700;\n}\nh1 { .font-size-el(@g-font-size-h1; 2); }\nh2 { .font-size-el(@g-font-size-h2; 2); }\nh3 { .font-size-el(@g-font-size-h3); }\nh4 { .font-size-el(@g-font-size-h4); }\nh5 { .font-size-el(@g-font-size-h5); }\nh6 { .font-size-el(@g-font-size-h6); }\n\nh1 {\n margin-top: initial; // HACK fallback for `unset`\n margin-top: unset; // HACK fallback for logical\n margin-block-start: unset; // undo Normalize\n}\n\naddress {\n}\n//++++ end # SECTIONS ++++//\n\n\n//++++++++++++++++++++++++++++++++//\n// # GROUPING\n//++++++++++++++++++++++++++++++++//\ndiv {\n}\nhr {\n display: none;\n}\n //--------------------------------//\n // ## Paragraphs\n //--------------------------------//\n p {\n }\n pre {\n .font-size-el(@g-font-size-mill);\n text-align: left; // code blocks are always aligned left, regardless of writing mode\n text-indent: 0;\n white-space: pre;\n overflow: auto;\n }\n figure {\n // undo Normalize\n margin-top: initial; margin-left: initial; margin-right: initial; // HACK fallbacks for `unset`\n margin-top: unset ; margin-left: unset ; margin-right: unset ; // HACK fallbacks for logical\n margin-block-start: unset;\n margin-inline: unset;\n }\n figcaption {\n }\n blockquote {\n }\n //---- end ## Paragraphs ----//\n\n //--------------------------------//\n // ## Lists\n //--------------------------------//\n ol,\n ul,\n dl {\n li > &,\n dt > &,\n dd > & {\n margin-bottom: initial; // HACK fallback for `unset`\n margin-bottom: unset; // HACK fallback for logical\n margin-block-end: unset; // undo default vertical spacing for nested lists\n }\n }\n ol,\n ul {\n padding: 0 0 0 4rem; // HACK fallback for logical\n padding: logical 0 4rem 0 0;\n li > &,\n dt > &,\n dd > & {\n padding-left: 2rem; // HACK fallback for logical\n @supports (padding-inline-start: 1rem) {\n padding-left: unset;\n padding-inline-start: 2rem;\n }\n }\n }\n ol {\n list-style-type: decimal;\n }\n ul {\n list-style-type: disc; // not using `initial` because we explicitly want `disc`\n }\n dl {\n list-style: none; // remove counters from `dl > li`\n }\n li {\n }\n dt {\n }\n dd {\n }\n //---- end ## Lists ----//\n\n //--------------------------------//\n // ## Tables\n //--------------------------------//\n table {\n max-width: 100%; // fluid tables for responsive purposes\n border-collapse: collapse;\n text-align: left; // fix browser BUG... which? file an issue!\n }\n caption {\n text-align: center;\n }\n thead,\n tfoot {\n vertical-align: bottom; // for heading alignment\n }\n thead {\n }\n tfoot {\n }\n tbody {\n vertical-align: top; // for data alignment\n }\n tr {\n }\n th {\n font-weight: 700;\n }\n td {\n }\n //---- end ## Tables ----//\n//++++ end # GROUPING ++++//\n\n\n//++++++++++++++++++++++++++++++++//\n// # TEXT\n//++++++++++++++++++++++++++++++++//\n// NB: RECOMMENDATION:\n// Do not use `br` to indicate line breaks, use CSS instead.\n// One exception: MAY use `address > br` to indicate line breaks (by convention)\nbr {\n}\n //--------------------------------//\n // ## Links\n //--------------------------------//\n // NB: RECOMMENDATION:\n // Do not style `a` elements without the `[href]` attribute.\n // Such elements are “placeholder anchors,” which do not lead anywhere.\n // A placeholder anchor can represent a placeholder for where a hyperlink might otherwise be placed,\n // or it can represent an anchor whose reference may change based on context (e.g., user interaction).\n //\n // Link color should have sufficient contrast with the background color\n // *as well as* sufficient contrast with surrounding non-link text color.\n // - Background contrast ratio:\n // - to meet AA level: 4.5 normal ; 3.0 large (18pt or 14pt bold)\n // - to meet AAA level: 7.0 normal ; 4.5 large (18pt or 14pt bold)\n // - Surrounding text contrast ratio:\n // - 3.0 for all\n // Read Technique G183 for details: \n a[href] {\n // color: #00e; // default :link\n // color: #551a8b; // default :visited\n // color: #f00; // default :active\n color: #06c; // 5.57 aginst white, 3.77 against black\n }\n //---- end ## Links ----//\n\n //--------------------------------//\n // ## Stress\n //--------------------------------//\n em {\n font-style: italic;\n }\n strong {\n font-weight: 700;\n }\n i {\n font-style: italic;\n }\n mark {\n background-color: fadeout(#ffe168, 50%); // Google-flavored comments in Google Docs\n }\n u {\n text-decoration: underline; // HACK fallback\n text-decoration-line: underline;\n color: #080;\n }\n small {\n font-size: (@g-font-size-mill * 1em);\n }\n s {\n text-decoration: line-through; // HACK fallback\n text-decoration-line: line-through;\n color: #b00;\n }\n //---- end ## Stress ----//\n\n //--------------------------------//\n // ## Documentation\n //--------------------------------//\n ins {\n background-color: #acf2bd; // GitHub-flavored diff\n }\n del {\n background-color: #fdb8c0; // GitHub-flavored diff\n }\n dfn {\n font-style: inherit; // undo Normalize\n font-weight: 700;\n }\n b {\n font-weight: 700;\n }\n abbr {\n &[title] {\n cursor: help;\n text-decoration: none; // HACK fallback for `text-decoration-line` // also IE fallback for `initial`\n text-decoration-line: initial; // HACK fallback for `unset`\n text-decoration-line: unset; // undo Normalize\n }\n }\n var {\n font-style: italic;\n }\n q {\n .delims(initial);\n }\n cite {\n font-style: italic;\n }\n sup, sub {\n font-size: (@g-font-size-mill * 1em);\n }\n sup {\n }\n sub {\n }\n //---- end ## Documentation ----//\n\n //--------------------------------//\n // ## Data\n //--------------------------------//\n data {\n }\n time {\n }\n code, kbd, samp {\n font-size: (@g-font-size-mill * 1em);\n white-space: nowrap;\n & & {\n font-size: inherit; // undo compounding font sizes\n }\n pre & {\n white-space: inherit; // HACK fallback\n white-space: unset; // sometimes people put a `code` in a `pre` // override `nowrap` above\n }\n }\n code {\n }\n kbd {\n }\n samp {\n }\n //---- end ## Data ----//\n//++++ end # TEXT ++++//\n\n\n//++++++++++++++++++++++++++++++++//\n// # FORMS\n//++++++++++++++++++++++++++++++++//\n@p-color-gray: rgba(0,0,0, 0.25);\n\nfieldset {\n padding: 0 1rem;\n}\n\ntextarea,\ninput {\n padding: 0 0.25rem;\n}\n\ninput,\nbutton,\nselect,\ntextarea {\n line-height: inherit; // undo browser default\n}\n\nhtml body fieldset { // HACK need a specificity of 3 to override generic `*:not(input):not(button):not(select)`\n .border-vert(all; 1px);\n .border-block(all; 1px);\n border-style: solid;\n border-color: @p-color-gray;\n // NOTE cannot use box-shadow hack due to shadow covering