html
{
  margin:0px;
  padding:0px;
}

body
{
  font: 13px sans-serif;
  background-color: #f7f7f7;
  margin:0px;
  padding:0px;
}

div.flex-container
{
  with: 100%;
  height: 100%;
  display: flex;
}

div.col-gauche
{
  min-height: 1050px;
  flex: 0 0 250px;
  background-color: #435165;
  color: #f7f7f7;
  margin: 0px;
  padding: 10px;
  font-size: 16px;
}

div.col-gauche ul
{
 list-style-type: none;
 margin: 0px;
 padding: 10px;
}

div.col-gauche li
{
  margin-bottom: 10px;
}
div.col-gauche a
{
  text-decoration: none;
  color: #f7f7f7;
}

div.col-droite
{
  flex: 1;
  padding-left : 20px;
  padding-right : 20px;
}

div.bandeau-titre
{
  color: #000000;
  background-color: #dddddd;
  width: 100%;
  height: 130px;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  float: clear;
  align-content: center;  
}

div.bandeau-titre img
{
  float: left;
  width: 300px;
}

div.bandeau-titre div
{
  float:left;
  padding-top: 30px;
  margin-left: 250px;
}

div.application
{
  height: 110px;
  border-bottom: solid 1px #f7f7f7;
  margin-bottom: 10px;
}

div.bienvenue
{
  height: 100px;
  border-bottom: solid 1px #f7f7f7;
  margin-bottom: 10px;
}

div.titre-page
{
  border: solid 1px #435165;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  color: #435165; 
  width: 100%;
  box-sizing: border-box;
  font-size: 24px;
}

div.titre-page2
{
  vertical-align: middle;
  align: center;
  color: #ffffff;
  background-color: #c8132f;
  width: 100%;
  height: 130px;
  box-sizing: border-box;
  font-size: 24px;
}

.login
{
  width: 400px;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
}

.login h1
{
  text-align: center;
  color: #435165;
  font-size: 24px;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #ccc;
}

.login form
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login form label
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #435165;
  color: #ffffff;
}

.login form input[type="password"], .login form input[type="text"]
{
  width: 310px;
  height: 50px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 0 15px;
}

.login form input[type="submit"]
{
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #435165;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
}

.login form input[type="submit"]:hover
{
	background-color: #435165;
  transition: background-color 0.2s;
}

div.form-recherche
{
  margin-top: 20px;
  width: 100%;
  text-align: middle;
}

div.form-recherche form
{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

div.form-recherche label
{
  padding-top: 35px;
  width: 120px;
  padding-right: 20px;
  height: 25px;
  text-align: start;
  margin-bottom: 20px;
}

div.form-recherche input[type="date"], div.form-recherche input[type="text"], select
{
  width: 200px;
  height: 40px;
  border: 1px solid #ccc;
  margin-right: 20px;
}

div.form-recherche input[type="date"]
{
  font: 13px sans-serif;
}

div.form-recherche input[type="submit"]
{
  width: 100px;
  height: 40px;
  background-color: #435165;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
}

div.resultat-recherche 
{
  overflow: auto;
  max-width: 2225px;
}

div.resultat-recherche table
{
  font: 13px sans-serif;
  white-space: nowrap;
  border-collapse: collapse;
}

div.resultat-recherche th
{
  font-weight:bold;
  background-color:#ddd;
  vertical-align:left;
}

div.resultat-recherche th,
div.resultat-recherche td
{
  padding:0.5em;
  border:1px solid #ccc;
}

div.resultat-recherche tr:nth-child(even)
{
  background-color: white;
}

div.resultat-recherche tr:nth-child(odd)
{
  background-color: #ddd;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #666;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

div.error
{
  width: 100%;
  min-width: 1000px;
  background-color: #ff0000;
  color: #ffffff;
}

div.error p
{
  padding: 10px;
}