.button, .buttoncont a
{
	position: relative;
	display: inline-block;
	padding: 8px 12px 6px 12px;
	margin: 0;
	width: auto;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 24px !important;
	font-weight: 400;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	text-decoration: none;
	text-align: left;
	letter-spacing: 2px;
	
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	
	-webkit-appearance: none;
}

	.button.fullbutton
	{
		width: 100%;
	}
	
		.button.fullbutton span
		{
			float: right;
		}
	
		.button:after, .buttoncont a:after
		{
			content: '';
			position: absolute;
			z-index: -1;
		}


/** Colours **/

.button, .buttoncont a
{
	background: #1abc9c;
	color: #FFF !important;
}

.redbutton
{
	background: #e74c3c;
	color: #FFF !important;
}

	.button:hover, .buttoncont a:hover
	{
		background: #333;
		color: #FFF !important;
	}

		.button:active, .buttoncont a:active
		{
			top: 2px;
		}


