@cronocode/react-box 0.0.8 → 0.1.1
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.
- package/box.d.ts +51 -2
- package/box.js +2909 -1230
- package/components/button/index.d.ts +5 -1
- package/components/button/index.js +32 -4
- package/components/flex/index.d.ts +15 -1
- package/components/flex/index.js +37 -4
- package/package.json +4 -4
- package/styles.css +1 -1
- package/utils/className/classNameUtils.d.ts +5 -0
|
@@ -1,10 +1,38 @@
|
|
|
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
|
+
};
|
|
1
17
|
import Box from "../../box.js";
|
|
2
18
|
import { j as jsx } from "../../chunk/jsx-runtime-8434466e.js";
|
|
3
19
|
import "react";
|
|
4
|
-
function Button() {
|
|
5
|
-
|
|
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({
|
|
6
33
|
tag: "button",
|
|
7
|
-
|
|
8
|
-
|
|
34
|
+
cursor: "pointer",
|
|
35
|
+
display: "inline-block"
|
|
36
|
+
}, newProps));
|
|
9
37
|
}
|
|
10
38
|
export { Button as default };
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
import Box from '../../box';
|
|
2
|
+
declare type BoxProps = React.ComponentProps<typeof Box>;
|
|
3
|
+
interface BoxFlex {
|
|
4
|
+
wrap?: BoxProps['flexWrap'];
|
|
5
|
+
jc?: BoxProps['justifyContent'];
|
|
6
|
+
ai?: BoxProps['alignItems'];
|
|
7
|
+
ac?: BoxProps['alignContent'];
|
|
8
|
+
d?: BoxProps['direction'];
|
|
9
|
+
grow?: BoxProps['flexGrow'];
|
|
10
|
+
shrink?: BoxProps['flexShrink'];
|
|
11
|
+
as?: BoxProps['alignSelf'];
|
|
12
|
+
}
|
|
13
|
+
declare type Props = React.ComponentProps<typeof Box> & BoxFlex;
|
|
14
|
+
export default function Flex(props: Props): JSX.Element;
|
|
15
|
+
export {};
|
package/components/flex/index.js
CHANGED
|
@@ -1,10 +1,43 @@
|
|
|
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
|
+
};
|
|
1
17
|
import Box from "../../box.js";
|
|
2
18
|
import { j as jsx } from "../../chunk/jsx-runtime-8434466e.js";
|
|
3
19
|
import "react";
|
|
4
|
-
function Flex() {
|
|
5
|
-
|
|
20
|
+
function Flex(props) {
|
|
21
|
+
const {
|
|
22
|
+
wrap,
|
|
23
|
+
jc,
|
|
24
|
+
ai,
|
|
25
|
+
ac,
|
|
26
|
+
d,
|
|
27
|
+
grow,
|
|
28
|
+
shrink,
|
|
29
|
+
as
|
|
30
|
+
} = props;
|
|
31
|
+
return /* @__PURE__ */ jsx(Box, __spreadValues({
|
|
6
32
|
display: "flex",
|
|
7
|
-
|
|
8
|
-
|
|
33
|
+
flexWrap: wrap,
|
|
34
|
+
justifyContent: jc,
|
|
35
|
+
alignItems: ai,
|
|
36
|
+
alignContent: ac,
|
|
37
|
+
direction: d,
|
|
38
|
+
flexGrow: grow,
|
|
39
|
+
flexShrink: shrink,
|
|
40
|
+
alignSelf: as
|
|
41
|
+
}, props));
|
|
9
42
|
}
|
|
10
43
|
export { Flex as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cronocode/react-box",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"main": "./box.js",
|
|
5
5
|
"module": "./box.js",
|
|
6
6
|
"types": "./box.d.ts",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"dev": "vite ./dev --config ./vite.config.ts",
|
|
15
15
|
"build": "vite build",
|
|
16
16
|
"postbuild": "cp package.json dist & cp LICENSE dist",
|
|
17
|
+
"compile": "tsc --noEmit --skipLibCheck",
|
|
17
18
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
18
19
|
},
|
|
19
20
|
"repository": {
|
|
@@ -31,10 +32,9 @@
|
|
|
31
32
|
},
|
|
32
33
|
"homepage": "https://github.com/cronocodesolutions/react-box#readme",
|
|
33
34
|
"description": "",
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"react": "^18.1.0"
|
|
36
|
-
},
|
|
35
|
+
"dependencies": {},
|
|
37
36
|
"devDependencies": {
|
|
37
|
+
"react": "^18.1.0",
|
|
38
38
|
"@cronocode/identity-factory": "^0.0.6",
|
|
39
39
|
"@types/node": "^18.0.0",
|
|
40
40
|
"@types/react": "^18.0.14",
|
package/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
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}
|
|
1
|
+
body{font-size:16px;line-height:1.2;margin:0;padding:0}.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,.bt{margin:0rem}.bu,.bv{margin:.5rem}.bw,.bx{margin:1rem}.by,.bz{margin:1.5rem}.bA,.bB{margin:2rem}.bC,.bD{margin:2.5rem}.bE,.bF{margin:3rem}.bG,.bH{margin:3.5rem}.bI,.bJ{margin:4rem}.bK,.bL{margin:4.5rem}.bM,.bN{margin:5rem}.bO,.bP{margin:5.5rem}.bQ,.bR{margin:6rem}.bS,.bT{margin:6.5rem}.bU,.bV{margin:7rem}.bW,.bX{margin:7.5rem}.bY,.bZ{margin:8rem}.b0,.b1{margin:8.5rem}.b2,.b3{margin:9rem}.b4,.b5{margin:9.5rem}.b6,.b7{margin:10rem}.b8,.b9{margin-left:0rem;margin-right:0rem}.ca,.cb{margin-top:0rem;margin-bottom:0rem}.cc,.cd{margin-left:.5rem;margin-right:.5rem}.ce,.cf{margin-top:.5rem;margin-bottom:.5rem}.cg,.ch{margin-left:1rem;margin-right:1rem}.ci,.cj{margin-top:1rem;margin-bottom:1rem}.ck,.cl{margin-left:1.5rem;margin-right:1.5rem}.cm,.cn{margin-top:1.5rem;margin-bottom:1.5rem}.co,.cp{margin-left:2rem;margin-right:2rem}.cq,.cr{margin-top:2rem;margin-bottom:2rem}.cs,.ct{margin-left:2.5rem;margin-right:2.5rem}.cu,.cv{margin-top:2.5rem;margin-bottom:2.5rem}.cw,.cx{margin-left:3rem;margin-right:3rem}.cy,.cz{margin-top:3rem;margin-bottom:3rem}.cA,.cB{margin-left:3.5rem;margin-right:3.5rem}.cC,.cD{margin-top:3.5rem;margin-bottom:3.5rem}.cE,.cF{margin-left:4rem;margin-right:4rem}.cG,.cH{margin-top:4rem;margin-bottom:4rem}.cI,.cJ{margin-left:4.5rem;margin-right:4.5rem}.cK,.cL{margin-top:4.5rem;margin-bottom:4.5rem}.cM,.cN{margin-left:5rem;margin-right:5rem}.cO,.cP{margin-top:5rem;margin-bottom:5rem}.cQ,.cR{margin-left:5.5rem;margin-right:5.5rem}.cS,.cT{margin-top:5.5rem;margin-bottom:5.5rem}.cU,.cV{margin-left:6rem;margin-right:6rem}.cW,.cX{margin-top:6rem;margin-bottom:6rem}.cY,.cZ{margin-left:6.5rem;margin-right:6.5rem}.c0,.c1{margin-top:6.5rem;margin-bottom:6.5rem}.c2,.c3{margin-left:7rem;margin-right:7rem}.c4,.c5{margin-top:7rem;margin-bottom:7rem}.c6,.c7{margin-left:7.5rem;margin-right:7.5rem}.c8,.c9{margin-top:7.5rem;margin-bottom:7.5rem}.da,.db{margin-left:8rem;margin-right:8rem}.dc,.dd{margin-top:8rem;margin-bottom:8rem}.de,.df{margin-left:8.5rem;margin-right:8.5rem}.dg,.dh{margin-top:8.5rem;margin-bottom:8.5rem}.di,.dj{margin-left:9rem;margin-right:9rem}.dk,.dl{margin-top:9rem;margin-bottom:9rem}.dm,.dn{margin-left:9.5rem;margin-right:9.5rem}.do,.dp{margin-top:9.5rem;margin-bottom:9.5rem}.dq,.dr{margin-left:10rem;margin-right:10rem}.ds,.dt{margin-top:10rem;margin-bottom:10rem}.du,.dv{margin-top:0rem}.dw,.dx{margin-right:0rem}.dy,.dz{margin-bottom:0rem}.dA,.dB{margin-left:0rem}.dC,.dD{margin-top:.5rem}.dE,.dF{margin-right:.5rem}.dG,.dH{margin-bottom:.5rem}.dI,.dJ{margin-left:.5rem}.dK,.dL{margin-top:1rem}.dM,.dN{margin-right:1rem}.dO,.dP{margin-bottom:1rem}.dQ,.dR{margin-left:1rem}.dS,.dT{margin-top:1.5rem}.dU,.dV{margin-right:1.5rem}.dW,.dX{margin-bottom:1.5rem}.dY,.dZ{margin-left:1.5rem}.d0,.d1{margin-top:2rem}.d2,.d3{margin-right:2rem}.d4,.d5{margin-bottom:2rem}.d6,.d7{margin-left:2rem}.d8,.d9{margin-top:2.5rem}.ea,.eb{margin-right:2.5rem}.ec,.ed{margin-bottom:2.5rem}.ee,.ef{margin-left:2.5rem}.eg,.eh{margin-top:3rem}.ei,.ej{margin-right:3rem}.ek,.el{margin-bottom:3rem}.em,.en{margin-left:3rem}.eo,.ep{margin-top:3.5rem}.eq,.er{margin-right:3.5rem}.es,.et{margin-bottom:3.5rem}.eu,.ev{margin-left:3.5rem}.ew,.ex{margin-top:4rem}.ey,.ez{margin-right:4rem}.eA,.eB{margin-bottom:4rem}.eC,.eD{margin-left:4rem}.eE,.eF{margin-top:4.5rem}.eG,.eH{margin-right:4.5rem}.eI,.eJ{margin-bottom:4.5rem}.eK,.eL{margin-left:4.5rem}.eM,.eN{margin-top:5rem}.eO,.eP{margin-right:5rem}.eQ,.eR{margin-bottom:5rem}.eS,.eT{margin-left:5rem}.eU,.eV{margin-top:5.5rem}.eW,.eX{margin-right:5.5rem}.eY,.eZ{margin-bottom:5.5rem}.e0,.e1{margin-left:5.5rem}.e2,.e3{margin-top:6rem}.e4,.e5{margin-right:6rem}.e6,.e7{margin-bottom:6rem}.e8,.e9{margin-left:6rem}.fa,.fb{margin-top:6.5rem}.fc,.fd{margin-right:6.5rem}.fe,.ff{margin-bottom:6.5rem}.fg,.fh{margin-left:6.5rem}.fi,.fj{margin-top:7rem}.fk,.fl{margin-right:7rem}.fm,.fn{margin-bottom:7rem}.fo,.fp{margin-left:7rem}.fq,.fr{margin-top:7.5rem}.fs,.ft{margin-right:7.5rem}.fu,.fv{margin-bottom:7.5rem}.fw,.fx{margin-left:7.5rem}.fy,.fz{margin-top:8rem}.fA,.fB{margin-right:8rem}.fC,.fD{margin-bottom:8rem}.fE,.fF{margin-left:8rem}.fG,.fH{margin-top:8.5rem}.fI,.fJ{margin-right:8.5rem}.fK,.fL{margin-bottom:8.5rem}.fM,.fN{margin-left:8.5rem}.fO,.fP{margin-top:9rem}.fQ,.fR{margin-right:9rem}.fS,.fT{margin-bottom:9rem}.fU,.fV{margin-left:9rem}.fW,.fX{margin-top:9.5rem}.fY,.fZ{margin-right:9.5rem}.f0,.f1{margin-bottom:9.5rem}.f2,.f3{margin-left:9.5rem}.f4,.f5{margin-top:10rem}.f6,.f7{margin-right:10rem}.f8,.f9{margin-bottom:10rem}.ga,.gb{margin-left:10rem}.gc,.gd{padding:0rem}.ge,.gf{padding:.5rem}.gg,.gh{padding:1rem}.gi,.gj{padding:1.5rem}.gk,.gl{padding:2rem}.gm,.gn{padding:2.5rem}.go,.gp{padding:3rem}.gq,.gr{padding:3.5rem}.gs,.gt{padding:4rem}.gu,.gv{padding:4.5rem}.gw,.gx{padding:5rem}.gy,.gz{padding:5.5rem}.gA,.gB{padding:6rem}.gC,.gD{padding:6.5rem}.gE,.gF{padding:7rem}.gG,.gH{padding:7.5rem}.gI,.gJ{padding:8rem}.gK,.gL{padding:8.5rem}.gM,.gN{padding:9rem}.gO,.gP{padding:9.5rem}.gQ,.gR{padding:10rem}.gS,.gT{padding-left:0rem;padding-right:0rem}.gU,.gV{padding-top:0rem;padding-bottom:0rem}.gW,.gX{padding-left:.5rem;padding-right:.5rem}.gY,.gZ{padding-top:.5rem;padding-bottom:.5rem}.g0,.g1{padding-left:1rem;padding-right:1rem}.g2,.g3{padding-top:1rem;padding-bottom:1rem}.g4,.g5{padding-left:1.5rem;padding-right:1.5rem}.g6,.g7{padding-top:1.5rem;padding-bottom:1.5rem}.g8,.g9{padding-left:2rem;padding-right:2rem}.ha,.hb{padding-top:2rem;padding-bottom:2rem}.hc,.hd{padding-left:2.5rem;padding-right:2.5rem}.he,.hf{padding-top:2.5rem;padding-bottom:2.5rem}.hg,.hh{padding-left:3rem;padding-right:3rem}.hi,.hj{padding-top:3rem;padding-bottom:3rem}.hk,.hl{padding-left:3.5rem;padding-right:3.5rem}.hm,.hn{padding-top:3.5rem;padding-bottom:3.5rem}.ho,.hp{padding-left:4rem;padding-right:4rem}.hq,.hr{padding-top:4rem;padding-bottom:4rem}.hs,.ht{padding-left:4.5rem;padding-right:4.5rem}.hu,.hv{padding-top:4.5rem;padding-bottom:4.5rem}.hw,.hx{padding-left:5rem;padding-right:5rem}.hy,.hz{padding-top:5rem;padding-bottom:5rem}.hA,.hB{padding-left:5.5rem;padding-right:5.5rem}.hC,.hD{padding-top:5.5rem;padding-bottom:5.5rem}.hE,.hF{padding-left:6rem;padding-right:6rem}.hG,.hH{padding-top:6rem;padding-bottom:6rem}.hI,.hJ{padding-left:6.5rem;padding-right:6.5rem}.hK,.hL{padding-top:6.5rem;padding-bottom:6.5rem}.hM,.hN{padding-left:7rem;padding-right:7rem}.hO,.hP{padding-top:7rem;padding-bottom:7rem}.hQ,.hR{padding-left:7.5rem;padding-right:7.5rem}.hS,.hT{padding-top:7.5rem;padding-bottom:7.5rem}.hU,.hV{padding-left:8rem;padding-right:8rem}.hW,.hX{padding-top:8rem;padding-bottom:8rem}.hY,.hZ{padding-left:8.5rem;padding-right:8.5rem}.h0,.h1{padding-top:8.5rem;padding-bottom:8.5rem}.h2,.h3{padding-left:9rem;padding-right:9rem}.h4,.h5{padding-top:9rem;padding-bottom:9rem}.h6,.h7{padding-left:9.5rem;padding-right:9.5rem}.h8,.h9{padding-top:9.5rem;padding-bottom:9.5rem}.ia,.ib{padding-left:10rem;padding-right:10rem}.ic,.id{padding-top:10rem;padding-bottom:10rem}.ie,.if{padding-top:0rem}.ig,.ih{padding-right:0rem}.ii,.ij{padding-bottom:0rem}.ik,.il{padding-left:0rem}.im,.in{padding-top:.5rem}.io,.ip{padding-right:.5rem}.iq,.ir{padding-bottom:.5rem}.is,.it{padding-left:.5rem}.iu,.iv{padding-top:1rem}.iw,.ix{padding-right:1rem}.iy,.iz{padding-bottom:1rem}.iA,.iB{padding-left:1rem}.iC,.iD{padding-top:1.5rem}.iE,.iF{padding-right:1.5rem}.iG,.iH{padding-bottom:1.5rem}.iI,.iJ{padding-left:1.5rem}.iK,.iL{padding-top:2rem}.iM,.iN{padding-right:2rem}.iO,.iP{padding-bottom:2rem}.iQ,.iR{padding-left:2rem}.iS,.iT{padding-top:2.5rem}.iU,.iV{padding-right:2.5rem}.iW,.iX{padding-bottom:2.5rem}.iY,.iZ{padding-left:2.5rem}.i0,.i1{padding-top:3rem}.i2,.i3{padding-right:3rem}.i4,.i5{padding-bottom:3rem}.i6,.i7{padding-left:3rem}.i8,.i9{padding-top:3.5rem}.ja,.jb{padding-right:3.5rem}.jc,.jd{padding-bottom:3.5rem}.je,.jf{padding-left:3.5rem}.jg,.jh{padding-top:4rem}.ji,.jj{padding-right:4rem}.jk,.jl{padding-bottom:4rem}.jm,.jn{padding-left:4rem}.jo,.jp{padding-top:4.5rem}.jq,.jr{padding-right:4.5rem}.js,.jt{padding-bottom:4.5rem}.ju,.jv{padding-left:4.5rem}.jw,.jx{padding-top:5rem}.jy,.jz{padding-right:5rem}.jA,.jB{padding-bottom:5rem}.jC,.jD{padding-left:5rem}.jE,.jF{padding-top:5.5rem}.jG,.jH{padding-right:5.5rem}.jI,.jJ{padding-bottom:5.5rem}.jK,.jL{padding-left:5.5rem}.jM,.jN{padding-top:6rem}.jO,.jP{padding-right:6rem}.jQ,.jR{padding-bottom:6rem}.jS,.jT{padding-left:6rem}.jU,.jV{padding-top:6.5rem}.jW,.jX{padding-right:6.5rem}.jY,.jZ{padding-bottom:6.5rem}.j0,.j1{padding-left:6.5rem}.j2,.j3{padding-top:7rem}.j4,.j5{padding-right:7rem}.j6,.j7{padding-bottom:7rem}.j8,.j9{padding-left:7rem}.ka,.kb{padding-top:7.5rem}.kc,.kd{padding-right:7.5rem}.ke,.kf{padding-bottom:7.5rem}.kg,.kh{padding-left:7.5rem}.ki,.kj{padding-top:8rem}.kk,.kl{padding-right:8rem}.km,.kn{padding-bottom:8rem}.ko,.kp{padding-left:8rem}.kq,.kr{padding-top:8.5rem}.ks,.kt{padding-right:8.5rem}.ku,.kv{padding-bottom:8.5rem}.kw,.kx{padding-left:8.5rem}.ky,.kz{padding-top:9rem}.kA,.kB{padding-right:9rem}.kC,.kD{padding-bottom:9rem}.kE,.kF{padding-left:9rem}.kG,.kH{padding-top:9.5rem}.kI,.kJ{padding-right:9.5rem}.kK,.kL{padding-bottom:9.5rem}.kM,.kN{padding-left:9.5rem}.kO,.kP{padding-top:10rem}.kQ,.kR{padding-right:10rem}.kS,.kT{padding-bottom:10rem}.kU,.kV{padding-left:10rem}.kW,.kX{border-width:0px}.kY,.kZ{border-width:1px}.k0,.k1{border-width:2px}.k2,.k3{border-width:3px}.k4,.k5{border-width:4px}.k6,.k7{border-width:5px}.k8,.k9{border-width:6px}.la,.lb{border-width:7px}.lc,.ld{border-width:8px}.le,.lf{border-width:9px}.lg,.lh{border-width:10px}.li,.lj{border-width:11px}.lk,.ll{border-width:12px}.lm,.ln{border-width:13px}.lo,.lp{border-width:14px}.lq,.lr{border-width:15px}.ls,.lt{border-width:16px}.lu,.lv{border-width:17px}.lw,.lx{border-width:18px}.ly,.lz{border-width:19px}.lA,.lB{border-width:20px}.lC,.lD{border-left-width:0px;border-right-width:0px}.lE,.lF{border-top-width:0px;border-bottom-width:0px}.lG,.lH{border-left-width:1px;border-right-width:1px}.lI,.lJ{border-top-width:1px;border-bottom-width:1px}.lK,.lL{border-left-width:2px;border-right-width:2px}.lM,.lN{border-top-width:2px;border-bottom-width:2px}.lO,.lP{border-left-width:3px;border-right-width:3px}.lQ,.lR{border-top-width:3px;border-bottom-width:3px}.lS,.lT{border-left-width:4px;border-right-width:4px}.lU,.lV{border-top-width:4px;border-bottom-width:4px}.lW,.lX{border-left-width:5px;border-right-width:5px}.lY,.lZ{border-top-width:5px;border-bottom-width:5px}.l0,.l1{border-left-width:6px;border-right-width:6px}.l2,.l3{border-top-width:6px;border-bottom-width:6px}.l4,.l5{border-left-width:7px;border-right-width:7px}.l6,.l7{border-top-width:7px;border-bottom-width:7px}.l8,.l9{border-left-width:8px;border-right-width:8px}.ma,.mb{border-top-width:8px;border-bottom-width:8px}.mc,.md{border-left-width:9px;border-right-width:9px}.me,.mf{border-top-width:9px;border-bottom-width:9px}.mg,.mh{border-left-width:10px;border-right-width:10px}.mi,.mj{border-top-width:10px;border-bottom-width:10px}.mk,.ml{border-left-width:11px;border-right-width:11px}.mm,.mn{border-top-width:11px;border-bottom-width:11px}.mo,.mp{border-left-width:12px;border-right-width:12px}.mq,.mr{border-top-width:12px;border-bottom-width:12px}.ms,.mt{border-left-width:13px;border-right-width:13px}.mu,.mv{border-top-width:13px;border-bottom-width:13px}.mw,.mx{border-left-width:14px;border-right-width:14px}.my,.mz{border-top-width:14px;border-bottom-width:14px}.mA,.mB{border-left-width:15px;border-right-width:15px}.mC,.mD{border-top-width:15px;border-bottom-width:15px}.mE,.mF{border-left-width:16px;border-right-width:16px}.mG,.mH{border-top-width:16px;border-bottom-width:16px}.mI,.mJ{border-left-width:17px;border-right-width:17px}.mK,.mL{border-top-width:17px;border-bottom-width:17px}.mM,.mN{border-left-width:18px;border-right-width:18px}.mO,.mP{border-top-width:18px;border-bottom-width:18px}.mQ,.mR{border-left-width:19px;border-right-width:19px}.mS,.mT{border-top-width:19px;border-bottom-width:19px}.mU,.mV{border-left-width:20px;border-right-width:20px}.mW,.mX{border-top-width:20px;border-bottom-width:20px}.mY,.mZ{border-top-width:0px}.m0,.m1{border-right-width:0px}.m2,.m3{border-bottom-width:0px}.m4,.m5{border-left-width:0px}.m6,.m7{border-top-width:1px}.m8,.m9{border-right-width:1px}.na,.nb{border-bottom-width:1px}.nc,.nd{border-left-width:1px}.ne,.nf{border-top-width:2px}.ng,.nh{border-right-width:2px}.ni,.nj{border-bottom-width:2px}.nk,.nl{border-left-width:2px}.nm,.nn{border-top-width:3px}.no,.np{border-right-width:3px}.nq,.nr{border-bottom-width:3px}.ns,.nt{border-left-width:3px}.nu,.nv{border-top-width:4px}.nw,.nx{border-right-width:4px}.ny,.nz{border-bottom-width:4px}.nA,.nB{border-left-width:4px}.nC,.nD{border-top-width:5px}.nE,.nF{border-right-width:5px}.nG,.nH{border-bottom-width:5px}.nI,.nJ{border-left-width:5px}.nK,.nL{border-top-width:6px}.nM,.nN{border-right-width:6px}.nO,.nP{border-bottom-width:6px}.nQ,.nR{border-left-width:6px}.nS,.nT{border-top-width:7px}.nU,.nV{border-right-width:7px}.nW,.nX{border-bottom-width:7px}.nY,.nZ{border-left-width:7px}.n0,.n1{border-top-width:8px}.n2,.n3{border-right-width:8px}.n4,.n5{border-bottom-width:8px}.n6,.n7{border-left-width:8px}.n8,.n9{border-top-width:9px}.oa,.ob{border-right-width:9px}.oc,.od{border-bottom-width:9px}.oe,.of{border-left-width:9px}.og,.oh{border-top-width:10px}.oi,.oj{border-right-width:10px}.ok,.ol{border-bottom-width:10px}.om,.on{border-left-width:10px}.oo,.op{border-top-width:11px}.oq,.or{border-right-width:11px}.os,.ot{border-bottom-width:11px}.ou,.ov{border-left-width:11px}.ow,.ox{border-top-width:12px}.oy,.oz{border-right-width:12px}.oA,.oB{border-bottom-width:12px}.oC,.oD{border-left-width:12px}.oE,.oF{border-top-width:13px}.oG,.oH{border-right-width:13px}.oI,.oJ{border-bottom-width:13px}.oK,.oL{border-left-width:13px}.oM,.oN{border-top-width:14px}.oO,.oP{border-right-width:14px}.oQ,.oR{border-bottom-width:14px}.oS,.oT{border-left-width:14px}.oU,.oV{border-top-width:15px}.oW,.oX{border-right-width:15px}.oY,.oZ{border-bottom-width:15px}.o0,.o1{border-left-width:15px}.o2,.o3{border-top-width:16px}.o4,.o5{border-right-width:16px}.o6,.o7{border-bottom-width:16px}.o8,.o9{border-left-width:16px}.pa,.pb{border-top-width:17px}.pc,.pd{border-right-width:17px}.pe,.pf{border-bottom-width:17px}.pg,.ph{border-left-width:17px}.pi,.pj{border-top-width:18px}.pk,.pl{border-right-width:18px}.pm,.pn{border-bottom-width:18px}.po,.pp{border-left-width:18px}.pq,.pr{border-top-width:19px}.ps,.pt{border-right-width:19px}.pu,.pv{border-bottom-width:19px}.pw,.px{border-left-width:19px}.py,.pz{border-top-width:20px}.pA,.pB{border-right-width:20px}.pC,.pD{border-bottom-width:20px}.pE,.pF{border-left-width:20px}.pG,.pH{border-style:solid}.pI,.pJ{border-style:dashed}.pK,.pL{border-style:dotted}.pM,.pN{border-style:double}.pO,.pP{border-radius:0rem}.pQ,.pR{border-radius:.25rem}.pS,.pT{border-radius:.5rem}.pU,.pV{border-radius:.75rem}.pW,.pX{border-radius:1rem}.pY,.pZ{border-radius:1.25rem}.p0,.p1{border-radius:1.5rem}.p2,.p3{border-radius:1.75rem}.p4,.p5{border-radius:2rem}.p6,.p7{border-radius:2.25rem}.p8,.p9{border-radius:2.5rem}.qa,.qb{border-radius:2.75rem}.qc,.qd{border-radius:3rem}.qe,.qf{border-radius:3.25rem}.qg,.qh{border-radius:3.5rem}.qi,.qj{border-radius:3.75rem}.qk,.ql{border-radius:4rem}.qm,.qn{border-radius:4.25rem}.qo,.qp{border-radius:4.5rem}.qq,.qr{border-radius:4.75rem}.qs,.qt{border-radius:5rem}.qu,.qv{border-top-left-radius:0rem;border-top-right-radius:0rem}.qw,.qx{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.qy,.qz{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.qA,.qB{border-top-left-radius:.75rem;border-top-right-radius:.75rem}.qC,.qD{border-top-left-radius:1rem;border-top-right-radius:1rem}.qE,.qF{border-top-left-radius:1.25rem;border-top-right-radius:1.25rem}.qG,.qH{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.qI,.qJ{border-top-left-radius:1.75rem;border-top-right-radius:1.75rem}.qK,.qL{border-top-left-radius:2rem;border-top-right-radius:2rem}.qM,.qN{border-top-left-radius:2.25rem;border-top-right-radius:2.25rem}.qO,.qP{border-top-left-radius:2.5rem;border-top-right-radius:2.5rem}.qQ,.qR{border-top-left-radius:2.75rem;border-top-right-radius:2.75rem}.qS,.qT{border-top-left-radius:3rem;border-top-right-radius:3rem}.qU,.qV{border-top-left-radius:3.25rem;border-top-right-radius:3.25rem}.qW,.qX{border-top-left-radius:3.5rem;border-top-right-radius:3.5rem}.qY,.qZ{border-top-left-radius:3.75rem;border-top-right-radius:3.75rem}.q0,.q1{border-top-left-radius:4rem;border-top-right-radius:4rem}.q2,.q3{border-top-left-radius:4.25rem;border-top-right-radius:4.25rem}.q4,.q5{border-top-left-radius:4.5rem;border-top-right-radius:4.5rem}.q6,.q7{border-top-left-radius:4.75rem;border-top-right-radius:4.75rem}.q8,.q9{border-top-left-radius:5rem;border-top-right-radius:5rem}.ra,.rb{border-top-right-radius:0rem;border-bottom-right-radius:0rem}.rc,.rd{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.re,.rf{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.rg,.rh{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}.ri,.rj{border-top-right-radius:1rem;border-bottom-right-radius:1rem}.rk,.rl{border-top-right-radius:1.25rem;border-bottom-right-radius:1.25rem}.rm,.rn{border-top-right-radius:1.5rem;border-bottom-right-radius:1.5rem}.ro,.rp{border-top-right-radius:1.75rem;border-bottom-right-radius:1.75rem}.rq,.rr{border-top-right-radius:2rem;border-bottom-right-radius:2rem}.rs,.rt{border-top-right-radius:2.25rem;border-bottom-right-radius:2.25rem}.ru,.rv{border-top-right-radius:2.5rem;border-bottom-right-radius:2.5rem}.rw,.rx{border-top-right-radius:2.75rem;border-bottom-right-radius:2.75rem}.ry,.rz{border-top-right-radius:3rem;border-bottom-right-radius:3rem}.rA,.rB{border-top-right-radius:3.25rem;border-bottom-right-radius:3.25rem}.rC,.rD{border-top-right-radius:3.5rem;border-bottom-right-radius:3.5rem}.rE,.rF{border-top-right-radius:3.75rem;border-bottom-right-radius:3.75rem}.rG,.rH{border-top-right-radius:4rem;border-bottom-right-radius:4rem}.rI,.rJ{border-top-right-radius:4.25rem;border-bottom-right-radius:4.25rem}.rK,.rL{border-top-right-radius:4.5rem;border-bottom-right-radius:4.5rem}.rM,.rN{border-top-right-radius:4.75rem;border-bottom-right-radius:4.75rem}.rO,.rP{border-top-right-radius:5rem;border-bottom-right-radius:5rem}.rQ,.rR{border-bottom-left-radius:0rem;border-bottom-right-radius:0rem}.rS,.rT{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.rU,.rV{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.rW,.rX{border-bottom-left-radius:.75rem;border-bottom-right-radius:.75rem}.rY,.rZ{border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}.r0,.r1{border-bottom-left-radius:1.25rem;border-bottom-right-radius:1.25rem}.r2,.r3{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}.r4,.r5{border-bottom-left-radius:1.75rem;border-bottom-right-radius:1.75rem}.r6,.r7{border-bottom-left-radius:2rem;border-bottom-right-radius:2rem}.r8,.r9{border-bottom-left-radius:2.25rem;border-bottom-right-radius:2.25rem}.sa,.sb{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}.sc,.sd{border-bottom-left-radius:2.75rem;border-bottom-right-radius:2.75rem}.se,.sf{border-bottom-left-radius:3rem;border-bottom-right-radius:3rem}.sg,.sh{border-bottom-left-radius:3.25rem;border-bottom-right-radius:3.25rem}.si,.sj{border-bottom-left-radius:3.5rem;border-bottom-right-radius:3.5rem}.sk,.sl{border-bottom-left-radius:3.75rem;border-bottom-right-radius:3.75rem}.sm,.sn{border-bottom-left-radius:4rem;border-bottom-right-radius:4rem}.so,.sp{border-bottom-left-radius:4.25rem;border-bottom-right-radius:4.25rem}.sq,.sr{border-bottom-left-radius:4.5rem;border-bottom-right-radius:4.5rem}.ss,.st{border-bottom-left-radius:4.75rem;border-bottom-right-radius:4.75rem}.su,.sv{border-bottom-left-radius:5rem;border-bottom-right-radius:5rem}.sw,.sx{border-top-left-radius:0rem;border-bottom-left-radius:0rem}.sy,.sz{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.sA,.sB{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.sC,.sD{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}.sE,.sF{border-top-left-radius:1rem;border-bottom-left-radius:1rem}.sG,.sH{border-top-left-radius:1.25rem;border-bottom-left-radius:1.25rem}.sI,.sJ{border-top-left-radius:1.5rem;border-bottom-left-radius:1.5rem}.sK,.sL{border-top-left-radius:1.75rem;border-bottom-left-radius:1.75rem}.sM,.sN{border-top-left-radius:2rem;border-bottom-left-radius:2rem}.sO,.sP{border-top-left-radius:2.25rem;border-bottom-left-radius:2.25rem}.sQ,.sR{border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem}.sS,.sT{border-top-left-radius:2.75rem;border-bottom-left-radius:2.75rem}.sU,.sV{border-top-left-radius:3rem;border-bottom-left-radius:3rem}.sW,.sX{border-top-left-radius:3.25rem;border-bottom-left-radius:3.25rem}.sY,.sZ{border-top-left-radius:3.5rem;border-bottom-left-radius:3.5rem}.s0,.s1{border-top-left-radius:3.75rem;border-bottom-left-radius:3.75rem}.s2,.s3{border-top-left-radius:4rem;border-bottom-left-radius:4rem}.s4,.s5{border-top-left-radius:4.25rem;border-bottom-left-radius:4.25rem}.s6,.s7{border-top-left-radius:4.5rem;border-bottom-left-radius:4.5rem}.s8,.s9{border-top-left-radius:4.75rem;border-bottom-left-radius:4.75rem}.ta,.tb{border-top-left-radius:5rem;border-bottom-left-radius:5rem}.tc,.td{border-top-right-radius:0rem}.te,.tf{border-top-left-radius:0rem}.tg,.th{border-bottom-right-radius:0rem}.ti,.tj{border-bottom-left-radius:0rem}.tk,.tl{border-top-right-radius:.25rem}.tm,.tn{border-top-left-radius:.25rem}.to,.tp{border-bottom-right-radius:.25rem}.tq,.tr{border-bottom-left-radius:.25rem}.ts,.tt{border-top-right-radius:.5rem}.tu,.tv{border-top-left-radius:.5rem}.tw,.tx{border-bottom-right-radius:.5rem}.ty,.tz{border-bottom-left-radius:.5rem}.tA,.tB{border-top-right-radius:.75rem}.tC,.tD{border-top-left-radius:.75rem}.tE,.tF{border-bottom-right-radius:.75rem}.tG,.tH{border-bottom-left-radius:.75rem}.tI,.tJ{border-top-right-radius:1rem}.tK,.tL{border-top-left-radius:1rem}.tM,.tN{border-bottom-right-radius:1rem}.tO,.tP{border-bottom-left-radius:1rem}.tQ,.tR{border-top-right-radius:1.25rem}.tS,.tT{border-top-left-radius:1.25rem}.tU,.tV{border-bottom-right-radius:1.25rem}.tW,.tX{border-bottom-left-radius:1.25rem}.tY,.tZ{border-top-right-radius:1.5rem}.t0,.t1{border-top-left-radius:1.5rem}.t2,.t3{border-bottom-right-radius:1.5rem}.t4,.t5{border-bottom-left-radius:1.5rem}.t6,.t7{border-top-right-radius:1.75rem}.t8,.t9{border-top-left-radius:1.75rem}.ua,.ub{border-bottom-right-radius:1.75rem}.uc,.ud{border-bottom-left-radius:1.75rem}.ue,.uf{border-top-right-radius:2rem}.ug,.uh{border-top-left-radius:2rem}.ui,.uj{border-bottom-right-radius:2rem}.uk,.ul{border-bottom-left-radius:2rem}.um,.un{border-top-right-radius:2.25rem}.uo,.up{border-top-left-radius:2.25rem}.uq,.ur{border-bottom-right-radius:2.25rem}.us,.ut{border-bottom-left-radius:2.25rem}.uu,.uv{border-top-right-radius:2.5rem}.uw,.ux{border-top-left-radius:2.5rem}.uy,.uz{border-bottom-right-radius:2.5rem}.uA,.uB{border-bottom-left-radius:2.5rem}.uC,.uD{border-top-right-radius:2.75rem}.uE,.uF{border-top-left-radius:2.75rem}.uG,.uH{border-bottom-right-radius:2.75rem}.uI,.uJ{border-bottom-left-radius:2.75rem}.uK,.uL{border-top-right-radius:3rem}.uM,.uN{border-top-left-radius:3rem}.uO,.uP{border-bottom-right-radius:3rem}.uQ,.uR{border-bottom-left-radius:3rem}.uS,.uT{border-top-right-radius:3.25rem}.uU,.uV{border-top-left-radius:3.25rem}.uW,.uX{border-bottom-right-radius:3.25rem}.uY,.uZ{border-bottom-left-radius:3.25rem}.u0,.u1{border-top-right-radius:3.5rem}.u2,.u3{border-top-left-radius:3.5rem}.u4,.u5{border-bottom-right-radius:3.5rem}.u6,.u7{border-bottom-left-radius:3.5rem}.u8,.u9{border-top-right-radius:3.75rem}.va,.vb{border-top-left-radius:3.75rem}.vc,.vd{border-bottom-right-radius:3.75rem}.ve,.vf{border-bottom-left-radius:3.75rem}.vg,.vh{border-top-right-radius:4rem}.vi,.vj{border-top-left-radius:4rem}.vk,.vl{border-bottom-right-radius:4rem}.vm,.vn{border-bottom-left-radius:4rem}.vo,.vp{border-top-right-radius:4.25rem}.vq,.vr{border-top-left-radius:4.25rem}.vs,.vt{border-bottom-right-radius:4.25rem}.vu,.vv{border-bottom-left-radius:4.25rem}.vw,.vx{border-top-right-radius:4.5rem}.vy,.vz{border-top-left-radius:4.5rem}.vA,.vB{border-bottom-right-radius:4.5rem}.vC,.vD{border-bottom-left-radius:4.5rem}.vE,.vF{border-top-right-radius:4.75rem}.vG,.vH{border-top-left-radius:4.75rem}.vI,.vJ{border-bottom-right-radius:4.75rem}.vK,.vL{border-bottom-left-radius:4.75rem}.vM,.vN{border-top-right-radius:5rem}.vO,.vP{border-top-left-radius:5rem}.vQ,.vR{border-bottom-right-radius:5rem}.vS,.vT{border-bottom-left-radius:5rem}.vU,.vV:hover{color:var(--primary)}.vW,.vX,.vY:hover,.vZ:hover{background-color:var(--primary)}.v0,.v1,.v2:hover,.v3:hover{border-color:var(--primary)}.v4,.v5:hover{color:var(--primaryLight)}.v6,.v7,.v8:hover,.v9:hover{background-color:var(--primaryLight)}.wa,.wb,.wc:hover,.wd:hover{border-color:var(--primaryLight)}.we,.wf:hover{color:var(--primaryDark)}.wg,.wh,.wi:hover,.wj:hover{background-color:var(--primaryDark)}.wk,.wl,.wm:hover,.wn:hover{border-color:var(--primaryDark)}.wo,.wp:hover{color:var(--secondary)}.wq,.wr,.ws:hover,.wt:hover{background-color:var(--secondary)}.wu,.wv,.ww:hover,.wx:hover{border-color:var(--secondary)}.wy,.wz:hover{color:var(--secondaryLight)}.wA,.wB,.wC:hover,.wD:hover{background-color:var(--secondaryLight)}.wE,.wF,.wG:hover,.wH:hover{border-color:var(--secondaryLight)}.wI,.wJ:hover{color:var(--secondaryDark)}.wK,.wL,.wM:hover,.wN:hover{background-color:var(--secondaryDark)}.wO,.wP,.wQ:hover,.wR:hover{border-color:var(--secondaryDark)}.wS,.wT:hover{color:var(--tertiary)}.wU,.wV,.wW:hover,.wX:hover{background-color:var(--tertiary)}.wY,.wZ,.w0:hover,.w1:hover{border-color:var(--tertiary)}.w2,.w3:hover{color:var(--tertiaryLight)}.w4,.w5,.w6:hover,.w7:hover{background-color:var(--tertiaryLight)}.w8,.w9,.xa:hover,.xb:hover{border-color:var(--tertiaryLight)}.xc,.xd:hover{color:var(--tertiaryDark)}.xe,.xf,.xg:hover,.xh:hover{background-color:var(--tertiaryDark)}.xi,.xj,.xk:hover,.xl:hover{border-color:var(--tertiaryDark)}.xm,.xn:hover{color:var(--blue)}.xo,.xp,.xq:hover,.xr:hover{background-color:var(--blue)}.xs,.xt,.xu:hover,.xv:hover{border-color:var(--blue)}.xw,.xx:hover{color:var(--blueLight)}.xy,.xz,.xA:hover,.xB:hover{background-color:var(--blueLight)}.xC,.xD,.xE:hover,.xF:hover{border-color:var(--blueLight)}.xG,.xH:hover{color:var(--blueDark)}.xI,.xJ,.xK:hover,.xL:hover{background-color:var(--blueDark)}.xM,.xN,.xO:hover,.xP:hover{border-color:var(--blueDark)}.xQ,.xR:hover{color:var(--red)}.xS,.xT,.xU:hover,.xV:hover{background-color:var(--red)}.xW,.xX,.xY:hover,.xZ:hover{border-color:var(--red)}.x0,.x1:hover{color:var(--redLight)}.x2,.x3,.x4:hover,.x5:hover{background-color:var(--redLight)}.x6,.x7,.x8:hover,.x9:hover{border-color:var(--redLight)}.ya,.yb:hover{color:var(--redDark)}.yc,.yd,.ye:hover,.yf:hover{background-color:var(--redDark)}.yg,.yh,.yi:hover,.yj:hover{border-color:var(--redDark)}.yk,.yl:hover{color:var(--purple)}.ym,.yn,.yo:hover,.yp:hover{background-color:var(--purple)}.yq,.yr,.ys:hover,.yt:hover{border-color:var(--purple)}.yu,.yv:hover{color:var(--purpleLight)}.yw,.yx,.yy:hover,.yz:hover{background-color:var(--purpleLight)}.yA,.yB,.yC:hover,.yD:hover{border-color:var(--purpleLight)}.yE,.yF:hover{color:var(--purpleDark)}.yG,.yH,.yI:hover,.yJ:hover{background-color:var(--purpleDark)}.yK,.yL,.yM:hover,.yN:hover{border-color:var(--purpleDark)}.yO,.yP:hover{color:var(--yellow)}.yQ,.yR,.yS:hover,.yT:hover{background-color:var(--yellow)}.yU,.yV,.yW:hover,.yX:hover{border-color:var(--yellow)}.yY,.yZ:hover{color:var(--yellowLight)}.y0,.y1,.y2:hover,.y3:hover{background-color:var(--yellowLight)}.y4,.y5,.y6:hover,.y7:hover{border-color:var(--yellowLight)}.y8,.y9:hover{color:var(--yellowDark)}.za,.zb,.zc:hover,.zd:hover{background-color:var(--yellowDark)}.ze,.zf,.zg:hover,.zh:hover{border-color:var(--yellowDark)}.zi,.zj:hover{color:var(--pink)}.zk,.zl,.zm:hover,.zn:hover{background-color:var(--pink)}.zo,.zp,.zq:hover,.zr:hover{border-color:var(--pink)}.zs,.zt:hover{color:var(--pinkLight)}.zu,.zv,.zw:hover,.zx:hover{background-color:var(--pinkLight)}.zy,.zz,.zA:hover,.zB:hover{border-color:var(--pinkLight)}.zC,.zD:hover{color:var(--pinkDark)}.zE,.zF,.zG:hover,.zH:hover{background-color:var(--pinkDark)}.zI,.zJ,.zK:hover,.zL:hover{border-color:var(--pinkDark)}.zM,.zN:hover{color:var(--green)}.zO,.zP,.zQ:hover,.zR:hover{background-color:var(--green)}.zS,.zT,.zU:hover,.zV:hover{border-color:var(--green)}.zW,.zX:hover{color:var(--greenLight)}.zY,.zZ,.z0:hover,.z1:hover{background-color:var(--greenLight)}.z2,.z3,.z4:hover,.z5:hover{border-color:var(--greenLight)}.z6,.z7:hover{color:var(--greenDark)}.z8,.z9,.Aa:hover,.Ab:hover{background-color:var(--greenDark)}.Ac,.Ad,.Ae:hover,.Af:hover{border-color:var(--greenDark)}.Ag,.Ah:hover{color:var(--orange)}.Ai,.Aj,.Ak:hover,.Al:hover{background-color:var(--orange)}.Am,.An,.Ao:hover,.Ap:hover{border-color:var(--orange)}.Aq,.Ar:hover{color:var(--orangeLight)}.As,.At,.Au:hover,.Av:hover{background-color:var(--orangeLight)}.Aw,.Ax,.Ay:hover,.Az:hover{border-color:var(--orangeLight)}.AA,.AB:hover{color:var(--orangeDark)}.AC,.AD,.AE:hover,.AF:hover{background-color:var(--orangeDark)}.AG,.AH,.AI:hover,.AJ:hover{border-color:var(--orangeDark)}.AK,.AL:hover{color:var(--navy)}.AM,.AN,.AO:hover,.AP:hover{background-color:var(--navy)}.AQ,.AR,.AS:hover,.AT:hover{border-color:var(--navy)}.AU,.AV:hover{color:var(--navyLight)}.AW,.AX,.AY:hover,.AZ:hover{background-color:var(--navyLight)}.A0,.A1,.A2:hover,.A3:hover{border-color:var(--navyLight)}.A4,.A5:hover{color:var(--navyDark)}.A6,.A7,.A8:hover,.A9:hover{background-color:var(--navyDark)}.Ba,.Bb,.Bc:hover,.Bd:hover{border-color:var(--navyDark)}.Be,.Bf:hover{color:var(--teal)}.Bg,.Bh,.Bi:hover,.Bj:hover{background-color:var(--teal)}.Bk,.Bl,.Bm:hover,.Bn:hover{border-color:var(--teal)}.Bo,.Bp:hover{color:var(--tealLight)}.Bq,.Br,.Bs:hover,.Bt:hover{background-color:var(--tealLight)}.Bu,.Bv,.Bw:hover,.Bx:hover{border-color:var(--tealLight)}.By,.Bz:hover{color:var(--tealDark)}.BA,.BB,.BC:hover,.BD:hover{background-color:var(--tealDark)}.BE,.BF,.BG:hover,.BH:hover{border-color:var(--tealDark)}.BI,.BJ:hover{color:var(--violet)}.BK,.BL,.BM:hover,.BN:hover{background-color:var(--violet)}.BO,.BP,.BQ:hover,.BR:hover{border-color:var(--violet)}.BS,.BT:hover{color:var(--violetLight)}.BU,.BV,.BW:hover,.BX:hover{background-color:var(--violetLight)}.BY,.BZ,.B0:hover,.B1:hover{border-color:var(--violetLight)}.B2,.B3:hover{color:var(--violetDark)}.B4,.B5,.B6:hover,.B7:hover{background-color:var(--violetDark)}.B8,.B9,.Ca:hover,.Cb:hover{border-color:var(--violetDark)}.Cc,.Cd:hover{color:var(--black)}.Ce,.Cf,.Cg:hover,.Ch:hover{background-color:var(--black)}.Ci,.Cj,.Ck:hover,.Cl:hover{border-color:var(--black)}.Cm,.Cn:hover{color:var(--white)}.Co,.Cp,.Cq:hover,.Cr:hover{background-color:var(--white)}.Cs,.Ct,.Cu:hover,.Cv:hover{border-color:var(--white)}.Cw,.Cx:hover{color:var(--gray)}.Cy,.Cz,.CA:hover,.CB:hover{background-color:var(--gray)}.CC,.CD,.CE:hover,.CF:hover{border-color:var(--gray)}.CG,.CH:hover{color:var(--grayLight)}.CI,.CJ,.CK:hover,.CL:hover{background-color:var(--grayLight)}.CM,.CN,.CO:hover,.CP:hover{border-color:var(--grayLight)}.CQ,.CR:hover{color:var(--grayDark)}.CS,.CT,.CU:hover,.CV:hover{background-color:var(--grayDark)}.CW,.CX,.CY:hover,.CZ:hover{border-color:var(--grayDark)}.C0,.C1:hover{color:var(--brown)}.C2,.C3,.C4:hover,.C5:hover{background-color:var(--brown)}.C6,.C7,.C8:hover,.C9:hover{border-color:var(--brown)}.Da,.Db:hover{color:var(--brownLight)}.Dc,.Dd,.De:hover,.Df:hover{background-color:var(--brownLight)}.Dg,.Dh,.Di:hover,.Dj:hover{border-color:var(--brownLight)}.Dk,.Dl:hover{color:var(--brownDark)}.Dm,.Dn,.Do:hover,.Dp:hover{background-color:var(--brownDark)}.Dq,.Dr,.Ds:hover,.Dt:hover{border-color:var(--brownDark)}.Ag,.Ah:hover{color:var(--orange)}.Ai,.Aj,.Ak:hover,.Al:hover{background-color:var(--orange)}.Am,.An,.Ao:hover,.Ap:hover{border-color:var(--orange)}.Aq,.Ar:hover{color:var(--orangeLight)}.As,.At,.Au:hover,.Av:hover{background-color:var(--orangeLight)}.Aw,.Ax,.Ay:hover,.Az:hover{border-color:var(--orangeLight)}.AA,.AB:hover{color:var(--orangeDark)}.AC,.AD,.AE:hover,.AF:hover{background-color:var(--orangeDark)}.AG,.AH,.AI:hover,.AJ:hover{border-color:var(--orangeDark)}.Du{line-height:0}.Dv{line-height:.3}.Dw{line-height:.6}.Dx{line-height:.9}.Dy{line-height:1.2}.Dz{line-height:1.5}.DA{line-height:1.8}.DB{line-height:2.1}.DC{line-height:2.4}.DD{line-height:2.7}.DE{line-height:3}.DF{line-height:3.3}.DG{line-height:3.6}.DH{line-height:3.9}.DI{line-height:4.2}.DJ{line-height:4.5}.DK{line-height:4.8}.DL{line-height:5.1}.DM{line-height:5.4}.DN{line-height:5.7}.DO{line-height:6}.DP{cursor:auto}.DQ{cursor:default}.DR{cursor:none}.DS{cursor:context-menu}.DT{cursor:help}.DU{cursor:pointer}.DV{cursor:progress}.DW{cursor:wait}.DX{cursor:cell}.DY{cursor:crosshair}.DZ{cursor:text}.D0{cursor:vertical-text}.D1{cursor:alias}.D2{cursor:copy}.D3{cursor:move}.D4{cursor:no-drop}.D5{cursor:not-allowed}.D6{cursor:e-resize}.D7{cursor:n-resize}.D8{cursor:ne-resize}.D9{cursor:nw-resize}.Ea{cursor:s-resize}.Eb{cursor:se-resize}.Ec{cursor:sw-resize}.Ed{cursor:w-resize}.Ee{cursor:ew-resize}.Ef{cursor:ns-resize}.Eg{cursor:nesw-resize}.Eh{cursor:nwse-resize}.Ei{cursor:col-resize}.Ej{cursor:row-resize}.Ek{cursor:all-scroll}.El{cursor:zoom-in}.Em{cursor:zoom-out}.En{cursor:-webkit-grab;cursor:grab}.Eo{cursor:-webkit-grabbing;cursor:grabbing}.Ep{z-index:0}.Eq{z-index:1}.Er{z-index:2}.Es{z-index:3}.Et{z-index:4}.Eu{z-index:5}.Ev{z-index:6}.Ew{z-index:7}.Ex{z-index:8}.Ey{z-index:9}.Ez{z-index:10}.EA{z-index:11}.EB{z-index:12}.EC{z-index:13}.ED{z-index:14}.EE{z-index:15}.EF{z-index:16}.EG{z-index:17}.EH{z-index:18}.EI{z-index:19}.EJ{z-index:20}.EK{overflow:auto}.EL{overflow-x:auto}.EM{overflow-y:auto}.EN{overflow:hidden}.EO{overflow-x:hidden}.EP{overflow-y:hidden}.EQ{overflow:scroll}.ER{overflow-x:scroll}.ES{overflow-y:scroll}.ET{overflow:visible}.EU{overflow-x:visible}.EV{overflow-y:visible}.EW{opacity:.1}.EX{opacity:.2}.EY{opacity:.3}.EZ{opacity:.4}.E0{opacity:.5}.E1{opacity:.6}.E2{opacity:.7}.E3{opacity:.8}.E4{opacity:.9}.E5{opacity:1}.E6{font-size:6px}.E7{font-size:8px}.E8{font-size:10px}.E9{font-size:12px}.Fa{font-size:14px}.Fb{font-size:16px}.Fc{font-size:18px}.Fd{font-size:20px}.Fe{font-size:22px}.Ff{font-size:24px}.Fg{font-size:26px}.Fh{font-size:28px}.Fi{font-size:30px}.Fj{font-size:32px}.Fk{font-size:34px}.Fl{font-size:36px}.Fm{font-size:38px}.Fn{font-size:40px}.Fo{font-size:42px}.Fp{font-size:44px}.Fq{font-size:46px}.Fr{font-size:48px}.Fs{font-size:50px}.Ft{font-weight:100}.Fu{font-weight:200}.Fv{font-weight:300}.Fw{font-weight:400}.Fx{font-weight:500}.Fy{font-weight:600}.Fz{font-weight:700}.FA{font-weight:800}.FB{font-weight:900}.FC{text-decoration:none}.FD{text-decoration:underline}.FE{text-align:left}.FF{text-align:right}.FG{text-align:center}.FH{text-transform:none}.FI{text-transform:capitalize}.FJ{text-transform:lowercase}.FK{text-transform:uppercase}.FL{flex-wrap:nowrap}.FM{flex-wrap:wrap}.FN{flex-wrap:wrap-reverse}.FO{justify-content:start}.FP{justify-content:end}.FQ{justify-content:flex-start}.FR{justify-content:flex-end}.FS{justify-content:center}.FT{justify-content:left}.FU{justify-content:right}.FV{justify-content:space-between}.FW{justify-content:space-around}.FX{justify-content:space-evenly}.FY{justify-content:stretch}.FZ{align-items:stretch}.F0{align-items:flex-start}.F1{align-items:flex-end}.F2{align-items:center}.F3{align-items:baseline}.F4{align-items:start}.F5{align-items:end}.F6{align-items:self-start}.F7{align-items:self-end}.F8{align-content:flex-start}.F9{align-content:flex-end}.Ga{align-content:center}.Gb{align-content:space-between}.Gc{align-content:space-around}.Gd{align-content:space-evenly}.Ge{align-content:stretch}.Gf{align-content:start}.Gg{align-content:end}.Gh{align-content:baseline}.Gi{flex:1}.Gj{direction:row}.Gk{direction:row-reverse}.Gl{direction:column}.Gm{direction:column-reverse}.Gn{gap:0rem}.Go{row-gap:0rem}.Gp{-moz-column-gap:0rem;column-gap:0rem}.Gq{order:0}.Gr{flex-grow:0}.Gs{flex-shrink:0}.Gt{gap:.5rem}.Gu{row-gap:.5rem}.Gv{-moz-column-gap:.5rem;column-gap:.5rem}.Gw{order:1}.Gx{flex-grow:1}.Gy{flex-shrink:1}.Gz{gap:1rem}.GA{row-gap:1rem}.GB{-moz-column-gap:1rem;column-gap:1rem}.GC{order:2}.GD{flex-grow:2}.GE{flex-shrink:2}.GF{gap:1.5rem}.GG{row-gap:1.5rem}.GH{-moz-column-gap:1.5rem;column-gap:1.5rem}.GI{order:3}.GJ{flex-grow:3}.GK{flex-shrink:3}.GL{gap:2rem}.GM{row-gap:2rem}.GN{-moz-column-gap:2rem;column-gap:2rem}.GO{order:4}.GP{flex-grow:4}.GQ{flex-shrink:4}.GR{gap:2.5rem}.GS{row-gap:2.5rem}.GT{-moz-column-gap:2.5rem;column-gap:2.5rem}.GU{order:5}.GV{flex-grow:5}.GW{flex-shrink:5}.GX{gap:3rem}.GY{row-gap:3rem}.GZ{-moz-column-gap:3rem;column-gap:3rem}.G0{order:6}.G1{flex-grow:6}.G2{flex-shrink:6}.G3{gap:3.5rem}.G4{row-gap:3.5rem}.G5{-moz-column-gap:3.5rem;column-gap:3.5rem}.G6{order:7}.G7{flex-grow:7}.G8{flex-shrink:7}.G9{gap:4rem}.Ha{row-gap:4rem}.Hb{-moz-column-gap:4rem;column-gap:4rem}.Hc{order:8}.Hd{flex-grow:8}.He{flex-shrink:8}.Hf{gap:4.5rem}.Hg{row-gap:4.5rem}.Hh{-moz-column-gap:4.5rem;column-gap:4.5rem}.Hi{order:9}.Hj{flex-grow:9}.Hk{flex-shrink:9}.Hl{gap:5rem}.Hm{row-gap:5rem}.Hn{-moz-column-gap:5rem;column-gap:5rem}.Ho{order:10}.Hp{flex-grow:10}.Hq{flex-shrink:10}.Hr{gap:5.5rem}.Hs{row-gap:5.5rem}.Ht{-moz-column-gap:5.5rem;column-gap:5.5rem}.Hu{order:11}.Hv{flex-grow:11}.Hw{flex-shrink:11}.Hx{gap:6rem}.Hy{row-gap:6rem}.Hz{-moz-column-gap:6rem;column-gap:6rem}.HA{order:12}.HB{flex-grow:12}.HC{flex-shrink:12}.HD{gap:6.5rem}.HE{row-gap:6.5rem}.HF{-moz-column-gap:6.5rem;column-gap:6.5rem}.HG{order:13}.HH{flex-grow:13}.HI{flex-shrink:13}.HJ{gap:7rem}.HK{row-gap:7rem}.HL{-moz-column-gap:7rem;column-gap:7rem}.HM{order:14}.HN{flex-grow:14}.HO{flex-shrink:14}.HP{gap:7.5rem}.HQ{row-gap:7.5rem}.HR{-moz-column-gap:7.5rem;column-gap:7.5rem}.HS{order:15}.HT{flex-grow:15}.HU{flex-shrink:15}.HV{gap:8rem}.HW{row-gap:8rem}.HX{-moz-column-gap:8rem;column-gap:8rem}.HY{order:16}.HZ{flex-grow:16}.H0{flex-shrink:16}.H1{gap:8.5rem}.H2{row-gap:8.5rem}.H3{-moz-column-gap:8.5rem;column-gap:8.5rem}.H4{order:17}.H5{flex-grow:17}.H6{flex-shrink:17}.H7{gap:9rem}.H8{row-gap:9rem}.H9{-moz-column-gap:9rem;column-gap:9rem}.Ia{order:18}.Ib{flex-grow:18}.Ic{flex-shrink:18}.Id{gap:9.5rem}.Ie{row-gap:9.5rem}.If{-moz-column-gap:9.5rem;column-gap:9.5rem}.Ig{order:19}.Ih{flex-grow:19}.Ii{flex-shrink:19}.Ij{gap:10rem}.Ik{row-gap:10rem}.Il{-moz-column-gap:10rem;column-gap:10rem}.Im{order:20}.In{flex-grow:20}.Io{flex-shrink:20}.Ip{align-self:auto}.Iq{align-self:flex-start}.Ir{align-self:flex-end}.Is{align-self:center}.It{align-self:baseline}.Iu{align-self:stretch}
|