﻿@charset "UTF-8";
/* CSS Document */

.myButton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #4D4C48), color-stop(1, #4D4C48));
	background:-moz-linear-gradient(top, #4D4C48 5%, #4D4C48 100%);
	background:-webkit-linear-gradient(top, #4D4C48 5%, #4D4C48 100%);
	background:-o-linear-gradient(top, #4D4C48 5%, #4D4C48 100%);
	background:-ms-linear-gradient(top, #4D4C48 5%, #4D4C48 100%);
	background:linear-gradient(to bottom, #4D4C48 5%, #4D4C48 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4D4C48', endColorstr='#4D4C48',GradientType=0);

    border-radius:8px;

	background-color:#4D4C48;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:14px;
	padding:8px 30px;
	text-decoration:none;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #E74536), color-stop(1, #E74536));
	background:-moz-linear-gradient(top, #E74536 5%, #E74536 100%);
	background:-webkit-linear-gradient(top, #E74536 5%, #E74536 100%);
	background:-o-linear-gradient(top, #E74536 5%, #E74536 100%);
	background:-ms-linear-gradient(top, #E74536 5%, #E74536 100%);
	background:linear-gradient(to bottom, #E74536 5%, #E74536 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#E74536', endColorstr='#E74536',GradientType=0);
	background-color:#E74536;
}
.myButton:active {
	position:relative;
	top:1px;
}



















