:root{
	--SIDEMENU_WIDTH: 200px;

	--HOVER_COLOR: rgb(175, 218, 255);
}

body{
	background-color: white;
}

.SIDE_MENU{
	position: fixed;
	top: 0px;
	left: 0px;

	width: var(--SIDEMENU_WIDTH);
	height: 100vh;

	border-right: solid 1px;
}

.CONTENTS{
	position: fixed;
	top: 0px;
	left: var(--SIDEMENU_WIDTH);

	width: calc(100vw - var(--SIDEMENU_WIDTH));
	height: 100vh;

	overflow: auto;
}

.LOAD_DISPLAY{
	position: fixed;
	top: 0px;
	left: 0px;

	width: 100vw;
	height: 100vh;

	background-color: white;

	text-align: center;
}