
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: bold 14px/100% Arial, Helvetica, sans-serif;
	padding: .5em 1em .55em;
	/*text-shadow: 0 1px 1px rgba(0,0,0,.3);*/
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

.large {
	font-size: 24px;
}

/* blue */
.blue {
	color: #fff;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#1ba3c5), to(#0382a2));
	background: -moz-linear-gradient(top,  #1dafd4,  #0382a2);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#1dafd4', endColorstr='#0382a2');
}
.blue:hover {
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#1eb2d8), to(#0382a2));
	background: -moz-linear-gradient(top,  #0ba1c6,  #0382a2);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0ba1c6', endColorstr='#0382a2');
}
.blue:active {
	
}

/* grey */
.greybutton {
	color: #fff;
	border: solid 1px #878787;
	background: #e7e7e7;
	background: -webkit-gradient(linear, left top, left bottom, from(#b3c2c6), to(#6c777a));
	background: -moz-linear-gradient(top, #b3c2c6, #6c777a)
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3c2c6', endColorstr='#6c777a');
}
.greybutton:hover {
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#9fadb1), to(#6c777a));
	background: -moz-linear-gradient(top,  #9fadb1,  #6c777a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9fadb1', endColorstr='#6c777a');
}
.greybutton:active {
	
}

/* blue */
.orangebutton {
	color: #fff;
	border: solid 1px #b48d05;
	background: #cc8100;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffa508), to(#ce7400));
	background: -moz-linear-gradient(top, #ffa508, #ce7400)
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa508', endColorstr='#ce7400');
}
.orangebutton:hover {
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#f29a1f), to(#ce7400));
	background: -moz-linear-gradient(top,  #f29a1f,  #ce7400);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f29a1f', endColorstr='#ce7400');
}
.orangebutton:active {
	
}