﻿.myButton{
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #44c767), color-stop(1, #5cbf2a));
background: -moz-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background: -webkit-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background: -o-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background: -ms-linear-gradient(top, #44c767 5%, #5cbf2a 100%);
background: linear-gradient(to bottom, #44c767 5%, #5cbf2a 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#44c767', endColorstr='#5cbf2a',GradientType=0);
background-color: #44c767;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 1px solid #77a37b;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: arial;
font-size: 17px;
padding: 10px 31px;
text-decoration: none;
text-shadow: 0px -1px 0px #2f6627;
text-align:center;
}

.myButtonBlue{
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 24;
  -moz-border-radius: 24;
  border-radius: 24px;
  -webkit-box-shadow: 2px 1px 3px #666666;
  -moz-box-shadow: 2px 1px 3px #666666;
  box-shadow: 2px 1px 3px #666666;
  font-family: Arial;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 30px 10px 30px;
  text-decoration: none;
  text-align:center;
}

.myButtonBlue:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
  text-align:center;

}