/* http://www.cssbuttongenerator.com/ */

/********* big button defaults to green *************/

.big-button
{
	-moz-border-radius:29px;
	-webkit-border-radius:29px;
	border-radius:29px;
	border:1px solid #d83526;
	display:inline-block;
	font-family:arial;
	font-size:17px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	cursor: pointer;

	-webkit-touch-callout: none;

	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.big-button::-moz-focus-inner 
{
	border: 0;
}

.big-button:active 
{
	position:relative;
	top:1px;
	outline: none;
}


.big-button-green{
			-moz-box-shadow:   inset 0px 1px 0px 0px #c8eea9;
	-webkit-box-shadow:inset 0px 1px 0px 0px #c8eea9;
	box-shadow:		   inset 0px 1px 0px 0px #c8eea9;

	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #77d42a), color-stop(1, #5bb80e) );
	background:-moz-linear-gradient( center top, #77d42a 5%, #5bb80e 100% );
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77d42a', endColorstr='#5bb80e');*/
	background-color:#77d42a;

	border-color: #58a21a;
	/* border-color: #4e9018; */
	color:#ffffff;
	text-shadow:1px 1px 0px #6dae37;
	/* text-shadow:1px 1px 0px #15d072; */
}

.big-button-green:hover
{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5bb80e), color-stop(1, #77d42a) );
	background:-moz-linear-gradient( center top, #5bb80e 5%, #77d42a 100% );
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bb80e', endColorstr='#77d42a');*/
	background-color:#5bb80e;
}

.big-button-red{
			-moz-box-shadow:   inset 0px 1px 0px 0px #ffa398;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffa398;
	box-shadow:		   inset 0px 1px 0px 0px #ffa398;

	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #c61400) );
	background:-moz-linear-gradient( center top, #fe1a00 5%, #c61400 100% );
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#c61400');*/
	background-color:#fe1a00;

	border-color: #bc1300;
	/* border-color: #a71100; */
	color:#ffffff;
	text-shadow:1px 1px 0px #d32511;
	/* text-shadow:1px 1px 0px #d9e500; */
}

.big-button-red:hover
{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c61400), color-stop(1, #fe1a00) );
	background:-moz-linear-gradient( center top, #c61400 5%, #fe1a00 100% );
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c61400', endColorstr='#fe1a00');*/
	background-color:#c61400;
}

.big-button-blue{
			-moz-box-shadow:   inset 0px 1px 0px 0px #cfe5fd;
	-webkit-box-shadow:inset 0px 1px 0px 0px #cfe5fd;
	box-shadow:		   inset 0px 1px 0px 0px #cfe5fd;

	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3d94f6), color-stop(1, #0076fb) );
	background:-moz-linear-gradient( center top, #3d94f6 5%, #0076fb 100% );
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d94f6', endColorstr='#0076fb');*/
	background-color:#3d94f6;

	border-color: #0572ec;
	/* border-color: #0468d9; */
	color:#ffffff;
	text-shadow:1px 1px 0px #3688e4;
	/* text-shadow:1px 1px 0px #891bff; */
}

.big-button-blue:hover
{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0076fb), color-stop(1, #3d94f6) );
	background:-moz-linear-gradient( center top, #0076fb 5%, #3d94f6 100% );
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0076fb', endColorstr='#3d94f6');*/
	background-color:#0076fb;
}

