/*
Basic styles used before we boot up the parsing engine
*/

/*
Error message and password prompt
*/

.tc-error-form {
	font-family: sans-serif;
	color: #fff;
	z-index: 20000;
	position: fixed;
	background-color: rgb(255, 75, 75);
	border: 8px solid rgb(255, 0, 0);
	border-radius: 8px;
	width: 50%;
	margin-left: 25%;
	margin-top: 4em;
	padding: 0 2em 1em 2em;
}

.tc-error-form h1 {
	text-align: center;
}

.tc-error-prompt {
	text-align: center;
	color: #000;
}

.tc-error-message {
	overflow: auto;
	max-height: 40em;
	padding-right: 1em;
	margin: 1em 0;
	white-space: pre-line;
}

.tc-password-wrapper {
    font-family: sans-serif;
	z-index: 20000;
	position: fixed;
	text-align: center;
	width: 200px;
	top: 4em;
	left: 50%;
	margin-left: -144px; /* - width/2 - paddingHorz/2 - border */
	padding: 16px 16px 16px 16px;
	border-radius: 8px;
}

.tc-password-wrapper {
	color: #000;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: rgb(197, 235, 183);
	border: 8px solid rgb(164, 197, 152);
}

.tc-password-wrapper form {
	text-align: left;
}

.tc-password-wrapper h1 {
	font-size: 16px;
	line-height: 20px;
	padding-bottom: 16px;
}

.tc-password-wrapper input {
	width: 100%;
}
/*
** Start with the normalize CSS reset, and then belay some of its effects
*//*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

html {
	/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	line-height: 1.15; /* 1. Correct the line height in all browsers. */
	-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
	-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
	tab-size: 4; /* 3 */
}

/*
Sections
========
*/

body {
	margin: 0; /* Remove the margin in all browsers. */
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
	text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}
input[type="search"] {
	outline-offset: initial;
}button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
	outline: 2px solid #5778d8;
	outline-offset: -2px;
	border-radius: 0.25em;
}button:-moz-focusring, input:-moz-focusring, textarea:-moz-focusring, select:-moz-focusring {
	outline: 2px solid #5778d8;
	outline-offset: -2px;
	border-radius: 0.25em;
}/*
** Button default styles. Makes them look consistent for all browsers
*/
html button {
	line-height: 1.2;
	color: ;
	fill: ;
	background: ;
	border-color: ;
	cursor: pointer;
}button:disabled {
	cursor: default;
	color: #bbbbbb;
}button:disabled svg {
	fill: #bbbbbb;
}/*
** Basic element styles
*/html, body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", sans-serif, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	text-rendering: optimizeLegibility; /* Enables kerning and ligatures etc. */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}html:-webkit-full-screen {
	background-color: #f4f4f4;
}body.tc-body {
	font-size: 14px;
	line-height: 20px;
	word-wrap: break-word;
	


	color: #333333;
	background-color: #f4f4f4;
	fill: #333333;
}/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */h1 {
	font-size: 2em;
}h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-weight: normal;
}pre {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	word-break: normal;
	word-wrap: break-word;
	white-space: pre-wrap;
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
	padding: 0 3px 2px;
	border-radius: 3px;
	font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}code {
	color: #dd1144;
	background-color: #f7f7f9;
	border: 1px solid #e1e1e8;
	white-space: pre-wrap;
	padding: 0 3px 2px;
	border-radius: 3px;
	font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}blockquote {
	border-left: 5px solid #bbbbbb;
	margin-left: 25px;
	padding-left: 10px;
	quotes: "\201C""\201D""\2018""\2019";
}blockquote > div {
	margin-top: 1em;
	margin-bottom: 1em;
}blockquote.tc-big-quote {
	font-family: Georgia, serif;
	position: relative;
	background: #f5f5f5;
	border-left: none;
	margin-left: 50px;
	margin-right: 50px;
	padding: 10px;
	border-radius: 8px;
}blockquote.tc-big-quote cite:before {
	content: "\2014 \2009";
}blockquote.tc-big-quote:before {
	font-family: Georgia, serif;
	color: #bbbbbb;
	content: open-quote;
	font-size: 8em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
	position: absolute;
	left: -50px;
	top: 42px;
}blockquote.tc-big-quote:after {
	font-family: Georgia, serif;
	color: #bbbbbb;
	content: close-quote;
	font-size: 8em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
	position: absolute;
	right: -80px;
	bottom: -20px;
}dl dt {
	font-weight: bold;
	margin-top: 6px;
}textarea,
input[type=text],
input[type=search],
input[type=number],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=""],
input:not([type]) {
	color: #333333;
	background: #ffffff;
}input[type="checkbox"] {
	vertical-align: middle;
}input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance:none;
}.tc-muted {
	color: #bbbbbb;
}svg.tc-image-button {
	padding: 0px 1px 1px 0px;
}.tc-icon-wrapper > svg {
	width: 1em;
	height: 1em;
}kbd {
	display: inline-block;
	padding: 3px 5px;
	font-size: 0.8em;
	line-height: 1.2;
	color: #333333;
	vertical-align: middle;
	background-color: #ffffff;
	border: solid 1px #bbbbbb;
	border-bottom-color: #bbbbbb;
	border-radius: 3px;
	box-shadow: inset 0 -1px 0 #bbbbbb;
}::selection {
	background-color: Highlight;
	color: HighlightText;
	background-color: ;
	color: ;
}.tc-inline-style {
	background: #ffff00;
	color: #000000;
}/* Markdown uses mark element to highlight */mark {
	background: #ffff00;
	color: #000000;
}form.tc-form-inline {
	display: inline;
}/*
Markdown likes putting code elements inside pre elements
*/
pre > code {
	display: block;
	padding: 0.5em;
	border: none;
	white-space: pre-wrap;
	background-color: inherit;
	color: inherit;
	overflow-x: auto;
}/*
Table defaults
*/table {
	border: 1px solid #dddddd;
	width: auto;
	max-width: 100%;
	caption-side: bottom;
	margin-top: 1em;
	margin-bottom: 1em;
	/* next 2 elements needed, since normalize 8.0.1 */
	border-collapse: collapse;
	border-spacing: 0;
}table th, table td {
	padding: 0 7px 0 7px;
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
}table thead tr td, table th {
	background-color: #f0f0f0;
	font-weight: bold;
}table tfoot tr td {
	background-color: #a8a8a8;
}/*
Table utility classes
*//* Remove borders from table as used in eg: GettingStarted*/
.tc-table-no-border,
.tc-table-no-border th,
.tc-table-no-border td {
	border: initial;
}/* First column in table width will fit to text.*/
/* This rule makes most sense with tc-first-link-nowrap*/
.tc-first-col-min-width td:nth-child(1) {
	width: 1%;
}/*
** Utility classes work well with tables but also for other containers
*//* First link A element will not wrap */
.tc-first-link-nowrap:first-of-type a {
	white-space: nowrap;
}/* Move the table to the center of the container */
.tc-center {
	margin-left: auto;
	margin-right: auto;
}.tc-max-width {
	width: 100%;
}.tc-max-width-80 {
	max-width: 80%;
}/* Allow input and textarea to look like the ControlPanel inputs */
.tc-edit-max-width input,
.tc-edit-max-width textarea {
	width: 100%;
	padding: 3px;
}/*
CSV parser plugin
*/.tc-csv-table {
	white-space: nowrap;
}.tc-csv-table th,
.tc-csv-table td {
	white-space: pre-line;
}/*
Tiddler frame in story river
*/.tc-tiddler-frame img,
.tc-tiddler-frame svg,
.tc-tiddler-frame canvas,
.tc-tiddler-frame embed,
.tc-tiddler-frame iframe {
	max-width: 100%;
}.tc-tiddler-body > embed,
.tc-tiddler-body > iframe {
	width: 100%;
	height: 600px;
}:root {
	color-scheme: light;
}/*
** Links
*/button.tc-tiddlylink,
a.tc-tiddlylink {
	text-decoration: none;
	font-weight: 500;
	color: #5778d8;
	-webkit-user-select: inherit; /* Otherwise the draggable attribute makes links impossible to select */
	-webkit-touch-callout: none; /* Prevents long presses from bringing up a link preview */
}.tc-sidebar-lists a.tc-tiddlylink {
	color: #999999;
}.tc-sidebar-lists a.tc-tiddlylink:hover {
	color: #444444;
}button.tc-tiddlylink:hover,
a.tc-tiddlylink:hover {
	text-decoration: underline;
}a.tc-tiddlylink-resolves {
}a.tc-tiddlylink-shadow {
	font-weight: bold;
}a.tc-tiddlylink-shadow.tc-tiddlylink-resolves {
	font-weight: normal;
}a.tc-tiddlylink-missing {
	font-style: italic;
}a.tc-tiddlylink-external {
	text-decoration: underline;
	color: #0000ee;
	background-color: inherit;
}a.tc-tiddlylink-external:visited {
	color: #0000aa;
	background-color: inherit;
}a.tc-tiddlylink-external:hover {
	color: inherit;
	background-color: inherit;
}.tc-drop-down a.tc-tiddlylink:hover {
	color: #ffffff;
}/*
** Drag and drop styles
*/.tc-tiddler-dragger {
	position: relative;
	z-index: -10000;
}.tc-tiddler-dragger-inner {
	position: absolute;
	top: -1000px;
	left: -1000px;
	display: inline-block;
	padding: 8px 20px;
	font-size: 16.9px;
	font-weight: bold;
	line-height: 20px;
	color: #ffffff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 1);
	white-space: nowrap;
	vertical-align: baseline;
	background-color: #333333;
	border-radius: 20px;
}.tc-tiddler-dragger-cover {
	position: absolute;
	background-color: #f4f4f4;
}.tc-page-container > .tc-dropzone {
	min-height: 100vh;
}.tc-dropzone {
	position: relative;
}.tc-dropzone.tc-dragover:before {
	z-index: 10000;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0,200,0,0.7);
	text-align: center;
	content: "Drop now (or use the 'Escape' key to cancel)";
}.tc-droppable > .tc-droppable-placeholder {
	display: none;
}.tc-droppable.tc-dragover > .tc-droppable-placeholder {
	display: block;
	border: 2px dashed rgba(0,200,0,0.7);
}.tc-draggable {
	cursor: move;
}.tc-sidebar-tab-open .tc-droppable-placeholder, .tc-tagged-draggable-list .tc-droppable-placeholder,
.tc-links-draggable-list .tc-droppable-placeholder {
	line-height: 2em;
	height: 2em;
}.tc-sidebar-tab-open-item {
	position: relative;
}.tc-sidebar-tab-open .tc-btn-invisible.tc-btn-mini svg {
	font-size: 0.7em;
	fill: #bbbbbb;
}/*
** Plugin reload warning
*/.tc-plugin-reload-warning {
	z-index: 1000;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #ffe476;
	text-align: center;
}/*
** Buttons
*/button svg, button img, label svg, label img {
	vertical-align: middle;
}.tc-btn-invisible {
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: #333333;
	fill: #333333;
}button:disabled.tc-btn-invisible  {
	cursor: default;
	color: #bbbbbb;
}.tc-btn-boxed {
	font-size: 0.6em;
	padding: 0.2em;
	margin: 1px;
	background: none;
	border: 1px solid #cccccc;
	border-radius: 0.25em;
}html body.tc-body .tc-btn-boxed svg {
	font-size: 1.6666em;
}.tc-btn-boxed:hover {
	background: #bbbbbb;
	color: #ffffff;
}html body.tc-body .tc-btn-boxed:hover svg {
	fill: #ffffff;
}.tc-btn-rounded {
	font-size: 0.5em;
	line-height: 2;
	padding: 0em 0.3em 0.2em 0.4em;
	margin: 1px;
	border: 1px solid #bbbbbb;
	background: #bbbbbb;
	color: #ffffff;
	border-radius: 2em;
}html body.tc-body .tc-btn-rounded svg {
	font-size: 1.6666em;
	fill: #ffffff;
}.tc-btn-rounded:hover {
	border: 1px solid #bbbbbb;
	background: #ffffff;
	color: #bbbbbb;
}html body.tc-body .tc-btn-rounded:hover svg {
	fill: #bbbbbb;
}.tc-btn-icon svg {
	height: 1em;
	width: 1em;
	fill: #bbbbbb;
}.tc-btn-text {
	margin-left: 7px;
}/* used for documentation "fake" buttons */
.tc-btn-standard {
	line-height: 1.8;
	color: #667;
	background-color: #e0e0e0;
	border: 1px solid #888;
	padding: 2px 1px 2px 1px;
	margin: 1px 4px 1px 4px;
}.tc-btn-big-green {
	display: inline-block;
	padding: 8px;
	margin: 4px 8px 4px 8px;
	background: #34c734;
	color: #ffffff;
	fill: #ffffff;
	border: none;
	border-radius: 2px;
	font-size: 1.2em;
	line-height: 1.4em;
	text-decoration: none;
}.tc-btn-big-green svg,
.tc-btn-big-green img {
	height: 2em;
	width: 2em;
	vertical-align: middle;
	fill: #ffffff;
}.tc-primary-btn {
	background: #5778d8;
}.tc-sidebar-lists input {
	color: #333333;
}.tc-sidebar-lists button {
	color: #333333;
	fill: #333333;
}.tc-sidebar-lists button.tc-btn-mini {
	color: #c0c0c0;
}.tc-sidebar-lists button.tc-btn-mini:hover {
	color: #444444;
}.tc-sidebar-lists button small {
	color: #333333;
}button svg.tc-image-button, button .tc-image-button img {
	height: 1em;
	width: 1em;
}.tc-unfold-banner {
	position: absolute;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	width: 100%;
	width: calc(100% + 2px);
	margin-left: -43px;
	text-align: center;
	border-top: 2px solid #f8f8f8;
	margin-top: 4px;
}.tc-unfold-banner:hover {
	background: #f8f8f8;
	border-top: 2px solid #dddddd;
}.tc-unfold-banner svg, .tc-fold-banner svg {
	height: 0.75em;
	fill: #cccccc;
}.tc-unfold-banner:hover svg, .tc-fold-banner:hover svg {
	fill: #888888;
}.tc-fold-banner {
	position: absolute;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	width: 23px;
	text-align: center;
	margin-left: -35px;
	top: 6px;
	bottom: 6px;
}.tc-fold-banner:hover {
	background: #f8f8f8;
}@media (max-width: 959px) {.tc-unfold-banner {
		position: static;
		width: calc(100% + 59px);
	}.tc-fold-banner {
		width: 16px;
		margin-left: -16px;
		font-size: 0.75em;
	}}/*
** Tags and missing tiddlers
*/.tc-tag-list-item {
	position: relative;
	display: inline-block;
}.tc-tags-wrapper {
	margin: 4px 0 14px 0;
}.tc-tags-wrapper .tc-tag-list-item {
	margin-right: 7px;
}.tc-missing-tiddler-label {
	font-style: italic;
	font-weight: normal;
	display: inline-block;
	font-size: 11.844px;
	line-height: 14px;
	white-space: nowrap;
	vertical-align: baseline;
}.tc-block-tags-dropdown > .tc-btn-invisible:hover {
	background-color: #5778d8;
}button.tc-tag-label, span.tc-tag-label {
	display: inline-block;
	padding: 0.16em 0.7em;
	font-size: 0.9em;
	font-weight: normal;
	line-height: 1.2em;
	color: #ffffff;
	white-space: break-spaces;
	vertical-align: baseline;
	background-color: #eecc66;
	border-radius: 1em;
}.tc-sidebar-scrollable .tc-tag-label {
	text-shadow: none;
}.tc-untagged-separator {
	border: 0;
	height: 1px;
	background: #d8d8d8;
}button.tc-untagged-label {
	background-color: #999999;
}.tc-tag-label svg, .tc-tag-label img {
	height: 1em;
	width: 1em;
	margin-right: 3px;
	margin-bottom: 1px;
	vertical-align: bottom;
}.tc-edit-tags button.tc-remove-tag-button svg {
	font-size: 0.7em;
	vertical-align: middle;
}.tc-tag-manager-table .tc-tag-label {
}.tc-tag-manager-tag {
	width: 100%;
}button.tc-btn-invisible.tc-remove-tag-button {
	outline: none;
}.tc-tag-button-selected,
.tc-list-item-selected a.tc-tiddlylink, a.tc-list-item-selected {
	background-color: #5778d8;
	color: #ffffff;
}/*
** Page layout
*/.tc-topbar {
	position: fixed;
	z-index: 1200;
}.tc-topbar-left {
	left: 29px;
	top: 5px;
}.tc-topbar-right {
	top: 5px;
	right: 29px;
}@media (max-width: 959px) {.tc-topbar-right {
		right: 10px;
	}}.tc-topbar button {
	padding: 8px;
}.tc-topbar svg {
	fill: #bbbbbb;
}.tc-topbar button:hover svg {
	fill: #333333;
}@media (max-width: 959px) {.tc-show-sidebar-btn svg.tc-image-chevron-left, .tc-hide-sidebar-btn svg.tc-image-chevron-right {
		transform: rotate(-90deg);
	}}.tc-sidebar-header {
	color: #acacac;
	fill: #acacac;
}.tc-sidebar-header .tc-title a.tc-tiddlylink-resolves {
	font-weight: normal;
}.tc-sidebar-header .tc-sidebar-lists p,
.tc-sidebar-tools-item {
	margin-top: 3px;
	margin-bottom: 3px;
}.tc-sidebar-header .tc-missing-tiddler-label {
	color: #acacac;
}.tc-advanced-search input {
	width: 60%;
}.tc-search a svg {
	width: 1.2em;
	height: 1.2em;
	vertical-align: middle;
}.tc-page-controls {
	margin-top: 14px;
	margin-bottom: 14px;
	font-size: 1.5em;
}.tc-page-controls .tc-drop-down {
	font-size: 1rem;
}.tc-page-controls button {
	margin-right: 0.5em;
}.tc-page-controls a.tc-tiddlylink:hover {
	text-decoration: none;
}.tc-page-controls img {
	width: 1em;
}.tc-page-controls svg {
	fill: #aaaaaa;
}.tc-page-controls button:hover svg, .tc-page-controls a:hover svg {
	fill: #000000;
}.tc-sidebar-lists .tc-menu-list-item {
	white-space: nowrap;
}.tc-menu-list-count {
	font-weight: bold;
}.tc-menu-list-subitem {
	padding-left: 7px;
}.tc-story-river {
	position: relative;
}@media (max-width: 959px) {.tc-sidebar-header {
		padding: 14px;
		min-height: 32px;
		margin-top: 0px;
		transition:  min-height 400ms ease-in-out, padding-top 400ms ease-in-out, padding-bottom 400ms ease-in-out;
	}.tc-story-river {
		position: relative;
		padding: 0;
	}
}@media (min-width: 960px) {.tc-message-box {
		margin: 21px -21px 21px -21px;
	}.tc-sidebar-scrollable {
		position: fixed;
		top: 0px;
		left: 770px;
		bottom: 0;
		right: 0;
		overflow-y: auto;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 0 0 -42px;
		padding: 71px 0 28px 42px;
	}html[dir="rtl"] .tc-sidebar-scrollable {
		left: auto;
		right: 770px;
	}.tc-story-river {
		position: relative;
		left: 0px;
		top: 0px;
		width: 770px;
		padding: 42px 42px 42px 42px;
	}.tc-story-river.tc-static-story-river {
		margin-right: 0;
		padding-right: 42px;
	}}@media print {body.tc-body {
		background-color: transparent;
	}.tc-sidebar-header, .tc-topbar {
		display: none;
	}.tc-story-river {
		margin: 0;
		padding: 0;
	}.tc-story-river .tc-tiddler-frame {
		margin: 0;
		border: none;
		padding: 0;
	}
}/*
** Tiddler styles
*/.tc-tiddler-frame {
	position: relative;
	margin-bottom: 28px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
}
.tc-tiddler-info {
	overflow: hidden;
	padding: 14px 42px 14px 42px;
	background-color: #f8f8f8;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}.tc-tiddler-info p {
	margin-top: 3px;
	margin-bottom: 3px;
}.tc-tiddler-info .tc-tab-buttons button.tc-tab-selected {
	background-color: #f8f8f8;
	border-bottom: 1px solid #f8f8f8;
}@media (max-width: 959px) {.tc-tiddler-info {
		padding: 14px 14px 14px 14px;
	}}.tc-view-field-table {
	width: 100%;
}.tc-view-field-name {
	width: 1%; /* Makes this column be as narrow as possible */
	vertical-align: top;
	text-align: right;
	font-style: italic;
	font-weight: normal;
}.tc-view-field-value {
	word-break: break-all;
}@media (max-width: 959px) {
	.tc-tiddler-frame {
		padding: 14px 14px 14px 14px;
		margin-bottom: .5em;
	}.tc-tiddler-info {
		margin: 0 -14px 0 -14px;
	}
}@media (min-width: 960px) {
	.tc-tiddler-frame {
		padding: 28px 42px 42px 42px;
		width: 686px;
		border-radius: 2px;
	}.tc-tiddler-info {
		margin: 0 -42px 0 -42px;
	}
}.tc-site-title,
.tc-titlebar {
	font-weight: normal;
	font-size: 2.35em;
	line-height: 1.35em;
	color: #182955;
	margin: 0;
}.tc-site-title {
	color: #182955;
}.tc-tiddler-title-icon {
	vertical-align: middle;
	margin-right: .1em;
}.tc-tiddler-title-icon svg {
	width: 0.9em;
	height: 0.9em;
}.tc-system-title-prefix {
	color: #bbbbbb;
}.tc-tiddler-lazy-loading {
	height: 4px;
	width: 100%;
	background: no-repeat linear-gradient(#ffffff 0 0),no-repeat linear-gradient(#ffffff 0 0),#5778d8;
	background-size: 60% 100%;
	animation: animation-loading-progress 3s infinite;
}@keyframes animation-loading-progress {
	0%   {background-position:-150% 0,-150% 0}
	66%  {background-position: 250% 0,-150% 0}
	100% {background-position: 250% 0, 250% 0}
}.tc-titlebar h2 {
	font-size: 1em;
	display: inline;
}.tc-titlebar img {
	height: 1em;
}.tc-subtitle {
	font-size: 0.9em;
	color: #c0c0c0;
	font-weight: normal;
}.tc-subtitle .tc-tiddlylink {
	margin-right: .3em;
}.tc-tiddler-missing .tc-title {
	font-style: italic;
	font-weight: normal;
}.tc-tiddler-frame .tc-tiddler-controls {
	float: right;
	padding: 3px; /* make space for outline */
}.tc-tiddler-controls .tc-drop-down {
	font-size: 0.6em;
}.tc-tiddler-controls .tc-drop-down .tc-drop-down {
	font-size: 1em;
}.tc-tiddler-controls > span > button,
.tc-tiddler-controls > span > span > button,
.tc-tiddler-controls > span > span > span > button {
	vertical-align: baseline;
	margin-left:5px;
}.tc-tiddler-controls button svg, .tc-tiddler-controls button img,
.tc-search button svg, .tc-search a svg {
	fill: #cccccc;
}.tc-tiddler-controls button svg, .tc-tiddler-controls button img {
	height: 0.75em;
}.tc-search button svg, .tc-search a svg {
	height: 1.2em;
	width: 1.2em;
	margin: 0 0.25em;
}.tc-tiddler-controls button.tc-selected svg,
.tc-page-controls button.tc-selected svg  {
	fill: #444444;
}.tc-tiddler-controls button.tc-btn-invisible:hover svg,
.tc-search button:hover svg, .tc-search a:hover svg {
	fill: #888888;
}@media print {
	.tc-tiddler-controls {
		display: none;
	}
}.tc-tiddler-help { /* Help prompts within tiddler template */
	color: #bbbbbb;
	margin-top: 14px;
}.tc-tiddler-help a.tc-tiddlylink {
	color: #888888;
}.tc-tiddler-frame .tc-edit-texteditor {
	width: 100%;
	margin: 4px 0 4px 0;
}.tc-tiddler-frame input.tc-edit-texteditor,
.tc-tiddler-frame textarea.tc-edit-texteditor,
.tc-tiddler-frame iframe.tc-edit-texteditor,
.tc-tiddler-frame select.tc-edit-texteditor {
	padding: 3px 3px 3px 3px;
	border: 1px solid #cccccc;
	line-height: 1.3em;
	font-family: ;
}.tc-tiddler-frame input.tc-edit-texteditor,
.tc-tiddler-frame textarea.tc-edit-texteditor,
.tc-tiddler-frame iframe.tc-edit-texteditor {
	-webkit-appearance: none;
}.tc-tiddler-frame input.tc-edit-texteditor,
.tc-tiddler-frame select.tc-edit-texteditor,
.tc-tiddler-frame textarea.tc-edit-texteditor {
	background-color: #f8f8f8;
}.tc-tiddler-frame iframe.tc-edit-texteditor {
	background-color: #ffffff;
}.tc-tiddler-frame .tc-edit-fields input.tc-edit-fieldeditor,
.tc-tiddler-frame .tc-edit-fields select.tc-edit-fieldeditor,
.tc-tiddler-frame .tc-edit-fields textarea.tc-edit-fieldeditor {
	margin: 0;
	padding: 2px 3px;
}.tc-tiddler-frame .tc-binary-warning {
	width: 100%;
	height: 5em;
	text-align: center;
	padding: 3em 3em 6em 3em;
	background: #ffe476;
	border: 1px solid #b99e2f;
}canvas.tc-edit-bitmapeditor  {
	border: 6px solid #ffffff;
	cursor: crosshair;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	margin-top: 6px;
	margin-bottom: 6px;
}.tc-edit-bitmapeditor-width {
	display: block;
}.tc-edit-bitmapeditor-height {
	display: block;
}.tc-single-tiddler-window .tc-tiddler-body,
.tc-tiddler-frame .tc-tiddler-body {
	font-size: 15px;
	line-height: 22px;
}.tc-titlebar, .tc-tiddler-edit-title {
	overflow: hidden; /* https://github.com/TiddlyWiki/TiddlyWiki5/issues/282 */
}/*
* Tiddler in a new window.
* Also see: .tc-single-tiddler-window .tc-tiddler-body, above
*/html body.tc-body.tc-single-tiddler-window {
	margin: 1em;
	background: #ffffff;
}.tc-single-tiddler-window img,
.tc-single-tiddler-window svg,
.tc-single-tiddler-window canvas,
.tc-single-tiddler-window embed,
.tc-single-tiddler-window iframe {
	max-width: 100%;
}/*
** Editor
*/.tc-editor-toolbar {
	margin-top: 8px;
}.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview .tc-editor-toolbar,
.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview-hidden .tc-editor-toolbar {
	grid-area: toolbar;
}.tc-editor-toolbar button {
	vertical-align: middle;
	background-color: #cccccc;
	color: #444444;
	fill: #444444;
	border-radius: 4px;
	padding: 3px;
	margin: 2px 0 2px 4px;
}.tc-editor-toolbar button.tc-text-editor-toolbar-item-adjunct {
	margin-left: 1px;
	width: 1em;
	border-radius: 8px;
}.tc-editor-toolbar button.tc-text-editor-toolbar-item-start-group {
	margin-left: 11px;
}.tc-editor-toolbar button.tc-selected {
	background-color: #5778d8;
}.tc-editor-toolbar button svg {
	width: 1.6em;
	height: 1.2em;
}.tc-editor-toolbar .tc-drop-down button.tc-btn-mini {
	padding: 2px 4px;
}.tc-editor-toolbar button:hover {
	background-color: #444444;
	fill: #ffffff;
	color: #ffffff;
}.tc-editor-toolbar .tc-text-editor-toolbar-more {
	white-space: normal;
}.tc-editor-toolbar .tc-text-editor-toolbar-more button {
	display: inline-block;
	padding: 3px;
	width: auto;
}.tc-editor-toolbar .tc-search-results {
	padding: 0;
}.tc-editor-toolbar button.tc-editortoolbar-stamp-button + .tc-popup .tc-drop-down > p {
	margin: 0;
	padding: 0;
}.tc-editor-toolbar button.tc-editortoolbar-stamp-button + .tc-popup .tc-drop-down a.tc-tiddlylink {
	font-weight: normal;
}/*
** Adjustments for fluid-fixed mode
*/@media (min-width: 960px) {.tc-story-river {
		padding-right: 0;
		position: relative;
		width: auto;
		left: 0;
		margin-left: 0px;
		margin-right: 350px;
	}.tc-tiddler-frame {
		width: 100%;
	}.tc-sidebar-scrollable {
		left: auto;
		bottom: 0;
		right: 0;
		width: 350px;
	}body.tc-body .tc-page-container.tc-page-view-zoomin .tc-tiddler-frame {
		width: 100%;
		width: calc(100% - 42px);
	}}/*
** Toolbar buttons
*/.tc-page-controls svg.tc-image-new-button {
	fill: ;
}.tc-page-controls svg.tc-image-options-button {
	fill: ;
}.tc-page-controls svg.tc-image-save-button {
	fill: ;
}.tc-tiddler-controls button svg.tc-image-info-button {
	fill: ;
}.tc-tiddler-controls button svg.tc-image-edit-button {
	fill: ;
}.tc-tiddler-controls button svg.tc-image-close-button {
	fill: ;
}.tc-tiddler-controls button svg.tc-image-delete-button {
	fill: ;
}.tc-tiddler-controls button svg.tc-image-cancel-button {
	fill: ;
}.tc-tiddler-controls button svg.tc-image-done-button {
	fill: ;
}.tc-page-controls svg.tc-image-layout-button {
	fill: ;
}/*
** Tiddler edit mode
*/.tc-tiddler-edit-frame em.tc-edit {
	color: #bbbbbb;
	font-style: normal;
}.tc-edit-type-dropdown a.tc-tiddlylink-missing {
	font-style: normal;
}.tc-type-selector .tc-edit-typeeditor {
	width: auto;
}.tc-type-selector-dropdown-wrapper {
	display: inline-block;
}.tc-type-selector-dropdown-wrapper {
		min-width: calc(32ch + 4em);
	}.tc-type-selector-dropdown-wrapper input.tc-edit-typeeditor {
		min-width: 32ch;
	}.tc-edit-tags {
	border: 1px solid #cccccc;
	padding: 4px 8px 4px 8px;
}.tc-edit-add-tag {
	display: inline-block;
}.tc-edit-add-tag .tc-add-tag-name input {
	width: 50%;
}.tc-edit-add-tag .tc-keyboard {
	display:inline;
}.tc-edit-tags .tc-tag-label {
	display: inline-block;
}.tc-edit-tags-list {
	margin: 14px 0 14px 0;
}.tc-remove-tag-button {
	padding-left: 4px;
}.tc-tiddler-editor {
	display: grid;
}.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview {
	grid-template-areas:
		"toolbar toolbar"
		"editor preview";
	grid-template-columns: repeat(2, minmax(0px, 1fr));
	grid-template-rows: auto 1fr;
}.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview-hidden {
	grid-template-areas:
		"toolbar"
		"editor";
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
}.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview .tc-tiddler-preview-preview {
	grid-area: preview;
	overflow-wrap: anywhere;
	word-break: normal;
	border: 1px solid #cccccc;
	margin: 4px 0 3px 3px;
	padding: 3px 3px 3px 3px;
}.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview .tc-edit-texteditor,
.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview-hidden .tc-edit-texteditor {
	grid-area: editor;
}.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview canvas.tc-edit-bitmapeditor,
.tc-tiddler-frame .tc-tiddler-editor.tc-tiddler-preview-hidden canvas.tc-edit-bitmapeditor {
	grid-area: editor;
	max-width: 100%;
}.tc-edit-fields {
	width: 100%;
}.tc-edit-fields.tc-edit-fields-small {
	margin-top: 0;
	margin-bottom: 0;
}.tc-edit-fields table, .tc-edit-fields tr, .tc-edit-fields td {
	border: none;
	padding: 4px;
}.tc-edit-fields > tbody > .tc-edit-field:nth-child(odd) {
	background-color: #f0f4f0;
}.tc-edit-fields > tbody > .tc-edit-field:nth-child(even) {
	background-color: #e0e8e0;
}.tc-edit-field-name {
	text-align: right;
}.tc-edit-field-value input {
	width: 100%;
}.tc-edit-field-remove {
}.tc-edit-field-remove svg {
	height: 1em;
	width: 1em;
	fill: #bbbbbb;
	vertical-align: middle;
}.tc-edit-field-add-name-wrapper input.tc-edit-texteditor {
	width: auto;
}.tc-edit-field-add-name-wrapper {
	display: inline-block;
}.tc-edit-field-add-value {
	display: inline-block;
}@media (min-width: 960px) {.tc-edit-field-add-value {
		width: 35%;
	}}.tc-edit-field-add-button {
	display: inline-block;
	width: 10%;
}/*
** Tiddler editor dropzone
*/.tc-dropzone-editor {
	position:relative;
}.tc-dropzone-editor.tc-dragover .tc-editor-toolbar::after{
	z-index: 10000;
	top:0;
	left:0;
	right:0;
	height: 100%;
	background: rgba(0,200,0,0.7);
	content: "Drop now (or use the 'Escape' key to cancel)";
	pointer-events: none;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border: 4px dashed #999999;
	font-weight: bold;
	font-size: 150%;
	opacity: 0.8;
	color: #333333;
}.tc-editor-importpopup {
	width: 100%;
	height: 100%;
}.tc-editor-import {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #f5f5f5;
	box-shadow: 2px 2px 10px #333333;
	padding: 10px;
	width: 96%;
	border: 1px solid #cccccc;
	text-align:center;
}.tc-editor-import img {
	max-height: 500px;
}/*
** Storyview Classes
*/.tc-viewswitcher .tc-image-button {
	margin-right: .3em;
}.tc-page-container.tc-page-view-zoomin .tc-tiddler-frame {
	position: absolute;
	display: block;
	width: 100%;
}@media (min-width: 960px) {.tc-page-container.tc-page-view-zoomin .tc-tiddler-frame {
		width: calc(100% - 84px);
	}}/*
** Dropdowns
*/.tc-btn-dropdown {
	text-align: left;
}.tc-btn-dropdown svg, .tc-btn-dropdown img {
	height: 1em;
	width: 1em;
	fill: #bbbbbb;
}.tc-drop-down-wrapper {
	position: relative;
}.tc-drop-down {
	min-width: 380px;
	border: 1px solid #bbbbbb;
	background-color: #ffffff;
	padding: 7px 0 7px 0;
	margin: 4px 0 0 0;
	white-space: nowrap;
	text-shadow: none;
	line-height: 1.4;
}.tc-drop-down .tc-drop-down {
	margin-left: 14px;
}.tc-drop-down button svg, .tc-drop-down a svg  {
	fill: #333333;
}.tc-drop-down button:disabled svg {
	fill: #bbbbbb;
}.tc-drop-down button.tc-btn-invisible:hover svg {
	fill: #ffffff;
}.tc-drop-down .tc-drop-down-info {
	padding-left: 14px;
}.tc-drop-down p {
	padding: 0 14px 0 14px;
}.tc-drop-down svg {
	width: 1em;
	height: 1em;
}.tc-drop-down img {
	width: 1em;
}.tc-drop-down a, .tc-drop-down button {
	display: block;
	padding: 0 14px 0 14px;
	width: 100%;
	text-align: left;
	color: #333333;
	line-height: 1.4;
}.tc-drop-down .tc-tab-set .tc-tab-buttons button {
	display: inline-block;
	width: auto;
	margin-bottom: 0px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}.tc-drop-down .tc-prompt {
	padding: 0 14px;
}.tc-drop-down .tc-chooser {
	border: none;
}.tc-drop-down .tc-chooser .tc-swatches-horiz {
	font-size: 0.4em;
	padding-left: 1.2em;
}.tc-drop-down .tc-file-input-wrapper {
	width: 100%;
}.tc-drop-down .tc-file-input-wrapper button {
	color: #333333;
}.tc-drop-down a:hover, .tc-drop-down button:hover, .tc-drop-down .tc-file-input-wrapper:hover button {
	color: #ffffff;
	background-color: #5778d8;
	text-decoration: none;
}.tc-drop-down .tc-tab-buttons button {
	background-color: #ececec;
}.tc-drop-down .tc-tab-buttons button.tc-tab-selected {
	background-color: #ffffff;
	border-bottom: 1px solid #ffffff;
}.tc-drop-down-bullet {
	display: inline-block;
	width: 0.5em;
}.tc-drop-down .tc-tab-contents a {
	padding: 0 0.5em 0 0.5em;
}.tc-block-dropdown-wrapper {
	position: relative;
}.tc-block-dropdown {
	position: absolute;
	min-width: 220px;
	border: 1px solid #bbbbbb;
	background-color: #ffffff;
	padding: 7px 0;
	margin: 4px 0 0 0;
	white-space: nowrap;
	z-index: 1000;
	text-shadow: none;
}.tc-block-dropdown.tc-search-drop-down {
	margin-left: -12px;
}.tc-block-dropdown a {
	display: block;
	padding: 4px 14px 4px 14px;
}.tc-block-dropdown.tc-search-drop-down a {
	display: block;
	padding: 0px 10px 0px 10px;
}.tc-drop-down .tc-dropdown-item-plain,
.tc-block-dropdown .tc-dropdown-item-plain {
	padding: 4px 14px 4px 7px;
}.tc-drop-down .tc-dropdown-item,
.tc-block-dropdown .tc-dropdown-item {
	padding: 4px 14px 4px 7px;
	color: #bbbbbb;
}.tc-block-dropdown a.tc-tiddlylink:hover {
	color: #ffffff;
	background-color: #5778d8;
	text-decoration: none;
}.tc-search-results {
	padding: 0 7px 0 7px;
}.tc-image-chooser, .tc-colour-chooser {
	white-space: normal;
}.tc-image-chooser a,
.tc-colour-chooser a {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	position: relative;
}.tc-image-chooser a {
	border: 1px solid #bbbbbb;
	padding: 2px;
	margin: 2px;
	width: 4em;
	height: 4em;
}.tc-colour-chooser a {
	padding: 3px;
	width: 2em;
	height: 2em;
	vertical-align: middle;
}.tc-image-chooser a:hover,
.tc-colour-chooser a:hover {
	background: #5778d8;
	padding: 0px;
	border: 3px solid #5778d8;
}.tc-image-chooser a svg,
.tc-image-chooser a img {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 3.5em;
	max-height: 3.5em;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}/* Make search dropdown visible on small screens. issue #7003 */
@media (max-width: 960px) {.tc-sidebar-search .tc-block-dropdown-wrapper {
		position: initial;
	}}/*
** Modals
*/.tc-modal-wrapper {
	position: fixed;
	overflow: auto;
	overflow-y: scroll;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 900;
}.tc-modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	background-color: #333333;
}.tc-modal {
	z-index: 1100;
	background-color: #ffffff;
	border: 1px solid #999999;
}@media (max-width: 55em) {
	.tc-modal {
		position: fixed;
		top: 1em;
		left: 1em;
		right: 1em;
	}.tc-modal-body {
		overflow-y: auto;
		max-height: 400px;
		max-height: 60vh;
	}
}@media (min-width: 55em) {
	.tc-modal {
		position: fixed;
		top: 2em;
		left: 25%;
		width: 50%;
	}.tc-modal-body {
		overflow-y: auto;
		max-height: 400px;
		max-height: 60vh;
	}
}.tc-modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #eeeeee;
}.tc-modal-header h3 {
	margin: 0;
	line-height: 30px;
}.tc-modal-header img, .tc-modal-header svg {
	width: 1em;
	height: 1em;
}.tc-modal-body {
	padding: 15px;
}.tc-modal-footer {
	padding: 14px 15px 15px;
	margin-bottom: 0;
	text-align: right;
	background-color: #f5f5f5;
	border-top: 1px solid #dddddd;
}.tc-modal-prevent-scroll {
	overflow: hidden;
}/*
** Centered modals
*/
.tc-modal-centered .tc-modal {
	width: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) !important;
}/*
** Notifications
*/.tc-notification {
	position: fixed;
	top: 14px;
	right: 42px;
	z-index: 1300;
	max-width: 280px;
	padding: 0 14px 0 14px;
	background-color: #ffffdd;
	border: 1px solid #999999;
}/*
** Tabs
*/.tc-tab-set.tc-vertical {
	display: -webkit-flex;
	display: flex;
}.tc-tab-buttons {
	font-size: 0.85em;
	padding-top: 1em;
	margin-bottom: -2px;
}.tc-tab-buttons.tc-vertical  {
	z-index: 100;
	display: block;
	padding-top: 14px;
	vertical-align: top;
	text-align: right;
	margin-bottom: inherit;
	margin-right: -1px;
	max-width: 33%;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}.tc-tab-buttons button.tc-tab-selected {
	color: #666666;
	background-color: #ffffff;
	border-left: 1px solid #d8d8d8;
	border-top: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
}.tc-tab-buttons button {
	color: #666666;
	padding: 3px 5px 3px 5px;
	margin-right: 0.3em;
	font-weight: normal;
	border: none;
	background: inherit;
	background-color: #d8d8d8;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}.tc-tab-buttons.tc-vertical button {
	display: block;
	width: 100%;
	margin-top: 3px;
	margin-right: 0;
	text-align: right;
	background-color: #d8d8d8;
	border-left: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	border-right: none;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}.tc-tab-buttons.tc-vertical button.tc-tab-selected {
	background-color: #ffffff;
	border-right: 1px solid #ffffff;
}.tc-tab-divider {
	border-top: 1px solid #d8d8d8;
}.tc-tab-divider.tc-vertical  {
	display: none;
}.tc-tab-content {
	margin-top: 14px;
}.tc-tab-content.tc-vertical  {
	display: inline-block;
	vertical-align: top;
	padding-top: 0;
	padding-left: 14px;
	border-left: 1px solid #cccccc;
	-webkit-flex: 1 0 70%;
	flex: 1 0 70%;
	overflow: auto;
}.tc-sidebar-lists .tc-tab-buttons {
	margin-bottom: -1px;
}.tc-sidebar-lists .tc-tab-buttons button.tc-tab-selected {
	background-color: #f4f4f4;
	color: ;
	border-left: 1px solid #d8d8d8;
	border-top: 1px solid #d8d8d8;
	border-right: 1px solid #d8d8d8;
}.tc-sidebar-lists .tc-tab-buttons button {
	background-color: #e0e0e0;
	color: #666666;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}.tc-sidebar-lists .tc-tab-divider {
	border-top: 1px solid #e4e4e4;
}.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button {
	display: block;
	width: 100%;
	background-color: #e0e0e0;
	border-top: none;
	border-left: none;
	border-bottom: none;
	border-right: 1px solid #ccc;
	margin-bottom: inherit;
}.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button.tc-tab-selected {
	background-color: #f4f4f4;
	border: none;
}/*
** Manager
*/.tc-manager-wrapper {}.tc-manager-controls {}.tc-manager-control {
	margin: 0.5em 0;
}.tc-manager-control select {
	max-width: 100%;
}.tc-manager-list {
	width: 100%;
	border-top: 1px solid #bbbbbb;
	border-left: 1px solid #bbbbbb;
	border-right: 1px solid #bbbbbb;
}.tc-manager-list-item {}.tc-manager-list-item-heading {
	display: block;
	width: 100%;
	text-align: left;
	border-bottom: 1px solid #bbbbbb;
	padding: 3px;
}.tc-manager-list-item-heading-selected {
	font-weight: bold;
	color: #ffffff;
	fill: #ffffff;
	background-color: #333333;
}.tc-manager-list-item-heading:hover {
	background: #5778d8;
	color: #ffffff;
}.tc-manager-list-item-content {
	display: flex;
}.tc-manager-list-item-content-sidebar {
	flex: 1 0;
	background: #f8f8f8;
	border-right: 0.5em solid #bbbbbb;
	border-bottom: 0.5em solid #bbbbbb;
	white-space: nowrap;
}.tc-manager-list-item-content-item-heading {
	display: block;
	width: 100%;
	text-align: left;
	background: #bbbbbb;
	text-transform: uppercase;
	font-size: 0.6em;
	font-weight: bold;
	padding: 0.5em 0 0.5em 0;
}.tc-manager-list-item-content-item-body {
	padding: 0 0.5em 0 0.5em;
}.tc-manager-list-item-content-item-body > pre {
	margin: 0.5em 0 0.5em 0;
	border: none;
	background: inherit;
}.tc-manager-list-item-content-tiddler {
	flex: 3 1;
	border-left: 0.5em solid #bbbbbb;
	border-right: 0.5em solid #bbbbbb;
	border-bottom: 0.5em solid #bbbbbb;
}.tc-manager-list-item-content-item-body > table {
	border: none;
	padding: 0;
	margin: 0;
}.tc-manager-list-item-content-item-body > table td {
	border: none;
}.tc-manager-icon-editor > button {
	width: 100%;
}.tc-manager-icon-editor > button > svg,
.tc-manager-icon-editor > button > button {
	width: 100%;
	height: auto;
}/*
** Import table
*/.tc-import-table {
	width: 100%;
}.tc-import-table svg.tc-image-edit-button {
	max-width: unset;
}.tc-import-table th:first-of-type {
	width: 10%;
}.tc-import-table th:last-of-type {
	width: 30%;
}.tc-import-table .tc-row-disabled {
	background: #88888810;
	opacity: 0.8;
}.tc-import-table .tc-row-warning {
	background: #ffc9c950;
}/*
** Alerts
*/.tc-alerts {
	position: fixed;
	top: 28px;
	left: 0;
	right: 0;
	max-width: 50%;
	z-index: 20000;
}.tc-alert {
	position: relative;
	margin: 14px;
	padding: 7px;
	border: 1px solid #b99e2f;
	background-color: #ffe476;
}.tc-alert-toolbar {
	position: absolute;
	top: 7px;
	right: 7px;
	line-height: 0;
}.tc-alert-toolbar svg {
	fill: #b99e2f;
}.tc-alert-subtitle {
	color: #b99e2f;
	font-weight: bold;
	font-size: 0.8em;
	margin-bottom: 0.5em;
}.tc-alert-body > p {
	margin: 0;
}.tc-alert-highlight {
	color: #881122;
}@media (min-width: 960px) {.tc-static-alert {
		position: relative;
	}.tc-static-alert-inner {
		position: absolute;
		z-index: 100;
	}}.tc-static-alert-inner {
	padding: 0 2px 2px 42px;
	color: #aaaaaa;
}/*
** Floating drafts list
*/.tc-drafts-list {
	z-index: 2000;
	position: fixed;
	font-size: 0.8em;
	left: 0;
	bottom: 0;
}.tc-drafts-list a {
	margin: 0 0.5em;
	padding: 4px 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border: 1px solid #ffffff;
	border-bottom: none;
	background: #ff0000;
	color: #ffffff;
	fill: #ffffff;
}.tc-drafts-list a:hover {
	text-decoration: none;
	background: #333333;
	color: #ffffff;
	fill: #ffffff;
}.tc-drafts-list a svg {
	width: 1em;
	height: 1em;
	vertical-align: text-bottom;
}/*
** Control panel
*/.tc-control-panel td {
	padding: 4px;
}.tc-control-panel table, .tc-control-panel table input, .tc-control-panel table textarea {
	width: 100%;
}.tc-control-panel-setting {
	border-top: 1px solid #bbbbbb;
}.tc-plugin-info {
	display: flex;
	text-shadow: none;
	border: 1px solid #bbbbbb;
	fill: #bbbbbb;
	background-color: #ffffff;
	margin: 0.5em 0 0.5em 0;
	padding: 4px;
	align-items: center;
}.tc-sidebar-lists a.tc-tiddlylink.tc-plugin-info {
	color: #5778d8;
}.tc-plugin-info-sub-plugins .tc-plugin-info {
	margin: 0.5em;
	background: #ffffff;
}.tc-plugin-info-sub-plugin-indicator {
	margin: -16px 1em 0 2em;
}.tc-plugin-info-sub-plugin-indicator button {
	color: #ffffff;
	background: #333333;
	border-radius: 8px;
	padding: 2px 7px;
	font-size: 0.75em;
}.tc-plugin-info-sub-plugins .tc-plugin-info-dropdown {
	margin-left: 1em;
	margin-right: 1em;
}.tc-plugin-info-disabled {
	background: -webkit-repeating-linear-gradient(45deg, #ff0, #ff0 10px, #eee 10px, #eee 20px);
	background: repeating-linear-gradient(45deg, #ff0, #ff0 10px, #eee 10px, #eee 20px);
}.tc-plugin-info-disabled:hover {
	background: -webkit-repeating-linear-gradient(45deg, #aa0, #aa0 10px, #888 10px, #888 20px);
	background: repeating-linear-gradient(45deg, #aa0, #aa0 10px, #888 10px, #888 20px);
}a.tc-tiddlylink.tc-plugin-info:hover {
	text-decoration: none;
	background-color: #5778d8;
	color: #ffffff;
	fill: #333333;
}a.tc-tiddlylink.tc-plugin-info:hover > .tc-plugin-info-chunk > svg {
	fill: #ffffff;
}a.tc-tiddlylink.tc-plugin-info:hover > .tc-plugin-info-chunk .tc-plugin-info-stability {
	border: 1px solid #ffffff;
	color: #ffffff;
}.tc-plugin-info-chunk {
	margin: 2px;
}.tc-plugin-info-chunk.tc-plugin-info-toggle {
	flex-grow: 0;
	flex-shrink: 0;
	line-height: 1;
}.tc-plugin-info-chunk.tc-plugin-info-icon {
	flex-grow: 0;
	flex-shrink: 0;
	line-height: 1;
	height: 2em;
	width: 2em;
	display: grid;
}.tc-plugin-info-chunk.tc-plugin-info-description {
	flex-grow: 1;
}.tc-plugin-info-chunk .tc-plugin-info-stability {
	margin-right: 4px;
	padding: 1px 3px;
	font-size: 0.8em;
	border-radius: 4px;
	font-weight: bold;
}.tc-plugin-info-chunk .tc-plugin-info-stability-stable {
	border: 1px solid #00b700;
	color: #00b700;
}.tc-plugin-info-chunk .tc-plugin-info-stability-experimental {
	border: 1px solid #c07c00;
	color: #c07c00;
}.tc-plugin-info-chunk .tc-plugin-info-stability-deprecated {
	border: 1px solid #ff0000;
	color: #ff0000;
}.tc-plugin-info-chunk .tc-plugin-info-stability-legacy {
	border: 1px solid #0000ff;
	color: #0000ff;
}.tc-plugin-info-chunk.tc-plugin-info-buttons {
	font-size: 0.8em;
	line-height: 1.2;
	flex-grow: 0;
	flex-shrink: 0;
	text-align: right;
}.tc-plugin-info-chunk.tc-plugin-info-description h1 {
	font-size: 1em;
	line-height: 1.2;
	margin: 2px 0 2px 0;
}.tc-plugin-info-chunk.tc-plugin-info-description h2 {
	font-size: 0.8em;
	line-height: 1.2;
	margin: 2px 0 2px 0;
}.tc-plugin-info-chunk.tc-plugin-info-description div {
	font-size: 0.8em;
	line-height: 1.2;
	margin: 2px 0 2px 0;
}.tc-plugin-info-chunk.tc-plugin-info-toggle img, .tc-plugin-info-chunk.tc-plugin-info-toggle svg {
	width: 1em;
	height: 1em;
}.tc-plugin-info-chunk.tc-plugin-info-icon img, .tc-plugin-info-chunk.tc-plugin-info-icon svg {
	max-width: 2em;
	max-height: 2em;
	margin: auto;
}.tc-plugin-info-dropdown {
	border: 1px solid #bbbbbb;
	background: #ffffff;
	margin-top: -8px;
}.tc-plugin-info-dropdown-message {
	background: #ecf2ff;
	padding: 0.5em 1em 0.5em 1em;
	font-weight: bold;
	font-size: 0.8em;
}.tc-plugin-info-dropdown-body {
	padding: 1em 1em 0 1em;
	background: #ffffff;
}.tc-plugin-info-sub-plugins {
	padding: 0.5em;
	margin: 0 1em 1em 1em;
	background: #ffffdd;
}.tc-install-plugin {
	font-weight: bold;
	background: green;
	color: white;
	fill: white;
	border-radius: 4px;
	padding: 3px;
}.tc-install-plugin.tc-reinstall-downgrade {
	background: red;
}.tc-install-plugin.tc-reinstall {
	background: blue;
}.tc-install-plugin.tc-reinstall-upgrade {
	background: orange;
}.tc-check-list {
	line-height: 2em;
}.tc-check-list .tc-image-button {
	height: 1.5em;
}/*
** Message boxes
*/.tc-message-box {
	border: 1px solid #cfd6e6;
	background: #ecf2ff;
	padding: 0px 21px 0px 21px;
	font-size: 12px;
	line-height: 18px;
	color: #547599;
}.tc-message-box svg {
	width: 1em;
	height: 1em;
	vertical-align: text-bottom;
}/*
** Pictures
*/.tc-bordered-image {
	border: 1px solid #bbbbbb;
	padding: 5px;
	margin: 5px;
}/*
** Floats
*/.tc-float-right {
	float: right;
}/* Float tc-clearfix. Needs to be used by elements that allow float:right in their content.
** So the floating element does not overflow
*/.tc-clearfix:after {
	content: "";
	clear: both;
	display: table;
}/* Fix overflow toc, manager and testcase output */
.tc-tiddler-body .tc-tabbed-table-of-contents, .tc-manager-list-item-content, .tc-test-case-output {
	overflow-x: auto;
}/* A wrapper to fix table overflow */.tc-table-wrapper {
	overflow-x: auto;
}/*
** Chooser
*/.tc-chooser {
	border-right: 1px solid #f0f0f0;
	border-left: 1px solid #f0f0f0;
}.tc-chooser-item {
	border-bottom: 1px solid #f0f0f0;
	border-top: 1px solid #f0f0f0;
	padding: 2px 4px 2px 14px;
}.tc-drop-down .tc-chooser-item {
	padding: 2px;
}.tc-chosen,
.tc-chooser-item:hover {
	background-color: #f0f0f0;
	border-color: #a8a8a8;
}.tc-chosen .tc-tiddlylink {
	cursor:default;
}.tc-chooser-item .tc-tiddlylink {
	display: block;
	text-decoration: none;
	background-color: transparent;
}.tc-chooser-item:hover .tc-tiddlylink:hover {
	text-decoration: none;
}.tc-drop-down .tc-chosen .tc-tiddlylink,
.tc-drop-down .tc-chooser-item .tc-tiddlylink:hover {
	color: #333333;
}.tc-chosen > .tc-tiddlylink:before {
	margin-left: -10px;
	position: relative;
	content: "» ";
}.tc-chooser-item svg,
.tc-chooser-item img{
	max-width: 1em;
	max-height: 1em;
	vertical-align: middle;
}.tc-language-chooser .tc-image-button img {
	max-width: 2em;
	max-height: 1em;
	width: auto;
	height: auto;
	vertical-align: -0.15em;
}/*
** Palette swatches
*/.tc-swatches-horiz {
}.tc-swatches-horiz .tc-swatch {
	display: inline-block;
}.tc-swatch {
	width: 2em;
	height: 2em;
	margin: 0.4em;
	border: 1px solid #888;
}input.tc-palette-manager-colour-input {
	width: 100%;
	padding: 0;
}/*
** Table of contents
*/.tc-sidebar-lists .tc-table-of-contents {
	white-space: nowrap;
}.tc-table-of-contents button,
.tc-table-of-contents .toc-item-muted {
	color: #acacac;
}.tc-table-of-contents svg {
	width: 0.7em;
	height: 0.7em;
	vertical-align: middle;
	fill: #acacac;
}.tc-table-of-contents ol {
	list-style-type: none;
	padding-left: 0;
}.tc-table-of-contents ol ol {
	padding-left: 1em;
}.tc-table-of-contents li {
	font-size: 1.0em;
	font-weight: bold;
}.tc-table-of-contents li a {
	font-weight: bold;
}.tc-table-of-contents li li {
	font-size: 0.95em;
	font-weight: normal;
	line-height: 1.4;
}.tc-table-of-contents li li a {
	font-weight: normal;
}.tc-table-of-contents li li li {
	font-size: 0.95em;
	font-weight: normal;
	line-height: 1.5;
}.tc-table-of-contents li li li li {
	font-size: 0.95em;
	font-weight: normal;
}.tc-tabbed-table-of-contents {
	display: -webkit-flex;
	display: flex;
}.tc-tabbed-table-of-contents .tc-table-of-contents {
	z-index: 100;
	display: inline-block;
	padding-left: 1em;
	max-width: 50%;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
	background: #d8d8d8;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a,
.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a {
	display: block;
	padding: 0.12em 1em 0.12em 0.25em;
}.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a {
	border-top: 1px solid #d8d8d8;
	border-left: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
}.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item > a:hover {
	text-decoration: none;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background: #cccccc;
}.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a {
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	background: #ffffff;
	margin-right: -1px;
}.tc-tabbed-table-of-contents .tc-table-of-contents .toc-item-selected > a:hover {
	text-decoration: none;
}.tc-tabbed-table-of-contents .tc-tabbed-table-of-contents-content {
	display: inline-block;
	vertical-align: top;
	padding-left: 1.5em;
	padding-right: 1.5em;
	border: 1px solid #cccccc;
	-webkit-flex: 1 0 50%;
	flex: 1 0 50%;
}/*
** Dirty indicator
*/html body svg.tc-image-save-button-dynamic .tc-image-save-button-dynamic-clean {
	visibility: visible;
}html body svg.tc-image-save-button-dynamic .tc-image-save-button-dynamic-dirty {
	visibility: hidden;
}html body.tc-dirty svg.tc-image-save-button-dynamic .tc-image-save-button-dynamic-clean {
	visibility: hidden;
}html body.tc-dirty svg.tc-image-save-button-dynamic .tc-image-save-button-dynamic-dirty {
	visibility: visible;
}html body.tc-dirty span.tc-dirty-indicator, html body.tc-dirty span.tc-dirty-indicator svg {
	fill: #ff0000;
	color: #ff0000;
}/*
** File inputs
*/.tc-file-input-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
}.tc-file-input-wrapper input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 999px;
	max-width: 100%;
	max-height: 100%;
	filter: alpha(opacity=0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: pointer;
	display: inline-block;
}::-webkit-file-upload-button {
	cursor:pointer;
}/*
** Thumbnail macros
*/.tc-thumbnail-wrapper {
	position: relative;
	display: inline-block;
	margin: 6px;
	vertical-align: top;
}.tc-thumbnail-right-wrapper {
	float:right;
	margin: 0.5em 0 0.5em 0.5em;
}.tc-thumbnail-image {
	text-align: center;
	overflow: hidden;
	border-radius: 3px;
}.tc-thumbnail-image svg,
.tc-thumbnail-image img {
	filter: alpha(opacity=1);
	opacity: 1;
	min-width: 100%;
	min-height: 100%;
	max-width: 100%;
}.tc-thumbnail-wrapper:hover .tc-thumbnail-image svg,
.tc-thumbnail-wrapper:hover .tc-thumbnail-image img {
	filter: alpha(opacity=0.8);
	opacity: 0.8;
}.tc-thumbnail-background {
	position: absolute;
	border-radius: 3px;
}.tc-thumbnail-icon svg,
.tc-thumbnail-icon img {
	width: 3em;
	height: 3em;
	
-webkit-filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
	-moz-filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
		filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));

}.tc-thumbnail-wrapper:hover .tc-thumbnail-icon svg,
.tc-thumbnail-wrapper:hover .tc-thumbnail-icon img {
	fill: #fff;
	
-webkit-filter: drop-shadow(3px 3px 4px rgba(0,0,0,0.6));
	-moz-filter: drop-shadow(3px 3px 4px rgba(0,0,0,0.6));
		filter: drop-shadow(3px 3px 4px rgba(0,0,0,0.6));

}.tc-thumbnail-icon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-flex;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
}.tc-thumbnail-caption {
	position: absolute;
	background-color: #777;
	color: #fff;
	text-align: center;
	bottom: 0;
	width: 100%;
	filter: alpha(opacity=0.9);
	opacity: 0.9;
	line-height: 1.4;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}.tc-thumbnail-wrapper:hover .tc-thumbnail-caption {
	filter: alpha(opacity=1);
	opacity: 1;
}/*
** Diffs
*/.tc-diff-equal {
	background-color: ;
	color: #333333;
}.tc-diff-insert {
	background-color: #aaefad;
	color: #333333;
}.tc-diff-delete {
	background-color: #ffc9c9;
	color: #333333;
}.tc-diff-invisible {
	background-color: ;
	color: #bbbbbb;
}.tc-diff-tiddlers th {
	text-align: right;
	background: #ffffff;
	font-weight: normal;
	font-style: italic;
}.tc-diff-tiddlers pre {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
}/*
** Errors
*/.tc-error {
	background: #f00;
	color: #fff;
}/*
** Tree macro
*/.tc-tree div {
	padding-left: 14px;
}.tc-tree ol {
	list-style-type: none;
	padding-left: 0;
	margin-top: 0;
}.tc-tree ol ol {
	padding-left: 1em;
}.tc-tree button {
	color: #acacac;
}.tc-tree svg {
	fill: #acacac;
}.tc-tree span svg {
	width: 1em;
	height: 1em;
	vertical-align: baseline;
}.tc-tree li span {
	color: lightgray;
}select {
	color: ;
	background: ;
}/*
** Translink macro
*/.tc-translink {
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
	padding: 0 3px;
	border-radius: 3px;
}div.tc-translink > div {
	margin: 1em;
}div.tc-translink > div > a:first-child > h1 {
	font-size: 1.2em;
	font-weight: bold;
}span.tc-translink > a:first-child {
	font-weight: bold;
}/*
** Classes for displaying globals
*/.tc-global-tiddler-body {
	padding: 0.25em;
	border: 1px solid #333333;
	background-color: #bbbbbb;
	border-radius: 3px;
}.tc-global-tiddler-body-heading {
	margin: 0 0 0.25em 0;
	font-weight: normal;
}.tc-global-tiddler-body-type {
	margin: 0 0 0.25em 0;
	border-bottom: 1px solid #333333;
}.tc-global-tiddler-body-details {
	background-color: #ffffff;
}.tc-global-tiddler-body pre {
	margin: 0;
	border: 1px solid #333333;
}/*
** Utility classes for SVG icons
*/.tc-fill-background {
	fill: #ffffff;
}.tc-network-activity-background {
	fill: #448844;
}/*
** Test Cases
*/.tc-test-case-wrapper {
	border: 1px solid #333333;
	background-color: #bbbbbb;
	border-radius: 6px;
}.tc-test-case-wrapper {
	background-color: #c1eaff;
}.tc-test-case-wrapper .tc-test-case-wrapper {
	background-color: #E3B740;
}.tc-test-case-wrapper .tc-test-case-wrapper .tc-test-case-wrapper {
	background-color: #5FD564;
}.tc-test-case-header {
	font-weight: normal;
	margin: 0.5em 0;
	padding: 0 0.5em;
}.tc-test-case-divider {
	x-background-color: #bbbbbb;
}.tc-test-case-result-icon {
	fill: #fff;
	padding: 0.25em;
	display: inline-block;
	line-height: 0;
	border-radius: 1em;
	vertical-align: text-bottom;
	margin-right: 0.25em;
}.tc-test-case-result-icon-pass {
	background-color: green;
}.tc-test-case-result-icon-fail {
	background-color: red;
}.tc-test-case-result-icon svg {
	width: 0.5em;
	height: 0.5em;
}.tc-test-case-header > h2 {
	background: #ffffff;
	border-radius: 4px;
	padding: 0.25em;
}.tc-test-case-header > h2,
.tc-test-case-source > pre {
	margin: 0;
}.tc-test-case-header > h2 a.tc-tiddlylink-missing {
	font-style: normal;
}.tc-test-case-toolbar {
	float: right;
}.tc-test-case-toolbar svg {
	fill: #cccccc;
}.tc-test-case-toolbar .tc-drop-down {
	font-size: 0.8em;
}.tc-test-case-result-fail {
	border: 1px solid #333333;
	background-color: #ffffff;
	border-radius: 4px;
	margin: 0 0.5em;
	padding: 0;
}.tc-test-case-result-fail-header {
	background: #ffc9c9;
	color: #333333;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	padding: 4px;
}.tc-test-case-result-fail-body {
	padding: 4px;
}.tc-test-case-source > pre {
	height: 100%;
}.tc-test-case-narrative {
	padding: 0.5em;
}.tc-test-case-panes {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	padding: 0.5em;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}.tc-test-case-source {
	flex: 1 0 49%;
	min-width: 250px;
}.tc-test-case-source .tc-tab-content {
	background: inherit;
	margin: 0;
}.tc-test-case-source .tc-tab-content .tc-field-table {
	background: #ffffff;
}.tc-test-case-source .tc-field-table {
	width: 100%;
}.tc-test-case-source table.tc-field-table {
	margin: 0;
}.tc-test-case-source .tc-tiddler-frame .tc-edit-texteditor {
	margin: 0;
}.tc-test-case-divider {
	flex: 0 0 1.5%;
}.tc-test-case-source .tc-tab-buttons {
	padding-top: 0;
}.tc-test-case-footer-toolbar {
	display: flex;
	justify-content: flex-end;
}.tc-test-case-output {
	box-shadow: inset 2px 2px 10px 0px #bbbbbb;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid #bbbbbb;
	flex: 1 0 49%;
	min-width: 250px;
	padding: 0.25em 1em;
}/*
** Flexbox utility classes
*/.tc-flex {
	display: -webkit-flex;
	display: flex;
}.tc-flex-column {
	flex-direction: column;
}.tc-flex-row {
	flex-direction: row;
}.tc-flex-grow-1 {
	flex-grow: 1;
}.tc-flex-grow-2 {
	flex-grow: 2;
}/*
** Other utility classes
*//* Horizontal gaps */.tc-tiny-gap {
	margin-left: .25em;
	margin-right: .25em;
}.tc-tiny-gap-left {
	margin-left: .25em;
}.tc-tiny-gap-right {
	margin-right: .25em;
}.tc-small-gap {
	margin-left: .5em;
	margin-right: .5em;
}.tc-small-gap-left {
	margin-left: .5em;
}.tc-small-gap-right {
	margin-right: .5em;
}.tc-big-gap {
	margin-left: 1em;
	margin-right: 1em;
}.tc-big-gap-left {
	margin-left: 1em;
}.tc-big-gap-right {
	margin-right: 1em;
}.tc-word-break {
	word-break: break-all;
}/* Vertical gaps */.tc-tiny-v-gap-bottom {
	margin-bottom: 3px;
}.tc-dynannotation-wrapper {
	position: relative;
}.tc-dynannotation-annotation-overlay {
	position: absolute;
	background: rgba(255,255,0,0.3);
	mix-blend-mode: multiply;
}.tc-dynannotation-search-overlay {
	position: absolute;
	pointer-events: none;
	background: rgba(255,0,0,0.3);
}.tc-dynannotation-search-overlay-blurred {
	background: rgba(255,0,0,0.3);
	mix-blend-mode: multiply;
	border-radius: 4px;
	filter: blur(2px);
}@keyframes ta-dynannotation-search-overlay-animated { to { background-position: 100% 100% } }.tc-dynannotation-search-overlay-animated {
	mix-blend-mode: multiply;
	background: repeating-linear-gradient(-45deg, #ff8 0, #dd8 25%, transparent 0, transparent 50%) 0 / .6em .6em;
	animation: ta-dynannotation-search-overlay-animated 12s linear infinite;
}.tc-dynannotate-example-frame {
    border: 1px solid black;
    border-radius: 20px;
    padding: 1em;
}.tc-control-panel table.tc-dynannotate-search-parameters, .tc-control-panel table.tc-dynannotate-search-parameters input {
    width: initial;
}.tc-dynannotate-snippet-highlight {
	background: #efef53;
}.tc-dynannotation-example-info {
	background: #ffa;
	padding: 1em;
}.tc-dynannotate-spotlight-wrapper {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1000;
	pointer-events: none;
}.tc-dynannotate-spotlight {
	position: absolute;
	height: 100%;
	width: 100%;
	display: none;
}
nav.tc-menubar {
	position: fixed;
	z-index: 850;
	display: inline-block;
	top: 0;
	right: 0;
	left: 0;
}nav.tc-menubar ul.tc-menubar-list {
	position: relative;
	list-style-type: none;
	margin: 0;
	padding: 0 0 0 42px;
	background: #ffffff;
	background: #5778d8;
	
-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
		box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);

}@media (max-width: 959px) {html nav.tc-menubar ul.tc-menubar-list {
		padding: 0 0 0 8px;
	}}nav.tc-menubar li.tc-menubar-item {
	display: inline-block;
	margin: 0;
	padding: 0;
}nav.tc-menubar .tc-menubar-narrow li.tc-menubar-item {
	display: block;
}nav.tc-menubar li.tc-menubar-item > a,
nav.tc-menubar li.tc-menubar-item > button {
	display: inline-block;
/*	text-transform: uppercase; */
	line-height: 1;
	font-weight: 700;
	color: #333333;
	color: #fff;
	fill: #333333;
	fill: #fff;
	text-decoration: none;
	padding: 0.5em;
	margin: 0;
	background: none;
	border: none;
	cursor: pointer;
	border-radius: 0;
	text-decoration: none;
}nav.tc-menubar li.tc-menubar-item > a.tc-selected,
nav.tc-menubar li.tc-menubar-item > button.tc-selected {
	background: #333333;
	background: #fff;
	color: #ffffff;
	color: #5778d8;
	fill: #ffffff;
	fill: #5778d8;
}nav.tc-menubar li.tc-menubar-item svg {
	transition: none;
	width: 1em;
	height: 1em;
	fill: #333333;
	fill: #fff;
}nav.tc-menubar li.tc-menubar-item .tc-menubar-dropdown-arrow svg {
	width: 0.5em;
	height: 0.5em;
}nav.tc-menubar li.tc-menubar-item > a.tc-selected svg,
nav.tc-menubar li.tc-menubar-item > button.tc-selected svg {
	fill: #ffffff;
	fill: #5778d8;
}nav.tc-menubar li.tc-menubar-item > a:hover,
nav.tc-menubar li.tc-menubar-item > button:hover svg,
nav.tc-menubar li.tc-menubar-item > button:hover {
	background: #333333;
	background: #fff;
	color: #ffffff;
	color: #5778d8;
	fill: #ffffff;
	fill: #5778d8;
	border-radius: 0;
	text-decoration: none;
}nav.tc-menubar li.tc-menubar-item > a:active,
nav.tc-menubar li.tc-menubar-item > button:active svg,
nav.tc-menubar li.tc-menubar-item > button:active {
	background: #333333;
	background: #fff;
	color: #ffffff;
	color: #5778d8;
	fill: #ffffff;
	fill: #5778d8;
	border-radius: 0;
	text-decoration: none;
}nav.tc-menubar .tc-drop-down,
nav.tc-menubar .tc-block-dropdown {
	max-width: 70vw;
	max-height: 70vh;
	overflow: auto;
}nav.tc-menubar .tc-drop-down a {
	text-decoration: none;
}nav.tc-menubar .tc-drop-down .tc-table-of-contents button {
	display: inline-block;
	width: auto;
}nav.tc-menubar .tc-drop-down ol {
	margin: 0;
}nav.tc-menubar .tc-drop-down .tc-menubar-dropdown-sidebar a,
nav.tc-menubar .tc-drop-down .tc-menubar-dropdown-sidebar button {
	display: inline;
	width: auto;
}nav.tc-menubar .tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button {
	display: block;
	width: 100%;
}@media (max-width: 620px) {.tc-menubar-wide {
		display: none;
	}}@media (min-width: 621px) {nav.tc-menubar li.tc-menubar-item.tc-menubar-narrow,
	.tc-menubar-narrow {
		display: none;
	}}@media (max-width: 959px) {.tc-sidebar-scrollable {
		margin-top: 2em;
	}}@media (max-width: 620px) {.tc-sidebar-scrollable {
		margin-top: 2em;
	}
}
@media print {nav.tc-menubar {
		display: none;
	}}
/* CSS modified for TiddlyWiki */svg.railroad-diagram {
	background-color: #ffffff;
	border-radius: 5px;
}
/*
svg.railroad-diagram:hover {
	background-color: hsl(30,20%,96%);
}
*/
svg.railroad-diagram path,
svg.railroad-diagram rect {
	stroke-width: 2;
	stroke: #cfd6e6;
}
svg.railroad-diagram path {
	fill: #ffffff;
}
svg.railroad-diagram rect {
	fill: #ecf2ff;
}
svg.railroad-diagram text {
	font: 14px monospace;
	text-anchor: middle;
	fill: #547599;
}
svg.railroad-diagram text.label {
	text-anchor: start;
}
svg.railroad-diagram text.comment {
	font: italic 12px monospace;
}
svg.railroad-diagram path.arrow {
    stroke-width: 2;
}.tc-tour-panel {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 310px;
	height: 400px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	
-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
		box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);

	border: 1px solid #228877;
	background: #cbfff8;
	border-radius: 8px;
	padding: 1em;
	margin: 0.5em;
	z-index: 2000;
}.tc-tour-panel-navigation .tc-btn-big-green {
	border-radius: 0.25em;
	margin: 0 1em 0 0;
}.tc-tour-panel-navigation .tc-btn-big-green.tc-tour-panel-navigation-back {
	background: red;
	color: white;
}.tc-tour-panel-navigation .tc-btn-big-green.tc-tour-panel-navigation-next {
	background: purple;
	color: white;
}.tc-tour-panel-navigation .tc-btn-big-green.tc-tour-panel-navigation-hint {
	background: purple;
	color: white;
}.tc-tour-panel-navigation .tc-btn-big-green:hover {
	color: #ffffff;
	background: #333333;
}.tc-tour-panel-fullscreen {
	top: 0;
	right: 0;
	width: auto;
	height: auto;
	box-shadow: none;
	border: none;
	background: #f4f4f4;
	margin: 0;
	border-radius: 0;
}.tc-tour-panel-controls .tc-tour-panel-list-button {
	padding: 2px 8px;
	border-radius: 1em;
	color: #888888;
	text-align: left;
}.tc-tour-panel-controls .tc-tour-panel-list-button.tc-selected {
	color: #ffffff;
	fill: #ffffff;
	background: #5778d8;
}.tc-tour-panel-controls .tc-tour-panel-list-button:hover {
	background: #bbbbbb;
	color: #ffffff;
}.tc-tour-panel-controls .tc-popup .tc-drop-down {
	font-size: 1em;
	color: #888888;
	min-width: auto;
}.tc-tour-panel-chooser-item {
	border: 1px solid #bbbbbb;
	background: #ffffff;
	color: #333333;
	padding: 4px 4px 4px 8px;
	margin: 12px 0;
	border-radius: 12px;
	box-shadow: 3px 3px 5px #bbbbbb;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 1em;
}.tc-tour-panel-chooser-item .tc-tour-panel-chooser-start-button {
	display: inline-block;
	width: auto;
	padding: 4px;
	font-size: 0.7em;
	vertical-align: baseline;
	border-radius: 1em;
	background: #34c734;
	color: #ffffff;
	fill: #ffffff;
	text-transform: uppercase;
}.tc-tour-panel-chooser-wrapper button:hover {
	background: #5778d8;
	color: #ffffff;
}.tc-tour-panel-fullscreen h1 {
	background: none;
	padding: 0.25em;
	margin: -0.25em;
	border-radius: 4px;
}.tc-tour-panel-fullscreen .tc-tour-panel-controls {
	/* display: none; */
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 4px;
	color: #bbbbbb;
}.tc-tour-panel .tc-tour-panel-banner-image {
	display: none;
}.tc-tour-panel-fullscreen .tc-tour-panel-banner-image {
	display: block;
	width: 100px;
	float: right;
	margin: 4em 2em 2em 2em;
}.tc-tour-panel-fullscreen .tc-tour-panel-inner {
	width: 30%;
	min-width: 350px;
	height: 30%;
	margin: 10em auto 0 auto;
}.tc-tour-panel .tc-tour-panel-inner .tc-tiddler-frame {
	position: static;
	width: auto;
	padding: 1.5em 2.5em;
}.tc-tour-panel .tc-tour-panel-inner .tc-tiddler-frame .tc-titlebar {
	font-size: 1.5em;
	line-height: 1.1;
}.tc-tour-task {
	background: #34c734;
	color: #ffffff;
	padding: 0.5em;
	border-radius: 1em;
}.tc-tour-task svg {
	fill: #ffffff;
	vertical-align: middle;
	width: 1.2em;
	height: 1.2em;
	margin-right: 0.5em;
}.tc-tour-settings-tour-details,
.tc-tour-settings-tour-step-details {
	width: 100%;
}.tc-tour-settings-tour-details th,
.tc-tour-settings-tour-step-details th {
	text-align: right;
	vertical-align: top;
	font-weight: normal;
	width:10em;
}.tc-tour-settings-tour-details td,
.tc-tour-settings-tour-step-details td {
	font-weight: bold;
}.tc-tour-settings-tour-details-description {}.tc-tour-settings-tour-details-logo img {
	max-width: 200px;
	max-height: 100px;
}.tc-tour-settings-tour-settings {
	border: 1px solid #bbbbbb;
	margin: 0.5em 0;
	padding: 0.5em;
}.tc-tour-settings-tour-step {
	border: 1px solid #333333;
}.tc-tour-settings-tour-step-heading {
	background: #bbbbbb;
	border: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
}.tc-tour-settings-tour-step-open-button,
.tc-tour-settings-tour-step-launch-button {
	display: inline-block;
	padding: 0.25em;
}.tc-tour-settings-tour-step-open-button {
	flex-grow: 1;
	text-align: left;
}.tc-tour-settings-tour-step-launch-button {
	flex-grow: 0;
}.tc-tour-settings-tour-step-open-button:hover,
.tc-tour-settings-tour-step-launch-button:hover {
	background: #333333;
	color: #ffffff;
	fill: #ffffff;
}.tc-tour-settings-tour-step-heading-step-number {
	font-weight: bold;
	background: #333333;
	color: #ffffff;
	border-radius: 1em;
	font-size: 0.9em;
	display: inline-block;
	padding: 0 4px;
}.tc-tour-settings-tour-step-details {
	margin: 0;
}.tc-tour-settings-tour-step-body {
	padding: 0.5em;
}
.tc-sidebar-header {
	text-shadow: 0 1px 0 #ffffff;
}.tc-tiddler-info {
	
-webkit-box-shadow: inset 1px 2px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 2px 3px rgba(0,0,0,0.1);
		box-shadow: inset 1px 2px 3px rgba(0,0,0,0.1);

}@media screen {
	.tc-tiddler-frame {
		
-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
		box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);

	}
}@media (max-width: 959px) {
	.tc-tiddler-frame {
		
-webkit-box-shadow: none;
	-moz-box-shadow: none;
		box-shadow: none;

	}
}.tc-page-controls button svg, .tc-tiddler-controls button svg, .tc-topbar button svg {
	
-webkit-transition: fill 150ms ease-in-out;
	-moz-transition: fill 150ms ease-in-out;
		transition: fill 150ms ease-in-out;

}.tc-tiddler-controls button.tc-selected,
.tc-page-controls button.tc-selected {
	
-webkit-filter: drop-shadow(0px -1px 2px rgba(0,0,0,0.25));
	-moz-filter: drop-shadow(0px -1px 2px rgba(0,0,0,0.25));
		filter: drop-shadow(0px -1px 2px rgba(0,0,0,0.25));

}.tc-tiddler-frame input.tc-edit-texteditor,
.tc-tiddler-frame select.tc-edit-texteditor {
	
-webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.15);
		box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.15);

}.tc-edit-tags {
	
-webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.15);
		box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.15);

}.tc-tiddler-frame .tc-edit-tags input.tc-edit-texteditor {
	
-webkit-box-shadow: none;
	-moz-box-shadow: none;
		box-shadow: none;

	border: none;
	outline: none;
}textarea.tc-edit-texteditor {
	font-family: ;
}canvas.tc-edit-bitmapeditor  {
	
-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
		box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}.tc-drop-down {
	border-radius: 4px;
	
-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
		box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);

}.tc-block-dropdown {
	border-radius: 4px;
	
-webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
		box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);

}.tc-modal {
	border-radius: 6px;
	
-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
		box-shadow: 0 3px 7px rgba(0,0,0,0.3);

}.tc-modal-footer {
	border-radius: 0 0 6px 6px;
	
-webkit-box-shadow: inset 0 1px 0 #fff;
	-moz-box-shadow: inset 0 1px 0 #fff;
		box-shadow: inset 0 1px 0 #fff;
;
}.tc-alert {
	border-radius: 6px;
	
-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.6);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.6);
		box-shadow: 0 3px 7px rgba(0,0,0,0.6);

}.tc-notification {
	border-radius: 6px;
	
-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
		box-shadow: 0 3px 7px rgba(0,0,0,0.3);

	text-shadow: 0 1px 0 rgba(255,255,255, 0.8);
}.tc-sidebar-lists .tc-tab-set .tc-tab-divider {
	border-top: none;
	height: 1px;
	
background-image: linear-gradient(left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 100%);
background-image: -o-linear-gradient(left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 100%);
background-image: -moz-linear-gradient(left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 100%);
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 100%);
background-image: -ms-linear-gradient(left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.0) 100%);

}.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button {
	
background-image: linear-gradient(left, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.1) 100%);
background-image: -o-linear-gradient(left, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.1) 100%);
background-image: -moz-linear-gradient(left, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.1) 100%);
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.1) 100%);
background-image: -ms-linear-gradient(left, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.1) 100%);

}.tc-more-sidebar > .tc-tab-set > .tc-tab-buttons > button.tc-tab-selected {
	
background-image: linear-gradient(left, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0.05) 100%);
background-image: -o-linear-gradient(left, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0.05) 100%);
background-image: -moz-linear-gradient(left, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0.05) 100%);
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0.05) 100%);
background-image: -ms-linear-gradient(left, rgba(0,0,0,0.05) 0%, rgba(255,255,255,0.05) 100%);

}.tc-message-box img {
	
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
		box-shadow: 1px 1px 3px rgba(0,0,0,0.5);

}.tc-plugin-info {
	
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
		box-shadow: 1px 1px 3px rgba(0,0,0,0.5);

}
.tc-sites-icon {
	width: 1em;
	height: 1em;
}.tc-sites-menu {
	font-size: 1.2em;
}.tc-sites-menu ol {
	margin: 0;
	list-style-type: none;
	padding-left: 0;
}.tc-sites-menu ol li a {
	display: block;
	padding: 0.25em 14px 0.25em 14px;
	width: 100%;
	text-align: left;
	color: #333333;
	line-height: 1.4;
	text-decoration: none;
}.tc-sites-menu ol li .tc-sites-menu-disabled {
	padding: 0.25em 14px 0.25em 14px;
}.tc-sites-menu-this-site {
	color: #ffffff;
	background: #bbbbbb;
	font-size: 0.6em;
	border-radius: 1em;
	padding: 2px 6px;
	margin-left: 1em;
	vertical-align: top;
}.tc-sites-menu-icon {
	margin-right: 0.5em;
	width: 1em;
}
.tc-hero-heading a.tc-tiddlylink {
	font-weight: bold;
}.tc-double-spaced-list li {
	padding-bottom: .5em;
	padding-top: .5em;
}.tc-link-info-item {
    border: 1px solid #ebefcd;
    padding: 5px 10px;
    margin-bottom: 10px;
    background: #f7f7f9;
    font-size: 0.8em;
    line-height: 1.2;
}.tc-link-info-item h1 {
	font-weight: 500;
	font-size: 16px;	
}.tc-scrollable-demo {
	border: 1px solid #cfd6e6;
	background-color: #ecf2ff;
	padding: 1em;
	height: 400px;
	position: relative;
	overflow: auto;
}.tc-improvement-banner {
	font-size: 0.7em;
	background: #fcc;
	padding-left: 5px;
	margin-top: 6px;
	margin-bottom: 12px;
	
-webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
	-moz-box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
		box-shadow: 2px 2px 2px rgba(0,0,0,0.4);

}@media (max-width: 960px) {
	
	.tc-improvement-banner {
	}}@media (min-width: 960px) {.tc-improvement-banner {
		margin-right: -53px;
		margin-left: -53px;
	}.tc-improvement-banner:before {
		display: block;
		position: absolute;
		width: 0;
		height: 0;
		content: " ";
		margin-left: -5px;
		margin-top: -10px;
		border-top: 5px solid transparent;
		border-left: 5px solid transparent;
		border-right: 5px solid #C07E7E;
		border-bottom: 5px solid #C07E7E;
	}}.tc-improvement-banner svg {
	width: 1em;
	height: 1em;
}.tc-wrapper-flex {
	display: flex;
}.tc-btn-download {
	padding: 10px 30px;
	border-radius: 5px;
	background: #34c734;
	border: none;
	box-shadow: 1px 2px 2px 0 #bbbbbb;
	overflow: hidden;
	cursor: pointer;
	font-size: 1.2em;
	line-height: 1.4em;
	color: #fff;
	fill: #fff;
}.tc-btn-download:active {
	box-shadow: none;
}/* WikiText rules */.multi-columns,
.fourcolumns {
	display: block;
	column-count: 4;
	column-gap: 1em;
	-moz-column-count: 4;
	-moz-column-gap: 1em;
	-webkit-column-count: 4;
	-webkit-column-gap: 1em;
}/* Switch to 2 columns for 780x1280 displays which is 780p */
@media (max-width: 1279px) {
	.multi-columns {
		column-count: 2;
	}
}@media (max-width: 960px) {
	.multi-columns {
		column-count: 1;
	}
}.tc-grid-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
	gap: 1em;
	width: 100%; /* Ensures container stretches fully */
}.tc-grid-columns.tc-grid-columns-2 > div {
	border-radius: 1em;
	padding: 1em;
	background-color: #ffe476;
}.tc-grid-columns.tc-grid-columns-2 > div:nth-child(odd) {
	color: #333333;
	background-color: #ffc9c9;
}.tc-saving-sidebar-category { margin-bottom:10px; }
.tc-saving-sidebar-category-title { margin-bottom:5px; font-weight:bold; }
.tc-saving-sidebar-category-item { margin-left:10px; white-space:nowrap; }.tc-scary-warning {
	font-weight: bold;
	padding: 0 1em;
	margin-left: -1em;
	margin-right: -1em;
	color: #f22;
	border-radius: 4px;
	border: 3px solid transparent;
	background: #ffd;
	background: linear-gradient(#ffd, #ffd) padding-box, repeating-linear-gradient(-45deg, red 0, red 25%, transparent 0, transparent 50%) 0 / .6em .6em;
}
.tc-custom-tiddler-template {
	border: 3px solid #bbbbbb;
	border-radius: 1em;
	margin-bottom: 1em;
}.tc-custom-tiddler-template-inner {
	background: #bbbbbb;
	padding: 1em;
}.tc-custom-tiddler-template-list {
	position: relative;
	height: 33vh;
}.tc-custom-tiddler-template-list .tc-custom-tiddler-template-list-item {
	position: absolute;
	width: 100%;
	transform-origin: 50% 0;
	top: 50px;
	left: 0;
	
-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
		box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);

}.tc-custom-tiddler-template-list .tc-custom-tiddler-template-list-item .tc-tiddler-frame {
	margin: 0;
}.tc-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	padding: 0.5em;
	background: #ffffff;
	border-color: rgba(34,36,38,.15);
	box-shadow: 0 2px 25px 0 rgb(34 36 38 / 5%) inset;
	gap: 1em;
}.tc-cards.tc-small {
	text-align: center;
	font-size: 0.7em;
}.tc-cards.tc-action-card {
	text-align: center;
	background: none;
}.tc-cards.tc-cards-vertical {
}.tc-cards.tc-action-card .tc-card-button {
	border: 1px solid #333333;
	background: #333333;
	margin: 0.5em;
	border-radius: 6px;
	padding: 0.5em;
	color: #ffffff;
	fill: #ffffff;
}.tc-cards.tc-action-card .tc-card-button svg {
	width: 0.65em;
	height: 0.65em;
	vertical-align: middle;
}.tc-tiddlylink.tc-card {
	font-weight: normal;
	flex-grow: 1;
	max-width: 250px;
	position: relative;
	background: #ffffff;
	color: #333333;
	width: 200px;
	min-height: 0;
	border: none;
	border-radius: 8px;
	box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
	transition: box-shadow 0.3s ease,transform .3s ease;
}.tc-cards.tc-cards-vertical .tc-tiddlylink.tc-card {
	width: 100%;
}@media (max-width: 500px) {
	
	.tc-cards {
		padding: 0;
	}.tc-tiddlylink.tc-card {
		margin: 0.25em;
		width: 45%;
	}}.tc-tiddlylink.tc-card.tc-card-quote {
	width: 320px;
	box-shadow: none;
	background-color: #effdff;
}.tc-card-accent {
	height: 100%;
	display: flex;
	align-items: stretch;
	flex-direction: column;
	justify-content: stretch;
	border-radius: 8px;
}.tc-cards.tc-cards-vertical .tc-card-accent {
	flex-direction: row;
	justify-content: start;
	padding: 5px 7px;
	align-items: center;
}.tc-cards.tc-cards-vertical .tc-card-icon {
	line-height: 0;
	order: 1;
}.tc-tiddlylink.tc-card:hover {
	color: #333333;
	background: #ffffdd;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 1px 5px 0 #bcbdbd, 0 0 0 1px #d4d4d5;
	transform: translateY(-3px);
}.tc-card-ribbon-wrapper {
	line-height: 0;
	width: 75px;
	height: 75px;
	position: absolute;
	right: 0;
	overflow: hidden;
	top: 0;
	z-index: 849;
	pointer-events: none;
}.tc-card-ribbon {
	transition: top 0.3s ease-in-out;
	top: 15px;
	right: -77px;
	position: absolute;
	transform: rotate(45deg);
	background-color: red;
	box-shadow: 0px 0px 2px 0px rgb(0 0 0 / 50%);
}.tc-tiddlylink.tc-card:hover .tc-card-ribbon {
	top: -77px;
}.tc-card-ribbon-inner {
	font-size: 10px;
	line-height: 13px;
	font-weight: 700;
	color: white;
	text-decoration: none;
	text-shadow: 0 -1px rgb(0 0 0 / 50%);
	width: 200px;
	display: inline-block;
	padding: 2px 0;
	text-align: center;
}.tc-card-image {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	line-height: 0;
	overflow: hidden;
}.tc-card-image img {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	width: 100%;
	transition: transform 0.3s ease-in-out;
}.tc-tiddlylink.tc-card:hover .tc-card-image img {
	transform: scale(1.05);
}.tc-card .tc-card-icon svg {
	transition: transform 0.3s ease-in-out;
}.tc-card:hover .tc-card-icon svg {
	transform: scale(1.1);
}.tc-card-title {
	font-size: 1.2em;
	line-height: 1.2;
	font-weight: 600;
	transition: color 0.3s ease-in-out;
	padding: 0 10px;
	margin: 0.5em 0 0.25em 0;
}.tc-cards.tc-cards-vertical .tc-card-title {
	font-size: 1.1em;
	min-width: 10em;
	order: 2;
}.tc-cards.tc-cards-vertical .tc-card-title svg {
	width: 1em;
	height: 1em;
	vertical-align: text-bottom;
}.tc-card-subtitle,
.tc-card-author {
	font-size: 0.8em;
	line-height: 1.2;
	color: #bbbbbb;
	padding: 0 10px;
	margin: 0.5em 0;
	font-style: italic;
}.tc-card-body {
	font-size: 0.9em;
	line-height: 1.2;
	padding: 0.25em 10px;
	margin: 0;
}.tc-cards.tc-cards-vertical .tc-card-body {
	font-size: 1em;
}.tc-card-body-wrapper {
	position: relative;
	flex-grow: 1;
}.tc-tiddlylink.tc-card.tc-card-quote .tc-card-body:before {
	font-family: Georgia, serif;
	color: #bbbbbb;
	content: open-quote;
	font-size: 5em;
	line-height: 1;
	float: left;
}.tc-tiddlylink.tc-card.tc-card-quote .tc-card-body:after {
	font-family: Georgia, serif;
	color: #bbbbbb;
	content: close-quote;
	font-size: 5em;
	line-height: 1;
	float: right;
}.tc-tiddlylink.tc-card .tc-card-body-clear {
	clear: both;
}.tc-card-body > p {
	margin: 0.25em 0;
}.tc-card a:active, .tc-card a:focus, .tc-btn-download:active, .tc-btn-download:focus{
	outline: none; 
}.doc-def {
	font-style: normal;
	font-weight: bold;
}.doc-em {
	font-style: italic;
	font-variant: small-caps;
	text-decoration: none;
}.doc-strong {
	color: #881122;
	font-style: normal;
	font-weight: bold;
}.doc-foreign {
	font-style: italic;
}.doc-place {
	background-color: #ffffff;
	border: none;
	color: #888888;
	font-style: normal;
	font-weight: bold;
	padding: 0;
}.doc-button,
.doc-tab,
.doc-tag,
.doc-tiddler,
.doc-field,
.doc-value,
.doc-operator,
.doc-var,
.doc-widget,
.doc-attr,
.doc-param {
	background-color: #ffffff;
	border: none;
	color: #888888;
	font-weight: bold;
	padding: 0;
}a .doc-place,
a .doc-button,
a .doc-tab,
a .doc-tag,
a .doc-tiddler,
a .doc-field,
a .doc-value,
a .doc-operator,
a .doc-var,
a .doc-widget,
a .doc-attr {
	color: #5778d8;
}.doc-button svg {
	height: 1em;
}td svg {
	height: 1em;
}.doc-key {
	color: #888888;
	font-weight: bold;
}.doc-clink code {
	color: #5778d8;
}.doc-preamble {
	border: 2px solid #e1e1e8;
	color: #888888;
	margin-left: 0;
	padding: 0.5em 0.7em;
}.doc-note dt {
	color: #888888;
}
.doc-note dd {
	border-left: 2px solid #e1e1e8;
	padding-left: 0.6em;
}.doc-example {
	margin: 1em 0;
	padding: 0.8em 0;
}
.doc-example:hover {
	background-color: #f7f7f9;
}
.doc-example ul {
	margin-bottom: 0;
	padding-bottom: 0;
	margin-top: 0.2em;
}.doc-example input[type=search] { 
	width: 95%;
}
.doc-example pre:first-child {
	margin-top: 0;
}
.doc-example-result {
	border-left: 5px solid #bbbbbb;
	border-right: 5px solid #bbbbbb;
	margin-left: 0;
	margin-right: 0;
	padding: 0 10px;
}
.doc-example-result ul {
	margin-left: 0;
	padding-left: 10px;
}
.doc-example-result ol {
	margin-left: 0;
	padding-left: 20px;
}.doc-examples-hard-breaks .doc-example-result li {
    white-space: pre-wrap;
}.doc-bad-example code, .doc-bad-example pre, table.doc-bad-example {
	background-color:#ffff80;
}.doc-table th, .doc-table tr {
	vertical-align: top;
}
.doc-table th a {
	font-weight: bold;
}tr.doc-table-subheading {
	height: 2em;
	vertical-align: middle;
}.doc-table.before-tiddler-body {
	margin-top: 2em;
}.doc-icon svg {
	width: 1em;
	height: 1em;
    vertical-align: middle;
}.doc-icon-block {
	border-left: 4px solid #bbbbbb;
	margin: 15px 0 15px 3em;
	padding-left: 0.6em;
	position: relative;
}.doc-block-icon {
	position: absolute;
	left: -3em;
	top: 0.2em;
}.doc-icon-block.doc-note {
	border-left: 4px solid #bbbbbb;
	background: #bbbbbb11;
}.doc-icon-block.doc-tip {
	border-left: 4px solid #5778d8;
	background: #5778d811;
}.doc-icon-block.doc-warning {
	border-left: 4px solid #881122;
	background: #88112211;
}.doc-block-icon .tc-image-tip {
	fill: #5778d8;
}.doc-block-icon .tc-image-warning {
	fill: #881122;
}a.doc-from-version {
    background-color: #bbbbbb;
    color: #000000;
    padding: 3px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75em;
}a.doc-from-version.doc-from-version-new {
    background-color: #ffff00;
    color: #000000;
}a.doc-from-version svg {
    fill: currentColor;
    vertical-align: sub;
}a.doc-deprecated-version.tc-tiddlylink {
    display: inline-block;
    border-radius: 1em;
	background: red;
	color: #ffffff;
	fill: #ffffff;
    padding: 0 0.4em;
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.5;
    vertical-align: text-bottom;
}.doc-deprecated-version svg,
.doc-from-version svg {
	width: 1em;
	height: 1em;
    vertical-align: text-bottom;
}.doc-link-badge {
    text-decoration: none;
    background-color: #7eba4c;
    color: #333333;
    padding: 3px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75em;
}.doc-link-badge:hover {
    text-decoration: underline;
}.doc-tiddler-fields {
	background-color: #f7f7f9;
	border: 1px solid #ffffff;
	border-radius: 4px;
    padding: 0 0.5em;
}.doc-tiddler-fields h2 svg {
	height: 1em;
}.doc-tiddler-fields table, 
.doc-tiddler-fields h2 {
	margin: 0.5em 0;
}.doc-tiddler-fields table {
	background-color: #ffffff;
}@media screen {
	.doc-tiddler-fields {
		
-webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
		box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);

	}
}
.doc-github-contributors {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
ol.doc-github-contributors li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction:column;
	width:82px;
	height:82px;
	margin:3px 3px 10px 3px;
	text-decoration:none;
}
.doc-github-contributors a img { 
	border-radius: 50%; 
	background:#eee;
}
.doc-github-contributor-username {
	display:inline-block;
	font-size:12px;
	font-weight:500;
	text-align:center;
	width:75px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.doc-op-comparison {
	table-layout: fixed;
	width: 80%;
}
.doc-op-comparison th .doc-operator {
	background-color: unset;
	color: #666;
}
.doc-tabs.tc-tab-buttons button {
	font-size: 1rem;
	padding: 0.5em;
}
.doc-tabs button .doc-attr {
	background-color: unset;
	color: #666;
}
.doc-tab-link .doc-attr {
	color: unset;
}
.yellow-note, [data-tiddler-title="Hire the founder of TiddlyWiki"] {
	z-index: 800;
	margin-top: 2em;
	transform-origin: 50% 50%;
	transition: transform 200ms ease-in-out;
	transform: rotate(-0.6deg) scale(1);
	background-color: #ffff92;
	color: black;
	box-shadow: 6px 6px 14px 0px rgba(0, 0, 0, 0.3);
	border: 1px solid #cccc40;
	text-shadow: 0 1px 0 #ffffff;
}.yellow-note:hover, [data-tiddler-title="Hire the founder of TiddlyWiki"]:hover {
	transform: rotate(-0deg) scale(1.03);
}@media (max-width: 959px) {.yellow-note, [data-tiddler-title="Hire the founder of TiddlyWiki"] {
	transform: rotate(-0.6deg) scale(0.9);
}.yellow-note:hover, [data-tiddler-title="Hire the founder of TiddlyWiki"]:hover {
	transform: rotate(-0deg) scale(1.03);
}}.yellow-note h2.tc-title, [data-tiddler-title="Hire the founder of TiddlyWiki"] h2.tc-title {
	margin: 0.5em 0;
	color: #334;
	font-weight: bold;
}[data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-tags-wrapper, [data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-subtitle {
	display: none;
}.yellow-note p, [data-tiddler-title="Hire the founder of TiddlyWiki"] p {
	margin: 0.5em 0;
}.yellow-note .tc-tiddler-body h1, [data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-tiddler-body h1 {
	margin: 0.25em 0;
	font-weight: bold;
}.yellow-note .tc-tiddler-body a, [data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-tiddler-body a {
	color: #5778d8;
}[data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-btn-big-green {
	margin: 0;
	padding: 0;
	text-align: left;
	width: 100%;
	color: #334;
	font-weight: bold;
	background-color: inherit;
}@media (min-width: 960px) {[data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-btn-big-green {
	margin-left: -1.35em;
}}[data-tiddler-title="Hire the founder of TiddlyWiki"] .tc-btn-big-green svg {
	fill: #cece86;
}.yellow-note-sidebar-wrapper {
	overflow-y: hidden;
	max-height: 0em;
	transition: max-height 600ms ease-in-out;
}.yellow-note-sidebar {
	font-size: 2em;
	text-align: center;
	line-height: 1.3;
	max-width: 8.5em;
}.yellow-note-sidebar .yellow-note {
	padding: 0.5em;
	margin: 1em 0;
	transform: perspective(600px) rotateX(10deg) rotateY(5deg) scale(0.9);
	transform-style: preserve-3d;
}.yellow-note-sidebar:hover .yellow-note {
	transform: perspective(900px) rotateX(5deg) rotateY(10deg) scale(0.95);
	transform-style: preserve-3d;
}.yellow-note-sidebar:hover a {
	text-decoration: none;
}/* Thanks to https://codepen.io/dillonbrady/pen/EgRoZQ */.yellow-note-pin {
	background-color: #aaa;
	display: block;
	height: 32px;
	width: 2px;
	position: absolute;
	left: 50%;
	top: -16px;
	z-index: 1;
}.yellow-note-pin:after {
	background-color: #A31;
	background-image: radial-gradient(25% 25%, circle, hsla(0,0%,100%,.3), hsla(0,0%,0%,.3));
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.1), inset 3px 3px 3px hsla(0,0%,100%,.2), inset -3px -3px 3px hsla(0,0%,0%,.2), 23px 20px 3px hsla(0,0%,0%,.15);
	content: "";
	height: 12px;
	left: -5px;
	position: absolute;
	top: -10px;
	width: 12px;
}.yellow-note-pin:before {
	background-color: hsla(0,0%,0%,0.1);
	box-shadow: 0 0 .25em hsla(0,0%,0%,.1);
	content: "";
	height: 24px;
	width: 2px;
	left: 0;
	position: absolute;
	top: 8px;transform: rotate(57.5deg);
	-moz-transform: rotate(57.5deg);
	-webkit-transform: rotate(57.5deg);
	-o-transform: rotate(57.5deg);
	-ms-transform: rotate(57.5deg);transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
}.tc-thumbnail-tabs .tc-tab-buttons {
	background: #ecf2ff;
    text-align: center;
}.tc-thumbnail-tabs .tc-tab-buttons button {
    display: table-cell;
	width: 140px;
	height: 80px;
	vertical-align: top;
	margin: 0.3em;
	border: 2px solid #ecf2ff;
	background: #ecf2ff;
	color: #547599;
	padding: 0;
	font-weight: normal;
}.tc-thumbnail-tabs .tc-tab-buttons button.tc-tab-selected {
	border: 2px solid #333333;
	background: #ffffff;
}.tc-thumbnail-tabs .tc-tab-buttons button:hover {
	background: #547599;
	color: #ecf2ff;
}.tc-thumbnail-tabs .tc-tab-divider {
	border: none;
}.tc-thumbnail-tabs .tc-saving-thumbnail-wrapper {
	vertical-align: top;
    height: inherit;
}.tc-thumbnail-tabs .tc-saving-thumbnail-caption {
	font-weight: bold;
	background: #333333;
	color: #ffffff;
	padding: 2px 8px;
}.tc-thumbnail-tabs .tc-saving-thumbnail-description {
	padding: 2px 8px;
	font-style: italic;
    font-size: 0.85em;
}.tc-thumbnail-tabs .tc-saving-details-platform,
.tc-thumbnail-tabs .tc-btn-unpushed,
.tc-thumbnail-tabs .tc-btn-pushed  {
	display: inline-block;
	padding: 0.16em 0.7em;
	font-size: 0.9em;
	font-weight: 400;
	line-height: 1.2em;
	color: #ecf2ff;
	white-space: nowrap;
	vertical-align: baseline;
	background-color: #547599;
	border-radius: 1em;
}.tc-thumbnail-tabs .tc-btn-pushed {
	background-color: #333333;
	fill: #ffffff;
}.tc-community-card {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	border-radius: 8px;
	width: 100%;
	margin-bottom: 8px;
	background: #ffffee;
	color: #441111;
	fill: #441111;
	box-shadow: 0 1px 3px 0 rgba(212, 212, 213, 0.5), 0 0 0 1px rgba(212, 212, 213, 0.5);
	transition: box-shadow 0.3s ease,transform .3s ease;
}.tc-community-card:hover {
	box-shadow: 0 1px 6px 0 rgba(188, 189, 189, 0.5), 0 0 0 1px rgba(212, 212, 213, 0.5);
	transform: translateY(-2px);
}.tc-community-card .tc-community-card-header-link {
	background-color: #9e3060;
	color: #ddddee;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}.tc-community-card.tc-community-card-team .tc-community-card-header-link {
	background: #306090;
	color: #ddeedd;
	fill: #ddeedd;
}.tc-community-card .tc-community-card-header-link:hover {
	text-decoration: none;
	background-color: #ddddee;
	color: #9e3060;
}.tc-community-card-header {
	margin: 0;
	padding: 0.5em;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	line-height: 0;
}.tc-community-card-header .tc-community-card-field-text-title {
	font-size: 1.5em;
	font-weight: bold;
}.tc-community-card-header .tc-community-card-field-image {
	display: table-row;
	width: auto;
	max-width: 100%;
	margin-right: 12px;
}.tc-community-card-info {
	display: table;
	width: auto;
	max-width: 100%;
	padding: 8px;
	margin: 0;
	background-color: #f3f38b;
	color: #444411;
}.tc-community-card-body {
	padding: 0 8px;
}.tc-community-card .tc-community-card-field-text {
	display: table-row;
}.tc-community-card .tc-community-card-field-text-name,
.tc-community-card .tc-community-card-field-text-value {
	display: table-cell;
	padding: 2px 6px 2px 0;
	vertical-align: top;
}.tc-community-card .tc-community-card-field-text-name {
	color: #888844;
	white-space: nowrap;
	text-align: right;
	padding-right: 8px;
}.tc-community-card .tc-community-card-field-text-value {
	word-break: break-word;
	font-weight: bold;
	width: 100%;
}a.tc-community-card-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	width: auto;
	min-width:0;
	max-width: none;
	align-self: auto;
	font-size: 0.9em;
	line-height: 1;
	vertical-align: middle;
	padding: 4px;
	border-radius: 4px;
	background: #9e3060;
	color: #ddddee;
	fill: #ddddee;
	box-shadow: 0 1px 3px 0 rgba(212, 212, 213, 0.5), 0 0 0 1px rgba(212, 212, 213, 0.5);
	transition: box-shadow 0.3s ease,transform .3s ease;
}a.tc-community-card-pill.tc-community-card-pill-vacancy {
	background: #609030;
	color: #eedddd;
	fill: #eedddd;
}a.tc-community-card-pill:hover {
	text-decoration: none;
	box-shadow: 0 1px 6px 0 rgba(188, 189, 189, 0.5), 0 0 0 1px rgba(212, 212, 213, 0.5);
	transform: translateY(-2px);
	background: #ddddee;
	color: #9e3060;
	fill: #9e3060;
}a.tc-community-card-pill .tc-community-card-field-image img,
a.tc-community-card-pill .tc-community-card-field-image svg {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	display: inline-block;
}a.tc-community-card-pill .tc-community-card-field-text {
	display: inline;
}.tc-community-card-pill-stack {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
	margin: 0;
	padding: 0;
}[data-tiddler-title="Custom styles by data-tiddler-title"] {
  border: 1px solid blue;
}[data-tags*="example-test"] {
  border: 2px solid pink;
}[data-tags*="example-hardlinebreaks"] .tc-tiddler-body {
  word-break: normal;
  word-wrap: break-word;
  white-space: pre-wrap;
}[data-tags*="data-tags-styles"] .tc-tiddler-body {
  display: block;
  padding: 14px;
  margin-top: 1em;
  margin-bottom: 1em;
  word-break: normal;
  word-wrap: break-word;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  padding: 0 3px 2px;
  border-radius: 3px;
  font-family: Monaco, Consolas, "Lucida Console", "DejaVu Sans Mono", monospace;
}