@charset "utf-8";
/* CSS Document */
* {
	box-sizing:border-box;
	color:inherit;
	font:inherit;
	line-height:inherit;
	margin:0;
	padding:0;
}

b, strong {
	font-weight:bold;
}
big {
	font-size:120%
}
i, em {
	font-style:italic;
}
s {
	text-decoration:line-through;
}
u {
	text-decoration:underline;
}
optgroup[label] {
	font-weight:bold;
	font-style:italic;
}
optgroup > option {
	font-weight:normal;
	font-style:normal;
	padding-left:10px;
}
option[disabled]{
	color:#999;
	font-style:italic;
}
small {
	font-size:80%;
}

body {
	margin:0;
	padding:0;
}

fieldset {
	border:1px solid black;
	margin-bottom:5px;
	padding:5px;
}
fieldset legend {
	font-size:120%;
	font-weight:bold;
	margin-left:10px;
}

h1 {
	font-size:2em;
	text-align:left;
	line-height:1em;
	margin:0 0 1em 0;
}
h2 {
	font-size:1.5em;
	font-weight:bold;
	text-align:left;
	line-height:1em;
	margin:0 0 0.8em 0;
}
h3 {
	font-size:1.5em;
	text-align:left;
	line-height:1em;
	margin:0 0 0.8em 0;
}
h4 {
	font-size:1.2em;
	font-weight:bold;
	text-align:left;
	line-height:1em;
	margin:0 0 0.8em 0;
}
h5 {
	font-size:1.2em;
	text-align:left;
	line-height:1em;
	margin:0 0 0.8em 0;
}
h6 {
	font-size:1em;
	text-align:left;
	text-transform:uppercase;
	line-height:1em;
	margin:0 0 0.5em 0;
}

hr {
	border:none;
	border-top:1px solid black;
	margin:6px 0;
}

img, video {
	max-width:100%;
	height:auto;
}

input[type=text], input[type=password], input[type=file], select, textarea {
	border:solid 1px #6c6c6c;
	max-width:100%;
	padding:1px;
	text-align:left;
	width:100%;
}
input[type=submit], input[type=button] {
	border:none;
	border-radius:3px;
	background:#6c6c6c;
	color:white;
	cursor:pointer;
	padding:2px;
	text-align:center;
}
input[type=submit]:hover, input[type=button]:hover {
	background:#b0b0b0;
}
*[readonly] {
	border-color:#ccc !important;
	cursor:default;
}

label {
	display:inline-block;
	margin-bottom:3px;
	vertical-align:top;
	width:25%;
}
label + div {
	display:inline-block;
	margin-left:1%;
	margin-bottom:3px;
	vertical-align:top;
	width:74%;
}
label + div input[type=text].date {
	max-width:200px;
}
label + div input.nb {
	max-width:60px;
	text-align:right;
}

li {
	line-height:1.3em;
	list-style-position:inside;
}

noscript {
	display:block;
	font-weight:bold;
	margin:10px 0;
}

p {
	margin:0;
	padding:0;
}

/* table */
table {
	border-collapse:collapse;
	border-spacing:0;
}
td {
	text-align:left;
	vertical-align:top;
}
th {
	font-weight:bold;
	font-size:110%;
	text-align:left;
}

/* listes */
ul, ol {
	margin:10px 0;
}
ul li {
	list-style-type:disc;
	list-style-position:outside;
	margin:0 0 5px 12px;
}
ol li {
	list-style-type:decimal;
	list-style-position:outside;
	margin-left:20px;
}


/* div ajustable { */
.divAjustable {
	background-color:#eee;
	border:1px solid black;
	max-height:100px;
	overflow:scroll;
	overflow-x:hidden;
}
.divAjustable .divColonne {
	border:2px solid #eee;
	box-sizing:border-box;
	display:inline-block;
	width:50%;
}
.divAjustable .divAjustableFleche {
	background-color:white;
	border:none;
	border-left:1px solid black;
	border-bottom:1px solid black;
	border-radius:0 0 0 15px;
	cursor:pointer;
	display:inline-block;
	float:right;
	padding:0 8px 0 13px;
	text-align:center;
}
/* } */

/* table lignée { */
.tableLignee {
	width:100%;
}
.tableLignee tr:nth-child(even) {
	background-color:#bbb;
}
.tableLignee tr:nth-child(odd) {
	background-color:white;
}
.tableLignee td, .tableLignee th {
	padding:0 2px;
}
/* } */

#rdcRemontoire {
	background-color:black;
	border:1px solid white;
	border-bottom:none;
	border-radius:5px 5px 0 0;
	bottom:0;
	color:#e6e6e6;
	cursor:pointer;
	display:none;
	font-size:24px;
	height:40px;
	position:fixed;
	right:5%;
	text-align:center;
	width:40px;
	z-index:999999;
}

/* meta */
#rdcMeta { /* #E41F13 */
	background-color:rgba(238,31,19,0.8);
	box-sizing:border-box;
	padding:20px;
	position:absolute;
	top:0;
	left:0;
}
#rdcMeta div.div {
	display:none;
}



/* select2 { */
div.select2 {
	background-color:white;
	border:1px solid black;
	display:none;
	padding:5px;
	position:absolute;
	text-align:left;
	z-index:2;
}
div.select2 span.fa-search {
	position:absolute;
	top:8px;
	left:8px;
	height:20px;
}
div.select2 span.fa-times {
	position:absolute;
	top:5px;
	right:5px;
	height:25px;
}
div.select2 input {
	display:inline-block;
	margin-bottom:10px;
	padding:0 20px;
	position:relative;
	height:25px;
}
div.select2 div.option:hover, div.select2 div.sel {
	background-color:#00F;
	color:white;
	cursor:default;
}
/* } */

/* surimpression { */
#surimpressionFond {
	background-color:#ccc;
	background-color:rgba(0, 0, 0, 0.7);
	bottom:0;
	cursor:pointer;
	display:none;
	height:100%;
	left:0;
	position:fixed;
	right:0;
	top:0;
	z-index:200;
}
#surimpressionIframe {
	background-color:white;
	border:none;
	display:none;
	margin:0;
	min-height:500px;
	padding:0;
	position:absolute;
	width:90%;
	z-index:200;
	
	top:20px;
	left:5%;
	right:5%;
}
/* } */

.bouton {
	background-color:#ccc;
	border:1px solid black;
	border-radius:5px;
	box-shadow:5px 5px 5px #ccc;
	color:black;
	cursor:pointer;
	margin-right:2px;
	padding:5px;
}
.bouton:hover {
	background-color:#999;
}

.textarea2 {
	max-height:300px;
}

.tmpSelectChercher {
	background-color:white;
	border:1px solid black;
	padding:2px;
}

@media only screen and (max-width:500px) {
	label {
		display:block;
		width:100%;
	}
	label+div {
		display:block;
		width:100%;
	}
}

