.button {
	display: inline-block;
	margin: 0;
	padding: 8px 14px;
	font-size: 12px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
	color: white;
	background-color: #181818;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: background 0.15s ease-out;
	border-bottom: solid 1px white;
	outline: none;
}
.button:hover {
	background-color: #3a3a3a;
}

.squareButton {
	display: inline-block;
	margin: 0;
	padding: 16px 24px 12px 24px;
	font-size: 16px;
	font-family: Arial, sans-serif;
	font-weight: normal;
	line-height: 1em;
	text-align: center;
	color: white;
	text-decoration: none !important;
}
.squareButton:hover {
	background-color: #3a3a3a;
}
.squareButton.block {
	display: block;
	margin: 10px 0 0 0;
}


/* COLORS */
.button.darkBlue {
	background-color: #1C3866;
}

.button.darkBlue:hover {
	background-color: #225b92;
}

.button.red {
	background-color: #c21719;
}
.button.red:hover {
	background-color: #d21b1e;
}

.button.gray {
	background-color: #898989;
}
.button.gray:hover {
	background-color: #a0a0a0;
}

.squareButton.red {
	border-right: 2px solid #861013;
	border-bottom: 2px solid #861013;
	border-left: 2px solid #861013;
	background: url(../img/buttons/button-square-red.png) repeat-x top center;
}
.squareButton.red:hover {
	background-position: 0 -50px;
}

.squareButton.gray {
	border-right: 2px solid #414141;
	border-bottom: 2px solid #414141;
	border-left: 2px solid #414141;
	background: url(../img/buttons/button-square-gray.png) repeat-x top center;
}
.squareButton.gray:hover {
	background-position: 0 -50px;
}