.bouton::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.bouton {
  display: inline-block;
  *display: inline;
  zoom: 1;  
  padding: 6px 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #bbb;
  overflow: visible;
  font: bold 13px arial, helvetica, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  color: #555;
  background-color: #ddd;
  background-image: -webkit-linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0));
  background-image: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0));
  -webkit-transition: background-color .2s ease-out;  
  transition: background-color .2s ease-out;
  background-clip: padding-box; /* Fix bleeding */
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 
              0 2px 2px -1px rgba(0, 0, 0, .5), 
              0 1px 0 rgba(255, 255, 255, .3) inset;
  text-shadow: 0 1px 0 rgba(255,255,255, .9);  
  
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bouton:hover {
  background-color: #eee;
  color: #555;
}

.bouton:active {
  background: #e9e9e9;
  position: relative;
  top: 1px;
  text-shadow: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}

.bouton[disabled], 
.bouton[disabled]:hover, 
.bouton[disabled]:active {
  border-color: #eaeaea;
  background: #fafafa;
  cursor: default;
  position: static;
  color: #999;
  /* Usually, !important should be avoided but here it's really needed :) */
  box-shadow: none !important;
  text-shadow: none !important;
}

/* Smaller boutons styles */

.bouton.small {
  padding: 4px 12px;
}

/* Larger boutons styles */

.bouton.large {
  padding: 12px 30px;
  text-transform: uppercase;
}

.bouton.large:active {
  top: 2px;
}

/* Colored boutons styles */

.bouton.color {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  background-image: -webkit-linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,0));
  background-image: linear-gradient(rgba(255,255,255,.3), rgba(255,255,255,0));
}

/* */

.bouton.green {
  background-color: #57a957;
  border-color: #57a957;
}

.bouton.green:hover {
  background-color: #62c462;
}

.bouton.green:active {
  background: #57a957;
}

/* */

.bouton.red {
  background-color: #c43c35;
  border-color: #c43c35;
}

.bouton.red:hover {
  background-color: #ee5f5b;
}

.bouton.red:active {
  background: #c43c35;
}

/* */

.bouton.blue {
  background-color: #269CE9;
  border-color: #269CE9;
}

.bouton.blue:hover {
  background-color: #70B9E8;
}

.bouton.blue:active {
  background: #269CE9;
}

/* */

.green[disabled], 
.green[disabled]:hover, 
.green[disabled]:active {
  border-color: #57A957;
  background: #57A957;
  color: #D2FFD2;
}

.red[disabled], 
.red[disabled]:hover, 
.red[disabled]:active {
  border-color: #C43C35;
  background: #C43C35;
  color: #FFD3D3;
}

.blue[disabled], 
.blue[disabled]:hover, 
.blue[disabled]:active {
  border-color: #269CE9;
  background: #269CE9;
  color: #93D5FF;
}

/* Group boutons */

.bouton-group,
.bouton-group li {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.bouton-group {
  font-size: 0; /* Inline block elements gap - fix */
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, .04);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  padding: 7px;
  border-radius: 7px; 
}

.bouton-group li {
  margin-right: -1px; /* Overlap each right bouton border */
}

.bouton-group .bouton {
  font-size: 13px; /* Set the font size, different from inherited 0 */
  border-radius: 0; 
}

.bouton-group .bouton:active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 
              5px 0 5px -3px rgba(0, 0, 0, .2) inset, 
              -5px 0 5px -3px rgba(0, 0, 0, .2) inset;   
}

.bouton-group li:first-child .bouton {
  border-radius: 3px 0 0 3px;
}

.bouton-group li:first-child .bouton:active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 
              -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}

.bouton-group li:last-child .bouton {
  border-radius: 0 3px 3px 0;
}

.bouton-group li:last-child .bouton:active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 
              5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}