﻿.btn {
  background: #ff7700;
  background-image: -webkit-linear-gradient(top, #ff7700, #d18c02);
  background-image: -moz-linear-gradient(top, #ff7700, #d18c02);
  background-image: -ms-linear-gradient(top, #ff7700, #d18c02);
  background-image: -o-linear-gradient(top, #ff7700, #d18c02);
  background-image: linear-gradient(to bottom, #ff7700, #d18c02);
  -webkit-border-radius: 6;
  -moz-border-radius: 6;
  border-radius: 6px;
  font-family: Arial;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 8px 6px 12px;
  text-decoration: none;
}

.btn:hover {
  background: #fcdc3c;
  background-image: -webkit-linear-gradient(top, #fcdc3c, #e0b300);
  background-image: -moz-linear-gradient(top, #fcdc3c, #e0b300);
  background-image: -ms-linear-gradient(top, #fcdc3c, #e0b300);
  background-image: -o-linear-gradient(top, #fcdc3c, #e0b300);
  background-image: linear-gradient(to bottom, #fcdc3c, #e0b300);
  text-decoration: none;
}