
:root {
	--ck-color-mention-background: hsla(341, 100%, 30%, 0.1);
	--ck-color-mention-text: hsl(341, 100%, 30%);
}

.ck-content .mention {
	background: var(--ck-color-mention-background);
	color: var(--ck-color-mention-text);
}

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

.ck-content 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%);
}

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

.ck-content 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;
}

.ck-content pre code {
	background: unset;
	padding: 0;
	border-radius: 0;
}

.ck-content .text-tiny {
	font-size: .7em;
}

.ck-content .text-small {
	font-size: .85em;
}

.ck-content .text-big {
	font-size: 1.4em;
}

.ck-content .text-huge {
	font-size: 1.8em;
}

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

.ck-content .marker-yellow {
	background-color: var(--ck-highlight-marker-yellow);
}

.ck-content .marker-green {
	background-color: var(--ck-highlight-marker-green);
}

.ck-content .marker-pink {
	background-color: var(--ck-highlight-marker-pink);
}

.ck-content .marker-blue {
	background-color: var(--ck-highlight-marker-blue);
}

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

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

.ck-content hr {
	margin: 15px 0;
	height: 4px;
	background: hsl(0, 0%, 87%);
	border: 0;
}

:root {
	--ck-color-image-caption-background: hsl(0, 0%, 97%);
	--ck-color-image-caption-text: hsl(0, 0%, 20%);
}

.ck-content .image > figcaption {
	display: table-caption;
	caption-side: bottom;
	word-break: break-word;
	color: var(--ck-color-image-caption-text);
	background-color: var(--ck-color-image-caption-background);
	padding: .6em;
	font-size: .75em;
	outline-offset: -1px;
}

@media (forced-colors: active) {
	.ck-content .image > figcaption {
		background-color: unset;
		color: unset;
	}
}

.ck-content img.image_resized {
	height: auto;
}

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

.ck-content .image.image_resized img {
	width: 100%;
}

.ck-content .image.image_resized > figcaption {
	display: block;
}

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

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

.ck-content .image.image-style-align-left,
.ck-content .image.image-style-align-right {
	clear: none;
}

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

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

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

.ck-content .image.image-style-block-align-right {
	margin-right: 0;
	margin-left: auto;
}

.ck-content .image.image-style-block-align-left {
	margin-left: 0;
	margin-right: auto;
}

.ck-content .image-style-align-center {
	margin-left: auto;
	margin-right: auto;
}

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

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

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

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

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

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

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

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

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

.ck-content .image-inline picture {
	display: flex;
}

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

.ck-content ol {
	list-style-type: decimal;
}

.ck-content ol ol {
	list-style-type: lower-latin;
}

.ck-content ol ol ol {
	list-style-type: lower-roman;
}

.ck-content ol ol ol ol {
	list-style-type: upper-latin;
}

.ck-content ol ol ol ol ol {
	list-style-type: upper-roman;
}

.ck-content ul {
	list-style-type: disc;
}

.ck-content ul ul {
	list-style-type: circle;
}

.ck-content ul ul ul {
	list-style-type: square;
}

.ck-content ul ul ul ul {
	list-style-type: square;
}

:root {
	--ck-todo-list-checkmark-size: 16px;
}

.ck-content .todo-list {
	list-style: none;
}

.ck-content .todo-list li {
	position: relative;
	margin-bottom: 5px;
}

.ck-content .todo-list li .todo-list {
	margin-top: 5px;
}

.ck-content .todo-list .todo-list__label > input {
	-webkit-appearance: none;
	display: inline-block;
	position: relative;
	width: var(--ck-todo-list-checkmark-size);
	height: var(--ck-todo-list-checkmark-size);
	vertical-align: middle;
	border: 0;
	left: -25px;
	margin-right: -15px;
	right: 0;
	margin-left: 0;
}

.ck-content[dir=rtl] .todo-list .todo-list__label > input {
	left: 0;
	margin-right: 0;
	right: -25px;
	margin-left: -15px;
}

.ck-content .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) {
	.ck-content .todo-list .todo-list__label > input::before {
		transition: none;
	}
}

.ck-content .todo-list .todo-list__label > input::after {
	display: block;
	position: absolute;
	box-sizing: content-box;
	pointer-events: none;
	content: '';
	left: calc(var(--ck-todo-list-checkmark-size) / 3);
	top: calc(var(--ck-todo-list-checkmark-size) / 5.3);
	width: calc(var(--ck-todo-list-checkmark-size) / 5.3);
	height: calc(var(--ck-todo-list-checkmark-size) / 2.6);
	border-style: solid;
	border-color: transparent;
	border-width: 0 calc(var(--ck-todo-list-checkmark-size) / 8) calc(var(--ck-todo-list-checkmark-size) / 8) 0;
	transform: rotate(45deg);
}

.ck-content .todo-list .todo-list__label > input[checked]::before {
	background: hsl(126, 64%, 41%);
	border-color: hsl(126, 64%, 41%);
}

.ck-content .todo-list .todo-list__label > input[checked]::after {
	border-color: hsl(0, 0%, 100%);
}

.ck-content .todo-list .todo-list__label .todo-list__label__description {
	vertical-align: middle;
}

.ck-content .todo-list .todo-list__label.todo-list__label_without-description input[type=checkbox] {
	position: absolute;
}

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

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

.ck-content .image > figcaption {
	display: block !important;
}

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

.ck-content .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-family: Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
	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 {
	.ck-content .page-break {
		padding: 0;
	}

	.ck-content .page-break::after {
		display: none;
	}

	.ck-content *:has(+ .page-break) {
		margin-bottom: 0;
	}
}

.ck-content .table {
	margin: 0.9em auto;
	display: table;
}

.ck-content .table table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	height: 100%;
	border: 1px double hsl(0, 0%, 70%);
}

.ck-content .table table td,
.ck-content .table table th {
	min-width: 2em;
	padding: .4em;
	border: 1px solid hsl(0, 0%, 75%);
}

.ck-content .table table th {
	font-weight: bold;
	background: hsla(0, 0%, 0%, 5%);
}

@media print {
	.ck-content .table table {
		height: initial;
	}
}

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

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

:root {
	--ck-color-selector-caption-background: hsl(0, 0%, 97%);
	--ck-color-selector-caption-text: hsl(0, 0%, 20%);
}

.ck-content .table > figcaption {
	display: table-caption;
	caption-side: top;
	word-break: break-word;
	text-align: center;
	color: var(--ck-color-selector-caption-text);
	background-color: var(--ck-color-selector-caption-background);
	padding: .6em;
	font-size: .75em;
	outline-offset: -1px;
}

@media (forced-colors: active) {
	.ck-content .table > figcaption {
		background-color: unset;
		color: unset;
	}
}

.ck-content .table .ck-table-resized {
	table-layout: fixed;
}

.ck-content .table table {
	overflow: hidden;
}

.ck-content .table td,
.ck-content .table th {
	overflow-wrap: break-word;
	position: relative;
}

/* Responsive iframe styles for media and bottomembed fields */
.ck-content iframe,
.disnep-area iframe {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	aspect-ratio: 16/9;
	border: none;
	display: block;
	margin: 10px 0;
}

/* Fallback for older browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
	.ck-content iframe,
	.disnep-area iframe {
		height: 315px; /* Default height for 16:9 ratio at ~560px width */
	}
}

/* Responsive container for iframes */
.ck-content .video-container,
.disnep-area .video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	overflow: hidden;
}

.ck-content .video-container iframe,
.disnep-area .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.headerart {
	font-size: 15pt;
	color: black;
	font-weight: bold;
	text-decoration: none;
	line-height: 110%;
}

.rc_top {
	width: 100%;
	position: relative;
	z-index: 100;
	background-color: #999999;
}

.rc_bot {
	width: 100%;
	position: relative;
	background-color: #999999;
}

.dsply {
	border: 1px solid #4f7292;
	padding: 0 0 5px;
	background-color: #f5f5f5;
}

.dsply h4 {
	background-color: #999;
	color: #fff;
	margin: 0;
	padding: 5px 10px;
}

.dsply .links {
	padding: 5px 10px;
}

.dsply .links h5 {
	margin: 0;
	padding: 0;
	color: #696969;
	font: bold 77%;
}

.dsply .links a,
#elsewhere .dsply .links a:visited {
	color: #002758;
	font: normal 77%;
	text-decoration: none;
}

.dsply .links a:visited {
	color: #185167;
}

.dsply .links a:hover {
	text-decoration: underline;
}

.addthis_button_google_plusone {
	line-height: 0px !important;
	padding-left: 0px;
	margin-left: 0px;
}
.main-article-content .shortcode-content figure.caption {
	text-align: center;
	border: solid 1px #ccc;
	border-radius: 2px;
	background: rgba(0,0,0,0.05);
	padding: 10px;
	font-size: 10pt;
	margin: 10px 20px;
	color: #000000;
	display: block; /* For IE8 */
}
div.shortcode-content .image {
	text-align: center;
	border: solid 1px #ccc;
	border-radius: 2px;
	background: rgba(0,0,0,0.05);
	padding: 10px;
	font-size: 10pt;
	margin: 10px 20px;
	color: #000000;
	display: block; /* For IE8 */
}





.main-article-content .shortcode-content figure.caption figcaption p {
	text-align: center;
	display: block; /* For IE8 */
}

.main-article-content .shortcode-content img {
	padding: 10px;
}

.caption {
	position: inherit !important;
	width: auto !important;
	height: auto !important;
}

.portus-main-article-block-copy .image {
	font-size: 9pt;
	border: 0px;
}

.portus-main-article-block ul li {
	list-style-type: disc;
	list-style-position: inside;
	font-weight: normal;
}

.portus-main-article-block ol li {
	list-style-type: decimal;
	list-style-position: inside;
	font-weight: normal;
}

.portus-main-article-block-copy iframe,
.portus-main-article-block-copy p iframe,
.video iframe,
.video p iframe {
	max-width: 100%;
	padding-bottom: 15px;
	margin-bottom: 15px;
}



.hottopic2022 {
	position: relative;
	color: white;
	border: 1px solid black;
}

.topicimg {
	position: absolute;
	bottom: 0px;
	padding: 4px;
	right: 0px;
	background-color: black;
	color: white;
}

.topicimgwhite {
	position: absolute;
	bottom: 0px;
	padding: 4px;
	right: 0px;
	background-color: white;
	color: black;
}

.topicimgnoback {
	position: absolute;
	bottom: 0px;
	padding: 4px;
	right: 0px;
	color: white;
}

.topicimgnobackblack {
	position: absolute;
	bottom: 0px;
	padding: 4px;
	right: 0px;
	color: black;
}


.article-header p {
	font-weight: 600;
	margin-top: 15px;
	text-align: left;
	margin-bottom: 20px;
	font-size: 15px;
}

.portus-main-article-block-copy td {
	border: 1px solid;
}

body a {
	color: #b20223;
	text-decoration: unset;
}

/* Video Container */
.videoContainer {
	position: relative;
	max-width: 100%;
}

/* Additional shortcode content styles */
.main-article-content .shortcode-content figure.caption {
	text-align: center;
	border: solid 1px #ccc;
	border-radius: 2px;
	background: rgba(0,0,0,0.05);
	padding: 10px;
	margin: 10px 20px;
	color: #000000;
	font-size: 10pt;
	display: block; /* For IE8 */
}

.main-article-content .shortcode-content figure.caption figcaption p {
	text-align: center;
	display: block; /* For IE8 */
}

.main-article-content .shortcode-content img {
	padding: 10px;
}

.caption {
	position: inherit !important;
	width: auto !important;
	height: auto !important;
}

.main-article-content .shortcode-content table {
	width: 100%;
	border-width: 1px;
	border-style: dotted;
}

.main-article-content .shortcode-content td {
	border-width: 1px;
	padding: 4px;
	border-style: dotted;
}

/* Blockquote styles */
.main-article-content blockquote {
	font-size: 20pt;
	padding-top: 2rem;
}

.main-article-content blockquote:before {
	content: "\201C";
	font-size: 4.625rem;
	line-height: 0;
	color: #595959;
	font-family: Georgia;
}

blockquote {
	font-style: italic;
	font-family: Georgia, Times, "Times New Roman", serif;
	border-style: solid;
	border-color: #ccc;
	border-width: 0;
	padding-left: 20px;
	margin-left: 20px;
	padding-right: 8px;
	border-left-width: 5px;
}

/* Disney area styles */
.disnep-area p a {
	color: #b20223;
}

iframe,
.portus-main-article-block-copy p iframe,
.video iframe,
.video p iframe {
	max-width: 100%;
	margin-bottom: 15px;
}

.disnep-area a {
	max-width: 300px;
	white-space: -o-pre-wrap;
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
}

.disnep-area p {
	line-height: 23px;
}

.disnep-area img {
	max-width: 100%;
	padding: 8px;
	height: auto;
}

/* Typography */
b, strong {
	font-size: 12pt;
	font-weight: 900;
}

/* Additional rule for <b> or <strong> inside an <h2> */
h2 b, h2 strong {
	font-size: 1.5rem;
}

/* Figure styles */
figure {
	margin-right: 10px;
	margin-left: 10px;
	background-color: #efefef;
	padding: 10px;
	font-size: 10pt;
}

/* Media queries */
@media (max-width: 767px) {
	.related-story .left-img img {
		width: 50%;
		padding-right: 5px;
		float: left;
		height: 100%;
	}
}

@media (max-width: 767px) {
	.related-story .right-cap p {
		margin-top: 5px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

