/*Buttons*/
.action_btn {
	display: inline-block;
	/*fix for ie 6 & 7 inline-block*/
	zoom: 1;
	*display: inline;
	vertical-align: top;
}

.action_btn a, .action_btn input, .action_btn button {
	display: block;
	width: auto;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	font-family: arial;
	padding: 8px 15px;
	margin: 0px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #72254b;
	color: #fff;
	background: none repeat #a22557;
	background:	-webkit-gradient(linear,0% 0%,0% 100%,from(#a9bdce),to(#a22557));
	background: -moz-linear-gradient(-90deg, #a9bdce, #a22557);
	background-image:     -ms-linear-gradient(top, #a9bdce, #a22557); /* IE10 */
 	background-image:      -o-linear-gradient(top, #a9bdce, #a22557);
 	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a9bdce', endColorstr='#a22557');
}

.action_btn button {
	padding: 7px 15px;
}

.action_btn a:hover, .action_btn input:hover, .action_btn button:hover {
	background: none repeat #a9bdce;
}