/*@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body{
  background: #f2f2f2;
  font-family: 'Open Sans', sans-serif;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid #00B4CC;
  border-right: none;
  padding: 5px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #00B4CC;
  background: #00B4CC;
  text-align: center;
  color: #2a303d;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

.wrap{
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}*/


body, input {
  margin: 0;
  padding: 0;
}

body {
  margin: 10px;
  background-color: #452519;
}

#zone_recherche {
  /*width: 350px;*/
  width: 272px;
  position: relative;
}

#texte_recherche {
  /*width: 330px;*/
  width: 272px;
  padding: 10px 50px 20px 10px;
  background-color: #FFFFFF;
  border: solid 1px #2a303d;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  font-family: arial, verdana, sans-serif;
  font-size: 18px;
  color: #7a5440;
}/*FFFFFF*/

#texte_recherche:focus {
  background-color: #FFFFFF;
  outline: 0 none; /* Pour enlever la "bordure" jaune qu'ajoute Google Chrome au focus */
  color: #2a303d;
}

#bouton_recherche {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  right: 10px;
}