/*<meta />*/

.print-exclude
{
	display: block;
}

.print-btn
{
	border-radius: 25px;
	background-color: var(--Safe-White);
	background-image: url('../Images/Elements/Printer.png');
	background-position-x: 10px;
	background-position-y: 12px;
	background-repeat: no-repeat;
	background-size: 16px;
	border: solid 1.5px var(--Safe-Black);
	color: var(--Safe-Black);
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	overflow: hidden;
	padding: 10px;
	padding-left: 32px;
	text-align: center;
	text-decoration: none;
	transition: all .5s ease;
}

.print-btn:hover
{
	background-color: var(--Safe-Orange);
}

/* Tab Boxes CSS */

.tabs-section
{
	padding: 20px;
	width: max-content;
}

ul.tabs
{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	box-sizing: border-box;
}

ul.tabs li
{
	margin-left: 0;
	margin-right: 5px;
	cursor: pointer;
	padding: 5px 7px;
}

ul.tabs li:not(:first-child)
{
	margin-left: 5px;
}

ul.tabs .current
{
	color: var(--Safe-Orange);
	font-weight: bold;
	border: 2px solid var(--MediumGray);
	border-bottom: 3px solid var(--White);
	border-radius: 10px 10px 0 0;
	z-index: 1;
	cursor: default;
}

div.tab-content
{
	display: none;
	padding: 20px;
	border-radius: 0 10px 10px 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
	animation: fadeIn 0.3s ease-in-out;
	position: relative;
	border: solid 2px var(--MediumGray);
}

div.tab-content.current
{
	display: block;
	margin-top: -2px;
}

@media print
{
	body
	{
		font-size: 12px !important;
		line-height: 1.1em !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.print-btn
	{
		display: none;
	}

	.print-exclude
	{
		display: none !important;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6
	{
		margin: 0 !important;
		padding: 0 !important;
		line-height: 1.2em !important;
	}

	h1
	{
		font-size: 18px !important;
	}

	h2
	{
		font-size: 16px !important;
	}

	h3
	{
		font-size: 14px !important;
	}

	div.content
	{
		display: none;
	}

	div.side-content
	{
		display: none;
	}

	div.title-bar-container
	{
		display: none;
	}

	div.Note
	{
		margin-bottom: 5px;
		margin-top: 5px;
	}

	div.NoteEmpty
	{
		margin-bottom: 5px;
		margin-top: 5px;
	}

	kbd
	{
		padding: 1px 2px;
		margin: 0;
	}

	p
	{
		line-height: 1.2em !important;
		margin-bottom: 4px;
		margin-top: 4px;
	}

	table
	{
		width: 100%;
		margin: 0;
		padding: 0;
		border-collapse: collapse;
	}

	.content,
	.side-content,
	.topic-frame,
	.main-content
	{
		margin: 0;
		padding: 0;
	}

	th
	{
		font-size: 14px;
	}

	td
	{
		font-size: 14px;
	}

	td p
	{
		font-size: 14px;
	}

	.TableStyle-Keyboard
	{
		overflow: hidden !important;
	}

	ul
	{
		margin-left: 1.5em;
		margin-top: 2px;
		margin-bottom: 3px;
	}
}

@media only screen and (max-width: 767px)
{
	.tabs-section
	{
		width: auto;
	}
}

