body {
	position: relative;
	margin: 0px;
	overscroll-behavior-y: contain; /*Prevents mobile browsers from dragging down and accidently refreshing the page*/
}
/* #div_master {
	width: 100%;
	min-width: 1288px;
	height: 100%;
	min-height: 728px;
	
	display: flex;
	align-items: center;
} */

#div_cont_1 {
	width: 100%;
	height: 728px; /* Have this pixel adaptive to allow cvs_game's 100% height to fill Div */
	position: absolute; /* Absolute allows overlap with div_cont_2, width is also then required to centralise cavnas children */
}
#cvs_game {
	width: 1280px; /* 100% */
	height: 720px; /* 100% */
	border: 4px solid black;
}
#cvs_ctrlL {
	position: absolute;
	top: 0px;
	left: 0px;
	
	display: none;
	border-width: 4px 0px 4px 4px;
	border-style: solid;
	border-color: black;
}
#cvs_ctrlR {
	position: absolute;
	top: 0px;
	right: 0px;
	
	display: none;
	border-width: 4px 4px 4px 0px;
	border-style: solid;
	border-color: black;
}

#div_cont_2 {
	width: 100%;
	height: 728px;
	position: absolute;
	display: none;
}
#div_c2_centre {
	width: 1280px;
	height: 720px;
	margin: 4px auto;
}
#div_c2_cont {
	width: 1280px;
	height: 720px;
	position: absolute;
}

button.c2m_navEntry {
	width: 100%;
	margin: 5px 0px 5px 0px;
	
	background-color: rgba(0, 0, 0, 0);
	border: outset 3px silver;
	cursor: pointer;
}
h2.c2m_navEntry {
	color: silver;
}

#div_c2m {
	width: 1280px;
	height: 720px;
	min-width: 1280px;
	min-height: 720px;
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
	background-color: rgba(0, 0, 0, 0.95);
}
#div_c2m_logo {
	width: 315px;
	height: 65px;
	position: absolute;
	top: 0px;
	left: 0px;
	
	border-width: 5px 0px 5px 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_nav {
	width: 295px;
	height: 530px;
	position: absolute;
	top: 75px;
	left: 0px;
	padding: 10px;
	overflow-y: auto;
	overflow-x: hidden;
	
	border-width: 0px 0px 0px 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_status {
	width: 295px;
	height: 25px;
	position: absolute;
	bottom: 45px;
	left: 0px;
	padding: 10px;
	
	border-width: 5px 0px 5px 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_vers {
	width: 295px;
	height: 20px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 10px;
	
	border-width: 0px 0px 5px 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_head {
	width: 940px;
	height: 55px;
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 5px;
	vertical-align: middle;
	overflow-y: hidden;
	
	border-width: 5px 5px 0px 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_body {
	width: 930px;
	height: 620px;
	position: absolute;
	top: 70px;
	right: 0px;
	padding: 10px;
	overflow-y: auto;
	overflow-x: hidden;
	
	border-width: 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_foot {
	width: 940px;
	height: 85px;
	padding: 5px;
	
	position: absolute;
	bottom: 0px;
	right: 0px;
	
	display: none;
	border-width: 0px 5px 5px 5px;
	border-color: rgba(40, 40, 40, 0.9);
	border-style: solid;
}
#div_c2m_cache {
	margin: 2px;
	padding: 5px;
	
	position: absolute;
	top: 15px;
	right: 70px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.8);
	border: 4px red inset;
	
	color: red;
	font-size: 10pt;
}

#div_c2m_msg {
	min-width: 100px;
	max-width: 500px;
	padding: 10px;
	
	position: absolute;
	top: 10px;
	left: 330px;
	
	display: none;
	background-color: rgba(0,0,0,0.8);
	border: 5px inset orange;
	font-size: 10pt;
	text-align: right;
}