


.btnf {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #516154;
  color: #fff;
  *background-color: #f3f3f3;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */

  border: 0px solid #cccccc;
  *border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  *margin-left: .3em;
}
.btnf:hover,
.btnf:focus,
.btnf:active,
.btnf.active,
.btnf.disabled,
.btnf[disabled] {
  color: #3fbf79;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}
.btnf:active,
.btnf.active {
  background-color: #cccccc \9;
}
.btnffirst-child {
  *margin-left: 0;
}
.btnf:hover,
.btnf:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.btnf:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btnf.active,
.btnf:active {
  background-image: none;
  outline: 0;
}
.btnf.disabled,
.btnf[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
