.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}


/*
#inputField {
    width: auto;*/ /* Permet à l'élément de s'ajuster automatiquement */
 /*   max-width: calc(100% - 50px);*/ /* Limite la largeur maximale de l'élément */
/*}*/



buttonOk {
  margin-left: 10px;
  padding: 10px 20px;
}








html,
body {
  margin: 0;
  padding: 0;
  font-family: Avenir, sans-serif;
   user-select: none;/* desactive le double clic qui,suivant l explorateur, ouvre des menus contectuelsou selectionne desparties, ...
  */
}
#info{
  font-size: 12px;
  text-align: left;
   
  position: relative;
top: 0px; right: 100px;/*le côté gauche est décalé de 50*/
  
/*  position: absolute;*/
  
}


#fileToLoad{
  width: 250px;
  font-size: 13px;
}

div#conteneurRadio {
	margin-top: 8px;

  	width: 200px;
  	text-align: left;
	background-color: gray;
        color: #FFFFFF;
	font-size: 15px;
}

#boutonpause{
  width: 45px;
  display: inline;
  height:40px;
  
  vertical-align: middle;
  
  
}

.slider-wrapper {
  display: inline;
  width: 20px;
  height: 150px;
  padding: 0;
}


.slider-wrapper input {
  width: 100px;
  height: 20px;
  margin: 0;
  transform-origin: 75px 75px;
  
}
.zonetexte{
  
  border-width:5px;
  
 border-style:ridge;
 border-color:black;
}
.BoutonGrand{
  width: 70px;
}
.BoutonTresGrand{
  width: 110px;
}

.BoutonPetit{
  width: 30px;
}

canvas {
  display: block;
  width: 100%;
}




Select{
  width: 60px;
}

button {
  width: 30px;
}

#messageHTML1{
  color: blue;
  font-weight:bold;
}
#messageHTML2{
  color: black;
  
}
p {

  font-size: 15px;
  color: blue;
  text-align: left;
}

h1 {
  font-size: 30px;
 
  /*background-color: rgb(123, 95, 10);*/
   
   background-image:linear-gradient(grey,white);
  text-align: center;
}




nav {
  width: 100%;
 margin: 0 auto;
  background-color: white;
  position: sticky;
  top: 0px;
}

nav ul {
  list-style-type: none;
}

nav ul li {
  float: left;
  width: 20%;
  text-align: center;
  position: relative;
}

nav ul::after {
  content: "";
  display: table;
  clear: both;
}

nav a {
  display: block;
  /* affiche */
  text-decoration: none;
  color: black;
  border-bottom: 2px solid transparent;
  padding: 10px 0px;
}

nav a:hover {
  color: orange;
  border-bottom: 2px solid gold;
}

.blocdetexte {
  display: none;
  /*s cache l element */
  box-shadow: 0px 1px 2px #CCC;
  background-color: white;
  position: absolute;
  width: 300%;
  z-index: 1000;


}

nav>ul li:hover .blocdetexte {
  display: block;
}

.blocdetexte li {
  float: none;
  width: 100%;
  text-align: left;
}





.sous {
  display: none;
  /*s cache l element */
  box-shadow: 0px 1px 2px #CCC;
  background-color: white;
  position: absolute;
  width: 150%;
  z-index: 1000;
}


.soussous {
  display: none;
  /*s cache l element */
  box-shadow: 0px 1px 2px #CCC;
  background-color: white;
  /*
  position: relative;
top: 0px; left: 50px;/*le côté gauche est décalé de 50*/
  
  position: absolute;
  width: 70%;
  z-index: 1000;
}

nav>ul li ul li:hover .soussous {
  display: block;
  
}

nav>ul li:hover .sous {
  display: block;
}

.sous li {
  float: none;
  width: 100%;
  text-align: left;
}

.sous a {
  padding: 10px;
  border-bottom: none;
}

.sous a:hover {
  /*hover c est quand on survole avec la souris*/
  border-bottom: none;
  background-color: RGBa(200, 200, 200, 0.1);
}

/*after : ajoute un pseudo element apres a dans deroulant*/
/*
.deroulant>a::after {
  
  content: "▼";
  font-size: 12px;
}*/