/* ------ buttons ------ */
.button, .buttonSmall{
	display: inline-block;
	position: relative;
	line-height: 30px;
	padding: 0 10px;
    font-family: 'arial', sans-serif;
    font-size: 15px;
	cursor: pointer;
	color: #FFF;
	background-color: #d32027;
	border: none;
}
.button:hover{
	opacity: 0.9;
}
.buttonstyle2{
	background-color: #FFF;
	color: #d32027;
}


.button.Neutral, .buttonSmall.Neutral{
	background-color: blue;
}
.button.Safe, .buttonSmall.Safe{
	background-color: green;
}
.button.Careful, .buttonSmall.Careful{
	background-color: orange;
}
.button.Danger, .buttonSmall.Danger{
	background-color: red;
}
.button[disabled, .buttonSmall[disabled]{
	background-color: #999;
}
