body {
	background-color: #ffffff;
	color: #000000;
	font-family: Arial;
	margin: 0;
	padding: 0;
	line-height: normal;
}

a {
	color: #2000A0;
	text-decoration: none;
}

a:visited {
	color: #2000A0;
	text-decoration: none;
}

a:hover {
	background-color: #EE1111;
	color: #FFffff;
}

h3 {
	font-size: 210%;
	font-family: arial, sans-serif;
	font-weight: bold;
	text-align: center;
	text-indent: 0em;
	margin-top: .3em;
	margin-bottom: .3em;
	color: #002222;
}

ul.menulist {
	margin-left: .35em;
	padding-left: 1.5em;
	margin-top: .5em;
}

.mobile_show {
	display: none;
}

.mobile_hide {
	display: block;
}

@media(max-width: 1023px) {
	.mobile_show {
		display: block;
	}

	.mobile_hide {
		display: none;
	}

	#search_area {
		margin: 1em 0 1em 3em;
	}
}

@media(max-width:639px) {
	#leftSideMenu {
		display: none
	}
}

.layout {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto 1fr auto;
}

.header {
	grid-row: 1 / 2;
	grid-column: 1 / -1;
	margin-bottom: 2px;
	color: #FFF;
	background-color: #c00000;
}

.header-content {
	margin-left: 20px;
	margin-right: 20px;
	display: flex;
}

.search-box {
	flex: 1 1 min-content;
	margin: 20px;
	max-width: 385px;
}

.search-box .search-box-text-1 {
	font-weight: bold;
	letter-spacing: 0.03em;
	margin-bottom: 0.5em;
}

.search-box .search-box-text-2 {
	font-weight: bold;
	font-size: smaller;
}

.search-box .search-box-section-1 {
	display: grid;
	align-items: center;
	gap: 0.5em;
	grid-template-columns: 1fr minmax(min-content, auto);
}

.search-box .search-box-input {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	color: black;
	background-color: white;
	align-self: stretch;
	min-width: 10em;
}

.search-box .search-box-button {
	font-size: small;
	background-color: #efefcf;
	color: maroon;
	height: 2em;
	width: 6em;
	align-self: start;
}

.left-side-menu {
	grid-row: 2 / 3;
	grid-column: 1 / 2;
}

.left-side-menu-content {
	display: none;
}

.main {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	padding: 24px 16px 16px 16px;
}

.right-side-menu {
	grid-row: 2 / 3;
	grid-column: 3 / 4;
}

.footer {
	grid-row: 3 / 4;
	grid-column: 1 / -1;
}

.right-side-menu-content {
	padding: 16px 16px;
}

.article {
	margin: auto;
	max-width: 65ch;
}

.center-text {
	text-align: center;
}

.center-image {
	display: block;
	margin: auto auto;
}

.no-wrap {
	white-space: nowrap;
}

.banner {
	object-fit: cover;
	object-position: -18px;
	width: 73px;
	height: 100px;
	margin-top: auto;
	margin-bottom: auto;
}

/* medium screens */
@media(min-width: 768px) {

	.banner {
		width: 400px;
	}

	.search-box .search-box-text-1 {
		font-size: 1rem;
	}
	
	.search-box .search-box-button {
		width: 8rem;
	}

	.left-side-menu-content {
		display: block;
		border-width: 1px;
		border-style: solid;
		border-color: #7a7878;
		width: 20vw;
		min-width: min-content;
	}

}

/* large screens */
@media(min-width: 1024px) {

	.banner {
		width: 430px;
	}
	
	.header-content {
		margin-left: 50px;
		margin-right: 50px;
		gap: 40px;
	}

	.main-content {
		display: grid;
		column-gap: 2em;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: min-content 1fr;
	}

	.main-section-1 {
		grid-column: 1 / 2;
		grid-row: 1 / -1;
	}

	.main-section-2 {
		grid-column: 2 / 3;
	}

	.main-section-3 {
		grid-column: 2 / 3;
	}
}

/* Bugfix */
#T_CxTopMenu ul.nav {
	width: initial;
}