#wrapper button {
	cursor: pointer;
	min-width: 150px;
	margin: 0 5px;
}

button.secondary {
	border: none;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 1em;
	padding: 8px 20px;
	background: #d4d4d4;
/*
	background: -moz-linear-gradient(top,  #ededed 0%, #d4d4d4 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#d4d4d4));
	background: -webkit-linear-gradient(top,  #ededed 0%,#d4d4d4 100%);
	background: -o-linear-gradient(top,  #ededed 0%,#d4d4d4 100%);
	background: -ms-linear-gradient(top,  #ededed 0%,#d4d4d4 100%);
	background: linear-gradient(to bottom,  #ededed 0%,#d4d4d4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#d4d4d4',GradientType=0 );
*/
}

button.secondary:hover {
	background: #c0c0c0;
}

button.primary {
	border: none;
	color: #FFF;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 1em;
	padding: 8px 20px;
	background: #005E58;
/*
	background: -moz-linear-gradient(top,  #72a89c 0%, #448e7d 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#72a89c), color-stop(100%,#448e7d));
	background: -webkit-linear-gradient(top,  #72a89c 0%,#448e7d 100%);
	background: -o-linear-gradient(top,  #72a89c 0%,#448e7d 100%);
	background: -ms-linear-gradient(top,  #72a89c 0%,#448e7d 100%);
	background: linear-gradient(to bottom,  #72a89c 0%,#448e7d 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#72a89c', endColorstr='#448e7d',GradientType=0 );
*/
}

button.primary:hover {
	background: #00837A;
}

button.button-small {
	min-width: 0;
	padding: 4px 20px;
}