/*Estilos Generales*/
.button {
	background:#7f8c8d;
	color:#fff;
	display:inline-block;
	font-size:1.25em;
	margin:20px;
	padding:10px 0;
	text-align:center;
	width:200px;
	text-decoration: none;
	box-shadow:0px 3px 0px #373c3c;
}

.button span {
	margin-right:10px;
}

/*Colores*/
.button.blue {
	background:#3498db;
	box-shadow:0px 3px 0px #c0c1c2;
}

.button.yellow {
	background:#e67e22;
	box-shadow:0px 3px 0px #c0c1c2;
}

.button.green {
	background:#0ba10f;
	box-shadow:0px 3px 0px #c0c1c2;
}


/*Tamaños*/
.button.medium {
	width:200px;
}


.button.large {
	width:450px;
}


.button.radius {
	border-radius:50px;
}

/*Efectos, Hover*/
.button:hover {
	box-shadow:0px 0px 0px;
	padding-top:7px;
}