@charset "utf-8";

/* 
(c) 2025 - Alexandre Brillant - https://www.japisoft.com
*/

body {
	font-family:Arial, Helvetica, sans-serif;
	margin:0px;
	font-size:0.9em;
	
}

body,header, header a, #cookies, #leftMenu {
	background-color:#191919;
}

h1,h2,h3,h4,header a, #leftMenu {
	color:white;
}

#content h1, #content h2, #content h3 {
	color:#191919;
}

#all {
	width:100%;
	margin:0px;
	margin-top:50px;
	padding:0px;
}

#all > * {
	padding:5px;
}

#headerBody {
	width:90%;
	margin:auto;
}

#body {
	width:100%;
	margin:0px;
	padding:0px;
	display:table;
	table-layout:fixed;	
}

#cookies, #cookies a {
	margin-top:20px;
	text-align:center;
	padding:15px;
	color:#888;
	font-size:0.7em;
}

.box {
	background-color:#DDD;
	box-sizing:border-box; */
}

h1, h2, h3, p {
	margin-left:4px;
}

h3 {
	font-size:1.2em;
	font-weight:100;
}

h1,h2,h3, #leftMenu h2 {
}

h4 {
	background-color:rgba( 120, 60, 100, 1 );
	border-radius:10px;
	color:white;
	padding:4px;
	font-weight:100;
	font-size:0.8em;
	display:inline-block;
	margin-bottom:0px;
}

div.description h4 {
	margin-left:30px;
}

div.description {
	border:1px solid rgba( 120, 60, 100, 0.5 );
	padding:4px;
	border-radius:10px;
}


ul {
	list-style-type:none;	
}

li:before {

}

li.noc:before {
	content:"";	
}

.bold {
	font-weight:bold;	
}

header {
	width:100%;
	position:fixed;
	top:0px;
	color:#333;
	z-index:100;
}

#headerText {
	font-size:0.6em;
	margin-left:10px;
	color:#AAA;
}

header h1 {
	margin:5px;
	float:left;
	font-size:1.6em;
	font-weight:100;
}

header h1 a {
}

header .menu {
	float:right;
	margin-right:40px;
}

#leftMenu>div.menu:last-child {
	display:none;
}

header .menu li {
	display:block;
	float:left;
	width:100px;
	color:#333;
	width:auto;
	padding:5px;
}

header .menu li a {
	color:#AAA;
}

header .menu li a:hover {
	color:#FFF;
}

#menuAction {
	display:none;
	color:black;
	clear:both;
}

footer {
	clear:both;
	
	text-align:center;
	font-size:11px;
	margin-top:10px;
}

footer, footer a {
	color:#888;	
}

a {
	transition:color 0.4s ease-in-out;	
	color:rgba( 0, 0, 0, 0.6 );
	text-decoration:none;	
}

a:hover {
	color:rgba( 0, 0, 0, 1 );
}


.menu h2 {
	text-transform:uppercase;
	font-size:0.9em;
	color:rgba( 0, 0, 0, 0.8 );
	margin-bottom:5px;	
}

/*****************************************************************************************/
/* MENU *********************************************************************************/
/*****************************************************************************************/

#leftMenu {
	display:table-cell;
	margin-top:60px;
	margin-left:10px;
	margin-right:10px;
	width:200px;
	max-width:250px;
	padding:0px;
	vertical-align:top;
}

#leftMenu .menu ul {
	margin:0px;
	padding:0px;
}

#leftMenu .menu li {
	display:block;
	border:rgba( 0,0,0,0.1) 1px solid;
	border-left-style:none;
	border-right-style:none;
	border-bottom-style:none;
	margin-top:5px;
}

#leftMenu .menu li:last-child {
	border-bottom-style:solid;
}

#leftMenu .menu li a {
	margin-left:5px;
	text-decoration:none;
	font-size:0.9em;
	color:#333;
	background-color:#BBB;
	border-radius:3px;
	border:2px solid #bbb;
	padding:1px;
	display:inline-block;
	width:90% !important;
	text-align:center;
}

#leftMenu li a:hover {
	border:2px solid #fff;
	color:#fff;
}

#leftMenu h2, h3 {
	color:#DDD;
	font-weight:bold;
}


/*****************************************************************************************/
/*Content*********************************************************************************/
/*****************************************************************************************/

#content {
	padding:10px;
	margin-top:60px;
	margin-left:0px;
	display:table-cell;
	width:90%;
	color:#333;
	vertical-align:top;
}

#content h1 {
	margin:5px;
	font-size:2.0em;
	font-weight:100;	
}

#content h2 {
	font-size:1.4em;
	font-weight:100;
}

#content .body {
	margin:10px;
	margin-left:0px;
}

/*****************************************************************************************/

div.info {
	color:#666;
	font-size:11px;
}

label {
	display:block;
	font-weight:bold;
	color:#666;
	color:rgba( 0, 0, 0, 0.6 );
	line-height:1.4;
}

input[type='text'], textarea {
	width:100%;
	border:1px solid rgba(0,0,0,0.2);
	border-radius:4px;
	padding:5px 8px;
	outline:0px;
}

input[type='text']:focus, input[type='button']:hover, textarea:hover {
	-webkit-animation:pulse 2.5s infinite ease-in-out;	
}

input[type='button']:active {
	background-color:#CCC;
}

fieldset {
	border:none;	
}

input[type='button'], #editor {
	border:1px solid rgba(0,0,0,0.2);
	border-radius:4px;
	padding:10px;	
	outline:0px;
	font-weight:bold;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow : 0 0 3px rgba( 0,0,0, 0.6 );	
	}
	50% {
		-webkit-box-shadow : 0 0 7px rgba( 0,0,0, 0.9 );	
	}
	100% {
		-webkit-box-shadow : 0 0 3px rgba( 0,0,0, 0.6 );	
	}
}

/* ------------------------------------------------------------------------------------- */

@media all and (max-width:600px) {
	
	#leftMenu {
		width:90%;
		max-width:90%;
		display:none;
		margin-top:4px;
	}
	
	#leftMenu h2 {
		font-size:10px;	
	}
	
	#content {
		margin-top:10px;
		width:100%;
	}
	
	header {
		display:none;	
	}
	
	#all {
		margin-top:0px;
	}

	#headerText {
		display:none;	
	}
	
	#menuAction {
		margin-left:10px;
		display:block;
	}	
	
}