
:root
{
	--body-background: #005474;
    --header-background: #001B7E;
    --menu-background: #ffffff;
    --menu-color: #000000;
    --main-background: #ffe6cc;
	--menu-option-hover: #15BCFB;
	--menu-option-select: #FF8A0B;
	--menu-option-new-tab-select: #FFB50B;
	--content-max-width: 1300px;
	--content-min-width: 900px;
	--content-link-size-height: 130px;
	--content-link-size-width: 700px;
	--content-link-border-width: 2px;
	--content-link-border-color: #000000;
	--content-link-background: #ffffff;
}

.linkIMG,.linkRow
{
	position: relative;
	display: inline-block;
	box-sizing: border-box;

	height: calc(var(--content-link-size-height) + var(--content-link-border-width));
	width: calc(var(--content-link-size-width) + var(--content-link-border-width));

	margin: 0px;
	margin-top: 2px;
	border: var(--content-link-border-width) solid var(--content-link-border-color);
	padding: 0px;

	background-color: var(--content-link-background);

	overflow: hidden;
}

.linkRow
{
	background-color: #00000000;
	border: 0px;
}

.linkIMG.third
{
	top: 0px;
	float: left;

	width: calc(((var(--content-link-size-width) + var(--content-link-border-width)) / 3) - 4px);
	margin: 0px;
	margin-right: 6px;
}

.linkIMG.third:last-child
{
	margin-right: 0px;
}

.linkIMG img
{
	position: absolute;
	top: 0px;
	left: 10px;

	width: 220px;
	height: 100%;
	object-fit: contain;
}

.linkIMG.pad img
{
	height: calc(100% - 10px);

	padding: 5px 0px;
}

.linkIMG.cover img
{
	object-fit: cover;
}

.linkIMG.third img
{
	position: absolute;
	top: 0px;
	left: 0px;

	width: 100%;
	height: 100%;
	object-fit: contain;
}

.linkIMG.pad.third img
{
	height: calc(100% - 10px);

	padding: 5px 0px;
}

.linkIMG div
{
	position: absolute;
	bottom: 10px;
	left: 250px;

	width: 440px;
	object-fit: contain;

	font-size: 30px;
	font-weight: bold;
	color: #000000;
	text-align: left;
	vertical-align: middle;
}

