/*

	.containerP
{
width: 100%;	
	font-size :1.6em;
	padding: 1px;
	margin: auto;
	
	
}
h1
{
  font-size: 18px;
  padding:5px;
  text-align:center;
  display:block;
  margin:5px;
}
@page {
    size: landscape;
}
.titi
{
	
	
}
table
{
width: 1000px;	
	
	
	
}
.switches {
  max-width: 500px;
  width: 95%;
  margin: 50px auto 0;
  border-radius: 5px;
  color: var(--white);
  background: var(--blue);
}

.switches li {
  position: relative;
  counter-increment: switchCounter;
}

.switches li:not(:last-child) {
  border-bottom: 1px solid var(--gray);
}

.switches li::before {
  content: counter(switchCounter);
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: bold;
  color: var(--pink);
}

.switches label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.switches span:last-child {
  position: relative;
  width: 50px;
  height: 26px;
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  background: var(--gray);
  transition: all 0.3s;
}

.switches span:last-child::before,
.switches span:last-child::after {
  content: "";
  position: absolute;
}

.switches span:last-child::before {
  left: 1px;
  top: 1px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.3s;
}

.switches span:last-child::after {
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/uncheck-switcher.svg);
  background-size: 12px 12px;
}

.switches [type="checkbox"]:checked + label span:last-child {
  background: var(--green);
}

.switches [type="checkbox"]:checked + label span:last-child::before {
  transform: translateX(24px);
}

.switches [type="checkbox"]:checked + label span:last-child::after {
  width: 14px;
  height: 14px;
  right: auto;
  left: 8px;
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/checkmark-switcher.svg);
  background-size: 14px 14px;
}

@media screen and (max-width: 600px) {
  .switches li::before {
    display: none;
  }
}

/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  font-size: 14px;
  text-align: right;
  margin-top: 20px;
  padding-right: 20px;
}

.page-footer span {
  color: var(--pink);
}






 .switch {
  position: relative;
  display: inline-block;
}
.switch-input {
  display: none;
}
.switch-label {
  display: block;
  width: 48px;
  height: 24px;
  text-indent: -150%;
  clip: rect(0 0 0 0);
  color: transparent;
  user-select: none;
}
.switch-label::before,
.switch-label::after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}
.switch-label::before {
  width: 100%;
  height: 100%;
  background-color: #dedede;
  border-radius: 9999em;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.switch-label::after {
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
  -webkit-transition: left 0.25s ease;
  transition: left 0.25s ease;
}
.switch-input:checked + .switch-label::before {
  background-color: #89c12d;
}
.switch-input:checked + .switch-label::after {
  left: 24px;
}
.titi
{
  background-color: whitesmoke;
  color: #000000;
  font-size: 1 em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}
.thtiti
{
	
	  padding: 5px;

}




.container {
/*
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
*/
}
body {
/* 	margin: 0; */
/* 	background: linear-gradient(45deg, #1d7706 0%, #4ae654 100%); */
/*
	font-family: sans-serif;
	font-weight: 100;
*/
}


table {
/* 	width: 800px; */
	border-collapse: collapse;
	overflow: hidden;
	box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.38);
	color: black;
	
}

th,
td {
	padding: 5px;
/* 	background-color: rgba(0, 0, 0, 0.5); */
	color: #000000;
	font-size: smaller;
}

th {
	text-align: left;
}

thead {
	th {
		background-color: rgba(255, 255, 255, 0.5);
	}
}

tbody {
	tr {
		&:hover {
			background-color: rgba(0, 255, 22, 0.38);
		}
	}
	td {
		position: relative;
		&:hover {
			&:before {
				content: "";
				position: absolute;
				left: 0;
				right: 0;
				top: -9999px;
				bottom: -9999px;
				background-color: rgba(0, 255, 22, 0.38);
				z-index: -1;
			}
		}
	}
}
.row
{
	margin-left: 0px;
	margin-right: 0px;
}
.caseaucentre
{
	text-align: center;
	
}