/* overall page design */

/* change html font size */
/* https://github.com/squidfunk/mkdocs-material/discussions/2583 */
html {
	font-size: 18px;
	font-family:'Courier New', Courier, monospace;
  }




/*Badges*/
.badge.custom-class .title {
    background-color: black;
}

.badge.custom-class .value {
    background-color: green;
}











/* Extra CSS for mkdocs-enumerate-headings-plugin */
.enumerate-headings-plugin {
	filter: opacity(35%);
}


/* page width */
.md-grid {
max-width: 87%;
}



/* Compact Table Styles */
th,
td {
  border: 1px solid var(--md-typeset-table-color);
  padding: 2px 4px; /* Minimal padding for compact rows */
  font-size: 12px; /* Smaller font for compactness */
  vertical-align: middle; /* Center-align content vertically */
  text-align: left; /* Consistent alignment */
  color: var(--md-typeset-color); /* Adapt to theme colors */
}

.md-typeset__table {
  line-height: 1; /* Tight line spacing */
}

/* Tables without a specific class */
.md-typeset__table table:not([class]) {
  border-collapse: collapse;
  width: 100%; /* Full width table */
}

/* Light mode alternating row colors */
.md-typeset__table tr:nth-child(2n) {
  background-color: #f9f9f9; /* Subtle alternate row shading */
}

/* Dark mode alternating row colors */
[data-md-color-scheme="slate"] .md-typeset__table tr:nth-child(2n) {
  background-color: hsla(var(--md-hue), 15%, 20%, 1); /* Subtle contrast in dark mode */
}

/* Dark mode specific styles */
[data-md-color-scheme="slate"] th,
[data-md-color-scheme="slate"] td {
  border-color: #444444; /* Darker border for dark mode */
  color: #dddddd; /* Light text color for readability */
}

[data-md-color-scheme="slate"] .md-typeset__table {
  background-color: #222222; /* Deep dark background */
}

/* Uniform header style */
th {
  /*font-weight: bold;*/ /* Bold font for distinction */
  font-size: 12px; /* Same size as regular text for uniformity */
  color: var(--md-typeset-color); /* Matching text color */
  background-color: transparent; /* No shading for headers */
}

/* Force narrow rows regardless of content */
tr {
  height: 24px; /* Force a minimal row height */
}

/* Remove extra spacing around tables */
.md-typeset__table {
  margin: 0;
  padding: 0;
}










/* glightbox gallery Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns, each taking equal fraction of the space */
    gap: 20px;
    justify-content: center;
}

/* Gallery Hover */
.gallery a:hover {
    transform: scale(1.01);
}

/* Gallery Item Styling */
.gallery-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    gap: 1px;
    align-items: left;
    text-align: center;
    background: none;
}

/* Image Styling */
.gallery-item img {
    width: 100%; /* Scale to fit the container width */
    height: auto; /* Adjust height automatically to maintain aspect ratio */
    max-height: 250px; /* Limit the maximum height */
    object-fit: contain;
    background: transparent;
}

/* Caption Styling */
.caption {
    margin-top: 10px;
    font-size: 11px;
    color: #808080;
}

.caption a {
    text-decoration: none;
    color: #808080;
}

.caption a:hover {
    text-decoration: underline;
}







/* lines on the primary navigation */
.md-nav__item {
	font-size: 11px;
}

.md-nav--primary ul ul ul {
border-left: 1px solid rgba(63, 87, 109, 0.253);
margin-left: .4px;
padding-left: 0.1em;
font-size: small;
}


/* lines on the secondary navigation */
.md-nav--secondary {
	font-size: 11px;
}

.md-nav--secondary ul ul {
border-left: 1px solid rgba(63, 87, 109, 0.253);
margin-left: 4px;
padding-left: 0.5em;
font-size: small;
}

.md-nav--secondary ul ul li:first-child:before {
content: "";
display: block;
position: absolute;
top: 0;
left: -1px;
height: 100%;
width: 1px;
background-color: solid rgba(63, 87, 109, 0.253);
font-size: small;
}

.md-nav--secondary ul ul li:last-child:before {
content: "";
display: block;
position: absolute;
bottom: 0;
left: -1px;
height: 100%;
width: .5px;
background-color: solid rgba(63, 87, 109, 0.253);
font-size: small;
}





/* admonitions */


/* change box width */
.admonition {
max-width: 100%;
}


/* https://github.com/squidfunk/mkdocs-material/discussions/2260 */
/* change admonition font size */
.md-typeset .admonition,
.md-typeset details {
font-size: 14px
}



/* narrow admonision */
/* https://github.com/squidfunk/mkdocs-material/discussions/4987 */
.md-typeset .admonition.narrow_70 {
/* max-width: 500px; */
max-width: 70%;
/*margin-inline: auto;*/ /*center align*/
}
/* usage */
/* !!! note narrow_75 "Phasellus posuere in sem ut cursus"

	Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
	nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
	massa, nec semper lorem quam in massa. */

.md-typeset .admonition.narrow_60 {
/* max-width: 500px; */
max-width: 60%;
/*margin-inline: auto;*/ /*center align*/
}

.md-typeset .admonition.narrow_50 {
/* max-width: 500px; */
max-width: 50%;
/*margin-inline: auto;*/ /*center align*/
}



.md-typeset .admonition.narrow_40 {
/* max-width: 500px; */
max-width: 40%;
/*margin-inline: auto;*/ /*center align*/
}


.md-typeset .admonition.narrow_30 {
/* max-width: 500px; */
max-width: 30%;
/*margin-inline: auto;*/ /*center align*/
}


.md-typeset .admonition.narrow_20 {
/* max-width: 500px; */
max-width: 20%;
/*margin-inline: auto;*/ /*center align*/
}


.md-typeset .admonition.narrow_10 {
/* max-width: 500px; */
max-width: 10%;
/*margin-inline: auto;*/ /*center align*/
}




/* null admonition*/
:root {
	--md-admonition-icon--null: "\f05a";
}
.md-typeset .admonition.null,
.md-typeset details.null {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .null > .admonition-title,
.md-typeset .null > summary {
background-color: rgba(100, 100, 100, 0);
font-weight: normal;
margin-left: -10px;
padding-left: 10px;
}
.md-typeset .null > .admonition-title::before,
.md-typeset .null > summary::before {
	background-color: rgba(172, 103, 47, 0);
	-webkit-mask-image: var(--md-admonition-icon--null);
		mask-image: var(--md-admonition-icon--null);
}


/* toc_h5 admonition css*/
:root {
	--md-admonition-icon--toc_h5: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6v2H3V6h18M3 18h9v-2H3v2m0-5h18v-2H3v2Z"/></svg>')
}
.md-typeset .admonition.toc_h5,
.md-typeset details.toc_h5 {
border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toc_h5 > .admonition-title,
.md-typeset .toc_h5 > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toc_h5 > .admonition-title::before,
.md-typeset .toc_h5 > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--toc_h5);
		mask-image: var(--md-admonition-icon--toc_h5);
}
.md-typeset details.toc_h5 > h5 {
	visibility: hidden;
	font-size: 0%;
}



/* toc_h5_null admonition css*/
  :root {
	--md-admonition-icon--toc_h5_null: "\f05a";
}
.md-typeset .admonition.toc_h5_null,
.md-typeset details.toc_h5_null {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toc_h5_null > .admonition-title,
.md-typeset .toc_h5_null > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toc_h5_null > .admonition-title::before,
.md-typeset .toc_h5_null > summary::before {
	background-color: rgba(172, 103, 47, 0);
	-webkit-mask-image: var(--md-admonition-icon--toc_h5_null);
		mask-image: var(--md-admonition-icon--toc_h5_null);
}
.md-typeset details.toc_h5_null > h5 {
	visibility: hidden;
	font-size: 0%;
}




/* bookmark_outline_toc_h5 admonition css*/
:root {
--md-admonition-icon--bookmark_outline_toc_h5: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 18-5-2.18L7 18V5h10m0-2H7a2 2 0 0 0-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.bookmark_outline_toc_h5,
.md-typeset details.bookmark_outline_toc_h5 {
border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bookmark_outline_toc_h5 > .admonition-title,
.md-typeset .bookmark_outline_toc_h5 > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bookmark_outline_toc_h5 > .admonition-title::before,
.md-typeset .bookmark_outline_toc_h5 > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bookmark_outline_toc_h5);
		mask-image: var(--md-admonition-icon--bookmark_outline_toc_h5);
}
.md-typeset details.bookmark_outline_toc_h5 > h5 {
	visibility: hidden;
	font-size: 0%;
}















/* more custom admonitions */

:root {
	--md-admonition-icon--abacus: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5h2v6H5V5m5 0H8v6h2V5M5 19h2v-6H5v6m5-6H8v6h2v-2h5v-2h-5v-2m-8 8h2V3H2v18M20 3v4h-7V5h-2v6h2V9h7v6h-2v-2h-2v6h2v-2h2v4h2V3h-2Z"/></svg>')
}
.md-typeset .admonition.abacus,
.md-typeset details.abacus {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .abacus > .admonition-title,
.md-typeset .abacus > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .abacus > .admonition-title::before,
.md-typeset .abacus > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--abacus);
		mask-image: var(--md-admonition-icon--abacus);
}



:root {
	--md-admonition-icon--access-point: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.93 4.93A9.969 9.969 0 0 0 2 12c0 2.76 1.12 5.26 2.93 7.07l1.41-1.41A7.938 7.938 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66L4.93 4.93m14.14 0-1.41 1.41A7.955 7.955 0 0 1 20 12c0 2.22-.89 4.22-2.34 5.66l1.41 1.41A9.969 9.969 0 0 0 22 12c0-2.76-1.12-5.26-2.93-7.07M7.76 7.76A5.98 5.98 0 0 0 6 12c0 1.65.67 3.15 1.76 4.24l1.41-1.41A3.99 3.99 0 0 1 8 12c0-1.11.45-2.11 1.17-2.83L7.76 7.76m8.48 0-1.41 1.41A3.99 3.99 0 0 1 16 12c0 1.11-.45 2.11-1.17 2.83l1.41 1.41A5.98 5.98 0 0 0 18 12c0-1.65-.67-3.15-1.76-4.24M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.access-point,
.md-typeset details.access-point {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .access-point > .admonition-title,
.md-typeset .access-point > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .access-point > .admonition-title::before,
.md-typeset .access-point > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--access-point);
		mask-image: var(--md-admonition-icon--access-point);
}



:root {
	--md-admonition-icon--account-hard-hat-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9c0 5.33-8 5.33-8 0h2c0 2.67 4 2.67 4 0m6 9v3H4v-3c0-2.67 5.33-4 8-4s8 1.33 8 4m-1.9 0c0-.64-3.13-2.1-6.1-2.1-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2M12.5 2c.28 0 .5.22.5.5v3h1V3a3.89 3.89 0 0 1 2.25 3.75s.7.14.75 1.25H7c0-1.11.75-1.25.75-1.25A3.89 3.89 0 0 1 10 3v2.5h1v-3c0-.28.22-.5.5-.5"/></svg>')
}
.md-typeset .admonition.account-hard-hat-outline,
.md-typeset details.account-hard-hat-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .account-hard-hat-outline > .admonition-title,
.md-typeset .account-hard-hat-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .account-hard-hat-outline > .admonition-title::before,
.md-typeset .account-hard-hat-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--account-hard-hat-outline);
		mask-image: var(--md-admonition-icon--account-hard-hat-outline);
}



:root {
	--md-admonition-icon--account-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 7c2.67 0 8 1.33 8 4v3H4v-3c0-2.67 5.33-4 8-4m0 1.9c-2.97 0-6.1 1.46-6.1 2.1v1.1h12.2V17c0-.64-3.13-2.1-6.1-2.1Z"/></svg>')
}
.md-typeset .admonition.account-outline,
.md-typeset details.account-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .account-outline > .admonition-title,
.md-typeset .account-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .account-outline > .admonition-title::before,
.md-typeset .account-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--account-outline);
		mask-image: var(--md-admonition-icon--account-outline);
}



:root {
	--md-admonition-icon--account: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4Z"/></svg>')
}
.md-typeset .admonition.account,
.md-typeset details.account {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .account > .admonition-title,
.md-typeset .account > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .account > .admonition-title::before,
.md-typeset .account > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--account);
		mask-image: var(--md-admonition-icon--account);
}



:root {
	--md-admonition-icon--adjust: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m3-8a3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3Z"/></svg>')
}
.md-typeset .admonition.adjust,
.md-typeset details.adjust {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .adjust > .admonition-title,
.md-typeset .adjust > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .adjust > .admonition-title::before,
.md-typeset .adjust > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--adjust);
		mask-image: var(--md-admonition-icon--adjust);
}



:root {
	--md-admonition-icon--airballoon-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 23c-1.1 0-2-.9-2-2v-2h6v2c0 1.1-.9 2-2 2h-2m1-20c.28 0 .55 0 .81.05C13.42 4.22 14 6.26 14 9c0 2.1-1 7-1 7h-2s-1-4.9-1-7c0-2.74.58-4.78 1.19-5.95.26-.05.53-.05.81-.05m0-2c-.71 0-1.39.09-2.05.26C8.78 2.83 8 5.71 8 9c0 2.28.38 4.37 1 7 0 1.1.9 2 2 2h2c1.1 0 2-.9 2-2 .62-2.63 1-4.72 1-7 0-3.29-.78-6.17-1.95-7.74C13.39 1.09 12.71 1 12 1M4 8c0 3.18 1.85 7.92 4.54 9.21-.54-1-.93-2.54-1.2-4.21C6.55 11.53 6 9.62 6 8c0-1.34.44-2.33 1.47-3.2.26-1.13.62-2.15 1.07-3.01C5.85 3.08 4 4.82 4 8m11.46-6.21c.45.86.81 1.88 1.07 3.01C17.56 5.67 18 6.66 18 8c0 1.62-.55 3.53-1.34 5-.27 1.67-.66 3.21-1.2 4.21C18.15 15.92 20 11.18 20 8s-1.85-4.92-4.54-6.21Z"/></svg>')
}
.md-typeset .admonition.airballoon-outline,
.md-typeset details.airballoon-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .airballoon-outline > .admonition-title,
.md-typeset .airballoon-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .airballoon-outline > .admonition-title::before,
.md-typeset .airballoon-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--airballoon-outline);
		mask-image: var(--md-admonition-icon--airballoon-outline);
}



:root {
	--md-admonition-icon--airballoon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 23a2 2 0 0 1-2-2v-2h6v2a2 2 0 0 1-2 2h-2m1-22c.71 0 1.39.09 2.05.26C15.22 2.83 16 5.71 16 9c0 2.28-.38 4.37-1 7a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2c-.62-2.63-1-4.72-1-7 0-3.29.78-6.17 1.95-7.74C10.61 1.09 11.29 1 12 1m8 7c0 3.18-1.85 7.92-4.54 9.21C16.41 15.39 17 11.83 17 9c0-2.83-.59-5.39-1.54-7.21C18.15 3.08 20 4.82 20 8M4 8c0-3.18 1.85-4.92 4.54-6.21C7.59 3.61 7 6.17 7 9s.59 6.39 1.54 8.21C5.85 15.92 4 11.18 4 8Z"/></svg>')
}
.md-typeset .admonition.airballoon,
.md-typeset details.airballoon {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .airballoon > .admonition-title,
.md-typeset .airballoon > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .airballoon > .admonition-title::before,
.md-typeset .airballoon > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--airballoon);
		mask-image: var(--md-admonition-icon--airballoon);
}



:root {
	--md-admonition-icon--airplane: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.56 3.91c.59.59.59 1.54 0 2.12l-3.89 3.89 2.12 9.19-1.41 1.42-3.88-7.43L9.6 17l.36 2.47-1.07 1.06-1.76-3.18-3.19-1.77L5 14.5l2.5.37L11.37 11 3.94 7.09l1.42-1.41 9.19 2.12 3.89-3.89c.56-.58 1.56-.58 2.12 0Z"/></svg>')
}
.md-typeset .admonition.airplane,
.md-typeset details.airplane {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .airplane > .admonition-title,
.md-typeset .airplane > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .airplane > .admonition-title::before,
.md-typeset .airplane > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--airplane);
		mask-image: var(--md-admonition-icon--airplane);
}



:root {
	--md-admonition-icon--alarm: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a7 7 0 0 1-7-7 7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7m0-16a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9m.5 4H11v6l4.75 2.85.75-1.23-4-2.37V8M7.88 3.39 6.6 1.86 2 5.71l1.29 1.53 4.59-3.85M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72Z"/></svg>')
}
.md-typeset .admonition.alarm,
.md-typeset details.alarm {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .alarm > .admonition-title,
.md-typeset .alarm > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .alarm > .admonition-title::before,
.md-typeset .alarm > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--alarm);
		mask-image: var(--md-admonition-icon--alarm);
}



:root {
	--md-admonition-icon--alert-circle-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 15h2v2h-2v-2m0-8h2v6h-2V7m1-5C6.47 2 2 6.5 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 18a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8Z"/></svg>')
}
.md-typeset .admonition.alert-circle-outline,
.md-typeset details.alert-circle-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .alert-circle-outline > .admonition-title,
.md-typeset .alert-circle-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .alert-circle-outline > .admonition-title::before,
.md-typeset .alert-circle-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--alert-circle-outline);
		mask-image: var(--md-admonition-icon--alert-circle-outline);
}



:root {
	--md-admonition-icon--align-horizontal-distribute: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22H2V2h2v20M22 2h-2v20h2V2m-8.5 5h-3v10h3V7Z"/></svg>')
}
.md-typeset .admonition.align-horizontal-distribute,
.md-typeset details.align-horizontal-distribute {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-horizontal-distribute > .admonition-title,
.md-typeset .align-horizontal-distribute > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-horizontal-distribute > .admonition-title::before,
.md-typeset .align-horizontal-distribute > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-horizontal-distribute);
		mask-image: var(--md-admonition-icon--align-horizontal-distribute);
}



:root {
	--md-admonition-icon--align-horizontal-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 22H2V2h2v20M22 7H6v3h16V7m-6 7H6v3h10v-3Z"/></svg>')
}
.md-typeset .admonition.align-horizontal-left,
.md-typeset details.align-horizontal-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-horizontal-left > .admonition-title,
.md-typeset .align-horizontal-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-horizontal-left > .admonition-title::before,
.md-typeset .align-horizontal-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-horizontal-left);
		mask-image: var(--md-admonition-icon--align-horizontal-left);
}



:root {
	--md-admonition-icon--align-horizontal-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2h2v20h-2V2M2 10h16V7H2v3m6 7h10v-3H8v3Z"/></svg>')
}
.md-typeset .admonition.align-horizontal-right,
.md-typeset details.align-horizontal-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-horizontal-right > .admonition-title,
.md-typeset .align-horizontal-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-horizontal-right > .admonition-title::before,
.md-typeset .align-horizontal-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-horizontal-right);
		mask-image: var(--md-admonition-icon--align-horizontal-right);
}



:root {
	--md-admonition-icon--align-vertical-bottom: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22H2v-2h20v2M10 2H7v16h3V2m7 6h-3v10h3V8Z"/></svg>')
}
.md-typeset .admonition.align-vertical-bottom,
.md-typeset details.align-vertical-bottom {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-vertical-bottom > .admonition-title,
.md-typeset .align-vertical-bottom > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-vertical-bottom > .admonition-title::before,
.md-typeset .align-vertical-bottom > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-vertical-bottom);
		mask-image: var(--md-admonition-icon--align-vertical-bottom);
}



:root {
	--md-admonition-icon--align-vertical-center: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 11h-5V6h-3v5h-4V3H7v8H1.8v2H7v8h3v-8h4v5h3v-5h5v-2Z"/></svg>')
}
.md-typeset .admonition.align-vertical-center,
.md-typeset details.align-vertical-center {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-vertical-center > .admonition-title,
.md-typeset .align-vertical-center > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-vertical-center > .admonition-title::before,
.md-typeset .align-vertical-center > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-vertical-center);
		mask-image: var(--md-admonition-icon--align-vertical-center);
}



:root {
	--md-admonition-icon--align-vertical-distribute: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v2H2V2h20M7 10.5v3h10v-3H7M2 20v2h20v-2H2Z"/></svg>')
}
.md-typeset .admonition.align-vertical-distribute,
.md-typeset details.align-vertical-distribute {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-vertical-distribute > .admonition-title,
.md-typeset .align-vertical-distribute > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-vertical-distribute > .admonition-title::before,
.md-typeset .align-vertical-distribute > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-vertical-distribute);
		mask-image: var(--md-admonition-icon--align-vertical-distribute);
}



:root {
	--md-admonition-icon--align-vertical-top: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2v2H2V2h20M7 22h3V6H7v16m7-6h3V6h-3v10Z"/></svg>')
}
.md-typeset .admonition.align-vertical-top,
.md-typeset details.align-vertical-top {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .align-vertical-top > .admonition-title,
.md-typeset .align-vertical-top > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .align-vertical-top > .admonition-title::before,
.md-typeset .align-vertical-top > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--align-vertical-top);
		mask-image: var(--md-admonition-icon--align-vertical-top);
}



:root {
	--md-admonition-icon--allergy: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.75 5.33a1.25 1.25 0 0 0-1.25 1.25v4.59h-.83V4.08a1.25 1.25 0 0 0-2.5 0v7.09h-.84V3.25a1.25 1.25 0 1 0-2.5 0v7.92H11V5.33a1.25 1.25 0 0 0-2.5 0v9.93l-3.59-2a1 1 0 0 0-.5-.14 1 1 0 0 0-.66.25l-1.08 1L9.21 21a3.29 3.29 0 0 0 2.37 1h6.09A3.33 3.33 0 0 0 21 18.67V6.58a1.25 1.25 0 0 0-1.25-1.25M11 15a1 1 0 1 1 1-1 1 1 0 0 1-1 1m2 3a1 1 0 1 1 1-1 1 1 0 0 1-1 1m5-2a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-1 3a1 1 0 1 1 1-1 1 1 0 0 1-1 1m-2-4a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z"/></svg>')
}
.md-typeset .admonition.allergy,
.md-typeset details.allergy {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .allergy > .admonition-title,
.md-typeset .allergy > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .allergy > .admonition-title::before,
.md-typeset .allergy > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--allergy);
		mask-image: var(--md-admonition-icon--allergy);
}



:root {
	--md-admonition-icon--anchor: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a3 3 0 0 0-3 3 3 3 0 0 0 2 2.83V9H8v2h3v8.92c-.74-.13-1.5-.34-2.21-.65-.74-.32-1.39-.71-1.97-1.18-.58-.47-1.04-.98-1.38-1.54L7 15l-4-3v3c0 .97.27 1.88.82 2.72A8.23 8.23 0 0 0 6 19.95c.87.64 1.84 1.14 2.88 1.5 1.05.36 2.09.55 3.12.55 1.03 0 2.07-.2 3.12-.56 1.04-.36 2.01-.86 2.88-1.49.92-.64 1.63-1.38 2.18-2.23.55-.84.82-1.75.82-2.72v-3l-4 3 1.56 1.55c-.34.56-.8 1.07-1.38 1.54-.58.47-1.23.86-1.97 1.18-.71.31-1.47.52-2.21.65V11h3V9h-3V7.82A3 3 0 0 0 15 5a3 3 0 0 0-3-3m0 2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1Z"/></svg>')
}
.md-typeset .admonition.anchor,
.md-typeset details.anchor {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .anchor > .admonition-title,
.md-typeset .anchor > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .anchor > .admonition-title::before,
.md-typeset .anchor > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--anchor);
		mask-image: var(--md-admonition-icon--anchor);
}



:root {
	--md-admonition-icon--android: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.61 15.15c-.46 0-.84-.37-.84-.83s.38-.82.84-.82c.46 0 .84.36.84.82 0 .46-.38.83-.84.83m-9.2 0c-.46 0-.84-.37-.84-.83 0-.46.38-.82.84-.82.46 0 .83.36.83.82 0 .46-.37.83-.83.83m9.5-5.01 1.67-2.88c.09-.17.03-.38-.13-.47-.17-.1-.38-.04-.45.13l-1.71 2.91A10.15 10.15 0 0 0 12 8.91c-1.53 0-3 .33-4.27.91L6.04 6.91a.334.334 0 0 0-.47-.13c-.17.09-.22.3-.13.47l1.66 2.88C4.25 11.69 2.29 14.58 2 18h20c-.28-3.41-2.23-6.3-5.09-7.86Z"/></svg>')
}
.md-typeset .admonition.android,
.md-typeset details.android {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .android > .admonition-title,
.md-typeset .android > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .android > .admonition-title::before,
.md-typeset .android > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--android);
		mask-image: var(--md-admonition-icon--android);
}



:root {
	--md-admonition-icon--angle-acute: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19H4.09L14.18 4.43l1.64 1.14-4.54 6.56c1.61.83 2.72 2.49 2.72 4.41 0 .16 0 .31-.03.46H20v2M7.91 17h4.05c.04-.15.04-.3.04-.46 0-1.26-.76-2.32-1.86-2.76L7.91 17Z"/></svg>')
}
.md-typeset .admonition.angle-acute,
.md-typeset details.angle-acute {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .angle-acute > .admonition-title,
.md-typeset .angle-acute > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .angle-acute > .admonition-title::before,
.md-typeset .angle-acute > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--angle-acute);
		mask-image: var(--md-admonition-icon--angle-acute);
}



:root {
	--md-admonition-icon--angle-obtuse: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19H9.31L4.07 5.36l1.86-.72 3.03 7.86a4.82 4.82 0 0 1 1.75-.33A4.88 4.88 0 0 1 15.58 17H21v2m-10.31-2h2.89a2.849 2.849 0 0 0-2.87-2.83c-.37 0-.71.07-1.04.19L10.69 17Z"/></svg>')
}
.md-typeset .admonition.angle-obtuse,
.md-typeset details.angle-obtuse {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .angle-obtuse > .admonition-title,
.md-typeset .angle-obtuse > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .angle-obtuse > .admonition-title::before,
.md-typeset .angle-obtuse > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--angle-obtuse);
		mask-image: var(--md-admonition-icon--angle-obtuse);
}



:root {
	--md-admonition-icon--animation-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a2 2 0 0 0-2 2v10h2V4h10V2H4m4 4a2 2 0 0 0-2 2v10h2V8h10V6H8m12 6v8h-8v-8h8m0-2h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.animation-outline,
.md-typeset details.animation-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .animation-outline > .admonition-title,
.md-typeset .animation-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .animation-outline > .admonition-title::before,
.md-typeset .animation-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--animation-outline);
		mask-image: var(--md-admonition-icon--animation-outline);
}



:root {
	--md-admonition-icon--antenna: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7.5c.69 0 1.27.23 1.76.7s.74 1.07.74 1.8c0 1.05-.5 1.81-1.5 2.28V21h-2v-8.72c-1-.47-1.5-1.23-1.5-2.28 0-.73.26-1.33.74-1.8s1.07-.7 1.76-.7m4.69-2.2c1.25 1.25 1.92 2.81 2.01 4.7 0 1.8-.67 3.38-2.01 4.72L15.5 13.5c1-.91 1.5-2.08 1.5-3.5 0-1.33-.5-2.5-1.5-3.5l1.19-1.2M6.09 4.08C4.5 5.67 3.7 7.64 3.7 10s.8 4.3 2.39 5.89l-1.17 1.22C3 15.08 2 12.7 2 10s1-5.06 2.92-7.09l1.17 1.17m12.99-1.17C21 4.94 22 7.3 22 10c0 2.8-1 5.17-2.92 7.11l-1.17-1.22C19.5 14.3 20.3 12.33 20.3 10s-.8-4.33-2.39-5.92l1.17-1.17M7.31 5.3 8.5 6.5C7.5 7.42 7 8.58 7 10c0 1.33.5 2.5 1.5 3.5l-1.19 1.22C5.97 13.38 5.3 11.8 5.3 10c0-1.8.67-3.36 2.01-4.7Z"/></svg>')
}
.md-typeset .admonition.antenna,
.md-typeset details.antenna {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .antenna > .admonition-title,
.md-typeset .antenna > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .antenna > .admonition-title::before,
.md-typeset .antenna > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--antenna);
		mask-image: var(--md-admonition-icon--antenna);
}



:root {
	--md-admonition-icon--apache-kafka: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.54 12.97c-.68 0-1.3.25-1.78.67l-1.29-.75c.09-.29.13-.6.13-.92 0-.32-.04-.63-.1-.92l1.23-.73c.48.44 1.12.68 1.81.68 1.49 0 2.7-1.19 2.7-2.68s-1.21-2.69-2.7-2.69-2.7 1.21-2.7 2.7c0 .17.02.37.05.55l-1.25.72c-.43-.45-1-.78-1.64-.95V7.26a2.705 2.705 0 0 0 1.88-2.57C11.88 3.2 10.67 2 9.18 2 7.69 2 6.5 3.2 6.5 4.69c0 1.2.76 2.21 1.84 2.57v1.4a3.421 3.421 0 0 0-2.58 3.31c0 1.6 1.1 2.94 2.58 3.31v1.45A2.692 2.692 0 0 0 6.5 19.3c0 1.49 1.19 2.7 2.68 2.7 1.49 0 2.7-1.21 2.7-2.7 0-1.2-.79-2.22-1.88-2.57v-1.44c.64-.16 1.2-.49 1.64-.94l1.26.73c-.04.19-.06.38-.06.58 0 1.49 1.21 2.7 2.7 2.7s2.7-1.21 2.7-2.7-1.21-2.69-2.7-2.69m0-5.97c.74 0 1.33.59 1.33 1.32s-.59 1.34-1.33 1.34-1.33-.6-1.33-1.34S14.8 7 15.54 7M7.85 4.69c0-.74.59-1.34 1.33-1.34.74 0 1.32.6 1.32 1.34s-.58 1.34-1.32 1.34c-.74 0-1.33-.6-1.33-1.34M10.5 19.3c0 .74-.58 1.34-1.32 1.34-.74 0-1.33-.6-1.33-1.34 0-.74.59-1.34 1.33-1.34.74 0 1.32.6 1.32 1.34m-1.32-5.41a1.92 1.92 0 1 1 .001-3.841 1.92 1.92 0 0 1-.001 3.841M15.54 17c-.74 0-1.33-.6-1.33-1.34s.59-1.33 1.33-1.33 1.33.6 1.33 1.33S16.28 17 15.54 17Z"/></svg>')
}
.md-typeset .admonition.apache-kafka,
.md-typeset details.apache-kafka {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .apache-kafka > .admonition-title,
.md-typeset .apache-kafka > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .apache-kafka > .admonition-title::before,
.md-typeset .apache-kafka > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--apache-kafka);
		mask-image: var(--md-admonition-icon--apache-kafka);
}



:root {
	--md-admonition-icon--application-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 18H3V6h18v14Z"/></svg>')
}
.md-typeset .admonition.application-outline,
.md-typeset details.application-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .application-outline > .admonition-title,
.md-typeset .application-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .application-outline > .admonition-title::before,
.md-typeset .application-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--application-outline);
		mask-image: var(--md-admonition-icon--application-outline);
}



:root {
	--md-admonition-icon--apps: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20h4v-4h-4m0-2h4v-4h-4m-6-2h4V4h-4m6 4h4V4h-4m-6 10h4v-4h-4m-6 4h4v-4H4m0 10h4v-4H4m6 4h4v-4h-4M4 8h4V4H4v4Z"/></svg>')
}
.md-typeset .admonition.apps,
.md-typeset details.apps {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .apps > .admonition-title,
.md-typeset .apps > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .apps > .admonition-title::before,
.md-typeset .apps > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--apps);
		mask-image: var(--md-admonition-icon--apps);
}



:root {
	--md-admonition-icon--arch: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-.89 2.18-1.43 3.61-2.42 5.73.61.64 1.35 1.39 2.56 2.24-1.3-.54-2.19-1.07-2.85-1.63C8 11 6.03 14.75 2 22c3.17-1.83 5.63-2.96 7.92-3.39-.1-.42-.16-.88-.15-1.36v-.1c.05-2.03 1.11-3.59 2.36-3.48 1.25.1 2.22 1.83 2.17 3.87-.01.38-.05.75-.12 1.09 2.26.44 4.69 1.56 7.82 3.37-.62-1.14-1.17-2.16-1.69-3.13-.81-.64-1.7-1.48-3.46-2.37 1.21.3 2.08.66 2.76 1.07C14.26 7.62 13.83 6.3 12 2Z"/></svg>')
}
.md-typeset .admonition.arch,
.md-typeset details.arch {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arch > .admonition-title,
.md-typeset .arch > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arch > .admonition-title::before,
.md-typeset .arch > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arch);
		mask-image: var(--md-admonition-icon--arch);
}



:root {
	--md-admonition-icon--arrow-bottom-left-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.07 19-2.83-2.82L19 6.42 17.58 5l-9.76 9.76L5 11.94V19Z"/></svg>')
}
.md-typeset .admonition.arrow-bottom-left-thin,
.md-typeset details.arrow-bottom-left-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-bottom-left-thin > .admonition-title,
.md-typeset .arrow-bottom-left-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-bottom-left-thin > .admonition-title::before,
.md-typeset .arrow-bottom-left-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-bottom-left-thin);
		mask-image: var(--md-admonition-icon--arrow-bottom-left-thin);
}



:root {
	--md-admonition-icon--arrow-bottom-right-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.93 19 2.83-2.82L5 6.42 6.42 5l9.76 9.76L19 11.94V19Z"/></svg>')
}
.md-typeset .admonition.arrow-bottom-right-thin,
.md-typeset details.arrow-bottom-right-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-bottom-right-thin > .admonition-title,
.md-typeset .arrow-bottom-right-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-bottom-right-thin > .admonition-title::before,
.md-typeset .arrow-bottom-right-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-bottom-right-thin);
		mask-image: var(--md-admonition-icon--arrow-bottom-right-thin);
}



:root {
	--md-admonition-icon--arrow-collapse-horizontal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20V4h2.03v16H13m-3 0V4h2.03v16H10M5 8l4.03 4L5 16v-3H2v-2h3V8m15 8-4-4 4-4v3h3v2h-3v3Z"/></svg>')
}
.md-typeset .admonition.arrow-collapse-horizontal,
.md-typeset details.arrow-collapse-horizontal {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-collapse-horizontal > .admonition-title,
.md-typeset .arrow-collapse-horizontal > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-collapse-horizontal > .admonition-title::before,
.md-typeset .arrow-collapse-horizontal > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-collapse-horizontal);
		mask-image: var(--md-admonition-icon--arrow-collapse-horizontal);
}



:root {
	--md-admonition-icon--arrow-down-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.03 13.92h4V5l2.01-.03v8.95h3.99l-5 5Z"/></svg>')
}
.md-typeset .admonition.arrow-down-thin,
.md-typeset details.arrow-down-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-down-thin > .admonition-title,
.md-typeset .arrow-down-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-down-thin > .admonition-title::before,
.md-typeset .arrow-down-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-down-thin);
		mask-image: var(--md-admonition-icon--arrow-down-thin);
}



:root {
	--md-admonition-icon--arrow-left-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.45 17.45 1 12l5.45-5.45 1.41 1.41L4.83 11h14.34l-3.03-3.04 1.41-1.41L23 12l-5.45 5.45-1.41-1.41L19.17 13H4.83l3.03 3.04-1.41 1.41Z"/></svg>')
}
.md-typeset .admonition.arrow-left-right,
.md-typeset details.arrow-left-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-left-right > .admonition-title,
.md-typeset .arrow-left-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-left-right > .admonition-title::before,
.md-typeset .arrow-left-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-left-right);
		mask-image: var(--md-admonition-icon--arrow-left-right);
}



:root {
	--md-admonition-icon--arrow-left-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.05 16.94v-4h8.92l.03-2.01h-8.95V6.94l-5 5Z"/></svg>')
}
.md-typeset .admonition.arrow-left-thin,
.md-typeset details.arrow-left-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-left-thin > .admonition-title,
.md-typeset .arrow-left-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-left-thin > .admonition-title::before,
.md-typeset .arrow-left-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-left-thin);
		mask-image: var(--md-admonition-icon--arrow-left-thin);
}



:root {
	--md-admonition-icon--arrow-left-top: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 13.5V20h-2v-6.5C18 11 16 9 13.5 9H7.83l3.08 3.09L9.5 13.5 4 8l5.5-5.5 1.42 1.41L7.83 7h5.67a6.5 6.5 0 0 1 6.5 6.5Z"/></svg>')
}
.md-typeset .admonition.arrow-left-top,
.md-typeset details.arrow-left-top {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-left-top > .admonition-title,
.md-typeset .arrow-left-top > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-left-top > .admonition-title::before,
.md-typeset .arrow-left-top > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-left-top);
		mask-image: var(--md-admonition-icon--arrow-left-top);
}



:root {
	--md-admonition-icon--arrow-projectile: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 2-2 5-.97-.97L8 17.06V19l-3 3-1-2-2-1 3-3h1.94L17.97 4.97 17 4l5-2Z"/></svg>')
}
.md-typeset .admonition.arrow-projectile,
.md-typeset details.arrow-projectile {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-projectile > .admonition-title,
.md-typeset .arrow-projectile > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-projectile > .admonition-title::before,
.md-typeset .arrow-projectile > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-projectile);
		mask-image: var(--md-admonition-icon--arrow-projectile);
}



:root {
	--md-admonition-icon--arrow-right-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 16.94v-4H5.08l-.03-2.01H14V6.94l5 5Z"/></svg>')
}
.md-typeset .admonition.arrow-right-thin,
.md-typeset details.arrow-right-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-right-thin > .admonition-title,
.md-typeset .arrow-right-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-right-thin > .admonition-title::before,
.md-typeset .arrow-right-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-right-thin);
		mask-image: var(--md-admonition-icon--arrow-right-thin);
}



:root {
	--md-admonition-icon--arrow-right-top: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20 8-5.5 5.5-1.41-1.41L16.17 9H10.5C8 9 6 11 6 13.5V20H4v-6.5A6.5 6.5 0 0 1 10.5 7h5.67l-3.09-3.09L14.5 2.5 20 8Z"/></svg>')
}
.md-typeset .admonition.arrow-right-top,
.md-typeset details.arrow-right-top {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-right-top > .admonition-title,
.md-typeset .arrow-right-top > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-right-top > .admonition-title::before,
.md-typeset .arrow-right-top > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-right-top);
		mask-image: var(--md-admonition-icon--arrow-right-top);
}



:root {
	--md-admonition-icon--arrow-top-left-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.07 5 9.24 7.83 19 17.59 17.58 19 7.82 9.25 5 12.07V5Z"/></svg>')
}
.md-typeset .admonition.arrow-top-left-thin,
.md-typeset details.arrow-top-left-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-top-left-thin > .admonition-title,
.md-typeset .arrow-top-left-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-top-left-thin > .admonition-title::before,
.md-typeset .arrow-top-left-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-top-left-thin);
		mask-image: var(--md-admonition-icon--arrow-top-left-thin);
}



:root {
	--md-admonition-icon--arrow-top-right-thin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.93 5 2.83 2.83L5 17.59 6.42 19l9.76-9.75L19 12.07V5h-7.07Z"/></svg>')
}
.md-typeset .admonition.arrow-top-right-thin,
.md-typeset details.arrow-top-right-thin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .arrow-top-right-thin > .admonition-title,
.md-typeset .arrow-top-right-thin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .arrow-top-right-thin > .admonition-title::before,
.md-typeset .arrow-top-right-thin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--arrow-top-right-thin);
		mask-image: var(--md-admonition-icon--arrow-top-right-thin);
}



:root {
	--md-admonition-icon--atom-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.36 2.64c1.64 0 3 1.36 3 3 0 1.65-1.36 3-3 3-1.65 0-3-1.35-3-3 0-.3.05-.58.14-.84-1.07-.51-2.25-.8-3.5-.8a8 8 0 0 0-8 8l.04.84-1.99.21L2 12A10 10 0 0 1 12 2c1.69 0 3.28.42 4.67 1.16.49-.33 1.07-.52 1.69-.52m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1c.56 0 1-.45 1-1 0-.56-.44-1-1-1M5.64 15.36c1.65 0 3 1.35 3 3 0 .3-.05.58-.14.84 1.07.51 2.25.8 3.5.8a8 8 0 0 0 8-8l-.04-.84 1.99-.21L22 12a10 10 0 0 1-10 10c-1.69 0-3.28-.42-4.67-1.16-.49.33-1.07.52-1.69.52-1.64 0-3-1.36-3-3 0-1.65 1.36-3 3-3m0 2c-.56 0-1 .45-1 1 0 .56.44 1 1 1a1 1 0 0 0 1-1 1 1 0 0 0-1-1M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4Z"/></svg>')
}
.md-typeset .admonition.atom-variant,
.md-typeset details.atom-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .atom-variant > .admonition-title,
.md-typeset .atom-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .atom-variant > .admonition-title::before,
.md-typeset .atom-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--atom-variant);
		mask-image: var(--md-admonition-icon--atom-variant);
}



:root {
	--md-admonition-icon--atom: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M4.22 4.22C5.65 2.79 8.75 3.43 12 5.56c3.25-2.13 6.35-2.77 7.78-1.34 1.43 1.43.79 4.53-1.34 7.78 2.13 3.25 2.77 6.35 1.34 7.78-1.43 1.43-4.53.79-7.78-1.34-3.25 2.13-6.35 2.77-7.78 1.34-1.43-1.43-.79-4.53 1.34-7.78-2.13-3.25-2.77-6.35-1.34-7.78m11.32 4.24c.61.62 1.17 1.25 1.69 1.88 1.38-2.13 1.88-3.96 1.13-4.7-.74-.75-2.57-.25-4.7 1.13.63.52 1.26 1.08 1.88 1.69m-7.08 7.08c-.61-.62-1.17-1.25-1.69-1.88-1.38 2.13-1.88 3.96-1.13 4.7.74.75 2.57.25 4.7-1.13-.63-.52-1.26-1.08-1.88-1.69m-2.82-9.9c-.75.74-.25 2.57 1.13 4.7.52-.63 1.08-1.26 1.69-1.88.62-.61 1.25-1.17 1.88-1.69-2.13-1.38-3.96-1.88-4.7-1.13m4.24 8.48c.7.7 1.42 1.34 2.12 1.91.7-.57 1.42-1.21 2.12-1.91.7-.7 1.34-1.42 1.91-2.12-.57-.7-1.21-1.42-1.91-2.12-.7-.7-1.42-1.34-2.12-1.91-.7.57-1.42 1.21-2.12 1.91-.7.7-1.34 1.42-1.91 2.12.57.7 1.21 1.42 1.91 2.12m8.48 4.24c.75-.74.25-2.57-1.13-4.7-.52.63-1.08 1.26-1.69 1.88-.62.61-1.25 1.17-1.88 1.69 2.13 1.38 3.96 1.88 4.7 1.13Z"/></svg>')
}
.md-typeset .admonition.atom,
.md-typeset details.atom {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .atom > .admonition-title,
.md-typeset .atom > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .atom > .admonition-title::before,
.md-typeset .atom > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--atom);
		mask-image: var(--md-admonition-icon--atom);
}



:root {
	--md-admonition-icon--axe-battle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.47 12.43c-2.12 2.12-5.65 1.41-5.65 1.41V9.6L3.41 22 2 20.59 14.4 8.18h-4.24s-.71-3.53 1.41-5.65c2.12-2.124 5.66-1.42 5.66-1.42v4.25l.71-.71 1.41 1.41-.71.71h4.25s.7 3.54-1.42 5.66Z"/></svg>')
}
.md-typeset .admonition.axe-battle,
.md-typeset details.axe-battle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .axe-battle > .admonition-title,
.md-typeset .axe-battle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .axe-battle > .admonition-title::before,
.md-typeset .axe-battle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--axe-battle);
		mask-image: var(--md-admonition-icon--axe-battle);
}



:root {
	--md-admonition-icon--axe: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 2 10 6c0 4-2 6-6 7l-3-5-4-4 3-4M4.11 19.84l-1.99-1.51L9.19 9 11 10.81l-6.89 9.03Z"/></svg>')
}
.md-typeset .admonition.axe,
.md-typeset details.axe {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .axe > .admonition-title,
.md-typeset .axe > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .axe > .admonition-title::before,
.md-typeset .axe > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--axe);
		mask-image: var(--md-admonition-icon--axe);
}



:root {
	--md-admonition-icon--bacteria-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 2H7v2.1c-.71.15-1.27.44-1.68.81L2.7 2.29 1.29 3.71l2.95 2.94C4 7.39 4 8 4 8H2v2h2.04c.06.63.17 1.36.36 2.15l-2.72.9.63 1.9 2.69-.9c.24.51.5 1.03.82 1.53l-2.38 1.59 1.11 1.66 2.52-1.68c.56.56 1.22 1.06 1.99 1.49l-.96 1.91 1.79.9 1-2-.16-.09c.95.32 2.03.54 3.27.61V22h2v-2.07c.76-.09 1.81-.29 2.77-.74l1.52 1.52 1.41-1.42-1.33-1.34c.38-.51.63-1.15.63-1.95 0-.5-.05-.92-.12-1.32l1.57-.78-.9-1.8-1.37.69c-.55-.83-1.27-1.29-1.89-1.51l.66-1.96-1.9-.64-.76 2.28c-1.33-.13-2.12-.64-2.59-1.19l1.75-.87-.9-1.8-1.55.79a4.39 4.39 0 0 0-.72-2.02l1.55-2.32-1.66-1.11-1.41 2.12c-.48-.23-1.06-.41-1.76-.5M15 18c-2.94 0-5.19-.82-6.69-2.44C5.68 12.72 6 8.2 6 8.17v-.14C6 7.1 6.39 6 8 6c2.63 0 2.97 1.43 3 2 0 2 1.6 5 6 5 .33 0 2 .15 2 3 0 1.89-3.97 2-4 2M8.5 8A1.5 1.5 0 0 0 7 9.5 1.5 1.5 0 0 0 8.5 11 1.5 1.5 0 0 0 10 9.5 1.5 1.5 0 0 0 8.5 8m2.5 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4.5 2a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5Z"/></svg>')
}
.md-typeset .admonition.bacteria-outline,
.md-typeset details.bacteria-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bacteria-outline > .admonition-title,
.md-typeset .bacteria-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bacteria-outline > .admonition-title::before,
.md-typeset .bacteria-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bacteria-outline);
		mask-image: var(--md-admonition-icon--bacteria-outline);
}



:root {
	--md-admonition-icon--badminton: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.3 2c-.97.03-1.72.84-1.69 1.8.01.24.06.47.16.7l.29.64c.04.13-.03.27-.17.31-.09.05-.19 0-.26-.08l-.42-.55c-.33-.42-.83-.68-1.36-.69-.97-.02-1.77.75-1.79 1.71-.01.42.13.82.39 1.16l.42.5h.01c.08.13.05.29-.06.37-.09.07-.21.07-.29 0L7 7.45c-.34-.26-.75-.4-1.16-.39-.96.02-1.73.82-1.71 1.79.01.53.27 1.03.69 1.36l.57.44c.11.1.11.26-.01.35a.23.23 0 0 1-.26.05h-.01l-.61-.28c-.23-.09-.46-.15-.7-.16-.96-.03-1.77.73-1.8 1.7 0 .72.4 1.38 1.06 1.66l11.39 5.07 4.59-4.59-5.07-11.39C13.69 2.39 13 1.97 12.3 2m.83 4.1c.42-.01.8.23.96.61l3.05 6.84-3.95-3.94-.93-2.11c-.3-.63.16-1.38.87-1.4M9.85 8.85c.27 0 .52.1.71.3l4.81 4.81c.4.38.41 1.01.03 1.41-.4.4-1.02.41-1.44 0l-4.81-4.81a.987.987 0 0 1-.02-1.41c.19-.2.45-.3.72-.3m-2.72 3.32c.13 0 .27.04.37.09l2.13.94 3.94 3.94-6.86-3.05c-1.02-.44-.68-1.95.42-1.92m13.15 3.87-4.24 4.24.85.85c.76.75 1.86 1.04 2.89.77a3.024 3.024 0 0 0 2.12-2.12c.27-1.03-.02-2.13-.77-2.89l-.85-.85Z"/></svg>')
}
.md-typeset .admonition.badminton,
.md-typeset details.badminton {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .badminton > .admonition-title,
.md-typeset .badminton > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .badminton > .admonition-title::before,
.md-typeset .badminton > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--badminton);
		mask-image: var(--md-admonition-icon--badminton);
}



:root {
	--md-admonition-icon--baguette: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 22c-1.32 0-1.85-2.36-1.96-3.3a5.56 5.56 0 0 1 .32-2.7 2.5 2.5 0 0 1 1.87-1.62c1.17-.2 2 .5 3.06.74a1.21 1.21 0 0 0 1.56-1.37C9.41 12.03 6.28 12 5 12c0-1.86 2.04-2.1 3.5-1.96a10.8 10.8 0 0 1 2.54.56c.5.17 1.08.6 1.63.56.83-.07 1-.93.64-1.56C12.44 8.12 9.97 8 8.5 8c0-2 1.73-2.38 3.39-2.08a11.58 11.58 0 0 1 2.49.79c.51.22 1.12.64 1.68.45 1.44-.44-.06-1.98-.7-2.35a6.6 6.6 0 0 0-1.42-.58c-.54-.16-1.2-.1-.71-.73a5.13 5.13 0 0 1 2.73-1.24c1.89-.44 4.5-.52 4.96 1.86a5.3 5.3 0 0 1-.85 3.58 38.96 38.96 0 0 1-6.85 8.63 36.6 36.6 0 0 1-4.6 3.99C7.62 21.04 6.3 22 5 22Z"/></svg>')
}
.md-typeset .admonition.baguette,
.md-typeset details.baguette {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .baguette > .admonition-title,
.md-typeset .baguette > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .baguette > .admonition-title::before,
.md-typeset .baguette > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--baguette);
		mask-image: var(--md-admonition-icon--baguette);
}



:root {
	--md-admonition-icon--balloon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.16 12.74 14 14h-1.5c-.15 2.71-.5 5.41-1 8.08l-1-.16c.5-2.62.84-5.26 1-7.92H10l.84-1.26C8.64 11.79 7 8.36 7 6a5 5 0 0 1 5-5 5 5 0 0 1 5 5c0 2.36-1.64 5.79-3.84 6.74Z"/></svg>')
}
.md-typeset .admonition.balloon,
.md-typeset details.balloon {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .balloon > .admonition-title,
.md-typeset .balloon > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .balloon > .admonition-title::before,
.md-typeset .balloon > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--balloon);
		mask-image: var(--md-admonition-icon--balloon);
}



:root {
	--md-admonition-icon--bat: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.75 8S5 7 8 9c0 0 .5 3.75 2.5 3.75V11s.5 1 1.5 1 1.5-1 1.5-1v1.75C15.5 12.75 16 9 16 9c3-2 7.25-1 7.25-1-2 1-2.25 4.5-2.25 4.5-4 0-4 3.25-4 3.25-5-1-5 2.75-5 2.75s0-3.75-5-2.75c0 0 0-3.25-4-3.25C3 12.5 2.75 9 .75 8Z"/></svg>')
}
.md-typeset .admonition.bat,
.md-typeset details.bat {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bat > .admonition-title,
.md-typeset .bat > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bat > .admonition-title::before,
.md-typeset .bat > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bat);
		mask-image: var(--md-admonition-icon--bat);
}



:root {
	--md-admonition-icon--battery-10: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 18H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4Z"/></svg>')
}
.md-typeset .admonition.battery-10,
.md-typeset details.battery-10 {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .battery-10 > .admonition-title,
.md-typeset .battery-10 > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .battery-10 > .admonition-title::before,
.md-typeset .battery-10 > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--battery-10);
		mask-image: var(--md-admonition-icon--battery-10);
}



:root {
	--md-admonition-icon--battery-20: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 17H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4Z"/></svg>')
}
.md-typeset .admonition.battery-20,
.md-typeset details.battery-20 {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .battery-20 > .admonition-title,
.md-typeset .battery-20 > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .battery-20 > .admonition-title::before,
.md-typeset .battery-20 > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--battery-20);
		mask-image: var(--md-admonition-icon--battery-20);
}



:root {
	--md-admonition-icon--battery-low: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20H8V6h8m.67-2H15V2H9v2H7.33C6.6 4 6 4.6 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34c.74 0 1.33-.59 1.33-1.33V5.33C18 4.6 17.4 4 16.67 4M15 16H9v3h6v-3"/></svg>')
}
.md-typeset .admonition.battery-low,
.md-typeset details.battery-low {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .battery-low > .admonition-title,
.md-typeset .battery-low > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .battery-low > .admonition-title::before,
.md-typeset .battery-low > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--battery-low);
		mask-image: var(--md-admonition-icon--battery-low);
}



:root {
	--md-admonition-icon--battery-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 20H8V6h8m.67-2H15V2H9v2H7.33A1.33 1.33 0 0 0 6 5.33v15.34C6 21.4 6.6 22 7.33 22h9.34A1.33 1.33 0 0 0 18 20.67V5.33C18 4.6 17.4 4 16.67 4Z"/></svg>')
}
.md-typeset .admonition.battery-outline,
.md-typeset details.battery-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .battery-outline > .admonition-title,
.md-typeset .battery-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .battery-outline > .admonition-title::before,
.md-typeset .battery-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--battery-outline);
		mask-image: var(--md-admonition-icon--battery-outline);
}



:root {
	--md-admonition-icon--beach: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18.54c2.13-.33 4.5-.54 7-.54v4H5c0-.65 3.2-2.14 8-3.1v-6.5c-.84.25-1.55.81-2 1.55a3.495 3.495 0 0 0-6 0c.03-3.58 3.5-6.52 8-6.91V7a1 1 0 0 1 1-1 1 1 0 0 1 1 1v.04c4.5.39 7.96 3.33 8 6.91a3.495 3.495 0 0 0-6 0c-.45-.74-1.16-1.3-2-1.56v6.15M7 2a5 5 0 0 1-5 5V2h5Z"/></svg>')
}
.md-typeset .admonition.beach,
.md-typeset details.beach {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .beach > .admonition-title,
.md-typeset .beach > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .beach > .admonition-title::before,
.md-typeset .beach > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--beach);
		mask-image: var(--md-admonition-icon--beach);
}



:root {
	--md-admonition-icon--beaker-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v2a2 2 0 0 0-2 2v12a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2V3m4 2v2h5v1H7v1h3v1H7v1h3v1H7v1h5v1H7v1h3v1H7v3h10V5H7Z"/></svg>')
}
.md-typeset .admonition.beaker-outline,
.md-typeset details.beaker-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .beaker-outline > .admonition-title,
.md-typeset .beaker-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .beaker-outline > .admonition-title::before,
.md-typeset .beaker-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--beaker-outline);
		mask-image: var(--md-admonition-icon--beaker-outline);
}



:root {
	--md-admonition-icon--bench-back: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h1v2H1v2h2v4h2v-4h14v4h2v-4h2v-2h-4v-2h1c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H4m13 6v2H7v-2h10Z"/></svg>')
}
.md-typeset .admonition.bench-back,
.md-typeset details.bench-back {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bench-back > .admonition-title,
.md-typeset .bench-back > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bench-back > .admonition-title::before,
.md-typeset .bench-back > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bench-back);
		mask-image: var(--md-admonition-icon--bench-back);
}



:root {
	--md-admonition-icon--bike-fast: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 1.2c-1 0-1.8.8-1.8 1.8S15 4.8 16 4.8 17.8 4 17.8 3 17 1.2 16 1.2m-3.6 2.9c-.47 0-.9.19-1.2.5L7.5 8.29C7.19 8.6 7 9 7 9.5c0 .63.33 1.16.85 1.47L11.2 13v5H13v-6.5l-2.25-1.65 2.32-2.35L14.8 10H19V8.2h-3.2l-1.94-3.27c-.29-.5-.86-.83-1.46-.83M10 3H3c-.55 0-1-.45-1-1s.45-1 1-1h9.79c-.21.34-.38.71-.47 1.11-.86.02-1.67.34-2.32.89m-5 9c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m0 8.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5M19 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m0 8.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5M5.32 11H1c-.552 0-1-.45-1-1s.448-1 1-1h4.05c-.02.16-.05.33-.05.5 0 .53.12 1.04.32 1.5M6 7H2c-.55 0-1-.45-1-1s.45-1 1-1h5.97L6.09 6.87C6.05 6.91 6 6.96 6 7Z"/></svg>')
}
.md-typeset .admonition.bike-fast,
.md-typeset details.bike-fast {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bike-fast > .admonition-title,
.md-typeset .bike-fast > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bike-fast > .admonition-title::before,
.md-typeset .bike-fast > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bike-fast);
		mask-image: var(--md-admonition-icon--bike-fast);
}



:root {
	--md-admonition-icon--block-helper: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a12 12 0 0 1 12 12 12 12 0 0 1-12 12A12 12 0 0 1 0 12 12 12 0 0 1 12 0m0 2A10 10 0 0 0 2 12c0 2.4.85 4.6 2.26 6.33L18.33 4.26A9.984 9.984 0 0 0 12 2m0 20a10 10 0 0 0 10-10c0-2.4-.85-4.6-2.26-6.33L5.67 19.74A9.984 9.984 0 0 0 12 22Z"/></svg>')
}
.md-typeset .admonition.block-helper,
.md-typeset details.block-helper {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .block-helper > .admonition-title,
.md-typeset .block-helper > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .block-helper > .admonition-title::before,
.md-typeset .block-helper > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--block-helper);
		mask-image: var(--md-admonition-icon--block-helper);
}



:root {
	--md-admonition-icon--blog: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M192 32c0 17.7 14.3 32 32 32 123.7 0 224 100.3 224 224 0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32 70.7 0 128 57.3 128 128 0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192-17.7 0-32 14.3-32 32zm-96 16c0-26.5-21.5-48-48-48S0 117.5 0 144v224c0 79.5 64.5 144 144 144s144-64.5 144-144-64.5-144-144-144h-16v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48V144z"/></svg>')
}
.md-typeset .admonition.blog,
.md-typeset details.blog {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .blog > .admonition-title,
.md-typeset .blog > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .blog > .admonition-title::before,
.md-typeset .blog > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--blog);
		mask-image: var(--md-admonition-icon--blog);
}



:root {
	--md-admonition-icon--bluetooth: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.88 16.29 13 18.17v-3.76m0-8.58 1.88 1.88L13 9.58m4.71-1.87L12 2h-1v7.58L6.41 5 5 6.41 10.59 12 5 17.58 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29Z"/></svg>')
}
.md-typeset .admonition.bluetooth,
.md-typeset details.bluetooth {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bluetooth > .admonition-title,
.md-typeset .bluetooth > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bluetooth > .admonition-title::before,
.md-typeset .bluetooth > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bluetooth);
		mask-image: var(--md-admonition-icon--bluetooth);
}



:root {
	--md-admonition-icon--blur-linear: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 17a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m4 3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m0-4a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M3 3v2h18V3m-4 13.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M9 17a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-4-3.5A1.5 1.5 0 0 0 6.5 12 1.5 1.5 0 0 0 5 10.5 1.5 1.5 0 0 0 3.5 12 1.5 1.5 0 0 0 5 13.5m0-4A1.5 1.5 0 0 0 6.5 8 1.5 1.5 0 0 0 5 6.5 1.5 1.5 0 0 0 3.5 8 1.5 1.5 0 0 0 5 9.5M3 21h18v-2H3M9 9a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0 4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-4 4.5A1.5 1.5 0 0 0 6.5 16 1.5 1.5 0 0 0 5 14.5 1.5 1.5 0 0 0 3.5 16 1.5 1.5 0 0 0 5 17.5Z"/></svg>')
}
.md-typeset .admonition.blur-linear,
.md-typeset details.blur-linear {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .blur-linear > .admonition-title,
.md-typeset .blur-linear > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .blur-linear > .admonition-title::before,
.md-typeset .blur-linear > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--blur-linear);
		mask-image: var(--md-admonition-icon--blur-linear);
}



:root {
	--md-admonition-icon--blur-off: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M6 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 3.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-7-11a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M6 13a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m15 .5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M10 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M2.5 5.27l3.78 3.78L6 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47a1.5 1.5 0 0 0 1.5 1.5c.74 0 1.36-.54 1.47-1.25l2.81 2.81c-.09-.03-.18-.06-.28-.06a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1c0-.1-.03-.19-.06-.28l3.78 3.78L20 20.23 3.77 4 2.5 5.27M14 20.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M18 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0 4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0 4a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m-8-8a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m11 3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m-11-7a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m4 0a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m-.2 8h.2a1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 14 8.5a1.5 1.5 0 0 0-1.5 1.5v.2c.11.67.63 1.19 1.3 1.3M14 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1Z"/></svg>')
}
.md-typeset .admonition.blur-off,
.md-typeset details.blur-off {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .blur-off > .admonition-title,
.md-typeset .blur-off > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .blur-off > .admonition-title::before,
.md-typeset .blur-off > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--blur-off);
		mask-image: var(--md-admonition-icon--blur-off);
}



:root {
	--md-admonition-icon--blur-radial: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 13a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 3.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m5 7.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m0 4a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-3-6a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M14 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-4-1.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m-3 6a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m3 3a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-3-7a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m3 3.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1Z"/></svg>')
}
.md-typeset .admonition.blur-radial,
.md-typeset details.blur-radial {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .blur-radial > .admonition-title,
.md-typeset .blur-radial > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .blur-radial > .admonition-title::before,
.md-typeset .blur-radial > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--blur-radial);
		mask-image: var(--md-admonition-icon--blur-radial);
}



:root {
	--md-admonition-icon--blur: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 8.5a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 14 8.5m0 4a1.5 1.5 0 0 0-1.5 1.5 1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5M10 17a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-8.5A1.5 1.5 0 0 0 8.5 10a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5A1.5 1.5 0 0 0 10 8.5m4 12a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m0-3.5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m7-3.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M18 5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m-8-.5A1.5 1.5 0 0 0 8.5 14a1.5 1.5 0 0 0 1.5 1.5 1.5 1.5 0 0 0 1.5-1.5 1.5 1.5 0 0 0-1.5-1.5M10 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m0-3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5m0 17a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m-7-7a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5m11-10a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M14 7a1 1 0 0 0 1-1 1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1m7 3.5a.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5M6 5a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1M3 9.5a.5.5 0 0 0-.5.5.5.5 0 0 0 .5.5.5.5 0 0 0 .5-.5.5.5 0 0 0-.5-.5M6 9a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0 8a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1Z"/></svg>')
}
.md-typeset .admonition.blur,
.md-typeset details.blur {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .blur > .admonition-title,
.md-typeset .blur > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .blur > .admonition-title::before,
.md-typeset .blur > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--blur);
		mask-image: var(--md-admonition-icon--blur);
}



:root {
	--md-admonition-icon--bolt: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 17.7V21h-4v-.7l4-2.6M17 3H7v3h10V3m-2 4-1 .7V7h-4v3.3L9 11v1l6-3.9V7m0 4-1 .7v-2l-4 2.7v2L9 15v1l6-3.9V11m0 4-1 .7v-2l-4 2.7v2L9 19v1l6-3.9V15Z"/></svg>')
}
.md-typeset .admonition.bolt,
.md-typeset details.bolt {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bolt > .admonition-title,
.md-typeset .bolt > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bolt > .admonition-title::before,
.md-typeset .bolt > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bolt);
		mask-image: var(--md-admonition-icon--bolt);
}



:root {
	--md-admonition-icon--book-education-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 20h7v2H6c-1.11 0-2-.89-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8.54l-1.5-.82-.5.28V4h-5v8l-2.5-2.25L8 12V4H6v16m18-3-5.5-3-5.5 3 5.5 3 5.5-3m-9 2.09v2L18.5 23l3.5-1.91v-2L18.5 21 15 19.09Z"/></svg>')
}
.md-typeset .admonition.book-education-outline,
.md-typeset details.book-education-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .book-education-outline > .admonition-title,
.md-typeset .book-education-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .book-education-outline > .admonition-title::before,
.md-typeset .book-education-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--book-education-outline);
		mask-image: var(--md-admonition-icon--book-education-outline);
}



:root {
	--md-admonition-icon--bookmark-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17 18-5-2.18L7 18V5h10m0-2H7a2 2 0 0 0-2 2v16l7-3 7 3V5a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.bookmark-outline,
.md-typeset details.bookmark-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bookmark-outline > .admonition-title,
.md-typeset .bookmark-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bookmark-outline > .admonition-title::before,
.md-typeset .bookmark-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bookmark-outline);
		mask-image: var(--md-admonition-icon--bookmark-outline);
}



:root {
	--md-admonition-icon--boom-gate: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 9H8.22A2.97 2.97 0 0 0 4 8.8c-.64.56-1 1.36-1 2.2v9a1 1 0 0 0-1 1v1h8v-1a1 1 0 0 0-1-1v-7h11a2 2 0 0 0 2-2 2 2 0 0 0-2-2M6 12.5A1.5 1.5 0 0 1 4.5 11 1.5 1.5 0 0 1 6 9.5 1.5 1.5 0 0 1 7.5 11 1.5 1.5 0 0 1 6 12.5m4.5-.5L9 10h1.5l1.5 2h-1.5m4 0L13 10h1.5l1.5 2h-1.5m4 0L17 10h1.5l1.5 2h-1.5Z"/></svg>')
}
.md-typeset .admonition.boom-gate,
.md-typeset details.boom-gate {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .boom-gate > .admonition-title,
.md-typeset .boom-gate > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .boom-gate > .admonition-title::before,
.md-typeset .boom-gate > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--boom-gate);
		mask-image: var(--md-admonition-icon--boom-gate);
}



:root {
	--md-admonition-icon--boomerang: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2H4c-1.1 0-2 .9-2 2s.9 2 2 2h4l2-4m8 0c2.2 0 4 1.8 4 4v6l-4 2c0-4.4-3.6-8-8-8l2-4h6m0 18v-4l4-2v6c0 1.1-.9 2-2 2s-2-.9-2-2Z"/></svg>')
}
.md-typeset .admonition.boomerang,
.md-typeset details.boomerang {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .boomerang > .admonition-title,
.md-typeset .boomerang > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .boomerang > .admonition-title::before,
.md-typeset .boomerang > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--boomerang);
		mask-image: var(--md-admonition-icon--boomerang);
}



:root {
	--md-admonition-icon--border-radius: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16c0 2.8 2.2 5 5 5h2v-2H8c-1.7 0-3-1.3-3-3v-2H3v2m18-8c0-2.8-2.2-5-5-5h-2v2h2c1.7 0 3 1.3 3 3v2h2V8m-5 13c2.8 0 5-2.2 5-5v-2h-2v2c0 1.7-1.3 3-3 3h-2v2h2M8 3C5.2 3 3 5.2 3 8v2h2V8c0-1.7 1.3-3 3-3h2V3H8Z"/></svg>')
}
.md-typeset .admonition.border-radius,
.md-typeset details.border-radius {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .border-radius > .admonition-title,
.md-typeset .border-radius > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .border-radius > .admonition-title::before,
.md-typeset .border-radius > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--border-radius);
		mask-image: var(--md-admonition-icon--border-radius);
}



:root {
	--md-admonition-icon--bow-arrow: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.03 6.03 20 7l2-5-5 2 .97.97-1.82 1.82C10.87 2.16 3.3 3.94 2.97 4L2 4.26l.5 1.94.79-.2 6.83 6.82L6.94 16H5l-3 3 2 1 1 2 3-3v-1.94l3.18-3.18L18 20.71l-.19.79 1.93.5.26-.97c.06-.33 1.84-7.9-2.79-13.18l1.82-1.82M4.5 5.78c2.05-.28 6.78-.5 10.23 2.43l-3.91 3.91L4.5 5.78M18.22 19.5l-6.34-6.32 3.91-3.91c2.93 3.45 2.71 8.18 2.43 10.23Z"/></svg>')
}
.md-typeset .admonition.bow-arrow,
.md-typeset details.bow-arrow {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bow-arrow > .admonition-title,
.md-typeset .bow-arrow > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bow-arrow > .admonition-title::before,
.md-typeset .bow-arrow > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bow-arrow);
		mask-image: var(--md-admonition-icon--bow-arrow);
}



:root {
	--md-admonition-icon--bowl-mix-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.6 12H2v3c0 3.9 3.1 7 7 7h6c3.9 0 7-3.1 7-7v-3h-6.4m4.4 3c0 2.8-2.2 5-5 5H9c-2.8 0-5-2.2-5-5v-1h16v1m-3.8-4 4.1-6.6L22 5.5 18.6 11h-2.4Z"/></svg>')
}
.md-typeset .admonition.bowl-mix-outline,
.md-typeset details.bowl-mix-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bowl-mix-outline > .admonition-title,
.md-typeset .bowl-mix-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bowl-mix-outline > .admonition-title::before,
.md-typeset .bowl-mix-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bowl-mix-outline);
		mask-image: var(--md-admonition-icon--bowl-mix-outline);
}



:root {
	--md-admonition-icon--bowl-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12v3c0 3.9 3.1 7 7 7h6c3.9 0 7-3.1 7-7v-3H2m2 2h16v1c0 2.8-2.2 5-5 5H9c-2.8 0-5-2.2-5-5v-1Z"/></svg>')
}
.md-typeset .admonition.bowl-outline,
.md-typeset details.bowl-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bowl-outline > .admonition-title,
.md-typeset .bowl-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bowl-outline > .admonition-title::before,
.md-typeset .bowl-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bowl-outline);
		mask-image: var(--md-admonition-icon--bowl-outline);
}



:root {
	--md-admonition-icon--box-cutter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.22 11.91c-.33.33-.51.74-.56 1.17l5.51 2.36 8.49-8.48c.78-.79.78-2.05 0-2.83l-1.42-1.42c-.78-.78-2.04-.78-2.83 0l-9.19 9.2M5 16v5.75l5.81-5.22-5-2L5 16M17.12 4.83c.38-.39 1.03-.39 1.42 0 .39.4.39 1.03 0 1.42-.39.39-1.04.39-1.42 0-.39-.39-.39-1.02 0-1.42Z"/></svg>')
}
.md-typeset .admonition.box-cutter,
.md-typeset details.box-cutter {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .box-cutter > .admonition-title,
.md-typeset .box-cutter > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .box-cutter > .admonition-title::before,
.md-typeset .box-cutter > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--box-cutter);
		mask-image: var(--md-admonition-icon--box-cutter);
}



:root {
	--md-admonition-icon--brain: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.33 12.91c.09 1.55-.62 3.04-1.89 3.95l.77 1.49c.23.45.26.98.06 1.45-.19.47-.58.84-1.06 1l-.79.25a1.687 1.687 0 0 1-1.86-.55L14.44 18c-.89-.15-1.73-.53-2.44-1.1-.5.15-1 .23-1.5.23-.88 0-1.76-.27-2.5-.79-.53.16-1.07.23-1.62.22-.79.01-1.57-.15-2.3-.45a4.105 4.105 0 0 1-2.43-3.61c-.08-.72.04-1.45.35-2.11-.29-.75-.32-1.57-.07-2.33C2.3 7.11 3 6.32 3.87 5.82c.58-1.69 2.21-2.82 4-2.7 1.6-1.5 4.05-1.66 5.83-.37.42-.11.86-.17 1.3-.17 1.36-.03 2.65.57 3.5 1.64 2.04.53 3.5 2.35 3.58 4.47.05 1.11-.25 2.2-.86 3.13.07.36.11.72.11 1.09m-5-1.41c.57.07 1.02.5 1.02 1.07a1 1 0 0 1-1 1h-.63c-.32.9-.88 1.69-1.62 2.29.25.09.51.14.77.21 5.13-.07 4.53-3.2 4.53-3.25a2.592 2.592 0 0 0-2.69-2.49 1 1 0 0 1-1-1 1 1 0 0 1 1-1c1.23.03 2.41.49 3.33 1.3.05-.29.08-.59.08-.89-.06-1.24-.62-2.32-2.87-2.53-1.25-2.96-4.4-1.32-4.4-.4-.03.23.21.72.25.75a1 1 0 0 1 1 1c0 .55-.45 1-1 1-.53-.02-1.03-.22-1.43-.56-.48.31-1.03.5-1.6.56-.57.05-1.04-.35-1.07-.9a.968.968 0 0 1 .88-1.1c.16-.02.94-.14.94-.77 0-.66.25-1.29.68-1.79-.92-.25-1.91.08-2.91 1.29C6.75 5 6 5.25 5.45 7.2 4.5 7.67 4 8 3.78 9c1.08-.22 2.19-.13 3.22.25.5.19.78.75.59 1.29-.19.52-.77.78-1.29.59-.73-.32-1.55-.34-2.3-.06-.32.27-.32.83-.32 1.27 0 .74.37 1.43 1 1.83.53.27 1.12.41 1.71.4-.15-.26-.28-.53-.39-.81a1.038 1.038 0 0 1 1.96-.68c.4 1.14 1.42 1.92 2.62 2.05 1.37-.07 2.59-.88 3.19-2.13.23-1.38 1.34-1.5 2.56-1.5m2 7.47-.62-1.3-.71.16 1 1.25.33-.11m-4.65-8.61a1 1 0 0 0-.91-1.03c-.71-.04-1.4.2-1.93.67-.57.58-.87 1.38-.84 2.19a1 1 0 0 0 1 1c.57 0 1-.45 1-1 0-.27.07-.54.23-.76.12-.1.27-.15.43-.15.55.03 1.02-.38 1.02-.92Z"/></svg>')
}
.md-typeset .admonition.brain,
.md-typeset details.brain {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .brain > .admonition-title,
.md-typeset .brain > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .brain > .admonition-title::before,
.md-typeset .brain > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--brain);
		mask-image: var(--md-admonition-icon--brain);
}



:root {
	--md-admonition-icon--bridge: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 14v-3.09c-.72-.33-1.39-.73-2-1.2V14h2m-2 4H3v-2H1v-2h2V7h2v1.43C6.8 10 9.27 11 12 11c2.73 0 5.2-1 7-2.57V7h2v7h2v2h-2v2h-2v-2H5v2m12-7.09V14h2V9.71c-.61.47-1.28.87-2 1.2M16 14v-2.68c-.64.23-1.31.4-2 .52V14h2m-3 0v-2.04L12 12l-1-.04V14h2m-3 0v-2.16c-.69-.12-1.36-.29-2-.52V14h2Z"/></svg>')
}
.md-typeset .admonition.bridge,
.md-typeset details.bridge {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bridge > .admonition-title,
.md-typeset .bridge > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bridge > .admonition-title::before,
.md-typeset .bridge > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bridge);
		mask-image: var(--md-admonition-icon--bridge);
}



:root {
	--md-admonition-icon--briefcase-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6c.58 0 1.05.2 1.42.59.38.41.58.86.58 1.41v11c0 .55-.2 1-.58 1.41-.37.39-.84.59-1.42.59H4c-.58 0-1.05-.2-1.42-.59C2.2 20 2 19.55 2 19V8c0-.55.2-1 .58-1.41C2.95 6.2 3.42 6 4 6h4V4c0-.58.2-1.05.58-1.42C8.95 2.2 9.42 2 10 2h4c.58 0 1.05.2 1.42.58.38.37.58.84.58 1.42v2h4M4 8v11h16V8H4m10-2V4h-4v2h4Z"/></svg>')
}
.md-typeset .admonition.briefcase-outline,
.md-typeset details.briefcase-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .briefcase-outline > .admonition-title,
.md-typeset .briefcase-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .briefcase-outline > .admonition-title::before,
.md-typeset .briefcase-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--briefcase-outline);
		mask-image: var(--md-admonition-icon--briefcase-outline);
}



:root {
	--md-admonition-icon--broom: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.36 2.72 1.42 1.42-5.72 5.71c1.07 1.54 1.22 3.39.32 4.59L9.06 8.12c1.2-.9 3.05-.75 4.59.32l5.71-5.72M5.93 17.57c-2.01-2.01-3.24-4.41-3.58-6.65l4.88-2.09 7.44 7.44-2.09 4.88c-2.24-.34-4.64-1.57-6.65-3.58Z"/></svg>')
}
.md-typeset .admonition.broom,
.md-typeset details.broom {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .broom > .admonition-title,
.md-typeset .broom > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .broom > .admonition-title::before,
.md-typeset .broom > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--broom);
		mask-image: var(--md-admonition-icon--broom);
}



:root {
	--md-admonition-icon--bug-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-2.81c-.45-.8-1.07-1.5-1.82-2L17 4.41 15.59 3l-2.17 2.17a6.002 6.002 0 0 0-2.83 0L8.41 3 7 4.41 8.62 6c-.75.5-1.36 1.21-1.81 2H4v2h2.09c-.06.33-.09.66-.09 1v1H4v2h2v1c0 .34.03.67.09 1H4v2h2.81A5.988 5.988 0 0 0 15 20.18c.91-.52 1.67-1.28 2.19-2.18H20v-2h-2.09c.06-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.03-.67-.09-1H20V8m-4 7a4 4 0 0 1-4 4 4 4 0 0 1-4-4v-4a4 4 0 0 1 4-4 4 4 0 0 1 4 4v4m-2-5v2h-4v-2h4m-4 4h4v2h-4v-2Z"/></svg>')
}
.md-typeset .admonition.bug-outline,
.md-typeset details.bug-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bug-outline > .admonition-title,
.md-typeset .bug-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bug-outline > .admonition-title::before,
.md-typeset .bug-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bug-outline);
		mask-image: var(--md-admonition-icon--bug-outline);
}



:root {
	--md-admonition-icon--bullhorn-variant-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2v2L4 8V6H2v12h2v-2l2 .5v2C6 20.4 7.6 22 9.5 22s3.5-1.6 3.5-3.5v-.2l7 1.7v2h2V2h-2m-9 16.5c0 .8-.7 1.5-1.5 1.5S8 19.3 8 18.5V17l3 .8v.7m9-.5L4 14v-4l16-4v12Z"/></svg>')
}
.md-typeset .admonition.bullhorn-variant-outline,
.md-typeset details.bullhorn-variant-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bullhorn-variant-outline > .admonition-title,
.md-typeset .bullhorn-variant-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bullhorn-variant-outline > .admonition-title::before,
.md-typeset .bullhorn-variant-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bullhorn-variant-outline);
		mask-image: var(--md-admonition-icon--bullhorn-variant-outline);
}



:root {
	--md-admonition-icon--bullseye-arrow: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10c0-1.16-.21-2.31-.61-3.39l-1.6 1.6c.14.59.21 1.19.21 1.79a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8c.6 0 1.2.07 1.79.21L15.4 2.6C14.31 2.21 13.16 2 12 2m7 0-4 4v1.5l-2.55 2.55C12.3 10 12.15 10 12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-.15 0-.3-.05-.45L16.5 9H18l4-4h-3V2m-7 4a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6h-2a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4V6Z"/></svg>')
}
.md-typeset .admonition.bullseye-arrow,
.md-typeset details.bullseye-arrow {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bullseye-arrow > .admonition-title,
.md-typeset .bullseye-arrow > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bullseye-arrow > .admonition-title::before,
.md-typeset .bullseye-arrow > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bullseye-arrow);
		mask-image: var(--md-admonition-icon--bullseye-arrow);
}



:root {
	--md-admonition-icon--bullseye: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m0 2a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.bullseye,
.md-typeset details.bullseye {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .bullseye > .admonition-title,
.md-typeset .bullseye > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .bullseye > .admonition-title::before,
.md-typeset .bullseye > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--bullseye);
		mask-image: var(--md-admonition-icon--bullseye);
}



:root {
	--md-admonition-icon--butterfly-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 21h-2V6L9.03 3.97 10 3l2 2 2-2 1 1-2 2v15m1-12V7a5.002 5.002 0 0 1 6 8v2c0 2.21-1.79 4-4 4-.73 0-1.41-.19-2-.54v-2c.59.35 1.27.54 2 .54 1.1 0 2-.9 2-2v-3.17c1.17-.41 2-1.52 2-2.83 0-1.65-1.33-3-3-3-1.12 0-2.16.37-3 1m-4 0c-.84-.63-1.87-1-3-1-1.67 0-3 1.35-3 3 0 1.31.84 2.42 2 2.83V17c0 1.1.9 2 2 2 .73 0 1.41-.19 2-.54v2c-.59.35-1.27.54-2 .54-2.21 0-4-1.79-4-4v-2a5.002 5.002 0 0 1 6-8v2m-1 2L7.5 9.5 6 11l1.5 1.5L9 11m9 0-1.5-1.5L15 11l1.5 1.5L18 11Z"/></svg>')
}
.md-typeset .admonition.butterfly-outline,
.md-typeset details.butterfly-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .butterfly-outline > .admonition-title,
.md-typeset .butterfly-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .butterfly-outline > .admonition-title::before,
.md-typeset .butterfly-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--butterfly-outline);
		mask-image: var(--md-admonition-icon--butterfly-outline);
}



:root {
	--md-admonition-icon--cable-data: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.05 3.5a3.519 3.519 0 0 0 0 4.97l8.49 8.48c.58.59.58 1.55 0 2.12-.59.59-1.54.59-2.13 0l-4.24-4.24 1.06-1.06-3.53-3.54-.36.36-1.41-1.42a1.02 1.02 0 0 0-1.43 0l-1.4 1.42c-.39.41-.39 1.02 0 1.41l1.4 1.41-.34.36L6.7 17.3l1.06-1.06L12 20.5a3.531 3.531 0 0 0 4.95 0c1.37-1.38 1.37-3.6 0-4.96L8.46 7.05c-.58-.59-.58-1.55 0-2.12.59-.59 1.54-.59 2.13 0l4.24 4.24-1.06 1.06 3.53 3.54.36-.36 1.41 1.42c.39.39 1.03.39 1.43 0l1.4-1.42c.39-.41.39-1.02 0-1.41l-1.4-1.41.34-.36L17.3 6.7l-1.06 1.06L12 3.5a3.531 3.531 0 0 0-4.95 0m-4.24 7.79 1.41-1.41 1.42 1.41-1.42 1.42m14.14 0 1.42-1.42 1.41 1.42-1.41 1.41Z"/></svg>')
}
.md-typeset .admonition.cable-data,
.md-typeset details.cable-data {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cable-data > .admonition-title,
.md-typeset .cable-data > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cable-data > .admonition-title::before,
.md-typeset .cable-data > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cable-data);
		mask-image: var(--md-admonition-icon--cable-data);
}



:root {
	--md-admonition-icon--cactus: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 16v5h-4v-3H9a3 3 0 0 1-3-3v-3a1 1 0 0 1 1-1 1 1 0 0 1 1 1v3c0 .56.45 1 1 1h1V6a2 2 0 0 1 2-2 2 2 0 0 1 2 2v8h1a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1 1 1 0 0 1 1 1v2a3 3 0 0 1-3 3h-1Z"/></svg>')
}
.md-typeset .admonition.cactus,
.md-typeset details.cactus {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cactus > .admonition-title,
.md-typeset .cactus > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cactus > .admonition-title::before,
.md-typeset .cactus > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cactus);
		mask-image: var(--md-admonition-icon--cactus);
}



:root {
	--md-admonition-icon--calculator: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v4h10V4H7m0 6v2h2v-2H7m4 0v2h2v-2h-2m4 0v2h2v-2h-2m-8 4v2h2v-2H7m4 0v2h2v-2h-2m4 0v2h2v-2h-2m-8 4v2h2v-2H7m4 0v2h2v-2h-2m4 0v2h2v-2h-2Z"/></svg>')
}
.md-typeset .admonition.calculator,
.md-typeset details.calculator {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .calculator > .admonition-title,
.md-typeset .calculator > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .calculator > .admonition-title::before,
.md-typeset .calculator > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--calculator);
		mask-image: var(--md-admonition-icon--calculator);
}



:root {
	--md-admonition-icon--calendar: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V8h14m-3-7v2H8V1H6v2H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-1V1m-1 11h-5v5h5v-5Z"/></svg>')
}
.md-typeset .admonition.calendar,
.md-typeset details.calendar {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .calendar > .admonition-title,
.md-typeset .calendar > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .calendar > .admonition-title::before,
.md-typeset .calendar > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--calendar);
		mask-image: var(--md-admonition-icon--calendar);
}



:root {
	--md-admonition-icon--camera-iris: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.73 15-3.9 6.76a9.984 9.984 0 0 0 8.49-2.01l-3.66-6.35M2.46 15c.92 2.92 3.15 5.26 5.99 6.34L12.12 15m-3.58-3-3.9-6.75A9.855 9.855 0 0 0 2 12c0 .68.07 1.35.2 2h7.49m12.11-4h-7.49l.29.5 4.76 8.25A9.93 9.93 0 0 0 22 12c0-.69-.07-1.36-.2-2m-.26-1c-.92-2.93-3.15-5.26-5.99-6.34L11.88 9M9.4 10.5l4.77-8.26C13.47 2.09 12.75 2 12 2c-2.4 0-4.6.84-6.32 2.25l3.66 6.35.06-.1Z"/></svg>')
}
.md-typeset .admonition.camera-iris,
.md-typeset details.camera-iris {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .camera-iris > .admonition-title,
.md-typeset .camera-iris > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .camera-iris > .admonition-title::before,
.md-typeset .camera-iris > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--camera-iris);
		mask-image: var(--md-admonition-icon--camera-iris);
}



:root {
	--md-admonition-icon--campfire: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.9 18.5 6 1.6-.4 1.9-9.4-2.5L2.7 22l-.5-1.9 6-1.6-6.1-1.6.5-1.9 9.4 2.5 9.4-2.5.5 1.9-6 1.6m.17-10.58c-.16-.22-.36-.42-.57-.59-.45-.43-1-.74-1.44-1.2C13 5.08 12.79 3.34 13.44 2c-.65.17-1.26.54-1.77.95C9.84 4.46 9.11 7.1 10 9.38c0 .07.04.15.04.24 0 .16-.11.3-.25.38a.512.512 0 0 1-.57-.23c-.8-1.03-.93-2.51-.38-3.7-1.19.99-1.84 2.65-1.73 4.22.02.36.07.71.19 1.07.11.44.29.87.52 1.25.75 1.25 2.08 2.15 3.5 2.33 1.52.2 3.14-.09 4.31-1.15 1.3-1.2 1.77-3.12 1.08-4.79l-.1-.17c-.14-.33-.33-.63-.57-.9l.03-.01m-2.24 4.55c-.2.18-.52.36-.78.44-.79.28-1.59-.12-2.05-.6.84-.2 1.34-.84 1.5-1.48.11-.58-.11-1.05-.21-1.61-.08-.53-.07-.99.13-1.49.13.27.27.55.44.77.55.72 1.41 1.04 1.59 2 .02.13.05.22.05.33 0 .6-.24 1.24-.68 1.64"/></svg>')
}
.md-typeset .admonition.campfire,
.md-typeset details.campfire {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .campfire > .admonition-title,
.md-typeset .campfire > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .campfire > .admonition-title::before,
.md-typeset .campfire > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--campfire);
		mask-image: var(--md-admonition-icon--campfire);
}



:root {
	--md-admonition-icon--cancel: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m0 2c-1.9 0-3.6.6-4.9 1.7l11.2 11.2c1-1.4 1.7-3.1 1.7-4.9 0-4.4-3.6-8-8-8m4.9 14.3L5.7 7.1C4.6 8.4 4 10.1 4 12c0 4.4 3.6 8 8 8 1.9 0 3.6-.6 4.9-1.7Z"/></svg>')
}
.md-typeset .admonition.cancel,
.md-typeset details.cancel {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cancel > .admonition-title,
.md-typeset .cancel > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cancel > .admonition-title::before,
.md-typeset .cancel > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cancel);
		mask-image: var(--md-admonition-icon--cancel);
}



:root {
	--md-admonition-icon--candy: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.54 8.46c1.96 1.96 1.96 5.12 0 7.08s-5.12 1.96-7.07 0-1.97-5.12 0-7.08 5.11-1.96 7.07 0m3.93-3.91s-.97.12-2.04.81a5.243 5.243 0 0 0-1.5-2.94 4.027 4.027 0 0 0-1.1 3.92c1.39.36 2.47 1.44 2.83 2.83 1.12.3 2.68.15 3.92-1.1a5.247 5.247 0 0 0-2.9-1.49c.39-.58.7-1.25.79-2.03M4.53 19.45s.97-.12 2.04-.81c.15 1.04.65 2.09 1.5 2.94 1.25-1.24 1.4-2.8 1.1-3.92a3.939 3.939 0 0 1-2.83-2.83c-1.12-.3-2.68-.15-3.92 1.1.84.84 1.87 1.34 2.9 1.49-.39.58-.7 1.26-.79 2.03Z"/></svg>')
}
.md-typeset .admonition.candy,
.md-typeset details.candy {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .candy > .admonition-title,
.md-typeset .candy > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .candy > .admonition-title::before,
.md-typeset .candy > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--candy);
		mask-image: var(--md-admonition-icon--candy);
}



:root {
	--md-admonition-icon--cannabis: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 22v-4.65c-.5.78-1.5 1.74-3.47 2.46 0 0 .5-1.71 1.91-2.86-1.3.28-3.26.24-5.94-.95 0 0 2.47-1.41 5.28-1.03C7.69 14 5.7 12.08 4.17 8.11c0 0 4.5 1.23 6.74 5.03C8.88 8.24 12 2 12 2c2.43 5.47 1.91 9.1 1.12 11.1 2.25-3.77 6.71-4.99 6.71-4.99-1.53 3.97-3.52 5.89-5.11 6.86C17.53 14.59 20 16 20 16c-2.68 1.19-4.64 1.23-5.94.95 1.41 1.15 1.91 2.86 1.91 2.86-1.97-.72-2.97-1.68-3.47-2.46V22h-1Z"/></svg>')
}
.md-typeset .admonition.cannabis,
.md-typeset details.cannabis {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cannabis > .admonition-title,
.md-typeset .cannabis > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cannabis > .admonition-title::before,
.md-typeset .cannabis > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cannabis);
		mask-image: var(--md-admonition-icon--cannabis);
}



:root {
	--md-admonition-icon--car-convertible: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 6-1 .75L17.5 10h-4V8.5H12V10H3c-1.11 0-2 .89-2 2v3h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2l-3-4M6 13.5A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5Z"/></svg>')
}
.md-typeset .admonition.car-convertible,
.md-typeset details.car-convertible {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .car-convertible > .admonition-title,
.md-typeset .car-convertible > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .car-convertible > .admonition-title::before,
.md-typeset .car-convertible > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--car-convertible);
		mask-image: var(--md-admonition-icon--car-convertible);
}



:root {
	--md-admonition-icon--car-pickup: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6h-5.5v4H1v5h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-3c0-1.11-.89-2-2-2h-2l-3-4m-4 1.5h3.5l1.96 2.5H12V7.5m-6 6A1.5 1.5 0 0 1 7.5 15 1.5 1.5 0 0 1 6 16.5 1.5 1.5 0 0 1 4.5 15 1.5 1.5 0 0 1 6 13.5m12 0a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5Z"/></svg>')
}
.md-typeset .admonition.car-pickup,
.md-typeset details.car-pickup {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .car-pickup > .admonition-title,
.md-typeset .car-pickup > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .car-pickup > .admonition-title::before,
.md-typeset .car-pickup > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--car-pickup);
		mask-image: var(--md-admonition-icon--car-pickup);
}



:root {
	--md-admonition-icon--card-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M4 6v12h16V6H4Z"/></svg>')
}
.md-typeset .admonition.card-outline,
.md-typeset details.card-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .card-outline > .admonition-title,
.md-typeset .card-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .card-outline > .admonition-title::before,
.md-typeset .card-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--card-outline);
		mask-image: var(--md-admonition-icon--card-outline);
}



:root {
	--md-admonition-icon--card: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2Z"/></svg>')
}
.md-typeset .admonition.card,
.md-typeset details.card {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .card > .admonition-title,
.md-typeset .card > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .card > .admonition-title::before,
.md-typeset .card > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--card);
		mask-image: var(--md-admonition-icon--card);
}



:root {
	--md-admonition-icon--cards-club-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.6 9.5c.2-.6.4-1.3.4-2 0-3-2.2-5.5-5-5.5S7 4.5 7 7.5c0 .7.1 1.4.4 2-2.5.1-4.4 1.9-4.4 4.3C3 16.3 5 18 7.5 18c0 0 2.5 0 3.5-1 0 0 .3 2-2 5h6c-2.3-3-2-5-2-5 1 1 3.5 1 3.5 1 2.5 0 4.5-1.7 4.5-4.2 0-2.4-1.9-4.2-4.4-4.3m-.1 6.5S14 16 13 15h-2c-1 1-3.5 1-3.5 1-1.2 0-2.5-.7-2.5-2.2 0-1.3 1.1-2.3 2.5-2.3.3 0 .8.1 1.3.2.1 0 .2.1.3.1l.9-1.7c-.2-.2-.3-.4-.4-.6-.4-.6-.6-1.2-.6-2C9 5.6 10.3 4 12 4s3 1.6 3 3.5c0 .8-.2 1.5-.6 2.1-.1.2-.2.3-.3.5l.9 1.7c.1 0 .2-.1.3-.1.4-.1.9-.2 1.3-.2 1.4 0 2.5 1 2.5 2.3-.1 1.5-1.4 2.2-2.6 2.2Z"/></svg>')
}
.md-typeset .admonition.cards-club-outline,
.md-typeset details.cards-club-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cards-club-outline > .admonition-title,
.md-typeset .cards-club-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cards-club-outline > .admonition-title::before,
.md-typeset .cards-club-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cards-club-outline);
		mask-image: var(--md-admonition-icon--cards-club-outline);
}



:root {
	--md-admonition-icon--cards-heart-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.1 18.55-.1.1-.11-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04 1 3.57 2.36h1.86C13.46 6 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05M16.5 3c-1.74 0-3.41.81-4.5 2.08C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.41 2 8.5c0 3.77 3.4 6.86 8.55 11.53L12 21.35l1.45-1.32C18.6 15.36 22 12.27 22 8.5 22 5.41 19.58 3 16.5 3Z"/></svg>')
}
.md-typeset .admonition.cards-heart-outline,
.md-typeset details.cards-heart-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cards-heart-outline > .admonition-title,
.md-typeset .cards-heart-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cards-heart-outline > .admonition-title::before,
.md-typeset .cards-heart-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cards-heart-outline);
		mask-image: var(--md-admonition-icon--cards-heart-outline);
}



:root {
	--md-admonition-icon--cards-spade-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17s.3 2-2 5h6c-2.3-3-2-5-2-5s1 1 3 1 4-2 4-4c0-5-5-7-8-12-3 5-8 7-8 12 0 2 2 4 4 4s3-1 3-1m2-3h-2s-1 2-3 2c-.9 0-2-1.1-2-2-.2-3 3.9-5.8 6-8.6 2.1 2.7 6.2 5.5 6 8.6 0 .9-1.1 2-2 2-2 0-3-2-3-2Z"/></svg>')
}
.md-typeset .admonition.cards-spade-outline,
.md-typeset details.cards-spade-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cards-spade-outline > .admonition-title,
.md-typeset .cards-spade-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cards-spade-outline > .admonition-title::before,
.md-typeset .cards-spade-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cards-spade-outline);
		mask-image: var(--md-admonition-icon--cards-spade-outline);
}



:root {
	--md-admonition-icon--cellphone: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 19H7V5h10m0-4H7c-1.11 0-2 .89-2 2v18a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.cellphone,
.md-typeset details.cellphone {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cellphone > .admonition-title,
.md-typeset .cellphone > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cellphone > .admonition-title::before,
.md-typeset .cellphone > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cellphone);
		mask-image: var(--md-admonition-icon--cellphone);
}



:root {
	--md-admonition-icon--certificate-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13 21 2-1 2 1v-7h-4m4-5V7l-2 1-2-1v2l-2 1 2 1v2l2-1 2 1v-2l2-1m1-7H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7v-2H4V5h16v10h-1v2h1a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-9 5H5V6h6m-2 5H5V9h4m2 5H5v-2h6Z"/></svg>')
}
.md-typeset .admonition.certificate-outline,
.md-typeset details.certificate-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .certificate-outline > .admonition-title,
.md-typeset .certificate-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .certificate-outline > .admonition-title::before,
.md-typeset .certificate-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--certificate-outline);
		mask-image: var(--md-admonition-icon--certificate-outline);
}



:root {
	--md-admonition-icon--chart-bar-stacked: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 21H2V3h2v16h2v-2h4v2h2v-3h4v3h2v-2h4v4m-4-7h4v2h-4v-2m-6-8h4v3h-4V6m4 9h-4v-5h4v5M6 10h4v2H6v-2m4 6H6v-3h4v3Z"/></svg>')
}
.md-typeset .admonition.chart-bar-stacked,
.md-typeset details.chart-bar-stacked {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-bar-stacked > .admonition-title,
.md-typeset .chart-bar-stacked > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-bar-stacked > .admonition-title::before,
.md-typeset .chart-bar-stacked > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-bar-stacked);
		mask-image: var(--md-admonition-icon--chart-bar-stacked);
}



:root {
	--md-admonition-icon--chart-bar: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 21H2V3h2v16h2v-9h4v9h2V6h4v13h2v-5h4v7Z"/></svg>')
}
.md-typeset .admonition.chart-bar,
.md-typeset details.chart-bar {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-bar > .admonition-title,
.md-typeset .chart-bar > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-bar > .admonition-title::before,
.md-typeset .chart-bar > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-bar);
		mask-image: var(--md-admonition-icon--chart-bar);
}



:root {
	--md-admonition-icon--chart-bell-curve: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.96 11.31C10.82 8.1 11.5 6 13 6s2.18 2.1 3.04 5.31C17 14.92 18.1 19 22 19v-2c-2.2 0-3-2.46-4.03-6.2C17.08 7.46 16.15 4 13 4c-3.15 0-4.08 3.46-4.97 6.8C7.03 14.54 6.2 17 4 17V2H2v20h20v-2H4v-1c3.9 0 5-4.08 5.96-7.69Z"/></svg>')
}
.md-typeset .admonition.chart-bell-curve,
.md-typeset details.chart-bell-curve {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-bell-curve > .admonition-title,
.md-typeset .chart-bell-curve > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-bell-curve > .admonition-title::before,
.md-typeset .chart-bell-curve > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-bell-curve);
		mask-image: var(--md-admonition-icon--chart-bell-curve);
}



:root {
	--md-admonition-icon--chart-bubble: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.2 11.2c1.77 0 3.2 1.43 3.2 3.2 0 1.77-1.43 3.2-3.2 3.2-1.77 0-3.2-1.43-3.2-3.2 0-1.77 1.43-3.2 3.2-3.2m7.6 4.8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m.4-12A4.8 4.8 0 0 1 20 8.8c0 2.65-2.15 4.8-4.8 4.8a4.8 4.8 0 0 1-4.8-4.8c0-2.65 2.15-4.8 4.8-4.8Z"/></svg>')
}
.md-typeset .admonition.chart-bubble,
.md-typeset details.chart-bubble {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-bubble > .admonition-title,
.md-typeset .chart-bubble > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-bubble > .admonition-title::before,
.md-typeset .chart-bubble > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-bubble);
		mask-image: var(--md-admonition-icon--chart-bubble);
}



:root {
	--md-admonition-icon--chart-donut: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.5 2.54l2.62 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95M12 19a7 7 0 0 1-7-7c0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95a10 10 0 0 0 10 10c3.3 0 6.23-1.61 8.05-4.09l-2.6-1.53A6.89 6.89 0 0 1 12 19Z"/></svg>')
}
.md-typeset .admonition.chart-donut,
.md-typeset details.chart-donut {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-donut > .admonition-title,
.md-typeset .chart-donut > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-donut > .admonition-title::before,
.md-typeset .chart-donut > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-donut);
		mask-image: var(--md-admonition-icon--chart-donut);
}



:root {
	--md-admonition-icon--chart-gantt: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5h8V2h2v20h-2v-4H6v-3h4v-2H4v-3h6V8H2V5m12 0h3v3h-3V5m0 5h5v3h-5v-3m0 5h8v3h-8v-3Z"/></svg>')
}
.md-typeset .admonition.chart-gantt,
.md-typeset details.chart-gantt {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-gantt > .admonition-title,
.md-typeset .chart-gantt > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-gantt > .admonition-title::before,
.md-typeset .chart-gantt > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-gantt);
		mask-image: var(--md-admonition-icon--chart-gantt);
}



:root {
	--md-admonition-icon--chart-histogram: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h2v10h4V7h4v4h4v4h4v6H3V3Z"/></svg>')
}
.md-typeset .admonition.chart-histogram,
.md-typeset details.chart-histogram {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-histogram > .admonition-title,
.md-typeset .chart-histogram > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-histogram > .admonition-title::before,
.md-typeset .chart-histogram > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-histogram);
		mask-image: var(--md-admonition-icon--chart-histogram);
}



:root {
	--md-admonition-icon--chart-line: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16 11.78 4.24-7.33 1.73 1-5.23 9.05-6.51-3.75L5.46 19H22v2H2V3h2v14.54L9.5 8l6.5 3.78Z"/></svg>')
}
.md-typeset .admonition.chart-line,
.md-typeset details.chart-line {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-line > .admonition-title,
.md-typeset .chart-line > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-line > .admonition-title::before,
.md-typeset .chart-line > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-line);
		mask-image: var(--md-admonition-icon--chart-line);
}



:root {
	--md-admonition-icon--chart-pie-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11h6.95q-.37-2.75-2.29-4.66Q15.75 4.43 13 4.05m-2 15.9V4.05q-3 .38-5 2.64Q4 8.95 4 12t2 5.31q2 2.27 5 2.64m2 0q2.75-.35 4.68-2.27 1.92-1.93 2.27-4.68H13m-1 9q-2.07 0-3.9-.79-1.82-.78-3.17-2.13-1.35-1.35-2.14-3.18Q2 14.08 2 12t.79-3.9q.79-1.82 2.14-3.17Q6.28 3.58 8.1 2.79 9.93 2 12 2t3.89.79q1.81.79 3.17 2.15 1.37 1.36 2.15 3.17Q22 9.93 22 12q0 2.05-.79 3.88-.78 1.82-2.13 3.18-1.35 1.37-3.18 2.15-1.82.79-3.9.79Z"/></svg>')
}
.md-typeset .admonition.chart-pie-outline,
.md-typeset details.chart-pie-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-pie-outline > .admonition-title,
.md-typeset .chart-pie-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-pie-outline > .admonition-title::before,
.md-typeset .chart-pie-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-pie-outline);
		mask-image: var(--md-admonition-icon--chart-pie-outline);
}



:root {
	--md-admonition-icon--chart-sankey-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4v2H4V4H2v8h2v-2c4.16 0 5.92 2.11 7.77 4.34S15.65 19 20 19v2h2v-6h-2v2c-3.41 0-4.93-1.83-6.69-3.94C11.34 10.69 9.1 8 4 8h16v2h2V4Z"/></svg>')
}
.md-typeset .admonition.chart-sankey-variant,
.md-typeset details.chart-sankey-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-sankey-variant > .admonition-title,
.md-typeset .chart-sankey-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-sankey-variant > .admonition-title::before,
.md-typeset .chart-sankey-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-sankey-variant);
		mask-image: var(--md-admonition-icon--chart-sankey-variant);
}



:root {
	--md-admonition-icon--chart-scatter-plot-hexbin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2V2m12 12.5L12 18H7.94l-2.02-3.5L7.94 11H12l2 3.5m.08-8L12.06 10H8L6 6.5 8 3h4.06l2.02 3.5m7.17 4L19.23 14h-4.04l-2.02-3.5L15.19 7h4.04l2.02 3.5Z"/></svg>')
}
.md-typeset .admonition.chart-scatter-plot-hexbin,
.md-typeset details.chart-scatter-plot-hexbin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-scatter-plot-hexbin > .admonition-title,
.md-typeset .chart-scatter-plot-hexbin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-scatter-plot-hexbin > .admonition-title::before,
.md-typeset .chart-scatter-plot-hexbin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-scatter-plot-hexbin);
		mask-image: var(--md-admonition-icon--chart-scatter-plot-hexbin);
}



:root {
	--md-admonition-icon--chart-scatter-plot: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2V2m7 8a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m4-8a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m5 10a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3Z"/></svg>')
}
.md-typeset .admonition.chart-scatter-plot,
.md-typeset details.chart-scatter-plot {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-scatter-plot > .admonition-title,
.md-typeset .chart-scatter-plot > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-scatter-plot > .admonition-title::before,
.md-typeset .chart-scatter-plot > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-scatter-plot);
		mask-image: var(--md-admonition-icon--chart-scatter-plot);
}



:root {
	--md-admonition-icon--chart-timeline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2h2v18h18v2H2V2m5 8h10v3H7v-3m4 5h10v3H11v-3M6 4h16v4h-2V6H8v2H6V4Z"/></svg>')
}
.md-typeset .admonition.chart-timeline,
.md-typeset details.chart-timeline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-timeline > .admonition-title,
.md-typeset .chart-timeline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-timeline > .admonition-title::before,
.md-typeset .chart-timeline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-timeline);
		mask-image: var(--md-admonition-icon--chart-timeline);
}



:root {
	--md-admonition-icon--chart-tree: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 6h8v16h-8V6M2 4h20V2H2v2m0 4h10V6H2v2m7 14h3V10H9v12m-7 0h5V10H2v12Z"/></svg>')
}
.md-typeset .admonition.chart-tree,
.md-typeset details.chart-tree {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chart-tree > .admonition-title,
.md-typeset .chart-tree > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chart-tree > .admonition-title::before,
.md-typeset .chart-tree > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chart-tree);
		mask-image: var(--md-admonition-icon--chart-tree);
}



:root {
	--md-admonition-icon--check: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 7 9 19l-5.5-5.5 1.41-1.41L9 16.17 19.59 5.59 21 7Z"/></svg>')
}
.md-typeset .admonition.check,
.md-typeset details.check {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .check > .admonition-title,
.md-typeset .check > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .check > .admonition-title::before,
.md-typeset .check > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--check);
		mask-image: var(--md-admonition-icon--check);
}



:root {
	--md-admonition-icon--checkbox-blank-circle-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2Z"/></svg>')
}
.md-typeset .admonition.checkbox-blank-circle-outline,
.md-typeset details.checkbox-blank-circle-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .checkbox-blank-circle-outline > .admonition-title,
.md-typeset .checkbox-blank-circle-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .checkbox-blank-circle-outline > .admonition-title::before,
.md-typeset .checkbox-blank-circle-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--checkbox-blank-circle-outline);
		mask-image: var(--md-admonition-icon--checkbox-blank-circle-outline);
}



:root {
	--md-admonition-icon--cheese: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 17.5c0-.83.67-1.5 1.5-1.5.29 0 .56.09.79.23l7.46-4.3c-.4-.71-.85-1.38-1.34-2.03a.92.92 0 0 1-.41.1c-.55 0-1-.45-1-1 0-.2.08-.38.18-.54A17.742 17.742 0 0 0 12 4.25C11.85 5.24 11 6 10 6a2 2 0 0 1-2-2c0-.28.06-.55.16-.79C7.3 3.08 6.41 3 5.5 3c-.17 0-.33 0-.5.03v6.02a2.5 2.5 0 0 1 0 4.9V21l6-3.46v-.04M14 9a2 2 0 1 1 0 4c-1.11 0-2-.89-2-2s.9-2 2-2m-5 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m0-6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1Z"/></svg>')
}
.md-typeset .admonition.cheese,
.md-typeset details.cheese {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cheese > .admonition-title,
.md-typeset .cheese > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cheese > .admonition-title::before,
.md-typeset .cheese > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cheese);
		mask-image: var(--md-admonition-icon--cheese);
}



:root {
	--md-admonition-icon--chevron-double-down: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 5.59 18 7l-6 6-6-6 1.41-1.41L12 10.17l4.59-4.58m0 6L18 13l-6 6-6-6 1.41-1.41L12 16.17l4.59-4.58Z"/></svg>')
}
.md-typeset .admonition.chevron-double-down,
.md-typeset details.chevron-double-down {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-double-down > .admonition-title,
.md-typeset .chevron-double-down > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-double-down > .admonition-title::before,
.md-typeset .chevron-double-down > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-double-down);
		mask-image: var(--md-admonition-icon--chevron-double-down);
}



:root {
	--md-admonition-icon--chevron-double-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.41 7.41 17 6l-6 6 6 6 1.41-1.41L13.83 12l4.58-4.59m-6 0L11 6l-6 6 6 6 1.41-1.41L7.83 12l4.58-4.59Z"/></svg>')
}
.md-typeset .admonition.chevron-double-left,
.md-typeset details.chevron-double-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-double-left > .admonition-title,
.md-typeset .chevron-double-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-double-left > .admonition-title::before,
.md-typeset .chevron-double-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-double-left);
		mask-image: var(--md-admonition-icon--chevron-double-left);
}



:root {
	--md-admonition-icon--chevron-double-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.59 7.41 7 6l6 6-6 6-1.41-1.41L10.17 12 5.59 7.41m6 0L13 6l6 6-6 6-1.41-1.41L16.17 12l-4.58-4.59Z"/></svg>')
}
.md-typeset .admonition.chevron-double-right,
.md-typeset details.chevron-double-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-double-right > .admonition-title,
.md-typeset .chevron-double-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-double-right > .admonition-title::before,
.md-typeset .chevron-double-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-double-right);
		mask-image: var(--md-admonition-icon--chevron-double-right);
}



:root {
	--md-admonition-icon--chevron-double-up: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 18.41 6 17l6-6 6 6-1.41 1.41L12 13.83l-4.59 4.58m0-6L6 11l6-6 6 6-1.41 1.41L12 7.83l-4.59 4.58Z"/></svg>')
}
.md-typeset .admonition.chevron-double-up,
.md-typeset details.chevron-double-up {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-double-up > .admonition-title,
.md-typeset .chevron-double-up > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-double-up > .admonition-title::before,
.md-typeset .chevron-double-up > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-double-up);
		mask-image: var(--md-admonition-icon--chevron-double-up);
}



:root {
	--md-admonition-icon--chevron-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41 16.58 10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.42Z"/></svg>')
}
.md-typeset .admonition.chevron-left,
.md-typeset details.chevron-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-left > .admonition-title,
.md-typeset .chevron-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-left > .admonition-title::before,
.md-typeset .chevron-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-left);
		mask-image: var(--md-admonition-icon--chevron-left);
}



:root {
	--md-admonition-icon--chevron-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.59 16.58 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.42Z"/></svg>')
}
.md-typeset .admonition.chevron-right,
.md-typeset details.chevron-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-right > .admonition-title,
.md-typeset .chevron-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-right > .admonition-title::before,
.md-typeset .chevron-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-right);
		mask-image: var(--md-admonition-icon--chevron-right);
}



:root {
	--md-admonition-icon--chevron-triple-down: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 14.58 12 19.17l4.59-4.59L18 16l-6 6-6-6 1.41-1.42m0-6L12 13.17l4.59-4.59L18 10l-6 6-6-6 1.41-1.42m0-6L12 7.17l4.59-4.59L18 4l-6 6-6-6 1.41-1.42Z"/></svg>')
}
.md-typeset .admonition.chevron-triple-down,
.md-typeset details.chevron-triple-down {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-triple-down > .admonition-title,
.md-typeset .chevron-triple-down > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-triple-down > .admonition-title::before,
.md-typeset .chevron-triple-down > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-triple-down);
		mask-image: var(--md-admonition-icon--chevron-triple-down);
}



:root {
	--md-admonition-icon--chevron-triple-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.42 7.41 4.83 12l4.59 4.59L8 18l-6-6 6-6 1.42 1.41m6 0L10.83 12l4.59 4.59L14 18l-6-6 6-6 1.42 1.41m6 0L16.83 12l4.59 4.59L20 18l-6-6 6-6 1.42 1.41Z"/></svg>')
}
.md-typeset .admonition.chevron-triple-left,
.md-typeset details.chevron-triple-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-triple-left > .admonition-title,
.md-typeset .chevron-triple-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-triple-left > .admonition-title::before,
.md-typeset .chevron-triple-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-triple-left);
		mask-image: var(--md-admonition-icon--chevron-triple-left);
}



:root {
	--md-admonition-icon--chevron-triple-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.58 16.59 19.17 12l-4.59-4.59L16 6l6 6-6 6-1.42-1.41m-6 0L13.17 12 8.58 7.41 10 6l6 6-6 6-1.42-1.41m-6 0L7.17 12 2.58 7.41 4 6l6 6-6 6-1.42-1.41Z"/></svg>')
}
.md-typeset .admonition.chevron-triple-right,
.md-typeset details.chevron-triple-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-triple-right > .admonition-title,
.md-typeset .chevron-triple-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-triple-right > .admonition-title::before,
.md-typeset .chevron-triple-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-triple-right);
		mask-image: var(--md-admonition-icon--chevron-triple-right);
}



:root {
	--md-admonition-icon--chevron-triple-up: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 9.42 12 4.83 7.41 9.42 6 8l6-6 6 6-1.41 1.42m0 6L12 10.83l-4.59 4.59L6 14l6-6 6 6-1.41 1.42m0 6L12 16.83l-4.59 4.59L6 20l6-6 6 6-1.41 1.42Z"/></svg>')
}
.md-typeset .admonition.chevron-triple-up,
.md-typeset details.chevron-triple-up {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-triple-up > .admonition-title,
.md-typeset .chevron-triple-up > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-triple-up > .admonition-title::before,
.md-typeset .chevron-triple-up > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-triple-up);
		mask-image: var(--md-admonition-icon--chevron-triple-up);
}



:root {
	--md-admonition-icon--chevron-up: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 15.41 12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41Z"/></svg>')
}
.md-typeset .admonition.chevron-up,
.md-typeset details.chevron-up {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chevron-up > .admonition-title,
.md-typeset .chevron-up > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chevron-up > .admonition-title::before,
.md-typeset .chevron-up > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chevron-up);
		mask-image: var(--md-admonition-icon--chevron-up);
}



:root {
	--md-admonition-icon--chili-hot-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.94 4.7A.99.99 0 0 0 10 4V2c.77 0 1.47.29 2 .77V4c.45 0 .81.3.94.7-1.11.38-2.01 1.35-2.51 2.62l-1.57-.9C9.38 5.6 10.11 5 10.94 4.7M10 11c0-.77.23-1.5.6-2.09l-1.34-.76C8.5 8.44 8 9.16 8 10v1c0 7.05 4.9 9.8 7.03 10.66C12.41 19.62 10 16.2 10 11M8.94 4.7A.99.99 0 0 0 8 4V2.77C7.47 2.29 6.77 2 6 2v2c.45 0 .81.3.94.7-.83.3-1.56.9-2.08 1.72l1.57.9c.5-1.27 1.4-2.24 2.51-2.62M6 11c0-.77.23-1.5.6-2.09l-1.34-.76C4.5 8.44 4 9.16 4 10v1c0 7.05 4.9 9.8 7.03 10.66C8.41 19.62 6 16.2 6 11m14-1v12s-8-2-8-11v-1c0-.73.4-1.37 1-1.72l1.25.72L16 8l1.75 1L19 8.28c.6.35 1 .99 1 1.72m-2 8.87v-7.42l-2-1.15-2 1.13c.17 4.01 2.23 6.26 4 7.44M12.73 6.63l1.52.87 1.75-1 1.75 1 1.52-.87c-.55-.97-1.36-1.69-2.3-1.98A2.996 2.996 0 0 0 14 2v2c.44 0 .8.29.94.69-.91.31-1.68 1.01-2.21 1.94Z"/></svg>')
}
.md-typeset .admonition.chili-hot-outline,
.md-typeset details.chili-hot-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chili-hot-outline > .admonition-title,
.md-typeset .chili-hot-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chili-hot-outline > .admonition-title::before,
.md-typeset .chili-hot-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chili-hot-outline);
		mask-image: var(--md-admonition-icon--chili-hot-outline);
}



:root {
	--md-admonition-icon--chili-mild-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.25 7.5-1.52-.87c.53-.93 1.3-1.63 2.21-1.94-.14-.4-.5-.69-.94-.69V2c1.54 0 2.79 1.16 2.97 2.65.94.29 1.75 1.01 2.3 1.98l-1.52.87-1.75-1-1.75 1M16 10v12s-8-2-8-11v-1c0-.73.4-1.37 1-1.72l1.25.72L12 8l1.75 1L15 8.28c.6.35 1 .99 1 1.72m-2 1.45-2-1.15-2 1.13c.17 4.01 2.23 6.26 4 7.44v-7.42Z"/></svg>')
}
.md-typeset .admonition.chili-mild-outline,
.md-typeset details.chili-mild-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .chili-mild-outline > .admonition-title,
.md-typeset .chili-mild-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .chili-mild-outline > .admonition-title::before,
.md-typeset .chili-mild-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--chili-mild-outline);
		mask-image: var(--md-admonition-icon--chili-mild-outline);
}



:root {
	--md-admonition-icon--circle-double: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6m0 2a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4Z"/></svg>')
}
.md-typeset .admonition.circle-double,
.md-typeset details.circle-double {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-double > .admonition-title,
.md-typeset .circle-double > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-double > .admonition-title::before,
.md-typeset .circle-double > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-double);
		mask-image: var(--md-admonition-icon--circle-double);
}



:root {
	--md-admonition-icon--circle-half-full: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2a8 8 0 0 1 8 8 8 8 0 0 1-8 8V4Z"/></svg>')
}
.md-typeset .admonition.circle-half-full,
.md-typeset details.circle-half-full {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-half-full > .admonition-title,
.md-typeset .circle-half-full > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-half-full > .admonition-title::before,
.md-typeset .circle-half-full > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-half-full);
		mask-image: var(--md-admonition-icon--circle-half-full);
}



:root {
	--md-admonition-icon--circle-half: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10V2Z"/></svg>')
}
.md-typeset .admonition.circle-half,
.md-typeset details.circle-half {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-half > .admonition-title,
.md-typeset .circle-half > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-half > .admonition-title::before,
.md-typeset .circle-half > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-half);
		mask-image: var(--md-admonition-icon--circle-half);
}



:root {
	--md-admonition-icon--circle-medium: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4Z"/></svg>')
}
.md-typeset .admonition.circle-medium,
.md-typeset details.circle-medium {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-medium > .admonition-title,
.md-typeset .circle-medium > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-medium > .admonition-title::before,
.md-typeset .circle-medium > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-medium);
		mask-image: var(--md-admonition-icon--circle-medium);
}



:root {
	--md-admonition-icon--circle-opacity: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10V8h2v2h-2m0 2v-2h-2v2h2m0-4V6h-2v2h2m-2-5.16V4h2c-.63-.46-1.29-.85-2-1.16M18 4v2h2c-.58-.75-1.25-1.42-2-2m2 2v2h1.16c-.31-.71-.7-1.37-1.16-2m2 6c0-.68-.07-1.35-.2-2H20v2h2m-6-6V4h-2v2h2m0 10h2v-2h-2v2m2 2h2v-2h-2v2m-2 2h2v-2h-2v2m-2 1.8c.7-.14 1.36-.36 2-.64V20h-2v1.8m4-7.8h2v-2h-2v2m-2-6h-2v2h2V8m4 8h1.16c.28-.64.5-1.3.64-2H20v2m-4-4h-2v2h2v-2m-4 6v-2h2v-2h-2v-2h2v-2h-2V8h2V6h-2V4h2V2.2c-.65-.13-1.31-.2-2-.2C6.5 2 2 6.5 2 12s4.5 10 10 10v-2h2v-2h-2m2 0h2v-2h-2v2Z"/></svg>')
}
.md-typeset .admonition.circle-opacity,
.md-typeset details.circle-opacity {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-opacity > .admonition-title,
.md-typeset .circle-opacity > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-opacity > .admonition-title::before,
.md-typeset .circle-opacity > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-opacity);
		mask-image: var(--md-admonition-icon--circle-opacity);
}



:root {
	--md-admonition-icon--circle-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8 8 8 0 0 1-8 8m0-18A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2Z"/></svg>')
}
.md-typeset .admonition.circle-outline,
.md-typeset details.circle-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-outline > .admonition-title,
.md-typeset .circle-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-outline > .admonition-title::before,
.md-typeset .circle-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-outline);
		mask-image: var(--md-admonition-icon--circle-outline);
}



:root {
	--md-admonition-icon--circle-small: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2c1.11 0 2-.89 2-2a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.circle-small,
.md-typeset details.circle-small {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circle-small > .admonition-title,
.md-typeset .circle-small > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circle-small > .admonition-title::before,
.md-typeset .circle-small > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circle-small);
		mask-image: var(--md-admonition-icon--circle-small);
}



:root {
	--md-admonition-icon--circular-saw: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7.86 6.25A6.997 6.997 0 0 1 13 4c3.5 0 6.44 2.61 6.93 6H22v2h-6a3 3 0 0 0-3-3 3 3 0 0 0-3 3H2v-2h.05c.2-2.27 1.09-4.34 2.45-6l3.36 2.25M6.73 7.89 5.06 6.77c-.53.98-.88 2.07-1 3.23h2.01c.11-.75.33-1.46.66-2.11m.67 7.51L6 14h5.79c.24.42.71.7 1.21.7s.97-.28 1.21-.7H20v1.4c-1.61-.98-1.54.35-1.54.35v1.96l-1.96 1.96c-.5-1.75-1.4-.77-1.4-.77l-1.4 1.4h-2.8c.98-1.61-.35-1.54-.35-1.54H8.59L6.63 16.8c1.75-.49.77-1.4.77-1.4Z"/></svg>')
}
.md-typeset .admonition.circular-saw,
.md-typeset details.circular-saw {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .circular-saw > .admonition-title,
.md-typeset .circular-saw > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .circular-saw > .admonition-title::before,
.md-typeset .circular-saw > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--circular-saw);
		mask-image: var(--md-admonition-icon--circular-saw);
}



:root {
	--md-admonition-icon--city-variant-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 23h-2v-2h2v2m4-2h-2v2h2v-2m-4-4h-2v2h2v-2m-8 4H5v2h2v-2m0-4H5v2h2v-2m12 0h-2v2h2v-2m-4-4h-2v2h2v-2m4 0h-2v2h2v-2m2-4a2 2 0 0 1 2 2v12h-2V11H11v12H9v-8H3v8H1v-8a2 2 0 0 1 2-2h6v-2a2 2 0 0 1 2-2V7a2 2 0 0 1 2-2h2V1h2v4h2a2 2 0 0 1 2 2v2m-2 0V7h-6v2h6Z"/></svg>')
}
.md-typeset .admonition.city-variant-outline,
.md-typeset details.city-variant-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .city-variant-outline > .admonition-title,
.md-typeset .city-variant-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .city-variant-outline > .admonition-title::before,
.md-typeset .city-variant-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--city-variant-outline);
		mask-image: var(--md-admonition-icon--city-variant-outline);
}



:root {
	--md-admonition-icon--clipboard-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h10V5h2v14H5V5h2v2Z"/></svg>')
}
.md-typeset .admonition.clipboard-outline,
.md-typeset details.clipboard-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .clipboard-outline > .admonition-title,
.md-typeset .clipboard-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .clipboard-outline > .admonition-title::before,
.md-typeset .clipboard-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--clipboard-outline);
		mask-image: var(--md-admonition-icon--clipboard-outline);
}



:root {
	--md-admonition-icon--clipboard-text-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4.18C14.25 1.44 12.53.64 11 1.2c-.86.3-1.5.96-1.82 1.8H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-7 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M7 7h10V5h2v14H5V5h2v2m10 4H7V9h10v2m-2 4H7v-2h8v2Z"/></svg>')
}
.md-typeset .admonition.clipboard-text-outline,
.md-typeset details.clipboard-text-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .clipboard-text-outline > .admonition-title,
.md-typeset .clipboard-text-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .clipboard-text-outline > .admonition-title::before,
.md-typeset .clipboard-text-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--clipboard-text-outline);
		mask-image: var(--md-admonition-icon--clipboard-text-outline);
}



:root {
	--md-admonition-icon--clock-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20a8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8 8 8 0 0 0 8 8m0-18a10 10 0 0 1 10 10 10 10 0 0 1-10 10C6.47 22 2 17.5 2 12A10 10 0 0 1 12 2m.5 5v5.25l4.5 2.67-.75 1.23L11 13V7h1.5Z"/></svg>')
}
.md-typeset .admonition.clock-outline,
.md-typeset details.clock-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .clock-outline > .admonition-title,
.md-typeset .clock-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .clock-outline > .admonition-title::before,
.md-typeset .clock-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--clock-outline);
		mask-image: var(--md-admonition-icon--clock-outline);
}



:root {
	--md-admonition-icon--clock-time-nine-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m.5 5v6H7v-1.5h4V7h1.5Z"/></svg>')
}
.md-typeset .admonition.clock-time-nine-outline,
.md-typeset details.clock-time-nine-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .clock-time-nine-outline > .admonition-title,
.md-typeset .clock-time-nine-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .clock-time-nine-outline > .admonition-title::before,
.md-typeset .clock-time-nine-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--clock-time-nine-outline);
		mask-image: var(--md-admonition-icon--clock-time-nine-outline);
}



:root {
	--md-admonition-icon--code-braces: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2H3v2h1a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h2v-2H8v-5a2 2 0 0 0-2-2 2 2 0 0 0 2-2V5h2V3m6 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2 2 2 0 0 1-2-2V5h-2V3h2Z"/></svg>')
}
.md-typeset .admonition.code-braces,
.md-typeset details.code-braces {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .code-braces > .admonition-title,
.md-typeset .code-braces > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .code-braces > .admonition-title::before,
.md-typeset .code-braces > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--code-braces);
		mask-image: var(--md-admonition-icon--code-braces);
}



:root {
	--md-admonition-icon--code-brackets: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 4v2h3v12h-3v2h5V4M4 4v16h5v-2H6V6h3V4H4Z"/></svg>')
}
.md-typeset .admonition.code-brackets,
.md-typeset details.code-brackets {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .code-brackets > .admonition-title,
.md-typeset .code-brackets > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .code-brackets > .admonition-title::before,
.md-typeset .code-brackets > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--code-brackets);
		mask-image: var(--md-admonition-icon--code-brackets);
}



:root {
	--md-admonition-icon--code-json: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h2v2H5v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5h2v2H5c-1.07-.27-2-.9-2-2v-4a2 2 0 0 0-2-2H0v-2h1a2 2 0 0 0 2-2V5a2 2 0 0 1 2-2m14 0a2 2 0 0 1 2 2v4a2 2 0 0 0 2 2h1v2h-1a2 2 0 0 0-2 2v4a2 2 0 0 1-2 2h-2v-2h2v-5a2 2 0 0 1 2-2 2 2 0 0 1-2-2V5h-2V3h2m-7 12a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m8 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1Z"/></svg>')
}
.md-typeset .admonition.code-json,
.md-typeset details.code-json {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .code-json > .admonition-title,
.md-typeset .code-json > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .code-json > .admonition-title::before,
.md-typeset .code-json > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--code-json);
		mask-image: var(--md-admonition-icon--code-json);
}



:root {
	--md-admonition-icon--code-parentheses: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.62 3C19.13 5.27 20 8.55 20 12c0 3.44-.87 6.72-2.38 9L16 19.96c1.26-1.89 2-4.83 2-7.96s-.74-6.08-2-7.97L17.62 3M6.38 3 8 4.04C6.74 5.92 6 8.87 6 12s.74 6.08 2 7.96L6.38 21C4.87 18.73 4 15.45 4 12s.87-6.73 2.38-9Z"/></svg>')
}
.md-typeset .admonition.code-parentheses,
.md-typeset details.code-parentheses {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .code-parentheses > .admonition-title,
.md-typeset .code-parentheses > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .code-parentheses > .admonition-title::before,
.md-typeset .code-parentheses > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--code-parentheses);
		mask-image: var(--md-admonition-icon--code-parentheses);
}



:root {
	--md-admonition-icon--code-tags: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m14.6 16.6 4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4m-5.2 0L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4Z"/></svg>')
}
.md-typeset .admonition.code-tags,
.md-typeset details.code-tags {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .code-tags > .admonition-title,
.md-typeset .code-tags > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .code-tags > .admonition-title::before,
.md-typeset .code-tags > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--code-tags);
		mask-image: var(--md-admonition-icon--code-tags);
}



:root {
	--md-admonition-icon--cog-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-2 12c-.25 0-.46-.18-.5-.42l-.37-2.65c-.63-.25-1.17-.59-1.69-.99l-2.49 1.01c-.22.08-.49 0-.61-.22l-2-3.46a.493.493 0 0 1 .12-.64l2.11-1.66L4.5 12l.07-1-2.11-1.63a.493.493 0 0 1-.12-.64l2-3.46c.12-.22.39-.31.61-.22l2.49 1c.52-.39 1.06-.73 1.69-.98l.37-2.65c.04-.24.25-.42.5-.42h4c.25 0 .46.18.5.42l.37 2.65c.63.25 1.17.59 1.69.98l2.49-1c.22-.09.49 0 .61.22l2 3.46c.13.22.07.49-.12.64L19.43 11l.07 1-.07 1 2.11 1.63c.19.15.25.42.12.64l-2 3.46c-.12.22-.39.31-.61.22l-2.49-1c-.52.39-1.06.73-1.69.98l-.37 2.65c-.04.24-.25.42-.5.42h-4m1.25-18-.37 2.61c-1.2.25-2.26.89-3.03 1.78L5.44 7.35l-.75 1.3L6.8 10.2a5.55 5.55 0 0 0 0 3.6l-2.12 1.56.75 1.3 2.43-1.04c.77.88 1.82 1.52 3.01 1.76l.37 2.62h1.52l.37-2.61c1.19-.25 2.24-.89 3.01-1.77l2.43 1.04.75-1.3-2.12-1.55c.4-1.17.4-2.44 0-3.61l2.11-1.55-.75-1.3-2.41 1.04a5.42 5.42 0 0 0-3.03-1.77L12.75 4h-1.5Z"/></svg>')
}
.md-typeset .admonition.cog-outline,
.md-typeset details.cog-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cog-outline > .admonition-title,
.md-typeset .cog-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cog-outline > .admonition-title::before,
.md-typeset .cog-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cog-outline);
		mask-image: var(--md-admonition-icon--cog-outline);
}



:root {
	--md-admonition-icon--collage: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h6V3m2 0v8h8V5c0-1.11-.89-2-2-2m-6 10v8h6c1.11 0 2-.89 2-2v-6"/></svg>')
}
.md-typeset .admonition.collage,
.md-typeset details.collage {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .collage > .admonition-title,
.md-typeset .collage > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .collage > .admonition-title::before,
.md-typeset .collage > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--collage);
		mask-image: var(--md-admonition-icon--collage);
}



:root {
	--md-admonition-icon--comment-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22a1 1 0 0 1-1-1v-3H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6.1l-3.7 3.71c-.2.19-.45.29-.7.29H9m1-6v3.08L13.08 16H20V4H4v12h6Z"/></svg>')
}
.md-typeset .admonition.comment-outline,
.md-typeset details.comment-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .comment-outline > .admonition-title,
.md-typeset .comment-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .comment-outline > .admonition-title::before,
.md-typeset .comment-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--comment-outline);
		mask-image: var(--md-admonition-icon--comment-outline);
}



:root {
	--md-admonition-icon--computer: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M384 96v224H64V96h320zM64 32C28.7 32 0 60.7 0 96v224c0 35.3 28.7 64 64 64h117.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-74.7l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm464 0c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48h-64zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16s7.2-16 16-16zm-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32c-8.8 0-16-7.2-16-16zm32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>')
}
.md-typeset .admonition.computer,
.md-typeset details.computer {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .computer > .admonition-title,
.md-typeset .computer > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .computer > .admonition-title::before,
.md-typeset .computer > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--computer);
		mask-image: var(--md-admonition-icon--computer);
}



:root {
	--md-admonition-icon--connection: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.4 7.5c.8.8.8 2.1 0 2.8l-2.8 2.8-7.8-7.8 2.8-2.8c.8-.8 2.1-.8 2.8 0l1.8 1.8 3-3 1.4 1.4-3 3 1.8 1.8m-5.8 5.8-1.4-1.4-2.8 2.8-2.1-2.1 2.8-2.8-1.4-1.4-2.8 2.8-1.5-1.4-2.8 2.8c-.8.8-.8 2.1 0 2.8l1.8 1.8-4 4 1.4 1.4 4-4 1.8 1.8c.8.8 2.1.8 2.8 0l2.8-2.8-1.4-1.4 2.8-2.9Z"/></svg>')
}
.md-typeset .admonition.connection,
.md-typeset details.connection {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .connection > .admonition-title,
.md-typeset .connection > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .connection > .admonition-title::before,
.md-typeset .connection > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--connection);
		mask-image: var(--md-admonition-icon--connection);
}



:root {
	--md-admonition-icon--console-line: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19v-3h8v3h-8m-4.5-6L2.47 7h4.24l4.96 4.95c.58.59.58 1.55 0 2.12L6.74 19H2.5l6-6Z"/></svg>')
}
.md-typeset .admonition.console-line,
.md-typeset details.console-line {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .console-line > .admonition-title,
.md-typeset .console-line > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .console-line > .admonition-title::before,
.md-typeset .console-line > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--console-line);
		mask-image: var(--md-admonition-icon--console-line);
}



:root {
	--md-admonition-icon--contactless-payment: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.79 23c-.42-.17-.72-.55-.79-1-.05-.26 0-.44.4-1.16 1.5-2.7 2.27-5.75 2.23-8.84.04-3-.69-5.93-2.13-8.56-.21-.44-.4-.86-.56-1.31.06-.38.25-.73.56-.94.45-.24 1-.19 1.41.09.28.36.52.72.72 1.14A21.4 21.4 0 0 1 20.8 9c.23 1.81.26 3.65.09 5.47-.31 2.34-1 4.6-2.06 6.71-.64 1.28-1 1.82-1.38 1.82H16.79m-4.36-2.21c-.57-.16-.93-.74-.81-1.32 0-.12.31-.67.59-1.23 1.18-2.27 1.69-4.83 1.46-7.38-.14-1.83-.67-3.61-1.54-5.22-.63-1.26-.67-1.46-.3-2 .44-.49 1.17-.56 1.71-.14.72 1.06 1.29 2.22 1.71 3.44 1.28 3.79 1.08 7.92-.56 11.56-.84 1.89-1.43 2.5-2.26 2.24v.05m-4.5-2.23a1.31 1.31 0 0 1-.73-.86c0-.2 0-.46.45-1.26a8.986 8.986 0 0 0 0-8.68C7 6.5 7 6.24 7.53 5.76c.19-.22.47-.33.77-.29.64 0 1 .31 1.54 1.44A10.51 10.51 0 0 1 11.12 12c.04 1.81-.4 3.61-1.27 5.2-.54 1.05-.81 1.3-1.35 1.39-.19.02-.39 0-.57-.09v.06m-4.21-2.13c-.33-.16-.59-.43-.72-.78-.1-.35 0-.65.4-1.29.5-.68.74-1.52.69-2.36.07-.85-.16-1.69-.65-2.39A6.11 6.11 0 0 1 3 8.82c-.11-.63.31-1.23 1-1.35.54-.1.92.13 1.42.89a6.619 6.619 0 0 1 0 7.27c-.51.77-1.09 1-1.69.8h-.01Z"/></svg>')
}
.md-typeset .admonition.contactless-payment,
.md-typeset details.contactless-payment {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .contactless-payment > .admonition-title,
.md-typeset .contactless-payment > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .contactless-payment > .admonition-title::before,
.md-typeset .contactless-payment > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--contactless-payment);
		mask-image: var(--md-admonition-icon--contactless-payment);
}



:root {
	--md-admonition-icon--contain-end: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 17v-2h2v2H7m4 0v-2h2v2h-2m4 0v-2h2v2h-2m7-14v18h-6v-2h4V5h-4V3h6Z"/></svg>')
}
.md-typeset .admonition.contain-end,
.md-typeset details.contain-end {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .contain-end > .admonition-title,
.md-typeset .contain-end > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .contain-end > .admonition-title::before,
.md-typeset .contain-end > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--contain-end);
		mask-image: var(--md-admonition-icon--contain-end);
}



:root {
	--md-admonition-icon--contain-start: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h6v2H4v14h4v2H2V3m5 14v-2h2v2H7m4 0v-2h2v2h-2m4 0v-2h2v2h-2Z"/></svg>')
}
.md-typeset .admonition.contain-start,
.md-typeset details.contain-start {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .contain-start > .admonition-title,
.md-typeset .contain-start > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .contain-start > .admonition-title::before,
.md-typeset .contain-start > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--contain-start);
		mask-image: var(--md-admonition-icon--contain-start);
}



:root {
	--md-admonition-icon--contain: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 3h6v2H4v14h4v2H2V3m5 14v-2h2v2H7m4 0v-2h2v2h-2m4 0v-2h2v2h-2m7-14v18h-6v-2h4V5h-4V3h6Z"/></svg>')
}
.md-typeset .admonition.contain,
.md-typeset details.contain {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .contain > .admonition-title,
.md-typeset .contain > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .contain > .admonition-title::before,
.md-typeset .contain > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--contain);
		mask-image: var(--md-admonition-icon--contain);
}



:root {
	--md-admonition-icon--content-copy: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 21H8V7h11m0-2H8a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2m-3-4H4a2 2 0 0 0-2 2v14h2V3h12V1Z"/></svg>')
}
.md-typeset .admonition.content-copy,
.md-typeset details.content-copy {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .content-copy > .admonition-title,
.md-typeset .content-copy > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .content-copy > .admonition-title::before,
.md-typeset .content-copy > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--content-copy);
		mask-image: var(--md-admonition-icon--content-copy);
}



:root {
	--md-admonition-icon--content-cut: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19 3-6 6 2 2 7-7V3m-10 9.5a.5.5 0 0 1-.5-.5.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5.5.5 0 0 1-.5.5M6 20a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2M6 8a2 2 0 0 1-2-2 2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2m3.64-.36c.23-.5.36-1.05.36-1.64a4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64Z"/></svg>')
}
.md-typeset .admonition.content-cut,
.md-typeset details.content-cut {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .content-cut > .admonition-title,
.md-typeset .content-cut > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .content-cut > .admonition-title::before,
.md-typeset .content-cut > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--content-cut);
		mask-image: var(--md-admonition-icon--content-cut);
}



:root {
	--md-admonition-icon--content-paste: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 20H5V4h2v3h10V4h2m-7-2a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m7 0h-4.18C14.4.84 13.3 0 12 0c-1.3 0-2.4.84-2.82 2H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.content-paste,
.md-typeset details.content-paste {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .content-paste > .admonition-title,
.md-typeset .content-paste > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .content-paste > .admonition-title::before,
.md-typeset .content-paste > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--content-paste);
		mask-image: var(--md-admonition-icon--content-paste);
}



:root {
	--md-admonition-icon--credit-card-chip-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 6v12H4V6h16m0-2H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2m-9 6H6v4h5v-4Z"/></svg>')
}
.md-typeset .admonition.credit-card-chip-outline,
.md-typeset details.credit-card-chip-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .credit-card-chip-outline > .admonition-title,
.md-typeset .credit-card-chip-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .credit-card-chip-outline > .admonition-title::before,
.md-typeset .credit-card-chip-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--credit-card-chip-outline);
		mask-image: var(--md-admonition-icon--credit-card-chip-outline);
}



:root {
	--md-admonition-icon--crop-free: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3h-4v2h4v4h2V5a2 2 0 0 0-2-2m0 16h-4v2h4a2 2 0 0 0 2-2v-4h-2M5 15H3v4a2 2 0 0 0 2 2h4v-2H5M3 5v4h2V5h4V3H5a2 2 0 0 0-2 2Z"/></svg>')
}
.md-typeset .admonition.crop-free,
.md-typeset details.crop-free {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .crop-free > .admonition-title,
.md-typeset .crop-free > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .crop-free > .admonition-title::before,
.md-typeset .crop-free > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--crop-free);
		mask-image: var(--md-admonition-icon--crop-free);
}



:root {
	--md-admonition-icon--crop-landscape: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 17H5V7h14m0-2H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.crop-landscape,
.md-typeset details.crop-landscape {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .crop-landscape > .admonition-title,
.md-typeset .crop-landscape > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .crop-landscape > .admonition-title::before,
.md-typeset .crop-landscape > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--crop-landscape);
		mask-image: var(--md-admonition-icon--crop-landscape);
}



:root {
	--md-admonition-icon--crop-square: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 18H6V6h12m0-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.crop-square,
.md-typeset details.crop-square {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .crop-square > .admonition-title,
.md-typeset .crop-square > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .crop-square > .admonition-title::before,
.md-typeset .crop-square > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--crop-square);
		mask-image: var(--md-admonition-icon--crop-square);
}



:root {
	--md-admonition-icon--crop: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 17V1H5v4H1v2h4v10a2 2 0 0 0 2 2h10v4h2v-4h4v-2m-6-2h2V7a2 2 0 0 0-2-2H9v2h8v8Z"/></svg>')
}
.md-typeset .admonition.crop,
.md-typeset details.crop {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .crop > .admonition-title,
.md-typeset .crop > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .crop > .admonition-title::before,
.md-typeset .crop > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--crop);
		mask-image: var(--md-admonition-icon--crop);
}



:root {
	--md-admonition-icon--crosshairs-gps: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m-8.95 5H1v-2h2.05C3.5 6.83 6.83 3.5 11 3.05V1h2v2.05c4.17.45 7.5 3.78 7.95 7.95H23v2h-2.05c-.45 4.17-3.78 7.5-7.95 7.95V23h-2v-2.05C6.83 20.5 3.5 17.17 3.05 13M12 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-7-7Z"/></svg>')
}
.md-typeset .admonition.crosshairs-gps,
.md-typeset details.crosshairs-gps {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .crosshairs-gps > .admonition-title,
.md-typeset .crosshairs-gps > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .crosshairs-gps > .admonition-title::before,
.md-typeset .crosshairs-gps > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--crosshairs-gps);
		mask-image: var(--md-admonition-icon--crosshairs-gps);
}



:root {
	--md-admonition-icon--crosshairs: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.05 13H1v-2h2.05C3.5 6.83 6.83 3.5 11 3.05V1h2v2.05c4.17.45 7.5 3.78 7.95 7.95H23v2h-2.05c-.45 4.17-3.78 7.5-7.95 7.95V23h-2v-2.05C6.83 20.5 3.5 17.17 3.05 13M12 5a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-7-7Z"/></svg>')
}
.md-typeset .admonition.crosshairs,
.md-typeset details.crosshairs {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .crosshairs > .admonition-title,
.md-typeset .crosshairs > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .crosshairs > .admonition-title::before,
.md-typeset .crosshairs > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--crosshairs);
		mask-image: var(--md-admonition-icon--crosshairs);
}



:root {
	--md-admonition-icon--cup-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 2 2 18.23c.13 1 .97 1.77 2 1.77h10c1 0 1.87-.77 2-1.77L21 2H3m2.22 2h13.56L17 20H7L5.22 4Z"/></svg>')
}
.md-typeset .admonition.cup-outline,
.md-typeset details.cup-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cup-outline > .admonition-title,
.md-typeset .cup-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cup-outline > .admonition-title::before,
.md-typeset .cup-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cup-outline);
		mask-image: var(--md-admonition-icon--cup-outline);
}



:root {
	--md-admonition-icon--currency-eur: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 18.5c-2.5 0-4.68-1.42-5.76-3.5H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24A6.491 6.491 0 0 1 15 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.955 8.955 0 0 0 15 3c-3.92 0-7.24 2.5-8.5 6H3l-1 2h4.06c-.06.33-.06.66-.06 1s0 .67.06 1H3l-1 2h4.5c1.26 3.5 4.58 6 8.5 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57Z"/></svg>')
}
.md-typeset .admonition.currency-eur,
.md-typeset details.currency-eur {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .currency-eur > .admonition-title,
.md-typeset .currency-eur > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .currency-eur > .admonition-title::before,
.md-typeset .currency-eur > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--currency-eur);
		mask-image: var(--md-admonition-icon--currency-eur);
}



:root {
	--md-admonition-icon--currency-inr: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3h10l-1 2h-3.26c.48.58.84 1.26 1.05 2H18l-1 2h-2a5.558 5.558 0 0 1-4.8 4.96V14h-.7l6 7H13l-6-7v-2h2.5c1.76 0 3.22-1.3 3.46-3H7l1-2h4.66C12.1 5.82 10.9 5 9.5 5H7l1-2Z"/></svg>')
}
.md-typeset .admonition.currency-inr,
.md-typeset details.currency-inr {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .currency-inr > .admonition-title,
.md-typeset .currency-inr > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .currency-inr > .admonition-title::before,
.md-typeset .currency-inr > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--currency-inr);
		mask-image: var(--md-admonition-icon--currency-inr);
}



:root {
	--md-admonition-icon--currency-usd: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 15h2c0 1.08 1.37 2 3 2s3-.92 3-2c0-1.1-1.04-1.5-3.24-2.03C9.64 12.44 7 11.78 7 9c0-1.79 1.47-3.31 3.5-3.82V3h3v2.18C15.53 5.69 17 7.21 17 9h-2c0-1.08-1.37-2-3-2s-3 .92-3 2c0 1.1 1.04 1.5 3.24 2.03C14.36 11.56 17 12.22 17 15c0 1.79-1.47 3.31-3.5 3.82V21h-3v-2.18C8.47 18.31 7 16.79 7 15Z"/></svg>')
}
.md-typeset .admonition.currency-usd,
.md-typeset details.currency-usd {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .currency-usd > .admonition-title,
.md-typeset .currency-usd > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .currency-usd > .admonition-title::before,
.md-typeset .currency-usd > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--currency-usd);
		mask-image: var(--md-admonition-icon--currency-usd);
}



:root {
	--md-admonition-icon--cursor-text: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19a1 1 0 0 0 1 1h2v2h-2.5c-.55 0-1.5-.45-1.5-1 0 .55-.95 1-1.5 1H8v-2h2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H8V2h2.5c.55 0 1.5.45 1.5 1 0-.55.95-1 1.5-1H16v2h-2a1 1 0 0 0-1 1v14Z"/></svg>')
}
.md-typeset .admonition.cursor-text,
.md-typeset details.cursor-text {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cursor-text > .admonition-title,
.md-typeset .cursor-text > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cursor-text > .admonition-title::before,
.md-typeset .cursor-text > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cursor-text);
		mask-image: var(--md-admonition-icon--cursor-text);
}



:root {
	--md-admonition-icon--cylinder: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c-2.11 0-9 .29-9 4v12c0 3.71 6.89 4 9 4 2.11 0 9-.29 9-4V6c0-3.71-6.89-4-9-4m0 8c1.38 0 4.8-.13 7-1.25v6.5C16.8 14.13 13.38 14 12 14s-4.8.13-7 1.25v-6.5C7.2 9.87 10.62 10 12 10m0-6c3.87 0 7 .89 7 2 0 1.11-3.13 2-7 2s-7-.89-7-2c0-1.11 3.13-2 7-2m0 16c-3.87 0-7-.89-7-2 0-1.1 3.13-2 7-2s7 .9 7 2c0 1.11-3.13 2-7 2Z"/></svg>')
}
.md-typeset .admonition.cylinder,
.md-typeset details.cylinder {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .cylinder > .admonition-title,
.md-typeset .cylinder > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .cylinder > .admonition-title::before,
.md-typeset .cylinder > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--cylinder);
		mask-image: var(--md-admonition-icon--cylinder);
}



:root {
	--md-admonition-icon--data-matrix: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 2v20h20v-2h-2v-2h2v-2h-2v-2h2v-2h-4v-2h-2v2h-2v-2h-2V8H8v4h4v4h-2v2h2v2h-2v-2H8v-2H6v-2H4v-2h2V6H4V2H2m4 4h2V2H6v4m2 10h2v-2H8v2m10-6h4V8h-4v2m0-2V4h-2v2h-2v2h4m-2-4V2h-2v2h2m2 0h2V2h-2v2m2 0v2h2V4h-2M10 2v4h2V2h-2m4 12h2v2h2v4h-4v-6M4 18h2v2H4v-2Z"/></svg>')
}
.md-typeset .admonition.data-matrix,
.md-typeset details.data-matrix {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .data-matrix > .admonition-title,
.md-typeset .data-matrix > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .data-matrix > .admonition-title::before,
.md-typeset .data-matrix > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--data-matrix);
		mask-image: var(--md-admonition-icon--data-matrix);
}



:root {
	--md-admonition-icon--database: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.58 3 4 4.79 4 7s3.58 4 8 4 8-1.79 8-4-3.58-4-8-4M4 9v3c0 2.21 3.58 4 8 4s8-1.79 8-4V9c0 2.21-3.58 4-8 4s-8-1.79-8-4m0 5v3c0 2.21 3.58 4 8 4s8-1.79 8-4v-3c0 2.21-3.58 4-8 4s-8-1.79-8-4Z"/></svg>')
}
.md-typeset .admonition.database,
.md-typeset details.database {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .database > .admonition-title,
.md-typeset .database > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .database > .admonition-title::before,
.md-typeset .database > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--database);
		mask-image: var(--md-admonition-icon--database);
}



:root {
	--md-admonition-icon--debian: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.5 10.57-.2.37c.26-.78.11-1.63.15-2.37l-.07-.02c-.07-1.85-1.67-3.82-3.09-4.48-1.23-.57-3.12-.67-3.99-.24.12-.11.6-.15.45-.23-1.37.13-1.06.47-2.11.74-.29.28.86-.22.23.16-.56.13-.82-.12-1.65.74.07.12.53-.35.15.12-.79-.09-2.48 1.8-2.84 2.42l.19.04c-.31.77-.72 1.26-.77 1.72-.08 1.14-.45 3.21.08 3.85l-.06.53.23.45-.12.01c.58 1.83.62.04 1.39 1.94-.11-.04-.23-.08-.39-.32-.02.19.24.69.54 1.08l-.12.14c.16.31.32.38.43.49-.63-.35.57 1.13.7 1.32l.1-.17c-.02.24.17.56.53 1.01l.3-.01c.13.24.58.68.85.7l-.18.24c.69.2.33.29 1.18.59l-.17-.3c.43.37.56.7 1.17.98.85.3.96.18 1.82.43-.73 0-1.59 0-2.17-.22-3.96-1.07-7.56-5.72-7.32-10.5-.06-.97.1-2.18-.06-2.42.22-.74.48-1.64 1.01-2.71-.04-.07.09.21.36-.24.16-.36.29-.75.5-1.1l.1-.03c.11-.61 1.43-1.55 1.85-2.02v.18c.86-.81 2.4-1.35 3.26-1.73-.23.25.51-.03 1.04-.06l-.49.28c.63-.16.6.07 1.25-.03-.23.03-.5.1-.46.16.72.08.84-.22 1.51 0l-.05-.2c.94.34 1.13.28 2.14.82.36.01.4-.22.93 0 .1.16-.02.19.64.59.07-.03-.13-.22-.27-.37 1.3.71 2.75 2.22 3.18 3.84-.41-.74-.04.39-.18.33.18.49.33 1 .43 1.53-.12-.43-.39-1.48-.86-2.15-.03.43-.6-.3-.29.66.22.34.05-.35.34.25 0 .29.11.58.18.95-.1-.02-.22-.41-.3-.31.1.5.27.72.33.76-.03.08-.12-.08-.12.24.04.74.21.43.29.46-.09.37-.41.79-.25 1.42l-.2-.56c-.05.53.11.63-.13 1.28.18-.6.16-1.1-.01-.85.09.82-.65 1.45-.58 1.98l-.21-.29c-.57.83-.01.45-.4 1.06.14-.23-.07-.08.11-.36-.12.01-.55.53-.94.83-1.54 1.23-3.39 1.4-5.15.73h-.01c.01-.04 0-.09-.12-.17-1.51-1.15-2.4-2.13-2.11-4.41.25-.17.31-1.12.84-1.45.32-.71 1.28-1.36 2.31-1.38 1.05-.06 1.94.56 2.39 1.14-.82-.75-2.14-.98-3.28-.43-1.15.53-1.84 1.8-1.76 3.07.06-.07.1-.02.12-.18-.03 2.47 2.66 4.28 4.6 3.37l.03.05c.78-.22.68-.39 1.19-.75-.04.09-.34.3-.16.3.25-.06 1.03-.79 1.42-1.13.17-.38-.1-.23.15-.69l.3-.15c.17-.48.35-.75.35-1.32"/></svg>')
}
.md-typeset .admonition.debian,
.md-typeset details.debian {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .debian > .admonition-title,
.md-typeset .debian > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .debian > .admonition-title::before,
.md-typeset .debian > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--debian);
		mask-image: var(--md-admonition-icon--debian);
}



:root {
	--md-admonition-icon--delete-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7H6v12M8 9h8v10H8V9m7.5-5-1-1h-5l-1 1H5v2h14V4h-3.5Z"/></svg>')
}
.md-typeset .admonition.delete-outline,
.md-typeset details.delete-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .delete-outline > .admonition-title,
.md-typeset .delete-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .delete-outline > .admonition-title::before,
.md-typeset .delete-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--delete-outline);
		mask-image: var(--md-admonition-icon--delete-outline);
}



:root {
	--md-admonition-icon--delta: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7.77 18.39 18H5.61L12 7.77M12 4 2 20h20"/></svg>')
}
.md-typeset .admonition.delta,
.md-typeset details.delta {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .delta > .admonition-title,
.md-typeset .delta > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .delta > .admonition-title::before,
.md-typeset .delta > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--delta);
		mask-image: var(--md-admonition-icon--delta);
}



:root {
	--md-admonition-icon--deskphone: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m10 2v14h4V5h-4M5 5v4h8V5H5m0 6v2h2v-2H5m3 0v2h2v-2H8m3 0v2h2v-2h-2m-6 3v2h2v-2H5m3 0v2h2v-2H8m3 0v2h2v-2h-2m0 3v2h2v-2h-2m-3 0v2h2v-2H8m-3 0v2h2v-2H5Z"/></svg>')
}
.md-typeset .admonition.deskphone,
.md-typeset details.deskphone {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .deskphone > .admonition-title,
.md-typeset .deskphone > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .deskphone > .admonition-title::before,
.md-typeset .deskphone > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--deskphone);
		mask-image: var(--md-admonition-icon--deskphone);
}



:root {
	--md-admonition-icon--desktop-tower-monitor: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 18h-5a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1m0-10h-5v1h5V8m0 2h-5v1h5v-1M9 15v2h1v1H5v-1h1v-2H2a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h11a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H9m3-7H3v5h9V8Z"/></svg>')
}
.md-typeset .admonition.desktop-tower-monitor,
.md-typeset details.desktop-tower-monitor {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .desktop-tower-monitor > .admonition-title,
.md-typeset .desktop-tower-monitor > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .desktop-tower-monitor > .admonition-title::before,
.md-typeset .desktop-tower-monitor > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--desktop-tower-monitor);
		mask-image: var(--md-admonition-icon--desktop-tower-monitor);
}



:root {
	--md-admonition-icon--desktop-tower: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v2h8V4H8m8 4H8v2h8V8m0 10h-2v2h2v-2Z"/></svg>')
}
.md-typeset .admonition.desktop-tower,
.md-typeset details.desktop-tower {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .desktop-tower > .admonition-title,
.md-typeset .desktop-tower > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .desktop-tower > .admonition-title::before,
.md-typeset .desktop-tower > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--desktop-tower);
		mask-image: var(--md-admonition-icon--desktop-tower);
}



:root {
	--md-admonition-icon--dharmachakra: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2v1c-1.73.2-3.31.9-4.6 1.94l-.76-.76L4.22 5.6l.78.75A9.043 9.043 0 0 0 3 11H2v2h1c.21 1.68.9 3.26 2 4.56l-.78.76 1.42 1.42.75-.74A9.304 9.304 0 0 0 11 21v1h2v-1a9.27 9.27 0 0 0 4.6-2l.76.74 1.42-1.42-.78-.75c1.1-1.3 1.79-2.89 2-4.57h1v-2h-1a9.01 9.01 0 0 0-2-4.64l.78-.76-1.42-1.42-.75.76A8.997 8.997 0 0 0 13 3V2h-2m0 3v3l-1 .5-2.19-2.15c.91-.68 2-1.18 3.19-1.35m2 0c1.16.18 2.26.64 3.2 1.35L14 8.5 13 8V5M6.4 7.76 8.5 10 8 11H5c.16-1.16.7-2.3 1.39-3.25l.01.01m11.2 0c.73.95 1.21 2.06 1.4 3.24h-3l-.5-1 2.11-2.24h-.01M12 10c1.12 0 2 .88 2 2s-.88 2-2 2-2-.88-2-2 .88-2 2-2m-7 3h3l.57 1-2.18 2.15C5.67 15.24 5.19 14.16 5 13m11 0h3a6.984 6.984 0 0 1-1.39 3.16L15.5 14l.5-1m-6 2.5 1 .5v3a7.04 7.04 0 0 1-3.2-1.43L10 15.5m4 0 2.19 2.07c-.91.68-2 1.26-3.19 1.43v-3l1-.5Z"/></svg>')
}
.md-typeset .admonition.dharmachakra,
.md-typeset details.dharmachakra {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dharmachakra > .admonition-title,
.md-typeset .dharmachakra > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dharmachakra > .admonition-title::before,
.md-typeset .dharmachakra > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dharmachakra);
		mask-image: var(--md-admonition-icon--dharmachakra);
}



:root {
	--md-admonition-icon--dialpad: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M6 1a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m12-8a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m-6 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m6 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-6 0a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.dialpad,
.md-typeset details.dialpad {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dialpad > .admonition-title,
.md-typeset .dialpad > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dialpad > .admonition-title::before,
.md-typeset .dialpad > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dialpad);
		mask-image: var(--md-admonition-icon--dialpad);
}



:root {
	--md-admonition-icon--division: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13H5v-2h14v2m-7-8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2Z"/></svg>')
}
.md-typeset .admonition.division,
.md-typeset details.division {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .division > .admonition-title,
.md-typeset .division > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .division > .admonition-title::before,
.md-typeset .division > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--division);
		mask-image: var(--md-admonition-icon--division);
}



:root {
	--md-admonition-icon--dna: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h2v2c0 1.44.68 2.61 1.88 3.78.86.83 2.01 1.63 3.21 2.42l-1.83 1.19C8.27 10.72 7.31 10 6.5 9.21 5.07 7.82 4 6.1 4 4V2m14 0h2v2c0 2.1-1.07 3.82-2.5 5.21-1.41 1.38-3.21 2.52-4.96 3.63-1.75 1.12-3.45 2.21-4.66 3.38C6.68 17.39 6 18.56 6 20v2H4v-2c0-2.1 1.07-3.82 2.5-5.21 1.41-1.38 3.21-2.52 4.96-3.63 1.75-1.12 3.45-2.21 4.66-3.38C17.32 6.61 18 5.44 18 4V2m-3.26 10.61c.99.67 1.95 1.39 2.76 2.18C18.93 16.18 20 17.9 20 20v2h-2v-2c0-1.44-.68-2.61-1.88-3.78-.86-.83-2.01-1.63-3.21-2.42l1.83-1.19M7 3h10v1l-.06.5H7.06L7 4V3m.68 3h8.64c-.24.34-.52.69-.9 1.06l-.51.44H9.07l-.49-.44c-.38-.37-.66-.72-.9-1.06m1.41 10.5h5.84l.49.44c.38.37.66.72.9 1.06H7.68c.24-.34.52-.69.9-1.06l.51-.44m-2.03 3h9.88l.06.5v1H7v-1l.06-.5Z"/></svg>')
}
.md-typeset .admonition.dna,
.md-typeset details.dna {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dna > .admonition-title,
.md-typeset .dna > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dna > .admonition-title::before,
.md-typeset .dna > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dna);
		mask-image: var(--md-admonition-icon--dna);
}



:root {
	--md-admonition-icon--dolphin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 7s0-4-5-4c-1.53 0-2.85.19-4 .5-.5-.44-3.74-3.191-7 .07l2.56 2.56C2.5 10.53 4 18 4 18s-3 0-3 4l4-1 4 1c0-4-3-4-3-4s.85-5.76 7-6.82V14c2 0 2.68-1.81 2.89-3H18c4 0 5-1 5-2s-2-2-3-2m-2 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1Z"/></svg>')
}
.md-typeset .admonition.dolphin,
.md-typeset details.dolphin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dolphin > .admonition-title,
.md-typeset .dolphin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dolphin > .admonition-title::before,
.md-typeset .dolphin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dolphin);
		mask-image: var(--md-admonition-icon--dolphin);
}



:root {
	--md-admonition-icon--dots-circle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2Z"/></svg>')
}
.md-typeset .admonition.dots-circle,
.md-typeset details.dots-circle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-circle > .admonition-title,
.md-typeset .dots-circle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-circle > .admonition-title::before,
.md-typeset .dots-circle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-circle);
		mask-image: var(--md-admonition-icon--dots-circle);
}



:root {
	--md-admonition-icon--dots-grid: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2Z"/></svg>')
}
.md-typeset .admonition.dots-grid,
.md-typeset details.dots-grid {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-grid > .admonition-title,
.md-typeset .dots-grid > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-grid > .admonition-title::before,
.md-typeset .dots-grid > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-grid);
		mask-image: var(--md-admonition-icon--dots-grid);
}



:root {
	--md-admonition-icon--dots-hexagon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m9 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-6 0c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m6-12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2M7 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2"/></svg>')
}
.md-typeset .admonition.dots-hexagon,
.md-typeset details.dots-hexagon {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-hexagon > .admonition-title,
.md-typeset .dots-hexagon > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-hexagon > .admonition-title::before,
.md-typeset .dots-hexagon > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-hexagon);
		mask-image: var(--md-admonition-icon--dots-hexagon);
}



:root {
	--md-admonition-icon--dots-horizontal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2Z"/></svg>')
}
.md-typeset .admonition.dots-horizontal,
.md-typeset details.dots-horizontal {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-horizontal > .admonition-title,
.md-typeset .dots-horizontal > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-horizontal > .admonition-title::before,
.md-typeset .dots-horizontal > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-horizontal);
		mask-image: var(--md-admonition-icon--dots-horizontal);
}



:root {
	--md-admonition-icon--dots-square: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2M6 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m12 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2Z"/></svg>')
}
.md-typeset .admonition.dots-square,
.md-typeset details.dots-square {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-square > .admonition-title,
.md-typeset .dots-square > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-square > .admonition-title::before,
.md-typeset .dots-square > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-square);
		mask-image: var(--md-admonition-icon--dots-square);
}



:root {
	--md-admonition-icon--dots-triangle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-9 6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m3-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m6 12c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2"/></svg>')
}
.md-typeset .admonition.dots-triangle,
.md-typeset details.dots-triangle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-triangle > .admonition-title,
.md-typeset .dots-triangle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-triangle > .admonition-title::before,
.md-typeset .dots-triangle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-triangle);
		mask-image: var(--md-admonition-icon--dots-triangle);
}



:root {
	--md-admonition-icon--dots-vertical: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 16a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0-6a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m0-6a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2Z"/></svg>')
}
.md-typeset .admonition.dots-vertical,
.md-typeset details.dots-vertical {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .dots-vertical > .admonition-title,
.md-typeset .dots-vertical > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .dots-vertical > .admonition-title::before,
.md-typeset .dots-vertical > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--dots-vertical);
		mask-image: var(--md-admonition-icon--dots-vertical);
}



:root {
	--md-admonition-icon--egg-fried: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4.5c2.17 0 2.58.57 3.5 1.82.38.53.82 1.12 1.44 1.74.49.49.92.87 1.27 1.18 1.09.95 1.29 1.12 1.29 2.76 0 2.93 0 3.38-1.56 4.94C16 18.86 15.38 19.5 13 19.5c-1.12 0-1.5-.32-2.11-.81-.62-.5-1.46-1.19-2.89-1.19-3.04 0-3.5-3.45-3.5-5.5 0-1.35.5-3.09 1.97-3.58 1.78-.59 2.73-1.71 3.49-2.61.79-.93 1.15-1.31 2.04-1.31M12 3C9 3 9 6 6 7c-2.12.71-3 3-3 5 0 3 1 7 5 7 2 0 2 2 5 2s4-1 6-3 2-3 2-6-1-3-3-5-2-4-6-4m0 5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 2c-1.1 0-2 .9-2 2H9c0-1.65 1.35-3 3-3v1Z"/></svg>')
}
.md-typeset .admonition.egg-fried,
.md-typeset details.egg-fried {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .egg-fried > .admonition-title,
.md-typeset .egg-fried > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .egg-fried > .admonition-title::before,
.md-typeset .egg-fried > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--egg-fried);
		mask-image: var(--md-admonition-icon--egg-fried);
}



:root {
	--md-admonition-icon--egg-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c2.32 0 5.5 6.7 5.5 10.5 0 3.03-2.47 5.5-5.5 5.5s-5.5-2.47-5.5-5.5C6.5 10.7 9.68 4 12 4m0-2c-4.14 0-7.5 8.36-7.5 12.5 0 4.14 3.36 7.5 7.5 7.5s7.5-3.36 7.5-7.5C19.5 10.36 16.14 2 12 2Z"/></svg>')
}
.md-typeset .admonition.egg-outline,
.md-typeset details.egg-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .egg-outline > .admonition-title,
.md-typeset .egg-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .egg-outline > .admonition-title::before,
.md-typeset .egg-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--egg-outline);
		mask-image: var(--md-admonition-icon--egg-outline);
}



:root {
	--md-admonition-icon--eject: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5 5.33 15h13.34M5 17h14v2H5v-2Z"/></svg>')
}
.md-typeset .admonition.eject,
.md-typeset details.eject {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .eject > .admonition-title,
.md-typeset .eject > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .eject > .admonition-title::before,
.md-typeset .eject > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--eject);
		mask-image: var(--md-admonition-icon--eject);
}



:root {
	--md-admonition-icon--electric-switch-closed: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.83 11a3 3 0 0 0-5.65 0H8.82a3 3 0 0 0-5.65 0H1v2h2.17a3 3 0 0 0 5.65 0h6.36a3 3 0 0 0 5.65 0H23v-2M6 13a1 1 0 1 1 1-1 1 1 0 0 1-1 1m12 0a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z"/></svg>')
}
.md-typeset .admonition.electric-switch-closed,
.md-typeset details.electric-switch-closed {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .electric-switch-closed > .admonition-title,
.md-typeset .electric-switch-closed > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .electric-switch-closed > .admonition-title::before,
.md-typeset .electric-switch-closed > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--electric-switch-closed);
		mask-image: var(--md-admonition-icon--electric-switch-closed);
}



:root {
	--md-admonition-icon--electric-switch: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1 11h2.17C3.58 9.83 4.69 9 6 9c.65 0 1.25.21 1.74.56l6.7-4.69 1.14 1.63-6.69 4.7c.07.25.11.52.11.8a3 3 0 0 1-3 3 2.99 2.99 0 0 1-2.83-2H1v-2m22 0v2h-2.17A2.99 2.99 0 0 1 18 15a3 3 0 0 1-3-3 3 3 0 0 1 3-3c1.31 0 2.42.83 2.83 2H23M6 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m12 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1Z"/></svg>')
}
.md-typeset .admonition.electric-switch,
.md-typeset details.electric-switch {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .electric-switch > .admonition-title,
.md-typeset .electric-switch > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .electric-switch > .admonition-title::before,
.md-typeset .electric-switch > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--electric-switch);
		mask-image: var(--md-admonition-icon--electric-switch);
}



:root {
	--md-admonition-icon--electron-framework: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c-1.67 0-3.16-1.5-4.1-4.07-.07-.2.03-.43.24-.49.2-.08.42.03.49.23.81 2.23 2.07 3.56 3.37 3.56.94 0 1.87-.68 2.62-1.92a.386.386 0 0 1 .66.4C14.38 21.19 13.22 22 12 22m3.91-4.28a.36.36 0 0 1-.11-.02c-.21-.07-.3-.28-.26-.49.46-1.4.68-3.03.68-4.71 0-3.85-1.25-7.26-3.03-8.36-.25.36-.69.64-1.19.64-.76 0-1.39-.62-1.39-1.39 0-.77.63-1.39 1.39-1.39.77 0 1.4.61 1.41 1.37C15.53 4.5 17 8.21 17 12.5c0 1.75-.25 3.46-.72 4.95-.05.16-.2.27-.37.27M12 2.77c-.34 0-.62.28-.62.62 0 .34.29.61.62.61.35 0 .64-.27.64-.61 0-.34-.29-.62-.64-.62M4.08 18.54c-.77 0-1.4-.63-1.4-1.39 0-.49.26-.93.65-1.18-.14-2.41 2.35-5.56 6.17-7.75 1.59-.9 3.25-1.55 4.82-1.88.18-.05.41.08.45.29.05.21-.08.42-.27.46-1.5.32-3.09.94-4.6 1.8-3.44 1.97-5.8 4.79-5.8 6.87.76.01 1.4.63 1.4 1.39 0 .77-.65 1.39-1.42 1.39m0-2.01c-.34 0-.62.28-.62.62 0 .35.28.62.62.62s.63-.27.63-.62c0-.34-.29-.62-.63-.62m14.42-3.09c-.07 0-.16-.03-.23-.09a.393.393 0 0 1-.04-.55c1.54-1.8 2.07-3.54 1.41-4.66-.47-.81-1.54-1.26-3.01-1.28-.22 0-.39-.18-.38-.39 0-.21.18-.37.39-.38 1.75.02 3.06.61 3.67 1.66.84 1.44.29 3.46-1.49 5.55-.08.09-.19.14-.32.14m-2 5.46c-2 0-4.56-.74-7-2.13-1.55-.89-2.93-1.98-4-3.14a.402.402 0 0 1 0-.55c.18-.14.42-.13.57.03 1.01 1.1 2.33 2.14 3.82 2.99 3.31 1.9 6.88 2.53 8.76 1.62-.08-.17-.15-.37-.15-.57 0-.77.65-1.39 1.42-1.39.77 0 1.4.62 1.4 1.39a1.396 1.396 0 0 1-2.15 1.17c-.7.39-1.61.58-2.67.58m3-1.27c.13.08.27.14.42.14a.619.619 0 1 0 0-1.24c-.35 0-.62.28-.62.62 0 .14.05.27.13.38.04.02.07.06.07.1M4.46 12c-.13 0-.26-.08-.33-.2-.9-1.55-1.05-2.99-.43-4.06.84-1.44 2.88-1.98 5.61-1.49.19.04.35.25.31.45-.03.21-.23.35-.44.3C6.82 6.59 5 7 4.37 8.13c-.48.82-.33 1.98.43 3.28.1.19.04.42-.15.53-.06.03-.12.06-.19.06m7.75 1.4a.92.92 0 0 1-.4-1.8c.5-.1 1 .21 1.1.71.09.49-.21.98-.7 1.09Z"/></svg>')
}
.md-typeset .admonition.electron-framework,
.md-typeset details.electron-framework {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .electron-framework > .admonition-title,
.md-typeset .electron-framework > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .electron-framework > .admonition-title::before,
.md-typeset .electron-framework > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--electron-framework);
		mask-image: var(--md-admonition-icon--electron-framework);
}



:root {
	--md-admonition-icon--electron: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c-1.67 0-3.16-1.5-4.1-4.07-.07-.2.03-.43.24-.49.2-.08.42.03.49.23.81 2.23 2.07 3.56 3.37 3.56.94 0 1.87-.68 2.62-1.92a.386.386 0 0 1 .66.4C14.38 21.19 13.22 22 12 22m3.91-4.28a.36.36 0 0 1-.11-.02c-.21-.07-.3-.28-.26-.49.46-1.4.68-3.03.68-4.71 0-3.85-1.25-7.26-3.03-8.36-.25.36-.69.64-1.19.64-.76 0-1.39-.62-1.39-1.39 0-.77.63-1.39 1.39-1.39.77 0 1.4.61 1.41 1.37C15.53 4.5 17 8.21 17 12.5c0 1.75-.25 3.46-.72 4.95-.05.16-.2.27-.37.27M12 2.77c-.34 0-.62.28-.62.62 0 .34.29.61.62.61.35 0 .64-.27.64-.61 0-.34-.29-.62-.64-.62M4.08 18.54c-.77 0-1.4-.63-1.4-1.39 0-.49.26-.93.65-1.18-.14-2.41 2.35-5.56 6.17-7.75 1.59-.9 3.25-1.55 4.82-1.88.18-.05.41.08.45.29.05.21-.08.42-.27.46-1.5.32-3.09.94-4.6 1.8-3.44 1.97-5.8 4.79-5.8 6.87.76.01 1.4.63 1.4 1.39 0 .77-.65 1.39-1.42 1.39m0-2.01c-.34 0-.62.28-.62.62 0 .35.28.62.62.62s.63-.27.63-.62c0-.34-.29-.62-.63-.62m14.42-3.09c-.07 0-.16-.03-.23-.09a.393.393 0 0 1-.04-.55c1.54-1.8 2.07-3.54 1.41-4.66-.47-.81-1.54-1.26-3.01-1.28-.22 0-.39-.18-.38-.39 0-.21.18-.37.39-.38 1.75.02 3.06.61 3.67 1.66.84 1.44.29 3.46-1.49 5.55-.08.09-.19.14-.32.14m-2 5.46c-2 0-4.56-.74-7-2.13-1.55-.89-2.93-1.98-4-3.14a.402.402 0 0 1 0-.55c.18-.14.42-.13.57.03 1.01 1.1 2.33 2.14 3.82 2.99 3.31 1.9 6.88 2.53 8.76 1.62-.08-.17-.15-.37-.15-.57 0-.77.65-1.39 1.42-1.39.77 0 1.4.62 1.4 1.39a1.396 1.396 0 0 1-2.15 1.17c-.7.39-1.61.58-2.67.58m3-1.27c.13.08.27.14.42.14a.619.619 0 1 0 0-1.24c-.35 0-.62.28-.62.62 0 .14.05.27.13.38.04.02.07.06.07.1M4.46 12c-.13 0-.26-.08-.33-.2-.9-1.55-1.05-2.99-.43-4.06.84-1.44 2.88-1.98 5.61-1.49.19.04.35.25.31.45-.03.21-.23.35-.44.3C6.82 6.59 5 7 4.37 8.13c-.48.82-.33 1.98.43 3.28.1.19.04.42-.15.53-.06.03-.12.06-.19.06m7.75 1.4a.92.92 0 0 1-.4-1.8c.5-.1 1 .21 1.1.71.09.49-.21.98-.7 1.09Z"/></svg>')
}
.md-typeset .admonition.electron,
.md-typeset details.electron {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .electron > .admonition-title,
.md-typeset .electron > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .electron > .admonition-title::before,
.md-typeset .electron > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--electron);
		mask-image: var(--md-admonition-icon--electron);
}



:root {
	--md-admonition-icon--email-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6m-2 0-8 5-8-5h16m0 12H4V8l8 5 8-5v10Z"/></svg>')
}
.md-typeset .admonition.email-outline,
.md-typeset details.email-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .email-outline > .admonition-title,
.md-typeset .email-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .email-outline > .admonition-title::before,
.md-typeset .email-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--email-outline);
		mask-image: var(--md-admonition-icon--email-outline);
}



:root {
	--md-admonition-icon--epsilon: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.05 7.78 1.1-1.6S14.91 5 12.77 5c-2.73 0-4.42 1.84-4.42 3.76 0 1.92 1.73 2.93 1.73 2.93S8 12.38 8 15c0 2.63 2.14 4 4.44 4 2.94 0 4.56-1.96 4.56-1.96l-1.4-1.54s-1.46 1.37-3.01 1.37c-1.93 0-2.38-1.18-2.38-1.95 0-1.05.33-2.27 3.62-2.27l-.01-1.88s-3.38.34-3.38-1.99c0-1.57 1.46-1.86 2.2-1.86 1.64 0 2.41.86 2.41.86"/></svg>')
}
.md-typeset .admonition.epsilon,
.md-typeset details.epsilon {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .epsilon > .admonition-title,
.md-typeset .epsilon > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .epsilon > .admonition-title::before,
.md-typeset .epsilon > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--epsilon);
		mask-image: var(--md-admonition-icon--epsilon);
}



:root {
	--md-admonition-icon--equal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10H5V8h14v2m0 6H5v-2h14v2Z"/></svg>')
}
.md-typeset .admonition.equal,
.md-typeset details.equal {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .equal > .admonition-title,
.md-typeset .equal > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .equal > .admonition-title::before,
.md-typeset .equal > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--equal);
		mask-image: var(--md-admonition-icon--equal);
}



:root {
	--md-admonition-icon--escalator: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-1.05l-12 12H4a2 2 0 0 1-2-2 2 2 0 0 1 2-2h1.29L7 14.29V10a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1.29L17.29 4H20a2 2 0 0 1 2 2 2 2 0 0 1-2 2M8.5 5A1.5 1.5 0 0 1 10 6.5 1.5 1.5 0 0 1 8.5 8 1.5 1.5 0 0 1 7 6.5 1.5 1.5 0 0 1 8.5 5Z"/></svg>')
}
.md-typeset .admonition.escalator,
.md-typeset details.escalator {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .escalator > .admonition-title,
.md-typeset .escalator > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .escalator > .admonition-title::before,
.md-typeset .escalator > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--escalator);
		mask-image: var(--md-admonition-icon--escalator);
}



:root {
	--md-admonition-icon--ev-station: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.77 7.23.01-.01-3.72-3.72L15 4.56l2.11 2.11c-.94.36-1.61 1.26-1.61 2.33a2.5 2.5 0 0 0 2.5 2.5c.36 0 .69-.08 1-.21v7.21a1 1 0 0 1-1 1 1 1 0 0 1-1-1V14a2 2 0 0 0-2-2h-1V5a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16h10v-7.5h1.5v5A2.5 2.5 0 0 0 18 21a2.5 2.5 0 0 0 2.5-2.5V9c0-.69-.28-1.32-.73-1.77M18 10a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1M8 18v-4.5H6L10 6v5h2l-4 7Z"/></svg>')
}
.md-typeset .admonition.ev-station,
.md-typeset details.ev-station {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ev-station > .admonition-title,
.md-typeset .ev-station > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ev-station > .admonition-title::before,
.md-typeset .ev-station > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ev-station);
		mask-image: var(--md-admonition-icon--ev-station);
}



:root {
	--md-admonition-icon--factory: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18v2h4v-2H4m0-4v2h10v-2H4m6 4v2h4v-2h-4m6-4v2h4v-2h-4m0 4v2h4v-2h-4M2 22V8l5 4V8l5 4V8l5 4 1-10h3l1 10v10H2Z"/></svg>')
}
.md-typeset .admonition.factory,
.md-typeset details.factory {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .factory > .admonition-title,
.md-typeset .factory > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .factory > .admonition-title::before,
.md-typeset .factory > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--factory);
		mask-image: var(--md-admonition-icon--factory);
}



:root {
	--md-admonition-icon--faucet-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 21H3c0-1.1.9-2 2-2h14c1.11 0 2 .89 2 2M19 7c0-1.61-1.07-4-4-4s-4 2.39-4 4v11h2V7c0-.46.17-2 2-2s2 1.54 2 2h-.5v2h3V7H19M7 12c-.55 0-1 .45-1 1v1H3v1h3v3h2v-5c0-.55-.45-1-1-1m14 2h-3v-1c0-.55-.45-1-1-1s-1 .45-1 1v5h2v-3h3v-1Z"/></svg>')
}
.md-typeset .admonition.faucet-variant,
.md-typeset details.faucet-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .faucet-variant > .admonition-title,
.md-typeset .faucet-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .faucet-variant > .admonition-title::before,
.md-typeset .faucet-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--faucet-variant);
		mask-image: var(--md-admonition-icon--faucet-variant);
}



:root {
	--md-admonition-icon--faucet: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14v2h-3v-1.72l3-.28m0-1c0-1.1-1-2-2.2-2H10v-1H5v11h5v-7.09l9-.91M5 9h5V7l5.36-1.79a.932.932 0 1 0-.61-1.76L5 7v2Z"/></svg>')
}
.md-typeset .admonition.faucet,
.md-typeset details.faucet {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .faucet > .admonition-title,
.md-typeset .faucet > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .faucet > .admonition-title::before,
.md-typeset .faucet > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--faucet);
		mask-image: var(--md-admonition-icon--faucet);
}



:root {
	--md-admonition-icon--feather: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 2s-7.64-.37-13.66 7.88C3.72 16.21 2 22 2 22l1.94-1c1.44-2.5 2.19-3.53 3.6-5 2.53.74 5.17.65 7.46-2-2-.56-3.6-.43-5.96-.19C11.69 12 13.5 11.6 16 12l1-2c-1.8-.34-3-.37-4.78.04C14.19 8.65 15.56 7.87 18 8l1.21-1.93c-1.56-.11-2.5.06-4.29.5 1.61-1.46 3.08-2.12 5.22-2.25 0 0 1.05-1.89 1.86-2.32Z"/></svg>')
}
.md-typeset .admonition.feather,
.md-typeset details.feather {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .feather > .admonition-title,
.md-typeset .feather > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .feather > .admonition-title::before,
.md-typeset .feather > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--feather);
		mask-image: var(--md-admonition-icon--feather);
}



:root {
	--md-admonition-icon--fence: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 9v2H7V9H5v2H3V9H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2V9h-2v2h-2V9h-2v2h-2V9h-2v2h-2V9H9m-6 4h2v4H3v-4m4 0h2v4H7v-4m4 0h2v4h-2v-4m4 0h2v4h-2v-4m4 0h2v4h-2v-4Z"/></svg>')
}
.md-typeset .admonition.fence,
.md-typeset details.fence {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .fence > .admonition-title,
.md-typeset .fence > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .fence > .admonition-title::before,
.md-typeset .fence > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--fence);
		mask-image: var(--md-admonition-icon--fence);
}



:root {
	--md-admonition-icon--ferris-wheel: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19c.86 0 1.59.54 1.87 1.29.55-.12 1.08-.29 1.59-.52l-1.76-4.15c-.52.25-1.09.38-1.7.38-.61 0-1.18-.13-1.7-.38l-1.76 4.15c.51.23 1.04.4 1.59.52.28-.75 1.01-1.29 1.87-1.29m6.25-1.24c-.25-.34-.44-.76-.44-1.26 0-1.09.9-2 2-2l.31.03c.25-.8.38-1.65.38-2.53 0-.88-.13-1.73-.38-2.5h-.31c-1.11 0-2-.89-2-2 0-.5.16-.91.44-1.26a8.474 8.474 0 0 0-4.38-2.53C13.59 4.46 12.86 5 12 5c-.86 0-1.59-.54-1.87-1.29a8.474 8.474 0 0 0-4.38 2.53c.28.35.45.79.45 1.26a2 2 0 0 1-2 2h-.32c-.25.78-.38 1.62-.38 2.5 0 .89.14 1.74.39 2.55l.31-.05c1.11 0 2 .92 2 2 0 .5-.16.93-.44 1.27.32.35.68.67 1.05.96l1.9-4.46C8.26 13.62 8 12.84 8 12a4 4 0 0 1 4-4 4 4 0 0 1 4 4c0 .84-.26 1.62-.71 2.27l1.9 4.46c.38-.29.73-.62 1.06-.97M12 23c-1 0-1.84-.74-2-1.71a9.51 9.51 0 0 1-1.85-.6L7.17 23H5l1.41-3.32a8.59 8.59 0 0 1-1.45-1.31c-.24.1-.49.13-.76.13a2 2 0 0 1-2-2c0-.62.3-1.18.77-1.55a9.49 9.49 0 0 1-.01-5.87A2.006 2.006 0 0 1 4.2 5.5c.26 0 .51.06.73.15A9.397 9.397 0 0 1 10 2.71C10.16 1.74 11 1 12 1s1.84.74 2 1.71c2 .42 3.74 1.47 5.06 2.93.23-.09.48-.14.75-.14a2 2 0 0 1 2 2 2 2 0 0 1-.77 1.57c.3.93.46 1.93.46 2.93 0 1-.16 2-.46 2.93.46.37.77.94.77 1.57 0 1.12-.89 2-2 2-.27 0-.52-.04-.76-.14-.44.49-.93.93-1.46 1.32L19 23h-2.17l-.98-2.31c-.6.26-1.22.47-1.85.6-.16.97-1 1.71-2 1.71Z"/></svg>')
}
.md-typeset .admonition.ferris-wheel,
.md-typeset details.ferris-wheel {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ferris-wheel > .admonition-title,
.md-typeset .ferris-wheel > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ferris-wheel > .admonition-title::before,
.md-typeset .ferris-wheel > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ferris-wheel);
		mask-image: var(--md-admonition-icon--ferris-wheel);
}



:root {
	--md-admonition-icon--file-table-box-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.11 0-2 .89-2 2v14c0 1.11.89 2 2 2h14c1.11 0 2-.89 2-2V5c0-1.11-.89-2-2-2m0 16H5V5h14v14M9 18H6v-2h3v2m4 0h-3v-2h3v2m-4-3H6v-2h3v2m4 0h-3v-2h3v2m-4-3H6v-2h3v2m4 0h-3v-2h3v2Z"/></svg>')
}
.md-typeset .admonition.file-table-box-outline,
.md-typeset details.file-table-box-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .file-table-box-outline > .admonition-title,
.md-typeset .file-table-box-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .file-table-box-outline > .admonition-title::before,
.md-typeset .file-table-box-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--file-table-box-outline);
		mask-image: var(--md-admonition-icon--file-table-box-outline);
}



:root {
	--md-admonition-icon--file-tree: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h6v4H3V3m12 7h6v4h-6v-4m0 7h6v4h-6v-4m-2-4H7v5h6v2H5V9h2v2h6v2Z"/></svg>')
}
.md-typeset .admonition.file-tree,
.md-typeset details.file-tree {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .file-tree > .admonition-title,
.md-typeset .file-tree > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .file-tree > .admonition-title::before,
.md-typeset .file-tree > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--file-tree);
		mask-image: var(--md-admonition-icon--file-tree);
}



:root {
	--md-admonition-icon--filter-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 19.88c.04.3-.06.62-.29.83a.996.996 0 0 1-1.41 0L9.29 16.7a.989.989 0 0 1-.29-.83v-5.12L4.21 4.62a1 1 0 0 1 .17-1.4c.19-.14.4-.22.62-.22h14c.22 0 .43.08.62.22a1 1 0 0 1 .17 1.4L15 10.75v9.13M7.04 5 11 10.06v5.52l2 2v-7.53L16.96 5H7.04Z"/></svg>')
}
.md-typeset .admonition.filter-outline,
.md-typeset details.filter-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .filter-outline > .admonition-title,
.md-typeset .filter-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .filter-outline > .admonition-title::before,
.md-typeset .filter-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--filter-outline);
		mask-image: var(--md-admonition-icon--filter-outline);
}



:root {
	--md-admonition-icon--fingerprint: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12 3c-1.97 0-3.85.47-5.56 1.41-.24.13-.54.04-.68-.2a.506.506 0 0 1 .2-.68C7.82 2.5 9.86 2 12 2s4 .47 6.04 1.5c.25.15.34.45.21.69a.48.48 0 0 1-.44.28M3.5 9.72c-.1 0-.2-.03-.29-.09a.517.517 0 0 1-.12-.7c.99-1.4 2.25-2.5 3.75-3.27C10 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.85 3.75 3.25.16.22.1.54-.12.7-.23.16-.54.11-.7-.1a9.257 9.257 0 0 0-3.39-2.96c-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.95-.08.15-.23.22-.39.22m6.25 12.07c-.13 0-.25-.05-.35-.15-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39a.5.5 0 0 1-.5.5.5.5 0 0 1-.5-.5c0-2.42-2.09-4.39-4.66-4.39-2.57 0-4.66 1.97-4.66 4.39 0 1.44.32 2.77.93 3.84.64 1.16 1.08 1.65 1.85 2.43.19.2.19.51 0 .71-.12.1-.24.15-.37.15m7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39a.5.5 0 0 1 .5-.5.5.5 0 0 1 .5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.54.13.58.41.05.26-.13.53-.41.58-.57.11-1.07.12-1.21.12M14.91 22h-.13c-1.59-.46-2.63-1.05-3.72-2.12a7.28 7.28 0 0 1-2.17-5.22c0-1.62 1.38-2.94 3.08-2.94 1.7 0 3.08 1.32 3.08 2.94 0 1.07.95 1.94 2.08 1.94 1.15 0 2.08-.87 2.08-1.94 0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.46 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64a.504.504 0 0 1-.64-.29c-.5-1.31-.73-2.62-.73-3.96 0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.54 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94-1.7 0-3.08-1.32-3.08-2.94 0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.84.27.08.42.36.35.62-.05.23-.26.38-.47.38Z"/></svg>')
}
.md-typeset .admonition.fingerprint,
.md-typeset details.fingerprint {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .fingerprint > .admonition-title,
.md-typeset .fingerprint > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .fingerprint > .admonition-title::before,
.md-typeset .fingerprint > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--fingerprint);
		mask-image: var(--md-admonition-icon--fingerprint);
}



:root {
	--md-admonition-icon--flare: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 11H1v2h6v-2m2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41M13 1h-2v6h2V1m5.36 6.05-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12M17 11v2h6v-2h-6m-5-2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m2.83 7.24 2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41m-9.19.71 1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12M11 23h2v-6h-2v6Z"/></svg>')
}
.md-typeset .admonition.flare,
.md-typeset details.flare {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .flare > .admonition-title,
.md-typeset .flare > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .flare > .admonition-title::before,
.md-typeset .flare > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--flare);
		mask-image: var(--md-admonition-icon--flare);
}



:root {
	--md-admonition-icon--flask-empty-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1c0-.21-.07-.41-.18-.57L13 8.35V4h-2v4.35L5.18 18.43c-.11.16-.18.36-.18.57m1 3a3 3 0 0 1-3-3c0-.6.18-1.16.5-1.63L9 7.81V6a1 1 0 0 1-1-1V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1v1.81l5.5 9.56c.32.47.5 1.03.5 1.63a3 3 0 0 1-3 3H6Z"/></svg>')
}
.md-typeset .admonition.flask-empty-outline,
.md-typeset details.flask-empty-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .flask-empty-outline > .admonition-title,
.md-typeset .flask-empty-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .flask-empty-outline > .admonition-title::before,
.md-typeset .flask-empty-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--flask-empty-outline);
		mask-image: var(--md-admonition-icon--flask-empty-outline);
}



:root {
	--md-admonition-icon--folder-hidden: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 4v4H6V4h3M4 16v-3H2v3h2m-2-4h2V9H2v3m16-4h4a2 2 0 0 0-2-2h-2v2m4 5h-2v3h2v-3m-2-4v3h2V9h-2M9 20v-2H6v2h3m-4-2H4v-1H2v1a2 2 0 0 0 2 2h1v-2m15-1v1h-2v2h2c1.11 0 2-.89 2-2v-1h-2M4 8h1V4H4c-1.11 0-2 .89-2 2v2h2m13 10h-3v2h3v-2m-4 0h-3v2h3v-2m4-12h-3v2h3V6m-7 2h3V6h-1l-2-2v4Z"/></svg>')
}
.md-typeset .admonition.folder-hidden,
.md-typeset details.folder-hidden {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .folder-hidden > .admonition-title,
.md-typeset .folder-hidden > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .folder-hidden > .admonition-title::before,
.md-typeset .folder-hidden > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--folder-hidden);
		mask-image: var(--md-admonition-icon--folder-hidden);
}



:root {
	--md-admonition-icon--folder-open-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.1 10 4 18V8h17a2 2 0 0 0-2-2h-7l-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h15c.9 0 1.7-.6 1.9-1.5l2.3-8.5H6.1M19 18H6l1.6-6h13L19 18Z"/></svg>')
}
.md-typeset .admonition.folder-open-outline,
.md-typeset details.folder-open-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .folder-open-outline > .admonition-title,
.md-typeset .folder-open-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .folder-open-outline > .admonition-title::before,
.md-typeset .folder-open-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--folder-open-outline);
		mask-image: var(--md-admonition-icon--folder-open-outline);
}



:root {
	--md-admonition-icon--folder-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 18H4V8h16m0-2h-8l-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.folder-outline,
.md-typeset details.folder-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .folder-outline > .admonition-title,
.md-typeset .folder-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .folder-outline > .admonition-title::before,
.md-typeset .folder-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--folder-outline);
		mask-image: var(--md-admonition-icon--folder-outline);
}



:root {
	--md-admonition-icon--forest-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.19 18H24l-3.86-6H22L15 2l-2.39 3.41L17.92 13h-1.95l3.22 5M16 12 9 2 2 12h1.86L0 18h7v4h4v-4h7l-3.86-6H16m-3.84-2H10.5l3.84 6H3.67l3.86-6H5.84L9 5.5l3.16 4.5m.84 9v3h4v-3h-4Z"/></svg>')
}
.md-typeset .admonition.forest-outline,
.md-typeset details.forest-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .forest-outline > .admonition-title,
.md-typeset .forest-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .forest-outline > .admonition-title::before,
.md-typeset .forest-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--forest-outline);
		mask-image: var(--md-admonition-icon--forest-outline);
}



:root {
	--md-admonition-icon--format-list-bulleted-square: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 4h4v4H3V4m6 1v2h12V5H9m-6 5h4v4H3v-4m6 1v2h12v-2H9m-6 5h4v4H3v-4m6 1v2h12v-2H9"/></svg>')
}
.md-typeset .admonition.format-list-bulleted-square,
.md-typeset details.format-list-bulleted-square {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .format-list-bulleted-square > .admonition-title,
.md-typeset .format-list-bulleted-square > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .format-list-bulleted-square > .admonition-title::before,
.md-typeset .format-list-bulleted-square > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--format-list-bulleted-square);
		mask-image: var(--md-admonition-icon--format-list-bulleted-square);
}



:root {
	--md-admonition-icon--format-list-bulleted: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h14v2H7V5m0 8v-2h14v2H7M4 4.5A1.5 1.5 0 0 1 5.5 6 1.5 1.5 0 0 1 4 7.5 1.5 1.5 0 0 1 2.5 6 1.5 1.5 0 0 1 4 4.5m0 6A1.5 1.5 0 0 1 5.5 12 1.5 1.5 0 0 1 4 13.5 1.5 1.5 0 0 1 2.5 12 1.5 1.5 0 0 1 4 10.5M7 19v-2h14v2H7m-3-2.5A1.5 1.5 0 0 1 5.5 18 1.5 1.5 0 0 1 4 19.5 1.5 1.5 0 0 1 2.5 18 1.5 1.5 0 0 1 4 16.5Z"/></svg>')
}
.md-typeset .admonition.format-list-bulleted,
.md-typeset details.format-list-bulleted {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .format-list-bulleted > .admonition-title,
.md-typeset .format-list-bulleted > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .format-list-bulleted > .admonition-title::before,
.md-typeset .format-list-bulleted > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--format-list-bulleted);
		mask-image: var(--md-admonition-icon--format-list-bulleted);
}



:root {
	--md-admonition-icon--format-list-checkbox: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19v-2H8v2h13m0-6v-2H8v2h13M8 7h13V5H8v2M4 5v2h2V5H4M3 5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5m1 6v2h2v-2H4m-1 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2m1 6v2h2v-2H4m-1 0a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2Z"/></svg>')
}
.md-typeset .admonition.format-list-checkbox,
.md-typeset details.format-list-checkbox {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .format-list-checkbox > .admonition-title,
.md-typeset .format-list-checkbox > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .format-list-checkbox > .admonition-title::before,
.md-typeset .format-list-checkbox > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--format-list-checkbox);
		mask-image: var(--md-admonition-icon--format-list-checkbox);
}



:root {
	--md-admonition-icon--format-list-text: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 14h6v6H2M16 8h-6v2h6M2 10h6V4H2m8 0v2h12V4M10 20h6v-2h-6m0-2h12v-2H10"/></svg>')
}
.md-typeset .admonition.format-list-text,
.md-typeset details.format-list-text {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .format-list-text > .admonition-title,
.md-typeset .format-list-text > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .format-list-text > .admonition-title::before,
.md-typeset .format-list-text > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--format-list-text);
		mask-image: var(--md-admonition-icon--format-list-text);
}



:root {
	--md-admonition-icon--fountain-pen-tip: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m15.54 3.5 4.96 4.97-1.43 1.41-4.95-4.95 1.42-1.43M3.5 19.78l6.5-6.47c-.1-.31-.03-.7.23-.96.39-.39 1.03-.39 1.42 0 .39.4.39 1.03 0 1.42-.26.26-.65.33-.96.23l-6.47 6.5 10.61-3.55 3.53-6.36-4.94-4.95-6.37 3.53L3.5 19.78Z"/></svg>')
}
.md-typeset .admonition.fountain-pen-tip,
.md-typeset details.fountain-pen-tip {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .fountain-pen-tip > .admonition-title,
.md-typeset .fountain-pen-tip > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .fountain-pen-tip > .admonition-title::before,
.md-typeset .fountain-pen-tip > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--fountain-pen-tip);
		mask-image: var(--md-admonition-icon--fountain-pen-tip);
}



:root {
	--md-admonition-icon--fruit-cherries: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13h-.5c-.7-1.3-1.2-3-1.7-4.7l.9.9c2.7 2.1 5.1 1.7 5.1 1.7s.7-3.8-2-5.8c-2.3-1.8-4.4-1.8-5-1.7-.1-.6-.1-1.1-.2-1.5l-1.4.1c0 3.2-2.7 9.1-3.6 11-2 .2-3.6 1.9-3.6 4 0 2.2 1.8 4 4 4 1.1 0 2-.4 2.7-1.1-.4-.9-.7-1.9-.7-2.9s.3-2 .7-2.9c-.4-.4-1-.7-1.5-.9.7-1.5 1.9-4.2 2.7-6.8.4 2.3 1.2 5 2.2 7.1-1.2.7-2.1 2-2.1 3.5 0 2.2 1.8 4 4 4s4-1.8 4-4-1.8-4-4-4m-8 2.5c-.8 0-1.5.7-1.5 1.5h-1c0-1.4 1.1-2.5 2.5-2.5v1m8 0c-.8 0-1.5.7-1.5 1.5h-1c0-1.4 1.1-2.5 2.5-2.5v1Z"/></svg>')
}
.md-typeset .admonition.fruit-cherries,
.md-typeset details.fruit-cherries {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .fruit-cherries > .admonition-title,
.md-typeset .fruit-cherries > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .fruit-cherries > .admonition-title::before,
.md-typeset .fruit-cherries > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--fruit-cherries);
		mask-image: var(--md-admonition-icon--fruit-cherries);
}



:root {
	--md-admonition-icon--fruit-grapes-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c0-1.39-.95-2.53-2.22-2.88A2.996 2.996 0 0 0 14 5c-.43 0-.83.1-1.19.26.19-1.07.58-2.67 1.59-3.06L13.6 1c-1.7.77-2.2 3.09-2.34 4.29C10.87 5.11 10.45 5 10 5a2.996 2.996 0 0 0-2.78 4.12C5.94 9.46 5 10.62 5 12c0 1.39.95 2.54 2.23 2.88-.14.34-.23.72-.23 1.12 0 1.39.94 2.54 2.22 2.88A2.996 2.996 0 0 0 12 23a2.996 2.996 0 0 0 2.78-4.12A2.974 2.974 0 0 0 17 16c0-.4-.08-.77-.23-1.12A2.982 2.982 0 0 0 19 12m-2.69-2.12v.02h-.01l.01-.02M14 6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5m-.5 5.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5M10 6.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5S8.5 8.83 8.5 8s.67-1.5 1.5-1.5M6.5 12c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m2 4c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5m3.5 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m2-4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5m2-4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5Z"/></svg>')
}
.md-typeset .admonition.fruit-grapes-outline,
.md-typeset details.fruit-grapes-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .fruit-grapes-outline > .admonition-title,
.md-typeset .fruit-grapes-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .fruit-grapes-outline > .admonition-title::before,
.md-typeset .fruit-grapes-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--fruit-grapes-outline);
		mask-image: var(--md-admonition-icon--fruit-grapes-outline);
}



:root {
	--md-admonition-icon--gas-burner: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.14 8.79-.02.01c.23.27.43.59.58.92l.09.19c.71 1.69.21 3.64-1.1 4.86-1.19 1.09-2.85 1.38-4.39 1.18-1.46-.18-2.8-1.1-3.57-2.37-.23-.39-.43-.83-.53-1.28-.13-.37-.17-.73-.2-1.1-.09-1.6.55-3.3 1.76-4.3-.55 1.21-.42 2.72.39 3.77l.11.13c.14.12.31.16.47.09.15-.06.27-.21.27-.39l-.07-.22c-.88-2.32-.14-5.03 1.73-6.56.51-.42 1.14-.8 1.8-.97-.68 1.36-.46 3.14.63 4.21.46.47 1.01.78 1.49 1.22l.56.61m-2.28 4.64-.01-.01c.45-.39.7-1.06.68-1.66l-.03-.32c-.2-1-1.07-1.33-1.63-2.06-.17-.22-.32-.5-.43-.78-.22.5-.24.97-.15 1.51.1.57.33 1.06.21 1.65-.16.65-.67 1.3-1.56 1.51.5.49 1.31.88 2.12.6.26-.07.59-.26.8-.44M11 18v1c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1v-1c1.11 0 3 .9 3 2v2H4v-2c0-1.1 1.9-2 3-2v1c0 .55.45 1 1 1s1-.45 1-1v-1h2Z"/></svg>')
}
.md-typeset .admonition.gas-burner,
.md-typeset details.gas-burner {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .gas-burner > .admonition-title,
.md-typeset .gas-burner > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .gas-burner > .admonition-title::before,
.md-typeset .gas-burner > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--gas-burner);
		mask-image: var(--md-admonition-icon--gas-burner);
}



:root {
	--md-admonition-icon--gate: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 6v5H7V7H5v4H3V9H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2V9h-2v2h-2V7h-2v4h-2V6h-2v5h-2V6H9m-6 7h2v4H3v-4m4 0h2v4H7v-4m4 0h2v4h-2v-4m4 0h2v4h-2v-4m4 0h2v4h-2v-4Z"/></svg>')
}
.md-typeset .admonition.gate,
.md-typeset details.gate {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .gate > .admonition-title,
.md-typeset .gate > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .gate > .admonition-title::before,
.md-typeset .gate > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--gate);
		mask-image: var(--md-admonition-icon--gate);
}



:root {
	--md-admonition-icon--ghost-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9 9 0 0 0-9 9v11l3-3 3 3 3-3 3 3 3-3 3 3V11a9 9 0 0 0-9-9m7 15.17-1-1-1.41 1.42L15 19.17l-1.59-1.58L12 16.17l-1.41 1.42L9 19.17l-1.59-1.58L6 16.17l-1 1V11c0-3.86 3.14-7 7-7s7 3.14 7 7v6.17M11 10c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2m6 0c0 1.11-.89 2-2 2s-2-.89-2-2 .9-2 2-2 2 .9 2 2Z"/></svg>')
}
.md-typeset .admonition.ghost-outline,
.md-typeset details.ghost-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ghost-outline > .admonition-title,
.md-typeset .ghost-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ghost-outline > .admonition-title::before,
.md-typeset .ghost-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ghost-outline);
		mask-image: var(--md-admonition-icon--ghost-outline);
}



:root {
	--md-admonition-icon--github: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2Z"/></svg>')
}
.md-typeset .admonition.github,
.md-typeset details.github {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .github > .admonition-title,
.md-typeset .github > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .github > .admonition-title::before,
.md-typeset .github > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--github);
		mask-image: var(--md-admonition-icon--github);
}



:root {
	--md-admonition-icon--gondola: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 10h-5V7.59l9.12-1.52-.24-1.48-5.47.91c.05-.15.09-.32.09-.5A1.5 1.5 0 0 0 15 3.5 1.5 1.5 0 0 0 13.5 5c0 .35.13.68.34.93l-.84.14V5h-2v1.41l-.59.09c.05-.15.09-.32.09-.5A1.5 1.5 0 0 0 9 4.5 1.5 1.5 0 0 0 7.5 6c0 .36.13.68.33.93l-5.95 1 .24 1.48L11 7.93V10H6a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2M6 12h2.25v4H6v-4m3.75 4v-4h4.5v4h-4.5M18 16h-2.25v-4H18v4Z"/></svg>')
}
.md-typeset .admonition.gondola,
.md-typeset details.gondola {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .gondola > .admonition-title,
.md-typeset .gondola > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .gondola > .admonition-title::before,
.md-typeset .gondola > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--gondola);
		mask-image: var(--md-admonition-icon--gondola);
}



:root {
	--md-admonition-icon--google-downasaur: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 2v1h-1v6h-1v1H9v1H8v1H7v1H5v-1H4v-1H3V9H2v6h1v1h1v1h1v1h1v4h2v-1H7v-1h1v-1h1v-1h1v1h1v3h2v-1h-1v-4h1v-1h1v-1h1v-3h1v1h1v-2h-2V9h5V8h-3V7h5V3h-1V2m-7 1h1v1h-1Z"/></svg>')
}
.md-typeset .admonition.google-downasaur,
.md-typeset details.google-downasaur {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .google-downasaur > .admonition-title,
.md-typeset .google-downasaur > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .google-downasaur > .admonition-title::before,
.md-typeset .google-downasaur > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--google-downasaur);
		mask-image: var(--md-admonition-icon--google-downasaur);
}



:root {
	--md-admonition-icon--grain: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 12a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2M6 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m0 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m12-8a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2m-4 8a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m4-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4-4a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.grain,
.md-typeset details.grain {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .grain > .admonition-title,
.md-typeset .grain > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .grain > .admonition-title::before,
.md-typeset .grain > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--grain);
		mask-image: var(--md-admonition-icon--grain);
}



:root {
	--md-admonition-icon--graph-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 17c-.14 0-.26 0-.39.04L17.5 13.8c.45-.45.75-1.09.75-1.8a2.5 2.5 0 0 0-2.5-2.5c-.14 0-.25 0-.4.04L13.74 6.3c.47-.46.76-1.09.76-1.8a2.5 2.5 0 0 0-5 0c0 .7.29 1.34.76 1.79L8.65 9.54c-.15-.04-.26-.04-.4-.04a2.5 2.5 0 0 0-2.5 2.5c0 .71.29 1.34.75 1.79l-1.61 3.25C4.76 17 4.64 17 4.5 17a2.5 2.5 0 0 0 0 5A2.5 2.5 0 0 0 7 19.5c0-.7-.29-1.34-.76-1.79l1.62-3.25c.14.04.26.04.39.04s.25 0 .38-.04l1.63 3.25c-.47.45-.76 1.09-.76 1.79a2.5 2.5 0 0 0 5 0A2.5 2.5 0 0 0 12 17c-.13 0-.26 0-.39.04L10 13.8c.45-.45.75-1.09.75-1.8 0-.7-.29-1.33-.75-1.79l1.61-3.25c.13.04.26.04.39.04s.26 0 .39-.04L14 10.21a2.5 2.5 0 0 0 1.75 4.29c.13 0 .25 0 .38-.04l1.63 3.25c-.47.45-.76 1.09-.76 1.79a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-2.5-2.5m-15 3.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m8.5-1c0 .55-.45 1-1 1s-1-.45-1-1 .45-1 1-1 1 .45 1 1M7.25 12c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1M11 4.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m3.75 7.5c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1m4.75 8.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1Z"/></svg>')
}
.md-typeset .admonition.graph-outline,
.md-typeset details.graph-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .graph-outline > .admonition-title,
.md-typeset .graph-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .graph-outline > .admonition-title::before,
.md-typeset .graph-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--graph-outline);
		mask-image: var(--md-admonition-icon--graph-outline);
}



:root {
	--md-admonition-icon--grass: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20H2v-2h5.75C7 15.19 4.81 13 2 12.26c.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8m10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.5 1.58-6.88 3.93.29.66.53 1.35.67 2.07.13.65.21 1.32.21 2h8v-2h-5.76c.76-2.81 2.95-5 5.76-5.74M15.64 11c.78-2.07 2.23-3.82 4.09-5-4.29.16-7.73 3.67-7.73 8 .95-1.25 2.2-2.28 3.64-3m-4.22-2.15A8.527 8.527 0 0 0 6.7 4C8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82a9.91 9.91 0 0 1 1.24-3.29Z"/></svg>')
}
.md-typeset .admonition.grass,
.md-typeset details.grass {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .grass > .admonition-title,
.md-typeset .grass > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .grass > .admonition-title::before,
.md-typeset .grass > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--grass);
		mask-image: var(--md-admonition-icon--grass);
}



:root {
	--md-admonition-icon--grid-large: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4c-1.08 0-2-.9-2-2V4a2 2 0 0 1 2-2m0 2v7h7V4H4m0 16h7v-7H4v7m16 0v-7h-7v7h7m0-16h-7v7h7V4Z"/></svg>')
}
.md-typeset .admonition.grid-large,
.md-typeset details.grid-large {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .grid-large > .admonition-title,
.md-typeset .grid-large > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .grid-large > .admonition-title::before,
.md-typeset .grid-large > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--grid-large);
		mask-image: var(--md-admonition-icon--grid-large);
}



:root {
	--md-admonition-icon--grid: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 4v4h4V4h-4m6 0v4h4V4h-4m0 6v4h4v-4h-4m0 6v4h4v-4h-4m-2 4v-4h-4v4h4m-6 0v-4H4v4h4m0-6v-4H4v4h4m0-6V4H4v4h4m2 6h4v-4h-4v4M4 2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H4c-1.08 0-2-.9-2-2V4a2 2 0 0 1 2-2Z"/></svg>')
}
.md-typeset .admonition.grid,
.md-typeset details.grid {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .grid > .admonition-title,
.md-typeset .grid > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .grid > .admonition-title::before,
.md-typeset .grid > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--grid);
		mask-image: var(--md-admonition-icon--grid);
}



:root {
	--md-admonition-icon--hammer: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 19.63 13.43 8.2l-.71-.7 1.42-1.43L12 3.89c1.2-1.19 3.09-1.19 4.27 0l3.6 3.61-1.42 1.41h2.84l.71.71-3.55 3.59-.71-.71V9.62l-1.47 1.42-.71-.71L4.13 21.76 2 19.63Z"/></svg>')
}
.md-typeset .admonition.hammer,
.md-typeset details.hammer {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .hammer > .admonition-title,
.md-typeset .hammer > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .hammer > .admonition-title::before,
.md-typeset .hammer > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--hammer);
		mask-image: var(--md-admonition-icon--hammer);
}



:root {
	--md-admonition-icon--hanger: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4a3.5 3.5 0 0 0-3.5 3.5h2A1.5 1.5 0 0 1 12 6a1.5 1.5 0 0 1 1.5 1.5A1.5 1.5 0 0 1 12 9c-.55 0-1 .45-1 1v1.75L2.4 18.2A1 1 0 0 0 3 20h18a1 1 0 0 0 .6-1.8L13 11.75v-.9a3.5 3.5 0 0 0 2.5-3.35A3.5 3.5 0 0 0 12 4m0 9.5 6 4.5H6Z"/></svg>')
}
.md-typeset .admonition.hanger,
.md-typeset details.hanger {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .hanger > .admonition-title,
.md-typeset .hanger > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .hanger > .admonition-title::before,
.md-typeset .hanger > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--hanger);
		mask-image: var(--md-admonition-icon--hanger);
}



:root {
	--md-admonition-icon--helicopter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h14v2H3V3m20 3v4.5l-8.25 1.7A3.499 3.499 0 0 1 13 16.66V19h3v2H4a3 3 0 0 1-3-3v-1h2v1a1 1 0 0 0 1 1h1v-2.26c-1.75-.61-3-2.28-3-4.24C2 10 4 8 6.5 8H9V6h2v2h10V6h2M11 19v-2H7v2h4m-3.5-9c-1.38 0-2.5.9-2.5 2s1.12 2 2.5 2 2.5-.9 2.5-2-1.12-2-2.5-2Z"/></svg>')
}
.md-typeset .admonition.helicopter,
.md-typeset details.helicopter {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .helicopter > .admonition-title,
.md-typeset .helicopter > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .helicopter > .admonition-title::before,
.md-typeset .helicopter > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--helicopter);
		mask-image: var(--md-admonition-icon--helicopter);
}



:root {
	--md-admonition-icon--hook: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6a3.99 3.99 0 0 1-3 3.86V17a5 5 0 0 1-5 5 5 5 0 0 1-5-5v-5l5 5H7a3 3 0 0 0 3 3 3 3 0 0 0 3-3V9.86c-1.77-.46-3-2.06-3-3.89C10 3.76 11.8 2 14 2c2.22 0 4 1.79 4 4m-4 2a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2Z"/></svg>')
}
.md-typeset .admonition.hook,
.md-typeset details.hook {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .hook > .admonition-title,
.md-typeset .hook > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .hook > .admonition-title::before,
.md-typeset .hook > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--hook);
		mask-image: var(--md-admonition-icon--hook);
}



:root {
	--md-admonition-icon--horseshoe: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h1V1h-4v3s2 4 2 8-2 7-6 7-6-3-6-7 2-8 2-8V1H4v3h1S2 8 2 14c0 5 5 9 10 9s10-4 10-9c0-6-3-10-3-10M4 13c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m2 6c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m6 3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m6-3c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1m2-6c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1Z"/></svg>')
}
.md-typeset .admonition.horseshoe,
.md-typeset details.horseshoe {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .horseshoe > .admonition-title,
.md-typeset .horseshoe > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .horseshoe > .admonition-title::before,
.md-typeset .horseshoe > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--horseshoe);
		mask-image: var(--md-admonition-icon--horseshoe);
}



:root {
	--md-admonition-icon--hot-tub: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 4a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m4.15 8H22v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8h3v-.75C5 10 6 9 7.25 9h.03c.34 0 .67.09.96.23.26.12.5.27.69.5l1.4 1.55c.23.26.51.5.82.72M7 20v-6H5v6h2m4 0v-6H9v6h2m4 0v-6h-2v6h2m4 0v-6h-2v6h2m-.35-14.14c1.03 1 1.51 2.35 1.3 3.71l-.06.43H18l.09-.59c.15-.79-.09-1.58-.67-2.2l-.07-.06c-1.03-1.01-1.5-2.36-1.3-3.72l.06-.43H18l-.09.59c-.15.79.09 1.58.67 2.2l.07.07m-4 0c1.03 1 1.51 2.35 1.3 3.71l-.06.43H14l.09-.59c.15-.79-.09-1.58-.67-2.2l-.07-.06c-1.03-1.01-1.5-2.36-1.3-3.72l.06-.43H14l-.09.59c-.15.79.09 1.58.67 2.2l.07.07Z"/></svg>')
}
.md-typeset .admonition.hot-tub,
.md-typeset details.hot-tub {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .hot-tub > .admonition-title,
.md-typeset .hot-tub > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .hot-tub > .admonition-title::before,
.md-typeset .hot-tub > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--hot-tub);
		mask-image: var(--md-admonition-icon--hot-tub);
}



:root {
	--md-admonition-icon--hubspot: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.1 8.6V6.2c.6-.3 1.1-.9 1.1-1.6v-.1c0-1-.8-1.8-1.8-1.8h-.1c-1 0-1.8.8-1.8 1.8v.1c0 .7.4 1.3 1.1 1.6v2.4c-.9.1-1.8.5-2.5 1.1L6.5 4.6c.3-1.1-.4-2.3-1.5-2.5-1.1-.2-2.2.3-2.5 1.4-.3 1.1.4 2.3 1.5 2.6.5.1 1.1.1 1.6-.2l6.4 5c-1.2 1.8-1.2 4.1.1 5.9l-2 2c-.2 0-.3-.1-.5-.1-.9 0-1.7.8-1.7 1.7 0 .9.8 1.6 1.7 1.6.9 0 1.7-.8 1.7-1.7 0-.2 0-.3-.1-.5l1.9-1.9c2.3 1.7 5.6 1.3 7.3-1 1.7-2.3 1.3-5.6-1-7.3-.6-.5-1.4-.9-2.3-1m-.8 7.8c-1.5 0-2.7-1.2-2.7-2.7 0-1.5 1.2-2.7 2.7-2.7 1.5 0 2.7 1.2 2.7 2.7 0 1.5-1.2 2.7-2.7 2.7"/></svg>')
}
.md-typeset .admonition.hubspot,
.md-typeset details.hubspot {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .hubspot > .admonition-title,
.md-typeset .hubspot > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .hubspot > .admonition-title::before,
.md-typeset .hubspot > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--hubspot);
		mask-image: var(--md-admonition-icon--hubspot);
}



:root {
	--md-admonition-icon--id-card: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2H4m0 2h16v4H4V6m0 6h4v2H4v-2m6 0h10v2H10v-2m-6 4h10v2H4v-2m12 0h4v2h-4v-2Z"/></svg>')
}
.md-typeset .admonition.id-card,
.md-typeset details.id-card {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .id-card > .admonition-title,
.md-typeset .id-card > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .id-card > .admonition-title::before,
.md-typeset .id-card > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--id-card);
		mask-image: var(--md-admonition-icon--id-card);
}



:root {
	--md-admonition-icon--image-filter-tilt-shift: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.68 19.74A9.981 9.981 0 0 0 11 21.95v-2.02a7.941 7.941 0 0 1-3.9-1.62m5.9 1.62v2.02c2-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62m5.31-3.03 1.43 1.43c1.21-1.48 2.01-3.33 2.21-5.33h-2.02a7.941 7.941 0 0 1-1.62 3.9M15 12a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3M4.07 13H2.05c.2 2 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 0 1 4.07 13m1.62-5.9L4.26 5.68A9.981 9.981 0 0 0 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9M19.93 11h2.02c-.2-2-1-3.84-2.21-5.32L18.31 7.1a7.941 7.941 0 0 1 1.62 3.9m-1.61-6.74A9.981 9.981 0 0 0 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62M11 4.07V2.05c-2 .2-3.84 1-5.32 2.21L7.1 5.69A7.941 7.941 0 0 1 11 4.07Z"/></svg>')
}
.md-typeset .admonition.image-filter-tilt-shift,
.md-typeset details.image-filter-tilt-shift {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .image-filter-tilt-shift > .admonition-title,
.md-typeset .image-filter-tilt-shift > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .image-filter-tilt-shift > .admonition-title::before,
.md-typeset .image-filter-tilt-shift > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--image-filter-tilt-shift);
		mask-image: var(--md-admonition-icon--image-filter-tilt-shift);
}



:root {
	--md-admonition-icon--image-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 19H5V5h14m0-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5.04 9.29-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71Z"/></svg>')
}
.md-typeset .admonition.image-outline,
.md-typeset details.image-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .image-outline > .admonition-title,
.md-typeset .image-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .image-outline > .admonition-title::before,
.md-typeset .image-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--image-outline);
		mask-image: var(--md-admonition-icon--image-outline);
}



:root {
	--md-admonition-icon--infinity: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.6 6.62C21.58 6.62 24 9 24 12c0 2.96-2.42 5.37-5.4 5.37-1.45 0-2.8-.56-3.82-1.57L12 13.34l-2.83 2.51c-.97.97-2.33 1.53-3.77 1.53C2.42 17.38 0 14.96 0 12s2.42-5.38 5.4-5.38c1.44 0 2.8.56 3.82 1.58L12 10.66l2.83-2.51c.97-.97 2.33-1.53 3.77-1.53M7.8 14.39 10.5 12 7.84 9.65c-.68-.68-1.53-1.03-2.44-1.03C3.53 8.62 2 10.13 2 12c0 1.87 1.53 3.38 3.4 3.38.91 0 1.76-.35 2.4-.99m8.4-4.78L13.5 12l2.66 2.35c.68.68 1.54 1.03 2.44 1.03 1.87 0 3.4-1.51 3.4-3.38 0-1.87-1.53-3.38-3.4-3.38-.91 0-1.76.35-2.4.99Z"/></svg>')
}
.md-typeset .admonition.infinity,
.md-typeset details.infinity {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .infinity > .admonition-title,
.md-typeset .infinity > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .infinity > .admonition-title::before,
.md-typeset .infinity > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--infinity);
		mask-image: var(--md-admonition-icon--infinity);
}



:root {
	--md-admonition-icon--island: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0C6.78 19.53 5.39 20 4 20H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62 1 4 1h2v-2h-2m.78-1H20c-1.18 0-2.36-.4-3.42-1.15l-.58-.4-.58.4c-1.03.72-2.21 1.1-3.42 1.1-1.23 0-2.41-.38-3.44-1.1l-.56-.4-.57.4C6.36 18.6 5.18 19 4 19h-.78c.53-1.46 2.36-4 8.78-4 2 0 3 .24 3 .24.68-1.37 1.83-4.47 1-8.42l1.06.71c.33 1.43.94 4.22-.26 8.12 2.63.85 3.62 2.35 3.98 3.35M22 7.59c-.79-1.09-2-1.88-3.42-2.06.12.14.23.3.34.47a5.03 5.03 0 0 1-.45 5.95c.59-1.45.53-3.16-.39-4.59-.08-.08-.12-.16-.18-.25-.4-.58-.94-1.05-1.52-1.39-2.03.65-3.5 2.55-3.5 4.78 0 .53.08 1.03.22 1.5-.6-.83-.94-1.83-.94-2.93 0-1.66.8-3.12 2.04-4.04-1.04-.08-2.11.15-3.06.75-.44.27-.82.6-1.14.98.39-.94 1.05-1.76 2-2.36a4.85 4.85 0 0 1 3.39-.71 5.2 5.2 0 0 0-1.06-1.09c-.41-.31-.86-.55-1.33-.72 1 .03 2.04.36 2.91 1.01.44.33.79.73 1.09 1.16.06 0 .12-.01.19-.01A5.03 5.03 0 0 1 22 7.59Z"/></svg>')
}
.md-typeset .admonition.island,
.md-typeset details.island {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .island > .admonition-title,
.md-typeset .island > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .island > .admonition-title::before,
.md-typeset .island > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--island);
		mask-image: var(--md-admonition-icon--island);
}



:root {
	--md-admonition-icon--kaggle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M304.2 501.5 158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z"/></svg>')
}
.md-typeset .admonition.kaggle,
.md-typeset details.kaggle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .kaggle > .admonition-title,
.md-typeset .kaggle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .kaggle > .admonition-title::before,
.md-typeset .kaggle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--kaggle);
		mask-image: var(--md-admonition-icon--kaggle);
}



:root {
	--md-admonition-icon--keyboard-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4m0 2h16v10H4V7m1 1v2h2V8H5m3 0v2h2V8H8m3 0v2h2V8h-2m3 0v2h2V8h-2m3 0v2h2V8h-2M5 11v2h2v-2H5m3 0v2h2v-2H8m3 0v2h2v-2h-2m3 0v2h2v-2h-2m3 0v2h2v-2h-2m-9 3v2h8v-2H8Z"/></svg>')
}
.md-typeset .admonition.keyboard-outline,
.md-typeset details.keyboard-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .keyboard-outline > .admonition-title,
.md-typeset .keyboard-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .keyboard-outline > .admonition-title::before,
.md-typeset .keyboard-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--keyboard-outline);
		mask-image: var(--md-admonition-icon--keyboard-outline);
}



:root {
	--md-admonition-icon--keyboard-space: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15h2v4h14v-4h2v4c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-4Z"/></svg>')
}
.md-typeset .admonition.keyboard-space,
.md-typeset details.keyboard-space {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .keyboard-space > .admonition-title,
.md-typeset .keyboard-space > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .keyboard-space > .admonition-title::before,
.md-typeset .keyboard-space > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--keyboard-space);
		mask-image: var(--md-admonition-icon--keyboard-space);
}



:root {
	--md-admonition-icon--kite-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.5 5.1 5.45 5.28-5.45 7.5-5.43-7.5L12.5 5.1m0-2.1c-.45 0-.84.15-1.17.46L5.54 9.08c-.31.3-.48.67-.54 1.12 0 .44.08.84.33 1.2l6.12 8.43c-.25.53-.7.79-1.36.79-.8 0-1.3-.37-1.49-1.12-.2-.66-.6-1.23-1.22-1.7-.62-.46-1.28-.7-1.97-.7-1.05 0-1.91.4-2.56 1.2l1.36 1.12c.29-.39.71-.58 1.2-.58.8 0 1.3.37 1.49 1.11.19.67.6 1.24 1.22 1.72s1.28.73 1.97.73c1.24 0 2.19-.57 2.85-1.7l6.74-9.3c.25-.36.35-.76.32-1.2-.05-.44-.23-.82-.53-1.12l-5.79-5.62c-.33-.31-.72-.46-1.18-.46Z"/></svg>')
}
.md-typeset .admonition.kite-outline,
.md-typeset details.kite-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .kite-outline > .admonition-title,
.md-typeset .kite-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .kite-outline > .admonition-title::before,
.md-typeset .kite-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--kite-outline);
		mask-image: var(--md-admonition-icon--kite-outline);
}



:root {
	--md-admonition-icon--label-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 17H5V7h11l3.55 5m-1.92-6.16C17.27 5.33 16.67 5 16 5H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h11c.67 0 1.27-.34 1.63-.85L22 12l-4.37-6.16Z"/></svg>')
}
.md-typeset .admonition.label-outline,
.md-typeset details.label-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .label-outline > .admonition-title,
.md-typeset .label-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .label-outline > .admonition-title::before,
.md-typeset .label-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--label-outline);
		mask-image: var(--md-admonition-icon--label-outline);
}



:root {
	--md-admonition-icon--label-variant-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.5 17H15l3.5-5L15 7H6.5l3.5 5-3.5 5m8.5 2H3l4.5-7L3 5h12c.69 0 1.23.3 1.64.86L21 12l-4.36 6.14c-.41.56-.95.86-1.64.86Z"/></svg>')
}
.md-typeset .admonition.label-variant-outline,
.md-typeset details.label-variant-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .label-variant-outline > .admonition-title,
.md-typeset .label-variant-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .label-variant-outline > .admonition-title::before,
.md-typeset .label-variant-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--label-variant-outline);
		mask-image: var(--md-admonition-icon--label-variant-outline);
}



:root {
	--md-admonition-icon--ladder: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 1v2h-4V1H8v21h2v-2h4v2h2V1h-2m0 4v3h-4V5h4m0 5v3h-4v-3h4m-4 8v-3h4v3h-4Z"/></svg>')
}
.md-typeset .admonition.ladder,
.md-typeset details.ladder {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ladder > .admonition-title,
.md-typeset .ladder > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ladder > .admonition-title::before,
.md-typeset .ladder > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ladder);
		mask-image: var(--md-admonition-icon--ladder);
}



:root {
	--md-admonition-icon--ladybug: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 5c.74 0 1.47.1 2.15.29l1.63-2.83c.28-.46.89-.64 1.37-.36.48.27.64.9.35 1.36L16 6.07A8.07 8.07 0 0 1 18.93 9H5.07A8.07 8.07 0 0 1 8 6.07L6.5 3.46a.978.978 0 0 1 .35-1.36c.48-.28 1.09-.1 1.37.36l1.63 2.83C10.53 5.1 11.26 5 12 5m8 8a8 8 0 0 1-7.25 7.97V10.5h6.85c.26.79.4 1.63.4 2.5M4 13c0-.87.14-1.71.4-2.5h6.85v10.47A8 8 0 0 1 4 13Z"/></svg>')
}
.md-typeset .admonition.ladybug,
.md-typeset details.ladybug {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ladybug > .admonition-title,
.md-typeset .ladybug > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ladybug > .admonition-title::before,
.md-typeset .ladybug > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ladybug);
		mask-image: var(--md-admonition-icon--ladybug);
}



:root {
	--md-admonition-icon--lastpass: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m-6 0a2 2 0 0 1 2-2 2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2m20-7h-2v14h2V5Z"/></svg>')
}
.md-typeset .admonition.lastpass,
.md-typeset details.lastpass {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .lastpass > .admonition-title,
.md-typeset .lastpass > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .lastpass > .admonition-title::before,
.md-typeset .lastpass > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--lastpass);
		mask-image: var(--md-admonition-icon--lastpass);
}



:root {
	--md-admonition-icon--layers-triple: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0 3 7l1.63 1.27L12 14l7.36-5.73L21 7l-9-7m7.37 10.73L12 16.47l-7.38-5.73L3 12l9 7 9-7-1.63-1.27m0 5L12 21.47l-7.38-5.73L3 17l9 7 9-7-1.63-1.27Z"/></svg>')
}
.md-typeset .admonition.layers-triple,
.md-typeset details.layers-triple {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .layers-triple > .admonition-title,
.md-typeset .layers-triple > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .layers-triple > .admonition-title::before,
.md-typeset .layers-triple > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--layers-triple);
		mask-image: var(--md-admonition-icon--layers-triple);
}



:root {
	--md-admonition-icon--lightbulb-cfl-spiral: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2c-.16 0-.31.03-.45.1l-2 1C7.56 3.66 8 5 9 5c.16 0 .32-.05.45-.1l2-1C12.43 3.36 12 2 11 2m4 2a.96.96 0 0 0-.45.1l-6 3C7.56 7.68 8 9 9 9c.18 0 .32-.05.45-.1l6-3C16.41 5.43 16 4 15 4m0 4c-.16 0-.31.03-.45.1L8.7 11.03c-.5.22-.7.57-.7.97v2H7v3c0 .55.44 1 1 1h8c.55 0 1-.45 1-1v-3h-1v-1c0-.56-.45-1-1-1s-1 .45-1 1v1h-4v-1.38l5.45-2.72C16.42 9.34 16 8 15 8M9 20v1c0 .57.46 1 1 1h4c.56 0 1-.45 1-1v-1"/></svg>')
}
.md-typeset .admonition.lightbulb-cfl-spiral,
.md-typeset details.lightbulb-cfl-spiral {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .lightbulb-cfl-spiral > .admonition-title,
.md-typeset .lightbulb-cfl-spiral > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .lightbulb-cfl-spiral > .admonition-title::before,
.md-typeset .lightbulb-cfl-spiral > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--lightbulb-cfl-spiral);
		mask-image: var(--md-admonition-icon--lightbulb-cfl-spiral);
}



:root {
	--md-admonition-icon--lightbulb-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 1 7 7c0 2.38-1.19 4.47-3 5.74V17a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1v-2.26C6.19 13.47 5 11.38 5 9a7 7 0 0 1 7-7M9 21v-1h6v1a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1m3-17a5 5 0 0 0-5 5c0 2.05 1.23 3.81 3 4.58V16h4v-2.42c1.77-.77 3-2.53 3-4.58a5 5 0 0 0-5-5Z"/></svg>')
}
.md-typeset .admonition.lightbulb-outline,
.md-typeset details.lightbulb-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .lightbulb-outline > .admonition-title,
.md-typeset .lightbulb-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .lightbulb-outline > .admonition-title::before,
.md-typeset .lightbulb-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--lightbulb-outline);
		mask-image: var(--md-admonition-icon--lightbulb-outline);
}



:root {
	--md-admonition-icon--lightbulb-variant-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.87-3.13-7-7-7m2 11.58V16h-1v-4.59l1.71-1.7c.39-.39.39-1.03 0-1.42-.39-.39-1.03-.39-1.42 0L12 9.59l-1.29-1.3c-.39-.39-1.03-.39-1.42 0-.39.39-.39 1.03 0 1.42l1.71 1.7V16h-1v-2.42C8.23 12.81 7 11.05 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.05-1.23 3.81-3 4.58M9 20h6v1c0 .55-.45 1-1 1h-4c-.55 0-1-.45-1-1v-1Z"/></svg>')
}
.md-typeset .admonition.lightbulb-variant-outline,
.md-typeset details.lightbulb-variant-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .lightbulb-variant-outline > .admonition-title,
.md-typeset .lightbulb-variant-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .lightbulb-variant-outline > .admonition-title::before,
.md-typeset .lightbulb-variant-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--lightbulb-variant-outline);
		mask-image: var(--md-admonition-icon--lightbulb-variant-outline);
}



:root {
	--md-admonition-icon--liquid-spot: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.14 16.7c-.91 1.51-2.06 1.03-3.14.39s-2.1-1.41-2.75-.5c-.71.78-.16 2.03.12 3.13.28 1.11.3 2.07-1.47 2.28-1.4-.19-1.32-1.35-1.09-2.58.23-1.23.59-2.53-.31-2.99-.72-.48-1.22.35-1.85 1.17-.65.81-1.39 1.6-2.61 1.02-1.1-.91-.68-1.44-.1-2.12s1.33-1.59.9-3.19c-.18-.65-1.08-.5-1.97-.52-.87-.02-1.75-.2-1.84-1.5-.07-.79.52-1.11 1.13-1.36.62-.25 1.25-.43 1.26-1.06.03-.61-.38-1.04-.64-1.49s-.37-.92.25-1.62c1.05-.86 1.89-.13 2.73.66s1.67 1.62 2.7.97c.82-.54.07-1.49-.51-2.42s-.99-1.82.51-2.23c1.3-.36 1.8.53 2.25 1.56.46 1.03.86 2.2 1.96 2.41 1.57.29 2.71-1.55 3.8-3.01s2.16-2.55 3.53-.75c1.5 1.89.07 2.77-1.6 3.55-1.67.73-3.59 1.37-3.13 2.78.27.82 1.15.37 2.08.06.92-.31 1.91-.48 2.39.93.51 1.49-.7 1.83-2.06 1.97-1.36.14-2.88.08-2.98.76-.11.71.8 1 1.59 1.42.79.43 1.46 1 .85 2.28M20.5 19c-.95 0-1.44-.74-1.44-1.5s.48-1.5 1.44-1.5c1 0 1.5.74 1.5 1.5s-.5 1.5-1.5 1.5Z"/></svg>')
}
.md-typeset .admonition.liquid-spot,
.md-typeset details.liquid-spot {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .liquid-spot > .admonition-title,
.md-typeset .liquid-spot > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .liquid-spot > .admonition-title::before,
.md-typeset .liquid-spot > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--liquid-spot);
		mask-image: var(--md-admonition-icon--liquid-spot);
}



:root {
	--md-admonition-icon--magnet: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 7v6a9 9 0 0 0 9 9 9 9 0 0 0 9-9V7h-4v6a5 5 0 0 1-5 5 5 5 0 0 1-5-5V7m10-2h4V2h-4M3 5h4V2H3"/></svg>')
}
.md-typeset .admonition.magnet,
.md-typeset details.magnet {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .magnet > .admonition-title,
.md-typeset .magnet > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .magnet > .admonition-title::before,
.md-typeset .magnet > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--magnet);
		mask-image: var(--md-admonition-icon--magnet);
}



:root {
	--md-admonition-icon--magnify: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>')
}
.md-typeset .admonition.magnify,
.md-typeset details.magnify {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .magnify > .admonition-title,
.md-typeset .magnify > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .magnify > .admonition-title::before,
.md-typeset .magnify > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--magnify);
		mask-image: var(--md-admonition-icon--magnify);
}



:root {
	--md-admonition-icon--math-compass: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 19.88V22l-1.8-1.17-4.79-9c.66-.21 1.26-.55 1.78-1L20 19.88M15 7a3 3 0 0 1-3 3h-.44L5.8 20.83 4 22v-2.12L9.79 9c-1.1-1.23-1-3.13.24-4.24C10.57 4.28 11.27 4 12 4V2a1 1 0 0 1 1 1v1.18c1.2.42 2 1.55 2 2.82m-2 0a1 1 0 0 0-1-1 1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1Z"/></svg>')
}
.md-typeset .admonition.math-compass,
.md-typeset details.math-compass {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .math-compass > .admonition-title,
.md-typeset .math-compass > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .math-compass > .admonition-title::before,
.md-typeset .math-compass > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--math-compass);
		mask-image: var(--md-admonition-icon--math-compass);
}



:root {
	--md-admonition-icon--memory: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17H7V7h10m4 4V9h-2V7a2 2 0 0 0-2-2h-2V3h-2v2h-2V3H9v2H7c-1.11 0-2 .89-2 2v2H3v2h2v2H3v2h2v2a2 2 0 0 0 2 2h2v2h2v-2h2v2h2v-2h2a2 2 0 0 0 2-2v-2h2v-2h-2v-2m-6 2h-2v-2h2m2-2H9v6h6V9Z"/></svg>')
}
.md-typeset .admonition.memory,
.md-typeset details.memory {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .memory > .admonition-title,
.md-typeset .memory > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .memory > .admonition-title::before,
.md-typeset .memory > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--memory);
		mask-image: var(--md-admonition-icon--memory);
}



:root {
	--md-admonition-icon--message-bookmark-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m0 14H5.2L4 17.2V4h16v12m-2-2V6h-5v8l2.5-1.5L18 14"/></svg>')
}
.md-typeset .admonition.message-bookmark-outline,
.md-typeset details.message-bookmark-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .message-bookmark-outline > .admonition-title,
.md-typeset .message-bookmark-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .message-bookmark-outline > .admonition-title::before,
.md-typeset .message-bookmark-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--message-bookmark-outline);
		mask-image: var(--md-admonition-icon--message-bookmark-outline);
}



:root {
	--md-admonition-icon--meteor: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.8 3 16.87 15.82s.33.45-.09.89c-.41.44-.95.06-.95.06L2.8 3m5.01 1.59 13.1 12.05s.32.44-.09.86c-.42.47-.96.09-.96.09l-12.05-13M4.29 8l13.1 12.03s.32.44-.09.88c-.42.45-.96.09-.96.09L4.29 8m7.76-2.04 9.15 8.41s.22.31-.07.63c-.28.3-.66.03-.66.03l-8.42-9.07m-6.6 5.95 9.15 8.42s.22.31-.06.62c-.29.31-.67.05-.67.05l-8.42-9.09m10.93-3.99 4.17 3.82s.11.14-.05.29c-.12.14-.31.02-.31.02l-3.81-4.13M7.56 16.1l4.18 3.81s.11.15-.04.29c-.14.15-.33.02-.33.02L7.56 16.1Z"/></svg>')
}
.md-typeset .admonition.meteor,
.md-typeset details.meteor {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .meteor > .admonition-title,
.md-typeset .meteor > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .meteor > .admonition-title::before,
.md-typeset .meteor > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--meteor);
		mask-image: var(--md-admonition-icon--meteor);
}



:root {
	--md-admonition-icon--micro-sd: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 2a2 2 0 0 0-2 2v7l-2 2v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8m1 2h2v4H9V4m3 0h2v4h-2V4m3 0h2v4h-2V4Z"/></svg>')
}
.md-typeset .admonition.micro-sd,
.md-typeset details.micro-sd {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .micro-sd > .admonition-title,
.md-typeset .micro-sd > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .micro-sd > .admonition-title::before,
.md-typeset .micro-sd > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--micro-sd);
		mask-image: var(--md-admonition-icon--micro-sd);
}



:root {
	--md-admonition-icon--microscope: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.46 6.28 11.05 9c-2.58.26-4.55 2.41-4.55 5a5 5 0 0 0 5 5c2.05 0 3.81-1.23 4.58-3H13.5v-2h8v2h-2.25a8.048 8.048 0 0 1-2.46 4h2.71v2h-16v-2h2.71a7.99 7.99 0 0 1-2.71-6c0-3.63 2.46-6.8 5.96-7.72m3.28-4.21.76 1.3.86-.5 3.5 6.06-3.47 2-3.5-6.06.87-.5-.76-1.3 1.74-1Z"/></svg>')
}
.md-typeset .admonition.microscope,
.md-typeset details.microscope {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .microscope > .admonition-title,
.md-typeset .microscope > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .microscope > .admonition-title::before,
.md-typeset .microscope > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--microscope);
		mask-image: var(--md-admonition-icon--microscope);
}



:root {
	--md-admonition-icon--microsoft-visual-studio-code: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 16.47V7.39l-6 4.54M2.22 9.19a.858.858 0 0 1-.02-1.15l1.2-1.11c.2-.18.69-.26 1.05 0l3.42 2.61 7.93-7.25c.32-.32.87-.45 1.5-.12l4 1.91c.36.21.7.54.7 1.15v13.5c0 .4-.29.83-.6 1l-4.4 2.1c-.32.13-.92.01-1.13-.2l-8.02-7.3-3.4 2.6c-.38.26-.85.19-1.05 0l-1.2-1.1c-.32-.33-.28-.87.05-1.2l3-2.7"/></svg>')
}
.md-typeset .admonition.microsoft-visual-studio-code,
.md-typeset details.microsoft-visual-studio-code {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .microsoft-visual-studio-code > .admonition-title,
.md-typeset .microsoft-visual-studio-code > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .microsoft-visual-studio-code > .admonition-title::before,
.md-typeset .microsoft-visual-studio-code > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--microsoft-visual-studio-code);
		mask-image: var(--md-admonition-icon--microsoft-visual-studio-code);
}



:root {
	--md-admonition-icon--molecule: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.27 10 9 7h5.42l1.16-2-.08-.5A1.5 1.5 0 0 1 17 3a1.5 1.5 0 0 1 1.5 1.5c0 .71-.5 1.31-1.17 1.46l-.96 1.67L17.73 10l.86-1.5-.09-.5A1.5 1.5 0 0 1 20 6.5 1.5 1.5 0 0 1 21.5 8c0 .71-.5 1.3-1.15 1.46L18.89 12l1.73 3c.77.07 1.38.71 1.38 1.5a1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5v-.26L17.73 14l-1.36 2.37.96 1.67a1.5 1.5 0 0 1 1.17 1.46A1.5 1.5 0 0 1 17 21a1.5 1.5 0 0 1-1.5-1.5l.08-.5-1.16-2h-3.84l-1.16 2 .08.5A1.5 1.5 0 0 1 8 21a1.5 1.5 0 0 1-1.5-1.5c0-.71.5-1.31 1.17-1.46l.96-1.67L4.38 9C3.61 8.93 3 8.29 3 7.5A1.5 1.5 0 0 1 4.5 6 1.5 1.5 0 0 1 6 7.5v.26L7.27 10m2.88-1-1.73 3 1.73 3h4.7l1.73-3-1.73-3h-4.7Z"/></svg>')
}
.md-typeset .admonition.molecule,
.md-typeset details.molecule {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .molecule > .admonition-title,
.md-typeset .molecule > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .molecule > .admonition-title::before,
.md-typeset .molecule > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--molecule);
		mask-image: var(--md-admonition-icon--molecule);
}



:root {
	--md-admonition-icon--monitor-multiple: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 17V7H6v10h16m0-12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-6v2h2v2h-8v-2h2v-2H6c-1.11 0-2-.89-2-2V7a2 2 0 0 1 2-2h16M2 3v12H0V3a2 2 0 0 1 2-2h18v2H2Z"/></svg>')
}
.md-typeset .admonition.monitor-multiple,
.md-typeset details.monitor-multiple {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .monitor-multiple > .admonition-title,
.md-typeset .monitor-multiple > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .monitor-multiple > .admonition-title::before,
.md-typeset .monitor-multiple > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--monitor-multiple);
		mask-image: var(--md-admonition-icon--monitor-multiple);
}



:root {
	--md-admonition-icon--monitor: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16H3V4h18m0-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.monitor,
.md-typeset details.monitor {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .monitor > .admonition-title,
.md-typeset .monitor > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .monitor > .admonition-title::before,
.md-typeset .monitor > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--monitor);
		mask-image: var(--md-admonition-icon--monitor);
}



:root {
	--md-admonition-icon--moon-first-quarter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2v20a10 10 0 0 0 0-20Z"/></svg>')
}
.md-typeset .admonition.moon-first-quarter,
.md-typeset details.moon-first-quarter {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .moon-first-quarter > .admonition-title,
.md-typeset .moon-first-quarter > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .moon-first-quarter > .admonition-title::before,
.md-typeset .moon-first-quarter > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--moon-first-quarter);
		mask-image: var(--md-admonition-icon--moon-first-quarter);
}



:root {
	--md-admonition-icon--moon-waning-crescent: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 12a10 10 0 0 0 13 9.54 10 10 0 0 1 0-19.08A10 10 0 0 0 2 12Z"/></svg>')
}
.md-typeset .admonition.moon-waning-crescent,
.md-typeset details.moon-waning-crescent {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .moon-waning-crescent > .admonition-title,
.md-typeset .moon-waning-crescent > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .moon-waning-crescent > .admonition-title::before,
.md-typeset .moon-waning-crescent > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--moon-waning-crescent);
		mask-image: var(--md-admonition-icon--moon-waning-crescent);
}



:root {
	--md-admonition-icon--moon-waxing-crescent: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a9.91 9.91 0 0 0-3 .46 10 10 0 0 1 0 19.08A10 10 0 1 0 12 2Z"/></svg>')
}
.md-typeset .admonition.moon-waxing-crescent,
.md-typeset details.moon-waxing-crescent {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .moon-waxing-crescent > .admonition-title,
.md-typeset .moon-waxing-crescent > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .moon-waxing-crescent > .admonition-title::before,
.md-typeset .moon-waxing-crescent > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--moon-waxing-crescent);
		mask-image: var(--md-admonition-icon--moon-waxing-crescent);
}



:root {
	--md-admonition-icon--motion-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13H3c-.55 0-1-.45-1-1s.45-1 1-1h4c.55 0 1 .45 1 1s-.45 1-1 1M6 8c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1m16 4c0 2.76-2.24 5-5 5H4c-.55 0-1-.45-1-1s.45-1 1-1h9c-.42-.58-.75-1.26-.9-2H10c-.55 0-1-.45-1-1s.45-1 1-1h2.1c.15-.74.48-1.42.9-2H8c-.55 0-1-.45-1-1s.45-1 1-1h9c2.76 0 5 2.24 5 5m-2 0c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3Z"/></svg>')
}
.md-typeset .admonition.motion-outline,
.md-typeset details.motion-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .motion-outline > .admonition-title,
.md-typeset .motion-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .motion-outline > .admonition-title::before,
.md-typeset .motion-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--motion-outline);
		mask-image: var(--md-admonition-icon--motion-outline);
}



:root {
	--md-admonition-icon--mushroom-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 12h16c0-3.73-2.56-6.87-6-7.75-.14.99-1 1.75-2 1.75s-1.86-.76-2-1.75C6.56 5.13 4 8.27 4 12m8-10a10 10 0 0 1 10 10 2 2 0 0 1-2 2H4a2 2 0 0 1-2-2A10 10 0 0 1 12 2m1.5 15h-3l-.58 2-.27 1h4.7l-.27-1-.58-2m1.5-2 1 3.5.27.95.08.55c0 1.1-.9 2-2 2h-4.7l-.48-.06a2.004 2.004 0 0 1-1.44-2.44l.27-1L9 15h6m1-8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2M8 7a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2Z"/></svg>')
}
.md-typeset .admonition.mushroom-outline,
.md-typeset details.mushroom-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .mushroom-outline > .admonition-title,
.md-typeset .mushroom-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .mushroom-outline > .admonition-title::before,
.md-typeset .mushroom-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--mushroom-outline);
		mask-image: var(--md-admonition-icon--mushroom-outline);
}



:root {
	--md-admonition-icon--nail: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 5v11L12 22l-1.5-6V5h3M17 2H7v2h10V2Z"/></svg>')
}
.md-typeset .admonition.nail,
.md-typeset details.nail {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .nail > .admonition-title,
.md-typeset .nail > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .nail > .admonition-title::before,
.md-typeset .nail > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--nail);
		mask-image: var(--md-admonition-icon--nail);
}



:root {
	--md-admonition-icon--navigation-variant-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.27 6.73-4.24 10.13-1.32-3.42-.32-.83-.82-.32-3.43-1.33 10.13-4.23M21 3 3 10.53v.97l6.84 2.66L12.5 21h.96L21 3Z"/></svg>')
}
.md-typeset .admonition.navigation-variant-outline,
.md-typeset details.navigation-variant-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .navigation-variant-outline > .admonition-title,
.md-typeset .navigation-variant-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .navigation-variant-outline > .admonition-title::before,
.md-typeset .navigation-variant-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--navigation-variant-outline);
		mask-image: var(--md-admonition-icon--navigation-variant-outline);
}



:root {
	--md-admonition-icon--necklace: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.5 5h-2c0 4.14-3.36 7.5-7.5 7.5-4.14 0-7.5-3.36-7.5-7.5h-2c.05 5.11 4.09 9.29 9.2 9.5-.6.9-1.7 2.7-1.7 3.5 0 2.67 4 2.67 4 0 0-.8-1.1-2.6-1.7-3.5 5.11-.21 9.15-4.39 9.2-9.5Z"/></svg>')
}
.md-typeset .admonition.necklace,
.md-typeset details.necklace {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .necklace > .admonition-title,
.md-typeset .necklace > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .necklace > .admonition-title::before,
.md-typeset .necklace > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--necklace);
		mask-image: var(--md-admonition-icon--necklace);
}



:root {
	--md-admonition-icon--needle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.15 15.18-1.42-1.41 1.42-1.42 1.41 1.42 1.41-1.42-1.41-1.41 1.41-1.41 1.42 1.41 1.41-1.41-2.83-2.83-7.07 7.07 2.83 2.83 1.42-1.42M3.08 19l3.12-3.11-2.12-2.12 9.89-9.9L16.1 6l1.4-1.42-1.4-1.42 1.4-1.41L21.75 6l-1.41 1.4L18.92 6 17.5 7.4l2.13 2.13-9.9 9.89-2.12-2.12-4.53 4.54V19Z"/></svg>')
}
.md-typeset .admonition.needle,
.md-typeset details.needle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .needle > .admonition-title,
.md-typeset .needle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .needle > .admonition-title::before,
.md-typeset .needle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--needle);
		mask-image: var(--md-admonition-icon--needle);
}



:root {
	--md-admonition-icon--ninja: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.75 13c-.01-.35.15-.69.42-.92.75.16 1.45.47 2.08.92 0 .68-.56 1.24-1.25 1.24S7.76 13.69 7.75 13m6 0c.63-.44 1.33-.75 2.08-.91.27.23.43.57.42.91 0 .7-.56 1.26-1.25 1.26s-1.25-.56-1.25-1.26M12 9c-2.77-.04-5.5.65-7.93 2L4 12c0 1.23.29 2.44.84 3.54a47.642 47.642 0 0 1 14.32 0c.55-1.1.84-2.31.84-3.54l-.07-1A15.849 15.849 0 0 0 12 9m0-7a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2Z"/></svg>')
}
.md-typeset .admonition.ninja,
.md-typeset details.ninja {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ninja > .admonition-title,
.md-typeset .ninja > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ninja > .admonition-title::before,
.md-typeset .ninja > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ninja);
		mask-image: var(--md-admonition-icon--ninja);
}



:root {
	--md-admonition-icon--nix: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.9 8.7 5 17.2l-1.1-1.9L5.2 13H2.6L2 12l.6-1h3.7l1.3-2.3h2.3m.3 6.8h9.7l-1.1 1.9h-2.6l1.3 2.3-.6 1h-1.1L14 17.4h-2.7l-1.1-1.9m5.7-3.7L11 3.3h2.2l1.3 2.3 1.3-2.3h1.1l.6 1-1.9 3.2L17 9.8l-1.1 2m-2.1-3.3H4l1.1-1.9h2.6L6.4 4.3l.6-1h1.1L10 6.5h2.7l1.1 2m.3 6.8L19 6.8l1.1 1.9-1.3 2.3h2.6l.6 1-.6 1h-3.7l-1.3 2.3h-2.3m-6-3.1 4.9 8.4h-2.2l-1.3-2.3-1.1 2.3H7.1l-.6-1 1.9-3.2L7 14.2l1.1-2Z"/></svg>')
}
.md-typeset .admonition.nix,
.md-typeset details.nix {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .nix > .admonition-title,
.md-typeset .nix > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .nix > .admonition-title::before,
.md-typeset .nix > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--nix);
		mask-image: var(--md-admonition-icon--nix);
}



:root {
	--md-admonition-icon--noodles: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 3 10 4.41V6h12v1H10v5h12c0 1.81-.57 3.46-1.68 4.95s-2.55 2.58-4.32 3.3V22H8v-1.75c-1.76-.72-3.21-1.82-4.32-3.3S2 13.81 2 12h3V4l17-2v1M6 4.88V6h1V4.78l-1 .1M6 7v5h1V7H6m3 5V7H8v5h1m0-6V4.55l-1 .09V6h1Z"/></svg>')
}
.md-typeset .admonition.noodles,
.md-typeset details.noodles {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .noodles > .admonition-title,
.md-typeset .noodles > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .noodles > .admonition-title::before,
.md-typeset .noodles > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--noodles);
		mask-image: var(--md-admonition-icon--noodles);
}



:root {
	--md-admonition-icon--notebook-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 4v6l-2-2-2 2V4H9v16h10V4h-2M3 7V5h2V4a2 2 0 0 1 2-2h12c1.05 0 2 .95 2 2v16c0 1.05-.95 2-2 2H7c-1.05 0-2-.95-2-2v-1H3v-2h2v-4H3v-2h2V7H3m2-2v2h2V5H5m0 14h2v-2H5v2m0-6h2v-2H5v2Z"/></svg>')
}
.md-typeset .admonition.notebook-outline,
.md-typeset details.notebook-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .notebook-outline > .admonition-title,
.md-typeset .notebook-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .notebook-outline > .admonition-title::before,
.md-typeset .notebook-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--notebook-outline);
		mask-image: var(--md-admonition-icon--notebook-outline);
}



:root {
	--md-admonition-icon--nucleus: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.36 2.64c1.64 0 3 1.36 3 3 0 1.65-1.36 3-3 3-1.65 0-3-1.35-3-3 0-.3.05-.58.14-.84-1.07-.51-2.25-.8-3.5-.8a8 8 0 0 0-8 8l.04.84-1.99.21L2 12A10 10 0 0 1 12 2c1.69 0 3.28.42 4.67 1.16.49-.33 1.07-.52 1.69-.52m0 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1c.56 0 1-.45 1-1 0-.56-.44-1-1-1M5.64 15.36c1.65 0 3 1.35 3 3 0 .3-.05.58-.14.84 1.07.51 2.25.8 3.5.8a8 8 0 0 0 8-8l-.04-.84 1.99-.21L22 12a10 10 0 0 1-10 10c-1.69 0-3.28-.42-4.67-1.16-.49.33-1.07.52-1.69.52-1.64 0-3-1.36-3-3 0-1.65 1.36-3 3-3m0 2c-.56 0-1 .45-1 1 0 .56.44 1 1 1a1 1 0 0 0 1-1 1 1 0 0 0-1-1M12 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4Z"/></svg>')
}
.md-typeset .admonition.nucleus,
.md-typeset details.nucleus {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .nucleus > .admonition-title,
.md-typeset .nucleus > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .nucleus > .admonition-title::before,
.md-typeset .nucleus > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--nucleus);
		mask-image: var(--md-admonition-icon--nucleus);
}



:root {
	--md-admonition-icon--octagon-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.27 3 3 8.27v7.46L8.27 21h7.46C17.5 19.24 21 15.73 21 15.73V8.27L15.73 3M9.1 5h5.8L19 9.1v5.8L14.9 19H9.1L5 14.9V9.1"/></svg>')
}
.md-typeset .admonition.octagon-outline,
.md-typeset details.octagon-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .octagon-outline > .admonition-title,
.md-typeset .octagon-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .octagon-outline > .admonition-title::before,
.md-typeset .octagon-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--octagon-outline);
		mask-image: var(--md-admonition-icon--octagon-outline);
}



:root {
	--md-admonition-icon--orbit: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.11 1.75C9.3 1.25 10.62 1 12 1c6.08 0 11 4.92 11 11s-4.92 11-11 11S1 18.08 1 12c0-1.38.25-2.7.72-3.92a4.5 4.5 0 0 0 1.73 1.1C3.16 10.07 3 11 3 12a9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9c-1 0-1.93.16-2.82.45-.22-.62-.57-1.21-1.07-1.7M4.93 2.93a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.11.89-2 2-2M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5Z"/></svg>')
}
.md-typeset .admonition.orbit,
.md-typeset details.orbit {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .orbit > .admonition-title,
.md-typeset .orbit > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .orbit > .admonition-title::before,
.md-typeset .orbit > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--orbit);
		mask-image: var(--md-admonition-icon--orbit);
}



:root {
	--md-admonition-icon--palm-tree: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 9c1.59 7.61-2 13-2 13h3c1.88-5.8 1-9.91.5-12m2.16-2.84c.17.21.34.43.47.66a7.1 7.1 0 0 1-.63 8.44 7.11 7.11 0 0 0-.55-6.49c-.08-.13-.17-.24-.25-.36a7.123 7.123 0 0 0-2.16-1.98 7.127 7.127 0 0 0-4.96 6.79c0 .74.11 1.45.31 2.11a7.073 7.073 0 0 1-1.33-4.14c0-2.35 1.14-4.43 2.89-5.73C8 6.35 6.46 6.67 5.12 7.5c-.62.41-1.16.88-1.62 1.41.55-1.33 1.5-2.52 2.8-3.34 1.5-.94 3.2-1.25 4.84-1.01C10.73 4 10.23 3.47 9.63 3c-.58-.42-1.21-.76-1.87-1 1.44.04 2.88.5 4.11 1.43.63.47 1.13 1.04 1.53 1.64.1 0 .19-.01.29-.01 3.2 0 5.91 2.11 6.81 5.02a7.073 7.073 0 0 0-4.84-2.92Z"/></svg>')
}
.md-typeset .admonition.palm-tree,
.md-typeset details.palm-tree {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .palm-tree > .admonition-title,
.md-typeset .palm-tree > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .palm-tree > .admonition-title::before,
.md-typeset .palm-tree > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--palm-tree);
		mask-image: var(--md-admonition-icon--palm-tree);
}



:root {
	--md-admonition-icon--pan-bottom-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-6.65 3L11 18.65 5 19l.35-6Z"/></svg>')
}
.md-typeset .admonition.pan-bottom-left,
.md-typeset details.pan-bottom-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-bottom-left > .admonition-title,
.md-typeset .pan-bottom-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-bottom-left > .admonition-title::before,
.md-typeset .pan-bottom-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-bottom-left);
		mask-image: var(--md-admonition-icon--pan-bottom-left);
}



:root {
	--md-admonition-icon--pan-bottom-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m1 8.65L18.65 13l.35 6-6-.35Z"/></svg>')
}
.md-typeset .admonition.pan-bottom-right,
.md-typeset details.pan-bottom-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-bottom-right > .admonition-title,
.md-typeset .pan-bottom-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-bottom-right > .admonition-title::before,
.md-typeset .pan-bottom-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-bottom-right);
		mask-image: var(--md-admonition-icon--pan-bottom-right);
}



:root {
	--md-admonition-icon--pan-down: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4 7 4 4.5 4-4.5H8Z"/></svg>')
}
.md-typeset .admonition.pan-down,
.md-typeset details.pan-down {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-down > .admonition-title,
.md-typeset .pan-down > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-down > .admonition-title::before,
.md-typeset .pan-down > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-down);
		mask-image: var(--md-admonition-icon--pan-down);
}



:root {
	--md-admonition-icon--pan-horizontal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 8-4.5 4L7 16V8m10 0v8l4.5-4L17 8m-5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.pan-horizontal,
.md-typeset details.pan-horizontal {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-horizontal > .admonition-title,
.md-typeset .pan-horizontal > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-horizontal > .admonition-title::before,
.md-typeset .pan-horizontal > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-horizontal);
		mask-image: var(--md-admonition-icon--pan-horizontal);
}



:root {
	--md-admonition-icon--pan-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 8-4.5 4L7 16V8m5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.pan-left,
.md-typeset details.pan-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-left > .admonition-title,
.md-typeset .pan-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-left > .admonition-title::before,
.md-typeset .pan-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-left);
		mask-image: var(--md-admonition-icon--pan-left);
}



:root {
	--md-admonition-icon--pan-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 8v8l4.5-4L17 8m-5 2a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.pan-right,
.md-typeset details.pan-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-right > .admonition-title,
.md-typeset .pan-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-right > .admonition-title::before,
.md-typeset .pan-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-right);
		mask-image: var(--md-admonition-icon--pan-right);
}



:root {
	--md-admonition-icon--pan-top-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m-1-4.65L5.35 11 5 5l6 .35Z"/></svg>')
}
.md-typeset .admonition.pan-top-left,
.md-typeset details.pan-top-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-top-left > .admonition-title,
.md-typeset .pan-top-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-top-left > .admonition-title::before,
.md-typeset .pan-top-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-top-left);
		mask-image: var(--md-admonition-icon--pan-top-left);
}



:root {
	--md-admonition-icon--pan-top-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m6.65 1L13 5.35 19 5l-.35 6Z"/></svg>')
}
.md-typeset .admonition.pan-top-right,
.md-typeset details.pan-top-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-top-right > .admonition-title,
.md-typeset .pan-top-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-top-right > .admonition-title::before,
.md-typeset .pan-top-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-top-right);
		mask-image: var(--md-admonition-icon--pan-top-right);
}



:root {
	--md-admonition-icon--pan-up: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 8 7h8l-4-4.5m0 7.5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.pan-up,
.md-typeset details.pan-up {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-up > .admonition-title,
.md-typeset .pan-up > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-up > .admonition-title::before,
.md-typeset .pan-up > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-up);
		mask-image: var(--md-admonition-icon--pan-up);
}



:root {
	--md-admonition-icon--pan-vertical: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5 8 7h8l-4-4.5m0 7.5a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m-4 7 4 4.5 4-4.5H8Z"/></svg>')
}
.md-typeset .admonition.pan-vertical,
.md-typeset details.pan-vertical {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pan-vertical > .admonition-title,
.md-typeset .pan-vertical > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pan-vertical > .admonition-title::before,
.md-typeset .pan-vertical > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pan-vertical);
		mask-image: var(--md-admonition-icon--pan-vertical);
}



:root {
	--md-admonition-icon--parachute-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.2 10.95 12 23 2.78 10.96l.09-.08c.21-.21.46-.38.71-.52l7.15 9.33L8.58 13l.66-1.19L12 20.38l2.73-8.58.67 1.2-2.13 6.69 7.14-9.34c.25.15.49.29.69.5l.1.1M12 4c2.5 0 4.77 1.17 6.25 3.03a5.93 5.93 0 0 0-2.78 1.1C14.47 7.41 13.26 7 12 7c-1.29 0-2.5.41-3.5 1.14-.82-.59-1.78-.97-2.79-1.1A8 8 0 0 1 12 4m0-2c-4.91 0-8.97 3.5-9.84 8.17C2.89 9.45 3.89 9 5 9c1.5 0 2.81.86 3.5 2.1A3.97 3.97 0 0 1 12 9c1.5 0 2.8.85 3.5 2.09A3.93 3.93 0 0 1 19 9c1.09 0 2.09.42 2.81 1.14C20.94 5.5 16.88 2 12 2Z"/></svg>')
}
.md-typeset .admonition.parachute-outline,
.md-typeset details.parachute-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .parachute-outline > .admonition-title,
.md-typeset .parachute-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .parachute-outline > .admonition-title::before,
.md-typeset .parachute-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--parachute-outline);
		mask-image: var(--md-admonition-icon--parachute-outline);
}



:root {
	--md-admonition-icon--patio-heater: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 22H9v-1h6v1m4-18-4-2H9L5 4h14M8 5l.4 1h7.2l.4-1H8m2 5h1v5c-.6 0-1 .4-1 1v4h4v-4c0-.6-.4-1-1-1v-5h1l.4-1H9.6l.4 1m-.8-2h5.6l.4-1H8.8l.4 1Z"/></svg>')
}
.md-typeset .admonition.patio-heater,
.md-typeset details.patio-heater {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .patio-heater > .admonition-title,
.md-typeset .patio-heater > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .patio-heater > .admonition-title::before,
.md-typeset .patio-heater > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--patio-heater);
		mask-image: var(--md-admonition-icon--patio-heater);
}



:root {
	--md-admonition-icon--penguin: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 16c0 1.72-.63 3.3-1.66 4.5.41.39.66.91.66 1.5H6c0-.59.25-1.11.66-1.5A6.902 6.902 0 0 1 5 16H3c0-1.25.57-2.36 1.46-3.09l.01-.02A6.004 6.004 0 0 0 7 8V7a5 5 0 0 1 5-5 5 5 0 0 1 5 5v1c0 2 1 3.81 2.53 4.89l.01.02c.89.73 1.46 1.84 1.46 3.09h-2m-3 0a4 4 0 0 0-4-4 4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4m-6-7 2 1.5L14 9l-2-1.5L10 9m0-4a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1Z"/></svg>')
}
.md-typeset .admonition.penguin,
.md-typeset details.penguin {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .penguin > .admonition-title,
.md-typeset .penguin > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .penguin > .admonition-title::before,
.md-typeset .penguin > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--penguin);
		mask-image: var(--md-admonition-icon--penguin);
}



:root {
	--md-admonition-icon--pentagon-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 5 7.6 5.5-2.9 8.9H7.3l-2.9-8.9L12 5m0-2.5L2 9.8l3.8 11.7h12.3L22 9.8 12 2.5Z"/></svg>')
}
.md-typeset .admonition.pentagon-outline,
.md-typeset details.pentagon-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pentagon-outline > .admonition-title,
.md-typeset .pentagon-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pentagon-outline > .admonition-title::before,
.md-typeset .pentagon-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pentagon-outline);
		mask-image: var(--md-admonition-icon--pentagon-outline);
}



:root {
	--md-admonition-icon--periodic-table: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4v2h2V4H2m18 0v2h2V4h-2M2 7v2h2V7H2m3 0v2h2V7H5m9 0v2h2V7h-2m3 0v2h2V7h-2m3 0v2h2V7h-2M2 10v2h2v-2H2m3 0v2h2v-2H5m3 0v2h2v-2H8m3 0v2h2v-2h-2m3 0v2h2v-2h-2m3 0v2h2v-2h-2m3 0v2h2v-2h-2M2 13v2h2v-2H2m3 0v2h2v-2H5m3 0v2h2v-2H8m3 0v2h2v-2h-2m3 0v2h2v-2h-2m3 0v2h2v-2h-2m3 0v2h2v-2h-2M5 17v2h2v-2H5m3 0v2h2v-2H8m3 0v2h2v-2h-2m3 0v2h2v-2h-2m3 0v2h2v-2h-2Z"/></svg>')
}
.md-typeset .admonition.periodic-table,
.md-typeset details.periodic-table {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .periodic-table > .admonition-title,
.md-typeset .periodic-table > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .periodic-table > .admonition-title::before,
.md-typeset .periodic-table > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--periodic-table);
		mask-image: var(--md-admonition-icon--periodic-table);
}



:root {
	--md-admonition-icon--pickaxe: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.79 10.62 3.5 21.9l-1.4-1.4L13.38 9.21l1.41 1.41m4.48-2.89.59-.59-.79-.79.64-.64-1.42-1.42-.64.64-.79-.79-.59.59c-1.74-1.42-3.7-2.56-5.8-3.36l-.83 1.79c1.75.92 3.36 2.03 4.86 3.34L14 7l3 3 .5-.5c1.31 1.5 2.42 3.11 3.34 4.86l1.79-.83c-.8-2.1-1.94-4.06-3.36-5.8Z"/></svg>')
}
.md-typeset .admonition.pickaxe,
.md-typeset details.pickaxe {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pickaxe > .admonition-title,
.md-typeset .pickaxe > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pickaxe > .admonition-title::before,
.md-typeset .pickaxe > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pickaxe);
		mask-image: var(--md-admonition-icon--pickaxe);
}



:root {
	--md-admonition-icon--pill-multiple: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.2 3.5c-1-1-2.3-1.5-3.5-1.5s-2.6.5-3.5 1.5L3.4 9.1c-2 2-2 5.1 0 7.1s5.1 2 7.1 0l5.7-5.7c1.9-1.9 1.9-5.1 0-7m-1.4 5.6L12 11.9 8.4 8.4 4 12.8c0-.8.2-1.7.9-2.3l5.7-5.7c.5-.5 1.3-.8 2-.8s1.5.3 2.1.8c1.2 1.3 1.2 3.1.1 4.3m4.8-2c0 .8-.2 1.5-.4 2.3 1 1.2 1 3-.1 4.1l-2.8 2.8-1.5-1.5-2.8 2.8c-1.3 1.3-3.1 2-4.8 2 .2.3.4.6.7.9 2 2 5.1 2 7.1 0l5.7-5.7c2-2 2-5.1 0-7.1-.5-.2-.8-.4-1.1-.6Z"/></svg>')
}
.md-typeset .admonition.pill-multiple,
.md-typeset details.pill-multiple {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pill-multiple > .admonition-title,
.md-typeset .pill-multiple > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pill-multiple > .admonition-title::before,
.md-typeset .pill-multiple > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pill-multiple);
		mask-image: var(--md-admonition-icon--pill-multiple);
}



:root {
	--md-admonition-icon--pill: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.22 11.29 7.07-7.07a6.011 6.011 0 0 1 8.49 0c2.34 2.34 2.34 6.14 0 8.49l-7.07 7.07c-2.35 2.34-6.15 2.34-8.49 0a6.011 6.011 0 0 1 0-8.49m1.42 1.42a3.976 3.976 0 0 0-1.04 3.86l5.99-5.98 4.24 4.24 3.53-3.54a3.978 3.978 0 0 0 0-5.65 3.978 3.978 0 0 0-5.65 0l-7.07 7.07Z"/></svg>')
}
.md-typeset .admonition.pill,
.md-typeset details.pill {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pill > .admonition-title,
.md-typeset .pill > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pill > .admonition-title::before,
.md-typeset .pill > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pill);
		mask-image: var(--md-admonition-icon--pill);
}



:root {
	--md-admonition-icon--pin-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 12V4h1V2H7v2h1v8l-2 2v2h5.2v6h1.6v-6H18v-2l-2-2m-7.2 2 1.2-1.2V4h4v8.8l1.2 1.2H8.8Z"/></svg>')
}
.md-typeset .admonition.pin-outline,
.md-typeset details.pin-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pin-outline > .admonition-title,
.md-typeset .pin-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pin-outline > .admonition-title::before,
.md-typeset .pin-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pin-outline);
		mask-image: var(--md-admonition-icon--pin-outline);
}



:root {
	--md-admonition-icon--pine-tree: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 21v-3H3l5-5H5l5-5H7l5-5 5 5h-3l5 5h-3l5 5h-7v3h-4Z"/></svg>')
}
.md-typeset .admonition.pine-tree,
.md-typeset details.pine-tree {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pine-tree > .admonition-title,
.md-typeset .pine-tree > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pine-tree > .admonition-title::before,
.md-typeset .pine-tree > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pine-tree);
		mask-image: var(--md-admonition-icon--pine-tree);
}



:root {
	--md-admonition-icon--pipe-valve: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 13v8h-2v-2h-3.42c-.77 1.76-2.53 3-4.58 3s-3.81-1.24-4.58-3H4v2H2v-8h2v2h3.43c.5-1.15 1.42-2.07 2.57-2.58V11H8V9h8v2h-2v1.42c1.15.51 2.07 1.43 2.57 2.58H20v-2h2M17 2H7c-.55 0-1 .45-1 1s.45 1 1 1h3v1h1v3h2V5h1V4h3c.55 0 1-.45 1-1s-.45-1-1-1Z"/></svg>')
}
.md-typeset .admonition.pipe-valve,
.md-typeset details.pipe-valve {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pipe-valve > .admonition-title,
.md-typeset .pipe-valve > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pipe-valve > .admonition-title::before,
.md-typeset .pipe-valve > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pipe-valve);
		mask-image: var(--md-admonition-icon--pipe-valve);
}



:root {
	--md-admonition-icon--pipe-wrench: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.17 5.63-2.11 2.15-2.15-2.15 4.26-4.22 3.52 3.51c1.17 1.17 1.17 3.08 0 4.27l-3.52-3.56M4.83 12.7 7 14.81l3.5-3.51-2.11-2.11-3.56 3.51m10.64-4.92L19 11.3l-1.42 1.4-.7-.7L6.23 22.59l-2.81-2.81 8.49-8.48-4.22-4.27L9.8 4.92l4.26 4.27 1.41-1.41Z"/></svg>')
}
.md-typeset .admonition.pipe-wrench,
.md-typeset details.pipe-wrench {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pipe-wrench > .admonition-title,
.md-typeset .pipe-wrench > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pipe-wrench > .admonition-title::before,
.md-typeset .pipe-wrench > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pipe-wrench);
		mask-image: var(--md-admonition-icon--pipe-wrench);
}



:root {
	--md-admonition-icon--pipe: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 14h-2v2h-6v-3h2v-2h-2V6a2 2 0 0 0-2-2H4V2H2v8h2V8h6v3H8v2h2v5a2 2 0 0 0 2 2h8v2h2"/></svg>')
}
.md-typeset .admonition.pipe,
.md-typeset details.pipe {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pipe > .admonition-title,
.md-typeset .pipe > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pipe > .admonition-title::before,
.md-typeset .pipe > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pipe);
		mask-image: var(--md-admonition-icon--pipe);
}



:root {
	--md-admonition-icon--pistol: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 5h16v4h-1v1h-6a1 1 0 0 0-1 1v1a2 2 0 0 1-2 2H9.62c-.38 0-.73.22-.9.56l-2.45 4.89c-.17.34-.51.55-.89.55H2s-3 0 1-6c0 0 3-4-1-4V5h1l.5-1h3L7 5m7 7v-1a1 1 0 0 0-1-1h-1s-1 1 0 2a2 2 0 0 1-2-2 1 1 0 0 0-1 1v1a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1Z"/></svg>')
}
.md-typeset .admonition.pistol,
.md-typeset details.pistol {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pistol > .admonition-title,
.md-typeset .pistol > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pistol > .admonition-title::before,
.md-typeset .pistol > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pistol);
		mask-image: var(--md-admonition-icon--pistol);
}



:root {
	--md-admonition-icon--pliers: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.4 12.2s2.3 3.1 4.4 5.2c.9.9 1.8 1.5 2.5 2 .8.5 1 1.6.3 2.3-.4.4-1.1.6-1.6.3-.8-.4-2-1.2-3.3-2.4-2.1-2.1-4.4-5.2-4.4-5.2l2.1-2.2m2.8-2.8s3.1 2.3 5.2 4.4c.9.9 1.5 1.8 2 2.5.5.8 1.6 1 2.3.3.4-.4.6-1.1.3-1.6-.4-.8-1.2-2-2.4-3.3-2.1-2.1-5.2-4.4-5.2-4.4l-2.2 2.1m-1.8-3.9L7.6 2.7 4.1 2l-.5.5 2.3 2.3c.5-.1 1 0 1.4.4.6.6.6 1.5 0 2.1s-1.5.6-2.1 0c-.4-.4-.5-1-.4-1.5L2.5 3.6l-.5.5.7 3.5 2.8 2.8 1.4 2.8 1.9-1.9-1-1.8 1.6-1.6 1.9.9 1.9-1.9-2.8-1.4Z"/></svg>')
}
.md-typeset .admonition.pliers,
.md-typeset details.pliers {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pliers > .admonition-title,
.md-typeset .pliers > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pliers > .admonition-title::before,
.md-typeset .pliers > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pliers);
		mask-image: var(--md-admonition-icon--pliers);
}



:root {
	--md-admonition-icon--plus: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2Z"/></svg>')
}
.md-typeset .admonition.plus,
.md-typeset details.plus {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .plus > .admonition-title,
.md-typeset .plus > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .plus > .admonition-title::before,
.md-typeset .plus > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--plus);
		mask-image: var(--md-admonition-icon--plus);
}



:root {
	--md-admonition-icon--power-plug-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 7V3h-2v4h-4V3H8v4C7 7 6 8 6 9v5.5L9.5 18v3h5v-3l3.5-3.5V9c0-1-1-2-2-2m0 6.67-2.91 2.92-.42.41h-1.34l-.41-.41L8 13.67V9.09c0-.03.06-.09.09-.09h7.83c.03 0 .08.06.08.09v4.58Z"/></svg>')
}
.md-typeset .admonition.power-plug-outline,
.md-typeset details.power-plug-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .power-plug-outline > .admonition-title,
.md-typeset .power-plug-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .power-plug-outline > .admonition-title::before,
.md-typeset .power-plug-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--power-plug-outline);
		mask-image: var(--md-admonition-icon--power-plug-outline);
}



:root {
	--md-admonition-icon--power-standby: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 3h-2v10h2V3m4.83 2.17-1.42 1.42A6.944 6.944 0 0 1 19 12a7 7 0 0 1-7 7A6.995 6.995 0 0 1 7.58 6.58L6.17 5.17a9.001 9.001 0 0 0-1.03 12.69c3.22 3.78 8.9 4.24 12.69 1.02A9.003 9.003 0 0 0 21 12c0-2.63-1.16-5.13-3.17-6.83Z"/></svg>')
}
.md-typeset .admonition.power-standby,
.md-typeset details.power-standby {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .power-standby > .admonition-title,
.md-typeset .power-standby > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .power-standby > .admonition-title::before,
.md-typeset .power-standby > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--power-standby);
		mask-image: var(--md-admonition-icon--power-standby);
}



:root {
	--md-admonition-icon--propane-tank-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6.14V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2.14c-1.72.45-3 2-3 3.86v8c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4v-8c0-1.86-1.28-3.41-3-3.86M9 4h6v2h-2c0-.55-.45-1-1-1s-1 .45-1 1H9V4M8 8h8c1.1 0 2 .9 2 2v3H6v-3c0-1.1.9-2 2-2m8 12H8c-1.1 0-2-.9-2-2v-3h12v3c0 1.1-.9 2-2 2Z"/></svg>')
}
.md-typeset .admonition.propane-tank-outline,
.md-typeset details.propane-tank-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .propane-tank-outline > .admonition-title,
.md-typeset .propane-tank-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .propane-tank-outline > .admonition-title::before,
.md-typeset .propane-tank-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--propane-tank-outline);
		mask-image: var(--md-admonition-icon--propane-tank-outline);
}



:root {
	--md-admonition-icon--proton: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.744 0C.781 0 0 .781 0 1.744v20.512C0 23.219.781 24 1.744 24h20.512c.963 0 1.744-.782 1.744-1.74V1.744C24 .781 23.218 0 22.26 0zm14.729 2.205v.004c.37 0 .704.08.996.25 1.26.728 1.55 2.996.904 5.846 2.8.855 4.625 2.238 4.625 3.695 0 1.457-1.813 2.836-4.6 3.691.65 2.84.367 5.102-.894 5.83a2.03 2.03 0 0 1-1.012.25c-1.232 0-2.846-.869-4.478-2.384-1.633 1.525-3.245 2.404-4.477 2.404-.376 0-.712-.079-1.006-.25-1.26-.728-1.55-2.996-.904-5.846-2.8-.855-4.625-2.238-4.625-3.695 0-1.452 1.814-2.83 4.605-3.69-.65-2.84-.366-5.103.895-5.831a2.03 2.03 0 0 1 1.012-.25V3.23c-.206 0-.377.035-.514.118-.606.352-.866 1.687-.656 3.398.054.416.133.85.236 1.299.875-.22 1.838-.385 2.85-.492a21.401 21.401 0 0 1 1.851-2.24C9.82 3.962 8.446 3.227 7.518 3.227V2.225c1.231 0 2.846.87 4.478 2.384 1.633-1.525 3.245-2.404 4.477-2.404zm-.006 1.002c-.929.003-2.3.745-3.758 2.102a21.58 21.58 0 0 1 1.867 2.244c1.007.107 1.964.273 2.844.488.098-.455.181-.9.23-1.32.206-1.711-.059-3.04-.67-3.393a1.037 1.037 0 0 0-.513-.117zm-4.483 2.81c-.41.43-.824.91-1.23 1.438a26.105 26.105 0 0 1 2.478 0 17.822 17.822 0 0 0-1.248-1.437zM12 8.428c-.684 0-1.36.03-2.03.089a24.514 24.514 0 0 0-1.08 1.71 23.203 23.203 0 0 0-.927 1.79c.283.6.591 1.196.933 1.783.352.601.713 1.172 1.084 1.705.665.054 1.34.084 2.02.084.684 0 1.36-.03 2.03-.088a24.51 24.51 0 0 0 1.08-1.71c.332-.592.644-1.194.927-1.79a23.03 23.03 0 0 0-.933-1.785 25.587 25.587 0 0 0-1.086-1.705A25.016 25.016 0 0 0 12 8.428zm-3.334.23a22.61 22.61 0 0 0-1.848.35c.171.582.377 1.185.621 1.786a25.469 25.469 0 0 1 1.227-2.137zm6.658 0a23.32 23.32 0 0 1 1.23 2.127c.235-.597.442-1.194.608-1.77a18.82 18.82 0 0 0-1.838-.358zm2.81.62a22.088 22.088 0 0 1-.997 2.72c.415.938.753 1.85 1.008 2.73.435-.142.854-.287 1.24-.454 1.583-.674 2.61-1.57 2.625-2.27 0-.703-1.027-1.587-2.615-2.267a13.533 13.533 0 0 0-1.26-.459zm-12.282.006c-.435.142-.856.287-1.243.453-1.588.67-2.615 1.566-2.615 2.27s1.027 1.588 2.615 2.267c.391.167.812.318 1.252.46a22.04 22.04 0 0 1 .996-2.717 21.563 21.563 0 0 1-1.005-2.733zm6.142.668A2.048 2.048 0 0 1 14.043 12a2.048 2.048 0 0 1-2.049 2.049A2.048 2.048 0 0 1 9.947 12a2.048 2.048 0 0 1 2.047-2.049zm4.56 3.252a24.01 24.01 0 0 1-.58 1.08 25.52 25.52 0 0 1-.646 1.06 19.97 19.97 0 0 0 1.848-.357 18.93 18.93 0 0 0-.621-1.783zm-9.115.024a19.935 19.935 0 0 0-.605 1.77c.587.14 1.202.258 1.838.35a37.4 37.4 0 0 1-.647-1.044c-.21-.357-.4-.72-.586-1.076zm9.99 2.728a20.67 20.67 0 0 1-2.849.492 21.402 21.402 0 0 1-1.851 2.24c1.461 1.35 2.834 2.086 3.763 2.086.205 0 .377-.034.514-.117.606-.352.864-1.685.654-3.396-.054-.416-.133-.85-.23-1.305zm-10.845.01c-.098.454-.182.9-.23 1.32-.206 1.711.058 3.039.67 3.39.131.079.304.119.51.124.928 0 2.301-.743 3.763-2.102a21.53 21.53 0 0 1-1.867-2.244 21.806 21.806 0 0 1-2.846-.488zm4.18.586c.41.528.83 1.007 1.246 1.437.41-.43.831-.91 1.232-1.437a26.056 26.056 0 0 1-2.478 0z"/></svg>')
}
.md-typeset .admonition.proton,
.md-typeset details.proton {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .proton > .admonition-title,
.md-typeset .proton > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .proton > .admonition-title::before,
.md-typeset .proton > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--proton);
		mask-image: var(--md-admonition-icon--proton);
}



:root {
	--md-admonition-icon--pulse: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h2.79l4.31-8.21 1.18 8.96 3.22-4.09L17.83 13H21v2h-4l-2.33-2.33-4.75 6.06-.98-7.42L7 15H3v-2Z"/></svg>')
}
.md-typeset .admonition.pulse,
.md-typeset details.pulse {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .pulse > .admonition-title,
.md-typeset .pulse > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .pulse > .admonition-title::before,
.md-typeset .pulse > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--pulse);
		mask-image: var(--md-admonition-icon--pulse);
}



:root {
	--md-admonition-icon--python: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z"/></svg>')
}
.md-typeset .admonition.python,
.md-typeset details.python {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .python > .admonition-title,
.md-typeset .python > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .python > .admonition-title::before,
.md-typeset .python > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--python);
		mask-image: var(--md-admonition-icon--python);
}



:root {
	--md-admonition-icon--quadcopter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.5 1C8 1 10 3 10 5.5c0 .88-.25 1.7-.69 2.4l.1.1h5.18l.1-.1c-.44-.7-.69-1.52-.69-2.4C14 3 16 1 18.5 1S23 3 23 5.5 21 10 18.5 10c-.88 0-1.7-.25-2.4-.69l-1.1 1.1v3.18l1.1 1.1c.7-.44 1.52-.69 2.4-.69 2.5 0 4.5 2 4.5 4.5S21 23 18.5 23 14 21 14 18.5c0-.88.25-1.7.69-2.4l-.1-.1H9.41l-.1.1c.44.7.69 1.52.69 2.4C10 21 8 23 5.5 23S1 21 1 18.5 3 14 5.5 14c.88 0 1.7.25 2.4.69l1.1-1.1v-3.18l-1.1-1.1c-.7.44-1.52.69-2.4.69C3 10 1 8 1 5.5S3 1 5.5 1m0 2A2.5 2.5 0 0 0 3 5.5 2.5 2.5 0 0 0 5.5 8 2.5 2.5 0 0 0 8 5.5 2.5 2.5 0 0 0 5.5 3m0 13A2.5 2.5 0 0 0 3 18.5 2.5 2.5 0 0 0 5.5 21 2.5 2.5 0 0 0 8 18.5 2.5 2.5 0 0 0 5.5 16m13-13A2.5 2.5 0 0 0 16 5.5 2.5 2.5 0 0 0 18.5 8 2.5 2.5 0 0 0 21 5.5 2.5 2.5 0 0 0 18.5 3m0 13a2.5 2.5 0 0 0-2.5 2.5 2.5 2.5 0 0 0 2.5 2.5 2.5 2.5 0 0 0 2.5-2.5 2.5 2.5 0 0 0-2.5-2.5M3.91 17.25l1.13.66c.13-.1.29-.16.46-.16a.75.75 0 0 1 .75.75l-.01.1 1.13.65-.28.5-1.13-.66c-.13.1-.29.16-.46.16a.75.75 0 0 1-.75-.75l.01-.1-1.13-.65.28-.5m-.28-11 1.13-.65-.01-.1a.75.75 0 0 1 .75-.75c.17 0 .33.06.46.16l1.13-.66.28.5-1.13.65.01.1a.75.75 0 0 1-.75.75c-.17 0-.33-.06-.46-.16l-1.13.66-.28-.5m13.28-2 1.13.66c.13-.1.29-.16.46-.16a.75.75 0 0 1 .75.75l-.01.1 1.13.65-.28.5-1.13-.66c-.13.1-.29.16-.46.16a.75.75 0 0 1-.75-.75l.01-.1-1.13-.65.28-.5m-.28 15 1.12-.75a.75.75 0 0 1 .75-.75c.17 0 .33.06.46.16l1.13-.66.28.5-1.12.75a.75.75 0 0 1-.75.75c-.17 0-.33-.06-.46-.16l-1.13.66-.28-.5Z"/></svg>')
}
.md-typeset .admonition.quadcopter,
.md-typeset details.quadcopter {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .quadcopter > .admonition-title,
.md-typeset .quadcopter > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .quadcopter > .admonition-title::before,
.md-typeset .quadcopter > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--quadcopter);
		mask-image: var(--md-admonition-icon--quadcopter);
}



:root {
	--md-admonition-icon--rabbit: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.05 21-2.73-4.74c0-1.73-1.07-2.84-2.37-2.84-.9 0-1.68.5-2.08 1.24.33-.19.72-.29 1.13-.29 1.3 0 2.36 1.06 2.36 2.36 0 1.31-1.05 2.38-2.36 2.38h3.3V21H6.79c-.24 0-.49-.09-.67-.28a.948.948 0 0 1 0-1.34l.5-.5c-.34-.15-.62-.38-.9-.62-.22.5-.72.85-1.3.85a1.425 1.425 0 0 1 0-2.85l.47.08v-1.97a4.73 4.73 0 0 1 4.74-4.74h.02c2.12.01 3.77.84 3.77-.47 0-.93.2-1.3.54-1.82-.73-.34-1.56-.55-2.43-.55-.53 0-.95-.42-.95-.95 0-.43.28-.79.67-.91l-.67-.04c-.52 0-.95-.42-.95-.94 0-.53.43-.95.95-.95h.95c2.1 0 3.94 1.15 4.93 2.85l.28-.01c.71 0 1.37.23 1.91.61l.45.38c2.17 1.95 1.9 3.27 1.9 3.28 0 1.28-1.06 2.33-2.35 2.33l-.49-.05v.08c0 1.11-.48 2.1-1.23 2.8L20.24 21h-2.19m.11-13.26c-.53 0-.95.42-.95.94 0 .53.42.95.95.95.52 0 .95-.42.95-.95 0-.52-.43-.94-.95-.94Z"/></svg>')
}
.md-typeset .admonition.rabbit,
.md-typeset details.rabbit {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .rabbit > .admonition-title,
.md-typeset .rabbit > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .rabbit > .admonition-title::before,
.md-typeset .rabbit > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--rabbit);
		mask-image: var(--md-admonition-icon--rabbit);
}



:root {
	--md-admonition-icon--racing-helmet: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.2 11.2c-.2 2.4.5 4.4 2 6.2 1.5 1.8 3.5 2.6 5.9 2.6h10c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4v-.8c0-.6-.1-1.3-.2-2.2h-8.2c-1 0-1.8-.4-2.5-1.1-.7-.7-1.1-1.6-1.1-2.5 0-1.6.7-2.7 2.2-3.3L17.1 6c-1.7-1.2-3.7-1.9-6-2-2.2-.2-4.2.5-6 1.9C3.3 7.3 2.4 9 2.2 11.2m9.9.2c0 .4.2.8.5 1.1.3.3.7.5 1.1.5h7.8c-.6-2.2-1.5-4-2.8-5.4l-5.6 2.3c-.7.2-1 .7-1 1.5Z"/></svg>')
}
.md-typeset .admonition.racing-helmet,
.md-typeset details.racing-helmet {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .racing-helmet > .admonition-title,
.md-typeset .racing-helmet > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .racing-helmet > .admonition-title::before,
.md-typeset .racing-helmet > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--racing-helmet);
		mask-image: var(--md-admonition-icon--racing-helmet);
}



:root {
	--md-admonition-icon--rake: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 17.05 9.43 16 22.07 3.35l-1.41-1.42L8 14.58 6.95 13.5c-.78-.77-2.05-.77-2.83 0L2 15.64l.71.7 2.12-2.12.71.71-2.13 2.12.71.71 2.12-2.12.71.7-2.12 2.12.71.71 2.12-2.12.7.71-2.12 2.12.71.71 2.12-2.13.71.71-2.12 2.12.7.71 2.14-2.12c.77-.78.77-2.05 0-2.83Z"/></svg>')
}
.md-typeset .admonition.rake,
.md-typeset details.rake {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .rake > .admonition-title,
.md-typeset .rake > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .rake > .admonition-title::before,
.md-typeset .rake > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--rake);
		mask-image: var(--md-admonition-icon--rake);
}



:root {
	--md-admonition-icon--receipt-text-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.5 3.5 18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5M19 19H5V5h14v14M6 15h12v2H6m0-6h12v2H6m0-6h12v2H6V7Z"/></svg>')
}
.md-typeset .admonition.receipt-text-outline,
.md-typeset details.receipt-text-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .receipt-text-outline > .admonition-title,
.md-typeset .receipt-text-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .receipt-text-outline > .admonition-title::before,
.md-typeset .receipt-text-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--receipt-text-outline);
		mask-image: var(--md-admonition-icon--receipt-text-outline);
}



:root {
	--md-admonition-icon--recycle-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7.17 7.91 1.73 1 3.18-5.49 2.25 3.89-2.6 1.5 5.46 1.46 1.47-5.46-2.6 1.5-2.25-3.9a1.988 1.988 0 0 0-2.73-.73c-.27.15-.5.37-.67.63M10 20v-2H3.66l2.24-3.9 2.6 1.5-1.46-5.46-5.47 1.46 2.6 1.5L1.92 17a2.003 2.003 0 0 0 1.62 3m15.52-8.5-1.74 1L20.5 18H16v-3l-4 4 4 4v-3h4.5c1.11 0 2-.89 2-2 0-.31-.08-.62-.22-.89Z"/></svg>')
}
.md-typeset .admonition.recycle-variant,
.md-typeset details.recycle-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .recycle-variant > .admonition-title,
.md-typeset .recycle-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .recycle-variant > .admonition-title::before,
.md-typeset .recycle-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--recycle-variant);
		mask-image: var(--md-admonition-icon--recycle-variant);
}



:root {
	--md-admonition-icon--refresh: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.65 6.35A7.958 7.958 0 0 0 12 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0 1 12 18a6 6 0 0 1-6-6 6 6 0 0 1 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35Z"/></svg>')
}
.md-typeset .admonition.refresh,
.md-typeset details.refresh {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .refresh > .admonition-title,
.md-typeset .refresh > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .refresh > .admonition-title::before,
.md-typeset .refresh > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--refresh);
		mask-image: var(--md-admonition-icon--refresh);
}



:root {
	--md-admonition-icon--reorder-horizontal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 15h18v-2H3v2m0 4h18v-2H3v2m0-8h18V9H3v2m0-6v2h18V5H3Z"/></svg>')
}
.md-typeset .admonition.reorder-horizontal,
.md-typeset details.reorder-horizontal {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .reorder-horizontal > .admonition-title,
.md-typeset .reorder-horizontal > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .reorder-horizontal > .admonition-title::before,
.md-typeset .reorder-horizontal > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--reorder-horizontal);
		mask-image: var(--md-admonition-icon--reorder-horizontal);
}



:root {
	--md-admonition-icon--reorder-vertical: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v18h2V3H9M5 3v18h2V3H5m8 0v18h2V3h-2m6 0h-2v18h2V3Z"/></svg>')
}
.md-typeset .admonition.reorder-vertical,
.md-typeset details.reorder-vertical {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .reorder-vertical > .admonition-title,
.md-typeset .reorder-vertical > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .reorder-vertical > .admonition-title::before,
.md-typeset .reorder-vertical > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--reorder-vertical);
		mask-image: var(--md-admonition-icon--reorder-vertical);
}



:root {
	--md-admonition-icon--repeat: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 17H7v-3l-4 4 4 4v-3h12v-6h-2M7 7h10v3l4-4-4-4v3H5v6h2V7Z"/></svg>')
}
.md-typeset .admonition.repeat,
.md-typeset details.repeat {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .repeat > .admonition-title,
.md-typeset .repeat > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .repeat > .admonition-title::before,
.md-typeset .repeat > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--repeat);
		mask-image: var(--md-admonition-icon--repeat);
}



:root {
	--md-admonition-icon--reply-all: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11M7 8V5l-7 7 7 7v-3l-4-4 4-4Z"/></svg>')
}
.md-typeset .admonition.reply-all,
.md-typeset details.reply-all {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .reply-all > .admonition-title,
.md-typeset .reply-all > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .reply-all > .admonition-title::before,
.md-typeset .reply-all > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--reply-all);
		mask-image: var(--md-admonition-icon--reply-all);
}



:root {
	--md-admonition-icon--reply: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11Z"/></svg>')
}
.md-typeset .admonition.reply,
.md-typeset details.reply {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .reply > .admonition-title,
.md-typeset .reply > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .reply > .admonition-title::before,
.md-typeset .reply > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--reply);
		mask-image: var(--md-admonition-icon--reply);
}



:root {
	--md-admonition-icon--resize-bottom-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 22h-2v-2h2v2m0-4h-2v-2h2v2m-4 4h-2v-2h2v2m0-4h-2v-2h2v2m-4 4h-2v-2h2v2m8-8h-2v-2h2v2Z"/></svg>')
}
.md-typeset .admonition.resize-bottom-right,
.md-typeset details.resize-bottom-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .resize-bottom-right > .admonition-title,
.md-typeset .resize-bottom-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .resize-bottom-right > .admonition-title::before,
.md-typeset .resize-bottom-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--resize-bottom-right);
		mask-image: var(--md-admonition-icon--resize-bottom-right);
}



:root {
	--md-admonition-icon--rocket-launch-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.13 22.19-1.63-3.83c1.57-.58 3.04-1.36 4.4-2.27l-2.77 6.1M5.64 12.5l-3.83-1.63 6.1-2.77C7 9.46 6.22 10.93 5.64 12.5M19.22 4c.28 0 .53 0 .74.05.17 1.39-.02 4.25-3.3 7.53-1.7 1.71-3.73 3.02-6.01 3.89l-2.15-2.1c.92-2.31 2.23-4.34 3.92-6.03C15.18 4.58 17.64 4 19.22 4m0-2c-1.98 0-4.98.69-8.22 3.93-2.19 2.19-3.5 4.6-4.35 6.71-.28.75-.09 1.57.46 2.13l2.13 2.12c.38.38.89.61 1.42.61.23 0 .47-.06.7-.15A19.1 19.1 0 0 0 18.07 13c5.66-5.66 3.54-10.61 3.54-10.61S20.7 2 19.22 2m-4.68 7.46c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0c.77.78.78 2.05 0 2.83-.78.78-2.05.78-2.83 0m-5.66 7.07-1.41-1.41 1.41 1.41M6.24 22l3.64-3.64c-.34-.09-.67-.24-.97-.45L4.83 22h1.41M2 22h1.41l4.77-4.76-1.42-1.41L2 20.59V22m0-2.83 4.09-4.08c-.21-.3-.36-.62-.45-.97L2 17.76v1.41Z"/></svg>')
}
.md-typeset .admonition.rocket-launch-outline,
.md-typeset details.rocket-launch-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .rocket-launch-outline > .admonition-title,
.md-typeset .rocket-launch-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .rocket-launch-outline > .admonition-title::before,
.md-typeset .rocket-launch-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--rocket-launch-outline);
		mask-image: var(--md-admonition-icon--rocket-launch-outline);
}



:root {
	--md-admonition-icon--routes: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 10H5L3 8l2-2h6V3l1-1 1 1v1h6l2 2-2 2h-6v2h6l2 2-2 2h-6v6a2 2 0 0 1 2 2H9a2 2 0 0 1 2-2V10Z"/></svg>')
}
.md-typeset .admonition.routes,
.md-typeset details.routes {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .routes > .admonition-title,
.md-typeset .routes > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .routes > .admonition-title::before,
.md-typeset .routes > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--routes);
		mask-image: var(--md-admonition-icon--routes);
}



:root {
	--md-admonition-icon--ruler-square: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 5v16h6v-1.5H7V18h2v-1.5H5V15h4v-1.5H7V12h2v-1.5H5V9h4V5h1.5v4H12V7h1.5v2H15V5h1.5v4H18V7h1.5v2H21V3H5a2 2 0 0 0-2 2m3 2a1 1 0 0 1-1-1 1 1 0 0 1 1-1 1 1 0 0 1 1 1 1 1 0 0 1-1 1Z"/></svg>')
}
.md-typeset .admonition.ruler-square,
.md-typeset details.ruler-square {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ruler-square > .admonition-title,
.md-typeset .ruler-square > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ruler-square > .admonition-title::before,
.md-typeset .ruler-square > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ruler-square);
		mask-image: var(--md-admonition-icon--ruler-square);
}



:root {
	--md-admonition-icon--ruler: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m1.39 18.36 1.77-1.76L4.58 18l1.06-1.05-1.42-1.41 1.42-1.42 2.47 2.48 1.06-1.06-2.47-2.48 1.41-1.41 1.42 1.41L10.59 12l-1.42-1.41 1.42-1.42 2.47 2.48 1.06-1.06-2.47-2.48 1.41-1.41 1.41 1.41 1.07-1.06-1.42-1.41 1.42-1.42L18 6.7l1.07-1.06-2.47-2.48 1.76-1.77 4.25 4.25L5.64 22.61l-4.25-4.25Z"/></svg>')
}
.md-typeset .admonition.ruler,
.md-typeset details.ruler {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ruler > .admonition-title,
.md-typeset .ruler > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ruler > .admonition-title::before,
.md-typeset .ruler > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ruler);
		mask-image: var(--md-admonition-icon--ruler);
}



:root {
	--md-admonition-icon--safe: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2v1h2v-1h11v1h2v-1a2 2 0 0 0 2-2v-1h1v-2h-1V9h1V7h-1V6a2 2 0 0 0-2-2H4m0 2h15v11H4V6m9.5 1.5a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4M5 9v5h2V9H5m8.5.5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2Z"/></svg>')
}
.md-typeset .admonition.safe,
.md-typeset details.safe {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .safe > .admonition-title,
.md-typeset .safe > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .safe > .admonition-title::before,
.md-typeset .safe > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--safe);
		mask-image: var(--md-admonition-icon--safe);
}



:root {
	--md-admonition-icon--sail-boat-sink: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.96 21c-1.06 0-2.06-.26-3-.76-1.84 1-4.15 1-5.99 0-1.84 1-4.15 1-5.97 0-1.23.69-2.64.8-4 .76v-2c1.41.04 2.77-.11 4-1 1.74 1.24 4.21 1.24 5.97 0 1.77 1.24 4.23 1.24 5.99 0 1.21.89 2.58 1.04 3.98 1v2h-.98M22 3.5 7.11 5.96l6 6.21L22 3.5M10.81 16.36l1.16-.82 1.15.82c.53.36 1.18.57 1.85.57.15 0 .31-.02.46-.04L5.2 6.31C4.29 7.65 3.9 9.32 4 10.92l5.74 5.91c.39-.09.76-.25 1.07-.47Z"/></svg>')
}
.md-typeset .admonition.sail-boat-sink,
.md-typeset details.sail-boat-sink {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sail-boat-sink > .admonition-title,
.md-typeset .sail-boat-sink > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sail-boat-sink > .admonition-title::before,
.md-typeset .sail-boat-sink > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sail-boat-sink);
		mask-image: var(--md-admonition-icon--sail-boat-sink);
}



:root {
	--md-admonition-icon--sail-boat: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3 13.5 8-11.47V13.5H3m9.5 0c1.35-3.75 1.17-8.79 0-12.5 4.76 1.54 8.4 7.4 8.46 12.5H12.5m8.6 3.58c-.41.64-.89 1.19-1.45 1.66-.65-.29-1.23-.74-1.69-1.24-1.49 1.93-4.5 1.93-5.99 0-1.47 1.93-4.5 1.93-5.97 0-.5.5-1.05.95-1.7 1.24-1.14-.94-2-2.28-2.3-3.74h19.94a6.41 6.41 0 0 1-.84 2.08M20.96 23c-1.06 0-2.06-.25-3-.75-1.84 1-4.15 1-5.99 0-1.84 1-4.15 1-5.97 0-1.23.69-2.64.8-4 .75v-2c1.41.05 2.77-.1 4-1 1.74 1.25 4.21 1.25 5.97 0 1.77 1.25 4.23 1.25 5.99 0 1.21.9 2.58 1.05 3.98 1v2h-.98Z"/></svg>')
}
.md-typeset .admonition.sail-boat,
.md-typeset details.sail-boat {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sail-boat > .admonition-title,
.md-typeset .sail-boat > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sail-boat > .admonition-title::before,
.md-typeset .sail-boat > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sail-boat);
		mask-image: var(--md-admonition-icon--sail-boat);
}



:root {
	--md-admonition-icon--satellite-uplink: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m11.86 2-.52 1.93c4.41.85 7.86 4.3 8.71 8.72l1.95-.52C20.95 7.03 16.96 3.04 11.86 2m-1.04 3.86-.52 1.95c3.04.46 5.42 2.84 5.88 5.87l1.94-.52c-.66-3.72-3.57-6.66-7.3-7.3m-7.1 3.83A7.96 7.96 0 0 0 5 18.28V22h3v-1.59c.95.39 1.97.59 3 .59 1.14 0 2.27-.25 3.3-.72L3.72 9.69m6.07.07-.53 1.96a3 3 0 0 1 3 3l1.97-.52c-.23-2.34-2.1-4.2-4.44-4.44Z"/></svg>')
}
.md-typeset .admonition.satellite-uplink,
.md-typeset details.satellite-uplink {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .satellite-uplink > .admonition-title,
.md-typeset .satellite-uplink > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .satellite-uplink > .admonition-title::before,
.md-typeset .satellite-uplink > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--satellite-uplink);
		mask-image: var(--md-admonition-icon--satellite-uplink);
}



:root {
	--md-admonition-icon--saw-blade: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 15s-1.4 1.3 1.1 2l-2.8 2.8h-2.8s-1.9-.1-.5 2.2h-4l-2-2s-1.3-1.4-2 1.1l-2.8-2.8v-2.8s.1-1.9-2.2-.5v-4l2-2s1.4-1.3-1.2-1.9l2.8-2.9h2.9s1.9.1.5-2.2h4l2 2s1.3 1.4 2-1.2l2.8 2.8v2.9s-.1 1.9 2.2.5v4l-2 2m-6-3a2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2Z"/></svg>')
}
.md-typeset .admonition.saw-blade,
.md-typeset details.saw-blade {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .saw-blade > .admonition-title,
.md-typeset .saw-blade > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .saw-blade > .admonition-title::before,
.md-typeset .saw-blade > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--saw-blade);
		mask-image: var(--md-admonition-icon--saw-blade);
}



:root {
	--md-admonition-icon--saxophone: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2a1 1 0 0 0-1 1 1 1 0 0 0 1 1 3 3 0 0 1 3 3v8.5c0 3.6 2.9 6.5 6.5 6.5s6.5-2.9 6.5-6.5V13a1 1 0 0 0 1-1 1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1 1 1 0 0 0 1 1v2a1 1 0 0 1-1 1 1 1 0 0 1-1-1v-4a1 1 0 0 0 1-1 1 1 0 0 0-1-1V8a1 1 0 0 0 1-1 1 1 0 0 0-1-1v-.5A3.5 3.5 0 0 0 8.5 2H4Z"/></svg>')
}
.md-typeset .admonition.saxophone,
.md-typeset details.saxophone {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .saxophone > .admonition-title,
.md-typeset .saxophone > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .saxophone > .admonition-title::before,
.md-typeset .saxophone > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--saxophone);
		mask-image: var(--md-admonition-icon--saxophone);
}



:root {
	--md-admonition-icon--scatter-plot-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 18a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m4-2a4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4 4 4 0 0 1-4 4m0-6a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2m5.6 17.6c-2.21 0-4-1.79-4-4a4 4 0 0 1 4-4c2.21 0 4 1.79 4 4a4 4 0 0 1-4 4m0-6a2 2 0 0 0-2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1-.9-2-2-2Z"/></svg>')
}
.md-typeset .admonition.scatter-plot-outline,
.md-typeset details.scatter-plot-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .scatter-plot-outline > .admonition-title,
.md-typeset .scatter-plot-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .scatter-plot-outline > .admonition-title::before,
.md-typeset .scatter-plot-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--scatter-plot-outline);
		mask-image: var(--md-admonition-icon--scatter-plot-outline);
}



:root {
	--md-admonition-icon--scooter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.82 19H15v-1c0-2.21 1.79-4 4-4h.74l-1.9-8.44A2.009 2.009 0 0 0 15.89 4H12v2h3.89l1.4 6.25h-.01A6.008 6.008 0 0 0 13.09 17H7.82a2.996 2.996 0 0 0-3.42-1.94c-1.18.23-2.13 1.2-2.35 2.38A3.002 3.002 0 0 0 5 21c1.3 0 2.4-.84 2.82-2M5 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1m14-4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3m0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1Z"/></svg>')
}
.md-typeset .admonition.scooter,
.md-typeset details.scooter {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .scooter > .admonition-title,
.md-typeset .scooter > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .scooter > .admonition-title::before,
.md-typeset .scooter > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--scooter);
		mask-image: var(--md-admonition-icon--scooter);
}



:root {
	--md-admonition-icon--screw-round-top: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.5 17v2L12 22l-1.5-3 3-2m1-10.7-1 .7V6h-3v3l-1 .7v1l5-3.3V6.3m0 4-1 .7V9l-3 2v2l-1 .7v1l5-3.3v-1.1m0 4-1 .7v-2l-3 2v2l-1 .7v1l5-3.3v-1.1M7 5h10s-1-3-5-3-5 3-5 3Z"/></svg>')
}
.md-typeset .admonition.screw-round-top,
.md-typeset details.screw-round-top {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .screw-round-top > .admonition-title,
.md-typeset .screw-round-top > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .screw-round-top > .admonition-title::before,
.md-typeset .screw-round-top > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--screw-round-top);
		mask-image: var(--md-admonition-icon--screw-round-top);
}



:root {
	--md-admonition-icon--seesaw: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.68 13.26.36 1.97-19.69 3.54L2 16.8l2.95-.53-.35-1.97c-.1-.54.26-1.06.81-1.16.54-.1 1.06.26 1.16.81l.35 1.96 9.84-1.76-.35-1.97c-.1-.55.26-1.07.81-1.18.54-.08 1.06.28 1.16.82l.35 1.97 2.95-.53M10.06 18.4 8 22h8l-2.42-4.23-3.52.63Z"/></svg>')
}
.md-typeset .admonition.seesaw,
.md-typeset details.seesaw {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .seesaw > .admonition-title,
.md-typeset .seesaw > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .seesaw > .admonition-title::before,
.md-typeset .seesaw > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--seesaw);
		mask-image: var(--md-admonition-icon--seesaw);
}



:root {
	--md-admonition-icon--segment: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 8H3V6h18M9 13h12v-2H9m0 7h12v-2H9"/></svg>')
}
.md-typeset .admonition.segment,
.md-typeset details.segment {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .segment > .admonition-title,
.md-typeset .segment > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .segment > .admonition-title::before,
.md-typeset .segment > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--segment);
		mask-image: var(--md-admonition-icon--segment);
}



:root {
	--md-admonition-icon--select: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h1v2H3V4a1 1 0 0 1 1-1m16 0a1 1 0 0 1 1 1v1h-2V3h1m-5 2V3h2v2h-2m-4 0V3h2v2h-2M7 5V3h2v2H7m14 15a1 1 0 0 1-1 1h-1v-2h2v1m-6 1v-2h2v2h-2m-4 0v-2h2v2h-2m-4 0v-2h2v2H7m-3 0a1 1 0 0 1-1-1v-1h2v2H4m-1-6h2v2H3v-2m18 0v2h-2v-2h2M3 11h2v2H3v-2m18 0v2h-2v-2h2M3 7h2v2H3V7m18 0v2h-2V7h2Z"/></svg>')
}
.md-typeset .admonition.select,
.md-typeset details.select {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .select > .admonition-title,
.md-typeset .select > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .select > .admonition-title::before,
.md-typeset .select > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--select);
		mask-image: var(--md-admonition-icon--select);
}



:root {
	--md-admonition-icon--send: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 21 21-9L2 3v7l15 2-15 2v7Z"/></svg>')
}
.md-typeset .admonition.send,
.md-typeset details.send {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .send > .admonition-title,
.md-typeset .send > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .send > .admonition-title::before,
.md-typeset .send > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--send);
		mask-image: var(--md-admonition-icon--send);
}



:root {
	--md-admonition-icon--shaker-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.88 4 2.15 2.1-5.53 4.4-1-1L16.87 4h.01m0-2a2 2 0 0 0-1.55.72L9.8 9.65l3.54 3.54 6.94-5.52c.9-.76.97-2.13.13-2.97L18.3 2.59c-.4-.4-.91-.59-1.42-.59M9.1 10.36l-.71.71a1.02 1.02 0 0 0 0 1.43l2.11 2.1c.21.2.46.29.72.29s.51-.09.71-.29l.7-.7-3.53-3.54M6 15c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m-5 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1m3 1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1Z"/></svg>')
}
.md-typeset .admonition.shaker-outline,
.md-typeset details.shaker-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .shaker-outline > .admonition-title,
.md-typeset .shaker-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .shaker-outline > .admonition-title::before,
.md-typeset .shaker-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--shaker-outline);
		mask-image: var(--md-admonition-icon--shaker-outline);
}



:root {
	--md-admonition-icon--shark: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.56 9.09C14.66 7.18 12.54 6 11 6c.47 1.4.28 2.57-.05 3.43C8.45 10 6 11 6 11S3 7 1 7l2 6-1 4c2 0 4-3 4-3s5 2 8 2v2c.65 0 1.91-.83 2.73-2.23 1.24-.21 2.27-.56 3.14-.96-.15-.18-.34-.37-.59-.51-.65-.39-1.46-.63-2.28-.8.82-.16 1.67-.28 2.59-.15.46.06.95.19 1.41.51.1.06.17.14.24.19C22.4 13.26 23 12.44 23 12c0-.87-3.81-2.5-7.44-2.91M18 12c-.55 0-1-.45-1-1 0-.24.1-.45.23-.62.61.12 1.2.29 1.74.46.03.05.03.1.03.16 0 .55-.45 1-1 1Z"/></svg>')
}
.md-typeset .admonition.shark,
.md-typeset details.shark {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .shark > .admonition-title,
.md-typeset .shark > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .shark > .admonition-title::before,
.md-typeset .shark > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--shark);
		mask-image: var(--md-admonition-icon--shark);
}



:root {
	--md-admonition-icon--sheep: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8.5a2.5 2.5 0 0 1-2.5 2.5c-1.08 0-2-.69-2.34-1.64-.44.39-1.02.64-1.66.64-.56 0-1.08-.19-1.5-.5-.42.31-.93.5-1.5.5-.64 0-1.22-.25-1.66-.64C8.5 10.31 7.58 11 6.5 11A2.5 2.5 0 0 1 4 8.5c0-1.24.91-2.27 2.1-2.46-.06-.17-.1-.35-.1-.54A1.5 1.5 0 0 1 7.5 4c.2 0 .39.04.56.11C8.23 3.47 8.81 3 9.5 3c.25 0 .5.07.68.17C10.5 2.5 11.19 2 12 2s1.5.5 1.82 1.17c.18-.1.43-.17.68-.17.69 0 1.27.47 1.44 1.11.17-.07.36-.11.56-.11A1.5 1.5 0 0 1 18 5.5c0 .19-.04.37-.1.54 1.19.19 2.1 1.22 2.1 2.46M10 12a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1m6.23-1.34c-.64.81-1.62 1.34-2.73 1.34-.45 0-.88-.1-1.29-.27-.01 2.55-.38 5.63-1.76 7.22-.52.59-1.15.91-1.95 1.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01-1.39-1.6-1.76-4.66-1.77-7.21-.4.16-.83.26-1.28.26-1.11 0-2.09-.53-2.73-1.34C2.88 11.55 2 12 2 12s1 2 3 2c.36 0 .64-.04.88-.09C6.22 17.73 7.58 22 12 22s5.78-4.27 6.12-8.09c.24.05.52.09.88.09 2 0 3-2 3-2s-.88-.45-1.77-1.34Z"/></svg>')
}
.md-typeset .admonition.sheep,
.md-typeset details.sheep {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sheep > .admonition-title,
.md-typeset .sheep > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sheep > .admonition-title::before,
.md-typeset .sheep > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sheep);
		mask-image: var(--md-admonition-icon--sheep);
}



:root {
	--md-admonition-icon--ship-wheel: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2 11 2.05.1a7.96 7.96 0 0 1 3.2-5.54L6.13 3.84c-.27-.48-.13-1.09.37-1.37.5-.27 1.09-.11 1.37.37l.93 1.82a8.102 8.102 0 0 1 6.4 0l.93-1.82c.28-.48.87-.64 1.37-.37.5.28.64.89.37 1.37l-1.12 1.72a7.96 7.96 0 0 1 3.2 5.54L22 11a1 1 0 0 1 1 1 1 1 0 0 1-1 1l-2.05-.1a7.96 7.96 0 0 1-3.2 5.54l1.12 1.72c.27.48.13 1.09-.37 1.37-.5.27-1.09.11-1.37-.37l-.93-1.82a8.102 8.102 0 0 1-6.4 0l-.93 1.82c-.28.48-.87.64-1.37.37-.5-.28-.64-.89-.37-1.37l1.12-1.72a7.96 7.96 0 0 1-3.2-5.54L2 13a1 1 0 0 1-1-1 1 1 0 0 1 1-1m7.07.35c.13-.61.46-1.15.93-1.56L8.34 7.25a5.993 5.993 0 0 0-2.29 3.95l3.02.15M12 9c.32 0 .62.05.9.14l1.38-2.69C13.58 6.16 12.81 6 12 6c-.81 0-1.58.16-2.28.45l1.38 2.69c.28-.09.58-.14.9-.14m2.93 2.35 3.02-.15a5.993 5.993 0 0 0-2.29-3.95L14 9.79c.47.41.8.95.93 1.56m0 1.3c-.13.61-.46 1.15-.93 1.56l1.66 2.54a5.993 5.993 0 0 0 2.29-3.95l-3.02-.15M12 15c-.32 0-.62-.05-.91-.14l-1.37 2.69c.7.29 1.47.45 2.28.45.81 0 1.58-.16 2.28-.45l-1.37-2.69c-.29.09-.59.14-.91.14m-2.93-2.35-3.02.15c.22 1.6 1.06 3.01 2.29 3.95L10 14.21c-.47-.41-.8-.95-.93-1.56Z"/></svg>')
}
.md-typeset .admonition.ship-wheel,
.md-typeset details.ship-wheel {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .ship-wheel > .admonition-title,
.md-typeset .ship-wheel > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .ship-wheel > .admonition-title::before,
.md-typeset .ship-wheel > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--ship-wheel);
		mask-image: var(--md-admonition-icon--ship-wheel);
}



:root {
	--md-admonition-icon--shoe-sneaker: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 15s0-3 2-3c.68 0 1.46-.05 2.28-.18C7.2 12.54 8.5 13 10 13h.25l-1.69-1.71c.35-.11.69-.24 1.03-.38l1.91 1.91c.39-.08.75-.19 1.08-.32l-2.03-2.05c.3-.17.59-.34.88-.54L13.5 12c.3-.21.54-.44.75-.68l-2.03-2.03c.24-.22.48-.46.7-.71l1.87 1.87c.12-.31.21-.62.21-.95 0-.85-.45-1.61-1.16-2.22.05-.09.11-.18.16-.28l1.53-.77c.85.94 2.61 1.61 4.72 1.74l.05.03h.7s1 1 1 4.5c0 .57 0 1.07-.04 1.5H19c-1.1 0-2.42.26-3.7.5-1.18.26-2.4.5-3.3.5H2m19 2s.58 0 .86-2H19c-2 0-5 1-7 1H2.28c.34.6.98 1 1.72 1h17Z"/></svg>')
}
.md-typeset .admonition.shoe-sneaker,
.md-typeset details.shoe-sneaker {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .shoe-sneaker > .admonition-title,
.md-typeset .shoe-sneaker > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .shoe-sneaker > .admonition-title::before,
.md-typeset .shoe-sneaker > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--shoe-sneaker);
		mask-image: var(--md-admonition-icon--shoe-sneaker);
}



:root {
	--md-admonition-icon--shower-head: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 20a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m-4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m2-3a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1M8 14a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m4 0a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m3-2H5v-2h14v2m-1.08-3H6.08C6.5 6.5 8.5 4.5 11 4.08V2h2v2.08c2.5.42 4.5 2.42 4.92 4.92Z"/></svg>')
}
.md-typeset .admonition.shower-head,
.md-typeset details.shower-head {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .shower-head > .admonition-title,
.md-typeset .shower-head > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .shower-head > .admonition-title::before,
.md-typeset .shower-head > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--shower-head);
		mask-image: var(--md-admonition-icon--shower-head);
}



:root {
	--md-admonition-icon--sickle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.3 7.2C17.5 4.7 14.9 3 12 2c14.2 8.5 3.4 20.9-3.5 13.5l-2.6.5-3.4 3.4c-.6.6-.6 1.6 0 2.1.6.6 1.6.6 2.1 0l3.2-3.2c7.5 6 17.2-3.3 11.5-11.1Z"/></svg>')
}
.md-typeset .admonition.sickle,
.md-typeset details.sickle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sickle > .admonition-title,
.md-typeset .sickle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sickle > .admonition-title::before,
.md-typeset .sickle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sickle);
		mask-image: var(--md-admonition-icon--sickle);
}



:root {
	--md-admonition-icon--sigma-lower: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 12c0 4.42-3.36 8-7.5 8C7.36 20 4 16.42 4 12s3.36-8 7.5-8H20v2h-3.54A8.291 8.291 0 0 1 19 12m-7.5-6C8.46 6 6 8.69 6 12s2.46 6 5.5 6 5.5-2.69 5.5-6-2.46-6-5.5-6Z"/></svg>')
}
.md-typeset .admonition.sigma-lower,
.md-typeset details.sigma-lower {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sigma-lower > .admonition-title,
.md-typeset .sigma-lower > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sigma-lower > .admonition-title::before,
.md-typeset .sigma-lower > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sigma-lower);
		mask-image: var(--md-admonition-icon--sigma-lower);
}



:root {
	--md-admonition-icon--sigma: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 6H8.83l6 6-6 6H18v2H6v-2l6-6-6-6V4h12v2Z"/></svg>')
}
.md-typeset .admonition.sigma,
.md-typeset details.sigma {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sigma > .admonition-title,
.md-typeset .sigma > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sigma > .admonition-title::before,
.md-typeset .sigma > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sigma);
		mask-image: var(--md-admonition-icon--sigma);
}



:root {
	--md-admonition-icon--signal: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 21h3v-3H3m5 3h3v-7H8m5 7h3V9h-3m5 12h3V3h-3v18Z"/></svg>')
}
.md-typeset .admonition.signal,
.md-typeset details.signal {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .signal > .admonition-title,
.md-typeset .signal > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .signal > .admonition-title::before,
.md-typeset .signal > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--signal);
		mask-image: var(--md-admonition-icon--signal);
}



:root {
	--md-admonition-icon--skateboarding: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.78 18.39c.15.15.22.31.22.49 0 .12-.06.29-.18.44-.38.53-.86.94-1.45 1.24-.59.29-1.22.44-1.9.44H7.53c-.71 0-1.36-.15-1.94-.44-.59-.3-1.09-.71-1.46-1.24a.828.828 0 0 1-.13-.44c0-.18.07-.34.2-.49s.3-.22.51-.22c.23 0 .42.1.57.33.41.5.94.86 1.59 1.04l2.95-3.58-1.28-3.89c-.18-.57-.1-1.07.22-1.57L11 6.86H8.8L7 9.77 5.41 8.76 7.75 5h5.37c.42 0 .75.12 1.02.35.26.24.44.45.53.62l.48 1.15C15.5 7.89 16 8.5 16.7 9c.7.45 1.48.69 2.33.69v1.9c-1.09 0-2.08-.27-3-.8a6.073 6.073 0 0 1-2.16-2.08l-1.71 2.7 4.05 2.52v5.66h.26c.45 0 .86-.09 1.26-.31s.73-.47.99-.78c.15-.23.33-.33.53-.33s.38.08.53.22m-5.42-3.14-3.31-2.07.95 3.14-2.76 3.27h5.12v-4.34M15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.89 2-2-.89-2-2-2M8 21.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75m8 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75Z"/></svg>')
}
.md-typeset .admonition.skateboarding,
.md-typeset details.skateboarding {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .skateboarding > .admonition-title,
.md-typeset .skateboarding > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .skateboarding > .admonition-title::before,
.md-typeset .skateboarding > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--skateboarding);
		mask-image: var(--md-admonition-icon--skateboarding);
}



:root {
	--md-admonition-icon--slash-forward: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m7 21 7.9-18H17L9.1 21H7Z"/></svg>')
}
.md-typeset .admonition.slash-forward,
.md-typeset details.slash-forward {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .slash-forward > .admonition-title,
.md-typeset .slash-forward > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .slash-forward > .admonition-title::before,
.md-typeset .slash-forward > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--slash-forward);
		mask-image: var(--md-admonition-icon--slash-forward);
}



:root {
	--md-admonition-icon--slide: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.83 15.45c-.36-.55-.65-1.06-.92-1.53-1.17-2.01-2.12-3.37-4.91-3.79V5.5C9 3.57 7.43 2 5.5 2S2 3.57 2 5.5V22h2v-2h3v2h2v-9.84c1.76.34 2.29 1.23 3.17 2.76.29.51.61 1.05 1 1.64C15.41 19.92 17.67 22 22 22v-2c-3.47 0-5.2-1.6-7.17-4.55M5.5 4C6.33 4 7 4.67 7 5.5V10H4V5.5C4 4.67 4.67 4 5.5 4M4 18v-2h3v2H4m3-4H4v-2h3v2Z"/></svg>')
}
.md-typeset .admonition.slide,
.md-typeset details.slide {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .slide > .admonition-title,
.md-typeset .slide > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .slide > .admonition-title::before,
.md-typeset .slide > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--slide);
		mask-image: var(--md-admonition-icon--slide);
}



:root {
	--md-admonition-icon--snowflake: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.79 13.95-2.33.62-2-1.13v-2.88l2-1.13 2.33.62.52-1.93-1.77-.47.46-1.77-1.93-.52-.62 2.33-2 1.13L13 7.38V5.12l1.71-1.71L13.29 2 12 3.29 10.71 2 9.29 3.41 11 5.12v2.26L8.5 8.82l-2-1.13-.58-2.33L4 5.88l.47 1.77-1.77.47.52 1.93 2.33-.62 2 1.13v2.89l-2 1.13-2.33-.62-.52 1.93 1.77.47L4 18.12l1.93.52.62-2.33 2-1.13L11 16.62v2.26l-1.71 1.71L10.71 22 12 20.71 13.29 22l1.41-1.41-1.7-1.71v-2.26l2.5-1.45 2 1.13.62 2.33 1.88-.51-.47-1.77 1.77-.47-.51-1.93M9.5 10.56 12 9.11l2.5 1.45v2.88L12 14.89l-2.5-1.45v-2.88Z"/></svg>')
}
.md-typeset .admonition.snowflake,
.md-typeset details.snowflake {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .snowflake > .admonition-title,
.md-typeset .snowflake > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .snowflake > .admonition-title::before,
.md-typeset .snowflake > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--snowflake);
		mask-image: var(--md-admonition-icon--snowflake);
}



:root {
	--md-admonition-icon--solid: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0"/></svg>')
}
.md-typeset .admonition.solid,
.md-typeset details.solid {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .solid > .admonition-title,
.md-typeset .solid > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .solid > .admonition-title::before,
.md-typeset .solid > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--solid);
		mask-image: var(--md-admonition-icon--solid);
}



:root {
	--md-admonition-icon--sort-reverse-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 11h12v2H3m0 5v-2h18v2M3 6h6v2H3Z"/></svg>')
}
.md-typeset .admonition.sort-reverse-variant,
.md-typeset details.sort-reverse-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sort-reverse-variant > .admonition-title,
.md-typeset .sort-reverse-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sort-reverse-variant > .admonition-title::before,
.md-typeset .sort-reverse-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sort-reverse-variant);
		mask-image: var(--md-admonition-icon--sort-reverse-variant);
}



:root {
	--md-admonition-icon--sort-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h12v-2H3m0-5v2h18V6M3 18h6v-2H3v2Z"/></svg>')
}
.md-typeset .admonition.sort-variant,
.md-typeset details.sort-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sort-variant > .admonition-title,
.md-typeset .sort-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sort-variant > .admonition-title::before,
.md-typeset .sort-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sort-variant);
		mask-image: var(--md-admonition-icon--sort-variant);
}



:root {
	--md-admonition-icon--space-station: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 19v2h-1.77c-.34.6-.99 1-1.73 1s-1.39-.4-1.73-1H8.5v-2h1.77c.17-.3.43-.56.73-.73V17h-1c-.55 0-1-.45-1-1v-3H6v4c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v3h3V8c0-.55.45-1 1-1h1V6h-1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-1v1h1c.55 0 1 .45 1 1v3h3V8c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1h-2c-.55 0-1-.45-1-1v-4h-3v3c0 .55-.45 1-1 1h-1v1.27c.3.17.56.43.73.73h1.77M3 16v1h2v-1H3m0-2v1h2v-1H3m0-2v1h2v-1H3m0-2v1h2v-1H3m0-2v1h2V8H3m16 8v1h2v-1h-2m0-2v1h2v-1h-2m0-2v1h2v-1h-2m0-2v1h2v-1h-2m0-2v1h2V8h-2Z"/></svg>')
}
.md-typeset .admonition.space-station,
.md-typeset details.space-station {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .space-station > .admonition-title,
.md-typeset .space-station > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .space-station > .admonition-title::before,
.md-typeset .space-station > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--space-station);
		mask-image: var(--md-admonition-icon--space-station);
}



:root {
	--md-admonition-icon--spear: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 9h.41l-13 13L2 20.59l13-13V9h1m0-5v4h4l2-6-6 2Z"/></svg>')
}
.md-typeset .admonition.spear,
.md-typeset details.spear {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .spear > .admonition-title,
.md-typeset .spear > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .spear > .admonition-title::before,
.md-typeset .spear > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--spear);
		mask-image: var(--md-admonition-icon--spear);
}



:root {
	--md-admonition-icon--sphere: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 12c-4.42 0-8-.89-8-2 0-1.1 3.58-2 8-2s8 .9 8 2c0 1.11-3.58 2-8 2m0-10c3.37 0 6.25 2.09 7.43 5.05C17.93 8.43 15.61 8 12 8c-2.2 0-5.27.19-7.43 1.05C5.75 6.09 8.63 4 12 4m0 16c-3.37 0-6.25-2.09-7.43-5.05C6.07 15.57 8.39 16 12 16c2.2 0 5.27-.19 7.43-1.05C18.25 17.91 15.37 20 12 20Z"/></svg>')
}
.md-typeset .admonition.sphere,
.md-typeset details.sphere {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sphere > .admonition-title,
.md-typeset .sphere > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sphere > .admonition-title::before,
.md-typeset .sphere > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sphere);
		mask-image: var(--md-admonition-icon--sphere);
}



:root {
	--md-admonition-icon--spider-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 22h-2v-4.54l-1.56-1.34c-.12.71-.4 1.38-.82 1.94-.2.28-.44.53-.71.76-.81.68-1.84 1.07-2.91 1.07s-2.1-.39-2.91-1.07c-.27-.23-.51-.48-.71-.76a4.48 4.48 0 0 1-.82-1.94L6 17.46V22H4v-5.46l3.87-3.32-2.37.67-2.79 2.82-1.42-1.42 3.17-3.13 3-.85L5.6 11 1.4 7.8l1.2-1.6 3.8 2.85 2.69.45-3.2-3.19L7 1.76l2 .48-.89 3.45 1.13 1.14c.12-.27.26-.51.45-.73.15-.18.31-.35.51-.49.05-.04.1-.07.15-.11.08-.05.15-.1.24-.14.44-.23.91-.36 1.41-.36.5 0 .97.13 1.4.36.1.04.17.09.25.14l.12.09c.2.14.38.31.53.49.2.22.34.48.46.75l1.1-1.14L15 2.24l2-.48 1.11 4.55-3.2 3.19 2.68-.45L21.4 6.2l1.2 1.6-4.19 3.2-1.91.26 3 .85 3.21 3.18-1.42 1.42-2.79-2.82-2.37-.67L20 16.54V22m-5.53-6.21L15 12.5l-3-.5-3 .5.53 3.29c.1.59.4 1.12.85 1.5.45.39 1.03.6 1.62.6.59 0 1.17-.21 1.62-.6.45-.38.75-.91.85-1.5M12 9.58l1.23-1.23-.31-.74a.988.988 0 0 0-.37-.44A.967.967 0 0 0 12 7c-.2 0-.39.06-.55.17-.16.11-.29.26-.37.44l-.31.74L12 9.58Z"/></svg>')
}
.md-typeset .admonition.spider-outline,
.md-typeset details.spider-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .spider-outline > .admonition-title,
.md-typeset .spider-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .spider-outline > .admonition-title::before,
.md-typeset .spider-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--spider-outline);
		mask-image: var(--md-admonition-icon--spider-outline);
}



:root {
	--md-admonition-icon--spider-web: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.62 13.28 1.64 2.26c.03-.54.12-1.07.3-1.61.18-.56.44-1.07.74-1.52l-2.68.87M17.77 19c-.02-1.32.18-2.73.64-4.15.47-1.43 1.15-2.71 1.95-3.76l-2.04.66c-.78.51-1.45 1.39-1.82 2.48-.33 1.06-.32 2.13 0 2.99L17.77 19m1.48 2c-.5.46-1.04.86-1.62 1.2l-.32-.44C15.9 21 14.04 20.5 12 20.5c-2.04 0-3.9.5-5.31 1.26l-.32.44c-.58-.34-1.12-.74-1.62-1.2l.25-.31c.33-1.61.22-3.57-.42-5.55-.64-1.95-1.68-3.58-2.87-4.68l-.44-.14c.15-.66.36-1.32.62-1.91l.4.13c1.63-.17 3.45-.89 5.14-2.11 1.66-1.21 2.89-2.7 3.57-4.17v-.47l1-.04 1 .04v.42c.67 1.5 1.91 3.02 3.6 4.24 1.66 1.21 3.46 1.92 5.07 2.11l.44-.15c.26.59.47 1.25.62 1.91l-.5.18c-1.19 1.08-2.23 2.71-2.86 4.66-.63 1.93-.75 3.84-.45 5.41l.33.43M11 11.37V8.5c-.34.42-.74.82-1.22 1.17-.49.33-1.01.62-1.53.83l2.75.87m0-7.15c-.75 1.09-1.76 2.13-3 3.02-1.22.9-2.54 1.54-3.82 1.92l1.97.64c.96.08 2.07-.24 3.04-.94.94-.68 1.57-1.59 1.81-2.5V4.22m2 7.15 2.74-.87c-.51-.2-1.02-.47-1.49-.81-.49-.36-.91-.77-1.25-1.19v2.87m6.8-2.21c-1.27-.38-2.57-1.01-3.8-1.9-1.23-.9-2.24-1.95-3-3.06v2.07c.22.94.86 1.9 1.84 2.61.93.68 1.99.99 2.93.94l2.03-.66m-9.42 4.12-2.74-.89c.31.45.56.96.74 1.52.19.59.28 1.15.3 1.71l1.7-2.34m-6.8-2.21c.8 1.05 1.48 2.33 1.95 3.76.47 1.46.67 2.91.64 4.25l1.21-1.67c.38-.91.42-2.05.05-3.19-.36-1.1-1.03-1.98-1.82-2.49l-2.03-.66M12 14.45l-1.65 2.27a6.321 6.321 0 0 1 3.3 0L12 14.45m-4.16 5.73c1.24-.43 2.66-.68 4.16-.68s2.92.25 4.16.68l-1.28-1.76c-.72-.57-1.75-.92-2.88-.92s-2.16.35-2.88.92l-1.28 1.76Z"/></svg>')
}
.md-typeset .admonition.spider-web,
.md-typeset details.spider-web {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .spider-web > .admonition-title,
.md-typeset .spider-web > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .spider-web > .admonition-title::before,
.md-typeset .spider-web > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--spider-web);
		mask-image: var(--md-admonition-icon--spider-web);
}



:root {
	--md-admonition-icon--square-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 3h18v18H3V3m2 2v14h14V5H5Z"/></svg>')
}
.md-typeset .admonition.square-outline,
.md-typeset details.square-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .square-outline > .admonition-title,
.md-typeset .square-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .square-outline > .admonition-title::before,
.md-typeset .square-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--square-outline);
		mask-image: var(--md-admonition-icon--square-outline);
}



:root {
	--md-admonition-icon--square-rounded-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3h8c2.76 0 5 2.24 5 5v8c0 2.76-2.24 5-5 5H8c-2.76 0-5-2.24-5-5V8c0-2.76 2.24-5 5-5m0 2C6.34 5 5 6.34 5 8v8c0 1.66 1.34 3 3 3h8c1.66 0 3-1.34 3-3V8c0-1.66-1.34-3-3-3H8Z"/></svg>')
}
.md-typeset .admonition.square-rounded-outline,
.md-typeset details.square-rounded-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .square-rounded-outline > .admonition-title,
.md-typeset .square-rounded-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .square-rounded-outline > .admonition-title::before,
.md-typeset .square-rounded-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--square-rounded-outline);
		mask-image: var(--md-admonition-icon--square-rounded-outline);
}



:root {
	--md-admonition-icon--stack-exchange: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.9 10.72H20v3.31H3.9v-3.31m0-4.28H20v3.31H3.9V6.44M17.5 2h-11C5.06 2 3.9 3.18 3.9 4.65v.85H20v-.85C20 3.18 18.88 2 17.5 2M3.9 15v.84c0 1.47 1.16 2.66 2.6 2.66h6.87V22l3.4-3.5h.73c1.44 0 2.61-1.19 2.61-2.66V15H3.9Z"/></svg>')
}
.md-typeset .admonition.stack-exchange,
.md-typeset details.stack-exchange {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .stack-exchange > .admonition-title,
.md-typeset .stack-exchange > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .stack-exchange > .admonition-title::before,
.md-typeset .stack-exchange > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--stack-exchange);
		mask-image: var(--md-admonition-icon--stack-exchange);
}



:root {
	--md-admonition-icon--stack-overflow: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.36 20.2v-5.38h1.79V22H3v-7.18h1.8v5.38h12.56M6.77 14.32l.37-1.76 8.79 1.85-.37 1.76-8.79-1.85m1.16-4.21.76-1.61 8.14 3.78-.76 1.62-8.14-3.79m2.26-3.99 1.15-1.38 6.9 5.76-1.15 1.37-6.9-5.75m4.45-4.25L20 9.08l-1.44 1.07-5.36-7.21 1.44-1.07M6.59 18.41v-1.8h8.98v1.8H6.59Z"/></svg>')
}
.md-typeset .admonition.stack-overflow,
.md-typeset details.stack-overflow {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .stack-overflow > .admonition-title,
.md-typeset .stack-overflow > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .stack-overflow > .admonition-title::before,
.md-typeset .stack-overflow > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--stack-overflow);
		mask-image: var(--md-admonition-icon--stack-overflow);
}



:root {
	--md-admonition-icon--stairs: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 5v4h-4v4H7v4H3v3h7v-4h4v-4h4V8h4V5h-7Z"/></svg>')
}
.md-typeset .admonition.stairs,
.md-typeset details.stairs {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .stairs > .admonition-title,
.md-typeset .stairs > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .stairs > .admonition-title::before,
.md-typeset .stairs > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--stairs);
		mask-image: var(--md-admonition-icon--stairs);
}



:root {
	--md-admonition-icon--star-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 15.39-3.76 2.27.99-4.28-3.32-2.88 4.38-.37L12 6.09l1.71 4.04 4.38.37-3.32 2.88.99 4.28M22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.45 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24Z"/></svg>')
}
.md-typeset .admonition.star-outline,
.md-typeset details.star-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .star-outline > .admonition-title,
.md-typeset .star-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .star-outline > .admonition-title::before,
.md-typeset .star-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--star-outline);
		mask-image: var(--md-admonition-icon--star-outline);
}



:root {
	--md-admonition-icon--steering: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 19.92c1.8-.22 3.35-.97 4.65-2.27 1.3-1.3 2.05-2.85 2.27-4.65h-3c-.22 1-.68 1.84-1.38 2.54-.7.7-1.54 1.16-2.54 1.38v3M10 8h4l3 3h2.92c-.25-1.95-1.13-3.62-2.65-5C15.76 4.66 14 4 12 4c-2 0-3.76.66-5.27 2-1.52 1.38-2.4 3.05-2.65 5H7l3-3m1 11.92v-3c-1-.22-1.84-.68-2.54-1.38-.7-.7-1.16-1.54-1.38-2.54h-3c.22 1.77.97 3.3 2.27 4.6 1.3 1.3 2.85 2.07 4.65 2.32M12 2c2.75 0 5.1 1 7.05 2.95C21 6.9 22 9.25 22 12s-1 5.1-2.95 7.05C17.1 21 14.75 22 12 22s-5.1-1-7.05-2.95C3 17.1 2 14.75 2 12s1-5.1 2.95-7.05C6.9 3 9.25 2 12 2Z"/></svg>')
}
.md-typeset .admonition.steering,
.md-typeset details.steering {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .steering > .admonition-title,
.md-typeset .steering > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .steering > .admonition-title::before,
.md-typeset .steering > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--steering);
		mask-image: var(--md-admonition-icon--steering);
}



:root {
	--md-admonition-icon--stethoscope: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 8c.56 0 1 .43 1 1a1 1 0 0 1-1 1c-.57 0-1-.45-1-1 0-.57.43-1 1-1M2 2v9c0 2.96 2.19 5.5 5.14 5.91.62 3.01 3.28 5.09 6.36 5.09a6.5 6.5 0 0 0 6.5-6.5v-3.69c1.16-.42 2-1.52 2-2.81a3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 1.29.84 2.4 2 2.81v3.6c0 2.5-2 4.5-4.5 4.5-2 0-3.68-1.21-4.28-3.01C12 16.3 14 13.8 14 11V2h-4v3h2v6a4 4 0 0 1-4 4 4 4 0 0 1-4-4V5h2V2H2Z"/></svg>')
}
.md-typeset .admonition.stethoscope,
.md-typeset details.stethoscope {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .stethoscope > .admonition-title,
.md-typeset .stethoscope > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .stethoscope > .admonition-title::before,
.md-typeset .stethoscope > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--stethoscope);
		mask-image: var(--md-admonition-icon--stethoscope);
}



:root {
	--md-admonition-icon--stomach: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 18c.67 1.85 2.07 4 8 4 2.36 0 5.07-.07 7-2 1-1 3-3 3-9s-2-7-4-7c-1.38 0-3 0-4 2v.03a1.82 1.82 0 0 1-1.87.92C11 6.81 11 6.37 11 6V2H9v4a2.92 2.92 0 0 0 3 3c1 0 1 1.78 1 3 0 1.89-.5 3.26-2 4-2.31 1.15-4.61 1-5.39-.53a1.5 1.5 0 0 0-2.47-.6A3.67 3.67 0 0 0 2 18v4h2Z"/></svg>')
}
.md-typeset .admonition.stomach,
.md-typeset details.stomach {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .stomach > .admonition-title,
.md-typeset .stomach > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .stomach > .admonition-title::before,
.md-typeset .stomach > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--stomach);
		mask-image: var(--md-admonition-icon--stomach);
}



:root {
	--md-admonition-icon--submarine: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 3.67C6.78 4.53 5.39 4.93 4 5H2v2h2c1.37 0 2.74-.35 4-1 2.5 1.3 5.5 1.3 8 0 1.26.65 2.62.94 4 1h2V5h-2c-1.39 0-2.78-.47-4-1.33-2.44 1.71-5.56 1.71-8 0m8 5L15 10v2h-1l-2 2H9l-3 2-1-2H4v2l-2 1 2 1v2h1.14L6 18l3 2h11a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2l-1-1v-1h-1v-2h1V8.67Z"/></svg>')
}
.md-typeset .admonition.submarine,
.md-typeset details.submarine {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .submarine > .admonition-title,
.md-typeset .submarine > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .submarine > .admonition-title::before,
.md-typeset .submarine > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--submarine);
		mask-image: var(--md-admonition-icon--submarine);
}



:root {
	--md-admonition-icon--sword: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.92 5H5l9 9 1-.94m4.96 6.06-.84.84a.996.996 0 0 1-1.41 0l-3.12-3.12-2.68 2.66-1.41-1.41 1.42-1.42L3 7.75V3h4.75l8.92 8.92 1.42-1.42 1.41 1.41-2.67 2.67 3.12 3.12c.4.4.4 1.03.01 1.42Z"/></svg>')
}
.md-typeset .admonition.sword,
.md-typeset details.sword {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sword > .admonition-title,
.md-typeset .sword > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sword > .admonition-title::before,
.md-typeset .sword > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sword);
		mask-image: var(--md-admonition-icon--sword);
}



:root {
	--md-admonition-icon--sync: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18a6 6 0 0 1-6-6c0-1 .25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 0 0 4 12a8 8 0 0 0 8 8v3l4-4-4-4m0-11V1L8 5l4 4V6a6 6 0 0 1 6 6c0 1-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0 0 20 12a8 8 0 0 0-8-8Z"/></svg>')
}
.md-typeset .admonition.sync,
.md-typeset details.sync {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .sync > .admonition-title,
.md-typeset .sync > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .sync > .admonition-title::before,
.md-typeset .sync > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--sync);
		mask-image: var(--md-admonition-icon--sync);
}



:root {
	--md-admonition-icon--tab: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 3H3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 16H3V5h10v4h8v10Z"/></svg>')
}
.md-typeset .admonition.tab,
.md-typeset details.tab {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tab > .admonition-title,
.md-typeset .tab > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tab > .admonition-title::before,
.md-typeset .tab > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tab);
		mask-image: var(--md-admonition-icon--tab);
}



:root {
	--md-admonition-icon--table-border: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19a1 1 0 0 1-1 1h-1v-2h2v1m-6 1v-2h2v2h-2m-4 0v-2h2v2h-2m-4 0v-2h2v2H7m-3 0a1 1 0 0 1-1-1v-1h2v2H4M19 4H5a2 2 0 0 0-2 2v2h18V6c0-1.11-.89-2-2-2M5 14H3v2h2v-2m0-4H3v2h2v-2m16 0h-2v2h2v-2m0 4h-2v2h2v-2m-10 2v-2h2v2h-2m0-4v-2h2v2h-2"/></svg>')
}
.md-typeset .admonition.table-border,
.md-typeset details.table-border {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .table-border > .admonition-title,
.md-typeset .table-border > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .table-border > .admonition-title::before,
.md-typeset .table-border > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--table-border);
		mask-image: var(--md-admonition-icon--table-border);
}



:root {
	--md-admonition-icon--table-furniture: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 7h20v3h-2l1 9h-2.5l-.56-5H6.06l-.56 5H3l1-9H2V7m15.5 3h-11l-.21 2h11.42l-.21-2Z"/></svg>')
}
.md-typeset .admonition.table-furniture,
.md-typeset details.table-furniture {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .table-furniture > .admonition-title,
.md-typeset .table-furniture > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .table-furniture > .admonition-title::before,
.md-typeset .table-furniture > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--table-furniture);
		mask-image: var(--md-admonition-icon--table-furniture);
}



:root {
	--md-admonition-icon--table-large: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 3h16a2 2 0 0 1 2 2v15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2m0 4v3h4V7H4m6 0v3h4V7h-4m10 3V7h-4v3h4M4 12v3h4v-3H4m0 8h4v-3H4v3m6-8v3h4v-3h-4m0 8h4v-3h-4v3m10 0v-3h-4v3h4m0-8h-4v3h4v-3Z"/></svg>')
}
.md-typeset .admonition.table-large,
.md-typeset details.table-large {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .table-large > .admonition-title,
.md-typeset .table-large > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .table-large > .admonition-title::before,
.md-typeset .table-large > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--table-large);
		mask-image: var(--md-admonition-icon--table-large);
}



:root {
	--md-admonition-icon--table-of-contents: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 9h14V7H3v2m0 4h14v-2H3v2m0 4h14v-2H3v2m16 0h2v-2h-2v2m0-10v2h2V7h-2m0 6h2v-2h-2v2Z"/></svg>')
}
.md-typeset .admonition.table-of-contents,
.md-typeset details.table-of-contents {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .table-of-contents > .admonition-title,
.md-typeset .table-of-contents > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .table-of-contents > .admonition-title::before,
.md-typeset .table-of-contents > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--table-of-contents);
		mask-image: var(--md-admonition-icon--table-of-contents);
}



:root {
	--md-admonition-icon--taco: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 18H5a4 4 0 0 1-4-4 8 8 0 0 1 8-8c1.06 0 2.07.21 3 .58.93-.37 1.94-.58 3-.58a8 8 0 0 1 8 8 4 4 0 0 1-4 4M3 14a2 2 0 0 0 2 2 2 2 0 0 0 2-2c0-2.37 1.03-4.5 2.67-5.96L9 8a6 6 0 0 0-6 6m16 2a2 2 0 0 0 2-2 6 6 0 0 0-6-6 6 6 0 0 0-6 6c0 .73-.19 1.41-.54 2H19Z"/></svg>')
}
.md-typeset .admonition.taco,
.md-typeset details.taco {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .taco > .admonition-title,
.md-typeset .taco > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .taco > .admonition-title::before,
.md-typeset .taco > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--taco);
		mask-image: var(--md-admonition-icon--taco);
}



:root {
	--md-admonition-icon--tag-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.41 11.58-9-9A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.42l9 9A2 2 0 0 0 13 22a2 2 0 0 0 1.41-.59l7-7A2 2 0 0 0 22 13a2 2 0 0 0-.59-1.42M13 20l-9-9V4h7l9 9M6.5 5A1.5 1.5 0 1 1 5 6.5 1.5 1.5 0 0 1 6.5 5Z"/></svg>')
}
.md-typeset .admonition.tag-outline,
.md-typeset details.tag-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tag-outline > .admonition-title,
.md-typeset .tag-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tag-outline > .admonition-title::before,
.md-typeset .tag-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tag-outline);
		mask-image: var(--md-admonition-icon--tag-outline);
}



:root {
	--md-admonition-icon--tally-mark-5: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 10.73V19h-2v-7.64L15 12v7h-2v-6.38l-2 .64V19H9v-5.11l-2 .61V19H5v-3.85l-2.43.77L2 14l3-.95V5h2v7.42l2-.63V5h2v6.16l2-.63V5h2v4.9l2-.64V5h2v3.63L21 8l.57 1.92-2.57.81Z"/></svg>')
}
.md-typeset .admonition.tally-mark-5,
.md-typeset details.tally-mark-5 {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tally-mark-5 > .admonition-title,
.md-typeset .tally-mark-5 > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tally-mark-5 > .admonition-title::before,
.md-typeset .tally-mark-5 > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tally-mark-5);
		mask-image: var(--md-admonition-icon--tally-mark-5);
}



:root {
	--md-admonition-icon--target: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11 2v2.07A8.002 8.002 0 0 0 4.07 11H2v2h2.07A8.002 8.002 0 0 0 11 19.93V22h2v-2.07A8.002 8.002 0 0 0 19.93 13H22v-2h-2.07A8.002 8.002 0 0 0 13 4.07V2m-2 4.08V8h2V6.09c2.5.41 4.5 2.41 4.92 4.91H16v2h1.91c-.41 2.5-2.41 4.5-4.91 4.92V16h-2v1.91C8.5 17.5 6.5 15.5 6.08 13H8v-2H6.09C6.5 8.5 8.5 6.5 11 6.08M12 11a1 1 0 0 0-1 1 1 1 0 0 0 1 1 1 1 0 0 0 1-1 1 1 0 0 0-1-1Z"/></svg>')
}
.md-typeset .admonition.target,
.md-typeset details.target {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .target > .admonition-title,
.md-typeset .target > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .target > .admonition-title::before,
.md-typeset .target > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--target);
		mask-image: var(--md-admonition-icon--target);
}



:root {
	--md-admonition-icon--television: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 17H3V5h18m0-2H3a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5v2h8v-2h5a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2Z"/></svg>')
}
.md-typeset .admonition.television,
.md-typeset details.television {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .television > .admonition-title,
.md-typeset .television > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .television > .admonition-title::before,
.md-typeset .television > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--television);
		mask-image: var(--md-admonition-icon--television);
}



:root {
	--md-admonition-icon--text-long: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h16v2H4V5m0 4h16v2H4V9m0 4h16v2H4v-2m0 4h10v2H4v-2Z"/></svg>')
}
.md-typeset .admonition.text-long,
.md-typeset details.text-long {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .text-long > .admonition-title,
.md-typeset .text-long > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .text-long > .admonition-title::before,
.md-typeset .text-long > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--text-long);
		mask-image: var(--md-admonition-icon--text-long);
}



:root {
	--md-admonition-icon--text-short: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 9h16v2H4V9m0 4h10v2H4v-2Z"/></svg>')
}
.md-typeset .admonition.text-short,
.md-typeset details.text-short {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .text-short > .admonition-title,
.md-typeset .text-short > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .text-short > .admonition-title::before,
.md-typeset .text-short > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--text-short);
		mask-image: var(--md-admonition-icon--text-short);
}



:root {
	--md-admonition-icon--text: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 6v2H3V6h18M3 18h9v-2H3v2m0-5h18v-2H3v2Z"/></svg>')
}
.md-typeset .admonition.text,
.md-typeset details.text {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .text > .admonition-title,
.md-typeset .text > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .text > .admonition-title::before,
.md-typeset .text > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--text);
		mask-image: var(--md-admonition-icon--text);
}



:root {
	--md-admonition-icon--thermometer-low: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 13V5a3 3 0 0 0-6 0v8a5 5 0 1 0 6 0m-3-9a1 1 0 0 1 1 1v7h-2V5a1 1 0 0 1 1-1Z"/></svg>')
}
.md-typeset .admonition.thermometer-low,
.md-typeset details.thermometer-low {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .thermometer-low > .admonition-title,
.md-typeset .thermometer-low > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .thermometer-low > .admonition-title::before,
.md-typeset .thermometer-low > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--thermometer-low);
		mask-image: var(--md-admonition-icon--thermometer-low);
}



:root {
	--md-admonition-icon--tie: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m6 2 4 4-3 11 5 5 5-5-3-11 4-4Z"/></svg>')
}
.md-typeset .admonition.tie,
.md-typeset details.tie {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tie > .admonition-title,
.md-typeset .tie > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tie > .admonition-title::before,
.md-typeset .tie > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tie);
		mask-image: var(--md-admonition-icon--tie);
}



:root {
	--md-admonition-icon--timer-sand: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 2h12v6l-4 4 4 4v6H6v-6l4-4-4-4V2m10 14.5-4-4-4 4V20h8v-3.5m-4-5 4-4V4H8v3.5l4 4M10 6h4v.75l-2 2-2-2V6Z"/></svg>')
}
.md-typeset .admonition.timer-sand,
.md-typeset details.timer-sand {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .timer-sand > .admonition-title,
.md-typeset .timer-sand > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .timer-sand > .admonition-title::before,
.md-typeset .timer-sand > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--timer-sand);
		mask-image: var(--md-admonition-icon--timer-sand);
}



:root {
	--md-admonition-icon--tire: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.66 9.64-.36-.94 1.86-.7c-.92-2.12-2.56-3.82-4.62-4.86l-.8 1.78-.92-.42.8-1.8C14.5 2.26 13.28 2 12 2c-1.06 0-2.08.22-3.04.5l.68 1.84-.94.36L8 2.84c-2.12.92-3.82 2.56-4.86 4.62l1.78.8-.42.92-1.8-.8C2.26 9.5 2 10.72 2 12c0 1.06.22 2.08.5 3.04l1.84-.68.36.94-1.86.7c.92 2.12 2.56 3.82 4.62 4.86l.8-1.78.92.42-.8 1.8c1.12.44 2.34.7 3.62.7 1.06 0 2.08-.22 3.04-.5l-.68-1.84.94-.36.7 1.86c2.12-.92 3.82-2.56 4.86-4.62l-1.78-.8.42-.92 1.8.8c.44-1.12.7-2.34.7-3.62 0-1.06-.22-2.08-.5-3.04l-1.84.68m-5.36 7.9c-3.06 1.26-6.58-.18-7.84-3.24s.18-6.58 3.24-7.84 6.58.18 7.84 3.24a5.986 5.986 0 0 1-3.24 7.84Z"/></svg>')
}
.md-typeset .admonition.tire,
.md-typeset details.tire {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tire > .admonition-title,
.md-typeset .tire > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tire > .admonition-title::before,
.md-typeset .tire > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tire);
		mask-image: var(--md-admonition-icon--tire);
}



:root {
	--md-admonition-icon--toggle-switch-off-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4zM7 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"/></svg>')
}
.md-typeset .admonition.toggle-switch-off-outline,
.md-typeset details.toggle-switch-off-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toggle-switch-off-outline > .admonition-title,
.md-typeset .toggle-switch-off-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toggle-switch-off-outline > .admonition-title::before,
.md-typeset .toggle-switch-off-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--toggle-switch-off-outline);
		mask-image: var(--md-admonition-icon--toggle-switch-off-outline);
}



:root {
	--md-admonition-icon--toggle-switch-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17 6H7c-3.31 0-6 2.69-6 6s2.69 6 6 6h10c3.31 0 6-2.69 6-6s-2.69-6-6-6m0 10H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h10c2.21 0 4 1.79 4 4s-1.79 4-4 4m0-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3Z"/></svg>')
}
.md-typeset .admonition.toggle-switch-outline,
.md-typeset details.toggle-switch-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toggle-switch-outline > .admonition-title,
.md-typeset .toggle-switch-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toggle-switch-outline > .admonition-title::before,
.md-typeset .toggle-switch-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--toggle-switch-outline);
		mask-image: var(--md-admonition-icon--toggle-switch-outline);
}



:root {
	--md-admonition-icon--toilet: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 22h8v-2.5c2.41-1.63 4-4.38 4-7.5V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v8H3c0 3.09 2 6 6 7.5V22m-3.71-8h13.42A7.017 7.017 0 0 1 15 18.33V20h-4v-1.67C9 18 5.86 15.91 5.29 14M15 4h4v8h-4V4m1 1v3h2V5h-2Z"/></svg>')
}
.md-typeset .admonition.toilet,
.md-typeset details.toilet {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toilet > .admonition-title,
.md-typeset .toilet > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toilet > .admonition-title::before,
.md-typeset .toilet > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--toilet);
		mask-image: var(--md-admonition-icon--toilet);
}



:root {
	--md-admonition-icon--toolbox-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 8h-3V6c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H4c-1.1 0-2 .9-2 2v10h20V10c0-1.1-.9-2-2-2M9 6h6v2H9V6m11 12H4v-3h2v1h2v-1h8v1h2v-1h2v3m-2-5v-1h-2v1H8v-1H6v1H4v-3h16v3h-2Z"/></svg>')
}
.md-typeset .admonition.toolbox-outline,
.md-typeset details.toolbox-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toolbox-outline > .admonition-title,
.md-typeset .toolbox-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toolbox-outline > .admonition-title::before,
.md-typeset .toolbox-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--toolbox-outline);
		mask-image: var(--md-admonition-icon--toolbox-outline);
}



:root {
	--md-admonition-icon--tools: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.71 20.29-1.42 1.42a1 1 0 0 1-1.41 0L7 9.85A3.81 3.81 0 0 1 6 10a4 4 0 0 1-3.78-5.3l2.54 2.54.53-.53 1.42-1.42.53-.53L4.7 2.22A4 4 0 0 1 10 6a3.81 3.81 0 0 1-.15 1l11.86 11.88a1 1 0 0 1 0 1.41M2.29 18.88a1 1 0 0 0 0 1.41l1.42 1.42a1 1 0 0 0 1.41 0l5.47-5.46-2.83-2.83M20 2l-4 2v2l-2.17 2.17 2 2L18 8h2l2-4Z"/></svg>')
}
.md-typeset .admonition.tools,
.md-typeset details.tools {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tools > .admonition-title,
.md-typeset .tools > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tools > .admonition-title::before,
.md-typeset .tools > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tools);
		mask-image: var(--md-admonition-icon--tools);
}



:root {
	--md-admonition-icon--tooltip-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-4l-4 4-4-4H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2m0 2v12h4.83L12 19.17 15.17 16H20V4H4Z"/></svg>')
}
.md-typeset .admonition.tooltip-outline,
.md-typeset details.tooltip-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tooltip-outline > .admonition-title,
.md-typeset .tooltip-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tooltip-outline > .admonition-title::before,
.md-typeset .tooltip-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tooltip-outline);
		mask-image: var(--md-admonition-icon--tooltip-outline);
}



:root {
	--md-admonition-icon--tooth-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2C4 2 2 5 2 8c0 2.11 1 5 2 6s2 8 4 8c4.54 0 2-7 4-7s-.54 7 4 7c2 0 3-7 4-8s2-3.89 2-6c0-3-2-6-5-6s-3 1-5 1-2-1-5-1m0 2c2 0 3 1 5 1s3-1 5-1c1.67 0 3 2 3 4 0 1.75-.86 4.11-1.81 5.06-.86.86-2.13 6.88-2.69 6.88-.21 0-.5-1.06-.5-2.35 0-2.04-.57-4.59-3-4.59s-3 2.55-3 4.59c0 1.29-.29 2.35-.5 2.35-.56 0-1.83-6.02-2.69-6.88C4.86 12.11 4 9.75 4 8c0-2 1.33-4 3-4Z"/></svg>')
}
.md-typeset .admonition.tooth-outline,
.md-typeset details.tooth-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tooth-outline > .admonition-title,
.md-typeset .tooth-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tooth-outline > .admonition-title::before,
.md-typeset .tooth-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tooth-outline);
		mask-image: var(--md-admonition-icon--tooth-outline);
}



:root {
	--md-admonition-icon--toothbrush: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12.91 6.43 2.12 2.12 1.06-1.05-1.06-1.07 2.83-2.83 1.06 1.06L20 3.6l-2.14-2.1M3 20.57 4.43 22 14.5 11.9l2.13-.71 4.77-4.76c.78-.78.78-2.05 0-2.83l-5.85 5.84-2.12.71Z"/></svg>')
}
.md-typeset .admonition.toothbrush,
.md-typeset details.toothbrush {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .toothbrush > .admonition-title,
.md-typeset .toothbrush > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .toothbrush > .admonition-title::before,
.md-typeset .toothbrush > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--toothbrush);
		mask-image: var(--md-admonition-icon--toothbrush);
}



:root {
	--md-admonition-icon--torch: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.6 9.6c.4.6.9 1.1 1.6 1.4h4c.3-.1.5-.3.7-.5 1-1 1.4-2.5.9-3.8l-.1-.2c-.1-.3-.3-.5-.5-.7-.1-.2-.3-.3-.4-.5-.4-.3-.8-.6-1.2-1-.9-.9-1-2.3-.5-3.3-.5.1-1 .4-1.4.8C10.2 3 9.6 5.1 10.3 7v.2c0 .1-.1.2-.2.3-.1.1-.3 0-.4-.1l-.1-.1c-.6-.8-.7-2-.3-3-.9.8-1.4 2.1-1.3 3.4 0 .3.1.6.2.9 0 .3.2.7.4 1m3.7-1.5c.1-.5-.1-.9-.2-1.3s-.1-.8.1-1.2l.3.6c.4.6 1.1.8 1.3 1.6v.3c0 .5-.2 1-.5 1.3-.2.1-.4.3-.6.3-.6.2-1.3-.1-1.7-.5.8 0 1.2-.6 1.3-1.1M15 12v2h-1l-1 8h-2l-1-8H9v-2h6Z"/></svg>')
}
.md-typeset .admonition.torch,
.md-typeset details.torch {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .torch > .admonition-title,
.md-typeset .torch > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .torch > .admonition-title::before,
.md-typeset .torch > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--torch);
		mask-image: var(--md-admonition-icon--torch);
}



:root {
	--md-admonition-icon--tortoise: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.31 5.6c-1.22-.04-2.43.9-2.81 2.4-.5 2-.5 2-1.5 3-2 2-5 3-11 4-1 .16-1.5.5-2 1 2 0 4 0 2.5 1.5L3 19h3l2-2c2 1 3.33 1 5.33 0l.67 2h3l-1-3s1-4 2-5 1 0 2 0 2-1 2-2.5C22 8 22 7 20.5 6c-.35-.24-.76-.38-1.19-.4M9 6a6 6 0 0 0-6 6c0 .6.13 1.08.23 1.6 5.92-.98 9.06-2.01 10.7-3.66l.5-.5A6.007 6.007 0 0 0 9 6Z"/></svg>')
}
.md-typeset .admonition.tortoise,
.md-typeset details.tortoise {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tortoise > .admonition-title,
.md-typeset .tortoise > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tortoise > .admonition-title::before,
.md-typeset .tortoise > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tortoise);
		mask-image: var(--md-admonition-icon--tortoise);
}



:root {
	--md-admonition-icon--tractor-variant: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m13.3 2.79-3.5 3.5.7.71 1.4-1.39 1.1 1.1V9c0 1.11-.89 2-2 2h-.54A6 6 0 0 1 12 15a6 6 0 0 1-.09 1h3.12a4.5 4.5 0 0 1 4.47-4 4.5 4.5 0 0 1 2.5.76V8c0-1.11-.89-2-2-2h-6.29l-1.1-1.1L14 3.5l-.7-.71M4 7c-.55 0-1 .45-1 1s.45 1 1 1h5a2 2 0 0 0-2-2H4m2 3a5 5 0 0 0-1.56.25l.36.93-.47.18-.33-.93a5 5 0 0 0-2.46 2.31l.91.41-.21.45-.9-.4A5 5 0 0 0 1 15a5 5 0 0 0 .25 1.56l.93-.36.18.47-.93.33a5 5 0 0 0 2.31 2.46l.4-.91.46.21-.4.9A5 5 0 0 0 6 20a5 5 0 0 0 1.56-.25l-.36-.93.47-.18.33.93a5 5 0 0 0 2.46-2.31l-.91-.4.21-.46.9.4A5 5 0 0 0 11 15a5 5 0 0 0-.25-1.56l-.93.36-.18-.47.93-.33a5 5 0 0 0-2.31-2.46l-.4.91-.46-.21.4-.9A5 5 0 0 0 6 10m0 2a3 3 0 0 1 3 3 3 3 0 0 1-3 3 3 3 0 0 1-3-3 3 3 0 0 1 3-3m13.5 1a3.5 3.5 0 0 0-3.5 3.5 3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0-3.5-3.5m0 2a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5Z"/></svg>')
}
.md-typeset .admonition.tractor-variant,
.md-typeset details.tractor-variant {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tractor-variant > .admonition-title,
.md-typeset .tractor-variant > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tractor-variant > .admonition-title::before,
.md-typeset .tractor-variant > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tractor-variant);
		mask-image: var(--md-admonition-icon--tractor-variant);
}



:root {
	--md-admonition-icon--traffic-light-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V4c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v1H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V20c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86m-5 9H9V5h6v14m-3-1c.83 0 1.5-.67 1.5-1.5S12.83 15 12 15s-1.5.67-1.5 1.5.67 1.5 1.5 1.5m0-4.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5M12 9c.83 0 1.5-.67 1.5-1.5S12.83 6 12 6s-1.5.67-1.5 1.5S11.17 9 12 9Z"/></svg>')
}
.md-typeset .admonition.traffic-light-outline,
.md-typeset details.traffic-light-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .traffic-light-outline > .admonition-title,
.md-typeset .traffic-light-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .traffic-light-outline > .admonition-title::before,
.md-typeset .traffic-light-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--traffic-light-outline);
		mask-image: var(--md-admonition-icon--traffic-light-outline);
}



:root {
	--md-admonition-icon--transfer-down: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 3v2H8V3h8m0 4v2H8V7h8m0 4v2H8v-2h8M5 15h14l-7 7-7-7Z"/></svg>')
}
.md-typeset .admonition.transfer-down,
.md-typeset details.transfer-down {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .transfer-down > .admonition-title,
.md-typeset .transfer-down > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .transfer-down > .admonition-title::before,
.md-typeset .transfer-down > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--transfer-down);
		mask-image: var(--md-admonition-icon--transfer-down);
}



:root {
	--md-admonition-icon--transfer-left: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 16h-2V8h2v8m-4 0h-2V8h2v8m-4 0h-2V8h2v8M9 5v14l-7-7 7-7Z"/></svg>')
}
.md-typeset .admonition.transfer-left,
.md-typeset details.transfer-left {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .transfer-left > .admonition-title,
.md-typeset .transfer-left > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .transfer-left > .admonition-title::before,
.md-typeset .transfer-left > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--transfer-left);
		mask-image: var(--md-admonition-icon--transfer-left);
}



:root {
	--md-admonition-icon--transfer-right: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 8h2v8H3V8m4 0h2v8H7V8m4 0h2v8h-2V8m4 11.25V4.75L22.25 12 15 19.25Z"/></svg>')
}
.md-typeset .admonition.transfer-right,
.md-typeset details.transfer-right {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .transfer-right > .admonition-title,
.md-typeset .transfer-right > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .transfer-right > .admonition-title::before,
.md-typeset .transfer-right > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--transfer-right);
		mask-image: var(--md-admonition-icon--transfer-right);
}



:root {
	--md-admonition-icon--transfer-up: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 21v-2h8v2H8m0-4v-2h8v2H8m0-4v-2h8v2H8m11-4H5l7-7 7 7Z"/></svg>')
}
.md-typeset .admonition.transfer-up,
.md-typeset details.transfer-up {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .transfer-up > .admonition-title,
.md-typeset .transfer-up > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .transfer-up > .admonition-title::before,
.md-typeset .transfer-up > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--transfer-up);
		mask-image: var(--md-admonition-icon--transfer-up);
}



:root {
	--md-admonition-icon--trash-can-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 3v1H4v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3H9M7 6h10v13H7V6m2 2v9h2V8H9m4 0v9h2V8h-2Z"/></svg>')
}
.md-typeset .admonition.trash-can-outline,
.md-typeset details.trash-can-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .trash-can-outline > .admonition-title,
.md-typeset .trash-can-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .trash-can-outline > .admonition-title::before,
.md-typeset .trash-can-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--trash-can-outline);
		mask-image: var(--md-admonition-icon--trash-can-outline);
}



:root {
	--md-admonition-icon--tree-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 3a4.481 4.481 0 0 0-4.13 6.27C5.5 10.12 5 11.28 5 12.5 5 15 7 17 9.5 17c.5 0 1-.11 1.5-.28V21h2v-5.23c.5.14 1 .23 1.5.23a5.5 5.5 0 0 0 5.5-5.5A5.5 5.5 0 0 0 14.5 5h-.26C13.41 3.76 12 3 10.5 3m0 2c1.32 0 2.41 1.03 2.5 2.35.46-.23 1-.35 1.5-.35a3.5 3.5 0 0 1 3.5 3.5 3.5 3.5 0 0 1-3.5 3.5c-.96 0-1.87-.39-2.54-1.09A2.491 2.491 0 0 1 9.5 15 2.5 2.5 0 0 1 7 12.5c0-1.38.8-1.96 2-2.71-.8-1.03-1-1.63-1-2.29A2.5 2.5 0 0 1 10.5 5Z"/></svg>')
}
.md-typeset .admonition.tree-outline,
.md-typeset details.tree-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tree-outline > .admonition-title,
.md-typeset .tree-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tree-outline > .admonition-title::before,
.md-typeset .tree-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tree-outline);
		mask-image: var(--md-admonition-icon--tree-outline);
}



:root {
	--md-admonition-icon--triangle-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 1 21h22M12 6l7.53 13H4.47"/></svg>')
}
.md-typeset .admonition.triangle-outline,
.md-typeset details.triangle-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .triangle-outline > .admonition-title,
.md-typeset .triangle-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .triangle-outline > .admonition-title::before,
.md-typeset .triangle-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--triangle-outline);
		mask-image: var(--md-admonition-icon--triangle-outline);
}



:root {
	--md-admonition-icon--trumpet: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 6c-1 5-7 5-7 5H4c-1 0-2-1-2-1H1v4h1s1-1 2-1h.3c-.2.3-.3.6-.3 1v2c0 1.1.9 2 2 2h1v1h2v-1h1v1h2v-1h1v1h2v-1h1c1.1 0 2-.9 2-2v-2c0-.1 0-.3-.1-.4 1.7.6 3.5 1.8 4.1 4.4h1V6h-1M6 16.5c-.3 0-.5-.2-.5-.5v-2c0-.3.2-.5.5-.5h1v3H6m3 0v-3h1v3H9m3 0v-3h1v3h-1m4.5-.5c0 .3-.2.5-.5.5h-1v-3h1c.3 0 .5.2.5.5v2M9 10H7V9h2v1m3 0h-2V9h2v1m3 0h-2V9h2v1Z"/></svg>')
}
.md-typeset .admonition.trumpet,
.md-typeset details.trumpet {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .trumpet > .admonition-title,
.md-typeset .trumpet > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .trumpet > .admonition-title::before,
.md-typeset .trumpet > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--trumpet);
		mask-image: var(--md-admonition-icon--trumpet);
}



:root {
	--md-admonition-icon--tsunami: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.67 17.63c-3.8 2.8-6.12.4-6.67 0-.66.49-2.92 2.76-6.67 0C3.43 19.03 2.65 19 2 19v2c1.16 0 2.3-.32 3.33-.93a6.535 6.535 0 0 0 6.67 0 6.535 6.535 0 0 0 6.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5 0-3.33-1.37m.66-5.63H22v-2h-2.67C17.5 10 16 8.5 16 6.67c0-1.02.38-1.74 1.09-3.34-1.37-.21-2-.33-3.09-.33C7.36 3 2.15 8.03 2 14.5v2c1.16 0 2.3-.32 3.33-.93a6.535 6.535 0 0 0 6.67 0 6.535 6.535 0 0 0 6.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5 0-3.33-1.37-3.8 2.8-6.12.4-6.67 0-.9.67-.54.41-.91.63-.7-.94-1.09-2.06-1.09-3.26 0-2.58 1.77-4.74 4.21-5.33-.13.51-.21 1.02-.21 1.5C14 9.61 16.39 12 19.33 12Z"/></svg>')
}
.md-typeset .admonition.tsunami,
.md-typeset details.tsunami {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tsunami > .admonition-title,
.md-typeset .tsunami > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tsunami > .admonition-title::before,
.md-typeset .tsunami > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tsunami);
		mask-image: var(--md-admonition-icon--tsunami);
}



:root {
	--md-admonition-icon--tunnel-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12v10h20V12c0-5.5-4.5-10-10-10m3.47 5.11A5.95 5.95 0 0 0 13 6.09V4.07c1.46.18 2.79.76 3.9 1.62l-1.43 1.42m-6.94 0L7.1 5.69A7.941 7.941 0 0 1 11 4.07v2.02c-.91.15-1.75.51-2.47 1.02M5.69 7.1l1.42 1.43A5.95 5.95 0 0 0 6.09 11H4.07c.18-1.46.76-2.79 1.62-3.9M6 13v2.5H4V13h2m-2 7v-2.5h2V20H4m12 0H8v-8c0-2.21 1.79-4 4-4s4 1.79 4 4v8m.89-11.47 1.42-1.43a7.941 7.941 0 0 1 1.62 3.9h-2.02a5.95 5.95 0 0 0-1.02-2.47M18 13h2v2.5h-2V13m0 7v-2.5h2V20h-2Z"/></svg>')
}
.md-typeset .admonition.tunnel-outline,
.md-typeset details.tunnel-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .tunnel-outline > .admonition-title,
.md-typeset .tunnel-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .tunnel-outline > .admonition-title::before,
.md-typeset .tunnel-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--tunnel-outline);
		mask-image: var(--md-admonition-icon--tunnel-outline);
}



:root {
	--md-admonition-icon--turkey: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.5 19.44c-.75.36-1.6.56-2.5.56-3.31 0-6-2.69-6-6V9c0-3.31 2.69-6 6-6l2.5 4.58c-2.4 1.23-4 3.42-4 5.92s1.61 4.7 4 5.94m5.5-.5V20h1c.55 0 1 .45 1 1s-.45 1-1 1h-3c-.55 0-1-.45-1-1s.45-1 1-1v-1.06c-3.39-.38-6-2.67-6-5.44C8 10.46 11.13 8 15 8h.56C14.84 6.63 14 5.23 14 4c0-1.1.9-2 2-2 2.21 0 4 1.79 4 4h-2s4 3 4 7.5c0 2.77-2.61 5.06-6 5.44M16 4c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1m1 8a2 2 0 0 0-2-2c-2.21 0-4 1.79-4 4h4c1.11 0 2-.89 2-2Z"/></svg>')
}
.md-typeset .admonition.turkey,
.md-typeset details.turkey {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .turkey > .admonition-title,
.md-typeset .turkey > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .turkey > .admonition-title::before,
.md-typeset .turkey > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--turkey);
		mask-image: var(--md-admonition-icon--turkey);
}



:root {
	--md-admonition-icon--turtle: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.47 5.95c.48-.28 1-.51 1.53-.67V4c0-1.1.87-2 1.97-2.03C13.13 2 14 2.9 14 4v1.28c.53.17 1.05.39 1.53.67l-1.6 2.12h-3.86l-1.6-2.12M19 12c0 .5-.05.95-.14 1.4l-2.53-.78-1.19-3.66 1.6-2.11c.43.4.81.85 1.14 1.35.79-.07 1.55.05 2.23.39 1.03.53 1.73 1.54 1.89 2.69l-3 .36V12M5 12v-.35l-3-.37c.16-1.15.86-2.16 1.89-2.69a3.54 3.54 0 0 1 2.19-.33c.33-.51.71-.98 1.16-1.39l1.62 2.08-1.19 3.67-2.53.78C5.05 12.95 5 12.5 5 12m5.24-2.43h3.52l1.09 3.36L12 15l-2.85-2.07 1.09-3.36m-2.11 4.48 3.12 2.26v2.65c-.57-.06-1.12-.19-1.63-.38l-1.23 2.76a3.487 3.487 0 0 1-2.02-2.58c-.14-.76-.02-1.52.32-2.2-.45-.52-.82-1.1-1.1-1.74l2.54-.77m7.74 0 2.54.77c-.28.64-.65 1.22-1.1 1.74.34.68.46 1.44.33 2.2a3.522 3.522 0 0 1-2.03 2.58l-1.22-2.76c-.53.19-1.06.36-1.64.42v-2.69l3.12-2.26Z"/></svg>')
}
.md-typeset .admonition.turtle,
.md-typeset details.turtle {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .turtle > .admonition-title,
.md-typeset .turtle > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .turtle > .admonition-title::before,
.md-typeset .turtle > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--turtle);
		mask-image: var(--md-admonition-icon--turtle);
}



:root {
	--md-admonition-icon--umbrella-beach-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 19.57 19.57 21l-6.44-6.44 1.43-1.43L21 19.57M13.12 3C10.54 3 7.96 4 6 5.95l-.03.01a10.086 10.086 0 0 0 0 14.31l14.3-14.31A10.128 10.128 0 0 0 13.12 3M6.14 17.27a8.063 8.063 0 0 1-.68-6.82c.19 1.91.89 3.79 2.07 5.44l-1.39 1.38M9 14.43c-1.37-2.05-1.88-4.5-1.4-6.83.58-.1 1.16-.18 1.75-.18 1.8 0 3.55.55 5.08 1.58L9 14.43m1.45-8.97a8.063 8.063 0 0 1 6.82.68l-1.39 1.39a11.25 11.25 0 0 0-5.43-2.07Z"/></svg>')
}
.md-typeset .admonition.umbrella-beach-outline,
.md-typeset details.umbrella-beach-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .umbrella-beach-outline > .admonition-title,
.md-typeset .umbrella-beach-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .umbrella-beach-outline > .admonition-title::before,
.md-typeset .umbrella-beach-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--umbrella-beach-outline);
		mask-image: var(--md-admonition-icon--umbrella-beach-outline);
}



:root {
	--md-admonition-icon--umbrella-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4C8.9 4 6.18 6.03 5.3 9h13.4A7 7 0 0 0 12 4m0-2a9 9 0 0 1 9 9h-8v8a3 3 0 0 1-3 3 3 3 0 0 1-3-3v-1h2v1a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-8H3a9 9 0 0 1 9-9Z"/></svg>')
}
.md-typeset .admonition.umbrella-outline,
.md-typeset details.umbrella-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .umbrella-outline > .admonition-title,
.md-typeset .umbrella-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .umbrella-outline > .admonition-title::before,
.md-typeset .umbrella-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--umbrella-outline);
		mask-image: var(--md-admonition-icon--umbrella-outline);
}



:root {
	--md-admonition-icon--vanish: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 13v-2h5v2h-5m-1.17-5.24 2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41M11 16h2v5h-2v-5m0-13h2v5h-2V3M4.93 17.66l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41m0-11.32 1.41-1.41 2.83 2.83-1.41 1.41-2.83-2.83M8 13H3v-2h5v2m11.07 4.66-1.41 1.41-2.83-2.83 1.41-1.41 2.83 2.83Z"/></svg>')
}
.md-typeset .admonition.vanish,
.md-typeset details.vanish {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .vanish > .admonition-title,
.md-typeset .vanish > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .vanish > .admonition-title::before,
.md-typeset .vanish > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--vanish);
		mask-image: var(--md-admonition-icon--vanish);
}



:root {
	--md-admonition-icon--verified-24: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.03 9.78a.75.75 0 0 0-1.06-1.06l-5.47 5.47-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l6-6Z"/><path d="m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 0 1 3.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 0 1 0 4.272l-1.01 1.375a2.106 2.106 0 0 0-.384.929l-.259 1.687a3.61 3.61 0 0 1-3.021 3.02l-1.686.259a2.106 2.106 0 0 0-.929.384l-1.375 1.01a3.61 3.61 0 0 1-4.272 0l-1.375-1.01a2.106 2.106 0 0 0-.929-.384l-1.687-.259a3.61 3.61 0 0 1-3.02-3.021l-.259-1.686a2.117 2.117 0 0 0-.384-.929L1.2 14.136a3.61 3.61 0 0 1 0-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 0 1 3.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 0 1 4.272 0Zm-3.384 1.209-1.375 1.01a3.614 3.614 0 0 1-1.59.658l-1.686.258a2.111 2.111 0 0 0-1.766 1.766l-.258 1.686a3.61 3.61 0 0 1-.658 1.589l-1.01 1.376a2.11 2.11 0 0 0 0 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.61 3.61 0 0 1 1.589.658l1.376 1.01a2.11 2.11 0 0 0 2.496 0l1.375-1.01a3.613 3.613 0 0 1 1.59-.657l1.686-.26a2.11 2.11 0 0 0 1.766-1.765l.258-1.686a3.61 3.61 0 0 1 .658-1.589l1.01-1.376a2.11 2.11 0 0 0 0-2.496l-1.01-1.375a3.613 3.613 0 0 1-.657-1.59l-.26-1.686a2.11 2.11 0 0 0-1.765-1.766l-1.686-.258a3.61 3.61 0 0 1-1.589-.658l-1.376-1.01a2.11 2.11 0 0 0-2.496 0Z"/></svg>')
}
.md-typeset .admonition.verified-24,
.md-typeset details.verified-24 {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .verified-24 > .admonition-title,
.md-typeset .verified-24 > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .verified-24 > .admonition-title::before,
.md-typeset .verified-24 > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--verified-24);
		mask-image: var(--md-admonition-icon--verified-24);
}



:root {
	--md-admonition-icon--view-grid-compact: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 5h2v2H2V5m3 0h2v2H5V5m3 0h2v2H8V5m3 0h2v2h-2V5m3 0h2v2h-2V5m3 0h2v2h-2V5m3 0h2v2h-2V5M2 8h2v2H2V8m3 0h2v2H5V8m3 0h2v2H8V8m3 0h2v2h-2V8m3 0h2v2h-2V8m3 0h2v2h-2V8m3 0h2v2h-2V8M2 11h2v2H2v-2m3 0h2v2H5v-2m3 0h2v2H8v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2M2 14h2v2H2v-2m3 0h2v2H5v-2m3 0h2v2H8v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2M2 17h2v2H2v-2m3 0h2v2H5v-2m3 0h2v2H8v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2m3 0h2v2h-2v-2"/></svg>')
}
.md-typeset .admonition.view-grid-compact,
.md-typeset details.view-grid-compact {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .view-grid-compact > .admonition-title,
.md-typeset .view-grid-compact > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .view-grid-compact > .admonition-title::before,
.md-typeset .view-grid-compact > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--view-grid-compact);
		mask-image: var(--md-admonition-icon--view-grid-compact);
}



:root {
	--md-admonition-icon--virus-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .5a1.746 1.746 0 0 0-1 3.18v1.4c-.9.13-1.74.42-2.5.86L7.39 4.35c.19-.52.14-1.12-.2-1.6C6.84 2.26 6.3 2 5.75 2c-.35 0-.7.1-1 .32-.79.55-.99 1.64-.43 2.43.34.49.88.75 1.43.75l1.18 1.68c-.43.43-.77.91-1.06 1.44-.2-.08-.41-.12-.62-.12-.45 0-.9.17-1.25.5-.67.7-.67 1.8 0 2.5.29.27.64.42 1 .5 0 .54.07 1.06.18 1.56l-1.31.35c-.31-.26-.71-.41-1.12-.41-.15 0-.31 0-.46.06a1.752 1.752 0 0 0-1.23 2.15C1.27 16.5 2 17 2.75 17c.15 0 .3 0 .46-.06.57-.16 1-.58 1.18-1.1l1.51-.41c.45.79 1.05 1.49 1.75 2.07l-1.1 2c-.55.08-1.05.39-1.34.92a1.749 1.749 0 1 0 3.08 1.66c.28-.52.27-1.12.02-1.61l1.07-1.97c.81.32 1.69.5 2.62.5h.18c-.13.26-.18.56-.18.88.08.92.84 1.62 1.75 1.62h.13c.97-.08 1.69-.92 1.62-1.88-.04-.5-.29-.94-.65-1.23.47-.21.92-.48 1.34-.79l2.34 2.34c-.1.56.06 1.13.47 1.56.35.33.8.5 1.25.5s.9-.17 1.25-.5c.67-.7.67-1.8 0-2.5-.35-.33-.8-.5-1.25-.5-.1 0-.2 0-.31.03l-2.34-2.34c.49-.65.87-1.39 1.11-2.19h1.11A1.746 1.746 0 0 0 23 13a1.746 1.746 0 0 0-3.18-1H19c0-1.57-.5-3-1.4-4.19l1.34-1.34c.11.03.21.03.31.03.45 0 .9-.17 1.25-.5.67-.69.67-1.8 0-2.5-.35-.33-.8-.5-1.25-.5s-.9.17-1.25.5c-.41.43-.57 1-.47 1.56L16.19 6.4c-.92-.69-2-1.15-3.19-1.32v-1.4A1.746 1.746 0 0 0 12 .5M12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5m-1.5-8C9.67 9 9 9.67 9 10.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5S11.33 9 10.5 9m3.5 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1Z"/></svg>')
}
.md-typeset .admonition.virus-outline,
.md-typeset details.virus-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .virus-outline > .admonition-title,
.md-typeset .virus-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .virus-outline > .admonition-title::before,
.md-typeset .virus-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--virus-outline);
		mask-image: var(--md-admonition-icon--virus-outline);
}



:root {
	--md-admonition-icon--wall: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 16h9v5H3v-5m-1-6h6v5H2v-5m7 0h6v5H9v-5m7 0h6v5h-6v-5m-3 6h8v5h-8v-5M3 4h8v5H3V4m9 0h9v5h-9V4Z"/></svg>')
}
.md-typeset .admonition.wall,
.md-typeset details.wall {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .wall > .admonition-title,
.md-typeset .wall > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .wall > .admonition-title::before,
.md-typeset .wall > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--wall);
		mask-image: var(--md-admonition-icon--wall);
}



:root {
	--md-admonition-icon--water-opacity: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 14v-2h1.61c.24.71.39 1.39.39 2h-2m-.42-6c-.46-.71-.93-1.39-1.38-2H14v2h1.58m.42 4v-2h-2v2h2m0-3.32V10h.74c-.24-.44-.48-.89-.74-1.32M12 16v-2h2v-2h-2v-2h2V8h-2V6h2v-.27c-1.1-1.47-2-2.48-2-2.48S6 10 6 14c0 3.31 2.69 6 6 6v-2h2v-2h-2m2 3.65c.75-.26 1.42-.65 2-1.19V18h-2v1.65M14 16h2v-2h-2v2m2 2h.46c.54-.58.93-1.25 1.19-2H16v2Z"/></svg>')
}
.md-typeset .admonition.water-opacity,
.md-typeset details.water-opacity {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .water-opacity > .admonition-title,
.md-typeset .water-opacity > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .water-opacity > .admonition-title::before,
.md-typeset .water-opacity > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--water-opacity);
		mask-image: var(--md-admonition-icon--water-opacity);
}



:root {
	--md-admonition-icon--water-pump: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 14.5s2 2.17 2 3.5a2 2 0 0 1-2 2 2 2 0 0 1-2-2c0-1.33 2-3.5 2-3.5M5 18V9a2 2 0 0 1-2-2 2 2 0 0 1 2-2V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1h8a2 2 0 0 1 2 2v4a1 1 0 0 1 1 1 1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1 1 1 0 0 1 1-1V9h-6v9h1a2 2 0 0 1 2 2v2H2v-2a2 2 0 0 1 2-2h1Z"/></svg>')
}
.md-typeset .admonition.water-pump,
.md-typeset details.water-pump {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .water-pump > .admonition-title,
.md-typeset .water-pump > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .water-pump > .admonition-title::before,
.md-typeset .water-pump > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--water-pump);
		mask-image: var(--md-admonition-icon--water-pump);
}



:root {
	--md-admonition-icon--waveform: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22 12-2 1-1 1-1-1-1 3-1-3-1 8-1-8-1 2-1-2-1 4-1-4-1 9-1-9-1 6-1-6-1 1-1-1-2-1 2-1 1-1 1 1 1-6 1 6 1-9 1 9 1-4 1 4 1-2 1 2 1-8 1 8 1-3 1 3 1-1 1 1 2 1Z"/></svg>')
}
.md-typeset .admonition.waveform,
.md-typeset details.waveform {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .waveform > .admonition-title,
.md-typeset .waveform > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .waveform > .admonition-title::before,
.md-typeset .waveform > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--waveform);
		mask-image: var(--md-admonition-icon--waveform);
}



:root {
	--md-admonition-icon--wifi-strength-outline: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 3C7.79 3 3.7 4.41.38 7H.36C4.24 11.83 8.13 16.66 12 21.5c3.89-4.84 7.77-9.67 11.64-14.5h.01C20.32 4.41 16.22 3 12 3m0 2c3.07 0 6.09.86 8.71 2.45L12 18.3 3.27 7.44C5.9 5.85 8.92 5 12 5Z"/></svg>')
}
.md-typeset .admonition.wifi-strength-outline,
.md-typeset details.wifi-strength-outline {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .wifi-strength-outline > .admonition-title,
.md-typeset .wifi-strength-outline > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .wifi-strength-outline > .admonition-title::before,
.md-typeset .wifi-strength-outline > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--wifi-strength-outline);
		mask-image: var(--md-admonition-icon--wifi-strength-outline);
}



:root {
	--md-admonition-icon--wrench: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m22.7 19-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4Z"/></svg>')
}
.md-typeset .admonition.wrench,
.md-typeset details.wrench {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .wrench > .admonition-title,
.md-typeset .wrench > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .wrench > .admonition-title::before,
.md-typeset .wrench > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--wrench);
		mask-image: var(--md-admonition-icon--wrench);
}



:root {
	--md-admonition-icon--youtube: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10 15 5.19-3L10 9v6m11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73Z"/></svg>')
}
.md-typeset .admonition.youtube,
.md-typeset details.youtube {
	border-color: rgba(75, 75, 75, 0);
}
.md-typeset .youtube > .admonition-title,
.md-typeset .youtube > summary {
background-color: rgba(100, 100, 100, 0);
}
.md-typeset .youtube > .admonition-title::before,
.md-typeset .youtube > summary::before {
	background-color: rgb(172, 103, 47);
	-webkit-mask-image: var(--md-admonition-icon--youtube);
		mask-image: var(--md-admonition-icon--youtube);
}



