/* shiny blue (inspired by rdio iphone interface)
*******************************************************************************/
button.blue, .orange, .violet, .green  {
	
	/* Saf4+, Chrome */
  background-color:inherit;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 0 2px 0 rgba(57, 140, 255, 0.8);
	-moz-box-shadow: inset 0 0 2px 0 rgba(57, 140, 255, 0.8);
	-ms-box-shadow: inset 0 0 2px 0 rgba(57, 140, 255, 0.8);
	-o-box-shadow: inset 0 0 2px 0 rgba(57, 140, 255, 0.8);
	box-shadow: inset 0 0 2px 0 rgba(57, 140, 255, 0.8);
	color: #fff;
	font: bold 12px "helvetica neue", helvetica, arial, sans-serif;
	padding: 7px 0;
	width: 150px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}
 
  button.blue:hover {
	background-color: #184248;
}

 button.orange:hover {
	background-color: #996600;
}

 button.violet:hover {
	background-color: #570A00;
}

 button.green:hover {
	background-color: #003333;
}
 button.blue:active, .orange:active, .violet:active, .green:active {
	border: 2px solid;
	border-style:inset;
}
