@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Maiden+Orange&family=Vollkorn:ital,wght@0,400;0,700;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.min.css");
:root {
  --bg-primary: #fdf6e3;
  --bg-secondary: #eee8d5;
  --bg-surface: #f5f0e1;
  --bg-primary-translucent: rgba(253, 246, 227, 0.85);
  --text-primary: #002b36;
  --text-secondary: #586e75;
  --text-muted: #657b83;
  --accent-yellow: #b58900;
  --accent-orange: #cb4b16;
  --accent-red: #dc322f;
  --accent-magenta: #d33682;
  --accent-violet: #6c71c4;
  --accent-blue: #268bd2;
  --accent-cyan: #2aa198;
  --accent-green: #859900;
  --border-primary: #d8d0c0;
  --border-subtle: #eee8d5;
  --code-bg: #f8f4eb;
  --code-border: #e0d8c8;
  --code-text: #586e75;
  --code-keyword: #268bd2;
  --code-keywordtype: #dc322f;
  --code-keywordflow: #859900;
  --code-comment: #93a1a1;
  --code-preprocessor: #cb4b16;
  --code-stringliteral: #6c71c4;
  --code-charliteral: #2aa198;
  --code-link: #268bd2;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --sidebar-width: 1fr;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --font-sans: "Crimson Text", Georgia, "Times New Roman", serif;
  --font-heading: "Maiden Orange", cursive;
  --font-serif: "Vollkorn", Palatino, "Book Antiqua", serif;
  --font-mono: "Hack", "Cascadia Code", Consolas, Monaco,
    "Ubuntu Mono", Menlo, monospace;
  --directive-note-bg: rgba(38, 139, 210, 0.06);
  --directive-warning-bg: rgba(220, 50, 47, 0.06);
  --directive-todo-bg: rgba(203, 75, 22, 0.06);
  --directive-bug-bg: rgba(211, 54, 130, 0.06);
  --directive-deprecated-bg: rgba(101, 123, 131, 0.06);
  --directive-violet-bg: rgba(108, 113, 196, 0.06);
  --directive-test-bg: rgba(42, 161, 152, 0.06);
  --accent-blue-light: rgba(38, 139, 210, 0.25);
  --menu-bg: #eee8d5;
  --menu-hover-bg: #e6dfc8;
  --menu-text: #002b36;
  --menu-border: #d8d0c0;
  --search-bg: #ffffff;
  --search-border: #d8d0c0;
  --search-focus-border: #268bd2;
  --toc-bg: #f5f0e1;
  --toc-border: #e0d8c8;
  --toc-active: #268bd2;
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) {
    --bg-primary: #002b36;
    --bg-secondary: #073642;
    --bg-surface: #0a3d4a;
    --bg-primary-translucent: rgba(0, 43, 54, 0.85);
    --text-primary: #fdf6e3;
    --text-secondary: #93a1a1;
    --text-muted: #839496;
    --border-primary: #1a4f5e;
    --border-subtle: #073642;
    --code-bg: #073642;
    --code-border: #1a4f5e;
    --code-text: #93a1a1;
    --code-comment: #586e75;
    --code-preprocessor: #cb4b16;
    --gray-50: #1c1917;
    --gray-100: #292524;
    --gray-200: #44403c;
    --gray-300: #57534e;
    --gray-400: #78716c;
    --gray-500: #a8a29e;
    --gray-600: #d6d3d1;
    --gray-700: #e7e5e4;
    --gray-800: #f5f5f4;
    --gray-900: #fafaf9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
    --directive-note-bg: rgba(38, 139, 210, 0.1);
    --directive-warning-bg: rgba(220, 50, 47, 0.1);
    --directive-todo-bg: rgba(203, 75, 22, 0.1);
    --directive-bug-bg: rgba(211, 54, 130, 0.1);
    --directive-deprecated-bg: rgba(101, 123, 131, 0.1);
    --directive-violet-bg: rgba(108, 113, 196, 0.1);
    --directive-test-bg: rgba(42, 161, 152, 0.1);
    --accent-blue-light: rgba(38, 139, 210, 0.35);
    --code-keyword: #5eaae8;
    --code-keywordtype: #e8645e;
    --code-keywordflow: #a8b800;
    --code-stringliteral: #8a8de8;
    --code-charliteral: #45c4ba;
    --code-link: #5eaae8;
    --menu-bg: #073642;
    --menu-hover-bg: #0a4a5a;
    --menu-text: #fdf6e3;
    --menu-border: #1a4f5e;
    --search-bg: #0a3d4a;
    --search-border: #1a4f5e;
    --search-focus-border: #268bd2;
    --toc-bg: #073642;
    --toc-border: #1a4f5e;
    --toc-active: #5eaae8;
  }
}
html.dark {
  --bg-primary: #002b36;
  --bg-secondary: #073642;
  --bg-surface: #0a3d4a;
  --bg-primary-translucent: rgba(0, 43, 54, 0.85);
  --text-primary: #fdf6e3;
  --text-secondary: #93a1a1;
  --text-muted: #839496;
  --border-primary: #1a4f5e;
  --border-subtle: #073642;
  --code-bg: #073642;
  --code-border: #1a4f5e;
  --code-text: #93a1a1;
  --code-comment: #586e75;
  --code-preprocessor: #cb4b16;
  --gray-50: #1c1917;
  --gray-100: #292524;
  --gray-200: #44403c;
  --gray-300: #57534e;
  --gray-400: #78716c;
  --gray-500: #a8a29e;
  --gray-600: #d6d3d1;
  --gray-700: #e7e5e4;
  --gray-800: #f5f5f4;
  --gray-900: #fafaf9;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
  --directive-note-bg: rgba(38, 139, 210, 0.1);
  --directive-warning-bg: rgba(220, 50, 47, 0.1);
  --directive-todo-bg: rgba(203, 75, 22, 0.1);
  --directive-bug-bg: rgba(211, 54, 130, 0.1);
  --directive-deprecated-bg: rgba(101, 123, 131, 0.1);
  --directive-violet-bg: rgba(108, 113, 196, 0.1);
  --directive-test-bg: rgba(42, 161, 152, 0.1);
  --accent-blue-light: rgba(38, 139, 210, 0.35);
  --code-keyword: #5eaae8;
  --code-keywordtype: #e8645e;
  --code-keywordflow: #a8b800;
  --code-stringliteral: #8a8de8;
  --code-charliteral: #45c4ba;
  --code-link: #5eaae8;
  --menu-bg: #073642;
  --menu-hover-bg: #0a4a5a;
  --menu-text: #fdf6e3;
  --menu-border: #1a4f5e;
  --search-bg: #0a3d4a;
  --search-border: #1a4f5e;
  --search-focus-border: #268bd2;
  --toc-bg: #073642;
  --toc-border: #1a4f5e;
  --toc-active: #5eaae8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent-blue-light);
  color: var(--text-primary);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-primary);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-primary) var(--bg-secondary);
}

body {
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.ttc {
  position: absolute;
  display: none;
}

#powerTip {
  cursor: default;
  white-space: nowrap;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  font-size: 0.84rem;
  max-width: 80%;
  opacity: 0.95;
  padding: 0.75rem 1rem;
  position: absolute;
  z-index: 2147483647;
}

#powerTip div.ttdoc {
  color: var(--text-muted);
  font-style: italic;
}

#powerTip div.ttname a {
  font-weight: bold;
}

#powerTip div.ttname {
  font-weight: bold;
}

#powerTip div.ttdeci {
  color: var(--accent-green);
}

#powerTip div {
  margin: 0;
  padding: 0;
  font: 0.84rem/1.33 var(--font-sans);
}

#powerTip:before,
#powerTip:after {
  content: "";
  position: absolute;
  margin: 0;
}

#powerTip.n:after,
#powerTip.n:before,
#powerTip.s:after,
#powerTip.s:before,
#powerTip.w:after,
#powerTip.w:before,
#powerTip.e:after,
#powerTip.e:before,
#powerTip.ne:after,
#powerTip.ne:before,
#powerTip.se:after,
#powerTip.se:before,
#powerTip.nw:after,
#powerTip.nw:before,
#powerTip.sw:after,
#powerTip.sw:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}

#powerTip.n:after,
#powerTip.s:after,
#powerTip.w:after,
#powerTip.e:after,
#powerTip.nw:after,
#powerTip.ne:after,
#powerTip.sw:after,
#powerTip.se:after {
  border-color: rgba(255, 255, 255, 0);
}

#powerTip.n:before,
#powerTip.s:before,
#powerTip.w:before,
#powerTip.e:before,
#powerTip.nw:before,
#powerTip.ne:before,
#powerTip.sw:before,
#powerTip.se:before {
  border-color: rgba(128, 128, 128, 0);
}

#powerTip.n:after,
#powerTip.n:before,
#powerTip.ne:after,
#powerTip.ne:before,
#powerTip.nw:after,
#powerTip.nw:before {
  top: 100%;
}

#powerTip.n:after,
#powerTip.ne:after,
#powerTip.nw:after {
  border-top-color: var(--bg-primary);
  border-width: 10px;
  margin: 0 -10px;
}

#powerTip.n:before {
  border-top-color: var(--border-primary);
  border-width: 11px;
  margin: 0 -11px;
}

#powerTip.n:after,
#powerTip.n:before {
  left: 50%;
}

#powerTip.nw:after,
#powerTip.nw:before {
  right: 14px;
}

#powerTip.ne:after,
#powerTip.ne:before {
  left: 14px;
}

#powerTip.s:after,
#powerTip.s:before,
#powerTip.se:after,
#powerTip.se:before,
#powerTip.sw:after,
#powerTip.sw:before {
  bottom: 100%;
}

#powerTip.s:after,
#powerTip.se:after,
#powerTip.sw:after {
  border-bottom-color: var(--bg-primary);
  border-width: 10px;
  margin: 0 -10px;
}

#powerTip.s:before,
#powerTip.se:before,
#powerTip.sw:before {
  border-bottom-color: var(--border-primary);
  border-width: 11px;
  margin: 0 -11px;
}

#powerTip.s:after,
#powerTip.s:before {
  left: 50%;
}

#powerTip.sw:after,
#powerTip.sw:before {
  right: 14px;
}

#powerTip.se:after,
#powerTip.se:before {
  left: 14px;
}

#powerTip.e:after,
#powerTip.e:before {
  left: 100%;
}

#powerTip.e:after {
  border-left-color: var(--bg-primary);
  border-width: 10px;
  top: 50%;
  margin-top: -10px;
}

#powerTip.e:before {
  border-left-color: var(--border-primary);
  border-width: 11px;
  top: 50%;
  margin-top: -11px;
}

#powerTip.w:after,
#powerTip.w:before {
  right: 100%;
}

#powerTip.w:after {
  border-right-color: var(--bg-primary);
  border-width: 10px;
  top: 50%;
  margin-top: -10px;
}

#powerTip.w:before {
  border-right-color: var(--border-primary);
  border-width: 11px;
  top: 50%;
  margin-top: -11px;
}

pre {
  font-family: var(--font-mono);
}

.code {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
}

span.keyword {
  color: var(--code-keyword);
}
span.keywordtype {
  color: var(--code-keywordtype);
}
span.keywordflow {
  color: var(--code-keywordflow);
}
span.comment {
  color: var(--code-comment);
}
span.preprocessor {
  color: var(--code-preprocessor);
}
span.stringliteral {
  color: var(--code-stringliteral);
}
span.charliteral {
  color: var(--code-charliteral);
}
span.vhdldigit {
  color: #ff00ff;
}
span.vhdlchar {
  color: var(--text-primary);
}
span.vhdlkeyword {
  color: #700070;
}
span.vhdllogic {
  color: var(--accent-red);
}
span.lineno {
  padding-right: 4px;
  text-align: right;
  border-right: 1px solid var(--border-primary);
  background-color: var(--code-bg);
  color: var(--text-muted);
  white-space: pre;
}
span.lineno.a {
  background-color: var(--bg-secondary);
}
span.lineno.a:hover {
  background-color: var(--border-primary);
}

.fragment {
  text-align: left;
  direction: ltr;
  overflow-x: auto;
  overflow-y: hidden;
}

pre.fragment {
  border: 1px solid var(--code-border);
  background-color: var(--code-bg);
  padding: 1rem;
  margin: 0.5rem 0;
  overflow: auto;
  word-wrap: break-word;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: var(--font-mono);
  border-radius: var(--radius-md);
  color: var(--code-text);
}

div.fragment {
  padding: 1rem;
  margin: 0.5rem 0;
  background-color: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: var(--radius-md);
}
div.line {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--code-text);
  font-weight: 500;
  line-height: 1.5;
  white-space: pre-wrap;
  text-wrap: unrestricted;
  text-indent: -53px;
  padding-left: 53px;
  padding-bottom: 0;
  margin: 0;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}
div.line:after {
  content: "\a";
  white-space: pre;
}
div.line.glow {
  background-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.lineno {
  user-select: none;
}

.code-details {
  margin: 0.5rem 0;
}
.code-details summary {
  cursor: pointer;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--code-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: background-color var(--transition-fast), border-radius var(--transition-fast);
  user-select: none;
}
.code-details summary:hover {
  background-color: var(--bg-surface);
}
.code-details summary::marker, .code-details summary::-webkit-details-marker {
  display: none;
}
.code-details summary::before {
  content: "▸ ";
  display: inline;
  font-size: 0.75em;
  transition: transform var(--transition-fast);
}
.code-details[open] summary {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: none;
}
.code-details[open] summary::before {
  content: "▾ ";
}
.code-details .fragment {
  animation: details-open var(--transition-normal) ease;
}
.code-details[open] .fragment {
  margin-top: 0;
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

@keyframes details-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--code-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-fast), background-color var(--transition-fast);
}
.copy-btn:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

div.fragment {
  position: relative;
}
div.fragment:hover .copy-btn {
  opacity: 1;
}

a.code,
a.code:visited,
a.line,
a.line:visited {
  color: var(--code-link);
}

a.codeRef,
a.codeRef:visited,
a.lineRef,
a.lineRef:visited {
  color: var(--code-link);
}

body,
input,
textarea,
option,
select {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga", "tnum", "case", "calt", "zero", "ss01", "locl";
}

p,
input,
textarea,
select,
option {
  font-size: inherit;
}

i,
.i,
em {
  font-style: italic;
}

b,
.b,
strong {
  font-weight: 700;
}

h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
}

h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
}

h5,
h6 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 1rem 0 0.5rem;
}

code {
  font-family: var(--font-mono);
}

a {
  color: var(--accent-blue);
  font-size: inherit;
  text-decoration: none;
  border-bottom: none;
  transition: border-color var(--transition-fast);
}
a:hover {
  border-bottom: 1px solid var(--accent-blue);
}
a:visited {
  color: var(--accent-violet);
}

.contents a:visited {
  color: var(--accent-violet);
}

a:hover {
  text-decoration: none;
}

.contents a.qindexHL:visited {
  color: #ffffff;
}

a.el {
  font-weight: bold;
}

a.elRef {
  text-decoration: underline;
}

a.code,
a.code:visited,
a.line,
a.line:visited {
  color: var(--accent-cyan);
}

a.codeRef,
a.codeRef:visited,
a.lineRef,
a.lineRef:visited {
  color: var(--accent-cyan);
}

blockquote {
  background: var(--bg-surface);
  border-left: 4px solid var(--accent-violet);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5em 0;
  padding: 0.75rem 1rem;
}
@media (max-width: 684px) {
  blockquote {
    margin: 0.75rem 0;
    padding: 0.75rem;
  }
}
blockquote p:first-of-type {
  margin-top: 0;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}

.title_area {
  font-size: 1.75rem;
  font-weight: 700;
}

.title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.groupheader {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.memItemLeft {
  color: var(--accent-orange);
}

table.memberdecls {
  border-spacing: 0;
  padding: 0;
}

.memberdecls td,
.fieldtable tr {
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.memberdecls td.glow,
.fieldtable tr.glow {
  background-color: var(--accent-yellow);
  box-shadow: 0 0 15px var(--accent-yellow);
}

.mdescLeft,
.mdescRight,
.memItemLeft,
.memItemRight,
.memTemplItemLeft,
.memTemplItemRight,
.memTemplParams {
  background-color: var(--bg-secondary);
  border: none;
  margin: 4px;
  padding: 1px 0 0 8px;
}

.mdescLeft,
.mdescRight {
  padding: 0 8px 4px 8px;
  color: var(--text-muted);
}

.memSeparator {
  border-bottom: 1px solid var(--border-primary);
  line-height: 1px;
  margin: 0;
  padding: 0;
}

.memItemLeft,
.memTemplItemLeft {
  white-space: nowrap;
}

.memItemRight,
.memTemplItemRight {
  width: 100%;
}

.memTemplParams {
  color: var(--accent-cyan);
  white-space: nowrap;
  font-size: 80%;
}

.memtitle {
  padding: 8px;
  border-top: 1px solid var(--border-primary);
  border-left: 1px solid var(--border-primary);
  border-right: 1px solid var(--border-primary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: -1px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 300;
  float: left;
}

.permalink {
  font-size: 65%;
  display: inline-block;
  vertical-align: middle;
}

.memtemplate {
  font-size: 80%;
  color: var(--accent-violet);
  font-weight: bold;
  margin-left: 9px;
}

.memnav {
  background-color: var(--accent-violet);
  border: 1px solid var(--border-primary);
  text-align: center;
  margin: 2px;
  margin-right: 15px;
  padding: 2px;
}

.mempage {
  width: 100%;
}

.memitem {
  padding: 0;
  margin-bottom: 10px;
  margin-right: 5px;
  transition: box-shadow var(--transition-normal);
  display: table !important;
  width: 100%;
}

.memitem.glow {
  box-shadow: 0 0 15px var(--accent-magenta);
}

.memname {
  font-weight: 400;
  margin-left: 6px;
}

.memname td {
  vertical-align: bottom;
}

.memproto,
dl.reflist dt {
  border: 1px solid var(--border-primary);
  border-bottom: none;
  padding: 6px 0;
  color: var(--text-primary);
  font-weight: bold;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.overload {
  font-family: var(--font-mono);
  font-size: 65%;
}

.memdoc,
dl.reflist dd {
  border: 1px solid var(--border-primary);
  border-top-width: 0;
  padding: 6px 10px 2px 10px;
  background-color: var(--bg-primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
}

dl.reflist dt {
  padding: 5px;
}

dl.reflist dd {
  margin: 0 0 10px 0;
  padding: 5px;
}

.paramkey {
  text-align: right;
}

.paramtype {
  white-space: nowrap;
}

.paramname {
  color: var(--accent-green);
  white-space: nowrap;
}

.paramname em {
  font-style: normal;
}

.paramname code {
  line-height: 14px;
}

.params,
.retval,
.exception,
.tparams {
  margin-left: 0;
  padding-left: 0;
}

.params .paramname,
.retval .paramname,
.tparams .paramname,
.exception .paramname {
  font-weight: bold;
  vertical-align: top;
}

.params .paramtype,
.tparams .paramtype {
  font-style: italic;
  vertical-align: top;
}

.params .paramdir,
.tparams .paramdir {
  font-family: var(--font-mono);
  vertical-align: top;
}

table.mlabels {
  border-spacing: 0;
}

td.mlabels-left {
  width: 100%;
  padding: 0;
}

td.mlabels-right {
  vertical-align: bottom;
  padding: 0;
  white-space: nowrap;
}

span.mlabels {
  margin-left: 8px;
}

span.mlabel {
  background-color: var(--accent-red);
  border: 1px solid var(--accent-orange);
  color: var(--bg-primary);
  margin-right: 4px;
  padding: 2px 6px;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
}

.outlink {
  color: var(--accent-orange);
}

div.directory {
  margin: 10px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.directory table {
  border-collapse: collapse;
}

.directory td {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.directory td.entry {
  white-space: nowrap;
  padding-right: 6px;
  padding-top: 3px;
}

.directory td.entry a {
  outline: none;
}

.directory td.entry a img {
  border: none;
}

.directory td.desc {
  width: 100%;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 3px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.directory tr.even {
  padding-left: 6px;
  background-color: var(--bg-secondary);
}

.directory img {
  vertical-align: -30%;
}

.directory .levels {
  white-space: nowrap;
  width: 100%;
  text-align: right;
  font-size: 0.84rem;
}

.directory .levels span {
  cursor: pointer;
  padding-left: 2px;
  padding-right: 2px;
  color: var(--accent-violet);
}

.arrow {
  color: var(--accent-violet);
  user-select: none;
  cursor: pointer;
  font-size: 80%;
  display: inline-block;
  width: 16px;
  height: 22px;
}

.icon {
  font-family: Arial, Helvetica;
  font-weight: bold;
  font-size: 12px;
  height: 14px;
  width: 16px;
  display: inline-block;
  background-color: var(--accent-blue);
  color: white;
  text-align: center;
  border-radius: var(--radius-sm);
  margin-left: 2px;
  margin-right: 2px;
}

.icona {
  width: 24px;
  height: 22px;
  display: inline-block;
}

.iconfopen {
  width: 24px;
  height: 18px;
  margin-bottom: 4px;
  background-image: url("folderopen.png");
  background-position: 0px -4px;
  background-repeat: repeat-y;
  vertical-align: top;
  display: inline-block;
}

.iconfclosed {
  width: 24px;
  height: 18px;
  margin-bottom: 4px;
  background-image: url("folderclosed.png");
  background-position: 0px -4px;
  background-repeat: repeat-y;
  vertical-align: top;
  display: inline-block;
}

.icondoc {
  width: 24px;
  height: 18px;
  margin-bottom: 4px;
  background-image: url("doc.png");
  background-position: 0px -4px;
  background-repeat: repeat-y;
  vertical-align: top;
  display: inline-block;
}

table.directory {
  font: 400 14px var(--font-sans);
}

table.fieldtable {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0.5rem 0;
}
table.fieldtable th {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-primary);
}
table.fieldtable td {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border-subtle);
}
table.fieldtable td.fieldname {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent-green);
  white-space: nowrap;
  width: 1%;
}
table.fieldtable td.fielddoc {
  color: var(--text-secondary);
}
table.fieldtable tr:last-child td {
  border-bottom: none;
}

table.markdownTable {
  border-collapse: collapse;
  width: auto;
  margin: 1rem 0;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}
table.markdownTable th,
table.markdownTable td {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--border-subtle);
}
table.markdownTable th {
  background: var(--bg-secondary);
  font-weight: 600;
  text-align: left;
}
table.markdownTable tr.markdownTableRowOdd {
  background: var(--bg-primary);
}
table.markdownTable tr.markdownTableRowEven {
  background: var(--bg-surface);
}

div.toc {
  background: var(--toc-bg);
  border: 1px solid var(--toc-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
  float: none;
  width: auto;
  max-width: 30rem;
}
div.toc h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
}
div.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
div.toc ul ul {
  padding-left: 1rem;
  border-left: 1px solid var(--toc-border);
  margin-top: 0.25rem;
}
div.toc li {
  margin: 0.125rem 0;
}
div.toc li.level1 > a {
  font-weight: 500;
}
div.toc a {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
div.toc a:hover {
  color: var(--toc-active);
  background: rgba(38, 139, 210, 0.06);
  border-bottom: none;
}
div.toc a:visited {
  color: var(--text-secondary);
}

p.definition {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

p.reference {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.headertitle .title {
  font-family: var(--font-heading);
  font-weight: 400;
}

.formulaDsp {
  margin: 1rem 0;
  text-align: center;
}

html {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

html {
  min-height: 100vh;
}

body {
  min-height: 100vh;
}

.grid-contents {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: auto 20fr 20fr 20fr var(--sidebar-width);
  grid-template-areas: "top    top    top    top    top" ".      main   main   main   sidebar" "foot   foot   foot   foot   foot";
}

#top {
  grid-area: top;
}

#doc-content {
  grid-area: main;
  min-width: 0;
  padding: var(--space-4) var(--space-5);
}

#side-nav {
  grid-area: sidebar;
}

.footer,
#nav-path {
  grid-area: foot;
}

.contents,
.PageDoc {
  max-width: 75rem;
}

.summary {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: var(--space-4);
}
.summary a {
  display: flex;
  white-space: nowrap;
}

#doc-content {
  height: auto !important;
  overflow: visible !important;
  margin-left: 0 !important;
}

.title_area {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: var(--bg-primary-translucent);
  border-bottom: 1px solid var(--border-subtle);
  height: 56px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.dark-mode-toggle {
  margin-left: auto;
  padding: 0.375rem 0.5rem;
  background: transparent;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.dark-mode-toggle:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

#main-nav {
  background: var(--menu-bg);
  border-bottom: 1px solid var(--menu-border);
  padding: 0 var(--space-4);
}

.main-menu-btn {
  display: none;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--menu-text);
  cursor: pointer;
  border: none;
  background: none;
}
.main-menu-btn .main-menu-btn-icon {
  display: inline-block;
  width: 1rem;
  height: 2px;
  background: var(--menu-text);
  position: relative;
}
.main-menu-btn .main-menu-btn-icon::before, .main-menu-btn .main-menu-btn-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--menu-text);
  left: 0;
}
.main-menu-btn .main-menu-btn-icon::before {
  top: -5px;
}
.main-menu-btn .main-menu-btn-icon::after {
  top: 5px;
}

#main-menu-state {
  display: none;
}

ul.sm-dox {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
ul.sm-dox li {
  position: relative;
}
ul.sm-dox li a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--menu-text);
  text-decoration: none;
  border-bottom: none;
  white-space: nowrap;
  transition: background-color var(--transition-fast);
}
ul.sm-dox li a:hover {
  background: var(--menu-hover-bg);
  border-bottom: none;
}
ul.sm-dox li a.current, ul.sm-dox li a.highlighted {
  color: var(--accent-blue);
  font-weight: 500;
}
ul.sm-dox li a .sub-arrow {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.7em;
}
ul.sm-dox li a .sub-arrow::after {
  content: "▾";
}
ul.sm-dox li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 12rem;
  background: var(--menu-bg);
  border: 1px solid var(--menu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-1) 0;
  list-style: none;
}
ul.sm-dox li ul li a {
  padding: 0.375rem 1rem;
  font-size: 0.84rem;
}
ul.sm-dox li ul ul {
  top: 0;
  left: 100%;
}
ul.sm-dox li:hover > ul {
  display: block;
}

.sm-dox a .sub-arrow {
  background: none;
  border: none;
  width: auto;
  height: auto;
  overflow: visible;
}

#MSearchBox {
  display: inline-flex;
  align-items: center;
  background: var(--search-bg);
  border: 1px solid var(--search-border);
  border-radius: var(--radius-md);
  padding: 0.25rem 0.5rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
#MSearchBox:focus-within, #MSearchBox.MSearchBoxActive {
  border-color: var(--search-focus-border);
  box-shadow: 0 0 0 2px rgba(38, 139, 210, 0.2);
}
#MSearchBox .left {
  display: flex;
  align-items: center;
}
#MSearchBox #MSearchSelect {
  display: inline-block;
  width: 20px;
  cursor: pointer;
}
#MSearchBox #MSearchField {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--text-primary);
  padding: 0.125rem 0.25rem;
  outline: none;
  width: 10rem;
}
#MSearchBox #MSearchField::placeholder {
  color: var(--text-muted);
}
#MSearchBox .right {
  display: flex;
  align-items: center;
}
#MSearchBox #MSearchClose {
  display: flex;
  align-items: center;
}
#MSearchBox #MSearchClose img {
  width: 14px;
  height: 14px;
}

#MSearchSelectWindow {
  background: var(--menu-bg);
  border: 1px solid var(--menu-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-1) 0;
  z-index: 100;
}
#MSearchSelectWindow a.SelectItem {
  display: block;
  padding: 0.375rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--menu-text);
  text-decoration: none;
  border-bottom: none;
}
#MSearchSelectWindow a.SelectItem:hover {
  background: var(--menu-hover-bg);
  border-bottom: none;
}
#MSearchSelectWindow a.SelectItem .SelectionMark {
  margin-right: 0.5rem;
}

#MSearchResultsWindow {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
#MSearchResultsWindow .SRPage {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  padding: var(--space-2);
}
#MSearchResultsWindow .SRStatus {
  color: var(--text-muted);
  padding: var(--space-2);
  text-align: center;
}
#MSearchResultsWindow .SRResult {
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}
#MSearchResultsWindow .SRResult:hover {
  background: var(--bg-secondary);
}
#MSearchResultsWindow .SRResult a {
  color: var(--text-primary);
  border-bottom: none;
}
#MSearchResultsWindow .SRResult a:hover {
  border-bottom: none;
}

#side-nav {
  overflow: visible;
  padding: var(--space-4);
  border-right: 1px solid var(--border-subtle);
  position: sticky;
  top: 56px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}
#side-nav #nav-tree {
  background-image: none;
  background-color: inherit;
  font-size: inherit;
}
#side-nav #nav-tree .item {
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-feature-settings: "liga", "tnum", "case", "calt", "zero", "ss01", "locl";
  padding: 0.125rem 0;
  border-left: 2px solid transparent;
  transition: border-color var(--transition-fast);
}
#side-nav #nav-tree .item:hover, #side-nav #nav-tree .item.selected {
  border-left-color: var(--accent-blue);
}
#side-nav #nav-tree .selected .item,
#side-nav #nav-tree a.selected {
  color: var(--accent-blue);
  font-weight: 500;
}

.navpath ul {
  background-image: none;
  height: 30px;
  line-height: 30px;
  color: var(--text-primary);
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navpath li {
  list-style-type: none;
  padding-left: 0;
  padding-right: 8px;
  background-image: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.navpath li::before {
  content: "/";
  padding-right: 8px;
  color: var(--text-muted);
}
.navpath li:first-child::before {
  content: none;
}

.navpath li.navelem a {
  height: 30px;
  display: block;
  text-decoration: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  border-bottom: none;
}

.navpath li.navelem a:hover {
  color: var(--accent-blue);
  border-bottom: none;
}

.navpath li.footer {
  list-style-type: none;
  float: right;
  padding-left: 10px;
  padding-right: 15px;
  background-image: none;
  color: var(--text-muted);
  font-size: 0.84rem;
}
.navpath li.footer::before {
  content: none;
}

.footer {
  border-top: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: var(--space-4) var(--space-5);
}

.footline {
  border-color: var(--border-subtle);
}

@media (max-width: 900px) {
  .title_area {
    padding: 0 1rem;
    height: 48px;
  }
  .grid-contents {
    grid-template-columns: auto 1fr 0;
    grid-template-areas: "top    top    top" ".      main   ." "foot   foot   foot";
  }
  #side-nav {
    display: none;
  }
}
@media (max-width: 684px) {
  .title_area {
    padding: 0 0.75rem;
    height: 44px;
    gap: var(--space-2);
  }
  #doc-content {
    padding: var(--space-2) var(--space-3) !important;
  }
  .main-menu-btn {
    display: block;
  }
  #main-menu-state:not(:checked) ~ #main-nav ul.sm-dox {
    display: none;
  }
  #main-menu-state:checked ~ #main-nav ul.sm-dox {
    display: flex;
    flex-direction: column;
  }
  ul.sm-dox li ul {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
}
dl {
  padding: 0;
}

dl.section {
  margin-left: 0;
  padding-left: 0;
}

dl.section.DocNodeRTL {
  margin-right: 0;
  padding-right: 0;
}

dl.note {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-note-bg);
}

dl.note.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-blue);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.warning {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-warning-bg);
}

dl.warning.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-red);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.attention {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-warning-bg);
}

dl.attention.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-red);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.todo {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-todo-bg);
}

dl.todo.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-orange);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.bug {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-magenta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-bug-bg);
}

dl.bug.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-magenta);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.deprecated {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--text-muted);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-deprecated-bg);
}

dl.deprecated.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--text-muted);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.pre {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-violet);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-violet-bg);
}

dl.pre.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-violet);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.post {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-violet);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-violet-bg);
}

dl.post.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-violet);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.invariant {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-violet);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-violet-bg);
}

dl.invariant.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-violet);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.test {
  margin-left: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--directive-test-bg);
}

dl.test.DocNodeRTL {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  border-right: 3px solid var(--accent-cyan);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

dl.section dd {
  margin-bottom: 6px;
}

/*# sourceMappingURL=doxyYoda.css.map */
