@cronocode/react-box 0.0.5 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
File without changes
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+ var jsxRuntime = { exports: {} };
3
+ var reactJsxRuntime_production_min = {};
4
+ /**
5
+ * @license React
6
+ * react-jsx-runtime.production.min.js
7
+ *
8
+ * Copyright (c) Facebook, Inc. and its affiliates.
9
+ *
10
+ * This source code is licensed under the MIT license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */
13
+ var f = React, k = Symbol.for("react.element"), l = Symbol.for("react.fragment"), m = Object.prototype.hasOwnProperty, n = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p = { key: true, ref: true, __self: true, __source: true };
14
+ function q(c, a, g) {
15
+ var b, d = {}, e = null, h = null;
16
+ g !== void 0 && (e = "" + g);
17
+ a.key !== void 0 && (e = "" + a.key);
18
+ a.ref !== void 0 && (h = a.ref);
19
+ for (b in a)
20
+ m.call(a, b) && !p.hasOwnProperty(b) && (d[b] = a[b]);
21
+ if (c && c.defaultProps)
22
+ for (b in a = c.defaultProps, a)
23
+ d[b] === void 0 && (d[b] = a[b]);
24
+ return { $$typeof: k, type: c, key: e, ref: h, props: d, _owner: n.current };
25
+ }
26
+ reactJsxRuntime_production_min.Fragment = l;
27
+ reactJsxRuntime_production_min.jsx = q;
28
+ reactJsxRuntime_production_min.jsxs = q;
29
+ {
30
+ jsxRuntime.exports = reactJsxRuntime_production_min;
31
+ }
32
+ const jsx = jsxRuntime.exports.jsx;
33
+ export { jsx as j };
@@ -0,0 +1,5 @@
1
+ import Box from '../../box';
2
+ interface Props extends Omit<React.ComponentProps<typeof Box>> {
3
+ }
4
+ export default function Button(props: Props): JSX.Element;
5
+ export {};
@@ -0,0 +1,37 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+ import Box from "../../box.js";
18
+ import { j as jsx } from "../../chunk/jsx-runtime-8434466e.js";
19
+ import "react";
20
+ function Button(props) {
21
+ const {
22
+ props: tagProps,
23
+ onClick
24
+ } = props;
25
+ const newTagProps = __spreadValues(__spreadValues({}, {
26
+ type: "button",
27
+ onClick
28
+ }), tagProps);
29
+ const newProps = __spreadValues(__spreadValues({}, {
30
+ props: newTagProps
31
+ }), props);
32
+ return /* @__PURE__ */ jsx(Box, __spreadValues({
33
+ tag: "button",
34
+ cursor: "pointer"
35
+ }, newProps));
36
+ }
37
+ export { Button as default };
@@ -0,0 +1,4 @@
1
+ import Box from '../../box';
2
+ declare type Props = React.ComponentProps<typeof Box>;
3
+ export default function Flex(props: Props): JSX.Element;
4
+ export {};
@@ -0,0 +1,25 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+ import Box from "../../box.js";
18
+ import { j as jsx } from "../../chunk/jsx-runtime-8434466e.js";
19
+ import "react";
20
+ function Flex(props) {
21
+ return /* @__PURE__ */ jsx(Box, __spreadValues({
22
+ display: "flex"
23
+ }, props));
24
+ }
25
+ export { Flex as default };
File without changes
package/package.json CHANGED
@@ -1,21 +1,19 @@
1
1
  {
2
2
  "name": "@cronocode/react-box",
3
- "version": "0.0.5",
4
- "files": [
5
- "dist"
6
- ],
7
- "main": "./dist/index.umd.js",
8
- "module": "./dist/index.es.js",
9
- "types": "./dist/index.d.ts",
3
+ "version": "0.0.9",
4
+ "main": "./box.js",
5
+ "module": "./box.js",
6
+ "types": "./box.d.ts",
10
7
  "exports": {
11
8
  ".": {
12
- "import": "./dist/index.es.js",
13
- "require": "./dist/index.umd.js"
9
+ "import": "./box.js",
10
+ "require": "./box.js"
14
11
  }
15
12
  },
16
13
  "scripts": {
17
14
  "dev": "vite ./dev --config ./vite.config.ts",
18
15
  "build": "vite build",
16
+ "postbuild": "cp package.json dist & cp LICENSE dist",
19
17
  "test": "echo \"Error: no test specified\" && exit 1"
20
18
  },
21
19
  "repository": {
@@ -27,7 +25,7 @@
27
25
  "box"
28
26
  ],
29
27
  "author": "Maxim Procopenco",
30
- "license": "",
28
+ "license": "MIT",
31
29
  "bugs": {
32
30
  "url": "https://github.com/cronocodesolutions/react-box/issues"
33
31
  },
package/styles.css ADDED
@@ -0,0 +1 @@
1
+ body{font-size:16px;line-height:1.2}.a{display:block;border:0 solid inherit;font-family:inherit;font-size:inherit;margin:0;padding:0}.b{display:none}.c{display:block}.d{display:inline-block}.e{display:flex}.f{display:inline-flex}.g{display:grid}.h{position:static}.i{position:relative}.j{position:absolute}.k{position:fixed}.l{position:-webkit-sticky;position:sticky}.m{width:100%}.n{width:100vw}.o{width:auto}.p{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.q{width:-webkit-max-content;width:-moz-max-content;width:max-content}.r{width:-webkit-min-content;width:-moz-min-content;width:min-content}.s{height:100%}.t{height:100vh}.u{height:auto}.v{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.w{height:-webkit-max-content;height:-moz-max-content;height:max-content}.x{height:-webkit-min-content;height:-moz-min-content;height:min-content}.y{min-width:100%}.z{min-width:100vw}.A{min-width:auto}.B{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}.C{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.D{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.E{min-height:100%}.F{min-height:100vh}.G{min-height:auto}.H{min-height:-webkit-fit-content;min-height:-moz-fit-content;min-height:fit-content}.I{min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content}.J{min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.K{max-width:100%}.L{max-width:100vw}.M{max-width:auto}.N{max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content}.O{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.P{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.Q{max-height:100%}.R{max-height:100vh}.S{max-height:auto}.T{max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.U{max-height:-webkit-max-content;max-height:-moz-max-content;max-height:max-content}.V{max-height:-webkit-min-content;max-height:-moz-min-content;max-height:min-content}.W{top:0rem}.X{top:.5rem}.Y{top:1rem}.Z{top:1.5rem}.aa{top:2rem}.ab{top:2.5rem}.ac{top:3rem}.ad{top:3.5rem}.ae{top:4rem}.af{top:4.5rem}.ag{top:5rem}.ah{top:5.5rem}.ai{top:6rem}.aj{top:6.5rem}.ak{top:7rem}.al{top:7.5rem}.am{top:8rem}.an{top:8.5rem}.ao{top:9rem}.ap{top:9.5rem}.aq{top:10rem}.ar{right:0rem}.as{right:.5rem}.at{right:1rem}.au{right:1.5rem}.av{right:2rem}.aw{right:2.5rem}.ax{right:3rem}.ay{right:3.5rem}.az{right:4rem}.aA{right:4.5rem}.aB{right:5rem}.aC{right:5.5rem}.aD{right:6rem}.aE{right:6.5rem}.aF{right:7rem}.aG{right:7.5rem}.aH{right:8rem}.aI{right:8.5rem}.aJ{right:9rem}.aK{right:9.5rem}.aL{right:10rem}.aM{bottom:0rem}.aN{bottom:.5rem}.aO{bottom:1rem}.aP{bottom:1.5rem}.aQ{bottom:2rem}.aR{bottom:2.5rem}.aS{bottom:3rem}.aT{bottom:3.5rem}.aU{bottom:4rem}.aV{bottom:4.5rem}.aW{bottom:5rem}.aX{bottom:5.5rem}.aY{bottom:6rem}.aZ{bottom:6.5rem}.a0{bottom:7rem}.a1{bottom:7.5rem}.a2{bottom:8rem}.a3{bottom:8.5rem}.a4{bottom:9rem}.a5{bottom:9.5rem}.a6{bottom:10rem}.a7{left:0rem}.a8{left:.5rem}.a9{left:1rem}.ba{left:1.5rem}.bb{left:2rem}.bc{left:2.5rem}.bd{left:3rem}.be{left:3.5rem}.bf{left:4rem}.bg{left:4.5rem}.bh{left:5rem}.bi{left:5.5rem}.bj{left:6rem}.bk{left:6.5rem}.bl{left:7rem}.bm{left:7.5rem}.bn{left:8rem}.bo{left:8.5rem}.bp{left:9rem}.bq{left:9.5rem}.br{left:10rem}.bs{margin:0rem}.bt{margin:.5rem}.bu{margin:1rem}.bv{margin:1.5rem}.bw{margin:2rem}.bx{margin:2.5rem}.by{margin:3rem}.bz{margin:3.5rem}.bA{margin:4rem}.bB{margin:4.5rem}.bC{margin:5rem}.bD{margin:5.5rem}.bE{margin:6rem}.bF{margin:6.5rem}.bG{margin:7rem}.bH{margin:7.5rem}.bI{margin:8rem}.bJ{margin:8.5rem}.bK{margin:9rem}.bL{margin:9.5rem}.bM{margin:10rem}.bN{margin-left:0rem;margin-right:0rem}.bO{margin-top:0rem;margin-bottom:0rem}.bP{margin-left:.5rem;margin-right:.5rem}.bQ{margin-top:.5rem;margin-bottom:.5rem}.bR{margin-left:1rem;margin-right:1rem}.bS{margin-top:1rem;margin-bottom:1rem}.bT{margin-left:1.5rem;margin-right:1.5rem}.bU{margin-top:1.5rem;margin-bottom:1.5rem}.bV{margin-left:2rem;margin-right:2rem}.bW{margin-top:2rem;margin-bottom:2rem}.bX{margin-left:2.5rem;margin-right:2.5rem}.bY{margin-top:2.5rem;margin-bottom:2.5rem}.bZ{margin-left:3rem;margin-right:3rem}.b0{margin-top:3rem;margin-bottom:3rem}.b1{margin-left:3.5rem;margin-right:3.5rem}.b2{margin-top:3.5rem;margin-bottom:3.5rem}.b3{margin-left:4rem;margin-right:4rem}.b4{margin-top:4rem;margin-bottom:4rem}.b5{margin-left:4.5rem;margin-right:4.5rem}.b6{margin-top:4.5rem;margin-bottom:4.5rem}.b7{margin-left:5rem;margin-right:5rem}.b8{margin-top:5rem;margin-bottom:5rem}.b9{margin-left:5.5rem;margin-right:5.5rem}.ca{margin-top:5.5rem;margin-bottom:5.5rem}.cb{margin-left:6rem;margin-right:6rem}.cc{margin-top:6rem;margin-bottom:6rem}.cd{margin-left:6.5rem;margin-right:6.5rem}.ce{margin-top:6.5rem;margin-bottom:6.5rem}.cf{margin-left:7rem;margin-right:7rem}.cg{margin-top:7rem;margin-bottom:7rem}.ch{margin-left:7.5rem;margin-right:7.5rem}.ci{margin-top:7.5rem;margin-bottom:7.5rem}.cj{margin-left:8rem;margin-right:8rem}.ck{margin-top:8rem;margin-bottom:8rem}.cl{margin-left:8.5rem;margin-right:8.5rem}.cm{margin-top:8.5rem;margin-bottom:8.5rem}.cn{margin-left:9rem;margin-right:9rem}.co{margin-top:9rem;margin-bottom:9rem}.cp{margin-left:9.5rem;margin-right:9.5rem}.cq{margin-top:9.5rem;margin-bottom:9.5rem}.cr{margin-left:10rem;margin-right:10rem}.cs{margin-top:10rem;margin-bottom:10rem}.ct{margin-top:0rem}.cu{margin-right:0rem}.cv{margin-bottom:0rem}.cw{margin-left:0rem}.cx{margin-top:.5rem}.cy{margin-right:.5rem}.cz{margin-bottom:.5rem}.cA{margin-left:.5rem}.cB{margin-top:1rem}.cC{margin-right:1rem}.cD{margin-bottom:1rem}.cE{margin-left:1rem}.cF{margin-top:1.5rem}.cG{margin-right:1.5rem}.cH{margin-bottom:1.5rem}.cI{margin-left:1.5rem}.cJ{margin-top:2rem}.cK{margin-right:2rem}.cL{margin-bottom:2rem}.cM{margin-left:2rem}.cN{margin-top:2.5rem}.cO{margin-right:2.5rem}.cP{margin-bottom:2.5rem}.cQ{margin-left:2.5rem}.cR{margin-top:3rem}.cS{margin-right:3rem}.cT{margin-bottom:3rem}.cU{margin-left:3rem}.cV{margin-top:3.5rem}.cW{margin-right:3.5rem}.cX{margin-bottom:3.5rem}.cY{margin-left:3.5rem}.cZ{margin-top:4rem}.c0{margin-right:4rem}.c1{margin-bottom:4rem}.c2{margin-left:4rem}.c3{margin-top:4.5rem}.c4{margin-right:4.5rem}.c5{margin-bottom:4.5rem}.c6{margin-left:4.5rem}.c7{margin-top:5rem}.c8{margin-right:5rem}.c9{margin-bottom:5rem}.da{margin-left:5rem}.db{margin-top:5.5rem}.dc{margin-right:5.5rem}.dd{margin-bottom:5.5rem}.de{margin-left:5.5rem}.df{margin-top:6rem}.dg{margin-right:6rem}.dh{margin-bottom:6rem}.di{margin-left:6rem}.dj{margin-top:6.5rem}.dk{margin-right:6.5rem}.dl{margin-bottom:6.5rem}.dm{margin-left:6.5rem}.dn{margin-top:7rem}.do{margin-right:7rem}.dp{margin-bottom:7rem}.dq{margin-left:7rem}.dr{margin-top:7.5rem}.ds{margin-right:7.5rem}.dt{margin-bottom:7.5rem}.du{margin-left:7.5rem}.dv{margin-top:8rem}.dw{margin-right:8rem}.dx{margin-bottom:8rem}.dy{margin-left:8rem}.dz{margin-top:8.5rem}.dA{margin-right:8.5rem}.dB{margin-bottom:8.5rem}.dC{margin-left:8.5rem}.dD{margin-top:9rem}.dE{margin-right:9rem}.dF{margin-bottom:9rem}.dG{margin-left:9rem}.dH{margin-top:9.5rem}.dI{margin-right:9.5rem}.dJ{margin-bottom:9.5rem}.dK{margin-left:9.5rem}.dL{margin-top:10rem}.dM{margin-right:10rem}.dN{margin-bottom:10rem}.dO{margin-left:10rem}.dP{padding:0rem}.dQ{padding:.5rem}.dR{padding:1rem}.dS{padding:1.5rem}.dT{padding:2rem}.dU{padding:2.5rem}.dV{padding:3rem}.dW{padding:3.5rem}.dX{padding:4rem}.dY{padding:4.5rem}.dZ{padding:5rem}.d0{padding:5.5rem}.d1{padding:6rem}.d2{padding:6.5rem}.d3{padding:7rem}.d4{padding:7.5rem}.d5{padding:8rem}.d6{padding:8.5rem}.d7{padding:9rem}.d8{padding:9.5rem}.d9{padding:10rem}.ea{padding-left:0rem;padding-right:0rem}.eb{padding-top:0rem;padding-bottom:0rem}.ec{padding-left:.5rem;padding-right:.5rem}.ed{padding-top:.5rem;padding-bottom:.5rem}.ee{padding-left:1rem;padding-right:1rem}.ef{padding-top:1rem;padding-bottom:1rem}.eg{padding-left:1.5rem;padding-right:1.5rem}.eh{padding-top:1.5rem;padding-bottom:1.5rem}.ei{padding-left:2rem;padding-right:2rem}.ej{padding-top:2rem;padding-bottom:2rem}.ek{padding-left:2.5rem;padding-right:2.5rem}.el{padding-top:2.5rem;padding-bottom:2.5rem}.em{padding-left:3rem;padding-right:3rem}.en{padding-top:3rem;padding-bottom:3rem}.eo{padding-left:3.5rem;padding-right:3.5rem}.ep{padding-top:3.5rem;padding-bottom:3.5rem}.eq{padding-left:4rem;padding-right:4rem}.er{padding-top:4rem;padding-bottom:4rem}.es{padding-left:4.5rem;padding-right:4.5rem}.et{padding-top:4.5rem;padding-bottom:4.5rem}.eu{padding-left:5rem;padding-right:5rem}.ev{padding-top:5rem;padding-bottom:5rem}.ew{padding-left:5.5rem;padding-right:5.5rem}.ex{padding-top:5.5rem;padding-bottom:5.5rem}.ey{padding-left:6rem;padding-right:6rem}.ez{padding-top:6rem;padding-bottom:6rem}.eA{padding-left:6.5rem;padding-right:6.5rem}.eB{padding-top:6.5rem;padding-bottom:6.5rem}.eC{padding-left:7rem;padding-right:7rem}.eD{padding-top:7rem;padding-bottom:7rem}.eE{padding-left:7.5rem;padding-right:7.5rem}.eF{padding-top:7.5rem;padding-bottom:7.5rem}.eG{padding-left:8rem;padding-right:8rem}.eH{padding-top:8rem;padding-bottom:8rem}.eI{padding-left:8.5rem;padding-right:8.5rem}.eJ{padding-top:8.5rem;padding-bottom:8.5rem}.eK{padding-left:9rem;padding-right:9rem}.eL{padding-top:9rem;padding-bottom:9rem}.eM{padding-left:9.5rem;padding-right:9.5rem}.eN{padding-top:9.5rem;padding-bottom:9.5rem}.eO{padding-left:10rem;padding-right:10rem}.eP{padding-top:10rem;padding-bottom:10rem}.eQ{padding-top:0rem}.eR{padding-right:0rem}.eS{padding-bottom:0rem}.eT{padding-left:0rem}.eU{padding-top:.5rem}.eV{padding-right:.5rem}.eW{padding-bottom:.5rem}.eX{padding-left:.5rem}.eY{padding-top:1rem}.eZ{padding-right:1rem}.e0{padding-bottom:1rem}.e1{padding-left:1rem}.e2{padding-top:1.5rem}.e3{padding-right:1.5rem}.e4{padding-bottom:1.5rem}.e5{padding-left:1.5rem}.e6{padding-top:2rem}.e7{padding-right:2rem}.e8{padding-bottom:2rem}.e9{padding-left:2rem}.fa{padding-top:2.5rem}.fb{padding-right:2.5rem}.fc{padding-bottom:2.5rem}.fd{padding-left:2.5rem}.fe{padding-top:3rem}.ff{padding-right:3rem}.fg{padding-bottom:3rem}.fh{padding-left:3rem}.fi{padding-top:3.5rem}.fj{padding-right:3.5rem}.fk{padding-bottom:3.5rem}.fl{padding-left:3.5rem}.fm{padding-top:4rem}.fn{padding-right:4rem}.fo{padding-bottom:4rem}.fp{padding-left:4rem}.fq{padding-top:4.5rem}.fr{padding-right:4.5rem}.fs{padding-bottom:4.5rem}.ft{padding-left:4.5rem}.fu{padding-top:5rem}.fv{padding-right:5rem}.fw{padding-bottom:5rem}.fx{padding-left:5rem}.fy{padding-top:5.5rem}.fz{padding-right:5.5rem}.fA{padding-bottom:5.5rem}.fB{padding-left:5.5rem}.fC{padding-top:6rem}.fD{padding-right:6rem}.fE{padding-bottom:6rem}.fF{padding-left:6rem}.fG{padding-top:6.5rem}.fH{padding-right:6.5rem}.fI{padding-bottom:6.5rem}.fJ{padding-left:6.5rem}.fK{padding-top:7rem}.fL{padding-right:7rem}.fM{padding-bottom:7rem}.fN{padding-left:7rem}.fO{padding-top:7.5rem}.fP{padding-right:7.5rem}.fQ{padding-bottom:7.5rem}.fR{padding-left:7.5rem}.fS{padding-top:8rem}.fT{padding-right:8rem}.fU{padding-bottom:8rem}.fV{padding-left:8rem}.fW{padding-top:8.5rem}.fX{padding-right:8.5rem}.fY{padding-bottom:8.5rem}.fZ{padding-left:8.5rem}.f0{padding-top:9rem}.f1{padding-right:9rem}.f2{padding-bottom:9rem}.f3{padding-left:9rem}.f4{padding-top:9.5rem}.f5{padding-right:9.5rem}.f6{padding-bottom:9.5rem}.f7{padding-left:9.5rem}.f8{padding-top:10rem}.f9{padding-right:10rem}.ga{padding-bottom:10rem}.gb{padding-left:10rem}.gc{border-width:0px}.gd{border-width:1px}.ge{border-width:2px}.gf{border-width:3px}.gg{border-width:4px}.gh{border-width:5px}.gi{border-width:6px}.gj{border-width:7px}.gk{border-width:8px}.gl{border-width:9px}.gm{border-width:10px}.gn{border-width:11px}.go{border-width:12px}.gp{border-width:13px}.gq{border-width:14px}.gr{border-width:15px}.gs{border-width:16px}.gt{border-width:17px}.gu{border-width:18px}.gv{border-width:19px}.gw{border-width:20px}.gx{border-left-width:0px;border-right-width:0px}.gy{border-top-width:0px;border-bottom-width:0px}.gz{border-left-width:1px;border-right-width:1px}.gA{border-top-width:1px;border-bottom-width:1px}.gB{border-left-width:2px;border-right-width:2px}.gC{border-top-width:2px;border-bottom-width:2px}.gD{border-left-width:3px;border-right-width:3px}.gE{border-top-width:3px;border-bottom-width:3px}.gF{border-left-width:4px;border-right-width:4px}.gG{border-top-width:4px;border-bottom-width:4px}.gH{border-left-width:5px;border-right-width:5px}.gI{border-top-width:5px;border-bottom-width:5px}.gJ{border-left-width:6px;border-right-width:6px}.gK{border-top-width:6px;border-bottom-width:6px}.gL{border-left-width:7px;border-right-width:7px}.gM{border-top-width:7px;border-bottom-width:7px}.gN{border-left-width:8px;border-right-width:8px}.gO{border-top-width:8px;border-bottom-width:8px}.gP{border-left-width:9px;border-right-width:9px}.gQ{border-top-width:9px;border-bottom-width:9px}.gR{border-left-width:10px;border-right-width:10px}.gS{border-top-width:10px;border-bottom-width:10px}.gT{border-left-width:11px;border-right-width:11px}.gU{border-top-width:11px;border-bottom-width:11px}.gV{border-left-width:12px;border-right-width:12px}.gW{border-top-width:12px;border-bottom-width:12px}.gX{border-left-width:13px;border-right-width:13px}.gY{border-top-width:13px;border-bottom-width:13px}.gZ{border-left-width:14px;border-right-width:14px}.g0{border-top-width:14px;border-bottom-width:14px}.g1{border-left-width:15px;border-right-width:15px}.g2{border-top-width:15px;border-bottom-width:15px}.g3{border-left-width:16px;border-right-width:16px}.g4{border-top-width:16px;border-bottom-width:16px}.g5{border-left-width:17px;border-right-width:17px}.g6{border-top-width:17px;border-bottom-width:17px}.g7{border-left-width:18px;border-right-width:18px}.g8{border-top-width:18px;border-bottom-width:18px}.g9{border-left-width:19px;border-right-width:19px}.ha{border-top-width:19px;border-bottom-width:19px}.hb{border-left-width:20px;border-right-width:20px}.hc{border-top-width:20px;border-bottom-width:20px}.hd{border-top-width:0px}.he{border-right-width:0px}.hf{border-bottom-width:0px}.hg{border-left-width:0px}.hh{border-top-width:1px}.hi{border-right-width:1px}.hj{border-bottom-width:1px}.hk{border-left-width:1px}.hl{border-top-width:2px}.hm{border-right-width:2px}.hn{border-bottom-width:2px}.ho{border-left-width:2px}.hp{border-top-width:3px}.hq{border-right-width:3px}.hr{border-bottom-width:3px}.hs{border-left-width:3px}.ht{border-top-width:4px}.hu{border-right-width:4px}.hv{border-bottom-width:4px}.hw{border-left-width:4px}.hx{border-top-width:5px}.hy{border-right-width:5px}.hz{border-bottom-width:5px}.hA{border-left-width:5px}.hB{border-top-width:6px}.hC{border-right-width:6px}.hD{border-bottom-width:6px}.hE{border-left-width:6px}.hF{border-top-width:7px}.hG{border-right-width:7px}.hH{border-bottom-width:7px}.hI{border-left-width:7px}.hJ{border-top-width:8px}.hK{border-right-width:8px}.hL{border-bottom-width:8px}.hM{border-left-width:8px}.hN{border-top-width:9px}.hO{border-right-width:9px}.hP{border-bottom-width:9px}.hQ{border-left-width:9px}.hR{border-top-width:10px}.hS{border-right-width:10px}.hT{border-bottom-width:10px}.hU{border-left-width:10px}.hV{border-top-width:11px}.hW{border-right-width:11px}.hX{border-bottom-width:11px}.hY{border-left-width:11px}.hZ{border-top-width:12px}.h0{border-right-width:12px}.h1{border-bottom-width:12px}.h2{border-left-width:12px}.h3{border-top-width:13px}.h4{border-right-width:13px}.h5{border-bottom-width:13px}.h6{border-left-width:13px}.h7{border-top-width:14px}.h8{border-right-width:14px}.h9{border-bottom-width:14px}.ia{border-left-width:14px}.ib{border-top-width:15px}.ic{border-right-width:15px}.id{border-bottom-width:15px}.ie{border-left-width:15px}.if{border-top-width:16px}.ig{border-right-width:16px}.ih{border-bottom-width:16px}.ii{border-left-width:16px}.ij{border-top-width:17px}.ik{border-right-width:17px}.il{border-bottom-width:17px}.im{border-left-width:17px}.in{border-top-width:18px}.io{border-right-width:18px}.ip{border-bottom-width:18px}.iq{border-left-width:18px}.ir{border-top-width:19px}.is{border-right-width:19px}.it{border-bottom-width:19px}.iu{border-left-width:19px}.iv{border-top-width:20px}.iw{border-right-width:20px}.ix{border-bottom-width:20px}.iy{border-left-width:20px}.iz{border-style:solid}.iA{border-style:dashed}.iB{border-style:dotted}.iC{border-style:double}.iD{border-radius:0rem}.iE{border-radius:.25rem}.iF{border-radius:.5rem}.iG{border-radius:.75rem}.iH{border-radius:1rem}.iI{border-radius:1.25rem}.iJ{border-radius:1.5rem}.iK{border-radius:1.75rem}.iL{border-radius:2rem}.iM{border-radius:2.25rem}.iN{border-radius:2.5rem}.iO{border-radius:2.75rem}.iP{border-radius:3rem}.iQ{border-radius:3.25rem}.iR{border-radius:3.5rem}.iS{border-radius:3.75rem}.iT{border-radius:4rem}.iU{border-radius:4.25rem}.iV{border-radius:4.5rem}.iW{border-radius:4.75rem}.iX{border-radius:5rem}.iY{border-top-left-radius:0rem;border-top-right-radius:0rem}.iZ{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.i0{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.i1{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.i2{border-top-left-radius:1rem;border-top-right-radius:1rem}.i3{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.i4{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.i5{border-top-left-radius:1.75rem;border-top-right-radius:1.75rem}.i6{border-top-left-radius:2rem;border-top-right-radius:2rem}.i7{border-top-left-radius:2.25rem;border-top-right-radius:2.25rem}.i8{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.i9{border-top-left-radius:2.75rem;border-top-right-radius:2.75rem}.ja{border-top-left-radius:3rem;border-top-right-radius:3rem}.jb{border-top-left-radius:3.25rem;border-top-right-radius:3.25rem}.jc{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.jd{border-top-left-radius:3.75rem;border-top-right-radius:3.75rem}.je{border-top-left-radius:4rem;border-top-right-radius:4rem}.jf{border-top-left-radius:4.25rem;border-top-right-radius:4.25rem}.jg{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.jh{border-top-left-radius:4.75rem;border-top-right-radius:4.75rem}.ji{border-top-left-radius:5rem;border-top-right-radius:5rem}.jj{border-top-right-radius:0rem;border-bottom-right-radius:0rem}.jk{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.jl{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.jm{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}.jn{border-top-right-radius:1rem;border-bottom-right-radius:1rem}.jo{border-top-right-radius:1.25rem;border-bottom-right-radius:1.25rem}.jp{border-top-right-radius:1.5rem;border-bottom-right-radius:1.5rem}.jq{border-top-right-radius:1.75rem;border-bottom-right-radius:1.75rem}.jr{border-top-right-radius:2rem;border-bottom-right-radius:2rem}.js{border-top-right-radius:2.25rem;border-bottom-right-radius:2.25rem}.jt{border-top-right-radius:2.5rem;border-bottom-right-radius:2.5rem}.ju{border-top-right-radius:2.75rem;border-bottom-right-radius:2.75rem}.jv{border-top-right-radius:3rem;border-bottom-right-radius:3rem}.jw{border-top-right-radius:3.25rem;border-bottom-right-radius:3.25rem}.jx{border-top-right-radius:3.5rem;border-bottom-right-radius:3.5rem}.jy{border-top-right-radius:3.75rem;border-bottom-right-radius:3.75rem}.jz{border-top-right-radius:4rem;border-bottom-right-radius:4rem}.jA{border-top-right-radius:4.25rem;border-bottom-right-radius:4.25rem}.jB{border-top-right-radius:4.5rem;border-bottom-right-radius:4.5rem}.jC{border-top-right-radius:4.75rem;border-bottom-right-radius:4.75rem}.jD{border-top-right-radius:5rem;border-bottom-right-radius:5rem}.jE{border-bottom-left-radius:0rem;border-bottom-right-radius:0rem}.jF{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.jG{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.jH{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.jI{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.jJ{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.jK{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.jL{border-bottom-left-radius:1.75rem;border-bottom-right-radius:1.75rem}.jM{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.jN{border-bottom-left-radius:2.25rem;border-bottom-right-radius:2.25rem}.jO{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.jP{border-bottom-left-radius:2.75rem;border-bottom-right-radius:2.75rem}.jQ{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.jR{border-bottom-left-radius:3.25rem;border-bottom-right-radius:3.25rem}.jS{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.jT{border-bottom-left-radius:3.75rem;border-bottom-right-radius:3.75rem}.jU{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.jV{border-bottom-left-radius:4.25rem;border-bottom-right-radius:4.25rem}.jW{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.jX{border-bottom-left-radius:4.75rem;border-bottom-right-radius:4.75rem}.jY{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.jZ{border-top-left-radius:0rem;border-bottom-left-radius:0rem}.j0{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.j1{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.j2{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}.j3{border-top-left-radius:1rem;border-bottom-left-radius:1rem}.j4{border-top-left-radius:1.25rem;border-bottom-left-radius:1.25rem}.j5{border-top-left-radius:1.5rem;border-bottom-left-radius:1.5rem}.j6{border-top-left-radius:1.75rem;border-bottom-left-radius:1.75rem}.j7{border-top-left-radius:2rem;border-bottom-left-radius:2rem}.j8{border-top-left-radius:2.25rem;border-bottom-left-radius:2.25rem}.j9{border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem}.ka{border-top-left-radius:2.75rem;border-bottom-left-radius:2.75rem}.kb{border-top-left-radius:3rem;border-bottom-left-radius:3rem}.kc{border-top-left-radius:3.25rem;border-bottom-left-radius:3.25rem}.kd{border-top-left-radius:3.5rem;border-bottom-left-radius:3.5rem}.ke{border-top-left-radius:3.75rem;border-bottom-left-radius:3.75rem}.kf{border-top-left-radius:4rem;border-bottom-left-radius:4rem}.kg{border-top-left-radius:4.25rem;border-bottom-left-radius:4.25rem}.kh{border-top-left-radius:4.5rem;border-bottom-left-radius:4.5rem}.ki{border-top-left-radius:4.75rem;border-bottom-left-radius:4.75rem}.kj{border-top-left-radius:5rem;border-bottom-left-radius:5rem}.kk{border-top-right-radius:0rem}.kl{border-top-left-radius:0rem}.km{border-bottom-right-radius:0rem}.kn{border-bottom-left-radius:0rem}.ko{border-top-right-radius:.25rem}.kp{border-top-left-radius:.25rem}.kq{border-bottom-right-radius:.25rem}.kr{border-bottom-left-radius:.25rem}.ks{border-top-right-radius:.5rem}.kt{border-top-left-radius:.5rem}.ku{border-bottom-right-radius:.5rem}.kv{border-bottom-left-radius:.5rem}.kw{border-top-right-radius:.75rem}.kx{border-top-left-radius:.75rem}.ky{border-bottom-right-radius:.75rem}.kz{border-bottom-left-radius:.75rem}.kA{border-top-right-radius:1rem}.kB{border-top-left-radius:1rem}.kC{border-bottom-right-radius:1rem}.kD{border-bottom-left-radius:1rem}.kE{border-top-right-radius:1.25rem}.kF{border-top-left-radius:1.25rem}.kG{border-bottom-right-radius:1.25rem}.kH{border-bottom-left-radius:1.25rem}.kI{border-top-right-radius:1.5rem}.kJ{border-top-left-radius:1.5rem}.kK{border-bottom-right-radius:1.5rem}.kL{border-bottom-left-radius:1.5rem}.kM{border-top-right-radius:1.75rem}.kN{border-top-left-radius:1.75rem}.kO{border-bottom-right-radius:1.75rem}.kP{border-bottom-left-radius:1.75rem}.kQ{border-top-right-radius:2rem}.kR{border-top-left-radius:2rem}.kS{border-bottom-right-radius:2rem}.kT{border-bottom-left-radius:2rem}.kU{border-top-right-radius:2.25rem}.kV{border-top-left-radius:2.25rem}.kW{border-bottom-right-radius:2.25rem}.kX{border-bottom-left-radius:2.25rem}.kY{border-top-right-radius:2.5rem}.kZ{border-top-left-radius:2.5rem}.k0{border-bottom-right-radius:2.5rem}.k1{border-bottom-left-radius:2.5rem}.k2{border-top-right-radius:2.75rem}.k3{border-top-left-radius:2.75rem}.k4{border-bottom-right-radius:2.75rem}.k5{border-bottom-left-radius:2.75rem}.k6{border-top-right-radius:3rem}.k7{border-top-left-radius:3rem}.k8{border-bottom-right-radius:3rem}.k9{border-bottom-left-radius:3rem}.la{border-top-right-radius:3.25rem}.lb{border-top-left-radius:3.25rem}.lc{border-bottom-right-radius:3.25rem}.ld{border-bottom-left-radius:3.25rem}.le{border-top-right-radius:3.5rem}.lf{border-top-left-radius:3.5rem}.lg{border-bottom-right-radius:3.5rem}.lh{border-bottom-left-radius:3.5rem}.li{border-top-right-radius:3.75rem}.lj{border-top-left-radius:3.75rem}.lk{border-bottom-right-radius:3.75rem}.ll{border-bottom-left-radius:3.75rem}.lm{border-top-right-radius:4rem}.ln{border-top-left-radius:4rem}.lo{border-bottom-right-radius:4rem}.lp{border-bottom-left-radius:4rem}.lq{border-top-right-radius:4.25rem}.lr{border-top-left-radius:4.25rem}.ls{border-bottom-right-radius:4.25rem}.lt{border-bottom-left-radius:4.25rem}.lu{border-top-right-radius:4.5rem}.lv{border-top-left-radius:4.5rem}.lw{border-bottom-right-radius:4.5rem}.lx{border-bottom-left-radius:4.5rem}.ly{border-top-right-radius:4.75rem}.lz{border-top-left-radius:4.75rem}.lA{border-bottom-right-radius:4.75rem}.lB{border-bottom-left-radius:4.75rem}.lC{border-top-right-radius:5rem}.lD{border-top-left-radius:5rem}.lE{border-bottom-right-radius:5rem}.lF{border-bottom-left-radius:5rem}.lG,.lH:hover{color:var(--primary)}.lI,.lJ:hover{background-color:var(--primary)}.lK,.lL:hover{border-color:var(--primary)}.lM,.lN:hover{color:var(--primaryLight)}.lO,.lP:hover{background-color:var(--primaryLight)}.lQ,.lR:hover{border-color:var(--primaryLight)}.lS,.lT:hover{color:var(--primaryDark)}.lU,.lV:hover{background-color:var(--primaryDark)}.lW,.lX:hover{border-color:var(--primaryDark)}.lY,.lZ:hover{color:var(--secondary)}.l0,.l1:hover{background-color:var(--secondary)}.l2,.l3:hover{border-color:var(--secondary)}.l4,.l5:hover{color:var(--secondaryLight)}.l6,.l7:hover{background-color:var(--secondaryLight)}.l8,.l9:hover{border-color:var(--secondaryLight)}.ma,.mb:hover{color:var(--secondaryDark)}.mc,.md:hover{background-color:var(--secondaryDark)}.me,.mf:hover{border-color:var(--secondaryDark)}.mg,.mh:hover{color:var(--tertiary)}.mi,.mj:hover{background-color:var(--tertiary)}.mk,.ml:hover{border-color:var(--tertiary)}.mm,.mn:hover{color:var(--tertiaryLight)}.mo,.mp:hover{background-color:var(--tertiaryLight)}.mq,.mr:hover{border-color:var(--tertiaryLight)}.ms,.mt:hover{color:var(--tertiaryDark)}.mu,.mv:hover{background-color:var(--tertiaryDark)}.mw,.mx:hover{border-color:var(--tertiaryDark)}.my,.mz:hover{color:var(--blue)}.mA,.mB:hover{background-color:var(--blue)}.mC,.mD:hover{border-color:var(--blue)}.mE,.mF:hover{color:var(--blueLight)}.mG,.mH:hover{background-color:var(--blueLight)}.mI,.mJ:hover{border-color:var(--blueLight)}.mK,.mL:hover{color:var(--blueDark)}.mM,.mN:hover{background-color:var(--blueDark)}.mO,.mP:hover{border-color:var(--blueDark)}.mQ,.mR:hover{color:var(--red)}.mS,.mT:hover{background-color:var(--red)}.mU,.mV:hover{border-color:var(--red)}.mW,.mX:hover{color:var(--redLight)}.mY,.mZ:hover{background-color:var(--redLight)}.m0,.m1:hover{border-color:var(--redLight)}.m2,.m3:hover{color:var(--redDark)}.m4,.m5:hover{background-color:var(--redDark)}.m6,.m7:hover{border-color:var(--redDark)}.m8,.m9:hover{color:var(--purple)}.na,.nb:hover{background-color:var(--purple)}.nc,.nd:hover{border-color:var(--purple)}.ne,.nf:hover{color:var(--purpleLight)}.ng,.nh:hover{background-color:var(--purpleLight)}.ni,.nj:hover{border-color:var(--purpleLight)}.nk,.nl:hover{color:var(--purpleDark)}.nm,.nn:hover{background-color:var(--purpleDark)}.no,.np:hover{border-color:var(--purpleDark)}.nq,.nr:hover{color:var(--yellow)}.ns,.nt:hover{background-color:var(--yellow)}.nu,.nv:hover{border-color:var(--yellow)}.nw,.nx:hover{color:var(--yellowLight)}.ny,.nz:hover{background-color:var(--yellowLight)}.nA,.nB:hover{border-color:var(--yellowLight)}.nC,.nD:hover{color:var(--yellowDark)}.nE,.nF:hover{background-color:var(--yellowDark)}.nG,.nH:hover{border-color:var(--yellowDark)}.nI,.nJ:hover{color:var(--pink)}.nK,.nL:hover{background-color:var(--pink)}.nM,.nN:hover{border-color:var(--pink)}.nO,.nP:hover{color:var(--pinkLight)}.nQ,.nR:hover{background-color:var(--pinkLight)}.nS,.nT:hover{border-color:var(--pinkLight)}.nU,.nV:hover{color:var(--pinkDark)}.nW,.nX:hover{background-color:var(--pinkDark)}.nY,.nZ:hover{border-color:var(--pinkDark)}.n0,.n1:hover{color:var(--green)}.n2,.n3:hover{background-color:var(--green)}.n4,.n5:hover{border-color:var(--green)}.n6,.n7:hover{color:var(--greenLight)}.n8,.n9:hover{background-color:var(--greenLight)}.oa,.ob:hover{border-color:var(--greenLight)}.oc,.od:hover{color:var(--greenDark)}.oe,.of:hover{background-color:var(--greenDark)}.og,.oh:hover{border-color:var(--greenDark)}.oi,.oj:hover{color:var(--orange)}.ok,.ol:hover{background-color:var(--orange)}.om,.on:hover{border-color:var(--orange)}.oo,.op:hover{color:var(--orangeLight)}.oq,.or:hover{background-color:var(--orangeLight)}.os,.ot:hover{border-color:var(--orangeLight)}.ou,.ov:hover{color:var(--orangeDark)}.ow,.ox:hover{background-color:var(--orangeDark)}.oy,.oz:hover{border-color:var(--orangeDark)}.oA,.oB:hover{color:var(--navy)}.oC,.oD:hover{background-color:var(--navy)}.oE,.oF:hover{border-color:var(--navy)}.oG,.oH:hover{color:var(--navyLight)}.oI,.oJ:hover{background-color:var(--navyLight)}.oK,.oL:hover{border-color:var(--navyLight)}.oM,.oN:hover{color:var(--navyDark)}.oO,.oP:hover{background-color:var(--navyDark)}.oQ,.oR:hover{border-color:var(--navyDark)}.oS,.oT:hover{color:var(--teal)}.oU,.oV:hover{background-color:var(--teal)}.oW,.oX:hover{border-color:var(--teal)}.oY,.oZ:hover{color:var(--tealLight)}.o0,.o1:hover{background-color:var(--tealLight)}.o2,.o3:hover{border-color:var(--tealLight)}.o4,.o5:hover{color:var(--tealDark)}.o6,.o7:hover{background-color:var(--tealDark)}.o8,.o9:hover{border-color:var(--tealDark)}.pa,.pb:hover{color:var(--violet)}.pc,.pd:hover{background-color:var(--violet)}.pe,.pf:hover{border-color:var(--violet)}.pg,.ph:hover{color:var(--violetLight)}.pi,.pj:hover{background-color:var(--violetLight)}.pk,.pl:hover{border-color:var(--violetLight)}.pm,.pn:hover{color:var(--violetDark)}.po,.pp:hover{background-color:var(--violetDark)}.pq,.pr:hover{border-color:var(--violetDark)}.ps,.pt:hover{color:var(--black)}.pu,.pv:hover{background-color:var(--black)}.pw,.px:hover{border-color:var(--black)}.py,.pz:hover{color:var(--white)}.pA,.pB:hover{background-color:var(--white)}.pC,.pD:hover{border-color:var(--white)}.pE,.pF:hover{color:var(--gray)}.pG,.pH:hover{background-color:var(--gray)}.pI,.pJ:hover{border-color:var(--gray)}.pK,.pL:hover{color:var(--grayLight)}.pM,.pN:hover{background-color:var(--grayLight)}.pO,.pP:hover{border-color:var(--grayLight)}.pQ,.pR:hover{color:var(--grayDark)}.pS,.pT:hover{background-color:var(--grayDark)}.pU,.pV:hover{border-color:var(--grayDark)}.pW,.pX:hover{color:var(--brown)}.pY,.pZ:hover{background-color:var(--brown)}.p0,.p1:hover{border-color:var(--brown)}.p2,.p3:hover{color:var(--brownLight)}.p4,.p5:hover{background-color:var(--brownLight)}.p6,.p7:hover{border-color:var(--brownLight)}.p8,.p9:hover{color:var(--brownDark)}.qa,.qb:hover{background-color:var(--brownDark)}.qc,.qd:hover{border-color:var(--brownDark)}.oi,.oj:hover{color:var(--orange)}.ok,.ol:hover{background-color:var(--orange)}.om,.on:hover{border-color:var(--orange)}.oo,.op:hover{color:var(--orangeLight)}.oq,.or:hover{background-color:var(--orangeLight)}.os,.ot:hover{border-color:var(--orangeLight)}.ou,.ov:hover{color:var(--orangeDark)}.ow,.ox:hover{background-color:var(--orangeDark)}.oy,.oz:hover{border-color:var(--orangeDark)}.qe{line-height:0}.qf{line-height:.3}.qg{line-height:.6}.qh{line-height:.9}.qi{line-height:1.2}.qj{line-height:1.5}.qk{line-height:1.8}.ql{line-height:2.1}.qm{line-height:2.4}.qn{line-height:2.7}.qo{line-height:3}.qp{line-height:3.3}.qq{line-height:3.6}.qr{line-height:3.9}.qs{line-height:4.2}.qt{line-height:4.5}.qu{line-height:4.8}.qv{line-height:5.1}.qw{line-height:5.4}.qx{line-height:5.7}.qy{line-height:6}.qz{cursor:auto}.qA{cursor:default}.qB{cursor:none}.qC{cursor:context-menu}.qD{cursor:help}.qE{cursor:pointer}.qF{cursor:progress}.qG{cursor:wait}.qH{cursor:cell}.qI{cursor:crosshair}.qJ{cursor:text}.qK{cursor:vertical-text}.qL{cursor:alias}.qM{cursor:copy}.qN{cursor:move}.qO{cursor:no-drop}.qP{cursor:not-allowed}.qQ{cursor:e-resize}.qR{cursor:n-resize}.qS{cursor:ne-resize}.qT{cursor:nw-resize}.qU{cursor:s-resize}.qV{cursor:se-resize}.qW{cursor:sw-resize}.qX{cursor:w-resize}.qY{cursor:ew-resize}.qZ{cursor:ns-resize}.q0{cursor:nesw-resize}.q1{cursor:nwse-resize}.q2{cursor:col-resize}.q3{cursor:row-resize}.q4{cursor:all-scroll}.q5{cursor:zoom-in}.q6{cursor:zoom-out}.q7{cursor:-webkit-grab;cursor:grab}.q8{cursor:-webkit-grabbing;cursor:grabbing}.q9{z-index:0}.ra{z-index:1}.rb{z-index:2}.rc{z-index:3}.rd{z-index:4}.re{z-index:5}.rf{z-index:6}.rg{z-index:7}.rh{z-index:8}.ri{z-index:9}.rj{z-index:10}.rk{z-index:11}.rl{z-index:12}.rm{z-index:13}.rn{z-index:14}.ro{z-index:15}.rp{z-index:16}.rq{z-index:17}.rr{z-index:18}.rs{z-index:19}.rt{z-index:20}.ru{overflow:auto}.rv{overflow-x:auto}.rw{overflow-y:auto}.rx{overflow:hidden}.ry{overflow-x:hidden}.rz{overflow-y:hidden}.rA{overflow:scroll}.rB{overflow-x:scroll}.rC{overflow-y:scroll}.rD{overflow:visible}.rE{overflow-x:visible}.rF{overflow-y:visible}.rG{opacity:.1}.rH{opacity:.2}.rI{opacity:.3}.rJ{opacity:.4}.rK{opacity:.5}.rL{opacity:.6}.rM{opacity:.7}.rN{opacity:.8}.rO{opacity:.9}.rP{opacity:1}.rQ{font-size:6px}.rR{font-size:8px}.rS{font-size:10px}.rT{font-size:12px}.rU{font-size:14px}.rV{font-size:16px}.rW{font-size:18px}.rX{font-size:20px}.rY{font-size:22px}.rZ{font-size:24px}.r0{font-size:26px}.r1{font-size:28px}.r2{font-size:30px}.r3{font-size:32px}.r4{font-size:34px}.r5{font-size:36px}.r6{font-size:38px}.r7{font-size:40px}.r8{font-size:42px}.r9{font-size:44px}.sa{font-size:46px}.sb{font-size:48px}.sc{font-size:50px}.sd{font-weight:100}.se{font-weight:200}.sf{font-weight:300}.sg{font-weight:400}.sh{font-weight:500}.si{font-weight:600}.sj{font-weight:700}.sk{font-weight:800}.sl{font-weight:900}.sm{text-decoration:none}.sn{text-decoration:underline}.so{text-align:left}.sp{text-align:right}.sq{text-align:center}.sr{text-transform:none}.ss{text-transform:capitalize}.st{text-transform:lowercase}.su{text-transform:uppercase}.sv{flex-wrap:nowrap}.sw{flex-wrap:wrap}.sx{flex-wrap:wrap-reverse}.sy{justify-content:start}.sz{justify-content:end}.sA{justify-content:flex-start}.sB{justify-content:flex-end}.sC{justify-content:center}.sD{justify-content:left}.sE{justify-content:right}.sF{justify-content:space-between}.sG{justify-content:space-around}.sH{justify-content:space-evenly}.sI{justify-content:stretch}.sJ{align-items:stretch}.sK{align-items:flex-start}.sL{align-items:flex-end}.sM{align-items:center}.sN{align-items:baseline}.sO{align-items:start}.sP{align-items:end}.sQ{align-items:self-start}.sR{align-items:self-end}.sS{align-content:flex-start}.sT{align-content:flex-end}.sU{align-content:center}.sV{align-content:space-between}.sW{align-content:space-around}.sX{align-content:space-evenly}.sY{align-content:stretch}.sZ{align-content:start}.s0{align-content:end}.s1{align-content:baseline}.s2{flex:1}.s3{direction:row}.s4{direction:row-reverse}.s5{direction:column}.s6{direction:column-reverse}.s7{gap:0rem}.s8{row-gap:0rem}.s9{-moz-column-gap:0rem;column-gap:0rem}.ta{order:0}.tb{flex-grow:0}.tc{flex-shrink:0}.td{gap:.5rem}.te{row-gap:.5rem}.tf{-moz-column-gap:.5rem;column-gap:.5rem}.tg{order:1}.th{flex-grow:1}.ti{flex-shrink:1}.tj{gap:1rem}.tk{row-gap:1rem}.tl{-moz-column-gap:1rem;column-gap:1rem}.tm{order:2}.tn{flex-grow:2}.to{flex-shrink:2}.tp{gap:1.5rem}.tq{row-gap:1.5rem}.tr{-moz-column-gap:1.5rem;column-gap:1.5rem}.ts{order:3}.tt{flex-grow:3}.tu{flex-shrink:3}.tv{gap:2rem}.tw{row-gap:2rem}.tx{-moz-column-gap:2rem;column-gap:2rem}.ty{order:4}.tz{flex-grow:4}.tA{flex-shrink:4}.tB{gap:2.5rem}.tC{row-gap:2.5rem}.tD{-moz-column-gap:2.5rem;column-gap:2.5rem}.tE{order:5}.tF{flex-grow:5}.tG{flex-shrink:5}.tH{gap:3rem}.tI{row-gap:3rem}.tJ{-moz-column-gap:3rem;column-gap:3rem}.tK{order:6}.tL{flex-grow:6}.tM{flex-shrink:6}.tN{gap:3.5rem}.tO{row-gap:3.5rem}.tP{-moz-column-gap:3.5rem;column-gap:3.5rem}.tQ{order:7}.tR{flex-grow:7}.tS{flex-shrink:7}.tT{gap:4rem}.tU{row-gap:4rem}.tV{-moz-column-gap:4rem;column-gap:4rem}.tW{order:8}.tX{flex-grow:8}.tY{flex-shrink:8}.tZ{gap:4.5rem}.t0{row-gap:4.5rem}.t1{-moz-column-gap:4.5rem;column-gap:4.5rem}.t2{order:9}.t3{flex-grow:9}.t4{flex-shrink:9}.t5{gap:5rem}.t6{row-gap:5rem}.t7{-moz-column-gap:5rem;column-gap:5rem}.t8{order:10}.t9{flex-grow:10}.ua{flex-shrink:10}.ub{gap:5.5rem}.uc{row-gap:5.5rem}.ud{-moz-column-gap:5.5rem;column-gap:5.5rem}.ue{order:11}.uf{flex-grow:11}.ug{flex-shrink:11}.uh{gap:6rem}.ui{row-gap:6rem}.uj{-moz-column-gap:6rem;column-gap:6rem}.uk{order:12}.ul{flex-grow:12}.um{flex-shrink:12}.un{gap:6.5rem}.uo{row-gap:6.5rem}.up{-moz-column-gap:6.5rem;column-gap:6.5rem}.uq{order:13}.ur{flex-grow:13}.us{flex-shrink:13}.ut{gap:7rem}.uu{row-gap:7rem}.uv{-moz-column-gap:7rem;column-gap:7rem}.uw{order:14}.ux{flex-grow:14}.uy{flex-shrink:14}.uz{gap:7.5rem}.uA{row-gap:7.5rem}.uB{-moz-column-gap:7.5rem;column-gap:7.5rem}.uC{order:15}.uD{flex-grow:15}.uE{flex-shrink:15}.uF{gap:8rem}.uG{row-gap:8rem}.uH{-moz-column-gap:8rem;column-gap:8rem}.uI{order:16}.uJ{flex-grow:16}.uK{flex-shrink:16}.uL{gap:8.5rem}.uM{row-gap:8.5rem}.uN{-moz-column-gap:8.5rem;column-gap:8.5rem}.uO{order:17}.uP{flex-grow:17}.uQ{flex-shrink:17}.uR{gap:9rem}.uS{row-gap:9rem}.uT{-moz-column-gap:9rem;column-gap:9rem}.uU{order:18}.uV{flex-grow:18}.uW{flex-shrink:18}.uX{gap:9.5rem}.uY{row-gap:9.5rem}.uZ{-moz-column-gap:9.5rem;column-gap:9.5rem}.u0{order:19}.u1{flex-grow:19}.u2{flex-shrink:19}.u3{gap:10rem}.u4{row-gap:10rem}.u5{-moz-column-gap:10rem;column-gap:10rem}.u6{order:20}.u7{flex-grow:20}.u8{flex-shrink:20}.u9{align-self:auto}.va{align-self:flex-start}.vb{align-self:flex-end}.vc{align-self:center}.vd{align-self:baseline}.ve{align-self:stretch}
File without changes
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import Box from './box';
2
- export default Box;
package/dist/index.umd.js DELETED
@@ -1 +0,0 @@
1
- (function(t,o){typeof exports=="object"&&typeof module!="undefined"?module.exports=o(require("react")):typeof define=="function"&&define.amd?define(["react"],o):(t=typeof globalThis!="undefined"?globalThis:t||self,t["react-box"]=o(t.React))})(this,function(t){"use strict";var k=Object.defineProperty,x=Object.defineProperties;var L=Object.getOwnPropertyDescriptors;var p=Object.getOwnPropertySymbols;var w=Object.prototype.hasOwnProperty,D=Object.prototype.propertyIsEnumerable;var d=(t,o,r)=>o in t?k(t,o,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[o]=r,u=(t,o)=>{for(var r in o||(o={}))w.call(o,r)&&d(t,r,o[r]);if(p)for(var r of p(o))D.call(o,r)&&d(t,r,o[r]);return t},m=(t,o)=>x(t,L(o));function o(n){return n&&typeof n=="object"&&"default"in n?n:{default:n}}var r=o(t),e={box:"a",displaynone:"b",displayblock:"c","displayinline-block":"d",displayflex:"e","displayinline-flex":"f",displaygrid:"g",positionstatic:"h",positionrelative:"i",positionabsolute:"j",positionfixed:"k",positionsticky:"l",widthfit:"m","widthfit-screen":"n",widthauto:"o","widthfit-content":"p","widthmax-content":"q","widthmin-content":"r",heightfit:"s","heightfit-screen":"t",heightauto:"u","heightfit-content":"v","heightmax-content":"w","heightmin-content":"x","min-widthfit":"y","min-widthfit-screen":"z","min-widthauto":"A","min-widthfit-content":"B","min-widthmax-content":"C","min-widthmin-content":"D","min-heightfit":"E","min-heightfit-screen":"F","min-heightauto":"G","min-heightfit-content":"H","min-heightmax-content":"I","min-heightmin-content":"J","max-widthfit":"K","max-widthfit-screen":"L","max-widthauto":"M","max-widthfit-content":"N","max-widthmax-content":"O","max-widthmin-content":"P","max-heightfit":"Q","max-heightfit-screen":"R","max-heightauto":"S","max-heightfit-content":"T","max-heightmax-content":"U","max-heightmin-content":"V",top0:"W",top1:"X",top2:"Y",top3:"Z",top4:"aa",top5:"ab",top6:"ac",top7:"ad",top8:"ae",top9:"af",top10:"ag",top11:"ah",top12:"ai",top13:"aj",top14:"ak",top15:"al",top16:"am",top17:"an",top18:"ao",top19:"ap",top20:"aq",right0:"ar",right1:"as",right2:"at",right3:"au",right4:"av",right5:"aw",right6:"ax",right7:"ay",right8:"az",right9:"aA",right10:"aB",right11:"aC",right12:"aD",right13:"aE",right14:"aF",right15:"aG",right16:"aH",right17:"aI",right18:"aJ",right19:"aK",right20:"aL",bottom0:"aM",bottom1:"aN",bottom2:"aO",bottom3:"aP",bottom4:"aQ",bottom5:"aR",bottom6:"aS",bottom7:"aT",bottom8:"aU",bottom9:"aV",bottom10:"aW",bottom11:"aX",bottom12:"aY",bottom13:"aZ",bottom14:"a0",bottom15:"a1",bottom16:"a2",bottom17:"a3",bottom18:"a4",bottom19:"a5",bottom20:"a6",left0:"a7",left1:"a8",left2:"a9",left3:"ba",left4:"bb",left5:"bc",left6:"bd",left7:"be",left8:"bf",left9:"bg",left10:"bh",left11:"bi",left12:"bj",left13:"bk",left14:"bl",left15:"bm",left16:"bn",left17:"bo",left18:"bp",left19:"bq",left20:"br",m0:"bs",m1:"bt",m2:"bu",m3:"bv",m4:"bw",m5:"bx",m6:"by",m7:"bz",m8:"bA",m9:"bB",m10:"bC",m11:"bD",m12:"bE",m13:"bF",m14:"bG",m15:"bH",m16:"bI",m17:"bJ",m18:"bK",m19:"bL",m20:"bM",mx0:"bN",my0:"bO",mx1:"bP",my1:"bQ",mx2:"bR",my2:"bS",mx3:"bT",my3:"bU",mx4:"bV",my4:"bW",mx5:"bX",my5:"bY",mx6:"bZ",my6:"b0",mx7:"b1",my7:"b2",mx8:"b3",my8:"b4",mx9:"b5",my9:"b6",mx10:"b7",my10:"b8",mx11:"b9",my11:"ca",mx12:"cb",my12:"cc",mx13:"cd",my13:"ce",mx14:"cf",my14:"cg",mx15:"ch",my15:"ci",mx16:"cj",my16:"ck",mx17:"cl",my17:"cm",mx18:"cn",my18:"co",mx19:"cp",my19:"cq",mx20:"cr",my20:"cs",mt0:"ct",mr0:"cu",mb0:"cv",ml0:"cw",mt1:"cx",mr1:"cy",mb1:"cz",ml1:"cA",mt2:"cB",mr2:"cC",mb2:"cD",ml2:"cE",mt3:"cF",mr3:"cG",mb3:"cH",ml3:"cI",mt4:"cJ",mr4:"cK",mb4:"cL",ml4:"cM",mt5:"cN",mr5:"cO",mb5:"cP",ml5:"cQ",mt6:"cR",mr6:"cS",mb6:"cT",ml6:"cU",mt7:"cV",mr7:"cW",mb7:"cX",ml7:"cY",mt8:"cZ",mr8:"c0",mb8:"c1",ml8:"c2",mt9:"c3",mr9:"c4",mb9:"c5",ml9:"c6",mt10:"c7",mr10:"c8",mb10:"c9",ml10:"da",mt11:"db",mr11:"dc",mb11:"dd",ml11:"de",mt12:"df",mr12:"dg",mb12:"dh",ml12:"di",mt13:"dj",mr13:"dk",mb13:"dl",ml13:"dm",mt14:"dn",mr14:"do",mb14:"dp",ml14:"dq",mt15:"dr",mr15:"ds",mb15:"dt",ml15:"du",mt16:"dv",mr16:"dw",mb16:"dx",ml16:"dy",mt17:"dz",mr17:"dA",mb17:"dB",ml17:"dC",mt18:"dD",mr18:"dE",mb18:"dF",ml18:"dG",mt19:"dH",mr19:"dI",mb19:"dJ",ml19:"dK",mt20:"dL",mr20:"dM",mb20:"dN",ml20:"dO",p0:"dP",p1:"dQ",p2:"dR",p3:"dS",p4:"dT",p5:"dU",p6:"dV",p7:"dW",p8:"dX",p9:"dY",p10:"dZ",p11:"d0",p12:"d1",p13:"d2",p14:"d3",p15:"d4",p16:"d5",p17:"d6",p18:"d7",p19:"d8",p20:"d9",px0:"ea",py0:"eb",px1:"ec",py1:"ed",px2:"ee",py2:"ef",px3:"eg",py3:"eh",px4:"ei",py4:"ej",px5:"ek",py5:"el",px6:"em",py6:"en",px7:"eo",py7:"ep",px8:"eq",py8:"er",px9:"es",py9:"et",px10:"eu",py10:"ev",px11:"ew",py11:"ex",px12:"ey",py12:"ez",px13:"eA",py13:"eB",px14:"eC",py14:"eD",px15:"eE",py15:"eF",px16:"eG",py16:"eH",px17:"eI",py17:"eJ",px18:"eK",py18:"eL",px19:"eM",py19:"eN",px20:"eO",py20:"eP",pt0:"eQ",pr0:"eR",pb0:"eS",pl0:"eT",pt1:"eU",pr1:"eV",pb1:"eW",pl1:"eX",pt2:"eY",pr2:"eZ",pb2:"e0",pl2:"e1",pt3:"e2",pr3:"e3",pb3:"e4",pl3:"e5",pt4:"e6",pr4:"e7",pb4:"e8",pl4:"e9",pt5:"fa",pr5:"fb",pb5:"fc",pl5:"fd",pt6:"fe",pr6:"ff",pb6:"fg",pl6:"fh",pt7:"fi",pr7:"fj",pb7:"fk",pl7:"fl",pt8:"fm",pr8:"fn",pb8:"fo",pl8:"fp",pt9:"fq",pr9:"fr",pb9:"fs",pl9:"ft",pt10:"fu",pr10:"fv",pb10:"fw",pl10:"fx",pt11:"fy",pr11:"fz",pb11:"fA",pl11:"fB",pt12:"fC",pr12:"fD",pb12:"fE",pl12:"fF",pt13:"fG",pr13:"fH",pb13:"fI",pl13:"fJ",pt14:"fK",pr14:"fL",pb14:"fM",pl14:"fN",pt15:"fO",pr15:"fP",pb15:"fQ",pl15:"fR",pt16:"fS",pr16:"fT",pb16:"fU",pl16:"fV",pt17:"fW",pr17:"fX",pb17:"fY",pl17:"fZ",pt18:"f0",pr18:"f1",pb18:"f2",pl18:"f3",pt19:"f4",pr19:"f5",pb19:"f6",pl19:"f7",pt20:"f8",pr20:"f9",pb20:"ga",pl20:"gb",b0:"gc",b1:"gd",b2:"ge",b3:"gf",b4:"gg",b5:"gh",b6:"gi",b7:"gj",b8:"gk",b9:"gl",b10:"gm",b11:"gn",b12:"go",b13:"gp",b14:"gq",b15:"gr",b16:"gs",b17:"gt",b18:"gu",b19:"gv",b20:"gw",bx0:"gx",by0:"gy",bx1:"gz",by1:"gA",bx2:"gB",by2:"gC",bx3:"gD",by3:"gE",bx4:"gF",by4:"gG",bx5:"gH",by5:"gI",bx6:"gJ",by6:"gK",bx7:"gL",by7:"gM",bx8:"gN",by8:"gO",bx9:"gP",by9:"gQ",bx10:"gR",by10:"gS",bx11:"gT",by11:"gU",bx12:"gV",by12:"gW",bx13:"gX",by13:"gY",bx14:"gZ",by14:"g0",bx15:"g1",by15:"g2",bx16:"g3",by16:"g4",bx17:"g5",by17:"g6",bx18:"g7",by18:"g8",bx19:"g9",by19:"ha",bx20:"hb",by20:"hc",bt0:"hd",br0:"he",bb0:"hf",bl0:"hg",bt1:"hh",br1:"hi",bb1:"hj",bl1:"hk",bt2:"hl",br2:"hm",bb2:"hn",bl2:"ho",bt3:"hp",br3:"hq",bb3:"hr",bl3:"hs",bt4:"ht",br4:"hu",bb4:"hv",bl4:"hw",bt5:"hx",br5:"hy",bb5:"hz",bl5:"hA",bt6:"hB",br6:"hC",bb6:"hD",bl6:"hE",bt7:"hF",br7:"hG",bb7:"hH",bl7:"hI",bt8:"hJ",br8:"hK",bb8:"hL",bl8:"hM",bt9:"hN",br9:"hO",bb9:"hP",bl9:"hQ",bt10:"hR",br10:"hS",bb10:"hT",bl10:"hU",bt11:"hV",br11:"hW",bb11:"hX",bl11:"hY",bt12:"hZ",br12:"h0",bb12:"h1",bl12:"h2",bt13:"h3",br13:"h4",bb13:"h5",bl13:"h6",bt14:"h7",br14:"h8",bb14:"h9",bl14:"ia",bt15:"ib",br15:"ic",bb15:"id",bl15:"ie",bt16:"if",br16:"ig",bb16:"ih",bl16:"ii",bt17:"ij",br17:"ik",bb17:"il",bl17:"im",bt18:"in",br18:"io",bb18:"ip",bl18:"iq",bt19:"ir",br19:"is",bb19:"it",bl19:"iu",bt20:"iv",br20:"iw",bb20:"ix",bl20:"iy",bStylesolid:"iz",bStyledashed:"iA",bStyledotted:"iB",bStyledouble:"iC",bRadius0:"iD",bRadius1:"iE",bRadius2:"iF",bRadius3:"iG",bRadius4:"iH",bRadius5:"iI",bRadius6:"iJ",bRadius7:"iK",bRadius8:"iL",bRadius9:"iM",bRadius10:"iN",bRadius11:"iO",bRadius12:"iP",bRadius13:"iQ",bRadius14:"iR",bRadius15:"iS",bRadius16:"iT",bRadius17:"iU",bRadius18:"iV",bRadius19:"iW",bRadius20:"iX",bRadiusTop0:"iY",bRadiusTop1:"iZ",bRadiusTop2:"i0",bRadiusTop3:"i1",bRadiusTop4:"i2",bRadiusTop5:"i3",bRadiusTop6:"i4",bRadiusTop7:"i5",bRadiusTop8:"i6",bRadiusTop9:"i7",bRadiusTop10:"i8",bRadiusTop11:"i9",bRadiusTop12:"ja",bRadiusTop13:"jb",bRadiusTop14:"jc",bRadiusTop15:"jd",bRadiusTop16:"je",bRadiusTop17:"jf",bRadiusTop18:"jg",bRadiusTop19:"jh",bRadiusTop20:"ji",bRadiusRight0:"jj",bRadiusRight1:"jk",bRadiusRight2:"jl",bRadiusRight3:"jm",bRadiusRight4:"jn",bRadiusRight5:"jo",bRadiusRight6:"jp",bRadiusRight7:"jq",bRadiusRight8:"jr",bRadiusRight9:"js",bRadiusRight10:"jt",bRadiusRight11:"ju",bRadiusRight12:"jv",bRadiusRight13:"jw",bRadiusRight14:"jx",bRadiusRight15:"jy",bRadiusRight16:"jz",bRadiusRight17:"jA",bRadiusRight18:"jB",bRadiusRight19:"jC",bRadiusRight20:"jD",bRadiusBottom0:"jE",bRadiusBottom1:"jF",bRadiusBottom2:"jG",bRadiusBottom3:"jH",bRadiusBottom4:"jI",bRadiusBottom5:"jJ",bRadiusBottom6:"jK",bRadiusBottom7:"jL",bRadiusBottom8:"jM",bRadiusBottom9:"jN",bRadiusBottom10:"jO",bRadiusBottom11:"jP",bRadiusBottom12:"jQ",bRadiusBottom13:"jR",bRadiusBottom14:"jS",bRadiusBottom15:"jT",bRadiusBottom16:"jU",bRadiusBottom17:"jV",bRadiusBottom18:"jW",bRadiusBottom19:"jX",bRadiusBottom20:"jY",bRadiusLeft0:"jZ",bRadiusLeft1:"j0",bRadiusLeft2:"j1",bRadiusLeft3:"j2",bRadiusLeft4:"j3",bRadiusLeft5:"j4",bRadiusLeft6:"j5",bRadiusLeft7:"j6",bRadiusLeft8:"j7",bRadiusLeft9:"j8",bRadiusLeft10:"j9",bRadiusLeft11:"ka",bRadiusLeft12:"kb",bRadiusLeft13:"kc",bRadiusLeft14:"kd",bRadiusLeft15:"ke",bRadiusLeft16:"kf",bRadiusLeft17:"kg",bRadiusLeft18:"kh",bRadiusLeft19:"ki",bRadiusLeft20:"kj",bRadiusTopRight0:"kk",bRadiusTopLeft0:"kl",bRadiusBottomRight0:"km",bRadiusBottomLeft0:"kn",bRadiusTopRight1:"ko",bRadiusTopLeft1:"kp",bRadiusBottomRight1:"kq",bRadiusBottomLeft1:"kr",bRadiusTopRight2:"ks",bRadiusTopLeft2:"kt",bRadiusBottomRight2:"ku",bRadiusBottomLeft2:"kv",bRadiusTopRight3:"kw",bRadiusTopLeft3:"kx",bRadiusBottomRight3:"ky",bRadiusBottomLeft3:"kz",bRadiusTopRight4:"kA",bRadiusTopLeft4:"kB",bRadiusBottomRight4:"kC",bRadiusBottomLeft4:"kD",bRadiusTopRight5:"kE",bRadiusTopLeft5:"kF",bRadiusBottomRight5:"kG",bRadiusBottomLeft5:"kH",bRadiusTopRight6:"kI",bRadiusTopLeft6:"kJ",bRadiusBottomRight6:"kK",bRadiusBottomLeft6:"kL",bRadiusTopRight7:"kM",bRadiusTopLeft7:"kN",bRadiusBottomRight7:"kO",bRadiusBottomLeft7:"kP",bRadiusTopRight8:"kQ",bRadiusTopLeft8:"kR",bRadiusBottomRight8:"kS",bRadiusBottomLeft8:"kT",bRadiusTopRight9:"kU",bRadiusTopLeft9:"kV",bRadiusBottomRight9:"kW",bRadiusBottomLeft9:"kX",bRadiusTopRight10:"kY",bRadiusTopLeft10:"kZ",bRadiusBottomRight10:"k0",bRadiusBottomLeft10:"k1",bRadiusTopRight11:"k2",bRadiusTopLeft11:"k3",bRadiusBottomRight11:"k4",bRadiusBottomLeft11:"k5",bRadiusTopRight12:"k6",bRadiusTopLeft12:"k7",bRadiusBottomRight12:"k8",bRadiusBottomLeft12:"k9",bRadiusTopRight13:"la",bRadiusTopLeft13:"lb",bRadiusBottomRight13:"lc",bRadiusBottomLeft13:"ld",bRadiusTopRight14:"le",bRadiusTopLeft14:"lf",bRadiusBottomRight14:"lg",bRadiusBottomLeft14:"lh",bRadiusTopRight15:"li",bRadiusTopLeft15:"lj",bRadiusBottomRight15:"lk",bRadiusBottomLeft15:"ll",bRadiusTopRight16:"lm",bRadiusTopLeft16:"ln",bRadiusBottomRight16:"lo",bRadiusBottomLeft16:"lp",bRadiusTopRight17:"lq",bRadiusTopLeft17:"lr",bRadiusBottomRight17:"ls",bRadiusBottomLeft17:"lt",bRadiusTopRight18:"lu",bRadiusTopLeft18:"lv",bRadiusBottomRight18:"lw",bRadiusBottomLeft18:"lx",bRadiusTopRight19:"ly",bRadiusTopLeft19:"lz",bRadiusBottomRight19:"lA",bRadiusBottomLeft19:"lB",bRadiusTopRight20:"lC",bRadiusTopLeft20:"lD",bRadiusBottomRight20:"lE",bRadiusBottomLeft20:"lF",colorprimary:"lG",colorHoverprimary:"lH",bgColorprimary:"lI",bgColorHoverprimary:"lJ",bColorprimary:"lK",bColorHoverprimary:"lL",colorprimaryLight:"lM",colorHoverprimaryLight:"lN",bgColorprimaryLight:"lO",bgColorHoverprimaryLight:"lP",bColorprimaryLight:"lQ",bColorHoverprimaryLight:"lR",colorprimaryDark:"lS",colorHoverprimaryDark:"lT",bgColorprimaryDark:"lU",bgColorHoverprimaryDark:"lV",bColorprimaryDark:"lW",bColorHoverprimaryDark:"lX",colorsecondary:"lY",colorHoversecondary:"lZ",bgColorsecondary:"l0",bgColorHoversecondary:"l1",bColorsecondary:"l2",bColorHoversecondary:"l3",colorsecondaryLight:"l4",colorHoversecondaryLight:"l5",bgColorsecondaryLight:"l6",bgColorHoversecondaryLight:"l7",bColorsecondaryLight:"l8",bColorHoversecondaryLight:"l9",colorsecondaryDark:"ma",colorHoversecondaryDark:"mb",bgColorsecondaryDark:"mc",bgColorHoversecondaryDark:"md",bColorsecondaryDark:"me",bColorHoversecondaryDark:"mf",colortertiary:"mg",colorHovertertiary:"mh",bgColortertiary:"mi",bgColorHovertertiary:"mj",bColortertiary:"mk",bColorHovertertiary:"ml",colortertiaryLight:"mm",colorHovertertiaryLight:"mn",bgColortertiaryLight:"mo",bgColorHovertertiaryLight:"mp",bColortertiaryLight:"mq",bColorHovertertiaryLight:"mr",colortertiaryDark:"ms",colorHovertertiaryDark:"mt",bgColortertiaryDark:"mu",bgColorHovertertiaryDark:"mv",bColortertiaryDark:"mw",bColorHovertertiaryDark:"mx",colorblue:"my",colorHoverblue:"mz",bgColorblue:"mA",bgColorHoverblue:"mB",bColorblue:"mC",bColorHoverblue:"mD",colorblueLight:"mE",colorHoverblueLight:"mF",bgColorblueLight:"mG",bgColorHoverblueLight:"mH",bColorblueLight:"mI",bColorHoverblueLight:"mJ",colorblueDark:"mK",colorHoverblueDark:"mL",bgColorblueDark:"mM",bgColorHoverblueDark:"mN",bColorblueDark:"mO",bColorHoverblueDark:"mP",colorred:"mQ",colorHoverred:"mR",bgColorred:"mS",bgColorHoverred:"mT",bColorred:"mU",bColorHoverred:"mV",colorredLight:"mW",colorHoverredLight:"mX",bgColorredLight:"mY",bgColorHoverredLight:"mZ",bColorredLight:"m0",bColorHoverredLight:"m1",colorredDark:"m2",colorHoverredDark:"m3",bgColorredDark:"m4",bgColorHoverredDark:"m5",bColorredDark:"m6",bColorHoverredDark:"m7",colorpurple:"m8",colorHoverpurple:"m9",bgColorpurple:"na",bgColorHoverpurple:"nb",bColorpurple:"nc",bColorHoverpurple:"nd",colorpurpleLight:"ne",colorHoverpurpleLight:"nf",bgColorpurpleLight:"ng",bgColorHoverpurpleLight:"nh",bColorpurpleLight:"ni",bColorHoverpurpleLight:"nj",colorpurpleDark:"nk",colorHoverpurpleDark:"nl",bgColorpurpleDark:"nm",bgColorHoverpurpleDark:"nn",bColorpurpleDark:"no",bColorHoverpurpleDark:"np",coloryellow:"nq",colorHoveryellow:"nr",bgColoryellow:"ns",bgColorHoveryellow:"nt",bColoryellow:"nu",bColorHoveryellow:"nv",coloryellowLight:"nw",colorHoveryellowLight:"nx",bgColoryellowLight:"ny",bgColorHoveryellowLight:"nz",bColoryellowLight:"nA",bColorHoveryellowLight:"nB",coloryellowDark:"nC",colorHoveryellowDark:"nD",bgColoryellowDark:"nE",bgColorHoveryellowDark:"nF",bColoryellowDark:"nG",bColorHoveryellowDark:"nH",colorpink:"nI",colorHoverpink:"nJ",bgColorpink:"nK",bgColorHoverpink:"nL",bColorpink:"nM",bColorHoverpink:"nN",colorpinkLight:"nO",colorHoverpinkLight:"nP",bgColorpinkLight:"nQ",bgColorHoverpinkLight:"nR",bColorpinkLight:"nS",bColorHoverpinkLight:"nT",colorpinkDark:"nU",colorHoverpinkDark:"nV",bgColorpinkDark:"nW",bgColorHoverpinkDark:"nX",bColorpinkDark:"nY",bColorHoverpinkDark:"nZ",colorgreen:"n0",colorHovergreen:"n1",bgColorgreen:"n2",bgColorHovergreen:"n3",bColorgreen:"n4",bColorHovergreen:"n5",colorgreenLight:"n6",colorHovergreenLight:"n7",bgColorgreenLight:"n8",bgColorHovergreenLight:"n9",bColorgreenLight:"oa",bColorHovergreenLight:"ob",colorgreenDark:"oc",colorHovergreenDark:"od",bgColorgreenDark:"oe",bgColorHovergreenDark:"of",bColorgreenDark:"og",bColorHovergreenDark:"oh",colororange:"oi",colorHoverorange:"oj",bgColororange:"ok",bgColorHoverorange:"ol",bColororange:"om",bColorHoverorange:"on",colororangeLight:"oo",colorHoverorangeLight:"op",bgColororangeLight:"oq",bgColorHoverorangeLight:"or",bColororangeLight:"os",bColorHoverorangeLight:"ot",colororangeDark:"ou",colorHoverorangeDark:"ov",bgColororangeDark:"ow",bgColorHoverorangeDark:"ox",bColororangeDark:"oy",bColorHoverorangeDark:"oz",colornavy:"oA",colorHovernavy:"oB",bgColornavy:"oC",bgColorHovernavy:"oD",bColornavy:"oE",bColorHovernavy:"oF",colornavyLight:"oG",colorHovernavyLight:"oH",bgColornavyLight:"oI",bgColorHovernavyLight:"oJ",bColornavyLight:"oK",bColorHovernavyLight:"oL",colornavyDark:"oM",colorHovernavyDark:"oN",bgColornavyDark:"oO",bgColorHovernavyDark:"oP",bColornavyDark:"oQ",bColorHovernavyDark:"oR",colorteal:"oS",colorHoverteal:"oT",bgColorteal:"oU",bgColorHoverteal:"oV",bColorteal:"oW",bColorHoverteal:"oX",colortealLight:"oY",colorHovertealLight:"oZ",bgColortealLight:"o0",bgColorHovertealLight:"o1",bColortealLight:"o2",bColorHovertealLight:"o3",colortealDark:"o4",colorHovertealDark:"o5",bgColortealDark:"o6",bgColorHovertealDark:"o7",bColortealDark:"o8",bColorHovertealDark:"o9",colorviolet:"pa",colorHoverviolet:"pb",bgColorviolet:"pc",bgColorHoverviolet:"pd",bColorviolet:"pe",bColorHoverviolet:"pf",colorvioletLight:"pg",colorHovervioletLight:"ph",bgColorvioletLight:"pi",bgColorHovervioletLight:"pj",bColorvioletLight:"pk",bColorHovervioletLight:"pl",colorvioletDark:"pm",colorHovervioletDark:"pn",bgColorvioletDark:"po",bgColorHovervioletDark:"pp",bColorvioletDark:"pq",bColorHovervioletDark:"pr",colorblack:"ps",colorHoverblack:"pt",bgColorblack:"pu",bgColorHoverblack:"pv",bColorblack:"pw",bColorHoverblack:"px",colorwhite:"py",colorHoverwhite:"pz",bgColorwhite:"pA",bgColorHoverwhite:"pB",bColorwhite:"pC",bColorHoverwhite:"pD",colorgray:"pE",colorHovergray:"pF",bgColorgray:"pG",bgColorHovergray:"pH",bColorgray:"pI",bColorHovergray:"pJ",colorgrayLight:"pK",colorHovergrayLight:"pL",bgColorgrayLight:"pM",bgColorHovergrayLight:"pN",bColorgrayLight:"pO",bColorHovergrayLight:"pP",colorgrayDark:"pQ",colorHovergrayDark:"pR",bgColorgrayDark:"pS",bgColorHovergrayDark:"pT",bColorgrayDark:"pU",bColorHovergrayDark:"pV",colorbrown:"pW",colorHoverbrown:"pX",bgColorbrown:"pY",bgColorHoverbrown:"pZ",bColorbrown:"p0",bColorHoverbrown:"p1",colorbrownLight:"p2",colorHoverbrownLight:"p3",bgColorbrownLight:"p4",bgColorHoverbrownLight:"p5",bColorbrownLight:"p6",bColorHoverbrownLight:"p7",colorbrownDark:"p8",colorHoverbrownDark:"p9",bgColorbrownDark:"qa",bgColorHoverbrownDark:"qb",bColorbrownDark:"qc",bColorHoverbrownDark:"qd",lineHeight0:"qe",lineHeight1:"qf",lineHeight2:"qg",lineHeight3:"qh",lineHeight4:"qi",lineHeight5:"qj",lineHeight6:"qk",lineHeight7:"ql",lineHeight8:"qm",lineHeight9:"qn",lineHeight10:"qo",lineHeight11:"qp",lineHeight12:"qq",lineHeight13:"qr",lineHeight14:"qs",lineHeight15:"qt",lineHeight16:"qu",lineHeight17:"qv",lineHeight18:"qw",lineHeight19:"qx",lineHeight20:"qy",cursorauto:"qz",cursordefault:"qA",cursornone:"qB","cursorcontext-menu":"qC",cursorhelp:"qD",cursorpointer:"qE",cursorprogress:"qF",cursorwait:"qG",cursorcell:"qH",cursorcrosshair:"qI",cursortext:"qJ","cursorvertical-text":"qK",cursoralias:"qL",cursorcopy:"qM",cursormove:"qN","cursorno-drop":"qO","cursornot-allowed":"qP","cursore-resize":"qQ","cursorn-resize":"qR","cursorne-resize":"qS","cursornw-resize":"qT","cursors-resize":"qU","cursorse-resize":"qV","cursorsw-resize":"qW","cursorw-resize":"qX","cursorew-resize":"qY","cursorns-resize":"qZ","cursornesw-resize":"q0","cursornwse-resize":"q1","cursorcol-resize":"q2","cursorrow-resize":"q3","cursorall-scroll":"q4","cursorzoom-in":"q5","cursorzoom-out":"q6",cursorgrab:"q7",cursorgrabbing:"q8",zIndex0:"q9",zIndex1:"ra",zIndex2:"rb",zIndex3:"rc",zIndex4:"rd",zIndex5:"re",zIndex6:"rf",zIndex7:"rg",zIndex8:"rh",zIndex9:"ri",zIndex10:"rj",zIndex11:"rk",zIndex12:"rl",zIndex13:"rm",zIndex14:"rn",zIndex15:"ro",zIndex16:"rp",zIndex17:"rq",zIndex18:"rr",zIndex19:"rs",zIndex20:"rt",overflowauto:"ru",overflowXauto:"rv",overflowYauto:"rw",overflowhidden:"rx",overflowXhidden:"ry",overflowYhidden:"rz",overflowscroll:"rA",overflowXscroll:"rB",overflowYscroll:"rC",overflowvisible:"rD",overflowXvisible:"rE",overflowYvisible:"rF",opacity10:"rG",opacity20:"rH",opacity30:"rI",opacity40:"rJ",opacity50:"rK",opacity60:"rL",opacity70:"rM",opacity80:"rN",opacity90:"rO",opacity100:"rP",fontSize6:"rQ",fontSize8:"rR",fontSize10:"rS",fontSize12:"rT",fontSize14:"rU",fontSize16:"rV",fontSize18:"rW",fontSize20:"rX",fontSize22:"rY",fontSize24:"rZ",fontSize26:"r0",fontSize28:"r1",fontSize30:"r2",fontSize32:"r3",fontSize34:"r4",fontSize36:"r5",fontSize38:"r6",fontSize40:"r7",fontSize42:"r8",fontSize44:"r9",fontSize46:"sa",fontSize48:"sb",fontSize50:"sc",fontWeight100:"sd",fontWeight200:"se",fontWeight300:"sf",fontWeight400:"sg",fontWeight500:"sh",fontWeight600:"si",fontWeight700:"sj",fontWeight800:"sk",fontWeight900:"sl",textDecorationnone:"sm",textDecorationunderline:"sn",textAlignleft:"so",textAlignright:"sp",textAligncenter:"sq",textTransformnone:"sr",textTransformcapitalize:"ss",textTransformlowercase:"st",textTransformuppercase:"su",flexWrapnowrap:"sv",flexWrapwrap:"sw","flexWrapwrap-reverse":"sx",justifyContentstart:"sy",justifyContentend:"sz","justifyContentflex-start":"sA","justifyContentflex-end":"sB",justifyContentcenter:"sC",justifyContentleft:"sD",justifyContentright:"sE","justifyContentspace-between":"sF","justifyContentspace-around":"sG","justifyContentspace-evenly":"sH",justifyContentstretch:"sI",alignItemsstretch:"sJ","alignItemsflex-start":"sK","alignItemsflex-end":"sL",alignItemscenter:"sM",alignItemsbaseline:"sN",alignItemsstart:"sO",alignItemsend:"sP","alignItemsself-start":"sQ","alignItemsself-end":"sR","alignContentflex-start":"sS","alignContentflex-end":"sT",alignContentcenter:"sU","alignContentspace-between":"sV","alignContentspace-around":"sW","alignContentspace-evenly":"sX",alignContentstretch:"sY",alignContentstart:"sZ",alignContentend:"s0",alignContentbaseline:"s1",flex1true:"s2",directionrow:"s3","directionrow-reverse":"s4",directioncolumn:"s5","directioncolumn-reverse":"s6",gap0:"s7",rowGap0:"s8",columnGap0:"s9",order0:"ta",flexGrow0:"tb",flexShrink0:"tc",gap1:"td",rowGap1:"te",columnGap1:"tf",order1:"tg",flexGrow1:"th",flexShrink1:"ti",gap2:"tj",rowGap2:"tk",columnGap2:"tl",order2:"tm",flexGrow2:"tn",flexShrink2:"to",gap3:"tp",rowGap3:"tq",columnGap3:"tr",order3:"ts",flexGrow3:"tt",flexShrink3:"tu",gap4:"tv",rowGap4:"tw",columnGap4:"tx",order4:"ty",flexGrow4:"tz",flexShrink4:"tA",gap5:"tB",rowGap5:"tC",columnGap5:"tD",order5:"tE",flexGrow5:"tF",flexShrink5:"tG",gap6:"tH",rowGap6:"tI",columnGap6:"tJ",order6:"tK",flexGrow6:"tL",flexShrink6:"tM",gap7:"tN",rowGap7:"tO",columnGap7:"tP",order7:"tQ",flexGrow7:"tR",flexShrink7:"tS",gap8:"tT",rowGap8:"tU",columnGap8:"tV",order8:"tW",flexGrow8:"tX",flexShrink8:"tY",gap9:"tZ",rowGap9:"t0",columnGap9:"t1",order9:"t2",flexGrow9:"t3",flexShrink9:"t4",gap10:"t5",rowGap10:"t6",columnGap10:"t7",order10:"t8",flexGrow10:"t9",flexShrink10:"ua",gap11:"ub",rowGap11:"uc",columnGap11:"ud",order11:"ue",flexGrow11:"uf",flexShrink11:"ug",gap12:"uh",rowGap12:"ui",columnGap12:"uj",order12:"uk",flexGrow12:"ul",flexShrink12:"um",gap13:"un",rowGap13:"uo",columnGap13:"up",order13:"uq",flexGrow13:"ur",flexShrink13:"us",gap14:"ut",rowGap14:"uu",columnGap14:"uv",order14:"uw",flexGrow14:"ux",flexShrink14:"uy",gap15:"uz",rowGap15:"uA",columnGap15:"uB",order15:"uC",flexGrow15:"uD",flexShrink15:"uE",gap16:"uF",rowGap16:"uG",columnGap16:"uH",order16:"uI",flexGrow16:"uJ",flexShrink16:"uK",gap17:"uL",rowGap17:"uM",columnGap17:"uN",order17:"uO",flexGrow17:"uP",flexShrink17:"uQ",gap18:"uR",rowGap18:"uS",columnGap18:"uT",order18:"uU",flexGrow18:"uV",flexShrink18:"uW",gap19:"uX",rowGap19:"uY",columnGap19:"uZ",order19:"u0",flexGrow19:"u1",flexShrink19:"u2",gap20:"u3",rowGap20:"u4",columnGap20:"u5",order20:"u6",flexGrow20:"u7",flexShrink20:"u8",alignSelfauto:"u9","alignSelfflex-start":"va","alignSelfflex-end":"vb",alignSelfcenter:"vc",alignSelfbaseline:"vd",alignSelfstretch:"ve"};function h(n){const{tag:R,children:s,props:f,className:i}=n,l=i?[i,e.box]:[e.box];Object.entries(n).forEach(([v,H])=>{const g=e[v+H];g&&l.push(g)});const C=R||"div",b=m(u({},f),{className:l.join(" ")}),[y,c]=t.useState(!1),a=typeof s=="function";return a&&(b.onMouseEnter=()=>c(!0),b.onMouseLeave=()=>c(!1)),r.default.createElement(C,b,a?s({isHover:y}):s)}return h});
package/dist/style.css DELETED
@@ -1 +0,0 @@
1
- body{font-size:16px;line-height:1.2}.a{display:inline-block;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;border:0 solid inherit;font-family:inherit;font-size:inherit;margin:0;padding:0}.b{display:none}.c{display:block}.d{display:inline-block}.e{display:flex}.f{display:inline-flex}.g{display:grid}.h{position:static}.i{position:relative}.j{position:absolute}.k{position:fixed}.l{position:-webkit-sticky;position:sticky}.m{width:100%}.n{width:100vw}.o{width:auto}.p{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.q{width:-webkit-max-content;width:-moz-max-content;width:max-content}.r{width:-webkit-min-content;width:-moz-min-content;width:min-content}.s{height:100%}.t{height:100vh}.u{height:auto}.v{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.w{height:-webkit-max-content;height:-moz-max-content;height:max-content}.x{height:-webkit-min-content;height:-moz-min-content;height:min-content}.y{min-width:100%}.z{min-width:100vw}.A{min-width:auto}.B{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}.C{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.D{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.E{min-height:100%}.F{min-height:100vh}.G{min-height:auto}.H{min-height:-webkit-fit-content;min-height:-moz-fit-content;min-height:fit-content}.I{min-height:-webkit-max-content;min-height:-moz-max-content;min-height:max-content}.J{min-height:-webkit-min-content;min-height:-moz-min-content;min-height:min-content}.K{max-width:100%}.L{max-width:100vw}.M{max-width:auto}.N{max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content}.O{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.P{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.Q{max-height:100%}.R{max-height:100vh}.S{max-height:auto}.T{max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.U{max-height:-webkit-max-content;max-height:-moz-max-content;max-height:max-content}.V{max-height:-webkit-min-content;max-height:-moz-min-content;max-height:min-content}.W{top:0rem}.X{top:.5rem}.Y{top:1rem}.Z{top:1.5rem}.aa{top:2rem}.ab{top:2.5rem}.ac{top:3rem}.ad{top:3.5rem}.ae{top:4rem}.af{top:4.5rem}.ag{top:5rem}.ah{top:5.5rem}.ai{top:6rem}.aj{top:6.5rem}.ak{top:7rem}.al{top:7.5rem}.am{top:8rem}.an{top:8.5rem}.ao{top:9rem}.ap{top:9.5rem}.aq{top:10rem}.ar{right:0rem}.as{right:.5rem}.at{right:1rem}.au{right:1.5rem}.av{right:2rem}.aw{right:2.5rem}.ax{right:3rem}.ay{right:3.5rem}.az{right:4rem}.aA{right:4.5rem}.aB{right:5rem}.aC{right:5.5rem}.aD{right:6rem}.aE{right:6.5rem}.aF{right:7rem}.aG{right:7.5rem}.aH{right:8rem}.aI{right:8.5rem}.aJ{right:9rem}.aK{right:9.5rem}.aL{right:10rem}.aM{bottom:0rem}.aN{bottom:.5rem}.aO{bottom:1rem}.aP{bottom:1.5rem}.aQ{bottom:2rem}.aR{bottom:2.5rem}.aS{bottom:3rem}.aT{bottom:3.5rem}.aU{bottom:4rem}.aV{bottom:4.5rem}.aW{bottom:5rem}.aX{bottom:5.5rem}.aY{bottom:6rem}.aZ{bottom:6.5rem}.a0{bottom:7rem}.a1{bottom:7.5rem}.a2{bottom:8rem}.a3{bottom:8.5rem}.a4{bottom:9rem}.a5{bottom:9.5rem}.a6{bottom:10rem}.a7{left:0rem}.a8{left:.5rem}.a9{left:1rem}.ba{left:1.5rem}.bb{left:2rem}.bc{left:2.5rem}.bd{left:3rem}.be{left:3.5rem}.bf{left:4rem}.bg{left:4.5rem}.bh{left:5rem}.bi{left:5.5rem}.bj{left:6rem}.bk{left:6.5rem}.bl{left:7rem}.bm{left:7.5rem}.bn{left:8rem}.bo{left:8.5rem}.bp{left:9rem}.bq{left:9.5rem}.br{left:10rem}.bs{margin:0rem}.bt{margin:.5rem}.bu{margin:1rem}.bv{margin:1.5rem}.bw{margin:2rem}.bx{margin:2.5rem}.by{margin:3rem}.bz{margin:3.5rem}.bA{margin:4rem}.bB{margin:4.5rem}.bC{margin:5rem}.bD{margin:5.5rem}.bE{margin:6rem}.bF{margin:6.5rem}.bG{margin:7rem}.bH{margin:7.5rem}.bI{margin:8rem}.bJ{margin:8.5rem}.bK{margin:9rem}.bL{margin:9.5rem}.bM{margin:10rem}.bN{margin-left:0rem;margin-right:0rem}.bO{margin-top:0rem;margin-bottom:0rem}.bP{margin-left:.5rem;margin-right:.5rem}.bQ{margin-top:.5rem;margin-bottom:.5rem}.bR{margin-left:1rem;margin-right:1rem}.bS{margin-top:1rem;margin-bottom:1rem}.bT{margin-left:1.5rem;margin-right:1.5rem}.bU{margin-top:1.5rem;margin-bottom:1.5rem}.bV{margin-left:2rem;margin-right:2rem}.bW{margin-top:2rem;margin-bottom:2rem}.bX{margin-left:2.5rem;margin-right:2.5rem}.bY{margin-top:2.5rem;margin-bottom:2.5rem}.bZ{margin-left:3rem;margin-right:3rem}.b0{margin-top:3rem;margin-bottom:3rem}.b1{margin-left:3.5rem;margin-right:3.5rem}.b2{margin-top:3.5rem;margin-bottom:3.5rem}.b3{margin-left:4rem;margin-right:4rem}.b4{margin-top:4rem;margin-bottom:4rem}.b5{margin-left:4.5rem;margin-right:4.5rem}.b6{margin-top:4.5rem;margin-bottom:4.5rem}.b7{margin-left:5rem;margin-right:5rem}.b8{margin-top:5rem;margin-bottom:5rem}.b9{margin-left:5.5rem;margin-right:5.5rem}.ca{margin-top:5.5rem;margin-bottom:5.5rem}.cb{margin-left:6rem;margin-right:6rem}.cc{margin-top:6rem;margin-bottom:6rem}.cd{margin-left:6.5rem;margin-right:6.5rem}.ce{margin-top:6.5rem;margin-bottom:6.5rem}.cf{margin-left:7rem;margin-right:7rem}.cg{margin-top:7rem;margin-bottom:7rem}.ch{margin-left:7.5rem;margin-right:7.5rem}.ci{margin-top:7.5rem;margin-bottom:7.5rem}.cj{margin-left:8rem;margin-right:8rem}.ck{margin-top:8rem;margin-bottom:8rem}.cl{margin-left:8.5rem;margin-right:8.5rem}.cm{margin-top:8.5rem;margin-bottom:8.5rem}.cn{margin-left:9rem;margin-right:9rem}.co{margin-top:9rem;margin-bottom:9rem}.cp{margin-left:9.5rem;margin-right:9.5rem}.cq{margin-top:9.5rem;margin-bottom:9.5rem}.cr{margin-left:10rem;margin-right:10rem}.cs{margin-top:10rem;margin-bottom:10rem}.ct{margin-top:0rem}.cu{margin-right:0rem}.cv{margin-bottom:0rem}.cw{margin-left:0rem}.cx{margin-top:.5rem}.cy{margin-right:.5rem}.cz{margin-bottom:.5rem}.cA{margin-left:.5rem}.cB{margin-top:1rem}.cC{margin-right:1rem}.cD{margin-bottom:1rem}.cE{margin-left:1rem}.cF{margin-top:1.5rem}.cG{margin-right:1.5rem}.cH{margin-bottom:1.5rem}.cI{margin-left:1.5rem}.cJ{margin-top:2rem}.cK{margin-right:2rem}.cL{margin-bottom:2rem}.cM{margin-left:2rem}.cN{margin-top:2.5rem}.cO{margin-right:2.5rem}.cP{margin-bottom:2.5rem}.cQ{margin-left:2.5rem}.cR{margin-top:3rem}.cS{margin-right:3rem}.cT{margin-bottom:3rem}.cU{margin-left:3rem}.cV{margin-top:3.5rem}.cW{margin-right:3.5rem}.cX{margin-bottom:3.5rem}.cY{margin-left:3.5rem}.cZ{margin-top:4rem}.c0{margin-right:4rem}.c1{margin-bottom:4rem}.c2{margin-left:4rem}.c3{margin-top:4.5rem}.c4{margin-right:4.5rem}.c5{margin-bottom:4.5rem}.c6{margin-left:4.5rem}.c7{margin-top:5rem}.c8{margin-right:5rem}.c9{margin-bottom:5rem}.da{margin-left:5rem}.db{margin-top:5.5rem}.dc{margin-right:5.5rem}.dd{margin-bottom:5.5rem}.de{margin-left:5.5rem}.df{margin-top:6rem}.dg{margin-right:6rem}.dh{margin-bottom:6rem}.di{margin-left:6rem}.dj{margin-top:6.5rem}.dk{margin-right:6.5rem}.dl{margin-bottom:6.5rem}.dm{margin-left:6.5rem}.dn{margin-top:7rem}.do{margin-right:7rem}.dp{margin-bottom:7rem}.dq{margin-left:7rem}.dr{margin-top:7.5rem}.ds{margin-right:7.5rem}.dt{margin-bottom:7.5rem}.du{margin-left:7.5rem}.dv{margin-top:8rem}.dw{margin-right:8rem}.dx{margin-bottom:8rem}.dy{margin-left:8rem}.dz{margin-top:8.5rem}.dA{margin-right:8.5rem}.dB{margin-bottom:8.5rem}.dC{margin-left:8.5rem}.dD{margin-top:9rem}.dE{margin-right:9rem}.dF{margin-bottom:9rem}.dG{margin-left:9rem}.dH{margin-top:9.5rem}.dI{margin-right:9.5rem}.dJ{margin-bottom:9.5rem}.dK{margin-left:9.5rem}.dL{margin-top:10rem}.dM{margin-right:10rem}.dN{margin-bottom:10rem}.dO{margin-left:10rem}.dP{padding:0rem}.dQ{padding:.5rem}.dR{padding:1rem}.dS{padding:1.5rem}.dT{padding:2rem}.dU{padding:2.5rem}.dV{padding:3rem}.dW{padding:3.5rem}.dX{padding:4rem}.dY{padding:4.5rem}.dZ{padding:5rem}.d0{padding:5.5rem}.d1{padding:6rem}.d2{padding:6.5rem}.d3{padding:7rem}.d4{padding:7.5rem}.d5{padding:8rem}.d6{padding:8.5rem}.d7{padding:9rem}.d8{padding:9.5rem}.d9{padding:10rem}.ea{padding-left:0rem;padding-right:0rem}.eb{padding-top:0rem;padding-bottom:0rem}.ec{padding-left:.5rem;padding-right:.5rem}.ed{padding-top:.5rem;padding-bottom:.5rem}.ee{padding-left:1rem;padding-right:1rem}.ef{padding-top:1rem;padding-bottom:1rem}.eg{padding-left:1.5rem;padding-right:1.5rem}.eh{padding-top:1.5rem;padding-bottom:1.5rem}.ei{padding-left:2rem;padding-right:2rem}.ej{padding-top:2rem;padding-bottom:2rem}.ek{padding-left:2.5rem;padding-right:2.5rem}.el{padding-top:2.5rem;padding-bottom:2.5rem}.em{padding-left:3rem;padding-right:3rem}.en{padding-top:3rem;padding-bottom:3rem}.eo{padding-left:3.5rem;padding-right:3.5rem}.ep{padding-top:3.5rem;padding-bottom:3.5rem}.eq{padding-left:4rem;padding-right:4rem}.er{padding-top:4rem;padding-bottom:4rem}.es{padding-left:4.5rem;padding-right:4.5rem}.et{padding-top:4.5rem;padding-bottom:4.5rem}.eu{padding-left:5rem;padding-right:5rem}.ev{padding-top:5rem;padding-bottom:5rem}.ew{padding-left:5.5rem;padding-right:5.5rem}.ex{padding-top:5.5rem;padding-bottom:5.5rem}.ey{padding-left:6rem;padding-right:6rem}.ez{padding-top:6rem;padding-bottom:6rem}.eA{padding-left:6.5rem;padding-right:6.5rem}.eB{padding-top:6.5rem;padding-bottom:6.5rem}.eC{padding-left:7rem;padding-right:7rem}.eD{padding-top:7rem;padding-bottom:7rem}.eE{padding-left:7.5rem;padding-right:7.5rem}.eF{padding-top:7.5rem;padding-bottom:7.5rem}.eG{padding-left:8rem;padding-right:8rem}.eH{padding-top:8rem;padding-bottom:8rem}.eI{padding-left:8.5rem;padding-right:8.5rem}.eJ{padding-top:8.5rem;padding-bottom:8.5rem}.eK{padding-left:9rem;padding-right:9rem}.eL{padding-top:9rem;padding-bottom:9rem}.eM{padding-left:9.5rem;padding-right:9.5rem}.eN{padding-top:9.5rem;padding-bottom:9.5rem}.eO{padding-left:10rem;padding-right:10rem}.eP{padding-top:10rem;padding-bottom:10rem}.eQ{padding-top:0rem}.eR{padding-right:0rem}.eS{padding-bottom:0rem}.eT{padding-left:0rem}.eU{padding-top:.5rem}.eV{padding-right:.5rem}.eW{padding-bottom:.5rem}.eX{padding-left:.5rem}.eY{padding-top:1rem}.eZ{padding-right:1rem}.e0{padding-bottom:1rem}.e1{padding-left:1rem}.e2{padding-top:1.5rem}.e3{padding-right:1.5rem}.e4{padding-bottom:1.5rem}.e5{padding-left:1.5rem}.e6{padding-top:2rem}.e7{padding-right:2rem}.e8{padding-bottom:2rem}.e9{padding-left:2rem}.fa{padding-top:2.5rem}.fb{padding-right:2.5rem}.fc{padding-bottom:2.5rem}.fd{padding-left:2.5rem}.fe{padding-top:3rem}.ff{padding-right:3rem}.fg{padding-bottom:3rem}.fh{padding-left:3rem}.fi{padding-top:3.5rem}.fj{padding-right:3.5rem}.fk{padding-bottom:3.5rem}.fl{padding-left:3.5rem}.fm{padding-top:4rem}.fn{padding-right:4rem}.fo{padding-bottom:4rem}.fp{padding-left:4rem}.fq{padding-top:4.5rem}.fr{padding-right:4.5rem}.fs{padding-bottom:4.5rem}.ft{padding-left:4.5rem}.fu{padding-top:5rem}.fv{padding-right:5rem}.fw{padding-bottom:5rem}.fx{padding-left:5rem}.fy{padding-top:5.5rem}.fz{padding-right:5.5rem}.fA{padding-bottom:5.5rem}.fB{padding-left:5.5rem}.fC{padding-top:6rem}.fD{padding-right:6rem}.fE{padding-bottom:6rem}.fF{padding-left:6rem}.fG{padding-top:6.5rem}.fH{padding-right:6.5rem}.fI{padding-bottom:6.5rem}.fJ{padding-left:6.5rem}.fK{padding-top:7rem}.fL{padding-right:7rem}.fM{padding-bottom:7rem}.fN{padding-left:7rem}.fO{padding-top:7.5rem}.fP{padding-right:7.5rem}.fQ{padding-bottom:7.5rem}.fR{padding-left:7.5rem}.fS{padding-top:8rem}.fT{padding-right:8rem}.fU{padding-bottom:8rem}.fV{padding-left:8rem}.fW{padding-top:8.5rem}.fX{padding-right:8.5rem}.fY{padding-bottom:8.5rem}.fZ{padding-left:8.5rem}.f0{padding-top:9rem}.f1{padding-right:9rem}.f2{padding-bottom:9rem}.f3{padding-left:9rem}.f4{padding-top:9.5rem}.f5{padding-right:9.5rem}.f6{padding-bottom:9.5rem}.f7{padding-left:9.5rem}.f8{padding-top:10rem}.f9{padding-right:10rem}.ga{padding-bottom:10rem}.gb{padding-left:10rem}.gc{border-width:0px}.gd{border-width:1px}.ge{border-width:2px}.gf{border-width:3px}.gg{border-width:4px}.gh{border-width:5px}.gi{border-width:6px}.gj{border-width:7px}.gk{border-width:8px}.gl{border-width:9px}.gm{border-width:10px}.gn{border-width:11px}.go{border-width:12px}.gp{border-width:13px}.gq{border-width:14px}.gr{border-width:15px}.gs{border-width:16px}.gt{border-width:17px}.gu{border-width:18px}.gv{border-width:19px}.gw{border-width:20px}.gx{border-left-width:0px;border-right-width:0px}.gy{border-top-width:0px;border-bottom-width:0px}.gz{border-left-width:1px;border-right-width:1px}.gA{border-top-width:1px;border-bottom-width:1px}.gB{border-left-width:2px;border-right-width:2px}.gC{border-top-width:2px;border-bottom-width:2px}.gD{border-left-width:3px;border-right-width:3px}.gE{border-top-width:3px;border-bottom-width:3px}.gF{border-left-width:4px;border-right-width:4px}.gG{border-top-width:4px;border-bottom-width:4px}.gH{border-left-width:5px;border-right-width:5px}.gI{border-top-width:5px;border-bottom-width:5px}.gJ{border-left-width:6px;border-right-width:6px}.gK{border-top-width:6px;border-bottom-width:6px}.gL{border-left-width:7px;border-right-width:7px}.gM{border-top-width:7px;border-bottom-width:7px}.gN{border-left-width:8px;border-right-width:8px}.gO{border-top-width:8px;border-bottom-width:8px}.gP{border-left-width:9px;border-right-width:9px}.gQ{border-top-width:9px;border-bottom-width:9px}.gR{border-left-width:10px;border-right-width:10px}.gS{border-top-width:10px;border-bottom-width:10px}.gT{border-left-width:11px;border-right-width:11px}.gU{border-top-width:11px;border-bottom-width:11px}.gV{border-left-width:12px;border-right-width:12px}.gW{border-top-width:12px;border-bottom-width:12px}.gX{border-left-width:13px;border-right-width:13px}.gY{border-top-width:13px;border-bottom-width:13px}.gZ{border-left-width:14px;border-right-width:14px}.g0{border-top-width:14px;border-bottom-width:14px}.g1{border-left-width:15px;border-right-width:15px}.g2{border-top-width:15px;border-bottom-width:15px}.g3{border-left-width:16px;border-right-width:16px}.g4{border-top-width:16px;border-bottom-width:16px}.g5{border-left-width:17px;border-right-width:17px}.g6{border-top-width:17px;border-bottom-width:17px}.g7{border-left-width:18px;border-right-width:18px}.g8{border-top-width:18px;border-bottom-width:18px}.g9{border-left-width:19px;border-right-width:19px}.ha{border-top-width:19px;border-bottom-width:19px}.hb{border-left-width:20px;border-right-width:20px}.hc{border-top-width:20px;border-bottom-width:20px}.hd{border-top-width:0px}.he{border-right-width:0px}.hf{border-bottom-width:0px}.hg{border-left-width:0px}.hh{border-top-width:1px}.hi{border-right-width:1px}.hj{border-bottom-width:1px}.hk{border-left-width:1px}.hl{border-top-width:2px}.hm{border-right-width:2px}.hn{border-bottom-width:2px}.ho{border-left-width:2px}.hp{border-top-width:3px}.hq{border-right-width:3px}.hr{border-bottom-width:3px}.hs{border-left-width:3px}.ht{border-top-width:4px}.hu{border-right-width:4px}.hv{border-bottom-width:4px}.hw{border-left-width:4px}.hx{border-top-width:5px}.hy{border-right-width:5px}.hz{border-bottom-width:5px}.hA{border-left-width:5px}.hB{border-top-width:6px}.hC{border-right-width:6px}.hD{border-bottom-width:6px}.hE{border-left-width:6px}.hF{border-top-width:7px}.hG{border-right-width:7px}.hH{border-bottom-width:7px}.hI{border-left-width:7px}.hJ{border-top-width:8px}.hK{border-right-width:8px}.hL{border-bottom-width:8px}.hM{border-left-width:8px}.hN{border-top-width:9px}.hO{border-right-width:9px}.hP{border-bottom-width:9px}.hQ{border-left-width:9px}.hR{border-top-width:10px}.hS{border-right-width:10px}.hT{border-bottom-width:10px}.hU{border-left-width:10px}.hV{border-top-width:11px}.hW{border-right-width:11px}.hX{border-bottom-width:11px}.hY{border-left-width:11px}.hZ{border-top-width:12px}.h0{border-right-width:12px}.h1{border-bottom-width:12px}.h2{border-left-width:12px}.h3{border-top-width:13px}.h4{border-right-width:13px}.h5{border-bottom-width:13px}.h6{border-left-width:13px}.h7{border-top-width:14px}.h8{border-right-width:14px}.h9{border-bottom-width:14px}.ia{border-left-width:14px}.ib{border-top-width:15px}.ic{border-right-width:15px}.id{border-bottom-width:15px}.ie{border-left-width:15px}.if{border-top-width:16px}.ig{border-right-width:16px}.ih{border-bottom-width:16px}.ii{border-left-width:16px}.ij{border-top-width:17px}.ik{border-right-width:17px}.il{border-bottom-width:17px}.im{border-left-width:17px}.in{border-top-width:18px}.io{border-right-width:18px}.ip{border-bottom-width:18px}.iq{border-left-width:18px}.ir{border-top-width:19px}.is{border-right-width:19px}.it{border-bottom-width:19px}.iu{border-left-width:19px}.iv{border-top-width:20px}.iw{border-right-width:20px}.ix{border-bottom-width:20px}.iy{border-left-width:20px}.iz{border-style:solid}.iA{border-style:dashed}.iB{border-style:dotted}.iC{border-style:double}.iD{border-radius:0rem}.iE{border-radius:.25rem}.iF{border-radius:.5rem}.iG{border-radius:.75rem}.iH{border-radius:1rem}.iI{border-radius:1.25rem}.iJ{border-radius:1.5rem}.iK{border-radius:1.75rem}.iL{border-radius:2rem}.iM{border-radius:2.25rem}.iN{border-radius:2.5rem}.iO{border-radius:2.75rem}.iP{border-radius:3rem}.iQ{border-radius:3.25rem}.iR{border-radius:3.5rem}.iS{border-radius:3.75rem}.iT{border-radius:4rem}.iU{border-radius:4.25rem}.iV{border-radius:4.5rem}.iW{border-radius:4.75rem}.iX{border-radius:5rem}.iY{border-top-left-radius:0rem;border-top-right-radius:0rem}.iZ{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.i0{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.i1{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.i2{border-top-left-radius:1rem;border-top-right-radius:1rem}.i3{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.i4{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.i5{border-top-left-radius:1.75rem;border-top-right-radius:1.75rem}.i6{border-top-left-radius:2rem;border-top-right-radius:2rem}.i7{border-top-left-radius:2.25rem;border-top-right-radius:2.25rem}.i8{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.i9{border-top-left-radius:2.75rem;border-top-right-radius:2.75rem}.ja{border-top-left-radius:3rem;border-top-right-radius:3rem}.jb{border-top-left-radius:3.25rem;border-top-right-radius:3.25rem}.jc{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.jd{border-top-left-radius:3.75rem;border-top-right-radius:3.75rem}.je{border-top-left-radius:4rem;border-top-right-radius:4rem}.jf{border-top-left-radius:4.25rem;border-top-right-radius:4.25rem}.jg{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.jh{border-top-left-radius:4.75rem;border-top-right-radius:4.75rem}.ji{border-top-left-radius:5rem;border-top-right-radius:5rem}.jj{border-top-right-radius:0rem;border-bottom-right-radius:0rem}.jk{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.jl{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.jm{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}.jn{border-top-right-radius:1rem;border-bottom-right-radius:1rem}.jo{border-top-right-radius:1.25rem;border-bottom-right-radius:1.25rem}.jp{border-top-right-radius:1.5rem;border-bottom-right-radius:1.5rem}.jq{border-top-right-radius:1.75rem;border-bottom-right-radius:1.75rem}.jr{border-top-right-radius:2rem;border-bottom-right-radius:2rem}.js{border-top-right-radius:2.25rem;border-bottom-right-radius:2.25rem}.jt{border-top-right-radius:2.5rem;border-bottom-right-radius:2.5rem}.ju{border-top-right-radius:2.75rem;border-bottom-right-radius:2.75rem}.jv{border-top-right-radius:3rem;border-bottom-right-radius:3rem}.jw{border-top-right-radius:3.25rem;border-bottom-right-radius:3.25rem}.jx{border-top-right-radius:3.5rem;border-bottom-right-radius:3.5rem}.jy{border-top-right-radius:3.75rem;border-bottom-right-radius:3.75rem}.jz{border-top-right-radius:4rem;border-bottom-right-radius:4rem}.jA{border-top-right-radius:4.25rem;border-bottom-right-radius:4.25rem}.jB{border-top-right-radius:4.5rem;border-bottom-right-radius:4.5rem}.jC{border-top-right-radius:4.75rem;border-bottom-right-radius:4.75rem}.jD{border-top-right-radius:5rem;border-bottom-right-radius:5rem}.jE{border-bottom-left-radius:0rem;border-bottom-right-radius:0rem}.jF{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.jG{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.jH{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.jI{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.jJ{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.jK{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.jL{border-bottom-left-radius:1.75rem;border-bottom-right-radius:1.75rem}.jM{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.jN{border-bottom-left-radius:2.25rem;border-bottom-right-radius:2.25rem}.jO{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.jP{border-bottom-left-radius:2.75rem;border-bottom-right-radius:2.75rem}.jQ{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.jR{border-bottom-left-radius:3.25rem;border-bottom-right-radius:3.25rem}.jS{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.jT{border-bottom-left-radius:3.75rem;border-bottom-right-radius:3.75rem}.jU{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.jV{border-bottom-left-radius:4.25rem;border-bottom-right-radius:4.25rem}.jW{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.jX{border-bottom-left-radius:4.75rem;border-bottom-right-radius:4.75rem}.jY{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.jZ{border-top-left-radius:0rem;border-bottom-left-radius:0rem}.j0{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.j1{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.j2{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}.j3{border-top-left-radius:1rem;border-bottom-left-radius:1rem}.j4{border-top-left-radius:1.25rem;border-bottom-left-radius:1.25rem}.j5{border-top-left-radius:1.5rem;border-bottom-left-radius:1.5rem}.j6{border-top-left-radius:1.75rem;border-bottom-left-radius:1.75rem}.j7{border-top-left-radius:2rem;border-bottom-left-radius:2rem}.j8{border-top-left-radius:2.25rem;border-bottom-left-radius:2.25rem}.j9{border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem}.ka{border-top-left-radius:2.75rem;border-bottom-left-radius:2.75rem}.kb{border-top-left-radius:3rem;border-bottom-left-radius:3rem}.kc{border-top-left-radius:3.25rem;border-bottom-left-radius:3.25rem}.kd{border-top-left-radius:3.5rem;border-bottom-left-radius:3.5rem}.ke{border-top-left-radius:3.75rem;border-bottom-left-radius:3.75rem}.kf{border-top-left-radius:4rem;border-bottom-left-radius:4rem}.kg{border-top-left-radius:4.25rem;border-bottom-left-radius:4.25rem}.kh{border-top-left-radius:4.5rem;border-bottom-left-radius:4.5rem}.ki{border-top-left-radius:4.75rem;border-bottom-left-radius:4.75rem}.kj{border-top-left-radius:5rem;border-bottom-left-radius:5rem}.kk{border-top-right-radius:0rem}.kl{border-top-left-radius:0rem}.km{border-bottom-right-radius:0rem}.kn{border-bottom-left-radius:0rem}.ko{border-top-right-radius:.25rem}.kp{border-top-left-radius:.25rem}.kq{border-bottom-right-radius:.25rem}.kr{border-bottom-left-radius:.25rem}.ks{border-top-right-radius:.5rem}.kt{border-top-left-radius:.5rem}.ku{border-bottom-right-radius:.5rem}.kv{border-bottom-left-radius:.5rem}.kw{border-top-right-radius:.75rem}.kx{border-top-left-radius:.75rem}.ky{border-bottom-right-radius:.75rem}.kz{border-bottom-left-radius:.75rem}.kA{border-top-right-radius:1rem}.kB{border-top-left-radius:1rem}.kC{border-bottom-right-radius:1rem}.kD{border-bottom-left-radius:1rem}.kE{border-top-right-radius:1.25rem}.kF{border-top-left-radius:1.25rem}.kG{border-bottom-right-radius:1.25rem}.kH{border-bottom-left-radius:1.25rem}.kI{border-top-right-radius:1.5rem}.kJ{border-top-left-radius:1.5rem}.kK{border-bottom-right-radius:1.5rem}.kL{border-bottom-left-radius:1.5rem}.kM{border-top-right-radius:1.75rem}.kN{border-top-left-radius:1.75rem}.kO{border-bottom-right-radius:1.75rem}.kP{border-bottom-left-radius:1.75rem}.kQ{border-top-right-radius:2rem}.kR{border-top-left-radius:2rem}.kS{border-bottom-right-radius:2rem}.kT{border-bottom-left-radius:2rem}.kU{border-top-right-radius:2.25rem}.kV{border-top-left-radius:2.25rem}.kW{border-bottom-right-radius:2.25rem}.kX{border-bottom-left-radius:2.25rem}.kY{border-top-right-radius:2.5rem}.kZ{border-top-left-radius:2.5rem}.k0{border-bottom-right-radius:2.5rem}.k1{border-bottom-left-radius:2.5rem}.k2{border-top-right-radius:2.75rem}.k3{border-top-left-radius:2.75rem}.k4{border-bottom-right-radius:2.75rem}.k5{border-bottom-left-radius:2.75rem}.k6{border-top-right-radius:3rem}.k7{border-top-left-radius:3rem}.k8{border-bottom-right-radius:3rem}.k9{border-bottom-left-radius:3rem}.la{border-top-right-radius:3.25rem}.lb{border-top-left-radius:3.25rem}.lc{border-bottom-right-radius:3.25rem}.ld{border-bottom-left-radius:3.25rem}.le{border-top-right-radius:3.5rem}.lf{border-top-left-radius:3.5rem}.lg{border-bottom-right-radius:3.5rem}.lh{border-bottom-left-radius:3.5rem}.li{border-top-right-radius:3.75rem}.lj{border-top-left-radius:3.75rem}.lk{border-bottom-right-radius:3.75rem}.ll{border-bottom-left-radius:3.75rem}.lm{border-top-right-radius:4rem}.ln{border-top-left-radius:4rem}.lo{border-bottom-right-radius:4rem}.lp{border-bottom-left-radius:4rem}.lq{border-top-right-radius:4.25rem}.lr{border-top-left-radius:4.25rem}.ls{border-bottom-right-radius:4.25rem}.lt{border-bottom-left-radius:4.25rem}.lu{border-top-right-radius:4.5rem}.lv{border-top-left-radius:4.5rem}.lw{border-bottom-right-radius:4.5rem}.lx{border-bottom-left-radius:4.5rem}.ly{border-top-right-radius:4.75rem}.lz{border-top-left-radius:4.75rem}.lA{border-bottom-right-radius:4.75rem}.lB{border-bottom-left-radius:4.75rem}.lC{border-top-right-radius:5rem}.lD{border-top-left-radius:5rem}.lE{border-bottom-right-radius:5rem}.lF{border-bottom-left-radius:5rem}.lG,.lH:hover{color:var(--primary)}.lI,.lJ:hover{background-color:var(--primary)}.lK,.lL:hover{border-color:var(--primary)}.lM,.lN:hover{color:var(--primaryLight)}.lO,.lP:hover{background-color:var(--primaryLight)}.lQ,.lR:hover{border-color:var(--primaryLight)}.lS,.lT:hover{color:var(--primaryDark)}.lU,.lV:hover{background-color:var(--primaryDark)}.lW,.lX:hover{border-color:var(--primaryDark)}.lY,.lZ:hover{color:var(--secondary)}.l0,.l1:hover{background-color:var(--secondary)}.l2,.l3:hover{border-color:var(--secondary)}.l4,.l5:hover{color:var(--secondaryLight)}.l6,.l7:hover{background-color:var(--secondaryLight)}.l8,.l9:hover{border-color:var(--secondaryLight)}.ma,.mb:hover{color:var(--secondaryDark)}.mc,.md:hover{background-color:var(--secondaryDark)}.me,.mf:hover{border-color:var(--secondaryDark)}.mg,.mh:hover{color:var(--tertiary)}.mi,.mj:hover{background-color:var(--tertiary)}.mk,.ml:hover{border-color:var(--tertiary)}.mm,.mn:hover{color:var(--tertiaryLight)}.mo,.mp:hover{background-color:var(--tertiaryLight)}.mq,.mr:hover{border-color:var(--tertiaryLight)}.ms,.mt:hover{color:var(--tertiaryDark)}.mu,.mv:hover{background-color:var(--tertiaryDark)}.mw,.mx:hover{border-color:var(--tertiaryDark)}.my,.mz:hover{color:var(--blue)}.mA,.mB:hover{background-color:var(--blue)}.mC,.mD:hover{border-color:var(--blue)}.mE,.mF:hover{color:var(--blueLight)}.mG,.mH:hover{background-color:var(--blueLight)}.mI,.mJ:hover{border-color:var(--blueLight)}.mK,.mL:hover{color:var(--blueDark)}.mM,.mN:hover{background-color:var(--blueDark)}.mO,.mP:hover{border-color:var(--blueDark)}.mQ,.mR:hover{color:var(--red)}.mS,.mT:hover{background-color:var(--red)}.mU,.mV:hover{border-color:var(--red)}.mW,.mX:hover{color:var(--redLight)}.mY,.mZ:hover{background-color:var(--redLight)}.m0,.m1:hover{border-color:var(--redLight)}.m2,.m3:hover{color:var(--redDark)}.m4,.m5:hover{background-color:var(--redDark)}.m6,.m7:hover{border-color:var(--redDark)}.m8,.m9:hover{color:var(--purple)}.na,.nb:hover{background-color:var(--purple)}.nc,.nd:hover{border-color:var(--purple)}.ne,.nf:hover{color:var(--purpleLight)}.ng,.nh:hover{background-color:var(--purpleLight)}.ni,.nj:hover{border-color:var(--purpleLight)}.nk,.nl:hover{color:var(--purpleDark)}.nm,.nn:hover{background-color:var(--purpleDark)}.no,.np:hover{border-color:var(--purpleDark)}.nq,.nr:hover{color:var(--yellow)}.ns,.nt:hover{background-color:var(--yellow)}.nu,.nv:hover{border-color:var(--yellow)}.nw,.nx:hover{color:var(--yellowLight)}.ny,.nz:hover{background-color:var(--yellowLight)}.nA,.nB:hover{border-color:var(--yellowLight)}.nC,.nD:hover{color:var(--yellowDark)}.nE,.nF:hover{background-color:var(--yellowDark)}.nG,.nH:hover{border-color:var(--yellowDark)}.nI,.nJ:hover{color:var(--pink)}.nK,.nL:hover{background-color:var(--pink)}.nM,.nN:hover{border-color:var(--pink)}.nO,.nP:hover{color:var(--pinkLight)}.nQ,.nR:hover{background-color:var(--pinkLight)}.nS,.nT:hover{border-color:var(--pinkLight)}.nU,.nV:hover{color:var(--pinkDark)}.nW,.nX:hover{background-color:var(--pinkDark)}.nY,.nZ:hover{border-color:var(--pinkDark)}.n0,.n1:hover{color:var(--green)}.n2,.n3:hover{background-color:var(--green)}.n4,.n5:hover{border-color:var(--green)}.n6,.n7:hover{color:var(--greenLight)}.n8,.n9:hover{background-color:var(--greenLight)}.oa,.ob:hover{border-color:var(--greenLight)}.oc,.od:hover{color:var(--greenDark)}.oe,.of:hover{background-color:var(--greenDark)}.og,.oh:hover{border-color:var(--greenDark)}.oi,.oj:hover{color:var(--orange)}.ok,.ol:hover{background-color:var(--orange)}.om,.on:hover{border-color:var(--orange)}.oo,.op:hover{color:var(--orangeLight)}.oq,.or:hover{background-color:var(--orangeLight)}.os,.ot:hover{border-color:var(--orangeLight)}.ou,.ov:hover{color:var(--orangeDark)}.ow,.ox:hover{background-color:var(--orangeDark)}.oy,.oz:hover{border-color:var(--orangeDark)}.oA,.oB:hover{color:var(--navy)}.oC,.oD:hover{background-color:var(--navy)}.oE,.oF:hover{border-color:var(--navy)}.oG,.oH:hover{color:var(--navyLight)}.oI,.oJ:hover{background-color:var(--navyLight)}.oK,.oL:hover{border-color:var(--navyLight)}.oM,.oN:hover{color:var(--navyDark)}.oO,.oP:hover{background-color:var(--navyDark)}.oQ,.oR:hover{border-color:var(--navyDark)}.oS,.oT:hover{color:var(--teal)}.oU,.oV:hover{background-color:var(--teal)}.oW,.oX:hover{border-color:var(--teal)}.oY,.oZ:hover{color:var(--tealLight)}.o0,.o1:hover{background-color:var(--tealLight)}.o2,.o3:hover{border-color:var(--tealLight)}.o4,.o5:hover{color:var(--tealDark)}.o6,.o7:hover{background-color:var(--tealDark)}.o8,.o9:hover{border-color:var(--tealDark)}.pa,.pb:hover{color:var(--violet)}.pc,.pd:hover{background-color:var(--violet)}.pe,.pf:hover{border-color:var(--violet)}.pg,.ph:hover{color:var(--violetLight)}.pi,.pj:hover{background-color:var(--violetLight)}.pk,.pl:hover{border-color:var(--violetLight)}.pm,.pn:hover{color:var(--violetDark)}.po,.pp:hover{background-color:var(--violetDark)}.pq,.pr:hover{border-color:var(--violetDark)}.ps,.pt:hover{color:var(--black)}.pu,.pv:hover{background-color:var(--black)}.pw,.px:hover{border-color:var(--black)}.py,.pz:hover{color:var(--white)}.pA,.pB:hover{background-color:var(--white)}.pC,.pD:hover{border-color:var(--white)}.pE,.pF:hover{color:var(--gray)}.pG,.pH:hover{background-color:var(--gray)}.pI,.pJ:hover{border-color:var(--gray)}.pK,.pL:hover{color:var(--grayLight)}.pM,.pN:hover{background-color:var(--grayLight)}.pO,.pP:hover{border-color:var(--grayLight)}.pQ,.pR:hover{color:var(--grayDark)}.pS,.pT:hover{background-color:var(--grayDark)}.pU,.pV:hover{border-color:var(--grayDark)}.pW,.pX:hover{color:var(--brown)}.pY,.pZ:hover{background-color:var(--brown)}.p0,.p1:hover{border-color:var(--brown)}.p2,.p3:hover{color:var(--brownLight)}.p4,.p5:hover{background-color:var(--brownLight)}.p6,.p7:hover{border-color:var(--brownLight)}.p8,.p9:hover{color:var(--brownDark)}.qa,.qb:hover{background-color:var(--brownDark)}.qc,.qd:hover{border-color:var(--brownDark)}.oi,.oj:hover{color:var(--orange)}.ok,.ol:hover{background-color:var(--orange)}.om,.on:hover{border-color:var(--orange)}.oo,.op:hover{color:var(--orangeLight)}.oq,.or:hover{background-color:var(--orangeLight)}.os,.ot:hover{border-color:var(--orangeLight)}.ou,.ov:hover{color:var(--orangeDark)}.ow,.ox:hover{background-color:var(--orangeDark)}.oy,.oz:hover{border-color:var(--orangeDark)}.qe{line-height:0}.qf{line-height:.3}.qg{line-height:.6}.qh{line-height:.9}.qi{line-height:1.2}.qj{line-height:1.5}.qk{line-height:1.8}.ql{line-height:2.1}.qm{line-height:2.4}.qn{line-height:2.7}.qo{line-height:3}.qp{line-height:3.3}.qq{line-height:3.6}.qr{line-height:3.9}.qs{line-height:4.2}.qt{line-height:4.5}.qu{line-height:4.8}.qv{line-height:5.1}.qw{line-height:5.4}.qx{line-height:5.7}.qy{line-height:6}.qz{cursor:auto}.qA{cursor:default}.qB{cursor:none}.qC{cursor:context-menu}.qD{cursor:help}.qE{cursor:pointer}.qF{cursor:progress}.qG{cursor:wait}.qH{cursor:cell}.qI{cursor:crosshair}.qJ{cursor:text}.qK{cursor:vertical-text}.qL{cursor:alias}.qM{cursor:copy}.qN{cursor:move}.qO{cursor:no-drop}.qP{cursor:not-allowed}.qQ{cursor:e-resize}.qR{cursor:n-resize}.qS{cursor:ne-resize}.qT{cursor:nw-resize}.qU{cursor:s-resize}.qV{cursor:se-resize}.qW{cursor:sw-resize}.qX{cursor:w-resize}.qY{cursor:ew-resize}.qZ{cursor:ns-resize}.q0{cursor:nesw-resize}.q1{cursor:nwse-resize}.q2{cursor:col-resize}.q3{cursor:row-resize}.q4{cursor:all-scroll}.q5{cursor:zoom-in}.q6{cursor:zoom-out}.q7{cursor:-webkit-grab;cursor:grab}.q8{cursor:-webkit-grabbing;cursor:grabbing}.q9{z-index:0}.ra{z-index:1}.rb{z-index:2}.rc{z-index:3}.rd{z-index:4}.re{z-index:5}.rf{z-index:6}.rg{z-index:7}.rh{z-index:8}.ri{z-index:9}.rj{z-index:10}.rk{z-index:11}.rl{z-index:12}.rm{z-index:13}.rn{z-index:14}.ro{z-index:15}.rp{z-index:16}.rq{z-index:17}.rr{z-index:18}.rs{z-index:19}.rt{z-index:20}.ru{overflow:auto}.rv{overflow-x:auto}.rw{overflow-y:auto}.rx{overflow:hidden}.ry{overflow-x:hidden}.rz{overflow-y:hidden}.rA{overflow:scroll}.rB{overflow-x:scroll}.rC{overflow-y:scroll}.rD{overflow:visible}.rE{overflow-x:visible}.rF{overflow-y:visible}.rG{opacity:.1}.rH{opacity:.2}.rI{opacity:.3}.rJ{opacity:.4}.rK{opacity:.5}.rL{opacity:.6}.rM{opacity:.7}.rN{opacity:.8}.rO{opacity:.9}.rP{opacity:1}.rQ{font-size:6px}.rR{font-size:8px}.rS{font-size:10px}.rT{font-size:12px}.rU{font-size:14px}.rV{font-size:16px}.rW{font-size:18px}.rX{font-size:20px}.rY{font-size:22px}.rZ{font-size:24px}.r0{font-size:26px}.r1{font-size:28px}.r2{font-size:30px}.r3{font-size:32px}.r4{font-size:34px}.r5{font-size:36px}.r6{font-size:38px}.r7{font-size:40px}.r8{font-size:42px}.r9{font-size:44px}.sa{font-size:46px}.sb{font-size:48px}.sc{font-size:50px}.sd{font-weight:100}.se{font-weight:200}.sf{font-weight:300}.sg{font-weight:400}.sh{font-weight:500}.si{font-weight:600}.sj{font-weight:700}.sk{font-weight:800}.sl{font-weight:900}.sm{text-decoration:none}.sn{text-decoration:underline}.so{text-align:left}.sp{text-align:right}.sq{text-align:center}.sr{text-transform:none}.ss{text-transform:capitalize}.st{text-transform:lowercase}.su{text-transform:uppercase}.sv{flex-wrap:nowrap}.sw{flex-wrap:wrap}.sx{flex-wrap:wrap-reverse}.sy{justify-content:start}.sz{justify-content:end}.sA{justify-content:flex-start}.sB{justify-content:flex-end}.sC{justify-content:center}.sD{justify-content:left}.sE{justify-content:right}.sF{justify-content:space-between}.sG{justify-content:space-around}.sH{justify-content:space-evenly}.sI{justify-content:stretch}.sJ{align-items:stretch}.sK{align-items:flex-start}.sL{align-items:flex-end}.sM{align-items:center}.sN{align-items:baseline}.sO{align-items:start}.sP{align-items:end}.sQ{align-items:self-start}.sR{align-items:self-end}.sS{align-content:flex-start}.sT{align-content:flex-end}.sU{align-content:center}.sV{align-content:space-between}.sW{align-content:space-around}.sX{align-content:space-evenly}.sY{align-content:stretch}.sZ{align-content:start}.s0{align-content:end}.s1{align-content:baseline}.s2{flex:1}.s3{direction:row}.s4{direction:row-reverse}.s5{direction:column}.s6{direction:column-reverse}.s7{gap:0rem}.s8{row-gap:0rem}.s9{-moz-column-gap:0rem;column-gap:0rem}.ta{order:0}.tb{flex-grow:0}.tc{flex-shrink:0}.td{gap:.5rem}.te{row-gap:.5rem}.tf{-moz-column-gap:.5rem;column-gap:.5rem}.tg{order:1}.th{flex-grow:1}.ti{flex-shrink:1}.tj{gap:1rem}.tk{row-gap:1rem}.tl{-moz-column-gap:1rem;column-gap:1rem}.tm{order:2}.tn{flex-grow:2}.to{flex-shrink:2}.tp{gap:1.5rem}.tq{row-gap:1.5rem}.tr{-moz-column-gap:1.5rem;column-gap:1.5rem}.ts{order:3}.tt{flex-grow:3}.tu{flex-shrink:3}.tv{gap:2rem}.tw{row-gap:2rem}.tx{-moz-column-gap:2rem;column-gap:2rem}.ty{order:4}.tz{flex-grow:4}.tA{flex-shrink:4}.tB{gap:2.5rem}.tC{row-gap:2.5rem}.tD{-moz-column-gap:2.5rem;column-gap:2.5rem}.tE{order:5}.tF{flex-grow:5}.tG{flex-shrink:5}.tH{gap:3rem}.tI{row-gap:3rem}.tJ{-moz-column-gap:3rem;column-gap:3rem}.tK{order:6}.tL{flex-grow:6}.tM{flex-shrink:6}.tN{gap:3.5rem}.tO{row-gap:3.5rem}.tP{-moz-column-gap:3.5rem;column-gap:3.5rem}.tQ{order:7}.tR{flex-grow:7}.tS{flex-shrink:7}.tT{gap:4rem}.tU{row-gap:4rem}.tV{-moz-column-gap:4rem;column-gap:4rem}.tW{order:8}.tX{flex-grow:8}.tY{flex-shrink:8}.tZ{gap:4.5rem}.t0{row-gap:4.5rem}.t1{-moz-column-gap:4.5rem;column-gap:4.5rem}.t2{order:9}.t3{flex-grow:9}.t4{flex-shrink:9}.t5{gap:5rem}.t6{row-gap:5rem}.t7{-moz-column-gap:5rem;column-gap:5rem}.t8{order:10}.t9{flex-grow:10}.ua{flex-shrink:10}.ub{gap:5.5rem}.uc{row-gap:5.5rem}.ud{-moz-column-gap:5.5rem;column-gap:5.5rem}.ue{order:11}.uf{flex-grow:11}.ug{flex-shrink:11}.uh{gap:6rem}.ui{row-gap:6rem}.uj{-moz-column-gap:6rem;column-gap:6rem}.uk{order:12}.ul{flex-grow:12}.um{flex-shrink:12}.un{gap:6.5rem}.uo{row-gap:6.5rem}.up{-moz-column-gap:6.5rem;column-gap:6.5rem}.uq{order:13}.ur{flex-grow:13}.us{flex-shrink:13}.ut{gap:7rem}.uu{row-gap:7rem}.uv{-moz-column-gap:7rem;column-gap:7rem}.uw{order:14}.ux{flex-grow:14}.uy{flex-shrink:14}.uz{gap:7.5rem}.uA{row-gap:7.5rem}.uB{-moz-column-gap:7.5rem;column-gap:7.5rem}.uC{order:15}.uD{flex-grow:15}.uE{flex-shrink:15}.uF{gap:8rem}.uG{row-gap:8rem}.uH{-moz-column-gap:8rem;column-gap:8rem}.uI{order:16}.uJ{flex-grow:16}.uK{flex-shrink:16}.uL{gap:8.5rem}.uM{row-gap:8.5rem}.uN{-moz-column-gap:8.5rem;column-gap:8.5rem}.uO{order:17}.uP{flex-grow:17}.uQ{flex-shrink:17}.uR{gap:9rem}.uS{row-gap:9rem}.uT{-moz-column-gap:9rem;column-gap:9rem}.uU{order:18}.uV{flex-grow:18}.uW{flex-shrink:18}.uX{gap:9.5rem}.uY{row-gap:9.5rem}.uZ{-moz-column-gap:9.5rem;column-gap:9.5rem}.u0{order:19}.u1{flex-grow:19}.u2{flex-shrink:19}.u3{gap:10rem}.u4{row-gap:10rem}.u5{-moz-column-gap:10rem;column-gap:10rem}.u6{order:20}.u7{flex-grow:20}.u8{flex-shrink:20}.u9{align-self:auto}.va{align-self:flex-start}.vb{align-self:flex-end}.vc{align-self:center}.vd{align-self:baseline}.ve{align-self:stretch}