/*
	<frameset rows='90,*' frameborder='0'>
		<frame src='frames/title.html' />
		<frameset cols='115,*'>
			<frame src='frames/menus/mainmenu.html' name='menu' />
			<frame src='frames/general.html' name='info' />
		</frameset>
	</frameset>
*/
body {
	color: #000000;
	background-color: #ffffff;
	display: grid;
	grid-template-rows: [titleGraphic] /* 90px */ auto;
	grid-template-columns: [menu] /* 115px */ auto [infoPage] auto;
}

.titleGraphic {
	top: 0px;
	left: 0px;
	width: auto;
	text-align: center;
	position: sticky;
}

.menu {
	top: 90px;
	left: 0px;
	width: 115px;
	text-align: center;
	position: sticky;
	display: none;
}

.infoPage {
	top: 90px;
	left: 115px;
	width: auto;
	text-align: center;
	display: none;
}

a:link {color: #0000ff;}
a:visited {color: #800080;}

h1, h2 {text-align: center;}

h3 {
	color: #0000ff;
	text-align: center;
}
	
h4 {
	color: #000000;
	text-align: center;
}

table {
	/* to make the table centered */
	margin: auto;
	/* to make the data centered */
	text-align: center;
	vertical-align: middle;
}

.maccolor1 {color: #00cc17;}
.maccolor2 {color: #ffc100;}
.maccolor3 {color: #f56e00;}
.maccolor4 {color: #ff0a0a;}
.maccolor5 {color: #ca10c4;}
.maccolor6 {color: #0f02ff;}