@charset "utf-8";
/* CSS Document */

/*active state*/

.greenButton:active, .redButton:active, .greyButton-big:active {
	position:relative;
	top:1px;
}

/*GREEN Buttons*/

.greenButton-small, .greenButton-med, .greenButton-big {	
	font-family:'Ubuntu', sans-serif, Arial, Helvetica;
	-moz-box-shadow:inset 0px 1px 0px 0px #a7d73f;
	-webkit-box-shadow:inset 0px 1px 0px 0px #a7d73f;
	box-shadow:inset 0px 1px 0px 0px #a7d73f;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #74c027), color-stop(1, #418d00) );
	background:-moz-linear-gradient( center top, #74c027 5%, #418d00 100% );
 	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#74c027', endColorstr='#418d00');
	background-color:#74c027;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #268a16;
	display:inline-block;
	text-decoration:none;
	text-shadow:1px 1px 0px #666666;
	color:#fff;
}
.greenButton-small:hover, .greenButton-med:hover, .greenButton-big:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #418d00), color-stop(1, #74c027) );
	background:-moz-linear-gradient( center top, #418d00 5%, #74c027 100% );
 	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#418d00', endColorstr='#74c027');
	background-color:#418d00;
}

.greenButton-small, .greyButton-small {
	font-size:12px;
	font-weight:500;
	padding:0px 10px;
}

.greenButton-med, .greyButton-med{
	font-size:14px;
	font-weight:700;
	padding:6px 16px;
	text-transform:uppercase;
}

.greenButton-big, .greyButton-big{
	font-size:18px;
	font-weight:500;
	padding:10px 20px;
}



/*GREY button*/

.greyButton-big, .greyButton-med, .greyButton-small  {
	font-family:'Ubuntu', sans-serif, Arial, Helvetica;
	-moz-box-shadow:inset 0px 1px 0px 0px #8a8a8a;
	-webkit-box-shadow:inset 0px 1px 0px 0px #8a8a8a;
	box-shadow:inset 0px 1px 0px 0px #8a8a8a;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5c5c5c), color-stop(1, #292929) );
	background:-moz-linear-gradient( center top, #5c5c5c 5%, #292929 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5c5c5c', endColorstr='#292929');
	background-color:#5c5c5c;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #333;
	display:inline-block;
	color:#ffffff;
	text-decoration:none;
	text-shadow:1px 1px 0px #000000;
}

.greyButton-big:hover, .greyButton-med:hover, .greyButton-small:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #292929), color-stop(1, #5c5c5c) );
	background:-moz-linear-gradient( center top, #292929 5%, #5c5c5c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#5c5c5c');
	background-color:#292929;
}


/*RED BUTTONS*/

.redButton {
	-moz-box-shadow:inset 0px 0px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 0px 0px 0px #f29c93;
	box-shadow:inset 0px 0px 0px 1px #c61f36;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d32037), color-stop(1, #ac1829) );
	background:-moz-linear-gradient( center top, #d32037 5%, #ac1829 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d32037', endColorstr='#ac1829');
	background-color:#d32037;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #6b111b;
	display:inline-block;
	color:#fff;
	font-family:arial;
	font-size:12px;
	font-weight:500;
	padding:2px 10px;
	text-shadow:1px 1px 0px #000;
	text-decoration:none;
	color:#fff;
}
.redButton:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #d32037), color-stop(1, #d32037) );
	background:-moz-linear-gradient( center top, #ac1829 5%, #d32037 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ac1829', endColorstr='#d32037');
	background-color:#ac1829;
}
