/**********************
* DISPOSITION GLOBALE *
**********************/
*
{
	margin:0px;
	padding:0px;
	font-family:arial;
	font-size:1em;
	font-weight:normal;
	font-style:normal;
	text-decoration:none;
	border:none;
}
body *
{
	box-sizing:border-box;
}
html, body
{
	width:100%;
	height:100%;
}
body
{
	display:table;
}
body>header
{
	display:table-header-group;
}
body>footer
{
	display:table-footer-group;
}
body>main
{
	display:table-row-group;
	height:100%;
}
/*******************
* DEFAULT "DESIGN" *
*******************/
body
{
	background-color:rgb(240,240,240);
}
body>header, body>footer
{
	background-color:rgba(0,0,0,0.5);
}
body>header
{
	border-bottom-style:solid;
	border-bottom-width:1px;
	border-bottom-color:black;
}
body>footer
{
	border-top-style:solid;
	border-top-width:1px;
	border-top-color:black;
}
/***********
* "DESIGN" *
***********/
body
{
	background-color:rgb(192,224,192);
}
body>header, body>footer
{
	background-color:rgb(64,80,72);
	border-bottom-style:none;
	border-top-style:none;
}
body>header *, body>footer *
{
	color:white;
}
body>header
{
	display:block;
	position:fixed;
	z-index:100;
	left:0px;
	top:0px;
	width:100%;
	height:calc(2em + 6px + 6px + 6px + 1em + 12px);
	padding:3px;
	border-bottom-style:groove;
	border-bottom-width:6px;
	border-bottom-color:rgb(144,168,144);
}
body>main>*:first-child
{
	margin-top:calc(2em + 6px + 6px + 6px + 1em + 12px + 1em);
}
body>footer
{
	display:block;
	position:fixed;
	z-index:99;
	left:0px;
	top:calc(100% - 1em - 6px - 6px);
	width:100%;
	height:calc(1em + 6px + 6px);
	border-top-style:ridge;
	border-top-width:6px;
	border-top-color:rgb(144,168,144);
}
body>footer>*
{
	text-align:center;
	font-style:italic;
	font-size:0.8em;
	padding-top:0.2em;
}
body>main>*:last-child
{
	margin-bottom:calc(1em + 6px + 6px);
}
body>header>h1
{
	font-size:2em;
	text-align:center;
}
body>header>.menu
{
	height:calc(6px + 1em + 12px);
}
body>header>.menu>*
{
	display:table;
	margin-top:3px;
	margin-left:auto;
	margin-right:auto;
}
body>header>.menu>*>*
{
	display:table-cell;
}
body>header>.menu>*>*+*
{
	padding-left:12px;
}
body>header>.menu>*>*>*
{
	padding:3px;
	padding-left:12px;
	padding-right:12px;
	border-radius:12px;
	background-color:rgb(120,140,120);
	border-style:outset;
	border-width:3px;
	border-color:rgb(96,112,96);
}
body>header>.menu *.current
{
	color:white;
}
body>header>.menu a
{
	color:rgb(224,255,224);
}
body>header>.menu a:hover
{
	background-color:rgb(144,168,144);
	color:rgb(248,255,248);
}
body>main
{
	
}
section
{
	margin:1em;
	margin-right:1.25em;
	margin-bottom:1.25em;
	padding:1em;
	border-style:solid;
	border-width:1px;
	border-radius:1em;
	border-color:white;
	background-color:rgb(96,112,96);
	box-shadow:0.5em 0.5em 0.5em rgba(0,0,0,0.5);
}
section p
{
	color:white;
}
section *+p
{
	margin-top:0.5em;
}
section table, section th, section td
{
	border-collapse:collapse;
	border-style:solid;
	border-width:1px;
	border-color:white;
}
section th, section td
{
	color:white;
	padding:0.25em;
}
section table>tr:nth-child(odd)>*, section table>tbody>tr:nth-child(odd)>*
{
	background-color:rgba(0,0,0,0.6);
}
section table>tr:nth-child(even)>*, section table>tbody>tr:nth-child(even)>*
{
	background-color:rgba(0,0,0,0.4);
}
.online
{
	color:rgb(64,255,128);
}
.offline
{
	color:rgb(255,64,128);
}
