﻿/*Content*/
/*Content - Table*/
.content-body table
{
	border-collapse:separate;
	border-spacing:0 8px;
	margin:32px 0;
}
.content-body table thead th
{
	color:var(--basic-900);
	font-weight:700;
	background-color:var(--basic-100);
	padding:16px 8px;
}
.content-body table tbody td
{
	color:var(--basic-900);
	background-color:var(--basic-50);
	padding:16px 8px;
}
.content-body table thead th:first-child,
.content-body table tbody td:first-child
{
	border-radius:4px 0 0 4px;
}
.content-body table thead th:last-child,
.content-body table tbody td:last-child
{
	border-radius:0 4px 4px 0;
}

/*Content - Object*/
.content-body object
{
	width:100%;
}

/*Content - Links*/
.content-body a:not(:hover, [class*="btn-"])
{
	color:var(--tertiary-800);
	text-decoration:underline;
}

/*Content - Images*/
.content-body img
{
	height:auto !important;
}