/* éléments standards */
body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	background-color: white;
	font-size: 1em;
	font-weight: normal;
	color: Black;
}
img {
	border: 0;
}
a:link {
	color: CadetBlue;
}
a:visited {
	color: DarkCyan;
}
a:hover, a:active {
	color: White;
	background-color: CadetBlue;
}
/*    styles spécifiques*/
.Centre {
	text-align: center;
}
/* barre de titre */
.Titre {
	width: 100%;
	background-color: white;
	border: thin solid;
	border-color: ThreedHighlight ThreedShadow ThreedShadow ThreedHighlight;
}
.Titre H1 {
	font-style: italic;
	font-size: 2.2em;
	font-weight: bolder;
	font-stretch: ultra-expanded;
	color: grey;
	border-style: none;
	padding-left: 1em;
}
/* zone droite */
.Plus {
	padding-top: 1em;
	padding-left: 1em;
	color: Black;
	text-align: right;
	font-size: 0.8em;
}
/* contenu de la page */
.Contenu {
	padding: 0.5em;
}
.Contenu h1 {
	font-size: 2em;
	font-weight: bold;
	background-color: lightcoral;
	border-width: 1pt;
	border-style: solid;
	padding-left: 10pt;
	padding-bottom: 5pt;
	padding-top: 5pt;
	text-align: center;
}
.Contenu h2 {
	font-size: 1.6em;
	font-weight: bold;
	background-color: lightcoral;
	border-style: solid;
	border-width: 1pt;
	padding-left: 10pt;
	padding-bottom: 2pt;
	padding-top: 2pt;
	text-align: center;
}
.Contenu h3 {
	font-size: 1.2em;
	font-weight: bold;
	background-color: lightcoral;
	border-style: solid;
	border-width: 1pt;
	padding-left: 10pt;
	padding-bottom: 2pt;
	padding-top: 2pt;
	text-align: center;
}
.Contenu h4 {
	padding-left: 10pt;
	border-style: solid;
	border-width: 0pt 0pt 1pt 0pt;
	text-align: center;
}
.Contenu td {
	font-size: 10pt;
}
/* pied de page */
.Pied {
	clear: both;
	padding-top: 2em;
	padding-right: 1em;
	text-align: right;
}
.Pied ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.Pied li {
	display: inline;
	margin-right: 1em;
}
/*    Menus*/
.Menu {
	color: menutext;
	background-color: transparent;
	/*font-size: 1.2em;
*/
	text-decoration: none;
}
.Menu ul {
	margin-left: 0.5em;
	padding-left: 0;
}
.Menu li {
	list-style: none;
	font-size: 0.9em;
	white-space: nowrap;
}
.Menu a {
	display: block;
	text-decoration: none;
	color: menutext;
	padding: 0.5em;
	margin: 0.1em;
	background: transparent;
	border-width: 1px;
	border-style: solid;
	border-color: ThreedHighlight ThreedLightShadow ThreedLightShadow ThreedHighlight;
}
.Menu a:hover {
	background: orangered;
	color: lightgoldenrodyellow;
}
.Menu a:active {
	background: orange;
}
.Menu .hidden {
	display: none;
}
.Menu .selected {
	background: orangered;
	color: gold;
	font-style: italic;
	font-weight: bold;
}
.Error {
	color: red;
	background-color: yellow;
}

.DataEntry {
	padding:10px;
}

.QRCode {
	width:150px;
	height:150px;
}
/* specific styles for having a scrollable table */

/* Set a fixed scrollable wrapper on div element */
div.tableWrap {
	height: 50vh;
	border: 2px solid black;
	overflow-y: auto;
	width: auto;
	font-size: 0.8em;
}

/* Set header to stick to the top of the container. */
thead tr th {
	position: sticky;
	top: 0;
	padding: 5px;
}
/* If we use border, we must use table-collapse to avoid a slight movement of the header row */
table {
	border-collapse: collapse;
}
/* Because we set sticky on th, we have to apply background styles here rather than on thead */
th {
	background-color: darkgrey;
	color: White;
	font-weight: bold;
	text-align: center;
	/* With border-collapse, we must use box-shadow or pseudo elements for the header borders */
	box-shadow: 0px 0px 0 2px whitesmoke;
}
/* Basic Demo styling */
table {
	width: 100%;
}
table td {
	padding: 5px;
	border: 1px solid lightgray;
}
tbody tr {
	border: 1px solid lightgray;
	border-bottom: 2px solid #e8e8e8;
}
tr:nth-child(even) 
{
	background-color: GhostWhite;
	border: 1px solid whitesmoke;
}

thead {
	color: black;
}
tbody tr:hover {
	background: #e6f7ff;
}

td
{
    text-align:left; 
}

td.right
{
    text-align:right; 
}
td.left
{
    text-align:left; 
}
td.center
{
    text-align:center; 
}