/* #Buttons
================================================== */

	/* Default Settings */
	a.button,
	button,
	input[type="button"] {
	  padding: 4px 12px;
	  -moz-border-radius: 3px;
	  -webkit-border-radius: 3px;
	  border-radius: 3px;	  
	  display: inline-block;
	  text-decoration: none;
	  text-shadow: 0 1px rgba(0, 0, 0, .3);
	  cursor: pointer;
	  line-height: 21px;
	  margin-bottom: 20px;
	}
	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }
		
	  
	/* Colors */
	
	/* Default Color */
	a.button,
	button,
	input[type="button"] {
		color: #fff !important;
		background: #88A04C; /* Old browsers */
		background: -moz-linear-gradient(top, rgba(136,160,76,.95) 0%, rgba(148,173,82,.95) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(136,160,76,.95)), color-stop(100%,rgba(222,222,222,.95))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgba(136,160,76,.95) 0%,rgba(222,222,222,.95) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgba(136,160,76,.95) 0%,rgba(222,222,222,.95) 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, rgba(136,160,76,.95) 0%,rgba(222,222,222,.95) 100%); /* IE10+ */
		background: linear-gradient(top, rgba(136,160,76,.95) 0%,rgba(222,222,222,.95) 100%); /* W3C */
		border: 1px solid #dbdbdb;
		border-top: 1px solid #e3e3e3;
		border-left: 1px solid #e3e3e3;
	}

	a.button:hover,
	button:hover,
	a.button:active,
  	button:active,
	a.button.active,
	input[type="button"]:hover {
		color: #fff;
		background: #F47B20; /* Old browsers */
		background: -moz-linear-gradient(top, rgba(244,123,32,.99) 0%, rgba(233,105,12,.99) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,123,32,.99)), color-stop(100%,rgba(233,105,12,.9))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgba(244,123,32,.99) 0%,rgba(233,105,12,.9) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgba(244,123,32,.99) 0%,rgba(233,105,12,.9) 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, rgba(244,123,32,.99) 0%,rgba(233,105,12,.99) 100%); /* IE10+ */
		background: linear-gradient(top, rgba(244,123,32,.99) 0%,rgba(233,105,12,.99) 100%); /* W3C */
		border: 1px solid #d5d5d5;
		border-top: 1px solid #d5d5d5;
		border-left: 1px solid #d5d5d5; 
		}


	
		a.button.red,
	button.red,
	input.red[type="submit"],
	input.red[type="reset"],
	input.red[type="button"] {
		color: #A21F17;
		background: #fff; /* Old browsers */
		background: -moz-linear-gradient(top, rgb(140,27,20) 0%, rgb(162,31,23) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(140,27,20)), color-stop(100%,rgb(162,31,23))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgb(140,27,20) 0%,rgb(162,31,23) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgb(140,27,20) 0%,rgb(162,31,23) 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, rgb(140,27,20) 0%,rgb(162,31,23) 100%); /* IE10+ */
		background: linear-gradient(top, rgb(140,27,20) 0%,rgb(162,31,23) 100%); /* W3C */
		border: 1px solid #8c1b14;
		border-top: 1px solid #8c1b14;
		border-left: 1px solid #8c1b14;
	}

	a.button.red:hover,
	button.red:hover,
	input.red[type="submit"]:hover,
	input.red[type="reset"]:hover,
	input.red[type="button"]:hover,
	a.button.red:active,
  	button.red:active,
	input.red[type="submit"]:active,
	input.red[type="reset"]:active,
	input.red[type="button"]:active {
		color: #fff;
		background: #A21F17; /* Old browsers */
		background: -moz-linear-gradient(top, rgb(162,31,23) 0%, rgb(196,38,28) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(162,31,23)), color-stop(100%,rgb(196,38,28))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, rgb(162,31,23) 0%,rgb(196,38,28) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, rgb(162,31,23) 0%,rgb(196,38,28) 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, rgb(162,31,23) 0%,rgb(196,38,28) 100%); /* IE10+ */
		background: linear-gradient(top, rgb(162,31,23) 0%,rgb(196,38,28) 100%); /* W3C */
		border: 1px solid #A21F17;
		border-top: 1px solid #8c1b14;
		border-left: 1px solid #8c1b14;
		}
		
