@charset "UTF-8";
/* CSS Document */

/*
DEMO 4
*/

.button2e {
	background-color:#ea3434;
	font-family: 'Open Sans', sans-serif;
	font-size:12px;
	text-decoration:none;
	color:#fff;
	position:relative;
	padding:10px 20px;
	padding-right:50px;
	background-image: linear-gradient(bottom, rgb(202,44,44) 0%, rgb(229,62,62) 100%);
	background-image: -o-linear-gradient(bottom, rgb(202,44,44) 0%, rgb(229,62,62) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(202,44,44) 0%, rgb(229,62,62) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(202,44,44) 0%, rgb(229,62,62) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(202,44,44) 0%, rgb(229,62,62) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(202,44,44)),
	color-stop(1, rgb(229,62,62))
	);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0px 1px 0px #ec2a2a, 0px 5px 0px 0px #851515, 0px 10px 5px #999;
	-moz-box-shadow: inset 0px 1px 0px #ec2a2a, 0px 5px 0px 0px #851515, 0px 10px 5px #999;
	-o-box-shadow: inset 0px 1px 0px #ec2a2a, 0px 5px 0px 0px #851515, 0px 10px 5px #999;
	box-shadow: inset 0px 1px 0px #ec2a2a, 0px 5px 0px 0px #851515, 0px 10px 5px #999;
}

p:a{
	color: #fff;
}

.button2e:active {
	top:3px;
	background-image: linear-gradient(bottom, rgb(229,62,62) 0%, rgb(202,44,44) 100%);
	background-image: -o-linear-gradient(bottom, rgb(229,62,62) 0%, rgb(202,44,44) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(229,62,62) 0%, rgb(202,44,44) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(229,62,62) 0%, rgb(202,44,44) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(229,62,62) 0%, rgb(202,44,44) 100%);
	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(229,62,62)),
	color-stop(1, rgb(202,44,44))
	);
	-webkit-box-shadow: inset 0px 1px 0px #ec2a2a, 0px 2px 0px 0px #851515, 0px 5px 3px #999;
	-moz-box-shadow: inset 0px 1px 0px #ec2a2a, 0px 2px 0px 0px #851515, 0px 5px 3px #999;
	-o-box-shadow: inset 0px 1px 0px #ec2a2a, 0px 2px 0px 0px #851515, 0px 5px 3px #999;
	box-shadow: inset 0px 1px 0px #ec2a2a, 0px 2px 0px 0px #851515, 0px 5px 3px #999;
}

.button2e::before {
	background-color:#be2a2a;
	background-image:url(../images/right_arrow.png);
	background-repeat:no-repeat;
	background-position:center center;
	content:"";
	width:20px;
	height:20px;
	position:absolute;
	right:15px;
	top:50%;
	margin-top:-9px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: inset 0px 1px 0px #560505, 0px 1px 0px #f06060;
	-moz-box-shadow: inset 0px 1px 0px #560505, 0px 1px 0px #f06060;
	-o-box-shadow: inset 0px 1px 0px #560505, 0px 1px 0px #f06060;
	box-shadow: inset 0px 1px 0px #560505, 0px 1px 0px #f06060;
}

.button2e:active::before {
	top:50%;
	margin-top:-12px;
	-webkit-box-shadow: inset 0px 1px 0px #f06060, 0px 3px 0px #710e0e, 0px 6px 3px #a61a1a;
	-moz-box-shadow: inset 0px 1px 0px #f06060, 0px 3px 0px #710e0e, 0px 6px 3px #a61a1a;
	-o-box-shadow: inset 0px 1px 0px #f06060, 0px 3px 0px #710e0e, 0px 6px 3px #a61a1a;
	box-shadow: inset 0px 1px 0px #f06060, 0px 3px 0px #710e0e, 0px 6px 3px #a61a1a;
}