/*
	License

	This work is licensed under the Creative Commons Attribution 4.0 International License.
	To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

	Author:		@vir2alexport
	Date:		Jun 24 2023 
	License:	https://creativecommons.org/licenses/by/4.0/legalcode
*/
BODY{
	margin:0;
	padding:0;
	width:100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
}
P STRONG {
	color:crimson;
}
UL{
	font-size:15pt;
}
HEADER{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	color:orange;
	background:black;
}
MAIN{
	display: grid;
	grid-template-columns: repeat(1, auto);
	grid-template-rows: repeat(5, auto);
	gap:1%;
	align-content: center;
	text-align: center;
}
	MAIN DIV{
		margin:1%;
		padding:5%;
		background:#eee;
		cursor:default;
	}
	MAIN DIV:hover{
		background:gold;
	}
	MAIN DIV A{
		font-size:20pt;
	}
FOOTER{
	padding:1%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	color:blue;
	background:#ddd;
}
.sortable {
	flex:auto;
	clear:both;
	border-collapse:collapse;
}
.loading{
	float:left;
	font-size:15pt;
}
TD, TH {
	border:1px solid #000;
	padding:0 9px 0 9px;
}
TBODY TR:hover {
	background-color:#ffe;
}
THEAD TH {
	text-align:center;
	color:#aaa;
	background:#ddd;
}
TH.up, TH.down {
	color:gold;
	background:#000;
	cursor:pointer;
}
TBODY TR:nth-child(2n+1) TD {
	background:#fef;
}
TBODY TR:nth-child(2n) TD {
	background:#efe;
}