@readme/markdown 14.5.0 → 14.7.0

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.
@@ -16,6 +16,7 @@ interface ImageProps {
16
16
  src: string;
17
17
  title?: string;
18
18
  width?: string;
19
+ wrap?: boolean | string;
19
20
  }
20
21
 
21
22
  /**
@@ -41,11 +42,14 @@ const Image = (Props: ImageProps) => {
41
42
  width = 'auto',
42
43
  lazy = true,
43
44
  children,
45
+ wrap: wrapProp,
44
46
  } = Props;
45
47
 
46
48
  // Normalize border/framed: MDXish passes {false} as the string "false", not a boolean
47
49
  const border = borderProp === true || borderProp === 'true';
48
50
  const framed = framedProp === true || framedProp === 'true';
51
+ // Default (undefined) keeps legacy behavior: left/right images float and wrap text.
52
+ const noWrap = (align === 'left' || align === 'right') && (wrapProp === false || wrapProp === 'false');
49
53
 
50
54
  const [lightbox, setLightbox] = React.useState(false);
51
55
 
@@ -79,10 +83,11 @@ const Image = (Props: ImageProps) => {
79
83
  };
80
84
 
81
85
  // Framed images center the <img> itself; outer wrapper handles left/right alignment via text-align.
86
+ const imgClass = `img ${caption || children || framed ? 'img-align-center' : align ? `img-align-${align}` : ''} ${border ? 'border' : ''}${noWrap ? ' img-no-wrap' : ''}`;
82
87
  const imgElement = (
83
88
  <img
84
89
  alt={alt}
85
- className={`img ${caption || children || framed ? 'img-align-center' : align ? `img-align-${align}` : ''} ${border ? 'border' : ''}`}
90
+ className={imgClass}
86
91
  height={height}
87
92
  loading={lazy ? 'lazy' : 'eager'}
88
93
  src={src}
@@ -128,10 +133,10 @@ const Image = (Props: ImageProps) => {
128
133
  ) : null;
129
134
 
130
135
  if (framed) {
131
- const frameClass = `img-frame img-frame-${align || 'center'}`;
132
- // Left/right frames shrink to fit, so percentage widths can't resolve
133
- // against the parent, hoist onto the wrapper. Center frames are full-width.
134
- const isClamped = align === 'left' || align === 'right';
136
+ const frameClass = `img-frame img-frame-${align || 'center'}${noWrap ? ' img-no-wrap' : ''}`;
137
+ // Only left/right wrapping frames shrink to fit; for those, hoist percentage
138
+ // widths onto the wrapper since they can't resolve against a shrink-to-fit parent.
139
+ const isClamped = (align === 'left' || align === 'right') && !noWrap;
135
140
  const frameStyle: React.CSSProperties | undefined =
136
141
  isClamped && typeof width === 'string' && width.endsWith('%') ? { width } : undefined;
137
142
  if (children || caption) {
@@ -152,16 +157,22 @@ const Image = (Props: ImageProps) => {
152
157
  }
153
158
 
154
159
  if (children || caption) {
160
+ // Mirrors the framed pattern: left/right captioned figures float and shrink
161
+ // to fit so a long caption doesn't widen the float past the image.
162
+ const isFloating = (align === 'left' || align === 'right') && !noWrap;
163
+ const figureClass = [
164
+ (align === 'left' || align === 'right') && `img-figure-${align}`,
165
+ noWrap && 'img-no-wrap',
166
+ ]
167
+ .filter(Boolean)
168
+ .join(' ');
169
+ const figureStyle: React.CSSProperties | undefined =
170
+ isFloating && typeof width === 'string' && width.endsWith('%') ? { width } : undefined;
155
171
  return (
156
- <figure>
157
- {closedLightbox(
158
- alt || 'Expand image',
159
- <>
160
- {imgElement}
161
- <figcaption>{children || caption}</figcaption>
162
- </>,
163
- )}
172
+ <figure className={figureClass || undefined} style={figureStyle}>
173
+ {closedLightbox(alt || 'Expand image', imgElement)}
164
174
  {lightboxOverlay}
175
+ <figcaption>{children || caption}</figcaption>
165
176
  </figure>
166
177
  );
167
178
  }
@@ -13,8 +13,12 @@
13
13
  margin-right: 0.75rem;
14
14
  }
15
15
 
16
+ // margin auto on img.img-align-center (specificity 0,2,1) beats the gfm
17
+ // `.markdown-body .img { margin: x 0 }` rule (0,2,0) that zeros side margins.
16
18
  &-center {
17
19
  display: block;
20
+ margin-left: auto;
21
+ margin-right: auto;
18
22
  }
19
23
  }
20
24
 
@@ -47,6 +51,21 @@
47
51
  @extend %img-align-center;
48
52
  }
49
53
 
54
+ // Suppresses the float for left/right-aligned images while keeping the
55
+ // image hugging the same edge. Wins via order (declared last) and matching
56
+ // single-class specificity against the float-setting rules above.
57
+ &.img-no-wrap {
58
+ clear: both;
59
+ float: none;
60
+ display: block;
61
+ margin-left: 0;
62
+ margin-right: 0;
63
+ }
64
+
65
+ &.img-align-right.img-no-wrap {
66
+ margin-left: auto;
67
+ }
68
+
50
69
  &[width='smart'] {
51
70
  max-height: 450px;
52
71
  max-width: 100%;
@@ -67,13 +86,66 @@
67
86
  margin-top: 8px;
68
87
  text-align: center;
69
88
  }
89
+
90
+ // Left/right captioned figures clamp to image size and float for inline flow.
91
+ &.img-figure-left,
92
+ &.img-figure-right {
93
+ width: fit-content;
94
+ max-width: 100%;
95
+ }
96
+
97
+ &.img-figure-left {
98
+ clear: left;
99
+ float: left;
100
+ margin-right: 0.75rem;
101
+ }
102
+
103
+ &.img-figure-right {
104
+ clear: right;
105
+ float: right;
106
+ margin-left: 0.75rem;
107
+ }
108
+
109
+ // wrap=false on a non-center captioned figure: fill the row instead of floating.
110
+ &.img-figure-left.img-no-wrap,
111
+ &.img-figure-right.img-no-wrap {
112
+ clear: both;
113
+ float: none;
114
+ width: auto;
115
+ margin-left: auto;
116
+ margin-right: auto;
117
+ }
118
+
119
+ // Percentage widths set on the figure wrapper (left/right floating only).
120
+ &.img-figure-left[style*='width'],
121
+ &.img-figure-right[style*='width'] {
122
+ .img,
123
+ .lightbox-inner {
124
+ display: block;
125
+ width: 100%;
126
+ }
127
+
128
+ img {
129
+ height: auto !important;
130
+ width: 100% !important;
131
+ }
132
+ }
133
+
134
+ // Zero intrinsic width so a long caption doesn't widen the float past the
135
+ // image; min-width:100% re-fills the caption to the resolved figure width.
136
+ &.img-figure-left > figcaption,
137
+ &.img-figure-right > figcaption {
138
+ width: 0;
139
+ min-width: 100%;
140
+ }
70
141
  }
71
142
 
72
143
  .img-frame {
73
144
  background: rgba(var(--color-bg-page-inverse-rgb), 0.05);
74
- border-radius: var(--markdown-radius, 3px);
145
+ border-radius: var(--border-radius-lg);
75
146
  display: block;
76
147
  padding: var(--size-12);
148
+ max-width: 100%;
77
149
 
78
150
  @include dark-mode($global: true) {
79
151
  background: rgba(var(--color-bg-page-inverse-rgb), 0.1);
@@ -84,12 +156,12 @@
84
156
  }
85
157
 
86
158
  img {
87
- border-radius: var(--markdown-radius, 3px);
159
+ border-radius: var(--border-radius-lg);
88
160
  margin-left: 0;
89
161
  margin-right: 0;
90
162
  }
91
163
 
92
- // Percentage widths set on the frame wrapper (left/right only).
164
+ // Percentage widths set on the frame wrapper (left/right wrapping frames only).
93
165
  &[style*='width'] {
94
166
  .img,
95
167
  .lightbox-inner {
@@ -103,8 +175,8 @@
103
175
  }
104
176
  }
105
177
 
106
- // Left/right frames clamp to image size and float for inline flow.
107
- // Center frames span the full parent width so the frame anchors the image.
178
+ // Left/right wrapping frames clamp to image size and float for inline flow.
179
+ // Center frames (and non-wrapping left/right) span the full parent width.
108
180
  &-left,
109
181
  &-right {
110
182
  width: fit-content;
@@ -128,6 +200,20 @@
128
200
  text-align: center;
129
201
  }
130
202
 
203
+ // wrap=false on a non-center frame: fill the row instead of floating
204
+ &-left.img-no-wrap,
205
+ &-right.img-no-wrap {
206
+ clear: both;
207
+ float: none;
208
+ width: auto;
209
+ margin-left: 0;
210
+ margin-right: 0;
211
+ }
212
+
213
+ &-right.img-no-wrap {
214
+ text-align: right;
215
+ }
216
+
131
217
  figcaption {
132
218
  font-size: 0.93em;
133
219
  font-style: italic;
@@ -12,6 +12,7 @@ interface ImageProps {
12
12
  src: string;
13
13
  title?: string;
14
14
  width?: string;
15
+ wrap?: boolean | string;
15
16
  }
16
17
  declare const Image: (Props: ImageProps) => React.JSX.Element;
17
18
  export default Image;
@@ -42,6 +42,11 @@ export declare const INLINE_COMPONENT_TAGS: Set<string>;
42
42
  * both the micromark tokenizer and the mdxish remark transforms.
43
43
  */
44
44
  export declare const GENERIC_MDX_COMPONENT_EXCLUDED_TAGS: Set<string>;
45
+ /**
46
+ * Tags the micromark `mdxComponent` tokenizer must not claim, which
47
+ * are inline components and those that have their own dedicated tokenizer
48
+ */
49
+ export declare const TOKENIZER_MDX_COMPONENT_EXCLUDED_TAGS: Set<string>;
45
50
  /**
46
51
  * Lowercased variant of {@link INLINE_COMPONENT_TAGS} for consumers that
47
52
  * run after rehype (where hast `tagName` is normalized to lowercase).
package/dist/main.css CHANGED
@@ -391,6 +391,6 @@ span.CodeMirror-selectedtext { background: none; }
391
391
  z-index: 1;
392
392
  }
393
393
 
394
- .markdown-body img.img-align-right,.markdown-body img[align=right],.markdown-body img[alt~=align-right]{float:right;margin-left:.75rem}.markdown-body img.img-align-left,.markdown-body img[align=left],.markdown-body img[alt~=align-left]{float:left;margin-right:.75rem}.markdown-body>.img,.markdown-body>img,.markdown-body figure>img,.markdown-body img.img-align-center,.markdown-body img[align=middle],.markdown-body img[align=center],.markdown-body img[alt~=align-center]{display:block}.markdown-body img{border-style:none;box-sizing:content-box;display:inline-block;margin-left:auto;margin-right:auto;max-width:100%;outline:none !important;vertical-align:middle}.markdown-body img[width=smart]{max-height:450px;max-width:100%;width:auto}.markdown-body img.border{border:1px solid rgba(0,0,0,.2)}.markdown-body figure{margin:15px auto}.markdown-body figure figcaption{font-size:.93em;font-style:italic;margin-top:8px;text-align:center}.markdown-body .img-frame{background:rgba(var(--color-bg-page-inverse-rgb), 0.05);border-radius:var(--markdown-radius, 3px);display:block;padding:var(--size-12)}:global([data-color-mode="dark"]) .markdown-body .img-frame{background:rgba(var(--color-bg-page-inverse-rgb), 0.1)}@media(prefers-color-scheme: dark){:global([data-color-mode="auto"]) .markdown-body .img-frame,:global([data-color-mode="system"]) .markdown-body .img-frame{background:rgba(var(--color-bg-page-inverse-rgb), 0.1)}}.markdown-body .img-frame .img{display:inline-block}.markdown-body .img-frame img{border-radius:var(--markdown-radius, 3px);margin-left:0;margin-right:0}.markdown-body .img-frame[style*=width] .img,.markdown-body .img-frame[style*=width] .lightbox-inner{display:block;width:100%}.markdown-body .img-frame[style*=width] img{height:auto !important;width:100% !important}.markdown-body .img-frame-left,.markdown-body .img-frame-right{width:fit-content;max-width:100%}.markdown-body .img-frame-left{clear:left;float:left;margin-right:.75rem}.markdown-body .img-frame-right{clear:right;float:right;margin-left:.75rem}.markdown-body .img-frame-center{clear:both;text-align:center}.markdown-body .img-frame figcaption{font-size:.93em;font-style:italic;margin-top:8px;text-align:center}.markdown-body>.img,.markdown-body>img,.markdown-body figure>img{display:block}.markdown-body figure .img{display:block}.markdown-body .lightbox-close{background:none;border:0;color:var(--color-text-default);cursor:pointer;display:inline-block;font-size:inherit;opacity:.5;padding:0;position:fixed;right:1em;text-rendering:auto;top:1em;transform:scale(1.5);transition:.3s .3s ease-in;z-index:10000000}.markdown-body .lightbox.open{align-items:center;background:rgba(var(--color-bg-page-rgb), 0.966);display:flex;flex-flow:nowrap column;height:100vh;justify-content:flex-start;left:0;margin-bottom:0;margin-top:0;overflow:hidden;overflow-y:scroll;position:fixed;top:0;user-select:none;width:100vw;z-index:9999999}.markdown-body .lightbox.open .lightbox-inner{align-items:center;box-sizing:content-box;display:inline-flex;justify-content:center;margin:auto;min-height:calc(100vh + 8px);padding:0;position:relative}.markdown-body .lightbox.open img{height:auto !important;max-height:97.5vh !important;max-width:97.5vw !important;min-width:unset !important;width:auto !important}.markdown-body .lightbox.open img.border,.markdown-body .lightbox.open img:not([src$=".png"]):not([src$=".svg"]):not([src$=".jp2"]):not([src$=".tiff"]){box-shadow:0 .5em 3em -1em rgba(0,0,0,.2)}.markdown-body .lightbox.open img[src$=svg]{display:block !important;height:66vw !important;max-width:100% !important;min-width:200px !important;width:42vw !important}.markdown-body table{display:table;border-collapse:collapse;border-spacing:0;width:100%;color:var(--table-text)}.markdown-body table thead{color:var(--table-head-text, inherit)}.markdown-body table thead tr{background:var(--table-head, #f6f8fa)}.markdown-body table tr{background-color:var(--table-row, #fff)}.markdown-body table tr+tr{border-top:1px solid var(--table-edges, #dfe2e5)}.markdown-body table th,.markdown-body table thead td{font-weight:600}.markdown-body table th:empty,.markdown-body table thead td:empty{padding:0}.markdown-body table td,.markdown-body table th{padding:0;color:inherit;vertical-align:middle;border:1px solid var(--table-edges, #dfe2e5);padding:6px 13px}.markdown-body table td>:first-child,.markdown-body table td>:only-child,.markdown-body table th>:first-child,.markdown-body table th>:only-child{margin-top:0 !important}.markdown-body table td>:last-child,.markdown-body table td>:only-child,.markdown-body table th>:last-child,.markdown-body table th>:only-child{margin-bottom:0 !important}.markdown-body table:not(.plain) tr:nth-child(2n){background-color:var(--table-stripe, #fbfcfd)}.markdown-body .rdmd-table{display:block;position:relative}.markdown-body .rdmd-table-inner{box-sizing:content-box;min-width:100%;overflow:auto;width:100%}.markdown-body .rdmd-table table{border:1px solid var(--table-edges, #dfe2e5)}.markdown-body .rdmd-table table:only-child{margin:0 !important}.markdown-body .rdmd-table table:only-child thead th{background:inherit}.markdown-body .rdmd-table table:only-child td:last-child,.markdown-body .rdmd-table table:only-child th:last-child{border-right:none}.markdown-body .rdmd-table table:only-child thead tr,.markdown-body .rdmd-table table:only-child thead th:last-child{box-shadow:3px 0 0 var(--table-head)}@layer markdown{.rm-ToC{--ToC-border-active-color: var(--color-tab-active, rgba(var(--color-bg-page-inverse-rgb), 1));--ToC-border-active-height: 0;--ToC-border-active-top: 0;--ToC-border-color: rgba(var(--color-bg-page-inverse-rgb), 0.075);--ToC-color: var(--color-text-minimum);--ToC-color-active: var(--color-text-default);--ToC-color-hover: var(--color-text-minimum-hover);color:var(--ToC-color);position:relative}.rm-ToC::before,.rm-ToC::after{border-radius:.154em;content:"";display:block;position:absolute;left:0;top:0;transition:height var(--transition-slow),top var(--transition-slow);transition-timing-function:var(--transition-timing);width:.154em}.rm-ToC::before{background-color:var(--ToC-border-color);height:100%}.rm-ToC::after{background-color:var(--ToC-border-active-color);height:var(--ToC-border-active-height);top:var(--ToC-border-active-top)}.rm-ToC .active{color:var(--ToC-color-active)}}.toc-list .glossary-tooltip{pointer-events:none}.markdown-body{--font-size: 90%}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;font-family:var(--md-code-font, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace);font-size:1em}.markdown-body code,.markdown-body pre{font-size:12px}.markdown-body pre{margin-bottom:0;margin-top:0}.markdown-body code{background-color:#f6f8fa;background-color:var(--md-code-background, #f6f8fa);border-radius:3px;color:var(--md-code-text);font-size:var(--font-size);margin:0;padding:.2em .4em}.markdown-body code>div[class*=cm-]{display:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{background:0 0;border:0;font-size:100%;margin:0;padding:0;text-wrap:wrap;white-space:pre-wrap;word-break:normal}.markdown-body pre{background-color:#f6f8fa;background-color:var(--md-code-background, #f6f8fa);color:inherit;color:var(--md-code-text, inherit);border-radius:3px;border-radius:var(--markdown-radius, 3px);border-radius:var(--md-code-radius, var(--markdown-radius, 3px));font-size:var(--font-size);line-height:1.45;overflow:auto;padding:1em}.markdown-body pre code.theme-dark{background-color:#242e34;background-color:var(--md-code-background, #242e34)}.markdown-body pre code{background-color:rgba(0,0,0,0);border:0;display:inline;line-height:inherit;margin:0;max-width:auto;overflow:visible;padding:0;word-wrap:normal}.markdown-body pre.mermaid_single{background:none}.markdown-body kbd{background-color:#f6f8fa;background-color:var(--d-code-background, #f6f8fa);border:1px solid #d1d5da;border-bottom-color:#c6cbd1;border-radius:3px;box-shadow:inset 0 -1px 0 #c6cbd1;color:#444d56;display:inline-block;font-size:11px;line-height:10px;padding:3px 5px;vertical-align:middle}.markdown-body button.rdmd-code-copy{display:none !important}.markdown-body button.rdmd-code-copy{-webkit-appearance:unset;margin:.5em .6em 0 0;padding:.25em .7em;cursor:copy;color:inherit;color:var(--md-code-text, inherit);border:none;border-radius:3px;outline:none !important;background:inherit;background:var(--md-code-background, inherit);box-shadow:inset 0 0 0 1px rgba(170,170,170,.66),-1px 2px 6px -3px rgba(0,0,0,.1);transition:.15s ease-out}.markdown-body button.rdmd-code-copy:not(:hover):before,.markdown-body button.rdmd-code-copy:not(:hover):after{opacity:.66}.markdown-body button.rdmd-code-copy:hover:not(:active){box-shadow:inset 0 0 0 1px rgba(139,139,139,.75),-1px 2px 6px -3px rgba(0,0,0,.2)}.markdown-body button.rdmd-code-copy:active{box-shadow:inset 0 0 0 1px rgba(139,139,139,.5),inset 1px 4px 6px -2px rgba(0,0,0,.175)}.markdown-body button.rdmd-code-copy:active:before,.markdown-body button.rdmd-code-copy:active:after{opacity:.75}.markdown-body button.rdmd-code-copy:before,.markdown-body button.rdmd-code-copy:after{display:inline-block;font-family:"Font Awesome 6 Pro"}.markdown-body button.rdmd-code-copy:before{content:"";transition:.3s .15s ease}.markdown-body button.rdmd-code-copy:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.33);opacity:0 !important;transition:.3s 0s ease}.markdown-body button.rdmd-code-copy_copied{pointer-events:none}.markdown-body button.rdmd-code-copy_copied,.markdown-body button.rdmd-code-copy_copied *{color:green !important;color:var(--md-code-text, green) !important;opacity:1}.markdown-body button.rdmd-code-copy_copied:before{transition:.3s 0s ease;transform:scale(0.33);opacity:0 !important}.markdown-body button.rdmd-code-copy_copied:after{transition:.3s .15s ease;transform:translate(-50%, -50%) scale(1);opacity:1 !important}.markdown-body pre{position:relative}.markdown-body pre>code{background:inherit}.markdown-body pre>code.theme-dark{color:#fff}.markdown-body pre button.rdmd-code-copy{display:inline-block !important;position:absolute;right:0;top:0}.markdown-body pre{overflow:hidden;padding:0}.markdown-body pre>code{display:block !important;overflow:auto;padding:1em;max-height:90vh}.markdown-body pre:hover button.rdmd-code-copy:not(:hover){transition-delay:.4s}.markdown-body pre:not(:hover) button.rdmd-code-copy:not(.rdmd-code-copy_copied):not(:focus){opacity:0 !important}.CodeTabs{color:#333;color:var(--md-code-text, #333);border-radius:var(--md-code-radius, var(--markdown-radius, 3px)) !important;overflow:hidden}.CodeTabs.theme-dark{color:#fff;color:var(--md-code-text, white)}.CodeTabs.theme-dark .CodeTabs-toolbar{background:hsl(202.5,.7218181818%,21.5649019608%);background:var(--md-code-tabs, rgb(54.5935685727, 55.0897328568, 55.3874314273))}.CodeTabs-toolbar{background:hsl(210,11.1114285714%,92.9449019608%);background:var(--md-code-tabs, rgb(235.0104984429, 237.0095, 239.0085015571));display:flex;flex-flow:row nowrap;overflow:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch}.CodeTabs-toolbar::-webkit-scrollbar{display:none}.CodeTabs-toolbar button{white-space:nowrap;transition:.123s ease;-webkit-appearance:none;appearance:none;display:inline-block;line-height:2;padding:.5em 1em;border:none;background:rgba(0,0,0,0);outline:none;color:inherit;font:inherit;font-size:.75em;cursor:pointer}.CodeTabs-toolbar button:focus-visible{outline:3px solid var(--color-focus-ring);outline-offset:-3px}.CodeTabs.CodeTabs_initial .CodeTabs-toolbar button:first-child,.CodeTabs-toolbar button.CodeTabs_active{background:#f6f8fa;background:var(--md-code-background, #f6f8fa);color:#000;color:var(--md-code-text, black);pointer-events:none}.CodeTabs.theme-dark.CodeTabs_initial .CodeTabs-toolbar button:first-child,.CodeTabs.theme-dark .CodeTabs-toolbar button.CodeTabs_active{background:#242e34;background:var(--md-code-background, #242e34);color:#fff;color:var(--md-code-text, white)}.CodeTabs-toolbar button:not(.CodeTabs_active):hover,.CodeTabs-toolbar button:not(.CodeTabs_active):focus{background:rgba(0,0,0,.075)}.CodeTabs pre{border-radius:0 0 var(--md-code-radius, var(--markdown-radius, 3px)) var(--md-code-radius, var(--markdown-radius, 3px)) !important;background:#f6f8fa;background:var(--md-code-background, #f6f8fa);margin-bottom:0}.CodeTabs pre:not(.CodeTabs_active){display:none}.CodeTabs.theme-dark pre{background:#242e34;background:var(--md-code-background, #242e34)}.CodeTabs.CodeTabs_initial pre:first-child{display:block}.callout{--emoji: 1em;--icon-font: var(--fa-style-family, "Font Awesome 6 Pro", FontAwesome);border-top-right-radius:var(--markdown-radius);border-bottom-right-radius:var(--markdown-radius)}.callout.callout{--Callout-bg: var(--background);--Callout-border: var(--border);--Callout-border-radius: 2px;--Callout-title: var(--title, var(--color-text-default, var(--text)));background:var(--Callout-bg);border-radius:var(--Callout-border-radius);border-color:var(--Callout-border);color:var(--text, var(--color-text-default));display:flow-root;padding:1.25rem}.callout.callout_default{--Callout-bg: var(--background, rgb(247.6206896552, 248.3125, 249.0043103448));--Callout-border: var(--border, rgb(138.5227272727, 146.9090909091, 156.2272727273));--Callout-title: var(--title, var(--text, var(--color-text-default)))}[data-color-mode=dark] .callout.callout_default{--Callout-bg: rgba(var(--gray100-rgb), 0.05)}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_default,[data-color-mode=system] .callout.callout_default{--Callout-bg: rgba(var(--gray100-rgb), 0.05)}}.callout.callout_info{--Callout-bg: var(--background, rgba(var(--blue-rgb), 0.1));--Callout-border: var(--border, rgba(var(--blue-rgb), 1));--Callout-title: var(--title, var(--blue20))}[data-color-mode=dark] .callout.callout_info{--Callout-bg: var(--background, rgba(var(--blue-rgb), 0.075));--Callout-title: var(--title, var(--blue90))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_info,[data-color-mode=system] .callout.callout_info{--Callout-bg: var(--background, rgba(var(--blue-rgb), 0.075));--Callout-title: var(--title, var(--blue90))}}.callout.callout_warn,.callout.callout_warning{--Callout-bg: var(--background, rgba(var(--yellow-rgb), 0.1));--Callout-border: var(--border, rgba(var(--yellow-rgb), 1));--Callout-title: var(--title, var(--yellow10))}[data-color-mode=dark] .callout.callout_warn,[data-color-mode=dark] .callout.callout_warning{--Callout-bg: var(--background, rgba(var(--yellow-rgb), 0.075));--Callout-title: var(--title, var(--yellow70))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_warn,[data-color-mode=system] .callout.callout_warn,[data-color-mode=auto] .callout.callout_warning,[data-color-mode=system] .callout.callout_warning{--Callout-bg: var(--background, rgba(var(--yellow-rgb), 0.075));--Callout-title: var(--title, var(--yellow70))}}.callout.callout_ok,.callout.callout_okay,.callout.callout_success{--Callout-bg: var(--background, rgba(var(--green-rgb), 0.1));--Callout-border: var(--border, rgba(var(--green-rgb), 1));--Callout-title: var(--title, var(--green10))}[data-color-mode=dark] .callout.callout_ok,[data-color-mode=dark] .callout.callout_okay,[data-color-mode=dark] .callout.callout_success{--Callout-bg: var(--background, rgba(var(--green-rgb), 0.075));--Callout-title: var(--title, var(--green80))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_ok,[data-color-mode=system] .callout.callout_ok,[data-color-mode=auto] .callout.callout_okay,[data-color-mode=system] .callout.callout_okay,[data-color-mode=auto] .callout.callout_success,[data-color-mode=system] .callout.callout_success{--Callout-bg: var(--background, rgba(var(--green-rgb), 0.075));--Callout-title: var(--title, var(--green80))}}.callout.callout_err,.callout.callout_error{--Callout-bg: var(--background, rgba(var(--red-rgb), 0.1));--Callout-border: var(--border, rgba(var(--red-rgb), 1));--Callout-title: var(--title, var(--red20))}[data-color-mode=dark] .callout.callout_err,[data-color-mode=dark] .callout.callout_error{--Callout-bg: var(--background, rgba(var(--red-rgb), 0.05));--Callout-title: var(--title, var(--red90))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_err,[data-color-mode=system] .callout.callout_err,[data-color-mode=auto] .callout.callout_error,[data-color-mode=system] .callout.callout_error{--Callout-bg: var(--background, rgba(var(--red-rgb), 0.05));--Callout-title: var(--title, var(--red90))}}.callout.callout>*{margin-left:1.25rem}.callout.callout ul,.callout.callout ol{padding-left:1.3em}.callout.callout h3 a,.callout.callout .callout-heading a{color:inherit}.callout.callout hr{border-color:var(--border, var(--markdown-edge, #eee))}.callout.callout blockquote:not(.callout){color:var(--color-text-default, var(--text));border-color:var(--border);border-width:3px;padding:0 0 0 .8em}.callout.callout blockquote:not(.callout):is(h3 *,.callout-heading *){color:inherit}.callout.callout h3,.callout.callout .callout-heading{--markdown-title-weight: 500;color:var(--Callout-title);font-family:var(--markdown-title-font);font-size:1.25em;font-weight:var(--markdown-title-weight, 500);line-height:1.25;margin-bottom:calc(1.25rem*.5);position:relative}.callout.callout h3:only-child,.callout.callout .callout-heading:only-child{margin-bottom:0}.callout.callout h3.empty,.callout.callout .callout-heading.empty{float:left}.callout.callout h3.empty:is(p),.callout.callout .callout-heading.empty:is(p){margin-left:0}.callout.callout h3>*,.callout.callout .callout-heading>*{color:inherit;margin:0}.callout.callout h3 .callout-icon,.callout.callout .callout-heading .callout-icon{margin-left:calc(-1.25rem - .5em)}.callout.callout h3 .callout-icon::before,.callout.callout .callout-heading .callout-icon::before{transform:translate(-50%, -50%)}.callout.callout h3:before,.callout.callout .callout-heading:before{position:absolute;right:100%;width:2.4em;text-align:center;font:normal normal normal 1em/1 var(--icon-font)}.callout.callout .callout-icon{float:left;margin-left:-0.5rem;position:relative}.callout.callout .callout-icon:only-child{float:none}.callout.callout .callout-icon+.heading{color:var(--Callout-title)}.callout.callout .callout-icon+.heading.heading{margin-top:0}.callout.callout>.callout-icon_fa{--fa-primary-color: var(--Callout-title);--fa-secondary-color: var(--Callout-title);margin-top:.25rem}.callout-icon{font-size:var(--emoji, 0);color:var(--icon-color, inherit) !important}.callout-icon::before{content:var(--icon);font-family:var(--icon-font);font-size:var(--icon-size, 1rem);font-weight:var(--icon-weight, 400);position:absolute;top:50%;display:inline-block;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.callout-icon_fa::before,.callout-icon_fa::after{font-family:inherit;font-size:inherit;top:unset;transform:none}.rdmdCallouts--useIconFont .callout{--emoji: unset}.rdmdCallouts--useIconFont .callout_okay{--icon: ""}.rdmdCallouts--useIconFont .callout_info{--icon: ""}.rdmdCallouts--useIconFont .callout_warn{--icon: ""}.rdmdCallouts--useIconFont .callout_error{--icon: ""}.rdmdCallouts--useIconFont .callout_default{--emoji: 1rem}.heading.heading{display:flex;justify-content:flex-start;align-items:center;position:relative}.heading.heading .heading-text{flex:1 100%}.heading.heading .heading-anchor-deprecated{position:absolute;top:0}.heading.heading .heading-anchor{top:-1rem !important}.heading.heading .heading-anchor,.heading.heading .heading-anchor-icon{position:absolute !important;display:inline !important;order:-1;right:100%;top:unset !important;margin-right:-0.8rem;padding:.8rem .2rem .8rem 0 !important;font-size:.8rem !important;text-decoration:none;color:inherit;transform:translateX(-100%);transition:.2s ease}.heading.heading .heading-anchor:hover,.heading.heading .heading-anchor-icon:hover{opacity:1}.heading.heading:not(:hover) .heading-anchor-icon{opacity:0}.callout .heading.heading .heading-anchor-icon{display:none !important}.markdown-body .embed{padding:15px;color:var(--md-code-text, inherit);border-radius:var(--md-code-radius, var(--markdown-radius, 3px));border-radius:3px;background:rgba(0,0,0,0);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);transition:.3s ease}.markdown-body .embed:hover{background:var(--md-code-background, #f6f8fa);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.markdown-body>.embed_hasImg:nth-of-type(odd){margin-right:30px;padding-right:0}.markdown-body>.embed_hasImg:nth-of-type(odd) .embed-link{flex-direction:row-reverse}.markdown-body>.embed_hasImg:nth-of-type(odd) .embed-img{margin-left:.88em;margin-right:-30px;box-shadow:-0.3em .3em .9em -0.3em rgba(0,0,0,.15)}.markdown-body>.embed_hasImg:nth-of-type(even){margin-left:30px;padding-left:0}.markdown-body>.embed_hasImg:nth-of-type(even) .embed-img{margin-left:-30px}.markdown-body .embed:empty{display:none}.markdown-body .embed-media{display:flex;justify-content:center}.markdown-body .embed-media>:only-child{flex:1;margin:-15px;border-radius:0 !important}.markdown-body .embed-link{display:flex;align-items:center;color:var(--markdown-text, #333);text-decoration:none !important}.markdown-body .embed-body{flex:1;line-height:1.3}.markdown-body .embed-body,.markdown-body .embed-body .embed-title{font-size:1.15em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.markdown-body .embed-body .embed-provider{display:block;text-decoration-color:rgba(0,0,0,0) !important;opacity:.88}.markdown-body .embed-body-url{opacity:.75}.markdown-body .embed-provider{font-size:.8em;line-height:1.6;transition:.2 ease}.markdown-body .embed-provider code:only-child{display:block;width:100%;font-size:1.15em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:rgba(0,0,0,0);margin:0;padding:0;font-size:inherit !important}.markdown-body .embed-provider code{opacity:.8}.markdown-body .embed-img{width:5em;max-width:5em;margin:0 .88em 0 0;padding:4px;background:#fff;border:1px solid rgba(0,0,0,.15);border-radius:3px;transition:inherit;box-shadow:.3em .3em .9em -0.3em rgba(0,0,0,.15)}.markdown-body .embed:not(:hover) .embed-img{box-shadow:0 .25em 1em -0.5em rgba(0,0,0,.133)}.markdown-body .embed:hover .embed-img{border:1px solid rgba(0,0,0,.2)}.markdown-body .embed-favicon{width:12px !important;height:12px !important;margin-top:4px;margin-right:6px;margin-bottom:12px}.GlossaryItem-trigger{border-bottom:1px solid #737c83;border-style:dotted;border-top:none;border-left:none;border-right:none;cursor:pointer}.GlossaryItem-tooltip-content{--Glossary-bg: var(--color-bg-page, var(--white));--Glossary-color: var(--color-text-default, var(--gray20));--Glossary-shadow: var( --box-shadow-menu-light, 0 5px 10px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.025), 0 1px 3px rgba(0, 0, 0, 0.025) );background-color:var(--Glossary-bg);border:1px solid var(--color-border-default, rgba(0, 0, 0, 0.1));border-radius:var(--border-radius);box-shadow:var(--Glossary-shadow);color:var(--Glossary-color);font-size:15px;font-weight:400;line-height:1.5;padding:15px;text-align:left;max-width:min(350px,100vw - 20px)}[data-color-mode=dark] .GlossaryItem-tooltip-content{--Glossary-bg: var(--gray15);--Glossary-color: var(--color-text-default, var(--white));--Glossary-shadow: var( --box-shadow-menu-dark, 0 1px 3px rgba(0, 0, 0, 0.025), 0 2px 6px rgba(0, 0, 0, 0.025), 0 5px 10px rgba(0, 0, 0, 0.05) )}@media(prefers-color-scheme: dark){[data-color-mode=auto] .GlossaryItem-tooltip-content{--Glossary-bg: var(--Tooltip-bg, var(--gray0));--Glossary-color: var(--color-text-default, var(--white));--Glossary-shadow: var( --box-shadow-menu-dark, 0 1px 3px rgba(0, 0, 0, 0.025), 0 2px 6px rgba(0, 0, 0, 0.025), 0 5px 10px rgba(0, 0, 0, 0.05) )}}.GlossaryItem-term{font-style:italic}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}:root{--markdown-title: inherit}body{-webkit-font-smoothing:antialiased}.field-description,.markdown-body{color:var(--markdown-text);font-family:var(--markdown-font);line-height:var(--markdown-line-height);position:relative;text-size-adjust:100%;word-wrap:break-word;font-size:var(--markdown-font-size, 14px)}.field-description::before,.field-description::after,.markdown-body::before,.markdown-body::after{content:"";display:table}.field-description::after,.markdown-body::after{clear:both}.field-description ul,.markdown-body ul{list-style:initial}.field-description .anchor,.markdown-body .anchor{float:left;line-height:1;margin-left:-20px;padding-right:4px}.field-description .anchor:focus,.markdown-body .anchor:focus{outline:0}.field-description h1:hover .anchor,.field-description h2:hover .anchor,.field-description h3:hover .anchor,.field-description h4:hover .anchor,.field-description h5:hover .anchor,.field-description h6:hover .anchor,.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.field-description details,.markdown-body details{display:block}.field-description summary,.markdown-body summary{display:list-item}.field-description a,.markdown-body a{transition:.15s ease}.field-description a:hover,.markdown-body a:hover{text-decoration:underline}.field-description a:active,.field-description a:hover,.markdown-body a:active,.markdown-body a:hover{outline-width:0}.field-description a:not([href]),.markdown-body a:not([href]){color:inherit;text-decoration:none}.field-description strong,.markdown-body strong{font-weight:inherit;font-weight:bolder}.field-description h1,.markdown-body h1{font-size:2em;margin:.67em 0}.field-description hr,.markdown-body hr{background:rgba(0,0,0,0);border-bottom:1px solid var(--markdown-edge, #dfe2e5);border-width:0 0 1px;box-sizing:content-box;height:0;margin:var(--markdown-spacing, 15px) 0;overflow:hidden}.field-description hr::before,.field-description hr::after,.markdown-body hr::before,.markdown-body hr::after{content:"";display:table}.field-description hr::after,.markdown-body hr::after{clear:both}.field-description>h1,.field-description>h2,.field-description>h3,.field-description>h4,.field-description>h5,.field-description>h6,.field-description>hr,.markdown-body>h1,.markdown-body>h2,.markdown-body>h3,.markdown-body>h4,.markdown-body>h5,.markdown-body>h6,.markdown-body>hr{clear:both}.field-description input,.markdown-body input{font:inherit;margin:0}.field-description input,.markdown-body input{overflow:visible}.field-description [type=checkbox],.markdown-body [type=checkbox]{box-sizing:border-box;padding:0}.field-description *,.markdown-body *{box-sizing:border-box}.field-description input,.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.field-description strong,.markdown-body strong{font-weight:600}.field-description details summary,.markdown-body details summary{cursor:pointer}.field-description h1,.field-description h2,.field-description h3,.field-description h4,.field-description h5,.field-description h6,.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{color:var(--markdown-title);font-family:var(--markdown-title-font);font-size:var(--markdown-title-size);font-weight:var(--markdown-title-weight, 600);line-height:1.25;margin-bottom:var(--markdown-title-marginBottom, var(--markdown-spacing, 15px));margin-top:var(--markdown-title-marginTop, 1em)}.field-description h1:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h2:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h3:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h4:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h5:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h6:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h1:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h2:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h3:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h4:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h5:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h6:has(+h1,+h2,+h3,+h4,+h5,+h6,+p){margin-bottom:calc(var(--markdown-spacing, 15px)/2)}.field-description :is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6),.markdown-body :is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:0}.field-description h1,.markdown-body h1{font-size:1.75em;font-size:var(--markdown-title-size, 1.75em)}.field-description h2,.markdown-body h2{font-size:1.5em;font-size:var(--markdown-title-size, 1.5em)}.field-description h1,.markdown-body h1{font-weight:700;font-weight:var(--markdown-title-weight, 700)}.field-description h2,.markdown-body h2{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h3,.field-description h4,.markdown-body h3,.markdown-body h4{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h3,.markdown-body h3{font-size:1.25em;font-size:var(--markdown-title-size, 1.25em)}.field-description h4,.markdown-body h4{font-size:1em;font-size:var(--markdown-title-size, 1em)}.field-description h5,.field-description h6,.markdown-body h5,.markdown-body h6{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h5,.markdown-body h5{font-size:.875em;font-size:var(--markdown-title-size, 0.875em)}.field-description h6,.markdown-body h6{color:var(--markdown-title, #6a737d);font-size:.85em;font-size:var(--markdown-title-size, 0.85em)}.field-description p,.field-description .p,.markdown-body p,.markdown-body .p{margin-bottom:10px;margin-top:0}.field-description blockquote,.markdown-body blockquote{margin:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{margin-bottom:0;margin-top:0;padding-left:0}.field-description ol ol,.field-description ul ol,.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-alpha}.field-description ol ol ol,.field-description ol ul ol,.field-description ul ol ol,.field-description ul ul ol,.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-roman}.field-description dd,.markdown-body dd{margin-left:0}.field-description input::-webkit-inner-spin-button,.field-description input::-webkit-outer-spin-button,.markdown-body input::-webkit-inner-spin-button,.markdown-body input::-webkit-outer-spin-button{appearance:none;appearance:none;margin:0}.field-description>:first-child,.markdown-body>:first-child{margin-top:0 !important}.field-description>:nth-child(1 of :not(style)),.markdown-body>:nth-child(1 of :not(style)){margin-top:0 !important}.field-description>:last-child,.markdown-body>:last-child{margin-bottom:0 !important}.field-description blockquote,.field-description dl,.field-description p,.field-description pre,.field-description table,.markdown-body blockquote,.markdown-body dl,.markdown-body p,.markdown-body pre,.markdown-body table{margin-bottom:var(--markdown-spacing, 15px);margin-top:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{margin-bottom:round(1.3333em,1px);margin-top:0}.field-description ol ol,.field-description ol ul,.field-description ul ol,.field-description ul ul,.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-bottom:0;margin-top:round(.5333em,1px)}.field-description blockquote,.markdown-body blockquote{border-left:.225em solid #dfe2e5;color:#6a737d;display:block;padding:0 1em}.field-description blockquote:has(img,figure,.Image),.markdown-body blockquote:has(img,figure,.Image){display:flow-root}.field-description blockquote>:first-child,.markdown-body blockquote>:first-child{margin-top:0}.field-description blockquote>:last-child,.markdown-body blockquote>:last-child{margin-bottom:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{padding-left:2em}.field-description li,.markdown-body li{clear:both;word-wrap:break-all}.field-description li>p,.markdown-body li>p{margin-top:1em}.field-description li+li,.markdown-body li+li{margin-top:round(.5333em,1px)}.field-description dl,.markdown-body dl{padding:0}.field-description dl dt,.markdown-body dl dt{font-size:1em;font-style:italic;font-weight:600;margin-top:1em;padding:0}.field-description dl dd,.markdown-body dl dd{margin-bottom:1em;padding:0 1em}.field-description .img,.markdown-body .img{margin:round(var(--markdown-img-margin, var(--markdown-spacing, 15px))*1.33,1px) 0}.field-description :checked+.radio-label,.markdown-body :checked+.radio-label{border-color:var(--project-color-primary);position:relative;z-index:1}.field-description .task-list-item,.markdown-body .task-list-item{list-style-type:none}.field-description .task-list-item+.task-list-item,.markdown-body .task-list-item+.task-list-item{margin-top:3px}.field-description .task-list-item input,.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.field-description p.blank-line,.markdown-body p.blank-line{height:1.5em}.field-description blockquote h1:last-child,.field-description blockquote h2:last-child,.markdown-body blockquote h1:last-child,.markdown-body blockquote h2:last-child{border-bottom:0}.field-description>*,.markdown-body>*{margin-bottom:var(--markdown-spacing, 15px);margin-top:var(--markdown-spacing, 15px)}.field-description .task-list-item input,.markdown-body .task-list-item input{margin:0 .5em .25em -1.25em}.field-description a[href],.field-description a:not([href=""]),.markdown-body a[href],.markdown-body a:not([href=""]){text-decoration:underline}
394
+ .markdown-body img.img-align-right,.markdown-body img[align=right],.markdown-body img[alt~=align-right]{float:right;margin-left:.75rem}.markdown-body img.img-align-left,.markdown-body img[align=left],.markdown-body img[alt~=align-left]{float:left;margin-right:.75rem}.markdown-body>.img,.markdown-body>img,.markdown-body figure>img,.markdown-body img.img-align-center,.markdown-body img[align=middle],.markdown-body img[align=center],.markdown-body img[alt~=align-center]{display:block;margin-left:auto;margin-right:auto}.markdown-body img{border-style:none;box-sizing:content-box;display:inline-block;margin-left:auto;margin-right:auto;max-width:100%;outline:none !important;vertical-align:middle}.markdown-body img.img-no-wrap{clear:both;float:none;display:block;margin-left:0;margin-right:0}.markdown-body img.img-align-right.img-no-wrap{margin-left:auto}.markdown-body img[width=smart]{max-height:450px;max-width:100%;width:auto}.markdown-body img.border{border:1px solid rgba(0,0,0,.2)}.markdown-body figure{margin:15px auto}.markdown-body figure figcaption{font-size:.93em;font-style:italic;margin-top:8px;text-align:center}.markdown-body figure.img-figure-left,.markdown-body figure.img-figure-right{width:fit-content;max-width:100%}.markdown-body figure.img-figure-left{clear:left;float:left;margin-right:.75rem}.markdown-body figure.img-figure-right{clear:right;float:right;margin-left:.75rem}.markdown-body figure.img-figure-left.img-no-wrap,.markdown-body figure.img-figure-right.img-no-wrap{clear:both;float:none;width:auto;margin-left:auto;margin-right:auto}.markdown-body figure.img-figure-left[style*=width] .img,.markdown-body figure.img-figure-left[style*=width] .lightbox-inner,.markdown-body figure.img-figure-right[style*=width] .img,.markdown-body figure.img-figure-right[style*=width] .lightbox-inner{display:block;width:100%}.markdown-body figure.img-figure-left[style*=width] img,.markdown-body figure.img-figure-right[style*=width] img{height:auto !important;width:100% !important}.markdown-body figure.img-figure-left>figcaption,.markdown-body figure.img-figure-right>figcaption{width:0;min-width:100%}.markdown-body .img-frame{background:rgba(var(--color-bg-page-inverse-rgb), 0.05);border-radius:var(--border-radius-lg);display:block;padding:var(--size-12);max-width:100%}:global([data-color-mode="dark"]) .markdown-body .img-frame{background:rgba(var(--color-bg-page-inverse-rgb), 0.1)}@media(prefers-color-scheme: dark){:global([data-color-mode="auto"]) .markdown-body .img-frame,:global([data-color-mode="system"]) .markdown-body .img-frame{background:rgba(var(--color-bg-page-inverse-rgb), 0.1)}}.markdown-body .img-frame .img{display:inline-block}.markdown-body .img-frame img{border-radius:var(--border-radius-lg);margin-left:0;margin-right:0}.markdown-body .img-frame[style*=width] .img,.markdown-body .img-frame[style*=width] .lightbox-inner{display:block;width:100%}.markdown-body .img-frame[style*=width] img{height:auto !important;width:100% !important}.markdown-body .img-frame-left,.markdown-body .img-frame-right{width:fit-content;max-width:100%}.markdown-body .img-frame-left{clear:left;float:left;margin-right:.75rem}.markdown-body .img-frame-right{clear:right;float:right;margin-left:.75rem}.markdown-body .img-frame-center{clear:both;text-align:center}.markdown-body .img-frame-left.img-no-wrap,.markdown-body .img-frame-right.img-no-wrap{clear:both;float:none;width:auto;margin-left:0;margin-right:0}.markdown-body .img-frame-right.img-no-wrap{text-align:right}.markdown-body .img-frame figcaption{font-size:.93em;font-style:italic;margin-top:8px;text-align:center}.markdown-body>.img,.markdown-body>img,.markdown-body figure>img{display:block}.markdown-body figure .img{display:block}.markdown-body .lightbox-close{background:none;border:0;color:var(--color-text-default);cursor:pointer;display:inline-block;font-size:inherit;opacity:.5;padding:0;position:fixed;right:1em;text-rendering:auto;top:1em;transform:scale(1.5);transition:.3s .3s ease-in;z-index:10000000}.markdown-body .lightbox.open{align-items:center;background:rgba(var(--color-bg-page-rgb), 0.966);display:flex;flex-flow:nowrap column;height:100vh;justify-content:flex-start;left:0;margin-bottom:0;margin-top:0;overflow:hidden;overflow-y:scroll;position:fixed;top:0;user-select:none;width:100vw;z-index:9999999}.markdown-body .lightbox.open .lightbox-inner{align-items:center;box-sizing:content-box;display:inline-flex;justify-content:center;margin:auto;min-height:calc(100vh + 8px);padding:0;position:relative}.markdown-body .lightbox.open img{height:auto !important;max-height:97.5vh !important;max-width:97.5vw !important;min-width:unset !important;width:auto !important}.markdown-body .lightbox.open img.border,.markdown-body .lightbox.open img:not([src$=".png"]):not([src$=".svg"]):not([src$=".jp2"]):not([src$=".tiff"]){box-shadow:0 .5em 3em -1em rgba(0,0,0,.2)}.markdown-body .lightbox.open img[src$=svg]{display:block !important;height:66vw !important;max-width:100% !important;min-width:200px !important;width:42vw !important}.markdown-body table{display:table;border-collapse:collapse;border-spacing:0;width:100%;color:var(--table-text)}.markdown-body table thead{color:var(--table-head-text, inherit)}.markdown-body table thead tr{background:var(--table-head, #f6f8fa)}.markdown-body table tr{background-color:var(--table-row, #fff)}.markdown-body table tr+tr{border-top:1px solid var(--table-edges, #dfe2e5)}.markdown-body table th,.markdown-body table thead td{font-weight:600}.markdown-body table th:empty,.markdown-body table thead td:empty{padding:0}.markdown-body table td,.markdown-body table th{padding:0;color:inherit;vertical-align:middle;border:1px solid var(--table-edges, #dfe2e5);padding:6px 13px}.markdown-body table td>:first-child,.markdown-body table td>:only-child,.markdown-body table th>:first-child,.markdown-body table th>:only-child{margin-top:0 !important}.markdown-body table td>:last-child,.markdown-body table td>:only-child,.markdown-body table th>:last-child,.markdown-body table th>:only-child{margin-bottom:0 !important}.markdown-body table:not(.plain) tr:nth-child(2n){background-color:var(--table-stripe, #fbfcfd)}.markdown-body .rdmd-table{display:block;position:relative}.markdown-body .rdmd-table-inner{box-sizing:content-box;min-width:100%;overflow:auto;width:100%}.markdown-body .rdmd-table table{border:1px solid var(--table-edges, #dfe2e5)}.markdown-body .rdmd-table table:only-child{margin:0 !important}.markdown-body .rdmd-table table:only-child thead th{background:inherit}.markdown-body .rdmd-table table:only-child td:last-child,.markdown-body .rdmd-table table:only-child th:last-child{border-right:none}.markdown-body .rdmd-table table:only-child thead tr,.markdown-body .rdmd-table table:only-child thead th:last-child{box-shadow:3px 0 0 var(--table-head)}@layer markdown{.rm-ToC{--ToC-border-active-color: var(--color-tab-active, rgba(var(--color-bg-page-inverse-rgb), 1));--ToC-border-active-height: 0;--ToC-border-active-top: 0;--ToC-border-color: rgba(var(--color-bg-page-inverse-rgb), 0.075);--ToC-color: var(--color-text-minimum);--ToC-color-active: var(--color-text-default);--ToC-color-hover: var(--color-text-minimum-hover);color:var(--ToC-color);position:relative}.rm-ToC::before,.rm-ToC::after{border-radius:.154em;content:"";display:block;position:absolute;left:0;top:0;transition:height var(--transition-slow),top var(--transition-slow);transition-timing-function:var(--transition-timing);width:.154em}.rm-ToC::before{background-color:var(--ToC-border-color);height:100%}.rm-ToC::after{background-color:var(--ToC-border-active-color);height:var(--ToC-border-active-height);top:var(--ToC-border-active-top)}.rm-ToC .active{color:var(--ToC-color-active)}}.toc-list .glossary-tooltip{pointer-events:none}.markdown-body{--font-size: 90%}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;font-family:var(--md-code-font, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace);font-size:1em}.markdown-body code,.markdown-body pre{font-size:12px}.markdown-body pre{margin-bottom:0;margin-top:0}.markdown-body code{background-color:#f6f8fa;background-color:var(--md-code-background, #f6f8fa);border-radius:3px;color:var(--md-code-text);font-size:var(--font-size);margin:0;padding:.2em .4em}.markdown-body code>div[class*=cm-]{display:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{background:0 0;border:0;font-size:100%;margin:0;padding:0;text-wrap:wrap;white-space:pre-wrap;word-break:normal}.markdown-body pre{background-color:#f6f8fa;background-color:var(--md-code-background, #f6f8fa);color:inherit;color:var(--md-code-text, inherit);border-radius:3px;border-radius:var(--markdown-radius, 3px);border-radius:var(--md-code-radius, var(--markdown-radius, 3px));font-size:var(--font-size);line-height:1.45;overflow:auto;padding:1em}.markdown-body pre code.theme-dark{background-color:#242e34;background-color:var(--md-code-background, #242e34)}.markdown-body pre code{background-color:rgba(0,0,0,0);border:0;display:inline;line-height:inherit;margin:0;max-width:auto;overflow:visible;padding:0;word-wrap:normal}.markdown-body pre.mermaid_single{background:none}.markdown-body kbd{background-color:#f6f8fa;background-color:var(--d-code-background, #f6f8fa);border:1px solid #d1d5da;border-bottom-color:#c6cbd1;border-radius:3px;box-shadow:inset 0 -1px 0 #c6cbd1;color:#444d56;display:inline-block;font-size:11px;line-height:10px;padding:3px 5px;vertical-align:middle}.markdown-body button.rdmd-code-copy{display:none !important}.markdown-body button.rdmd-code-copy{-webkit-appearance:unset;margin:.5em .6em 0 0;padding:.25em .7em;cursor:copy;color:inherit;color:var(--md-code-text, inherit);border:none;border-radius:3px;outline:none !important;background:inherit;background:var(--md-code-background, inherit);box-shadow:inset 0 0 0 1px rgba(170,170,170,.66),-1px 2px 6px -3px rgba(0,0,0,.1);transition:.15s ease-out}.markdown-body button.rdmd-code-copy:not(:hover):before,.markdown-body button.rdmd-code-copy:not(:hover):after{opacity:.66}.markdown-body button.rdmd-code-copy:hover:not(:active){box-shadow:inset 0 0 0 1px rgba(139,139,139,.75),-1px 2px 6px -3px rgba(0,0,0,.2)}.markdown-body button.rdmd-code-copy:active{box-shadow:inset 0 0 0 1px rgba(139,139,139,.5),inset 1px 4px 6px -2px rgba(0,0,0,.175)}.markdown-body button.rdmd-code-copy:active:before,.markdown-body button.rdmd-code-copy:active:after{opacity:.75}.markdown-body button.rdmd-code-copy:before,.markdown-body button.rdmd-code-copy:after{display:inline-block;font-family:"Font Awesome 6 Pro"}.markdown-body button.rdmd-code-copy:before{content:"";transition:.3s .15s ease}.markdown-body button.rdmd-code-copy:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) scale(0.33);opacity:0 !important;transition:.3s 0s ease}.markdown-body button.rdmd-code-copy_copied{pointer-events:none}.markdown-body button.rdmd-code-copy_copied,.markdown-body button.rdmd-code-copy_copied *{color:green !important;color:var(--md-code-text, green) !important;opacity:1}.markdown-body button.rdmd-code-copy_copied:before{transition:.3s 0s ease;transform:scale(0.33);opacity:0 !important}.markdown-body button.rdmd-code-copy_copied:after{transition:.3s .15s ease;transform:translate(-50%, -50%) scale(1);opacity:1 !important}.markdown-body pre{position:relative}.markdown-body pre>code{background:inherit}.markdown-body pre>code.theme-dark{color:#fff}.markdown-body pre button.rdmd-code-copy{display:inline-block !important;position:absolute;right:0;top:0}.markdown-body pre{overflow:hidden;padding:0}.markdown-body pre>code{display:block !important;overflow:auto;padding:1em;max-height:90vh}.markdown-body pre:hover button.rdmd-code-copy:not(:hover){transition-delay:.4s}.markdown-body pre:not(:hover) button.rdmd-code-copy:not(.rdmd-code-copy_copied):not(:focus){opacity:0 !important}.CodeTabs{color:#333;color:var(--md-code-text, #333);border-radius:var(--md-code-radius, var(--markdown-radius, 3px)) !important;overflow:hidden}.CodeTabs.theme-dark{color:#fff;color:var(--md-code-text, white)}.CodeTabs.theme-dark .CodeTabs-toolbar{background:hsl(202.5,.7218181818%,21.5649019608%);background:var(--md-code-tabs, rgb(54.5935685727, 55.0897328568, 55.3874314273))}.CodeTabs-toolbar{background:hsl(210,11.1114285714%,92.9449019608%);background:var(--md-code-tabs, rgb(235.0104984429, 237.0095, 239.0085015571));display:flex;flex-flow:row nowrap;overflow:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch}.CodeTabs-toolbar::-webkit-scrollbar{display:none}.CodeTabs-toolbar button{white-space:nowrap;transition:.123s ease;-webkit-appearance:none;appearance:none;display:inline-block;line-height:2;padding:.5em 1em;border:none;background:rgba(0,0,0,0);outline:none;color:inherit;font:inherit;font-size:.75em;cursor:pointer}.CodeTabs-toolbar button:focus-visible{outline:3px solid var(--color-focus-ring);outline-offset:-3px}.CodeTabs.CodeTabs_initial .CodeTabs-toolbar button:first-child,.CodeTabs-toolbar button.CodeTabs_active{background:#f6f8fa;background:var(--md-code-background, #f6f8fa);color:#000;color:var(--md-code-text, black);pointer-events:none}.CodeTabs.theme-dark.CodeTabs_initial .CodeTabs-toolbar button:first-child,.CodeTabs.theme-dark .CodeTabs-toolbar button.CodeTabs_active{background:#242e34;background:var(--md-code-background, #242e34);color:#fff;color:var(--md-code-text, white)}.CodeTabs-toolbar button:not(.CodeTabs_active):hover,.CodeTabs-toolbar button:not(.CodeTabs_active):focus{background:rgba(0,0,0,.075)}.CodeTabs pre{border-radius:0 0 var(--md-code-radius, var(--markdown-radius, 3px)) var(--md-code-radius, var(--markdown-radius, 3px)) !important;background:#f6f8fa;background:var(--md-code-background, #f6f8fa);margin-bottom:0}.CodeTabs pre:not(.CodeTabs_active){display:none}.CodeTabs.theme-dark pre{background:#242e34;background:var(--md-code-background, #242e34)}.CodeTabs.CodeTabs_initial pre:first-child{display:block}.callout{--emoji: 1em;--icon-font: var(--fa-style-family, "Font Awesome 6 Pro", FontAwesome);border-top-right-radius:var(--markdown-radius);border-bottom-right-radius:var(--markdown-radius)}.callout.callout{--Callout-bg: var(--background);--Callout-border: var(--border);--Callout-border-radius: 2px;--Callout-title: var(--title, var(--color-text-default, var(--text)));background:var(--Callout-bg);border-radius:var(--Callout-border-radius);border-color:var(--Callout-border);color:var(--text, var(--color-text-default));display:flow-root;padding:1.25rem}.callout.callout_default{--Callout-bg: var(--background, rgb(247.6206896552, 248.3125, 249.0043103448));--Callout-border: var(--border, rgb(138.5227272727, 146.9090909091, 156.2272727273));--Callout-title: var(--title, var(--text, var(--color-text-default)))}[data-color-mode=dark] .callout.callout_default{--Callout-bg: rgba(var(--gray100-rgb), 0.05)}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_default,[data-color-mode=system] .callout.callout_default{--Callout-bg: rgba(var(--gray100-rgb), 0.05)}}.callout.callout_info{--Callout-bg: var(--background, rgba(var(--blue-rgb), 0.1));--Callout-border: var(--border, rgba(var(--blue-rgb), 1));--Callout-title: var(--title, var(--blue20))}[data-color-mode=dark] .callout.callout_info{--Callout-bg: var(--background, rgba(var(--blue-rgb), 0.075));--Callout-title: var(--title, var(--blue90))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_info,[data-color-mode=system] .callout.callout_info{--Callout-bg: var(--background, rgba(var(--blue-rgb), 0.075));--Callout-title: var(--title, var(--blue90))}}.callout.callout_warn,.callout.callout_warning{--Callout-bg: var(--background, rgba(var(--yellow-rgb), 0.1));--Callout-border: var(--border, rgba(var(--yellow-rgb), 1));--Callout-title: var(--title, var(--yellow10))}[data-color-mode=dark] .callout.callout_warn,[data-color-mode=dark] .callout.callout_warning{--Callout-bg: var(--background, rgba(var(--yellow-rgb), 0.075));--Callout-title: var(--title, var(--yellow70))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_warn,[data-color-mode=system] .callout.callout_warn,[data-color-mode=auto] .callout.callout_warning,[data-color-mode=system] .callout.callout_warning{--Callout-bg: var(--background, rgba(var(--yellow-rgb), 0.075));--Callout-title: var(--title, var(--yellow70))}}.callout.callout_ok,.callout.callout_okay,.callout.callout_success{--Callout-bg: var(--background, rgba(var(--green-rgb), 0.1));--Callout-border: var(--border, rgba(var(--green-rgb), 1));--Callout-title: var(--title, var(--green10))}[data-color-mode=dark] .callout.callout_ok,[data-color-mode=dark] .callout.callout_okay,[data-color-mode=dark] .callout.callout_success{--Callout-bg: var(--background, rgba(var(--green-rgb), 0.075));--Callout-title: var(--title, var(--green80))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_ok,[data-color-mode=system] .callout.callout_ok,[data-color-mode=auto] .callout.callout_okay,[data-color-mode=system] .callout.callout_okay,[data-color-mode=auto] .callout.callout_success,[data-color-mode=system] .callout.callout_success{--Callout-bg: var(--background, rgba(var(--green-rgb), 0.075));--Callout-title: var(--title, var(--green80))}}.callout.callout_err,.callout.callout_error{--Callout-bg: var(--background, rgba(var(--red-rgb), 0.1));--Callout-border: var(--border, rgba(var(--red-rgb), 1));--Callout-title: var(--title, var(--red20))}[data-color-mode=dark] .callout.callout_err,[data-color-mode=dark] .callout.callout_error{--Callout-bg: var(--background, rgba(var(--red-rgb), 0.05));--Callout-title: var(--title, var(--red90))}@media(prefers-color-scheme: dark){[data-color-mode=auto] .callout.callout_err,[data-color-mode=system] .callout.callout_err,[data-color-mode=auto] .callout.callout_error,[data-color-mode=system] .callout.callout_error{--Callout-bg: var(--background, rgba(var(--red-rgb), 0.05));--Callout-title: var(--title, var(--red90))}}.callout.callout>*{margin-left:1.25rem}.callout.callout ul,.callout.callout ol{padding-left:1.3em}.callout.callout h3 a,.callout.callout .callout-heading a{color:inherit}.callout.callout hr{border-color:var(--border, var(--markdown-edge, #eee))}.callout.callout blockquote:not(.callout){color:var(--color-text-default, var(--text));border-color:var(--border);border-width:3px;padding:0 0 0 .8em}.callout.callout blockquote:not(.callout):is(h3 *,.callout-heading *){color:inherit}.callout.callout h3,.callout.callout .callout-heading{--markdown-title-weight: 500;color:var(--Callout-title);font-family:var(--markdown-title-font);font-size:1.25em;font-weight:var(--markdown-title-weight, 500);line-height:1.25;margin-bottom:calc(1.25rem*.5);position:relative}.callout.callout h3:only-child,.callout.callout .callout-heading:only-child{margin-bottom:0}.callout.callout h3.empty,.callout.callout .callout-heading.empty{float:left}.callout.callout h3.empty:is(p),.callout.callout .callout-heading.empty:is(p){margin-left:0}.callout.callout h3>*,.callout.callout .callout-heading>*{color:inherit;margin:0}.callout.callout h3 .callout-icon,.callout.callout .callout-heading .callout-icon{margin-left:calc(-1.25rem - .5em)}.callout.callout h3 .callout-icon::before,.callout.callout .callout-heading .callout-icon::before{transform:translate(-50%, -50%)}.callout.callout h3:before,.callout.callout .callout-heading:before{position:absolute;right:100%;width:2.4em;text-align:center;font:normal normal normal 1em/1 var(--icon-font)}.callout.callout .callout-icon{float:left;margin-left:-0.5rem;position:relative}.callout.callout .callout-icon:only-child{float:none}.callout.callout .callout-icon+.heading{color:var(--Callout-title)}.callout.callout .callout-icon+.heading.heading{margin-top:0}.callout.callout>.callout-icon_fa{--fa-primary-color: var(--Callout-title);--fa-secondary-color: var(--Callout-title);margin-top:.25rem}.callout-icon{font-size:var(--emoji, 0);color:var(--icon-color, inherit) !important}.callout-icon::before{content:var(--icon);font-family:var(--icon-font);font-size:var(--icon-size, 1rem);font-weight:var(--icon-weight, 400);position:absolute;top:50%;display:inline-block;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.callout-icon_fa::before,.callout-icon_fa::after{font-family:inherit;font-size:inherit;top:unset;transform:none}.rdmdCallouts--useIconFont .callout{--emoji: unset}.rdmdCallouts--useIconFont .callout_okay{--icon: ""}.rdmdCallouts--useIconFont .callout_info{--icon: ""}.rdmdCallouts--useIconFont .callout_warn{--icon: ""}.rdmdCallouts--useIconFont .callout_error{--icon: ""}.rdmdCallouts--useIconFont .callout_default{--emoji: 1rem}.heading.heading{display:flex;justify-content:flex-start;align-items:center;position:relative}.heading.heading .heading-text{flex:1 100%}.heading.heading .heading-anchor-deprecated{position:absolute;top:0}.heading.heading .heading-anchor{top:-1rem !important}.heading.heading .heading-anchor,.heading.heading .heading-anchor-icon{position:absolute !important;display:inline !important;order:-1;right:100%;top:unset !important;margin-right:-0.8rem;padding:.8rem .2rem .8rem 0 !important;font-size:.8rem !important;text-decoration:none;color:inherit;transform:translateX(-100%);transition:.2s ease}.heading.heading .heading-anchor:hover,.heading.heading .heading-anchor-icon:hover{opacity:1}.heading.heading:not(:hover) .heading-anchor-icon{opacity:0}.callout .heading.heading .heading-anchor-icon{display:none !important}.markdown-body .embed{padding:15px;color:var(--md-code-text, inherit);border-radius:var(--md-code-radius, var(--markdown-radius, 3px));border-radius:3px;background:rgba(0,0,0,0);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);transition:.3s ease}.markdown-body .embed:hover{background:var(--md-code-background, #f6f8fa);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.markdown-body>.embed_hasImg:nth-of-type(odd){margin-right:30px;padding-right:0}.markdown-body>.embed_hasImg:nth-of-type(odd) .embed-link{flex-direction:row-reverse}.markdown-body>.embed_hasImg:nth-of-type(odd) .embed-img{margin-left:.88em;margin-right:-30px;box-shadow:-0.3em .3em .9em -0.3em rgba(0,0,0,.15)}.markdown-body>.embed_hasImg:nth-of-type(even){margin-left:30px;padding-left:0}.markdown-body>.embed_hasImg:nth-of-type(even) .embed-img{margin-left:-30px}.markdown-body .embed:empty{display:none}.markdown-body .embed-media{display:flex;justify-content:center}.markdown-body .embed-media>:only-child{flex:1;margin:-15px;border-radius:0 !important}.markdown-body .embed-link{display:flex;align-items:center;color:var(--markdown-text, #333);text-decoration:none !important}.markdown-body .embed-body{flex:1;line-height:1.3}.markdown-body .embed-body,.markdown-body .embed-body .embed-title{font-size:1.15em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.markdown-body .embed-body .embed-provider{display:block;text-decoration-color:rgba(0,0,0,0) !important;opacity:.88}.markdown-body .embed-body-url{opacity:.75}.markdown-body .embed-provider{font-size:.8em;line-height:1.6;transition:.2 ease}.markdown-body .embed-provider code:only-child{display:block;width:100%;font-size:1.15em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:rgba(0,0,0,0);margin:0;padding:0;font-size:inherit !important}.markdown-body .embed-provider code{opacity:.8}.markdown-body .embed-img{width:5em;max-width:5em;margin:0 .88em 0 0;padding:4px;background:#fff;border:1px solid rgba(0,0,0,.15);border-radius:3px;transition:inherit;box-shadow:.3em .3em .9em -0.3em rgba(0,0,0,.15)}.markdown-body .embed:not(:hover) .embed-img{box-shadow:0 .25em 1em -0.5em rgba(0,0,0,.133)}.markdown-body .embed:hover .embed-img{border:1px solid rgba(0,0,0,.2)}.markdown-body .embed-favicon{width:12px !important;height:12px !important;margin-top:4px;margin-right:6px;margin-bottom:12px}.GlossaryItem-trigger{border-bottom:1px solid #737c83;border-style:dotted;border-top:none;border-left:none;border-right:none;cursor:pointer}.GlossaryItem-tooltip-content{--Glossary-bg: var(--color-bg-page, var(--white));--Glossary-color: var(--color-text-default, var(--gray20));--Glossary-shadow: var( --box-shadow-menu-light, 0 5px 10px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.025), 0 1px 3px rgba(0, 0, 0, 0.025) );background-color:var(--Glossary-bg);border:1px solid var(--color-border-default, rgba(0, 0, 0, 0.1));border-radius:var(--border-radius);box-shadow:var(--Glossary-shadow);color:var(--Glossary-color);font-size:15px;font-weight:400;line-height:1.5;padding:15px;text-align:left;max-width:min(350px,100vw - 20px)}[data-color-mode=dark] .GlossaryItem-tooltip-content{--Glossary-bg: var(--gray15);--Glossary-color: var(--color-text-default, var(--white));--Glossary-shadow: var( --box-shadow-menu-dark, 0 1px 3px rgba(0, 0, 0, 0.025), 0 2px 6px rgba(0, 0, 0, 0.025), 0 5px 10px rgba(0, 0, 0, 0.05) )}@media(prefers-color-scheme: dark){[data-color-mode=auto] .GlossaryItem-tooltip-content{--Glossary-bg: var(--Tooltip-bg, var(--gray0));--Glossary-color: var(--color-text-default, var(--white));--Glossary-shadow: var( --box-shadow-menu-dark, 0 1px 3px rgba(0, 0, 0, 0.025), 0 2px 6px rgba(0, 0, 0, 0.025), 0 5px 10px rgba(0, 0, 0, 0.05) )}}.GlossaryItem-term{font-style:italic}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}:root{--markdown-title: inherit}body{-webkit-font-smoothing:antialiased}.field-description,.markdown-body{color:var(--markdown-text);font-family:var(--markdown-font);line-height:var(--markdown-line-height);position:relative;text-size-adjust:100%;word-wrap:break-word;font-size:var(--markdown-font-size, 14px)}.field-description::before,.field-description::after,.markdown-body::before,.markdown-body::after{content:"";display:table}.field-description::after,.markdown-body::after{clear:both}.field-description ul,.markdown-body ul{list-style:initial}.field-description .anchor,.markdown-body .anchor{float:left;line-height:1;margin-left:-20px;padding-right:4px}.field-description .anchor:focus,.markdown-body .anchor:focus{outline:0}.field-description h1:hover .anchor,.field-description h2:hover .anchor,.field-description h3:hover .anchor,.field-description h4:hover .anchor,.field-description h5:hover .anchor,.field-description h6:hover .anchor,.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.field-description details,.markdown-body details{display:block}.field-description summary,.markdown-body summary{display:list-item}.field-description a,.markdown-body a{transition:.15s ease}.field-description a:hover,.markdown-body a:hover{text-decoration:underline}.field-description a:active,.field-description a:hover,.markdown-body a:active,.markdown-body a:hover{outline-width:0}.field-description a:not([href]),.markdown-body a:not([href]){color:inherit;text-decoration:none}.field-description strong,.markdown-body strong{font-weight:inherit;font-weight:bolder}.field-description h1,.markdown-body h1{font-size:2em;margin:.67em 0}.field-description hr,.markdown-body hr{background:rgba(0,0,0,0);border-bottom:1px solid var(--markdown-edge, #dfe2e5);border-width:0 0 1px;box-sizing:content-box;height:0;margin:var(--markdown-spacing, 15px) 0;overflow:hidden}.field-description hr::before,.field-description hr::after,.markdown-body hr::before,.markdown-body hr::after{content:"";display:table}.field-description hr::after,.markdown-body hr::after{clear:both}.field-description>h1,.field-description>h2,.field-description>h3,.field-description>h4,.field-description>h5,.field-description>h6,.field-description>hr,.markdown-body>h1,.markdown-body>h2,.markdown-body>h3,.markdown-body>h4,.markdown-body>h5,.markdown-body>h6,.markdown-body>hr{clear:both}.field-description input,.markdown-body input{font:inherit;margin:0}.field-description input,.markdown-body input{overflow:visible}.field-description [type=checkbox],.markdown-body [type=checkbox]{box-sizing:border-box;padding:0}.field-description *,.markdown-body *{box-sizing:border-box}.field-description input,.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.field-description strong,.markdown-body strong{font-weight:600}.field-description details summary,.markdown-body details summary{cursor:pointer}.field-description h1,.field-description h2,.field-description h3,.field-description h4,.field-description h5,.field-description h6,.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{color:var(--markdown-title);font-family:var(--markdown-title-font);font-size:var(--markdown-title-size);font-weight:var(--markdown-title-weight, 600);line-height:1.25;margin-bottom:var(--markdown-title-marginBottom, var(--markdown-spacing, 15px));margin-top:var(--markdown-title-marginTop, 1em)}.field-description h1:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h2:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h3:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h4:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h5:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.field-description h6:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h1:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h2:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h3:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h4:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h5:has(+h1,+h2,+h3,+h4,+h5,+h6,+p),.markdown-body h6:has(+h1,+h2,+h3,+h4,+h5,+h6,+p){margin-bottom:calc(var(--markdown-spacing, 15px)/2)}.field-description :is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6),.markdown-body :is(h1,h2,h3,h4,h5,h6)+:is(h1,h2,h3,h4,h5,h6){margin-top:0}.field-description h1,.markdown-body h1{font-size:1.75em;font-size:var(--markdown-title-size, 1.75em)}.field-description h2,.markdown-body h2{font-size:1.5em;font-size:var(--markdown-title-size, 1.5em)}.field-description h1,.markdown-body h1{font-weight:700;font-weight:var(--markdown-title-weight, 700)}.field-description h2,.markdown-body h2{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h3,.field-description h4,.markdown-body h3,.markdown-body h4{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h3,.markdown-body h3{font-size:1.25em;font-size:var(--markdown-title-size, 1.25em)}.field-description h4,.markdown-body h4{font-size:1em;font-size:var(--markdown-title-size, 1em)}.field-description h5,.field-description h6,.markdown-body h5,.markdown-body h6{font-weight:600;font-weight:var(--markdown-title-weight, 600)}.field-description h5,.markdown-body h5{font-size:.875em;font-size:var(--markdown-title-size, 0.875em)}.field-description h6,.markdown-body h6{color:var(--markdown-title, #6a737d);font-size:.85em;font-size:var(--markdown-title-size, 0.85em)}.field-description p,.field-description .p,.markdown-body p,.markdown-body .p{margin-bottom:10px;margin-top:0}.field-description blockquote,.markdown-body blockquote{margin:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{margin-bottom:0;margin-top:0;padding-left:0}.field-description ol ol,.field-description ul ol,.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-alpha}.field-description ol ol ol,.field-description ol ul ol,.field-description ul ol ol,.field-description ul ul ol,.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-roman}.field-description dd,.markdown-body dd{margin-left:0}.field-description input::-webkit-inner-spin-button,.field-description input::-webkit-outer-spin-button,.markdown-body input::-webkit-inner-spin-button,.markdown-body input::-webkit-outer-spin-button{appearance:none;appearance:none;margin:0}.field-description>:first-child,.markdown-body>:first-child{margin-top:0 !important}.field-description>:nth-child(1 of :not(style)),.markdown-body>:nth-child(1 of :not(style)){margin-top:0 !important}.field-description>:last-child,.markdown-body>:last-child{margin-bottom:0 !important}.field-description blockquote,.field-description dl,.field-description p,.field-description pre,.field-description table,.markdown-body blockquote,.markdown-body dl,.markdown-body p,.markdown-body pre,.markdown-body table{margin-bottom:var(--markdown-spacing, 15px);margin-top:0}.field-description h1,.field-description h2,.field-description h3,.field-description h4,.field-description h5,.field-description h6,.field-description figcaption,.field-description ol,.field-description ul,.field-description p,.field-description table,.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6,.markdown-body figcaption,.markdown-body ol,.markdown-body ul,.markdown-body p,.markdown-body table{--markdown-img-margin: 0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{margin-bottom:round(1.3333em,1px);margin-top:0}.field-description ol ol,.field-description ol ul,.field-description ul ol,.field-description ul ul,.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-bottom:0;margin-top:round(.5333em,1px)}.field-description blockquote,.markdown-body blockquote{border-left:.225em solid #dfe2e5;color:#6a737d;display:block;padding:0 1em}.field-description blockquote:has(img,figure,.Image),.markdown-body blockquote:has(img,figure,.Image){display:flow-root}.field-description blockquote>:first-child,.markdown-body blockquote>:first-child{margin-top:0}.field-description blockquote>:last-child,.markdown-body blockquote>:last-child{margin-bottom:0}.field-description ol,.field-description ul,.markdown-body ol,.markdown-body ul{padding-left:2em}.field-description li,.markdown-body li{clear:both;word-wrap:break-all}.field-description li>p,.markdown-body li>p{margin-top:1em}.field-description li+li,.markdown-body li+li{margin-top:round(.5333em,1px)}.field-description dl,.markdown-body dl{padding:0}.field-description dl dt,.markdown-body dl dt{font-size:1em;font-style:italic;font-weight:600;margin-top:1em;padding:0}.field-description dl dd,.markdown-body dl dd{margin-bottom:1em;padding:0 1em}.field-description .img,.markdown-body .img{margin:round(var(--markdown-img-margin, var(--markdown-spacing, 15px))*1.33,1px) 0}.field-description :checked+.radio-label,.markdown-body :checked+.radio-label{border-color:var(--project-color-primary);position:relative;z-index:1}.field-description .task-list-item,.markdown-body .task-list-item{list-style-type:none}.field-description .task-list-item+.task-list-item,.markdown-body .task-list-item+.task-list-item{margin-top:3px}.field-description .task-list-item input,.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.field-description p.blank-line,.markdown-body p.blank-line{height:1.5em}.field-description blockquote h1:last-child,.field-description blockquote h2:last-child,.markdown-body blockquote h1:last-child,.markdown-body blockquote h2:last-child{border-bottom:0}.field-description>*,.markdown-body>*{margin-bottom:var(--markdown-spacing, 15px);margin-top:var(--markdown-spacing, 15px)}.field-description .task-list-item input,.markdown-body .task-list-item input{margin:0 .5em .25em -1.25em}.field-description a[href],.field-description a:not([href=""]),.markdown-body a[href],.markdown-body a:not([href=""]){text-decoration:underline}
395
395
 
396
396
  /*# sourceMappingURL=main.css.map*/