/*
	<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;
}

.siteGrid {
	display: grid;
	grid-template-rows: [titleGraphic] 90px 1fr;
	grid-template-columns: [menu] 115px [infoPage] auto;
	align-items: start;
	justify-items: center;
	text-align: center;
}

.titleGraphic {
	top: 0px;
	left: 0px;
	width: 100%;
	/* height: 90px; */
	display: block;
	grid-row: titleGraphic / span 1;
	grid-column: span 2;
	background-color: rgba(255, 255, 255, 1);
	position: fixed;
}

.menu {
	top: 90px;
	left: 0px;
	width: 115px;
	grid-row: 2;
	grid-column: menu;
	position: fixed;
	display: none;
}

.menuItem {
	cursor: pointer;
}

#menuTitle, #funnyTitle {
	cursor: default;
	text-decoration-line: overline underline;
	color: gold;
}

#introMenu {
	color: green;
}

.infoPage {
	top: 90px;
	left: 115px;
	width: auto;
	grid-row: 2;
	grid-column: infoPage;
	z-index: -1;
	display: none;
}

.funnyPage{
	display: none;
}

h1, h2 {text-align: center;}

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

table {
	border: 2px;
	/* 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;}