/* --
   - CENTRE 
   --------------------*/

.parentcenter {
  margin: 0 0 0 0; /* pour ?viter les marges */
  text-align: center; /* pour corriger le bug de centrage IE */
}
.childcentred {
  margin-left: auto;
  margin-right: auto;
  width: 10px; /* taille ? red?finir sur les ?l?ments centr?s */
  text-align: left; /* on r?tablit l'alignement normal du texte */
}
/* --
   - Rond 
   --------------------*/
.roundcorner { background-color: white; border-radius:0.5em; /* CSS3 */
  -o-border-top-right-radius: 0.5em; /* Opera */
  -icab-border-radius: 0.5em; /* iCab */
  -khtml-border-radius: 0.5em; /* Konqueror */
  -moz-border-radius:0.5em; /*Mozilla Firefox*/
  -webkit-border-radius:0.5em; /* Safari, Chrome */
}

/* --
   - BOUTONS 
   --------------------*/
input.button { line-height: 1em; padding: 0.1em; background-color:#efefef;/*#d4e2fe;*/
  color: #0000af; border:solid 1px #80aacc; text-decoration: none; white-space:nowrap;/*pas de coupure si pas assez de place*/
 
  border-radius:0.5em; /* CSS3 */
  -o-border-top-right-radius: 0.5em; /* Opera */
  -icab-border-radius: 0.5em; /* iCab */
  -khtml-border-radius: 0.5em; /* Konqueror */
  -moz-border-radius:0.5em; /*Mozilla Firefox*/
  -webkit-border-radius:0.5em; /* Safari, Chrome */
}
 
input.button:hover
{
  background-color: #ffffff;
  text-decoration: none;
  cursor:pointer;
}
 
input.button:active
{
  background-color: #e8eef4;
  text-decoration: none;
}