<style>
* {box-sizing: border-box;}

body { 
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  overflow: hidden;
  background-color: #eaefe3;
  padding: 20px 10px;
}

.header a {
  float: left;
  color: #015526;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
  width: 100%;
}

.header a:hover {
  background-color: #d0dfb7;
  color: #015526;
}

.header a.active {
  background-color: #78af12;
  color: white;
}

.header-right {
  float: right;
}

.pied {
	background-color: #eaefe3;
	color: #015526;
  	padding: 20px 10px;
}

.contenu {
	display: flex;
}


.choisi {
    background: #eaefe3;
}

.legende {
    background-color: #eaefe3;
    color: #015526;
    /* color: #000; */
    font: italic smaller sans-serif;
    text-align: center;
}

.nouvelle-texte {
	float: left;
	color: #015526;
	padding: 12px;
	width: 50%;
}

.nouvelle-texte-1Col {
	float: left;
	color: #015526;
	padding: 12px;
	width: 100%;
}

.entete-texte {
	float: none;
	color: #015526;
	padding: 12px;
}

.membre-texte {
	float: left;
	color: #015526;
	padding: 12px;
	width: 50%;
}


.nouvelle-image {
	float: left;
	padding: 12px;
	width: 50%;
}

.membre-image {
	float: left;
	padding: 12px;
	width: 50%;
}


/* pour formulaire */


.main {
  max-width: 1000px;
  margin: auto;
}

.hautpage {
	float: left;
	color: #015526;
  	padding: 10px;
  	width: 100%;
}

.row,
.row > .demie,
.demie > .column {
  padding: 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}


.col-50 {
  text-align: right;
  float: left;
  width: 48%;
  margin-top: 6px;
}

.col-Pied {
  text-align: center;
  float: left;
  width: 98%;
  margin-top: 6px;
}

input[type=radio] {

}

input[type=text], [type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #eaefe3;
  color: #015526;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
}

input[type=button] {
  background-color: #eaefe3;
  color: #015526;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
}

input[type=submit]:hover {
  background-color: #d0dfb7;
  color: #015526;
}

input[type=button]:hover {
  background-color: #d0dfb7;
  color: #015526;
}

input[type=button].nondisponible {
	background-color: #d0dfb7;
  color: #015526;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=button].disponible {
	background-color: #015526;
  color: #d0dfb7;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=button].disponible:hover {
	background-color: #78af12;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=button].nondisponiblebp {
	background-color: #d0dfb7;
  color: #015526;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=button].disponiblebp {
	background-color: #d0dfb7;
  color: #015526;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=button].disponiblebp:hover {
	background-color: #78af12;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



/* Fin formulaire */


.image {
  max-width: 100%;
  padding: 6px;
  height: auto;
}

@media screen and (max-width: 700px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .header-right {
    float: none;
    display: block;
    width: 99%;
  }
  
  .contenu {
	display: block;
  }
  
  .nouvelle-texte {
  	float: none;
  	display: block;
  	width: 90%;
  }
  
  .nouvelle-texte-1Col {
  	float: none;
  	display: block;
  	width: 90%;
  }
  
  .nouvelle-image {
  	float: none;
	display: block;
	width: 90%
  }
  
  .membre-texte {
  	float: none;
  	display: block;
  	width: 99%;
  }
  
  .image {
  	display: block;
  	padding: 6px;
  }
  
  .col-50 {
    width: 92%;
    margin-top: 0;
    text-align: left;
  }
  
  }