/* -------------------------------------------------------------- 
  
   buttons.css
   * Gives you some great CSS-only buttons.
   
   Created by Kevin Hale [particletree.com]
   * particletree.com/features/rediscovering-the-button-element

   See Readme.txt in this folder for instructions.

-------------------------------------------------------------- */

a.button, button, input[type=button], input[type=submit], input[type=reset] {
  position:relative;
  margin-top:5px;
  margin-right:5px;
  margin-bottom:5px;
  height: 25px;

  border:1px solid #dedede;
  border-top:1px solid #eee;
  border-left:1px solid #eee;

  background-image: none !important;
  background-color:#f5f5f5 !important;
  text-decoration:none;
  color:#565656 !important;
  cursor:pointer;
  white-space:nowrap;
  font-weight: normal;
}
input[type=button], input[type=submit], input[type=reset] {
  padding:1px 10px 3px 10px !important;
  top: -1px;
}
button {
  padding:0px 10px 2px 10px !important;
  top: -2px;
}
a.button {
  padding:4px 10px 4px 10px !important;
  top: -2px;
}

*:first-child+html button[type] {
  padding:4px 10px 3px 7px;   /* IE7 */
}
a.button img {
  vertical-align:-0.4em;
  margin:0px 5px 0 0;
  padding: 0;
  border:none !important;
}
button img {
  vertical-align:-0.3em;
  margin:0px 5px 1px 0;
  padding: 0;
  border:none;
}

/* Button colors
-------------------------------------------------------------- */

/* Standard */
button:hover, a.button:hover, input[type=button]:hover, input[type=submit]:hover {
  background-color:#dff4ff;
  border:1px solid #c2e1ef;
  color:#336699  !important;
}
a.button:active {
  background-color:#6299c5;
  border:1px solid #6299c5;
  color:#fff;
}

/* Positive */
body .positive, input[type=submit] {
  color:#529214  !important;
}
a.positive:hover, button.positive:hover, input[type=button].positive:hover, input[type=submit]:hover {
  background-color:#E6EFC2;
  border:1px solid #C6D880;
  color:#529214  !important;
}
a.positive:active {
  background-color:#529214;
  border:1px solid #529214;
  color:#fff;
}

/* Negative */
body .negative , input[type=reset] {
  color:#d12f19  !important;
}
a.negative:hover, button.negative:hover, input[type=button].negative:hover, input[type=submit].negative:hover {
  background:#fbe3e4;
  border:1px solid #fbc2c4;
  color:#d12f19  !important;
}
a.negative:active {
  background-color:#d12f19;
  border:1px solid #d12f19;
  color:#fff;
}
