@CHARSET "UTF-8";

/*
 * Set styles for buttons, or for links that we want to display as if
 * they were buttons
 */

.button {
  font-size: 14px;
  font-family: Helvetica;
  background: #222 url(overlay-button.png) repeat-x;
  display: inline-block;
  padding: 5px 10px 6px;
  color: #fff;
  text-decoration: none;
  font-weight: lighter;
  line-height: 1;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
  cursor: pointer;
}

a.button {
  color: #fff;
  text-decoration: none;
  padding: 9px;
  line-height: 10px;
}

.small.button {
  padding: 2px 10px 2px 10px;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.add.button {
  padding: 5px 15px 5px 25px;
  font-size: 13px;
  background: transparent url(add.png) no-repeat scroll 3px center;
}

/* --------------------------- differents colors ---------------------------- */

.grey.button {
  background-color: #475F63;
}
.grey.button:Hover {    
  background-color: #324949;
}

.blue.button {
  background-color: #1472B4;
}
.blue.button:Hover {
  background-color: #1E5DA0;
}



/* link/buttons "ajouter un nouveau..." */
.addNew {
  margin-top: 10px;
}

.addNew a {
  color: #777;
  font-weight: bold;
  background-color: #eaeaea;
  padding: 3px 5px 3px 3px;
}

.addNew a:Hover {
  text-decoration: none;
}

