/**
 * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
:root{
	--ck-content-color-mention-background:hsla(341, 100%, 30%, 0.1);
	--ck-content-color-mention-text:hsl(341, 100%, 30%);
}
#abody .mention{
	background:var(--ck-content-color-mention-background);
	color:var(--ck-content-color-mention-text);
}

#abody code{
	background-color:hsla(0, 0%, 78%, 0.3);
	padding:.15em;
	border-radius:2px;
}

#abody blockquote{
	overflow:hidden;
	padding-right:1.5em;
	padding-left:1.5em;

	margin-left:0;
	margin-right:0;
	font-style:italic;
	border-left:solid 5px hsl(0, 0%, 80%);
}

#abody[dir="rtl"] blockquote{
	border-left:0;
	border-right:solid 5px hsl(0, 0%, 80%);
}

#abody pre{
	padding:1em;
	color:hsl(0, 0%, 20.8%);
	background:hsla(0, 0%, 78%, 0.3);
	border:1px solid hsl(0, 0%, 77%);
	border-radius:2px;
	text-align:left;
	direction:ltr;

	tab-size:4;
	white-space:pre-wrap;
	font-style:normal;
	min-width:200px;
}

#abody pre code{
		background:unset;
		padding:0;
		border-radius:0;
	}

:root{
	--ck-content-font-family:Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
	--ck-content-font-size:medium;
	--ck-content-font-color:#000;
	--ck-content-line-height:1.5;
	--ck-content-word-break:break-word;
}

/* #abody{
	font-family:var(--ck-content-font-family);
	font-size:var(--ck-content-font-size);
	color:var(--ck-content-font-color);
	line-height:var(--ck-content-line-height);
	word-break:var(--ck-content-word-break);
} */

:root{
	--ck-content-font-size-tiny:0.7em;
	--ck-content-font-size-small:0.85em;
	--ck-content-font-size-big:1.4em;
	--ck-content-font-size-huge:1.8em;
}
#abody .text-tiny{
		font-size:var(--ck-content-font-size-tiny);
	}
#abody .text-small{
		font-size:var(--ck-content-font-size-small);
	}
#abody .text-big{
		font-size:var(--ck-content-font-size-big);
	}
#abody .text-huge{
		font-size:var(--ck-content-font-size-huge);
	}

:root{
	--ck-content-highlight-marker-yellow:hsl(60, 97%, 73%);
	--ck-content-highlight-marker-green:hsl(120, 93%, 68%);
	--ck-content-highlight-marker-pink:hsl(345, 96%, 73%);
	--ck-content-highlight-marker-blue:hsl(201, 97%, 72%);
	--ck-content-highlight-pen-red:hsl(0, 85%, 49%);
	--ck-content-highlight-pen-green:hsl(112, 100%, 27%);
}

#abody .marker-yellow{
		background-color:var(--ck-content-highlight-marker-yellow);
	}
#abody .marker-green{
		background-color:var(--ck-content-highlight-marker-green);
	}
#abody .marker-pink{
		background-color:var(--ck-content-highlight-marker-pink);
	}
#abody .marker-blue{
		background-color:var(--ck-content-highlight-marker-blue);
	}

#abody .pen-red{
		color:var(--ck-content-highlight-pen-red);
		background-color:transparent;
	}
#abody .pen-green{
		color:var(--ck-content-highlight-pen-green);
		background-color:transparent;
	}

#abody hr{
	margin:15px 0;
	height:4px;
	background:hsl(0, 0%, 87%);
	border:0;
}

:root{
	--ck-content-color-image-caption-background:hsl(0, 0%, 97%);
	--ck-content-color-image-caption-text:hsl(0, 0%, 20%);
}
#abody .image > figcaption{
	display:table-caption;
	caption-side:bottom;
	word-break:normal;
	overflow-wrap:anywhere;
	break-before:avoid;
	color:var(--ck-content-color-image-caption-text);
	background-color:var(--ck-content-color-image-caption-background);
	padding:.6em;
	font-size:.75em;
	outline-offset:-1px;
}
@media (forced-colors: active){
#abody .image > figcaption{
		background-color:unset;
		color:unset;
}
	}
#abody img.image_resized{
	height:auto;
}

#abody .image.image_resized{
	max-width:100%;
	display:block;
	box-sizing:border-box;
}

#abody .image.image_resized img{
		width:100%;
	}

#abody .image.image_resized > figcaption{
		display:block;
	}

:root{
	--ck-content-image-style-spacing:1.5em;
	--ck-content-inline-image-style-spacing:calc(var(--ck-content-image-style-spacing) / 2);
}

#abody .image.image-style-block-align-left,
		#abody .image.image-style-block-align-right{
			max-width:calc(100% - var(--ck-content-image-style-spacing));
		}

#abody .image.image-style-align-left,
		#abody .image.image-style-align-right{
			clear:none;
		}

#abody .image.image-style-side{
			float:right;
			margin-left:var(--ck-content-image-style-spacing);
			max-width:50%;
		}

#abody .image.image-style-align-left{
			float:left;
			margin-right:var(--ck-content-image-style-spacing);
		}

#abody .image.image-style-align-right{
			float:right;
			margin-left:var(--ck-content-image-style-spacing);
		}

#abody .image.image-style-block-align-right{
			margin-right:0;
			margin-left:auto;
		}

#abody .image.image-style-block-align-left{
			margin-left:0;
			margin-right:auto;
		}

#abody .image-style-align-center{
		margin-left:auto;
		margin-right:auto;
	}

#abody .image-style-align-left{
		float:left;
		margin-right:var(--ck-content-image-style-spacing);
	}

#abody .image-style-align-right{
		float:right;
		margin-left:var(--ck-content-image-style-spacing);
	}

#abody p + .image.image-style-align-left,
	#abody p + .image.image-style-align-right,
	#abody p + .image.image-style-side{
		margin-top:0;
	}

#abody .image-inline.image-style-align-left,
		#abody .image-inline.image-style-align-right{
			margin-top:var(--ck-content-inline-image-style-spacing);
			margin-bottom:var(--ck-content-inline-image-style-spacing);
		}

#abody .image-inline.image-style-align-left{
			margin-right:var(--ck-content-inline-image-style-spacing);
		}

#abody .image-inline.image-style-align-right{
			margin-left:var(--ck-content-inline-image-style-spacing);
		}

#abody .image{
		display:table;
		clear:both;
		text-align:center;
		margin:0.9em auto;
		min-width:50px;
	}

#abody .image img{
			display:block;
			margin:0 auto;
			max-width:100%;
			min-width:100%;
			height:auto;
		}

#abody .image-inline{
		display:inline-flex;
		max-width:100%;
		align-items:flex-start;
	}

#abody .image-inline picture{
			display:flex;
		}

#abody .image-inline picture,
		#abody .image-inline img{
			flex-grow:1;
			flex-shrink:1;
			max-width:100%;
		}

:root{
	--ck-content-list-marker-color:var(--ck-content-font-color);
	--ck-content-list-marker-font-family:var(--ck-content-font-family);
	--ck-content-list-marker-font-size:var(--ck-content-font-size);
}

#abody li > p:first-of-type{
		margin-top:0;
	}

#abody li > p:only-of-type{
		margin-top:0;
		margin-bottom:0;
	}

#abody li.ck-list-marker-bold::marker{
		font-weight:bold;
	}

#abody li.ck-list-marker-italic::marker{
		font-style:italic;
	}

#abody li.ck-list-marker-color::marker{
		color:var(--ck-content-list-marker-color);
	}

#abody li.ck-list-marker-font-family::marker{
		font-family:var(--ck-content-list-marker-font-family);
	}

#abody li.ck-list-marker-font-size::marker{
		font-size:var(--ck-content-list-marker-font-size);
	}

#abody li.ck-list-marker-font-size-tiny::marker{
		font-size:var(--ck-content-font-size-tiny);
	}

#abody li.ck-list-marker-font-size-small::marker{
		font-size:var(--ck-content-font-size-small);
	}

#abody li.ck-list-marker-font-size-big::marker{
		font-size:var(--ck-content-font-size-big);
	}

#abody li.ck-list-marker-font-size-huge::marker{
		font-size:var(--ck-content-font-size-huge);
	}

#abody ol{
	list-style-type:decimal;
}

#abody ol ol{
		list-style-type:lower-latin;
	}

#abody ol ol ol{
			list-style-type:lower-roman;
		}

#abody ol ol ol ol{
				list-style-type:upper-latin;
			}

#abody ol ol ol ol ol{
					list-style-type:upper-roman;
				}

#abody ul{
	list-style-type:disc;
}

#abody ul ul{
		list-style-type:circle;
	}

#abody ul ul ul{
			list-style-type:square;
		}

#abody ul ul ul ul{
				list-style-type:square;
			}

:root{
	--ck-content-todo-list-checkmark-size:16px;
}
#abody .todo-list{
	list-style:none;
}
#abody .todo-list li{
		position:relative;
		margin-bottom:5px;
	}
#abody .todo-list li .todo-list{
			margin-top:5px;
		}
#abody .todo-list .todo-list__label > input{
			-webkit-appearance:none;
			display:inline-block;
			position:relative;
			width:var(--ck-content-todo-list-checkmark-size);
			height:var(--ck-content-todo-list-checkmark-size);
			vertical-align:middle;
			border:0;
			left:-25px;
			margin-right:-15px;
			right:0;
			margin-left:0;
		}
#abody[dir=rtl] .todo-list .todo-list__label > input{
		left:0;
		margin-right:0;
		right:-25px;
		margin-left:-15px;
	}
#abody .todo-list .todo-list__label > input::before{
		display:block;
		position:absolute;
		box-sizing:border-box;
		content:'';
		width:100%;
		height:100%;
		border:1px solid hsl(0, 0%, 20%);
		border-radius:2px;
		transition:250ms ease-in-out box-shadow;
	}
@media (prefers-reduced-motion: reduce){
#abody .todo-list .todo-list__label > input::before{
			transition:none;
	}
		}
#abody .todo-list .todo-list__label > input::after{
		display:block;
		position:absolute;
		box-sizing:content-box;
		pointer-events:none;
		content:'';
		left:calc( var(--ck-content-todo-list-checkmark-size) / 3);
		top:calc( var(--ck-content-todo-list-checkmark-size) / 5.3);
		width:calc( var(--ck-content-todo-list-checkmark-size) / 5.3);
		height:calc( var(--ck-content-todo-list-checkmark-size) / 2.6);
		border-style:solid;
		border-color:transparent;
		border-width:0 calc( var(--ck-content-todo-list-checkmark-size) / 8) calc( var(--ck-content-todo-list-checkmark-size) / 8) 0;
		transform:rotate(45deg);
	}
#abody .todo-list .todo-list__label > input[checked]::before{
			background:hsl(126, 64%, 41%);
			border-color:hsl(126, 64%, 41%);
		}
#abody .todo-list .todo-list__label > input[checked]::after{
			border-color:hsl(0, 0%, 100%);
		}
#abody .todo-list .todo-list__label .todo-list__label__description{
			vertical-align:middle;
		}
#abody .todo-list .todo-list__label.todo-list__label_without-description input[type=checkbox]{
			position:absolute;
		}

#abody .media{
	clear:both;
	margin:0.9em 0;
	display:block;
	min-width:15em;
}

#abody .page-break{
	position:relative;
	clear:both;
	padding:5px 0;
	display:flex;
	align-items:center;
	justify-content:center;
}

#abody .page-break::after{
		content:'';
		position:absolute;
		border-bottom:2px dashed hsl(0, 0%, 77%);
		width:100%;
	}

#abody .page-break__label{
	position:relative;
	z-index:1;
	padding:.3em .6em;
	display:block;
	text-transform:uppercase;
	border:1px solid hsl(0, 0%, 77%);
	border-radius:2px;
	font-size:0.75em;
	font-weight:bold;
	color:hsl(0, 0%, 20%);
	background:hsl(0, 0%, 100%);
	box-shadow:2px 2px 1px hsla(0, 0%, 0%, 0.15);
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
@media print{
	#abody .page-break{
		padding:0;
	}

		#abody .page-break::after{
			display:none;
		}
	#abody *:has(+ .page-break){
		margin-bottom:0;
	}
}

#abody[dir="rtl"] .table th{
		text-align:right;
	}

#abody[dir="ltr"] .table th{
		text-align:left;
	}

#abody figure.table:not(.layout-table){
		display:table;
	}

#abody figure.table:not(.layout-table) > table{
			width:100%;
			height:100%;
		}

#abody .table:not(.layout-table){
		margin:0.9em auto;
	}

#abody table.table:not(.layout-table),
	#abody figure.table:not(.layout-table) > table{
		border-collapse:collapse;
		border-spacing:0;
		border:1px double hsl(0, 0%, 70%);
	}

#abody table.table:not(.layout-table) > thead > tr > th, #abody figure.table:not(.layout-table) > table > thead > tr > th, #abody table.table:not(.layout-table) > tbody > tr > th, #abody figure.table:not(.layout-table) > table > tbody > tr > th{
					font-weight:bold;
					background:hsla(0, 0%, 0%, 5%);
				}

#abody table.table:not(.layout-table) > thead > tr > td,
				#abody figure.table:not(.layout-table) > table > thead > tr > td,
				#abody table.table:not(.layout-table) > tbody > tr > td,
				#abody figure.table:not(.layout-table) > table > tbody > tr > td,
				#abody table.table:not(.layout-table) > thead > tr > th,
				#abody figure.table:not(.layout-table) > table > thead > tr > th,
				#abody table.table:not(.layout-table) > tbody > tr > th,
				#abody figure.table:not(.layout-table) > table > tbody > tr > th{

					min-width:2em;
					padding:0.4em;
					border:1px solid hsl(0, 0%, 75%);
				}

#abody table.table:not(.layout-table) > thead > tr > td > p:first-of-type, #abody figure.table:not(.layout-table) > table > thead > tr > td > p:first-of-type, #abody table.table:not(.layout-table) > tbody > tr > td > p:first-of-type, #abody figure.table:not(.layout-table) > table > tbody > tr > td > p:first-of-type, #abody table.table:not(.layout-table) > thead > tr > th > p:first-of-type, #abody figure.table:not(.layout-table) > table > thead > tr > th > p:first-of-type, #abody table.table:not(.layout-table) > tbody > tr > th > p:first-of-type, #abody figure.table:not(.layout-table) > table > tbody > tr > th > p:first-of-type{
						margin-top:0;
					}

#abody table.table:not(.layout-table) > thead > tr > td > p:last-of-type, #abody figure.table:not(.layout-table) > table > thead > tr > td > p:last-of-type, #abody table.table:not(.layout-table) > tbody > tr > td > p:last-of-type, #abody figure.table:not(.layout-table) > table > tbody > tr > td > p:last-of-type, #abody table.table:not(.layout-table) > thead > tr > th > p:last-of-type, #abody figure.table:not(.layout-table) > table > thead > tr > th > p:last-of-type, #abody table.table:not(.layout-table) > tbody > tr > th > p:last-of-type, #abody figure.table:not(.layout-table) > table > tbody > tr > th > p:last-of-type{
						margin-bottom:0;
					}

@media print{
		#abody figure.table:not(.layout-table):not(:has(> figcaption)){
			display:block;
			width:fit-content;
		}
		#abody figure.table:not(.layout-table) > table{
			height:initial;
		}
}

#abody table.table.layout-table,
	#abody figure.table.layout-table{
		margin-top:0;
		margin-bottom:0;
	}

#abody table.table.layout-table,
	#abody figure.table.layout-table > table{
		border-spacing:0;
	}

:root{
	--ck-content-color-table-caption-background:hsl(0, 0%, 97%);
	--ck-content-color-table-caption-text:hsl(0, 0%, 20%);
}
#abody .table > figcaption,
#abody figure.table > table > caption{
	display:table-caption;
	caption-side:top;
	word-break:normal;
	overflow-wrap:anywhere;
	text-align:center;
	color:var(--ck-content-color-table-caption-text);
	background-color:var(--ck-content-color-table-caption-background);
	padding:.6em;
	font-size:.75em;
	outline-offset:-1px;
}
@media (forced-colors: active){
		#abody .table > figcaption, #abody figure.table > table > caption{
		background-color:unset;
		color:unset;
		}
	}

#abody .table .ck-table-resized{
	table-layout:fixed;
}

#abody .table td,
#abody .table th{
	overflow-wrap:break-word;
}