/* General */

.boton {
		
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	
	-moz-box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 2px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 2px 2px rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 2px 2px rgba(0,0,0,0.2);
	
	border: 1px solid;
	padding: 5px 10px;
	margin:5px 10px; 
	
	color: #fff;
	font-family: "Arial", Arial, Tahoma, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-shadow: -1px -1px rgba(0,0,0,0.1), 0 0 15px rgba(255,255,255,0.75);
	white-space: nowrap;
	
	background: #777;
	border-color: #777;
	
	text-decoration: none;
	font-style: normal;
	text-transform: none;
	
	position: relative;
	
}
.peque { margin:2px 5px; 
	padding:2px 5px; 
	font-size:12px; 
}
.boton:hover,
.boton:focus {

	-moz-box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 3px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 3px 2px rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 3px 2px rgba(0,0,0,0.2);
	cursor:pointer;
	background: #999;
	border-color: #999; 
	/* Default color */
}

.boton:active {
	top: 2px;

	-moz-box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px 3px rgba(255,255,255,0.5), 0 1px 2px rgba(0,0,0,0.2);*/
}

/* Shape */

.default {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.square {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.bubble {
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}


/* Colors */

.azul {
	background: #4882af;
	border-color: #4882af;
}
.azul:hover,
.azul:focus {
	background: #3390CF;
	border-color: #3390CF;
}

.rojo {
	background: #D81204;
	border-color: #D81204;
}
.rojo:hover,
.rojo:focus {
	background: #FF2F1F;
	border-color: #FF2F1F;
}

.negro {
		background-color:#000;
		border-color:#555;
	}
.negro:hover, 
.negro:focus { 
		background-color:#555; 
		border-color:#aaa;
	}

.verde {
	background: #95A006;
	border-color: #95A006;
}
.verde:hover,
.verde:focus {
	background: #B2BF17;
	border-color: #B2BF17; 
}

.amarillo {
	background: #FFAF09;
	border-color: #FFAF09;
}
.amarillo:hover,
.amarillo:focus {
	background: #FFCF09;
	border-color: #FFCF09;
}

.lila {
	background: #9F1D78;
	border-color: #9F1D78;
}
.lila:hover,
.lila:focus {
	background: #CF33A0;
	border-color: #CF33A0;
}

.naranja {
	background: #FF5F09;
	border-color: #FF5F09;
}
.naranja:hover,
.naranja:focus {
	background: #FF7F09;
	border-color: #FF7F09;
}

.gris {
	background: #777;
	border-color: #777;
}
.gris:hover,
.gris:focus {
	background: #999;
	border-color: #999;
}