@charset "utf-8";
/* CSS Document */

html {
	height: auto;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: white;
	width: 100% !important;
	margin: 0px;
	padding: 0px;
	height: 100vh;
	font-size: 1px;
	line-height: 2em;
	letter-spacing: 2px;
}
body,input,select,textarea,div,span {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}
.jsclass_main_menu {
	width: 100%;
	max-width: 1200px;
	border-bottom: solid 1px lightgrey;
	font-weight: 400;
	text-transform: uppercase;
	margin: auto;
}
#page {
	color: #fff;
	width: 100%;
	top: 0px;
	z-index: 1;
	display: block;
	position: relative;
	margin-bottom: 100px;
	height: auto;
	background-color: #FFF;
	padding: 0px;
	padding-bottom: 100px;
}
#page .content {
	display: block;
	position: relative;
	height: auto;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
#page #div-page-title {
	width: 100%;
	font-size: 1.2em;
	font-weight: normal;
	margin: 0px;
	line-height: 2em;
	text-transform: uppercase;
	padding: 20px 0;
	margin: auto;
	padding-left: 10px;
}
#m_nav_button {
	font-size: 24px;
	color: black;
	padding: 10px;
	display: none;
}
#menu ul {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding: 10px;
	font-size: 1.4rem;
	margin: 20px 0;
}
#menu ul li a {
	text-decoration: none;	
}

#div-banner {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}
#div-banner img {
	height: 40px;
}
#div-footer-wrapper {
	background-color: white;
	color: black;
	text-align: center;
	width: 100%;
	display: block;
	font-size: 0.8em;
	left: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	position: fixed;
	bottom: 0px;
	border-top: 1px solid lightgrey;
}
@media only screen and (max-width: 768px) {
	#m_nav_button {
		display: block;
	}
	#menu ul {
		width: 300px;
		flex-direction: column;
		margin-left: 40px;
		align-items: start;
		display: none;
	}
	#menu:hover ul {
		display: flex;
	}
	#div-page-title {
		padding-left: 10px !important;
	}
}

